diff --git a/.github/ISSUE_TEMPLATE/direct-incentives-scheduling-request.md b/.github/ISSUE_TEMPLATE/direct-incentives-scheduling-request.md new file mode 100644 index 000000000..0ed3cf658 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/direct-incentives-scheduling-request.md @@ -0,0 +1,22 @@ +--- +name: Direct Incentives Scheduling request +about: USe this to ask the Maxis to load a new program into your injector +title: "[Injector Request] (Change Me to Pool/Chain)" +labels: Injector Request +assignees: Tritium-VLK, Zen-Maxi + +--- + +**What Chain/Pool?** +Please provide a link to the pool on balancer and/or an etherscan link to the child chain gauge. Both is best? + +**How many tokens for how long** +How many tokens should be sent each week and for how many weeks? What is the approx USD value per week? + +**When is this needed by?** +Normally require 2 business days to process requests. If it is urgent say something, or let us know when a current running round expires. + +**Current Balance of Injector** +At best send requests when injector is empty and the fund. Are there funds in the injector? If so, what is the approx USD value? What is the difference between the current balance and the total requirement for the requested program? What is the plan with funding? +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/freehand-ticket.md b/.github/ISSUE_TEMPLATE/freehand-ticket.md new file mode 100644 index 000000000..6e0755e74 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/freehand-ticket.md @@ -0,0 +1,10 @@ +--- +name: Freehand Ticket +about: Use this for an empty ticket +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 000000000..8d89c24b2 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,9 @@ +# ref: https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/README.md b/.github/workflows/README.md new file mode 100644 index 000000000..1a5b68cbd --- /dev/null +++ b/.github/workflows/README.md @@ -0,0 +1,17 @@ +# README + +## GitHub Actions: Environments + +The `run_reports_reusable.yaml` workflow currently defines an explicit environment for the `generate_reports` job to run in via `environment:`. This is because in some places it is triggered via `pull_request_target`, which is different from the regular `pull_request` trigger in that it runs in the base (target) of the pr, and not the head. Quoted from this GitHub blog that introduced it: + +> In order to protect public repositories for malicious users we run all pull request workflows raised from repository forks with a read-only token and no access to secrets. This makes common workflows like labeling or commenting on pull requests very difficult. +> +> In order to solve this, we’ve added a new pull_request_target event, which behaves in an almost identical way to the pull_request event with the same set of filters and payload. However, instead of running against the workflow and code from the merge commit, the event runs against the workflow and code from the base of the pull request. This means the workflow is running from a trusted source and is given access to a read/write token as well as secrets enabling the maintainer to safely comment on or label a pull request. + +NOTE THE SECURITY RISK OF ANY USER BEING ABLE TO ACCESS SECRETS VIA A PR!!! + +For this reason, forked prs run in the environment `"external"`, which has some protection rules set up. + +DO NOT APPROVE DEPLOYMENTS IN THIS ENVIRONMENT WITHOUT CHECKING FOR MALICIOUS CODE!!! + +DO NOT REMOVE THE ENVIRONMENTS PROTECTION RULES!!! diff --git a/.github/workflows/black.yaml b/.github/workflows/black.yaml new file mode 100644 index 000000000..8f791f820 --- /dev/null +++ b/.github/workflows/black.yaml @@ -0,0 +1,21 @@ +name: Lint + +on: [pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Black + uses: psf/black@stable + with: + options: "--verbose" + version: "~= 22.10" + + - name: Auto commit + uses: stefanzweifel/git-auto-commit-action@v5.0.1 + with: + commit_message: "style: ci lint with `black`" diff --git a/.github/workflows/build_permissions_bip.yaml b/.github/workflows/build_permissions_bip.yaml new file mode 100644 index 000000000..0110df757 --- /dev/null +++ b/.github/workflows/build_permissions_bip.yaml @@ -0,0 +1,37 @@ +name: Build Permissions Bip + +on: + workflow_dispatch: + inputs: + PR_NUMBER: + description: "The number of the PR with the a successful Generate Authorizor run" + required: true + BIP_NUMBER: + description: "The number of the BIP to label everything as" + required: true + JSON_DATE: + description: "The Date used on the generated JSON files (yyyy-mm-dd)" + required: true + WEEKLY_DIR: + description: "The weekly DIR for the bip like `YYYY-W##" + required: true + +jobs: + transform_to_BIP: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Generate Permissions BIP + id: doit + env: + PR_NUMBER: ${{github.event.inputs.PR_NUMBER}} + BIP_NUMBER: ${{github.event.inputs.BIP_NUMBER}} + DATE: ${{github.event.inputs.JSON_DATE}} + WEEKLY_DIR: ${{github.event.inputs.WEEKLY_DIR}} + + run: | + cd BIPs/00batched/authorizer + bash gen_gov_md.sh diff --git a/.github/workflows/create_add_rewards_payload.yaml b/.github/workflows/create_add_rewards_payload.yaml new file mode 100644 index 000000000..381bdbfdb --- /dev/null +++ b/.github/workflows/create_add_rewards_payload.yaml @@ -0,0 +1,85 @@ +name: Create Add Rewards Payload +on: + workflow_dispatch: + inputs: + token: + description: "Reward Token" + required: true + gauge: + description: "Gauge to reward" + required: true + distributor: + description: "Distributor who can load incentives (address or unique bal_addresses string)" + required: false + multisig: + description: "Multisig that should execute this transaction((address or unique bal_addresses string)" + required: true + chain_name: + description: "Chain Name. Exists in bal_addresses: One of [base, gnosis, zkevm, avalanche, mainnet, arbitrum, optimism, polygon, sepolia, mode, fraxtal]" + required: true + +jobs: + add-rewards: + runs-on: ubuntu-latest + outputs: + pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} + pull-request-branch: ${{ steps.generate-branch-name.outputs.branch }} + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + pip install git+https://github.com/BalancerMaxis/bal_addresses@0.9.5 + + - name: Run script + run: | + python action-scripts/tx_build_add_reward_token.py + env: + TOKEN: ${{ github.event.inputs.token }} + GAUGE: ${{ github.event.inputs.gauge }} + DISTRIBUTOR: ${{ github.event.inputs.distributor }} + MULTISIG: ${{ github.event.inputs.multisig }} + CHAIN_NAME: ${{ github.event.inputs.chain_name }} + INFURA_KEY: ${{ secrets.INFURA_KEY }} + ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }} + + - name: Prepare PR title and body + run: | + echo "PR_TITLE=Automatically generated add_rewards payload (direct incentives) - $TOKEN - $GAUGE" >> $GITHUB_ENV + echo "PR_BODY=This pull request was automatically generated by the GitHub Actions workflow. Here are the details of the event that triggered this workflow: - Reward Token: $TOKEN - Gauge: $GAUGE - Distributor: $DISTRIBUTOR - Multisig: $MULTISIG - Chain Name: $CHAIN_NAME" >> $GITHUB_ENV + env: + TOKEN: ${{ github.event.inputs.token }} + GAUGE: ${{ github.event.inputs.gauge }} + DISTRIBUTOR: ${{ github.event.inputs.distributor }} + MULTISIG: ${{ github.event.inputs.multisig }} + CHAIN_NAME: ${{ github.event.inputs.chain_name }} + + - name: Generate branch name + id: generate-branch-name + run: | + echo "::set-output name=branch::${{ github.job }}-$(date +'%Y%m%d%H%M%S')" + + - name: Create Pull Request + id: cpr + uses: peter-evans/create-pull-request@v7 + with: + title: ${{ env.PR_TITLE }} + body: ${{ env.PR_BODY }} + branch: ${{ steps.generate-branch-name.outputs.branch }} + labels: "Gauge Add Reward" + delete-branch: true + + run_reports: + needs: add-rewards + secrets: inherit + uses: "BalancerMaxis/multisig-ops/.github/workflows/run_reports_reusable.yaml@main" + with: + pr_number: ${{ needs.add-rewards.outputs.pull-request-number }} + checkout_ref: ${{ needs.add-rewards.outputs.pull-request-branch }} diff --git a/.github/workflows/erc20_transfer_payload.yaml b/.github/workflows/erc20_transfer_payload.yaml new file mode 100644 index 000000000..26489c0de --- /dev/null +++ b/.github/workflows/erc20_transfer_payload.yaml @@ -0,0 +1,87 @@ +name: Create ERC20 Transfer Payload +on: + workflow_dispatch: + inputs: + token: + description: "Token" + required: true + destination: + description: "Destination Address(or unqiue addrbook string)" + required: true + whole_amount: + description: "Whole Amount (provide either whole_amount or wei_amount)" + required: false + wei_amount: + description: "Wei Amount" + required: false + multisig: + description: "Source Multisig Address (or unique addrbook string)" + required: true + chain_name: + description: "Chain Name. Exists in bal_addresses: One of [base, gnosis, zkevm, avalanche, mainnet, arbitrum, optimism, polygon, sepolia]" + required: true + +jobs: + erc20-transfer: + runs-on: ubuntu-latest + outputs: + pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} + pull-request-branch: ${{ steps.generate-branch-name.outputs.branch }} + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + pip install git+https://github.com/BalancerMaxis/bal_addresses@0.9.5 + + - name: Run script + run: | + cd action-scripts + python tx_build_erc20_transfer.py + env: + TOKEN: ${{ github.event.inputs.token }} + DESTINATION: ${{ github.event.inputs.destination }} + WHOLE_AMOUNT: ${{ github.event.inputs.whole_amount }} + WEI_AMOUNT: ${{ github.event.inputs.wei_amount }} + MULTISIG: ${{ github.event.inputs.multisig }} + CHAIN_NAME: ${{ github.event.inputs.chain_name }} + INFURA_KEY: ${{ secrets.INFURA_KEY }} + ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }} + + - name: Prepare PR title and body + run: | + echo "PR_TITLE=Transfer of $TOKEN to $DESTINATION on $CHAIN_NAME" >> $GITHUB_ENV + echo "PR_BODY=Automatically generated payload to transfer funds. See report that will be generated by CI/CD below. If no report, check action, something is wrong" >> $GITHUB_ENV + env: + TOKEN: ${{ github.event.inputs.token }} + DESTINATION: ${{ github.event.inputs.destination }} + CHAIN_NAME: ${{ github.event.inputs.chain_name }} + + - name: Generate branch name + id: generate-branch-name + run: | + echo "::set-output name=branch::${{ github.job }}-$(date +'%Y%m%d%H%M%S')" + - name: Create Pull Request + id: cpr + uses: peter-evans/create-pull-request@v7 + with: + title: ${{ env.PR_TITLE }} + body: ${{ env.PR_BODY }} + branch: ${{ steps.generate-branch-name.outputs.branch }} + labels: "Automatic Payload" + delete-branch: true + + run_reports: + needs: erc20-transfer + secrets: inherit + uses: "BalancerMaxis/multisig-ops/.github/workflows/run_reports_reusable.yaml@main" + with: + pr_number: ${{ needs.erc20-transfer.outputs.pull-request-number }} + checkout_ref: ${{ needs.erc20-transfer.outputs.pull-request-branch }} diff --git a/.github/workflows/generate_STIP_PR.yaml b/.github/workflows/generate_STIP_PR.yaml new file mode 100644 index 000000000..dcedfa32e --- /dev/null +++ b/.github/workflows/generate_STIP_PR.yaml @@ -0,0 +1,48 @@ +name: Generate STIP PR +on: + workflow_dispatch: + inputs: + epoch_end_date: + description: "The date like YYYY-MM-DD that was used to run the report in BalancerMaxis/STIP_Automation. Use the action there to create a PR and merge it to main first." + required: true + +jobs: + STIP_PR: + runs-on: ubuntu-latest + outputs: + pull-request-number: ${{ steps.cpr.outputs.pull-request-number}} + pull-request-head-sha: ${{ steps.cpr.outputs.pull-request-head-sha }} + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.9 + + - name: Pull files from STIP repo + run: | + cd ../ + git clone https://github.com/BalancerMaxis/STIP_automation + ls + cd - + cp ../STIP_automation/output/*${{ github.event.inputs.epoch_end_date }}.* MaxiOps/STIP + + - name: Create PR + id: cpr + uses: peter-evans/create-pull-request@v7 + with: + commit-message: "STIP Payment Payload" + title: "STIP Distribution Payload" + branch: gha-stip + delete-branch: true + labels: "STIP" + + run_reports: + needs: STIP_PR + uses: "BalancerMaxis/multisig-ops/.github/workflows/run_reports_reusable.yaml@main" + secrets: inherit + with: + pr_number: ${{ needs.merge_jsons.outputs.pull-request-number }} + checkout_ref: "gha-stip" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 9c7c8b0a1..000000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Continuous Integration - -on: - pull_request: - branches: [main] - -jobs: - prettier: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - # Make sure the actual branch is checked out when running on pull requests - ref: ${{ github.head_ref }} - # This is important to fetch the changes to the previous commit - fetch-depth: 0 - - - name: Prettify code - uses: creyD/prettier_action@v4.2 - with: - # This part is also where you can pass other options, for example: - prettier_options: --write **/*.json diff --git a/.github/workflows/merge_json.yaml b/.github/workflows/merge_json.yaml new file mode 100644 index 000000000..d1b0e842f --- /dev/null +++ b/.github/workflows/merge_json.yaml @@ -0,0 +1,55 @@ +name: Merge JSON payloads + +on: + workflow_dispatch: + inputs: + runWeek: + description: "The week to run on like YYYY-W##, should match a directory in BIPs/" + required: true + +jobs: + merge_jsons: + runs-on: ubuntu-latest + outputs: + pull-request-number: ${{ steps.cpr.outputs.pull-request-number}} + pull-request-head-sha: ${{ steps.cpr.outputs.pull-request-head-sha }} + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Cache Compiler Installations + uses: actions/cache@v4 + with: + path: | + ~/.solcx + ~/.vvm + key: compiler-cache + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.9 + + - name: Run script with JSON files + run: | + pip3 install -r action-scripts/requirements-actions.txt + python action-scripts/merge_pr_jsons.py --target BIPs/${{ github.event.inputs.runWeek }} + + - name: Create PR + id: cpr + uses: peter-evans/create-pull-request@v7 + with: + commit-message: "Combined JSON Payloads ${{ github.event.inputs.runWeek }}" + title: "Combined JSON payloads ${{ github.event.inputs.runWeek }}" + reviewers: gosuto-inzasheru,xeonus + branch: gha-payload-merge-${{ github.event.inputs.runWeek }} + delete-branch: true + labels: "Merged Payloads" + + run_reports: + needs: merge_jsons + uses: "BalancerMaxis/multisig-ops/.github/workflows/run_reports_reusable.yaml@main" + secrets: inherit + with: + pr_number: ${{ needs.merge_jsons.outputs.pull-request-number }} + checkout_ref: "gha-payload-merge-${{ github.event.inputs.runWeek }}" diff --git a/.github/workflows/merge_json_files.yaml b/.github/workflows/merge_json_files.yaml deleted file mode 100644 index 5cca483be..000000000 --- a/.github/workflows/merge_json_files.yaml +++ /dev/null @@ -1,54 +0,0 @@ -name: Merge JSON files - -on: - pull_request: - types: [closed] - -jobs: - merge_json: - if: github.event.pull_request.merged == true - runs-on: ubuntu-latest - steps: - - name: Checkout code (PR) - uses: actions/checkout@v3 - with: - path: pr - - - name: Checkout main branch for combined jsons - uses: actions/checkout@v3 - with: - ref: main - path: main - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: 3.x - - - name: Install dependencies - run: | - pwd - ls - cd main/tools/python - python -m venv venv - source venv/bin/activate - pip install -r requirements.txt - - - name: Merge JSON files - env: - PR_NUMBER: ${{ github.event.number }} - - - run: | - python main/tools/python/merge_pr_jsons.py - - - name: Commit and push changes - run: | - cd main - git config --global user.email "github-actions[bot]@users.noreply.github.com" - git config --global user.name "GitHub Actions" - git add -A - git commit -m "Merge JSON files" - git push origin main - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/poke_injectors.yaml b/.github/workflows/poke_injectors.yaml new file mode 100644 index 000000000..ce2e64d18 --- /dev/null +++ b/.github/workflows/poke_injectors.yaml @@ -0,0 +1,43 @@ +name: Poke Onchain Rewards Injectors + +on: + workflow_dispatch: + schedule: + - cron: "0/5 * * * *" +env: + KEYWORDS: ${{ secrets.KEEPER_PRIVATE_WORDS }} + WEB3_INFURA_PROJECT_ID: ${{ secrets.WEB3_INFURA_PROJECT_ID }} + ETHERSCAN_TOKEN: ${{ secrets.ETHERSCAN_TOKEN }} + FRAXSCAN_TOKEN: ${{ secrets.FRAXSCAN_TOKEN }} + ARBISCAN_TOKEN: ${{ secrets.ARBISCAN_TOKEN }} + GNOSISSCAN_TOKEN: ${{ secrets.GNOSISSCAN_TOKEN }} + POLYGONSCAN_TOKEN: ${{ secrets.POLYGONSCAN_TOKEN }} + OPTIMISMSCAN_TOKEN: ${{ secrets.OPTIMISMSCAN_TOKEN }} + ZKEVMSCAN_TOKEN: ${{ secrets.ZKEVMSCAN_TOKEN }} + SNOWTRACE_TOKEN: ${{ secrets.SNOWTRACE_TOKEN }} + BASESCAN_TOKEN: ${{ secrets.BASESCAN_TOKEN }} +jobs: + poke_injectors: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Cache Compiler Installations + uses: actions/cache@v4 + with: + path: | + ~/.solcx + ~/.vvm + key: compiler-cache + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + - name: Poke'em + run: | + cd action-scripts/brownie + pip3 install -r requirements-actions.txt + touch .env + brownie run scripts/pokeInjectors.py diff --git a/.github/workflows/post_aura_gauge_votes.yaml b/.github/workflows/post_aura_gauge_votes.yaml new file mode 100644 index 000000000..9967d5835 --- /dev/null +++ b/.github/workflows/post_aura_gauge_votes.yaml @@ -0,0 +1,63 @@ +name: Post vlAURA snapshot votes to voter multisig and send to the vote relayer + +on: + push: + branches: + - main + paths: + - 'MaxiOps/vlaura_voting/**/input/*.csv' + +jobs: + post_aura_gauge_votes: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Setup Python 3.9 + uses: actions/setup-python@v5 + with: + python-version: 3.9 + + - name: Determine week-string + id: week-string + run: | + # Get the path of the changed CSV file + CSV_PATH=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep '/input/.*\.csv$' | head -n 1) + + if [ -z "$CSV_PATH" ]; then + echo "No CSV file found in recent changes." + exit 1 + fi + + echo "CSV Path: $CSV_PATH" + + YEAR=$(echo $CSV_PATH | cut -d'/' -f3) + WEEK=$(echo $CSV_PATH | cut -d'/' -f4) + WEEK_STRING="${YEAR}-${WEEK}" + + echo "week-string=$WEEK_STRING" >> $GITHUB_OUTPUT + + - name: vlAURA Voting + env: + ETHNODEURL: ${{ secrets.ETHNODEURL }} + KEEPER_PRIVATE_WORDS: ${{ secrets.KEEPER_PRIVATE_WORDS }} + run: | + pwd + RUN_DIR=tools/python/aura_snapshot_voting + pip3 install -r $RUN_DIR/requirements.txt + echo "grabbing votes for: ${{ steps.week-string.outputs.week-string }}" + python3 $RUN_DIR/vote.py --week-string "${{ steps.week-string.outputs.week-string }}" + + - name: Create PR + id: cpr + uses: peter-evans/create-pull-request@v7 + with: + commit-message: "task: vlaura vote report for ${{ steps.week-string.outputs.week-string }}" + title: "vlaura vote report for ${{ steps.week-string.outputs.week-string }}" + branch: "gha-biweekly-vlaura-votes-${{ steps.week-string.outputs.week-string }}" + delete-branch: true + labels: "vlAURA-Voting-Round" \ No newline at end of file diff --git a/.github/workflows/process_every_payload.yaml b/.github/workflows/process_every_payload.yaml new file mode 100644 index 000000000..9cc402bbf --- /dev/null +++ b/.github/workflows/process_every_payload.yaml @@ -0,0 +1,16 @@ +name: Process BIP PR + +on: + pull_request_target: + types: [opened, reopened, synchronize] + paths: + - "BIPs/**" + - "config/**" + - "MaxiOps/**" +jobs: + run_reports: + uses: "BalancerMaxis/multisig-ops/.github/workflows/run_reports_reusable.yaml@main" + secrets: inherit + with: + pr_number: ${{ github.event.number }} + checkout_ref: ${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/recycle_paladin_bribes.yaml b/.github/workflows/recycle_paladin_bribes.yaml new file mode 100644 index 000000000..e0be283f1 --- /dev/null +++ b/.github/workflows/recycle_paladin_bribes.yaml @@ -0,0 +1,63 @@ +name: Recycle Paladin Bribes + +on: + workflow_dispatch: + +jobs: + recycle_bribes: + runs-on: ubuntu-latest + outputs: + pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} + pull-request-branch: ${{ steps.generate-branch-name.outputs.branch }} + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + pip install -r tools/python/requirements.txt + + - name: Run script + env: + DRPC_KEY: ${{ secrets.DRPC_KEY }} + run: | + python tools/python/paladin_claiming/recycle_bribes.py + + - name: Generate branch name + id: generate-branch-name + run: | + echo "branch=paladin-bribes-$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + + - name: Create Pull Request + id: cpr + uses: peter-evans/create-pull-request@v7 + with: + commit-message: "feat: recycle paladin bribes - ${{ steps.generate-branch-name.outputs.date }}" + title: "Recycle Paladin Bribes - ${{ steps.generate-branch-name.outputs.date }}" + body: | + Run result from [`tools/python/paladin_claiming/recycle_bribes.py`](../blob/main/tools/python/paladin_claiming/recycle_bribes.py) + + Output CSV files: + * [Mainnet claimed bribes](../tree/${{ steps.generate-branch-name.outputs.branch }}/MaxiOps/paladin_bribes/${{ steps.generate-branch-name.outputs.date }}/mainnet/paladin_claims_mainnet_${{ steps.generate-branch-name.outputs.date }}.csv) + * [Mainnet tokens to sell](../tree/${{ steps.generate-branch-name.outputs.branch }}/MaxiOps/paladin_bribes/${{ steps.generate-branch-name.outputs.date }}/mainnet/paladin_tokens_to_sell_mainnet_${{ steps.generate-branch-name.outputs.date }}.csv) + * [Arbitrum claimed bribes](../tree/${{ steps.generate-branch-name.outputs.branch }}/MaxiOps/paladin_bribes/${{ steps.generate-branch-name.outputs.date }}/arbitrum/paladin_claims_arbitrum_${{ steps.generate-branch-name.outputs.date }}.csv) + * [Arbitrum tokens to sell](../tree/${{ steps.generate-branch-name.outputs.branch }}/MaxiOps/paladin_bribes/${{ steps.generate-branch-name.outputs.date }}/arbitrum/paladin_tokens_to_sell_arbitrum_${{ steps.generate-branch-name.outputs.date }}.csv) + + branch: ${{ steps.generate-branch-name.outputs.branch }} + labels: "Automatic Payload" + delete-branch: true + + run_reports: + needs: recycle_bribes + secrets: inherit + uses: "BalancerMaxis/multisig-ops/.github/workflows/run_reports_reusable.yaml@main" + with: + pr_number: ${{ needs.recycle_bribes.outputs.pull-request-number }} + checkout_ref: ${{ needs.recycle_bribes.outputs.pull-request-branch }} \ No newline at end of file diff --git a/.github/workflows/review_aura_gauge_votes.yaml b/.github/workflows/review_aura_gauge_votes.yaml new file mode 100644 index 000000000..b4ef3c3f4 --- /dev/null +++ b/.github/workflows/review_aura_gauge_votes.yaml @@ -0,0 +1,71 @@ +name: Review vLAURA Votes + +on: + pull_request: + paths: + - 'MaxiOps/vlaura_voting/**/input/*.csv' + workflow_dispatch: + inputs: + week-string: + description: "The week to review like YYYY-W##" + required: true + +jobs: + review_votes: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Setup Python 3.9 + uses: actions/setup-python@v5 + with: + python-version: 3.9 + + - name: Determine week-string + id: week-string + run: | + if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then + echo "week-string=${{ github.event.inputs.week-string }}" >> $GITHUB_OUTPUT + else + # Get the path of the changed CSV file + CSV_PATH=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} | grep '/input/.*\.csv$' | head -n 1) + + if [ -z "$CSV_PATH" ]; then + echo "No CSV file found in recent changes." + exit 1 + fi + + echo "CSV Path: $CSV_PATH" + + YEAR=$(echo $CSV_PATH | cut -d'/' -f3) + WEEK=$(echo $CSV_PATH | cut -d'/' -f4) + WEEK_STRING="${YEAR}-${WEEK}" + + echo "week-string=$WEEK_STRING" >> $GITHUB_OUTPUT + fi + + - name: Review vLAURA Votes + run: | + pwd + RUN_DIR=tools/python/aura_snapshot_voting + pip3 install -r $RUN_DIR/requirements.txt + echo "Reviewing votes for: ${{ steps.week-string.outputs.week-string }}" + python3 $RUN_DIR/review_votes.py --week-string "${{ steps.week-string.outputs.week-string }}" + + - name: Comment PR + if: github.event_name == 'pull_request' + uses: actions/github-script@v7 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + script: | + const fs = require('fs'); + const reviewOutput = fs.readFileSync('review_output.md', 'utf8'); + github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: reviewOutput + }); \ No newline at end of file diff --git a/.github/workflows/run_auth_gen.yaml b/.github/workflows/run_auth_gen.yaml new file mode 100644 index 000000000..09a003b05 --- /dev/null +++ b/.github/workflows/run_auth_gen.yaml @@ -0,0 +1,45 @@ +name: Generate new Authorizer Payloads + +on: + pull_request: + types: [labeled, synchronize] + +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +jobs: + gen_auth: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Cache Compiler Installations + uses: actions/cache@v4 + with: + path: | + ~/.solcx + ~/.vvm + key: compiler-cache + + - name: Setup Python 3.10 + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Generate Add Permissions Payload + if: ${{ github.event.label.name == 'Generate Authorizer' }} + env: + WEB3_INFURA_PROJECT_ID: ${{ secrets.WEB3_INFURA_PROJECT_ID }} + run: | + pwd + pip3 install -r action-scripts/requirements-actions.txt + python3 action-scripts/gen_add_permissions_payload.py + + - name: Commit and push changes + uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: Generate permissions add payload and tables + commit_user_name: GitHub Actions + commit_user_email: github-actions[bot]@users.noreply.github.com + commit_author: Github Actions diff --git a/.github/workflows/run_feesweep.yaml b/.github/workflows/run_feesweep.yaml index fd8fcb3b0..4200a5762 100644 --- a/.github/workflows/run_feesweep.yaml +++ b/.github/workflows/run_feesweep.yaml @@ -1,4 +1,8 @@ -name: Run Sweep Fees if new input data is there +name: Generate feeSweep payloads + +on: + pull_request: + types: [labeled, synchronize] on: pull_request: @@ -6,35 +10,33 @@ on: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + LABEL: Sweep Fees jobs: sweepFees: - if: github.event.label.name == 'Sweep Fees' runs-on: ubuntu-latest defaults: run: working-directory: tools/python steps: - - uses: actions/checkout@v2 - - - name: Setup Python 3.9 - uses: actions/setup-python@v2 - with: - python-version: 3.9 - - - name: print working dir - run: pwd - - - name: Install Requirements - run: pip install -r requirements.txt - - - name: Run Sweep - run: python3 sweepFees.py - - - name: Commit and push changes - run: | - git config --global user.email "github-actions[bot]@users.noreply.github.com" - git config --global user.name "GitHub Actions" - git add -A - git commit -m "Generate Fee Sweep transaction builder jsons" - git push origin main \ No newline at end of file + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Python 3.9 + uses: actions/setup-python@v5 + with: + python-version: 3.9 + + - name: Run Sweep + if: github.event.label.name == 'Sweep Fees' + run: | + pip install -r requirements.txt + python3 sweepFees.py + + - name: Commit and push changes + uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: Generate Fee Sweep transaction builder jsons + commit_user_name: GitHub Actions + commit_user_email: github-actions[bot]@users.noreply.github.com + commit_author: Github Actions diff --git a/.github/workflows/run_reports_reusable.yaml b/.github/workflows/run_reports_reusable.yaml new file mode 100644 index 000000000..95a61de3d --- /dev/null +++ b/.github/workflows/run_reports_reusable.yaml @@ -0,0 +1,126 @@ +name: Process and Report PR + +on: + workflow_call: + inputs: + pr_number: + required: true + type: string + checkout_ref: + required: true + type: string + +jobs: + generate_reports: + runs-on: ubuntu-latest + environment: ${{ github.event.pull_request.head.repo.fork && 'external' || 'internal' }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + WEB3_INFURA_PROJECT_ID: ${{ secrets.WEB3_INFURA_PROJECT_ID }} + ETHERSCAN_TOKEN: ${{ secrets.ETHERSCAN_TOKEN }} + ARBISCAN_TOKEN: ${{ secrets.ARBISCAN_TOKEN }} + GNOSISSCAN_TOKEN: ${{ secrets.GNOSISSCAN_TOKEN }} + POLYGONSCAN_TOKEN: ${{ secrets.POLYGONSCAN_TOKEN }} + OPTIMISMSCAN_TOKEN: ${{ secrets.OPTIMISMSCAN_TOKEN }} + ZKEVMSCAN_TOKEN: ${{ secrets.ZKEVMSCAN_TOKEN }} + SNOWTRACE_TOKEN: ${{ secrets.SNOWTRACE_TOKEN }} + BASESCAN_TOKEN: ${{ secrets.BASESCAN_TOKEN }} + TENDERLY_ACCESS_KEY: ${{ secrets.TENDERLY_ACCESS_KEY }} + TENDERLY_ACCOUNT_NAME: ${{ secrets.TENDERLY_ACCOUNT_NAME }} + TENDERLY_PROJECT_NAME: ${{ secrets.TENDERLY_PROJECT_NAME }} + PR_NUMBER: ${{ inputs.pr_number }} + COMMIT_SHA: ${{ inputs.checkout_ref }} + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: ${{ inputs.checkout_ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + fetch-depth: 0 + + - name: Cache Compiler Installations + uses: actions/cache@v4 + with: + path: | + ~/.solcx + ~/.vvm + key: compiler-cache + + - name: Setup Python 3.10 + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Setup Environment + run: | + cd action-scripts/brownie + : # https://github.com/yaml/pyyaml/issues/724#issuecomment-1848423837 + pip install "cython<3.0.0" wheel + pip install "pyyaml==5.4.1" --no-build-isolation + pip install -r requirements-actions.txt + touch .env + pwd + + - name: Generate Validation Report + id: validation-report + run: | + export COMMIT_SHA=`git rev-parse HEAD` + cd action-scripts/brownie + brownie run --network mainnet scripts/validate_bip.py + + - name: Generate Payload report + id: gen-report + continue-on-error: false + run: | + export COMMIT_SHA=`git rev-parse HEAD` + cd action-scripts/brownie + brownie networks import networks.yaml True + brownie run --network mainnet scripts/reports.py + + - name: Check for comment files + id: check_files + run: | + if [ -f "action-scripts/brownie/validate_bip_results.txt" ]; then + echo "validation_exists=true" >> $GITHUB_OUTPUT + else + echo "validation_exists=false" >> $GITHUB_OUTPUT + fi + + if [ -f "action-scripts/brownie/payload_reports.txt" ]; then + echo "payload_reports=true" >> $GITHUB_OUTPUT + else + echo "payload_reports=false" >> $GITHUB_OUTPUT + fi + + - name: Post Validation Report as Comment + continue-on-error: false + if: steps.check_files.outputs.validation_exists == 'true' + uses: thollander/actions-comment-pull-request@v3 + with: + file-path: action-scripts/brownie/validate_bip_results.txt + comment-tag: validation_report + pr-number: ${{ inputs.pr_number }} + + - name: Post Payload Report as Comment + continue-on-error: true + uses: thollander/actions-comment-pull-request@v3 + if: steps.check_files.outputs.payload_reports == 'true' + with: + file-path: action-scripts/brownie/payload_reports.txt + comment-tag: payload_report + pr-number: ${{ inputs.pr_number }} + + - name: Prettify code + uses: creyD/prettier_action@v4.3 + with: + # This part is also where you can pass other options, for example: + prettier_options: --write BIPs/**/*.json config/*.json MaxiOps/**/*.json + commit_message: Automated processing of Payload PR (validations, transformations, and reports) + reformat JSON + + - name: Commit and push reports + uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: + commit_user_name: GitHub Actions + commit_user_email: github-actions[bot]@users.noreply.github.com + commit_author: Github Actions diff --git a/.github/workflows/upkeeps.yaml b/.github/workflows/upkeeps.yaml new file mode 100644 index 000000000..7f9060fc7 --- /dev/null +++ b/.github/workflows/upkeeps.yaml @@ -0,0 +1,37 @@ +name: Query all Chainlink upkeeps + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + +jobs: + query_upkeeps: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: "upkeeps" + + - name: Set up Python 3.10 + uses: actions/setup-python@v5 + with: + python-version: "3.10" + cache: "pip" + + - name: Query Dune + env: + DUNE_API_KEY: ${{ secrets.DUNE_API_KEY }} + run: | + cd tools/python + pip install -r requirements.txt + python query_upkeeps.py + + - name: Commit CSV file + uses: stefanzweifel/git-auto-commit-action@v5 + with: + branch: "upkeeps" + file_pattern: "upkeeps.csv" + commit_message: "ci: dump csv file with all queried upkeeps" diff --git a/.gitignore b/.gitignore index b6e47617d..b1faaeded 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,14 @@ +.secrets +json_files.actions.txt +## Jetbrains +.idea +**/.idea + +## vs +.DS_Store +**/.DS_Store + + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -127,3 +138,12 @@ dmypy.json # Pyre type checker .pyre/ + +# OS Specific storing files +.DS_Store + +# Pipenv +Pipfile* + +# nektos/act +.actrc diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..7ece464a6 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,17 @@ +{ + "[python]": { + "editor.defaultFormatter": "ms-python.black-formatter", + "editor.formatOnSave": true, + "editor.formatOnType": true + }, + "[json]": { + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "editor.formatOnType": true + }, + "[yaml]": { + "editor.defaultFormatter": "github.vscode-github-actions", + "editor.formatOnSave": true, + "editor.formatOnType": true + } +} diff --git a/BIPs/00GovApprovedPendingReview/[BIP-715] Enable Automatic Aura Relocking.json b/BIPs/00GovApprovedPendingReview/[BIP-715] Enable Automatic Aura Relocking.json new file mode 100644 index 000000000..0ed23d439 --- /dev/null +++ b/BIPs/00GovApprovedPendingReview/[BIP-715] Enable Automatic Aura Relocking.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728567199727, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x7a487e498d479ffe1df9745d82154257cf9d200bcb773f9bab55122e024d638a" + }, + "transactions": [ + { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "module", + "type": "address", + "internalType": "contract Module" + } + ], + "name": "enableModule", + "payable": false + }, + "contractInputsValues": { + "module": "0xfD20C63554A9916816dC5e5Df596A0333185F263" + } + } + ] +} diff --git a/BIPs/00GovApprovedPendingReview/[BIP-715] Enable Automatic Aura Relocking.report.txt b/BIPs/00GovApprovedPendingReview/[BIP-715] Enable Automatic Aura Relocking.report.txt new file mode 100644 index 000000000..542eab2cd --- /dev/null +++ b/BIPs/00GovApprovedPendingReview/[BIP-715] Enable Automatic Aura Relocking.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W42/[BIP-715] Enable Automatic Aura Relocking.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `1601187c2196db01437e98e66fc9e425a28b6df3` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0c3ebcb5-9b30-4c34-a4ce-88c75e39af37) + +``` ++--------------+------------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------+------------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +| enableModule | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f (multisigs/dao) | 0 | { | BIP-715 | N/A | +| | | | "module": [ | | | +| | | | "0xfD20C63554A9916816dC5e5Df596A0333185F263 (helpers/vlaura_relocker_module)" | | | +| | | | ] | | | +| | | | } | | | ++--------------+------------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00arbIncentives/2023-W37-airdrop.json b/BIPs/00arbIncentives/2023-W37-airdrop.json new file mode 100644 index 000000000..8a1ecfe08 --- /dev/null +++ b/BIPs/00arbIncentives/2023-W37-airdrop.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1695400635, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0xa14453084318277b11d38FbE05D857A4f647442B,0x04fc019017eD3F921D5ec11fFf84B870744BA0d1,0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xeF767E740D83d410794519c2F93Db32e44359a5C,0x2eB5661002b68EBE887d29d415c3A3b52536912C,0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A,0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0x260cbb867359a1084eC97de4157d06ca74e89415]", + "amountsPerPeriod": "[3156218344267209768960,1871487687336368275456,6085224881559604035584,358434404041029976064,4243778836872288534528,56284281427205316608,5318570171768415191040,3500000000000000000000,3500000000000000000000,735024914849779679232,1435934802809525108736,2317333761855929450496]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "80000000000000000000000" + } + } + ] +} diff --git a/BIPs/00arbIncentives/2023-W37-airdrop.report.txt b/BIPs/00arbIncentives/2023-W37-airdrop.report.txt new file mode 100644 index 000000000..3661a8fb8 --- /dev/null +++ b/BIPs/00arbIncentives/2023-W37-airdrop.report.txt @@ -0,0 +1,37 @@ +File name: BIPs/00arbIncentives/2023-W37-airdrop.json +COMMIT: `b153011850f51703c25ccb0593b7d8143e838927` +CHAIN(S): `arbitrum` +``` ++------------+------------------------------------------------+------------------------------------------------+----------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+================================================+========================================+=======+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 80000.0 (RAW: 80000000000000000000000) | N/A | 1 | ++------------+------------------------------------------------+------------------------------------------------+----------------------------------------+-------+------------+ +``` +File name: BIPs/00arbIncentives/2023-W37-airdrop.json +COMMIT: `b153011850f51703c25ccb0593b7d8143e838927` +CHAIN(S): `42161` +``` ++------------------+-----------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=====================================================================================================+=========+============================================================================================================================================================================================================================================================================================================+==============+============+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector) | 0 | { | N/A | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1 (N/A) ", | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (N/A) ", | | | +| | | | "0xa14453084318277b11d38FbE05D857A4f647442B (N/A) ", | | | +| | | | "0x04fc019017eD3F921D5ec11fFf84B870744BA0d1 (N/A) ", | | | +| | | | "0xd6B875d62c2661eaB66472F36c672e4B512f1135 (N/A) ", | | | +| | | | "0xeF767E740D83d410794519c2F93Db32e44359a5C (N/A) ", | | | +| | | | "0x2eB5661002b68EBE887d29d415c3A3b52536912C (N/A) ", | | | +| | | | "0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2 (N/A) ", | | | +| | | | "0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999 (N/A) ", | | | +| | | | "0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A (N/A) ", | | | +| | | | "0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3 (N/A) ", | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": "[3156218344267209768960,1871487687336368275456,6085224881559604035584,358434404041029976064,4243778836872288534528,56284281427205316608,5318570171768415191040,3500000000000000000000,3500000000000000000000,735024914849779679232,1435934802809525108736,2317333761855929450496]", | | | +| | | | "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2]" | | | +| | | | } | | | ++------------------+-----------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W21/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W21/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..b68e217ec --- /dev/null +++ b/BIPs/00batched/2023/2023-W21/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xaecef2a08acfa6437c6cad5d0aad2bd0172fec6050bd95d13aa5450c25aaa391", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x96484f2aBF5e58b15176dbF1A799627B53F13B6d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IOmniVotingEscrow", + "name": "omniVotingEscrow", + "type": "address" + } + ], + "name": "setOmniVotingEscrow", + "payable": false + }, + "contractInputsValues": { + "omniVotingEscrow": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xaecef2a08acfa6437c6cad5d0aad2bd0172fec6050bd95d13aa5450c25aaa391", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W21/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W21/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..b895869b1 --- /dev/null +++ b/BIPs/00batched/2023/2023-W21/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05" + } + }, + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "rootGauge", + "type": "address" + } + ], + "name": "addArbitrumGauge", + "payable": false + }, + "contractInputsValues": { + "rootGauge": "0x8F7a0F9cf545DB78BF5120D3DBea7DE9c6220c10" + } + }, + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6E7B9A1746a7eD4b23edFf0975B726E5aA673E21" + } + }, + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6F3b31296FD2457eba6Dca3BED65ec79e06c1295" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W21/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/2023/2023-W21/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..f652bd24c --- /dev/null +++ b/BIPs/00batched/2023/2023-W21/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x17391f0660d4c41d3e09aeb10b8c06f82f48919ea50dbfe36aaed62ad681d8eb", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + }, + { + "to": "0x9dA18982a33FD0c7051B19F0d7C76F2d5E7e017c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x17391f0660d4c41d3e09aeb10b8c06f82f48919ea50dbfe36aaed62ad681d8eb", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W21/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2023/2023-W21/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..43f073c24 --- /dev/null +++ b/BIPs/00batched/2023/2023-W21/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x61d367fdef9a156d543288bab90410760d120019702b0559ffb08a3075aa7d42", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0x7A2535f5fB47b8e44c02Ef5D9990588313fe8F05", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x61d367fdef9a156d543288bab90410760d120019702b0559ffb08a3075aa7d42", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W21/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2023/2023-W21/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..cbce2a8c3 --- /dev/null +++ b/BIPs/00batched/2023/2023-W21/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd2a18eaab6c28631d421edd953f276d757b0a3c5f5460535105596ed38d938d4", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x0f08eEf2C785AA5e7539684aF04755dEC1347b7c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0xD961E30156C2E0D0d925A0De45f931CB7815e970" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd2a18eaab6c28631d421edd953f276d757b0a3c5f5460535105596ed38d938d4", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W21/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W21/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..3422b5412 --- /dev/null +++ b/BIPs/00batched/2023/2023-W21/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xab668cacffdf6f785bcac395e15f5f5b4b109b0320004b24c7c39937e71d585c", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x81cFAE226343B24BA12EC6521Db2C79E7aeeb310", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0x6B5dA774890Db7B7b96C6f44e6a4b0F657399E2e" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xab668cacffdf6f785bcac395e15f5f5b4b109b0320004b24c7c39937e71d585c", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..dfab25958 --- /dev/null +++ b/BIPs/00batched/2023/2023-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,258 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151,0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGaugeType", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "EthereumSingleRecipientGauge" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968", + "gaugeType": "EthereumSingleRecipientGauge" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6bb341db03eede206e544c654a59ef89eea83bc65fada2cfeeaf18c5c0f76ac0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x83E443EF4f9963C77bd860f94500075556668cb8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "localUser", + "type": "address" + }, + { + "internalType": "address", + "name": "delegate", + "type": "address" + } + ], + "name": "setNetworkRemappingManager", + "payable": false + }, + "contractInputsValues": { + "localUser": "0xaF52695E1bB01A16D33D7194C28C42b10e0Dbec2", + "delegate": "0x5feA4413E3Cc5Cf3A29a49dB41ac0c24850417a0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6bb341db03eede206e544c654a59ef89eea83bc65fada2cfeeaf18c5c0f76ac0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE867AD0a48e8f815DC0cda2CDb275e0F163A480b", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21D8dB8a46393FEdE4e91eAfBc0cCf092faCb469", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..fe0f02b05 --- /dev/null +++ b/BIPs/00batched/2023/2023-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,139 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb78543e00712C3ABBA10D0852f6E38FDE2AaBA4d", + "gaugeType": "EthereumSingleRecipientGauge" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf8C85bd74FeE26831336B51A90587145391a27Ba", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc61e7E858b5a60122607f5C7DF223a53b01a1389", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W22/1-anySafeWillDo.json b/BIPs/00batched/2023/2023-W22/1-anySafeWillDo.json new file mode 100644 index 000000000..a1ccaef21 --- /dev/null +++ b/BIPs/00batched/2023/2023-W22/1-anySafeWillDo.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Gnosis", + "gauges": [ + "0xf8C85bd74FeE26831336B51A90587145391a27Ba", + "0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff", + "0xc61e7E858b5a60122607f5C7DF223a53b01a1389" + ] + } + }, + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "EthereumSingleRecipientGauge", + "gauges": ["0xb78543e00712C3ABBA10D0852f6E38FDE2AaBA4d"] + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W23/bbeusd-payload.csv b/BIPs/00batched/2023/2023-W23/bbeusd-payload.csv new file mode 100644 index 000000000..80d7320ab --- /dev/null +++ b/BIPs/00batched/2023/2023-W23/bbeusd-payload.csv @@ -0,0 +1,28 @@ +token_type,token_address,receiver,amount,id +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x9D5Df30F475CEA915b1ed4C0CCa59255C897b61B,152911.8444, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x49a2dcc237a65cc1f412ed47e0594602f6141936,7112.874538, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x8061199a31983a077e691c08b2263a4cf5c24093,1068.372673, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x701902858a6a9b6f36603244622732d9ec57a82a,514.3769307, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0xbc20ddb5fcc8920e0f74fcb29b4981d802fef881,188.1282639, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0xf05f5d4ad1b3fd5ad57ba5ca386d0db2e8b317aa,85.70880817, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x356226e2f6d49749fd5f0fa5656acf86b20f3485,50.21695532, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0xf8cde0c8b13de793ad9597713a05f9fe9730af01,17.96399479, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0xcf4ff1e03830d692f52eb094c52a5a6a2181ab3f,0.1028568861, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x9008d19f58aabd9ed0d60971565aa8510560ab41,13.23843593, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x854b004700885a61107b458f11ecc169a019b764,11.82516575, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x2e9c7a211dec8209762b0a2665ce387286479c56,10.08150865, +erc20,0x6b175474e89094c44da98b954eedeac495271d0f,0x027917095a4d4964eff7280676f405126bf9a6b5,5.372086472, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x9D5Df30F475CEA915b1ed4C0CCa59255C897b61B,146838.2339, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x49a2dcc237a65cc1f412ed47e0594602f6141936,6830.353393, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x8061199a31983a077e691c08b2263a4cf5c24093,1025.937246, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x701902858a6a9b6f36603244622732d9ec57a82a,493.9460404, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0xbc20ddb5fcc8920e0f74fcb29b4981d802fef881,180.6558683, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0xf05f5d4ad1b3fd5ad57ba5ca386d0db2e8b317aa,82.30448121, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x356226e2f6d49749fd5f0fa5656acf86b20f3485,2.931531566, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0xf8cde0c8b13de793ad9597713a05f9fe9730af01,17.25047056, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0xcf4ff1e03830d692f52eb094c52a5a6a2181ab3f,32.9238143, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0xec576a26335de1c360d2fc9a68cba6ba37af4a13,29.86860648, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x9008d19f58aabd9ed0d60971565aa8510560ab41,12.71260941, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x854b004700885a61107b458f11ecc169a019b764,10.17235011, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x2e9c7a211dec8209762b0a2665ce387286479c56,9.681074292, +erc20,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x027917095a4d4964eff7280676f405126bf9a6b5,5.158708883, \ No newline at end of file diff --git a/BIPs/00batched/2023/2023-W24/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W24/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..a71efa8a1 --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,389 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9AB7B0C7b154f626451c9e8a68dC04f58fb6e5Ce", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4E3c048BE671852277Ad6ce29Fd5207aA12fabff", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4ca6AC0509E6381Ca7CD872a6cdC0Fbf00600Fa1", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xDD4Db3ff8A37FE418dB6FF34fC316655528B6bbC", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x36365dA262dB3965Ba2E1C4411409Bf22508e0A1", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe9866B9dc2c1213433f614CbB22EdAA0FAFF9a66", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x260779495dA7Ce3A76b44F5C994cD18EBDa8177f", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf460C9A5D00ef665F12Ee9634983A2b799dA5317", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2cc5BebcFdAAD20f2a608EC153d1C7BED66EeEC3", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc534C30749b6C198D35a7836E26076E7745D8936", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x91A75880b07d36672f5C8DFE0F2334f086e29D47", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5F4d57fd9Ca75625e4B7520c71c02948A48595d0", + "data": "0xab8f0945" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3697d13ee45583cf9c2c64a978ab5886bcd07ec2b851efbea2fced982b8f9596,0xc065d550fa98abc242b6baf98e7b2063590675f1ddd81bdb9ea8d8f5c5d52f98,0x7b09f4b61ccfe85436161b0223489b187d9f9158c542b5e6105df147afc78aca,0x15d3918ca8f9895d8906a780f5f402d32707bada7b1b5e7b21b7351257103a35,0xcf5e03a737e4f5ba6d13e23f893a1e0255b362d8ce22e9568e1565fcf92789c7,0x6c3a14f10cbcc5a3f4d0e4e8ad279e7a842735ab188e2b13fb84c6542cc3320c,0x78e9adfe5f05d7114a59d0870d78971192f871f57bb36e2aff2edbe75d425844,0xdee20d81c6075dcc437dbaaf02d316ab255cfcae4a154e04b17abdebc70a5b48,0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831,0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae,0xa5547190e3d59f2bfeb4174ca3454b2f2acaeed644bc7ad7018014516f73f2bd,0x0acc45f3ac7c04369514ee383aad82d5c1eef484fbf9ca5f6d87ad5c5859da40]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W24/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W24/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..93055b910 --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,23 @@ +File name: BIPs/00batched/2023-W24/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `e47969f61570d3fad33ee051a25da865024e0eb4` +CHAIN(S): `arbitrum, polygon, mainnet` +``` ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| killGauge() | 0x03cd191f589d12b0582a99808cf19851e468e6b500010000000000000000000a | BPTC | 0x03cD191F589d12b0582a99808cf19851E468E6B5 | N/A | 0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1 | 0.25% | 100.0% | L0 sidechain | +| killGauge() | 0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019 | B-50USDC-50WETH | 0x96646936b91d6B9D7D0c47C496AfBF3D6ec7B6f8 | N/A | 0x9AB7B0C7b154f626451c9e8a68dC04f58fb6e5Ce | 0.3% | N/A | mainnet | +| killGauge() | 0xa6f548df93de924d73be7d25dc02554c6bd66db500020000000000000000000e | B-50WBTC-50WETH | 0xA6F548DF93de924d73be7D25dC02554c6bD66dB5 | N/A | 0x4E3c048BE671852277Ad6ce29Fd5207aA12fabff | 0.25% | N/A | mainnet | +| killGauge() | 0x0b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a | B-60WETH-40DAI | 0x0b09deA16768f0799065C475bE02919503cB2a35 | N/A | 0x4ca6AC0509E6381Ca7CD872a6cdC0Fbf00600Fa1 | 0.05% | N/A | mainnet | +| killGauge() | 0x178e029173417b1f9c8bc16dcec6f697bc32374600000000000000000000025d | FUD | 0x178E029173417b1F9C8bC16DCeC6f697bC323746 | 200 | 0xDD4Db3ff8A37FE418dB6FF34fC316655528B6bbC | 0.01% | N/A | mainnet | +| killGauge() | 0x15c1cdacd3da1e1c1304200b1beb080d50bbbc0f00020000000000000000045f | 50TRYB-50USDC | 0x15C1cDAcd3dA1E1C1304200b1bEb080D50BbBc0F | N/A | 0x36365dA262dB3965Ba2E1C4411409Bf22508e0A1 | 0.1% | 2.0% | mainnet | +| killGauge() | 0x831261f44931b7da8ba0dcc547223c60bb75b47f000200000000000000000460 | B-wUSDR-STABLE | 0x831261f44931B7dA8ba0DcC547223c60BB75B47F | 100 | 0xe9866B9dc2c1213433f614CbB22EdAA0FAFF9a66 | 0.04% | 2.0% | mainnet | +| killGauge() | 0x519cce718fcd11ac09194cff4517f12d263be067000000000000000000000382 | BPT-USD+ | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 | 570 | 0x260779495dA7Ce3A76b44F5C994cD18EBDa8177f | 0.01% | 100.0% | L0 sidechain | +| killGauge() | 0x64541216bafffeec8ea535bb71fbc927831d0595000100000000000000000002 | B-33WETH-33WBTC-33USDC | 0x64541216bAFFFEec8ea535BB71Fbc927831d0595 | N/A | 0xf460C9A5D00ef665F12Ee9634983A2b799dA5317 | 0.25% | 100.0% | L0 sidechain | +| killGauge() | 0x9f9f548354b7c66dc9a9f3373077d86aaaccf8f2000200000000000000000a4a | 20USDC-80TNGBL | 0x9F9F548354B7C66Dc9a9f3373077D86AAACCF8F2 | N/A | 0x2cc5BebcFdAAD20f2a608EC153d1C7BED66EeEC3 | 0.3% | 2.0% | L0 sidechain | +| killGauge() | 0x34a81e8956bf20b7448b31990a2c06f96830a6e4000200000000000000000a14 | B-wUSDR-STABLE | 0x34A81e8956BF20b7448b31990A2c06F96830a6e4 | 100 | 0xc534C30749b6C198D35a7836E26076E7745D8936 | 0.04% | 2.0% | L0 sidechain | +| killGauge() | 0x0297e37f1873d2dab4487aa67cd56b58e2f27875000100000000000000000002 | B-POLYBASE | 0x0297e37f1873D2DAb4487Aa67cD56B58E2F27875 | N/A | 0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A | 0.25% | 100.0% | L0 sidechain | +| killGauge() | 0xf3aeb3abba741f0eece8a1b1d2f11b85899951cb000200000000000000000351 | MAI-USDC-SP | 0xf3AeB3aBbA741f0EEcE8a1B1D2F11b85899951CB | 500 | 0x91A75880b07d36672f5C8DFE0F2334f086e29D47 | 0.05% | N/A | mainnet | +| killGauge() | 0x186084ff790c65088ba694df11758fae4943ee9e000200000000000000000013 | B-50WETH-50YFI | 0x186084fF790C65088BA694Df11758faE4943EE9E | N/A | 0x5F4d57fd9Ca75625e4B7520c71c02948A48595d0 | 0.75% | N/A | mainnet | ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +``` diff --git a/BIPs/00batched/2023/2023-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..71bb48b42 --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,314 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x54f220a891f468629027C3Cc8A58722D4F576402", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xce99399fb4De36056A6831b159572E271360ea40", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF7d515DC47d5BD57786494628ed766d6bF31cd39", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7949426d750FEFC25754F149B2FB446B60c39387", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc85679E41f1F98E694D9F8983fdD484F98F2eB02", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8eeB783A4A67f626c6E3952AAeD0D6b104AaC85f", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x25869f277f474FA9459F40F5D4cB0D6A8Ab41967", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xacE0D479040231e3c6b17479cFd4444182d521d4", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..55c9ab20f --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,21 @@ +File name: BIPs/00batched/2023-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `f3882ab8a0362ece3c73672eb0099e99ecabfcae` +CHAIN(S): `mainnet, zkevm, arbitrum` +``` ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+ +| addGauge | 0x26c2b83fc8535deead276f5cc3ad9c1a2192e02700020000000000000000056b | OHM/bbaDAI BPT | 0x26c2B83FC8535DeEaD276f5Cc3ad9c1a2192E027 | N/A | 0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07 | 0.3% | 100.0% | mainnet | +| addGauge | 0x1d0a8a31cdb04efac3153237526fb15cc65a252000000000000000000000000f | B-rETH-STABLE | 0x1d0A8a31CDb04efAC3153237526Fb15cc65A2520 | 500 | 0x54f220a891f468629027C3Cc8A58722D4F576402 | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0xe1f2c039a68a216de6dd427be6c60decf405762a00000000000000000000000e | B-wstETH-STABLE | 0xe1F2c039a68A216dE6DD427Be6c60dEcf405762A | 1500 | 0xce99399fb4De36056A6831b159572E271360ea40 | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0xdf725fde6e89981fb30d9bf999841ac2c160b512000000000000000000000010 | B-wstETH/rETH-STABLE | 0xDF725FdE6E89981Fb30D9bF999841aC2C160b512 | 1500 | 0xF7d515DC47d5BD57786494628ed766d6bF31cd39 | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0x6f34a44fce1506352a171232163e7716dd073ade000200000000000000000015 | B-rETH-bboUSD | 0x6F34a44FCe1506352A171232163E7716Dd073ade | N/A | 0x7949426d750FEFC25754F149B2FB446B60c39387 | 0.3% | 100.0% | L0 sidechain | +| addGauge | 0x9e2d87f904862671eb49cb358e74284762cc9f42000200000000000000000013 | B-wstETH/bboUSD | 0x9e2D87f904862671eb49cB358E74284762cC9F42 | N/A | 0xc85679E41f1F98E694D9F8983fdD484F98F2eB02 | 0.3% | 100.0% | L0 sidechain | +| addGauge | 0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb28600000000000000000000000d | bb-o-USD | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 | 3000 | 0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58 | 0.005% | 100.0% | L0 sidechain | +| addGauge | 0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb200000000000000000000056a | rETH/bbaWETH BPT | 0x481C5fc05D63a58AA2f0F2aA417C021B5d419cB2 | 500 | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | 0.0001% | 100.0% | mainnet | +| addGauge | 0xce2da1d3e5b5e4e1913f9ff65ee029d38682d8b900020000000000000000044e | B-50ACID-50WETH | 0xCE2Da1D3e5b5e4E1913F9fF65eE029d38682d8b9 | N/A | 0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE | 0.25% | 2.0% | L0 sidechain | +| addGauge | 0xc5dc1316ab670a2eed5716d7f19ced321191f38200000000000000000000056e | B-wstETH/bb-ma3-weth | 0xC5DC1316AB670a2eeD5716d7F19CeD321191F382 | 1500 | 0x8eeB783A4A67f626c6E3952AAeD0D6b104AaC85f | 0.001% | 100.0% | mainnet | +| addGauge | 0x8bc65eed474d1a00555825c91feab6a8255c2107000000000000000000000453 | DOLA/USDC BPT | 0x8bc65Eed474D1A00555825c91FeAb6A8255C2107 | 200 | 0x25869f277f474FA9459F40F5D4cB0D6A8Ab41967 | 0.04% | 100.0% | L0 sidechain | +| addGauge | 0x567ecfcb22205d279bb8eed3e066989902bf03d5000000000000000000000452 | DOLA/bbaUSD-BPT | 0x567ECfCB22205D279BB8Eed3E066989902bF03D5 | 200 | 0xacE0D479040231e3c6b17479cFd4444182d521d4 | 0.04% | 100.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+ +``` diff --git a/BIPs/00batched/2023/2023-W24/1-anySafeWillDo.json b/BIPs/00batched/2023/2023-W24/1-anySafeWillDo.json new file mode 100644 index 000000000..db8cf4095 --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/1-anySafeWillDo.json @@ -0,0 +1,72 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": [ + "0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE", + "0x25869f277f474FA9459F40F5D4cB0D6A8Ab41967", + "0xacE0D479040231e3c6b17479cFd4444182d521d4" + ] + } + }, + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": [ + "0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE", + "0x25869f277f474FA9459F40F5D4cB0D6A8Ab41967", + "0xacE0D479040231e3c6b17479cFd4444182d521d4" + ] + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W24/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/2023/2023-W24/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..5b6d08d02 --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6", + "account": "0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W24/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00batched/2023/2023-W24/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..48aab7da1 --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe1a833117678417df5b0aeb8002f897e410d84f7a8f1906e355a97151a3f38a9", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe1a833117678417df5b0aeb8002f897e410d84f7a8f1906e355a97151a3f38a9", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W24/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2023/2023-W24/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..31de12ea6 --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,64 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13", + "account": "0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3697d13ee45583cf9c2c64a978ab5886bcd07ec2b851efbea2fced982b8f9596,0xc065d550fa98abc242b6baf98e7b2063590675f1ddd81bdb9ea8d8f5c5d52f98,0x7b09f4b61ccfe85436161b0223489b187d9f9158c542b5e6105df147afc78aca,0xce2ff98f438259b5f78b8cf5818e70fcc2ff35b13dc38356616b1431cea9726e,0xec5cf9ce37bce68429403f673d6dfd0a89d33d4af5960016f9a1bbd07c71be88,0xdb0c4ed39b25abe74530d93d30f2b418aca586eeb088f33f8e60a329c85ab416,0xa301b9c1ebd296e579cdbb2d99698e23f8197f41880e33215a5936b204b2b971,0x0cdf946c050f680a2bbec467e09e41ceaf108b331b1d5b902c9fa45f9e2d944a,0xdee20d81c6075dcc437dbaaf02d316ab255cfcae4a154e04b17abdebc70a5b48,0x22f3e304ab030be776b205711d7ba79f146b07726b10c5e9d29c24dacc09c140,0xf6c13c09ddba8f114fe2b23ff442766dca7a9bf303adfde386f20ac38c749733,0x0ad9662eb9978d490b9f9bc897a15af8892817d0c299cb8ec0c624cccd6b192d,0xdc4f292a9c37b8bfbaf2dc78ff4d2a53114e770bcb186a21957939f01ffbfe6b]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W24/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W24/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..bfd946dba --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x80d8e99e3b5fd50648b67ce84571603afc8ed8ea28310c743deef793d7a98d00,0x6213e9042b9814b9567bde72d3c7a61372862c3ac88c2df77d3205221af6c871,0xbe1515c6c371fbc1aead7b0ed2f23f3bc176eb727e587494ac0055414c5b4c11,0xe4ae7db31fa76b12846f2837e5b8ee34891b1b170470345521a088bd662e4571,0x79cf7f42fcb330293c1d98b9ac2db3a3122a615e3630596ebc2584c6bf0d1346,0xcf5e03a737e4f5ba6d13e23f893a1e0255b362d8ce22e9568e1565fcf92789c7,0xdee20d81c6075dcc437dbaaf02d316ab255cfcae4a154e04b17abdebc70a5b48,0x92253d002d63e0211f775527924e2891f18bb060ff2ab3be19c6b242bafa5fec,0xc383be2c6e87a9b18ae919e677f011279a8d98346dbcd5cb326053f5f873b753,0x70368640683195889d0f146ab060210f43fbb1c317a87bdf17a4dca8d8feed86,0x50ccb689033ea83f58a1b54b091916255bb56c2334a12ed908ecb06f72d2a688]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W24/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W24/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..ed3a678cd --- /dev/null +++ b/BIPs/00batched/2023/2023-W24/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xa1d71cc301546175f03bda02d1a4397c439df4116db7639596bf3b897a6a5293", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + }, + { + "to": "0x0c6052254551EAe3ECac77B01DFcf1025418828f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xa1d71cc301546175f03bda02d1a4397c439df4116db7639596bf3b897a6a5293", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..c62f34d82 --- /dev/null +++ b/BIPs/00batched/2023/2023-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,114 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da", + "data": "0xab8f0945" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6bb341db03eede206e544c654a59ef89eea83bc65fada2cfeeaf18c5c0f76ac0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x83E443EF4f9963C77bd860f94500075556668cb8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "localUser", + "type": "address" + }, + { + "internalType": "address", + "name": "delegate", + "type": "address" + } + ], + "name": "setNetworkRemappingManager", + "payable": false + }, + "contractInputsValues": { + "localUser": "0x9cC56Fa7734DA21aC88F6a816aF10C5b898596Ce", + "delegate": "0x4bE13bf2B983C31414b358C634bbb61230c332A7" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6bb341db03eede206e544c654a59ef89eea83bc65fada2cfeeaf18c5c0f76ac0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..40ff8f736 --- /dev/null +++ b/BIPs/00batched/2023/2023-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,139 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x175407b4710b5A1cB67a37C76859F17fb2ff6672", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x870Cd189889C1117b33bc8c94394a7477d4EB6fa", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x39dF6e857bdf7387273C43eBb373b9D74F467d35", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W25/1-anySafeWillDo.json b/BIPs/00batched/2023/2023-W25/1-anySafeWillDo.json new file mode 100644 index 000000000..e149950ae --- /dev/null +++ b/BIPs/00batched/2023/2023-W25/1-anySafeWillDo.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": [ + "0x175407b4710b5A1cB67a37C76859F17fb2ff6672", + "0x870Cd189889C1117b33bc8c94394a7477d4EB6fa" + ] + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W25/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W25/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..cd9f8aeae --- /dev/null +++ b/BIPs/00batched/2023/2023-W25/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,89 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "100000000000000000000000" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "amount": "2000000000000000000000000" + } + }, + { + "to": "0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "amount": "472279000000000000000000" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..9943d66a5 --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,188 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8a88C1f44854C61a466aB55614F6A7778473418b", + "data": "0xab8f0945" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "55000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "132630000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "25400000000000000000000" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "20000000000000000000", + "data": null, + "contractMethod": { "inputs": [], "name": "deposit", "payable": true }, + "contractInputsValues": null + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "dst", "type": "address" }, + { "name": "wad", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0x166f54F44F271407f24AA1BE415a730035637325", + "wad": "20000000000000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "93750000000" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x883ac0fb54f0b07161f4c1d1132c7179cf4fd457dec4d2cf15af62bfe93d6402, 0xd1cab845861601849b43df194d75e16c676ee31cf20296f392e9d44dd3793ef3, 0xdcae01a1d3143e115458cda9b816ea278dd5daf08d9b6d3ec668632aa7b82dad, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0xa35b682012cf580f34e9cd41e4bf1c0210b6ebfc1a952fb582842c0e23b8c069, 0xb6f4ab951143da625c0c25d6eca1ce9e007e3139abfd9cfec3a301bad7238e15]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..cb40fce4f --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/00batched/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `f3882ab8a0362ece3c73672eb0099e99ecabfcae` +CHAIN(S): `mainnet` +``` ++-------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++-------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +| killGauge() | 0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d0000000000000000000004f8 | B-vETH-STABLE | 0x793F2D5Cd52dfafe7a1a1B0B3988940Ba2d6a63D | 50 | 0x8a88C1f44854C61a466aB55614F6A7778473418b | 0.04% | 10.0% | mainnet | ++-------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +``` diff --git a/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.txreport.txt b/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.txreport.txt new file mode 100644 index 000000000..988f3ace3 --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.txreport.txt @@ -0,0 +1,14 @@ +File name: BIPs/00batched/2023-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+ +| transfer | USDC | DotMap() | 30000.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000000000 | +| transfer | USDC | DotMap() | 55000.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 55000000000 | +| transfer | USDC | multisigs/maxi_ops | 132630.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x166f54F44F271407f24AA1BE415a730035637325 | 132630000000 | +| transfer | BAL | multisigs/maxi_ops | 25400.0 | 0xba100000625a3754423978a60c9317c58a424e3D | 0x166f54F44F271407f24AA1BE415a730035637325 | 25400000000000000000000 | +| transfer | USDC | multisigs/foundation | 93750.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x3B8910F378034FD6E103Df958863e5c684072693 | 93750000000 | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+ +``` diff --git a/BIPs/00batched/2023/2023-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..5d57b4f82 --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x730A168cF6F501cf302b803FFc57FF3040f378Bf", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..f2c6a9933 --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/00batched/2023-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `f3882ab8a0362ece3c73672eb0099e99ecabfcae` +CHAIN(S): `optimism` +``` ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| addGauge | 0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb200020000000000000000008b | BPT-WSTETH-WETH | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 | 500 | 0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87 | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0x39965c9dab5448482cf7e002f583c812ceb53046000100000000000000000003 | BPT-ROAD | 0x39965c9dAb5448482Cf7e002F583c812Ceb53046 | N/A | 0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d | 0.5% | 100.0% | L0 sidechain | +| addGauge | 0x1d95129c18a8c91c464111fdf7d0eb241b37a9850002000000000000000000c1 | BPT-RESERVE | 0x1D95129c18a8c91C464111FDf7d0Eb241B37a985 | N/A | 0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad | 0.05% | 2.0% | L0 sidechain | +| addGauge | 0xd20f6f1d8a675cdca155cb07b5dc9042c467153f0002000000000000000000bc | BPT-BOATH | 0xd20f6F1D8a675cDCa155Cb07b5dC9042c467153f | N/A | 0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73 | 2.0% | 2.0% | L0 sidechain | +| addGauge | 0x098f32d98d0d64dba199fc1923d3bf4192e787190001000000000000000000d2 | bb-rf-SOTRI | 0x098f32D98d0D64Dba199FC1923D3BF4192E78719 | N/A | 0xdc08146530DD9910F8ab4D0aD2C184f87e903540 | 0.4% | 100.0% | L0 sidechain | +| addGauge | 0x7ca75bdea9dede97f8b13c6641b768650cb837820002000000000000000000d5 | ECLP-wstETH-WETH | 0x7Ca75bdEa9dEde97F8B13C6641B768650CB83782 | N/A | 0x730A168cF6F501cf302b803FFc57FF3040f378Bf | 0.01% | 10.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +``` diff --git a/BIPs/00batched/2023/2023-W26/1-anySafeWillDo.json b/BIPs/00batched/2023/2023-W26/1-anySafeWillDo.json new file mode 100644 index 000000000..a8fec419c --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/1-anySafeWillDo.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Optimism", + "gauges": [ + "0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87", + "0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d", + "0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad", + "0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73", + "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "0x730A168cF6F501cf302b803FFc57FF3040f378Bf" + ] + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/2023/2023-W26/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..0ec42579e --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa, 0x94d058c565b594a202b88b57a685b093db0fd3406b926f2033a3443a6d8e1b50, 0x53a0625529c519f2e4a706b874baf30797466df455c9d39cd3ee19e6fe5bc6e2, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0xe4efb851c410e171273aee46d6939a91154b536e375e6fe59c09a4e617072339, 0xf65bca6198c80a6fc89409c116db12c0427a0b571cd0d2ee5dd614145d006810]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2023/2023-W26/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..9d17baddf --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x29596d20dcc54c557d94ae57af84f08715a588be1d756198eec61a3dc368b6c1, 0x9023a208ea63197b4da99dc4a096d44fb3152b807b6e4d37f15239d9fff8beb2, 0x478e7f53087deab85ae5870218c02821a6bafa4a75984797ac58cdfd513a385b, 0x4b0cfb0e3afde1903ef88f0072b490a0d78f1027a165371b1b4732daa84a9559, 0x338ff79f4b040df80f9cbc5217e904e2c8dbb7fb58beb6100c837ffa25ab4197]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00batched/2023/2023-W26/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..a09e53867 --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd21198f97672ee6118c9598a1b4c2053515bf28a40c4df5cf02365c4ff3d5ba7, 0x5610aeafaa3f5c4ef9b9b45ee9c0810b2f7bd64b7b504f19d1a8a3bde062a966]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2023/2023-W26/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..8b9372656 --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x70d81f1b0f71c8c3037ee34b69ad6980888bab8b2e32959f8c6aac274a7f10cb, 0x70ea65bcadbec99c10058d43f9acdc9a5ad05cde666b7d0065818feb763e7cb2, 0x2bd529cf8062fa0ff07c2054e5dc654a104415c2ae171092c450a88c9ff098a9, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0x3f743640e5e338ede5771590dab93e6860616f4318ca6d5a578c84be2c329844, 0xdb63b0c040446fcfa9503943eff986bc051fb5e7cb8f83a8bcebb7115c535b60]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W26/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..5bfe5dae2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f9dc3da8a6332271be3fccd1a107fd3117a1a988666ff673241edc8c12279ac, 0x0fb35afbdd369d25e1e13986af342dd66f4af22e88628aded66fc015fddee9e6, 0x6849898f08c7f64552f27ae1a4dfcc908200c4d6901ee3945a8c62dbf9cefb8f, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0x0585ff33fe95b333f37198850856b5b788891cbc6fd99c447b8d7625c94a33b9, 0x2cdef929bdc29c7b9ca832b8a8f62ce592fee150df38b736a8cab1d2918fc179]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W26/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W26/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..208c1299f --- /dev/null +++ b/BIPs/00batched/2023/2023-W26/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa, 0x57a99f3ed4c936dc3acc397e914c860702345856a9cca3a5be4c01fefa6a7674, 0xe41196603a4830aa78064fa1ce052e42607bc0a162707e1ce030e7fd9757f0b1]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..9ea4c622d --- /dev/null +++ b/BIPs/00batched/2023/2023-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "25263390000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W27/BIP-350.json", + "bip_number": "BIP-350" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "25262000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W27/BIP-350.json", + "bip_number": "BIP-350" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "28958330000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W27/BIP-351.json", + "bip_number": "BIP-351" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5278000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W27/BIP-103July2023.json", + "bip_number": "BIP-103" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..f7806d597 --- /dev/null +++ b/BIPs/00batched/2023/2023-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00batched/2023-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `157ffd44b98015eb3bf737de1364d30d346ab84b` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | transaction_index | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| transfer | USDC | N/A | 25263.39 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 25263390000 | BIP-350 | 0 | +| transfer | BAL | N/A | 25262.0 | 0xba100000625a3754423978a60c9317c58a424e3D | 0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 25262000000000000000000 | BIP-350 | 1 | +| transfer | BAL | multisigs/foundation | 28958.33 | 0xba100000625a3754423978a60c9317c58a424e3D | 0x3B8910F378034FD6E103Df958863e5c684072693 | 28958330000000000000000 | BIP-351 | 0 | +| transfer | USDC | N/A | 5278.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5278000000 | BIP-103 | 0 | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +``` diff --git a/BIPs/00batched/2023/2023-W28/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W28/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..26a978fbe --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,554 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x870Cd189889C1117b33bc8c94394a7477d4EB6fa", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21483F79a1aE94536Dc1d5dDfC6f591fB3B430Df", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x02DFcC6ca6611cCBDCe51049a332afDB91465584", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x29C6361Af40fc1B6585ce0885319511dF4450a8E", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x254f3a52Ba9e0cac4E32B648d129529622D1A46c", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xFd29298041eA355cF7e15652689F2865443C3144", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xCDb532170f8B524D047287bFEfAcd0cC02441b4A", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 10, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 11, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd40a3C414Bb6f82fC5625e32895F49E53220f73b", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 12, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7949426d750FEFC25754F149B2FB446B60c39387", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 13, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x227534d3F9aE72Cb5B31E1d0A27bE1A2859C6cC8", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 14, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-356.json", + "bip_number": "BIP-356" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901, 0x004ed6bc39c7b1141c8d34bc8c481dde189197c700d070129e6f6a3cbbfdce9f, 0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f, 0xbb09fe1ad67eb7a320ad9131d81ea3835e51215410ea5d5866bc516003d06287]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/mainnet.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f]", + "account": "0x1b300C86980a5195bCF49bD419A068D98dC133Db" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/mainnet.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca, 0x6bf9f64e8755a240cd5604ab5cabd4a1eed020059be9a1a64be071859f023276, 0xd5e70e51651eb5be66f83b01794f74b5dbb417b607bf0425c5c5d3aa7386b38b]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/mainnet.json", + "bip_number": "BIP-353" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W28/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W28/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..6b52efecf --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/00batched/2023-W28/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `521d1cc945dfab87a833ddf0114d93d97c54ad63` +CHAIN(S): `zkevm, polygon, arbitrum, mainnet` +``` ++-------------+----------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++-------------+----------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +| killGauge() | arbitrum | 0x01990f1e6f7f32296f125ee9469705c1c070054d000000000000000000000461 | Stafi rETH/WETH | 0x01990f1e6f7F32296f125eE9469705C1C070054D | 50 | 0x870Cd189889C1117b33bc8c94394a7477d4EB6fa | 0.04% | 10.0% | L0 sidechain | BIP-356 | 0 | +| killGauge() | zkevm | 0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb28600000000000000000000000d | bb-o-USD | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 | 3000 | 0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58 | 0.005% | 100.0% | L0 sidechain | BIP-356 | 1 | +| killGauge() | polygon | 0x36a0ee903841584f47e3c774b59e0cbfba46080f000000000000000000000b0a | B-ankrMATIC-MATIC-Stable | 0x36A0ee903841584f47E3c774B59E0CbFBA46080F | 50 | 0x21483F79a1aE94536Dc1d5dDfC6f591fB3B430Df | 0.04% | 100.0% | L0 sidechain | BIP-356 | 2 | +| killGauge() | mainnet | 0xeb567dde03f3da7fe185bdacd5ab495ab220769d000000000000000000000548 | ankrETH-bb-a-WETH-BPT | 0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d | 100 | 0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da | 0.04% | 100.0% | mainnet | BIP-356 | 3 | +| killGauge() | mainnet | 0xec3626fee40ef95e7c0cbb1d495c8b67b34d398300000000000000000000053d | B-S-UZD-BB-A-USD | 0xeC3626fEe40EF95e7C0CBb1D495C8B67B34D3983 | 500 | 0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0 | 0.04% | 2.0% | mainnet | BIP-356 | 4 | +| killGauge() | polygon | 0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4000200000000000000000b44 | 50stMATIC-BPT-50bbamUSD | 0x7F4f4942F2a14B6AB7B08b10ada1AAcede4EE8D4 | N/A | 0x02DFcC6ca6611cCBDCe51049a332afDB91465584 | 0.05% | 100.0% | L0 sidechain | BIP-356 | 5 | +| killGauge() | mainnet | 0x20b156776114e8a801e9767d90c6ccccc8adf398000000000000000000000499 | bb-yv-USD | 0x20b156776114E8a801e9767D90c6ccCCc8Adf398 | 2000 | 0x29C6361Af40fc1B6585ce0885319511dF4450a8E | 0.005% | 100.0% | mainnet | BIP-356 | 6 | +| killGauge() | mainnet | 0xcaa052584b462198a5a9356c28bce0634d65f65c0000000000000000000004db | bb-ma2-USD | 0xCAa052584b462198A5a9356c28bcE0634D65f65C | 2000 | 0x254f3a52Ba9e0cac4E32B648d129529622D1A46c | 0.005% | 100.0% | mainnet | BIP-356 | 7 | +| killGauge() | mainnet | 0x779d01f939d78a918a3de18cc236ee89221dfd4e0000000000000000000004c7 | bb-s-USD | 0x779d01F939D78a918A3de18cC236ee89221dfd4E | 2000 | 0xFd29298041eA355cF7e15652689F2865443C3144 | 0.005% | 100.0% | mainnet | BIP-356 | 8 | +| killGauge() | polygon | 0x8fd39252d683fdb60bddd4df4b53c9380b496d59000200000000000000000b45 | 50wstETH-BPT-50bbamUSD | 0x8fd39252d683fDB60BDDD4DF4B53C9380B496D59 | N/A | 0xCDb532170f8B524D047287bFEfAcd0cC02441b4A | 0.05% | 100.0% | L0 sidechain | BIP-356 | 9 | +| killGauge() | arbitrum | 0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352 | bb-rf-USD-BPT | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a | 2000 | 0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d | 0.005% | 100.0% | L0 sidechain | BIP-356 | 10 | +| killGauge() | mainnet | 0xfcf77141908aa22bfeac216123c5feb2531f373e00000000000000000000054a | B-rETH-swETH-STABLE | 0xFCF77141908Aa22bfEAc216123C5FEb2531f373e | 100 | 0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05 | 0.04% | 100.0% | mainnet | BIP-356 | 11 | +| killGauge() | arbitrum | 0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63000200000000000000000412 | 50wstETH-BPT-50bbaUSD | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | N/A | 0xd40a3C414Bb6f82fC5625e32895F49E53220f73b | 0.01% | 100.0% | L0 sidechain | BIP-356 | 12 | +| killGauge() | zkevm | 0x6f34a44fce1506352a171232163e7716dd073ade000200000000000000000015 | B-rETH-bboUSD | 0x6F34a44FCe1506352A171232163E7716Dd073ade | N/A | 0x7949426d750FEFC25754F149B2FB446B60c39387 | 0.3% | 100.0% | L0 sidechain | BIP-356 | 13 | +| killGauge() | zkevm | 0x68a69c596b3839023c0e08d09682314f582314e5000200000000000000000011 | 50wstETH-BPT-50-bboUSD | 0x68a69c596B3839023C0e08D09682314F582314e5 | N/A | 0x227534d3F9aE72Cb5B31E1d0A27bE1A2859C6cC8 | 0.3% | 100.0% | L0 sidechain | BIP-356 | 14 | ++-------------+----------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/00batched/2023/2023-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..1da2d4a34 --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,584 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0021e01B9fAb840567a8291b864fF783894EabC6", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x21eC388000B5BA5D9e3DF3848EA0c1f58e054Af7", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x29488df9253171AcD0a0598FDdA92C5F6E767a38", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3eFd3E18504dC213188Ed2b694F886A305a6e5ed", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb7b9B9D35e7F9E324C762235FB69848175C03A19", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb12ADA23eE766bd6b596E2bE556ea2046758b87c", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x80aed5C5C683FEC86817C98da334DD72424E7297", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-365A.json", + "bip_number": "BIP-365" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-360.json", + "bip_number": "BIP-360" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x882f961Def46deadAcf31798B295834a5b6d0c86", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-355.json", + "bip_number": "BIP-355" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD2C2b1C0F8Ad6E653eD7064fa7bAd7a22De8B249", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-363.json", + "bip_number": "BIP-363" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCe540832f7c790d25345Aa19FB1Db3cfDEA04611", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-363.json", + "bip_number": "BIP-363" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6f06b425e1bc11FC486C308c22e503d188525F06", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-364.json", + "bip_number": "BIP-364" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x70892E4355d0E04A3d19264E93c64C401520f3A4", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-357.json", + "bip_number": "BIP-357" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9e3f4FB69058244066801404e50889592d33cA11", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-354.json", + "bip_number": "BIP-354" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-359.json", + "bip_number": "BIP-359" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6EE63656BbF5BE3fdF9Be4982BF9466F6a921b83", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-358.json", + "bip_number": "BIP-358" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5c23661E747F84E0c71d782e5f1513126041734B", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-361.json", + "bip_number": "BIP-361" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..fdb839ac3 --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,28 @@ +File name: BIPs/00batched/2023-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `087fee858aee18aaeb7271cb8230e44cfd23dc15` +CHAIN(S): `arbitrum, mainnet, polygon` +``` ++----------+----------+--------------------------------------------------------------------+--------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+--------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+----------+ +| addGauge | mainnet | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | wstETH-rETH-sfrxETH-BPT | 1000 | 0x0021e01B9fAb840567a8291b864fF783894EabC6 | 0.01% | 100.0% | mainnet | BIP-365 | 0 | +| addGauge | mainnet | 0xc443c15033fcb6cf72cc24f1bda0db070ddd9786000000000000000000000593 | bb-a-USD | 3000 | 0x21eC388000B5BA5D9e3DF3848EA0c1f58e054Af7 | 0.0001% | 100.0% | mainnet | BIP-365 | 1 | +| addGauge | mainnet | 0x41503c9d499ddbd1dcdf818a1b05e9774203bf46000000000000000000000594 | wstETH-bb-a-WETH-BPT | 1500 | 0x29488df9253171AcD0a0598FDdA92C5F6E767a38 | 0.0001% | 100.0% | mainnet | BIP-365 | 2 | +| addGauge | mainnet | 0xd7edb56f63b2a0191742aea32df1f98ca81ed9c600000000000000000000058e | B-wstETH/bb-ma3-weth | 1500 | 0x3eFd3E18504dC213188Ed2b694F886A305a6e5ed | 0.001% | 100.0% | mainnet | BIP-365 | 3 | +| addGauge | polygon | 0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3000000000000000000000be2 | stMATIC-bb-a-WMATIC-BPT | 2000 | 0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7 | 0.01% | 100.0% | L0 sidechain | BIP-365 | 4 | +| addGauge | polygon | 0x402cfdb7781fa85d52f425352661128250b79e12000000000000000000000be3 | MaticX-bb-a-WMATIC-BPT | 2000 | 0xb7b9B9D35e7F9E324C762235FB69848175C03A19 | 0.01% | 100.0% | L0 sidechain | BIP-365 | 5 | +| addGauge | arbitrum | 0xbe0f30217be1e981add883848d0773a86d2d2cd4000000000000000000000471 | rETH-bb-a-WETH-BPT | 1500 | 0xb12ADA23eE766bd6b596E2bE556ea2046758b87c | 0.01% | 100.0% | L0 sidechain | BIP-365 | 6 | +| addGauge | arbitrum | 0x45c4d1376943ab28802b995acffc04903eb5223f000000000000000000000470 | wstETH-bb-a-WETH-BPT | 2000 | 0x80aed5C5C683FEC86817C98da334DD72424E7297 | 0.01% | 100.0% | L0 sidechain | BIP-365 | 7 | +| addGauge | arbitrum | 0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389000000000000000000000475 | bb-a-USD | 3000 | 0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6 | 0.01% | 100.0% | L0 sidechain | BIP-365 | 8 | +| addGauge | mainnet | 0xc2b021133d1b0cf07dba696fd5dd89338428225b000000000000000000000598 | GHO/bb-a-USD | 100 | 0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2 | 0.05% | 100.0% | mainnet | BIP-360 | 0 | +| addGauge | mainnet | 0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef3300000000000000000000058d | R-bb-s-DAI-BLP | 100 | 0x882f961Def46deadAcf31798B295834a5b6d0c86 | 0.05% | 100.0% | mainnet | BIP-355 | 0 | +| addGauge | arbitrum | 0x26e5c5e2b48815b59640a1a82ac3c2249188daf4000000000000000000000476 | alETH/wstETH-BPT | 100 | 0xD2C2b1C0F8Ad6E653eD7064fa7bAd7a22De8B249 | 0.04% | 100.0% | L0 sidechain | BIP-363 | 0 | +| addGauge | arbitrum | 0xfa92d9dd808d0e8d68079bdc7f01e74658e1ef15000000000000000000000477 | alETH/rETH-BPT | 100 | 0xCe540832f7c790d25345Aa19FB1Db3cfDEA04611 | 0.04% | 100.0% | L0 sidechain | BIP-363 | 1 | +| addGauge | polygon | 0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be000000000000000000000be4 | truMATIC-bb-a-WMATIC-BPT | 1500 | 0x6f06b425e1bc11FC486C308c22e503d188525F06 | 0.01% | 100.0% | L0 sidechain | BIP-364 | 0 | +| addGauge | mainnet | 0x3fa8c89704e5d07565444009e5d9e624b40be813000000000000000000000599 | GHO/LUSD | 100 | 0x70892E4355d0E04A3d19264E93c64C401520f3A4 | 0.05% | 100.0% | mainnet | BIP-357 | 0 | +| addGauge | mainnet | 0x4cbde5c4b4b53ebe4af4adb85404725985406163000000000000000000000595 | B-ETHx/bb-a-WETH | 1500 | 0x9e3f4FB69058244066801404e50889592d33cA11 | 0.04% | 100.0% | mainnet | BIP-354 | 0 | +| addGauge | mainnet | 0xb2b918f2d628b4c8ff237b0a1c6ac3bea222fedc00020000000000000000059c | 50GHO/50OHM | N/A | 0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9 | 0.05% | 100.0% | mainnet | BIP-359 | 0 | +| addGauge | mainnet | 0x7d98f308db99fdd04bbf4217a4be8809f38faa6400020000000000000000059b | 80wstETH/20GHO | N/A | 0x6EE63656BbF5BE3fdF9Be4982BF9466F6a921b83 | 0.3% | 100.0% | mainnet | BIP-358 | 0 | +| addGauge | mainnet | 0x9a172e1cb0e99f7e6dcc4c52e4655e8f337d5c0000000000000000000000059a | GHO/MAI | 100 | 0x5c23661E747F84E0c71d782e5f1513126041734B | 0.05% | 100.0% | mainnet | BIP-361 | 0 | ++----------+----------+--------------------------------------------------------------------+--------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/00batched/2023/2023-W28/1-anySafeWillDo.json b/BIPs/00batched/2023/2023-W28/1-anySafeWillDo.json new file mode 100644 index 000000000..d572a8c1b --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/1-anySafeWillDo.json @@ -0,0 +1,76 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": [ + "0xb12ADA23eE766bd6b596E2bE556ea2046758b87c", + "0x80aed5C5C683FEC86817C98da334DD72424E7297", + "0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6", + "0xD2C2b1C0F8Ad6E653eD7064fa7bAd7a22De8B249", + "0xCe540832f7c790d25345Aa19FB1Db3cfDEA04611" + ] + } + }, + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": [ + "0xb12ADA23eE766bd6b596E2bE556ea2046758b87c", + "0x80aed5C5C683FEC86817C98da334DD72424E7297", + "0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6", + "0xD2C2b1C0F8Ad6E653eD7064fa7bAd7a22De8B249", + "0xCe540832f7c790d25345Aa19FB1Db3cfDEA04611" + ] + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W28/10-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W28/10-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..0d2e600ca --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/10-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08, 0xb4b8b756b9cc9f73e9debc41c8f8a805f6f964192d26d6f1bf764f147279bc8b, 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae, 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/optimism.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae]", + "account": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/optimism.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x167c1baf0159e423e633f0a68e1025918332919ade802b33759880576cb2c50d, 0xadd685e44755d3d511a26b97a7c40f42354f1e494795ad163dd79e22da45026e, 0xdbfdeb1d2ce00232fda29f8069f731deb70f0e1438aa8a1e35e89eac02403c23]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/optimism.json", + "bip_number": "BIP-353" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W28/100-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W28/100-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..cd8558c54 --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/100-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff, 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/gnosis.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff]", + "account": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/gnosis.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3, 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56, 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/gnosis.json", + "bip_number": "BIP-353" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W28/1101-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W28/1101-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..0de76699a --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/1101-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656, 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604, 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e, 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/zkevm.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/zkevm.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85, 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313, 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/zkevm.json", + "bip_number": "BIP-353" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W28/137-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W28/137-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..0a50f5c9b --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/137-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263, 0xacd6e3cd60fe4741be79438b5d7599a59db6fe321838b1aafd090cb76ac6a5d0, 0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820, 0x91ce64502d2ca1550ea11bbfcdc5a965e2646c09818313a851c0eeb71cedbb1d]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/polygon.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820]", + "account": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/polygon.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x8e9ee99533bd178c1573e352145db0eeb33e8722b92d1d6fbc1de799b41f180c, 0x38db2dc993d272984aa505f0b59a8b6aac970193c0e50bfa5e8ba503c053a2a5, 0xbb90aa662dea36fc9db5c97eafcf6a4379941e6e2675d8c1bc1416a42b77db25]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/polygon.json", + "bip_number": "BIP-353" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W28/42161-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W28/42161-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..f8b24285d --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/42161-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad, 0xc0255b53e66bf2965d8fbd2af1cec52f34060d539ff8dd3c96a8d6aaa678d109, 0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b, 0x998b893d641593fd3aa179e7641c4e0a7ead0e9f8d25df6d5637ab28d32e924e]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/arbitrum.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b]", + "account": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/arbitrum.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xfab324385696857b52130b135e7e81f8b7f34382c9b27f254b6bca9a70fe0784, 0x3be753be2ced552d75d5556694d2012e157294f50103c95273191fb5a0209481, 0x9d2042bf873d984ff8ce2661c7f5854078b8bbf1d618d0509ec379533d3ba9af]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/arbitrum.json", + "bip_number": "BIP-353" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W28/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W28/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..a22b92ab0 --- /dev/null +++ b/BIPs/00batched/2023/2023-W28/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed, 0xffb70f4f9562b3a5f8e82e3c9eeb43b6769d1af1086819e6881cb0456404ecc1, 0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0, 0x2f33caac3ea80144501f854d7fc8870e770fe1ec5260b2f09d45014e4ae11b0c]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/avalanche.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0]", + "account": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/avalanche.json", + "bip_number": "BIP-353" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x846447d11e52871f13911642f2df294a08a10c704fd3746ee2b8e99ef3dd802a, 0x61422cbfc16cfb61b82397377ab5165c6755ee7466a24630f4027d79453e83e5, 0x28dcd620872aaaed93f0363c5b4b038f3b1fcaba6944fb976d670390e56accd0]", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W28/BIP-353/avalanche.json", + "bip_number": "BIP-353" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..23b1b2b0a --- /dev/null +++ b/BIPs/00batched/2023/2023-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-369-1.json", + "bip_number": "BIP-369" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "100000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-368.json", + "bip_number": "BIP-368" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..136ddc715 --- /dev/null +++ b/BIPs/00batched/2023/2023-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/00batched/2023-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `58aca0da88777cb185bdf22c671c397fe8305a4f` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+----------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++----------+---------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+----------+ +| transfer | mainnet | USDC | multisigs/lm | 100000.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000000000 | BIP-368 | 0 | ++----------+---------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+----------+ +``` diff --git a/BIPs/00batched/2023/2023-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..728556842 --- /dev/null +++ b/BIPs/00batched/2023/2023-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,644 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE35f0152f0d49fE8E386E5c42B656321ffB0d477", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0A4825154bCFD493d15777184d01B93e8115215a", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x06d27c0FE5AbF6020bf56E47c72Ca002dD5d9f54", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5669736FD1dF3572f9D519FcCf7536A750CFAc62", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe9E6E9597123034Fa3fc73D482852e18EdF9c282", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3A7Ed8916Ebb9131966b9b3af3cd8B9adcc53559", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7a4e71a8A33d3b385279079c503ca93905dd553e", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x774D0F67DcFA5568cA435c70fbA272C64352d859", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x735B275a567F6c921c82F83D4515beC1F72038D3", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 10, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x224989bC31286f0E6Dd6F32C0E475BbD4579A976", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 11, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xEE3cc827EF3e7a00a728Fd52199cd5A6e336361D", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 12, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1EcB261dc3496675c54514e44deA2a5115aEcb38", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 13, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdb218DC1394BbD787bb059dBd9F7E41063e16374", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 14, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCe3a024bAF36C91d315722B093928020a4F56622", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 15, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBc771929359B1A6386801705e8D185205d8f1CBF", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 16, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x95Ee4c90aC8AaFbAe0DfE18F08a290b59eacbc1b", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 17, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-366A.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9aaAf6757BE9e115895429EF6B81e05dCB951646", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-373.json", + "bip_number": "BIP-373" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x639F4583E505e9E0A16C5D90E1AF61b47415A3A9", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-374.json", + "bip_number": "BIP-374" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x44bc38d3aF025C0EA9a4729E79d6E44244d68Ac6", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-376.json", + "bip_number": "BIP-376" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..8e125ccc5 --- /dev/null +++ b/BIPs/00batched/2023/2023-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,30 @@ +File name: BIPs/00batched/2023-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `58aca0da88777cb185bdf22c671c397fe8305a4f` +CHAIN(S): `polygon, mainnet, arbitrum, gnosis` +``` ++----------+----------+--------------------------------------------------------------------+----------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+----------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +| addGauge | mainnet | 0x9b692f571b256140a39a34676bffa30634c586e100000000000000000000059d | bb-i-USD | 2000 | 0xE35f0152f0d49fE8E386E5c42B656321ffB0d477 | 0.001% | 100.0% | mainnet | BIP-366 | 0 | +| addGauge | mainnet | 0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e | uniETH-WETH | 50 | 0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5 | 0.04% | 100.0% | mainnet | BIP-366 | 1 | +| addGauge | mainnet | 0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a0300000000000000000000059f | vETH/WETH BPT | 50 | 0x0A4825154bCFD493d15777184d01B93e8115215a | 0.04% | 100.0% | mainnet | BIP-366 | 2 | +| addGauge | mainnet | 0x4c81255cc9ed7062180ea99962fe05ac0d57350b0000000000000000000005a3 | cbETH-bb-a-WETH-BPT | 1500 | 0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07 | 0.001% | 100.0% | mainnet | BIP-366 | 3 | +| addGauge | mainnet | 0x1bd2f176a812e312077bca87e37c08432bb09f3e0000000000000000000005a1 | qETH-bb-a-WETH-BPT | 100 | 0x06d27c0FE5AbF6020bf56E47c72Ca002dD5d9f54 | 0.04% | 100.0% | mainnet | BIP-366 | 4 | +| addGauge | mainnet | 0xae8535c23afedda9304b03c68a3563b75fc8f92b0000000000000000000005a0 | swETH-bb-a-WETH-BPT | 500 | 0x5669736FD1dF3572f9D519FcCf7536A750CFAc62 | 0.001% | 100.0% | mainnet | BIP-366 | 5 | +| addGauge | mainnet | 0xe8c56405bc405840154d9b572927f4197d110de10000000000000000000005a4 | rETH/bbaWETH BPT | 1500 | 0xe9E6E9597123034Fa3fc73D482852e18EdF9c282 | 0.001% | 100.0% | mainnet | BIP-366 | 6 | +| addGauge | gnosis | 0xba1a5b19d09a79dada039b1f974015c5a989d5fd000100000000000000000046 | agUSD-agWETH-agWBTC | N/A | 0x3A7Ed8916Ebb9131966b9b3af3cd8B9adcc53559 | 0.1% | 100.0% | L0 sidechain | BIP-366 | 7 | +| addGauge | gnosis | 0x4de21b365d6543661d0e105e579a34b963862497000200000000000000000045 | 50bbagGNO-50bbagUSD | N/A | 0x7a4e71a8A33d3b385279079c503ca93905dd553e | 0.1% | 100.0% | L0 sidechain | BIP-366 | 8 | +| addGauge | gnosis | 0xe15cac1df3621e001f76210ab12a7f1a1691481f000000000000000000000044 | bb-ag-USD | 2000 | 0x774D0F67DcFA5568cA435c70fbA272C64352d859 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 9 | +| addGauge | polygon | 0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5000000000000000000000bf4 | bb-t-USD | 2000 | 0x735B275a567F6c921c82F83D4515beC1F72038D3 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 10 | +| addGauge | polygon | 0x03090a9811181a2afe830a3a0b467698ccf3a8b1000000000000000000000bf5 | bb-am-usd | 3000 | 0x224989bC31286f0E6Dd6F32C0E475BbD4579A976 | 0.01% | 100.0% | L0 sidechain | BIP-366 | 11 | +| addGauge | polygon | 0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6000000000000000000000bf8 | frxETH-bb-a-WETH | 120 | 0xEE3cc827EF3e7a00a728Fd52199cd5A6e336361D | 0.04% | 100.0% | L0 sidechain | BIP-366 | 12 | +| addGauge | polygon | 0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761000200000000000000000bf7 | 2BRLUSD-boosted | N/A | 0x1EcB261dc3496675c54514e44deA2a5115aEcb38 | 0.1% | 2.0% | L0 sidechain | BIP-366 | 13 | +| addGauge | polygon | 0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1000000000000000000000bf6 | FRAX-bb-am-USD | 2000 | 0xdb218DC1394BbD787bb059dBd9F7E41063e16374 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 14 | +| addGauge | arbitrum | 0x00fcd3d55085e998e291a0005cedecf58ac14c4000020000000000000000047f | 50STG-50bbaUSD | N/A | 0xCe3a024bAF36C91d315722B093928020a4F56622 | 1.0% | 100.0% | L0 sidechain | BIP-366 | 15 | +| addGauge | arbitrum | 0xbbf9d705b75f408cfcaee91da32966124d2c6f7d00000000000000000000047e | DOLA/bbaUSD-BPT | 200 | 0xBc771929359B1A6386801705e8D185205d8f1CBF | 0.04% | 100.0% | L0 sidechain | BIP-366 | 16 | +| addGauge | polygon | 0xab269164a10fab22bc87c39946da06c870b172d6000000000000000000000bfc | wstETH-bb-a-WETH-BPT | 1500 | 0x95Ee4c90aC8AaFbAe0DfE18F08a290b59eacbc1b | 0.01% | 100.0% | L0 sidechain | BIP-366 | 17 | +| addGauge | mainnet | 0x158e0fbc2271e1dcebadd365a22e2b4dd173c0db0002000000000000000005a5 | 80IDLE-20USDC | N/A | 0x9aaAf6757BE9e115895429EF6B81e05dCB951646 | 0.5% | 2.0% | mainnet | BIP-373 | 0 | +| addGauge | mainnet | 0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e10000000000000000000005a7 | DUSD/bbaUSD-BPT | 500 | 0x639F4583E505e9E0A16C5D90E1AF61b47415A3A9 | 0.04% | 100.0% | mainnet | BIP-374 | 0 | +| addGauge | mainnet | 0x759fabc513accd292ada967c4dd7bb94da39232e0002000000000000000005a8 | 80RATE/20WETH-BPT | N/A | 0x44bc38d3aF025C0EA9a4729E79d6E44244d68Ac6 | 1.0% | 2.0% | mainnet | BIP-376 | 0 | ++----------+----------+--------------------------------------------------------------------+----------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/00batched/2023/2023-W29/1-anySafeWillDo.json b/BIPs/00batched/2023/2023-W29/1-anySafeWillDo.json new file mode 100644 index 000000000..77c9d2064 --- /dev/null +++ b/BIPs/00batched/2023/2023-W29/1-anySafeWillDo.json @@ -0,0 +1,98 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": [ + "0xCe3a024bAF36C91d315722B093928020a4F56622", + "0xBc771929359B1A6386801705e8D185205d8f1CBF" + ] + } + }, + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": [ + "0xCe3a024bAF36C91d315722B093928020a4F56622", + "0xBc771929359B1A6386801705e8D185205d8f1CBF" + ] + } + }, + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": [ + "0xCe3a024bAF36C91d315722B093928020a4F56622", + "0xBc771929359B1A6386801705e8D185205d8f1CBF" + ] + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W29/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2023/2023-W29/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..3730b5e9a --- /dev/null +++ b/BIPs/00batched/2023/2023-W29/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x8e9ee99533bd178c1573e352145db0eeb33e8722b92d1d6fbc1de799b41f180c", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-369-137.json", + "bip_number": "BIP-369" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W29/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W29/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..f00facf33 --- /dev/null +++ b/BIPs/00batched/2023/2023-W29/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xfab324385696857b52130b135e7e81f8b7f34382c9b27f254b6bca9a70fe0784", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W29/BIP-369-42161.json", + "bip_number": "BIP-369" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..a22abf243 --- /dev/null +++ b/BIPs/00batched/2023/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,434 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-387.json", + "bip_number": "BIP-387" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "125961000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-352A.json", + "bip_number": "BIP-352" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "62230580000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-352A.json", + "bip_number": "BIP-352" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x0052688295413b32626D226a205b95cDB337DE86", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5f838591A5A8048F0E4C4c7fCca8fD9A25BF0590", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8eeB783A4A67f626c6E3952AAeD0D6b104AaC85f", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x082AACfaf4db8AC0642CBED50df732D3C309E679", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4944b07977A42C15c6a06CF4e204e24c60564104", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xB5044FD339A7b858095324cC3F239C212956C179", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca", + "account": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-369-1-cowswap.json", + "bip_number": "BIP-369" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "50000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-386.json", + "bip_number": "BIP-386" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..7247e47d6 --- /dev/null +++ b/BIPs/00batched/2023/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,53 @@ +File name: BIPs/00batched/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +CHAIN(S): `mainnet, arbitrum, polygon` +``` ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++=============+====================================================================+=========================+============================================+===========+============================================+=========+========+==============+========+============+ +| killGauge() | 0x5aee1e99fe86960377de9f88689616916d5dcabe000000000000000000000467 | wstETH-rETH-sfrxETH-BPT | 0x5aEe1e99fE86960377DE9f88689616916D5DcaBe | 700 | 0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B | 0.0001% | 100.0% | mainnet | BIP365 | 3 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| killGauge() | 0xfebb0bbf162e64fb9d0dfe186e517d84c395f016000000000000000000000502 | bb-a-USD | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 | 2500 | 0x0052688295413b32626D226a205b95cDB337DE86 | 0.0001% | 100.0% | mainnet | BIP365 | 4 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| killGauge() | 0xe0fcbf4d98f0ad982db260f86cf28b49845403c5000000000000000000000504 | wstETH-bb-a-WETH-BPT | 0xE0fCBf4d98F0aD982DB260f86cf28b49845403C5 | 700 | 0x5f838591A5A8048F0E4C4c7fCca8fD9A25BF0590 | 0.0001% | 100.0% | mainnet | BIP365 | 5 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| killGauge() | 0xc5dc1316ab670a2eed5716d7f19ced321191f38200000000000000000000056e | B-wstETH/bb-ma3-weth | 0xC5DC1316AB670a2eeD5716d7F19CeD321191F382 | 1500 | 0x8eeB783A4A67f626c6E3952AAeD0D6b104AaC85f | 0.001% | 100.0% | mainnet | BIP365 | 6 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| killGauge() | 0x216690738aac4aa0c4770253ca26a28f0115c595000000000000000000000b2c | stMATIC-bb-a-WMATIC-BPT | 0x216690738Aac4aa0C4770253CA26a28f0115c595 | 1000 | 0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6 | 0.01% | 100.0% | L0 sidechain | BIP365 | 7 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| killGauge() | 0xe78b25c06db117fdf8f98583cdaaa6c92b79e917000000000000000000000b2b | MaticX-bb-a-WMATIC-BPT | 0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917 | 1000 | 0x082AACfaf4db8AC0642CBED50df732D3C309E679 | 0.01% | 100.0% | L0 sidechain | BIP365 | 8 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| killGauge() | 0xcba9ff45cfb9ce238afde32b0148eb82cbe635620000000000000000000003fd | rETH-bb-a-WETH-BPT | 0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562 | 600 | 0x4944b07977A42C15c6a06CF4e204e24c60564104 | 0.01% | 100.0% | L0 sidechain | BIP365 | 9 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| killGauge() | 0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7000000000000000000000400 | wstETH-bb-a-WETH-BPT | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 | 1000 | 0xB5044FD339A7b858095324cC3F239C212956C179 | 0.01% | 100.0% | L0 sidechain | BIP365 | 10 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +| killGauge() | 0xee02583596aee94cccb7e8ccd3921d955f17982a00000000000000000000040a | bb-a-USD | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A | 2000 | 0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7 | 0.005% | 100.0% | L0 sidechain | BIP365 | 11 | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------+--------------------------------------------+---------+--------+--------------+--------+------------+ +``` +File name: BIPs/00batched/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +CHAIN(S): `mainnet` +``` ++------------+----------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+================+======================+==========+============================================+============================================+=========================+=========+============+ +| transfer | USDC | multisigs/foundation | 125961 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x3B8910F378034FD6E103Df958863e5c684072693 | 125961000000 | BIP-352 | 1 | ++------------+----------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+------------+ +| transfer | BAL | multisigs/foundation | 62230.6 | 0xba100000625a3754423978a60c9317c58a424e3D | 0x3B8910F378034FD6E103Df958863e5c684072693 | 62230580000000000000000 | BIP-352 | 2 | ++------------+----------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+------------+ +| transfer | USDC | multisigs/lm | 50000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 50000000000 | BIP-386 | 13 | ++------------+----------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +CHAIN(S): `mainnet` +``` ++------------+----------------+--------------------------------------------+---------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+================+============================================+=======================================================================================+====================================================================+=========+============+ +| grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/add_reward(address,address) | 0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e | BIP-387 | 0 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/add_reward(address,address) | | | | ++------------+----------------+--------------------------------------------+---------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRole | cow/settlement | 0x9008D19f58AAbD9eD0D60971565AA8510560ab41 | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca | BIP-369 | 12 | ++------------+----------------+--------------------------------------------+---------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..3cd0635ee --- /dev/null +++ b/BIPs/00batched/2023/2023-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,254 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA4DAA3498677D655E359b0Fc83EbDbd8dbF76a50", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-384A.json", + "bip_number": "BIP-384" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x56c0626E6E3931af90EbB679A321225180d4b32B", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-380.json", + "bip_number": "BIP-380" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x175FAb9C7aB502B9E76E7fca0C9Da618387EBAdA", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-378.json", + "bip_number": "BIP-378" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2Cb5EB92314bf3BFE7977e059A72A806d353fd21", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-379.json", + "bip_number": "BIP-379" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5E23599eBE87A5A140f295C2fC6aAedb10955497", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-377.json", + "bip_number": "BIP-377" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-382.json", + "bip_number": "BIP-382" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x90DDAa2A6D192Db2F47195d847626F94E940c7Ac", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-381.json", + "bip_number": "BIP-381" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-383.json", + "bip_number": "BIP-383" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..9cc68c279 --- /dev/null +++ b/BIPs/00batched/2023/2023-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/00batched/2023-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `N/A` +CHAIN(S): `mainnet, arbitrum, optimism` +``` ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +| function | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++============+====================================================================+===================+===========+============================================+========+========+==============+=========+============+ +| addGauge | 0x84a1038d55e887c2abb8cb02ccf4c9d3871c859a000000000000000000000489 | Stafi rETH/WETH | 1500 | 0xA4DAA3498677D655E359b0Fc83EbDbd8dbF76a50 | 0.04% | 10.0% | L0 sidechain | BIP-384 | 0 | ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +| addGauge | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | wstETH/rETH/cbETH | 1500 | 0x56c0626E6E3931af90EbB679A321225180d4b32B | 0.04% | 100.0% | L0 sidechain | BIP-380 | 1 | ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +| addGauge | 0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d000000000000000000000047b | BPT-USD+ | 1930 | 0x175FAb9C7aB502B9E76E7fca0C9Da618387EBAdA | 0.01% | 100.0% | L0 sidechain | BIP-378 | 2 | ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +| addGauge | 0xd6d20527c7b0669989ee082b9d3a1c63af742290000000000000000000000483 | BPT-DOLA-USD+ | 570 | 0x2Cb5EB92314bf3BFE7977e059A72A806d353fd21 | 0.01% | 100.0% | L0 sidechain | BIP-379 | 3 | ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +| addGauge | 0x616d4d131f1147ac3b3c3cc752bab8613395b2bb000200000000000000000584 | B-yBAL-STABLE | 30 | 0x5E23599eBE87A5A140f295C2fC6aAedb10955497 | 0.2% | 2.0% | mainnet | BIP-377 | 4 | ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +| addGauge | 0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a0000000000000000000000f0 | bb-rf-usd | 100 | 0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2 | 0.01% | 100.0% | L0 sidechain | BIP-382 | 5 | ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +| addGauge | 0x9cebf13bb702f253abf1579294694a1edad00eaa000000000000000000000486 | bbaUSDC/bbaUSDCe | 5000 | 0x90DDAa2A6D192Db2F47195d847626F94E940c7Ac | 0.005% | 100.0% | L0 sidechain | BIP-381 | 6 | ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +| addGauge | 0x8a2872fd28f42bd9f6559907235e83fbf4167f480001000000000000000000f2 | bb-rf-triple | N/A | 0xAb6b60F389218AFf06DE279BF8c69A246568b5a6 | 0.4% | 100.0% | L0 sidechain | BIP-383 | 7 | ++------------+--------------------------------------------------------------------+-------------------+-----------+--------------------------------------------+--------+--------+--------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W30/1-anySafeWillDo.json b/BIPs/00batched/2023/2023-W30/1-anySafeWillDo.json new file mode 100644 index 000000000..b34cfb040 --- /dev/null +++ b/BIPs/00batched/2023/2023-W30/1-anySafeWillDo.json @@ -0,0 +1,70 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Optimism", + "gauges": [ + "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6" + ] + } + }, + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Optimism", + "gauges": [ + "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6" + ] + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W30/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/00batched/2023/2023-W30/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..6d7b483b3 --- /dev/null +++ b/BIPs/00batched/2023/2023-W30/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,452 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9, 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e, 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717, 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157, 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7, 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01, 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01, 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e, 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed, 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c, 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3, 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03]", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df, 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4, 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0, 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5, 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d, 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4, 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34]", + "account": "0x76f7204B62f554b79d444588EDac9dfA7032c71a" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d]", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388A.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388A.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W30/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/00batched/2023/2023-W30/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..1163943b0 --- /dev/null +++ b/BIPs/00batched/2023/2023-W30/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,106 @@ +File name: BIPs/00batched/2023-W30/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json +CHAIN(S): `base` +``` ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++==============+===========================================================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| grantRoles | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-388 | 0 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | | | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | BIP-388 | 1 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPoolFactory/disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPoolFactory/disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPoolFactory/disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPoolFactory/disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | BIP-388 | 2 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BIP-388 | 3 | +| | | | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-388 | 4 | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | BIP-388 | 5 | +| | | | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | | | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | BIP-388 | 6 | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8 | BIP-388 | 9 | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8 | BIP-388 | 11 | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 12 | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 14 | ++--------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W30/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json +COMMIT: `N/A` +CHAIN(S): `8453` +``` ++----------------------+-----------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | inputs | bip_number | tx_index | ++======================+=======================================================================================================================+===============================================================================================================================+==============+============+ +| setFeeTypePercentage | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | { | BIP-388 | 7 | +| | | "feeType": "0", | | | +| | | "newValue": "500000000000000000" | | | +| | | } | | | ++----------------------+-----------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setFeeTypePercentage | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | { | BIP-388 | 8 | +| | | "feeType": "2", | | | +| | | "newValue": "500000000000000000" | | | +| | | } | | | ++----------------------+-----------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| addGaugeFactory | 0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter | { | BIP-388 | 10 | +| | | "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory)" | | | +| | | } | | | ++----------------------+-----------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault | { | BIP-388 | 13 | +| | | "newAuthorizer": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | } | | | ++----------------------+-----------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..99080b0f4 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-394-August.json", + "bip_number": "BIP-394" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-393-August.json", + "bip_number": "BIP-393" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e, 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c, 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202, 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31, 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.json", + "bip_number": "BIP-285" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0, 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad, 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c, 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192, 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.json", + "bip_number": "BIP-285" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..ab6f5695c --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,34 @@ +File name: BIPs/00batched/2023-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e | BIP-285 | 2 | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | | | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/setTargets(uint256,uint256) | 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | BIP-285 | 3 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | | | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W31/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W31/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..e8edfc958 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2Dc55e84bAF47296c2cf87B4eC3eb66fD7665611", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-391.json", + "bip_number": "BIP-391" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5c0e6d132C53DA7F6e958EdF13db0FA02C5b2eC6", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-390.json", + "bip_number": "BIP-390" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x317e4966AE76fBf5110D2412c0c9332047399643", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-392.json", + "bip_number": "BIP-392" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-389.json", + "bip_number": "BIP-389" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W31/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W31/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..a209499c5 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/00batched/2023-W31/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `polygon, mainnet, arbitrum` +``` ++-----------------------+--------------------------------------------------------------------+-----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | ++=======================+====================================================================+=================+=====+============================================+=======+========+==============+=========+============+ +| GaugeAdderV4/addGauge | 0x26cc136e9b8fd65466f193a8e5710661ed9a98270002000000000000000005ad | 80BETS/20wstETH | N/A | 0x2Dc55e84bAF47296c2cf87B4eC3eb66fD7665611 | 0.5% | 2.0% | mainnet | BIP-391 | 0 | ++-----------------------+--------------------------------------------------------------------+-----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2645b13fd2c5295296e94a76280b968bdcbbdfed000000000000000000000c11 | DUSD/bbaUSD | 500 | 0x5c0e6d132C53DA7F6e958EdF13db0FA02C5b2eC6 | 0.04% | 100.0% | L0 sidechain | BIP-390 | 1 | ++-----------------------+--------------------------------------------------------------------+-----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x42942cdec85078cf0e28e9cb5acd40cb53997ed6000000000000000000000bea | 2BRL (BRZ) | 200 | 0x317e4966AE76fBf5110D2412c0c9332047399643 | 0.04% | 2.0% | L0 sidechain | BIP-392 | 2 | ++-----------------------+--------------------------------------------------------------------+-----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xa1ea76c42b2938cfa9abea12357881006c52851300000000000000000000048f | DUSD/bbaUSD | 500 | 0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F | 0.04% | 100.0% | L0 sidechain | BIP-389 | 3 | ++-----------------------+--------------------------------------------------------------------+-----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W31/1-anySafeWillDo.json b/BIPs/00batched/2023/2023-W31/1-anySafeWillDo.json new file mode 100644 index 000000000..e4595904e --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/1-anySafeWillDo.json @@ -0,0 +1,64 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": ["0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F"] + } + }, + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Arbitrum", + "gauges": ["0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F"] + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W31/1-anySafeWillDo.report.txt b/BIPs/00batched/2023/2023-W31/1-anySafeWillDo.report.txt new file mode 100644 index 000000000..4ade8d065 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/1-anySafeWillDo.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/00batched/2023-W31/1-anySafeWillDo.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +CHAIN(S): `1` +``` ++-----------+-------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=================================================================================================+=========+=========================================================+==============+============+ +| addGauges | 0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC (20230527-l2-gauge-checkpointer/L2GaugeCheckpointer) | 0 | { | N/A | 0 | +| | | | "gaugeType": "Arbitrum", | | | +| | | | "gauges": [ | | | +| | | | "0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W31/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/2023/2023-W31/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..887c865cf --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a, 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3, 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.json", + "bip_number": "BIP-285" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b, 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a, 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.json", + "bip_number": "BIP-285" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W31/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt b/BIPs/00batched/2023/2023-W31/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt new file mode 100644 index 000000000..b545ef806 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/00batched/2023-W31/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +MERGED PAYLOAD: Chain:optimism (10), Multisig: multisigs/dao (0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) +CHAIN(S): `optimism` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | BIP-285 | 0 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W31/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2023/2023-W31/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..6aa4f8bbc --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.json", + "bip_number": "BIP-285" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.json", + "bip_number": "BIP-285" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W31/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00batched/2023/2023-W31/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..200bb0658 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00batched/2023-W31/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/dao (0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +CHAIN(S): `gnosis` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+=========================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0 | BIP-285 | 0 | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | BIP-285 | 1 | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W31/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2023/2023-W31/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..120c6a329 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202, 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b, 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.json", + "bip_number": "BIP-285" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196, 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564, 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.json", + "bip_number": "BIP-285" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W31/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt b/BIPs/00batched/2023/2023-W31/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt new file mode 100644 index 000000000..e1e83c5e1 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/00batched/2023-W31/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +MERGED PAYLOAD: Chain:polygon (137), Multisig: multisigs/dao (0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) +CHAIN(S): `polygon` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | BIP-285 | 0 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W31/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W31/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..e545cc43c --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "100000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-322.json", + "bip_number": "BIP-322" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a, 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3, 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.json", + "bip_number": "BIP-285" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b, 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a, 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.json", + "bip_number": "BIP-285" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W31/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2023/2023-W31/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..a11badb95 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,28 @@ +File name: BIPs/00batched/2023-W31/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `arbitrum` +``` ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000.0 (RAW: 100000000000000000000000) | BIP-322 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W31/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `c4f0f572248acda1bb13ebe8bd0463b466ac36ac` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | BIP-285 | 2 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W31/combined_report.md b/BIPs/00batched/2023/2023-W31/combined_report.md new file mode 100644 index 000000000..ce92a66b2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W31/combined_report.md @@ -0,0 +1,116 @@ +## Mainnet + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/f6c5d7aa-b16e-4414-8c80-81d5d239ab01) + +[Sign Nonce 213](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +BIPS: 285, 394, 395 +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e | BIP-285 | 2 | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | | | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/setTargets(uint256,uint256) | 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | BIP-285 | 3 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | | | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## Optimism +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/44ea1cc2-55b7-49dd-90f7-f6eda254e2ee) + +[Sign Nonce 27](https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) + +BIPS: 295 + +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | BIP-285 | 0 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## Gnosis +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/6c149d5e-7103-46cb-b6e5-c60c2f11749d) + +[Sign Nonce 18](https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) + +BIPS: 295 +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+=========================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0 | BIP-285 | 0 | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | BIP-285 | 1 | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## Polygon +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/2b130a42-ea93-4e04-a3cb-7ec18ed5eef3) + +[Sign Nonce 29](https://app.safe.global/transactions/queue?safe=matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) +BIPS: 295 +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | BIP-285 | 0 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## Arbitrum +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/8b5c18a5-9d61-4bb8-92c9-735d54fd1685) +[Sign Nonce 32](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) + +BIPS: 285, 322 +``` ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000.0 (RAW: 100000000000000000000000) | BIP-322 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +``` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | BIP-285 | 2 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + diff --git a/BIPs/00batched/2023/2023-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..70bf85379 --- /dev/null +++ b/BIPs/00batched/2023/2023-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,575 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5705000000" + }, + "meta": { + "source": "Direct add to merged payload", + "bip_number": "BIP-103" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x33BcAa8A390e6DcF2f18AE5fDd9e38fD248219eB", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x70c6A653e273523FADfB4dF99558737906c230c6", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC764B55852F8849Ae69923e45ce077A576bF9a8d", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21b2Ef3DC22B7bd4634205081c667e39742075E2", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcB2c2AF6c3E88b4a89aa2aae1D7C8120EEe9Ad0e", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3B6A85B5e1e6205ebF4d4eabf147D10e8e4bf0A5", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 10, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6b641e334f63f0D882538Fe189efC0702d961696", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 11, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x416d15C36c6DaAd2b9410B79aE557e6F07DcB642", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 12, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xacE0D479040231e3c6b17479cFd4444182d521d4", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 13, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8204b749B808818DEb7957DbD030ceEA44D1FE18", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 14, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xecF0a26a290cbf3DDBAB7eC5Fb44Ef5A294cAc18", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 15, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBAdF0c8702B7Cb06bBEC351d18071804759e312c", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 16, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 17, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-366B.json", + "bip_number": "BIP-366" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..5c6c6bb73 --- /dev/null +++ b/BIPs/00batched/2023/2023-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,56 @@ +File name: BIPs/00batched/2023-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `088294d6cc30341fba377c021985692de471b050` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet, gnosis, arbitrum, polygon` +``` ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+======================+======+============================================+=========+========+==============+=========+============+==========================================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa000000000000000000000489 | bb-i-USD | 2000 | 0x33BcAa8A390e6DcF2f18AE5fDd9e38fD248219eB | 0.0001% | 100.0% | mainnet | BIP-366 | 1 | ['bb-i-USDT(0x2FF1A9Dbdacd55297452cFD8a4d94724Bc22a5F7)', 'bb-i-USD(0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa)', 'bb-i-USDC(0xbc0F2372008005471874e426e86CCFae7B4De79d)', 'bb-i-DAI(0xDbA274B4D04097b90A72b62467d828cEFD708037)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xbfce47224b4a938865e3e2727dc34e0faa5b1d82000000000000000000000527 | uniETH-WETH | 50 | 0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA | 0.04% | 2.0% | mainnet | BIP-366 | 2 | ['uniETH-WETH(0xbFCe47224B4A938865E3e2727DC34E0fAA5b1D82)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'uniETH(0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x156c02f3f7fef64a3a9d80ccf7085f23cce91d76000000000000000000000570 | vETH/WETH BPT | 50 | 0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434 | 0.04% | 10.0% | mainnet | BIP-366 | 3 | ['vETH/WETH BPT(0x156C02f3f7fEf64a3A9D80CCF7085f23ccE91D76)', 'vETH(0x4Bc3263Eb5bb2Ef7Ad9aB6FB68be80E43b43801F)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9001cbbd96f54a658ff4e6e65ab564ded76a543100000000000000000000050a | cbETH-bb-a-WETH-BPT | 700 | 0x70c6A653e273523FADfB4dF99558737906c230c6 | 0.0001% | 100.0% | mainnet | BIP-366 | 4 | ['bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'cbETH-bb-a-WETH-BPT(0x9001cBbD96F54a658FF4e6E65AB564DED76a5431)', 'cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x04248aabca09e9a1a3d5129a7ba05b7f17de768400000000000000000000050e | qETH-bb-a-WETH-BPT | 100 | 0xC764B55852F8849Ae69923e45ce077A576bF9a8d | 0.04% | 2.0% | mainnet | BIP-366 | 5 | ['qETH-bb-a-WETH-BPT(0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684)', 'bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'qETH(0x93ef1Ea305D11A9b2a3EbB9bB4FCc34695292E7d)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x02d928e68d8f10c0358566152677db51e1e2dc8c00000000000000000000051e | swETH-bb-a-WETH-BPT | 500 | 0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5 | 0.0001% | 100.0% | mainnet | BIP-366 | 6 | ['swETH-bb-a-WETH-BPT(0x02D928E68D8F10C0358566152677Db51E1e2Dc8C)', 'bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'swETH(0xf951E335afb289353dc249e82926178EaC7DEd78)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb200000000000000000000056a | rETH/bbaWETH BPT | 500 | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | 0.0001% | 100.0% | mainnet | BIP-366 | 7 | ['rETH/bbaWETH BPT(0x481C5fc05D63a58AA2f0F2aA417C021B5d419cB2)', 'bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x66f33ae36dd80327744207a48122f874634b3ada000100000000000000000013 | agUSD-agWETH-agWBTC | N/A | 0x21b2Ef3DC22B7bd4634205081c667e39742075E2 | 0.1% | 100.0% | L0 sidechain | BIP-366 | 8 | ['bb-ag-WETH(0xbb9Cd48d33033F5EfFBeDec9Dd700C7D7E1dCF50)', 'bb-ag-WBTC(0xd4015683b8153666190e0B2bEC352580EBC4CaCa)', 'bb-ag-USD(0xFEdb19Ec000d38d92Af4B21436870F115db22725)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb973ca96a3f0d61045f53255e319aedb6ed49240000200000000000000000011 | 50bbagGNO-50bbagUSD | N/A | 0xcB2c2AF6c3E88b4a89aa2aae1D7C8120EEe9Ad0e | 0.1% | 100.0% | L0 sidechain | BIP-366 | 9 | ['bb-ag-USD(0xFEdb19Ec000d38d92Af4B21436870F115db22725)', 'bb-ag-GNO(0xFFFf76A3280e95dC855696111C2562Da09db2Ac0)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xfedb19ec000d38d92af4b21436870f115db22725000000000000000000000010 | bb-ag-USD | 2000 | 0x3B6A85B5e1e6205ebF4d4eabf147D10e8e4bf0A5 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 10 | ['bb-ag-WXDAI(0x41211BBa6d37F5a74b22e667533F080C7C7f3F13)', 'bb-ag-USDT(0xd16f72b02dA5f51231fDe542A8B9E2777a478c88)', 'bb-ag-USDC(0xE7f88d7d4EF2eb18FCF9Dd7216BA7Da1c46f3dD6)', 'bb-ag-USD(0xFEdb19Ec000d38d92Af4B21436870F115db22725)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a000000000000000000000ace | bb-t-USD | 2000 | 0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 11 | ['bb-t-USDT(0x7c82A23B4C48D796dee36A9cA215b641C6a8709d)', 'bb-t-USDC(0xae646817e458C0bE890b81e8d880206710E3c44e)', 'bb-t-USD(0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A)', 'bb-t-DAI(0xDa1CD1711743e57Dd57102E9e61b75f3587703da)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb371aa09f5a110ab69b39a84b5469d29f9b22b76000000000000000000000b37 | bb-am-USD | 2000 | 0x6b641e334f63f0D882538Fe189efC0702d961696 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 12 | ['bb-a-USDC(0x89B28A9494589b09dbcCb69911c189f74FdAdc5a)', 'bb-a-DAI(0xa5fE91dde37D8BF2daCACC0168B115D28eD03f84)', 'bb-am-USD(0xb371aA09F5a110AB69b39A84B5469d29f9b22B76)', 'bb-a-USDT(0xb59BE8f3C85A9DD6E2899103B6fbF6ea405B99a4)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5000000000000000000000b42 | frxETH-bb-a-WETH | 120 | 0x416d15C36c6DaAd2b9410B79aE557e6F07DcB642 | 0.04% | 100.0% | L0 sidechain | BIP-366 | 13 | ['bb-a-WETH(0x43894DE14462B421372bCFe445fA51b1b4A0Ff3D)', 'frxETH-bb-a-WETH(0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5)', 'frxETH(0xEe327F889d5947c1dc1934Bb208a1E792F953E96)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x567ecfcb22205d279bb8eed3e066989902bf03d5000000000000000000000452 | DOLA/bbaUSD-BPT | 200 | 0xacE0D479040231e3c6b17479cFd4444182d521d4 | 0.04% | 100.0% | L0 sidechain | BIP-366 | 14 | ['DOLA/bbaUSD-BPT(0x567ECfCB22205D279BB8Eed3E066989902bF03D5)', 'DOLA(0x6A7661795C374c0bFC635934efAddFf3A7Ee23b6)', 'bb-a-USD(0xEE02583596AEE94ccCB7e8ccd3921d955f17982A)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd3d5d45f4edf82ba0dfaf061d230766032a10e07000200000000000000000413 | 50STG-50bbaUSD | N/A | 0x8204b749B808818DEb7957DbD030ceEA44D1FE18 | 1.0% | 100.0% | L0 sidechain | BIP-366 | 15 | ['STG(0x6694340fc020c5E6B96567843da2df01b2CE1eb6)', 'bb-a-USD(0xEE02583596AEE94ccCB7e8ccd3921d955f17982A)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7000000000000000000000b5b | FRAX-bb-am-USD | 2000 | 0xecF0a26a290cbf3DDBAB7eC5Fb44Ef5A294cAc18 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 16 | ['FRAX(0x45c32fA6DF82ead1e2EF74d17b76547EDdFaFF89)', 'FRAX-bb-am-USD(0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7)', 'bb-am-USD(0xb371aA09F5a110AB69b39A84B5469d29f9b22B76)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x3efb91c4f9b103ee45885695c67794591916f34e000200000000000000000b43 | 2BRL-bbamUSD | N/A | 0xBAdF0c8702B7Cb06bBEC351d18071804759e312c | 0.1% | 2.0% | L0 sidechain | BIP-366 | 17 | ['bb-am-USD(0xb371aA09F5a110AB69b39A84B5469d29f9b22B76)', '2BRL (BRZ)(0xe19ed40A47F9B0CEA4ca6D372dF66107758913Ec)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a000000000000000000000b38 | wstETH-bb-a-WETH-BPT | 1000 | 0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f | 0.005% | 100.0% | L0 sidechain | BIP-366 | 18 | ['wstETH(0x03b54A6e9a984069379fae1a4fC4dBAE93B3bCCD)', 'bb-a-WETH(0x43894DE14462B421372bCFe445fA51b1b4A0Ff3D)', 'wstETH-bb-a-WETH-BPT(0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +File name: BIPs/00batched/2023-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `088294d6cc30341fba377c021985692de471b050` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5705.0 (RAW: 5705000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..16e6eebe2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x852580e3E1C0Fd35DE426C5481670c1772525265", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-396.json", + "bip_number": "BIP-396" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..bc8311975 --- /dev/null +++ b/BIPs/00batched/2023/2023-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00batched/2023-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `088294d6cc30341fba377c021985692de471b050` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `polygon` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x70ff0078d55ce9c1a0e668f35eb4400a4300122d000000000000000000000beb | 2CHF (VCHF) | 0x852580e3E1C0Fd35DE426C5481670c1772525265 | "2CHF (VCHF)(0x70fF0078d55cE9C1A0E668f35eb4400a4300122D)", | "0x0000000000000000000000000000000000000000", | BIP-396 | 0 | +| | pool_address: 0x70fF0078d55cE9C1A0E668f35eb4400a4300122D | fee: 0.05, a-factor: 200 | Style: L0 sidechain, cap: 2.0% | "jCHF(0xbD1463F02f61676d53fd183C2B19282BFF93D099)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "VCHF(0xCdB3867935247049e87c38eA270edD305D84c9AE)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W32/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2023/2023-W32/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..8967727e2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W32/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da", + "account": "0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W32/BIP-397.json", + "bip_number": "BIP-397" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W32/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00batched/2023/2023-W32/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..510de249e --- /dev/null +++ b/BIPs/00batched/2023/2023-W32/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W32/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json +COMMIT: `088294d6cc30341fba377c021985692de471b050` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/dao (0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +CHAIN(S): `gnosis` +``` ++----------------------+------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+==================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartvault | 0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | BIP-397 | 0 | ++----------------------+------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W32/2023-W32-payload-report.md b/BIPs/00batched/2023/2023-W32/2023-W32-payload-report.md new file mode 100644 index 000000000..649e0535a --- /dev/null +++ b/BIPs/00batched/2023/2023-W32/2023-W32-payload-report.md @@ -0,0 +1,68 @@ +## Mainnet + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/abd48ac6-4cd1-4b78-bfef-edcd32b0b9b4) + +[Sign Nonce 214](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + + +``` ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+======================+======+============================================+=========+========+==============+=========+============+==========================================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa000000000000000000000489 | bb-i-USD | 2000 | 0x33BcAa8A390e6DcF2f18AE5fDd9e38fD248219eB | 0.0001% | 100.0% | mainnet | BIP-366 | 1 | ['bb-i-USDT(0x2FF1A9Dbdacd55297452cFD8a4d94724Bc22a5F7)', 'bb-i-USD(0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa)', 'bb-i-USDC(0xbc0F2372008005471874e426e86CCFae7B4De79d)', 'bb-i-DAI(0xDbA274B4D04097b90A72b62467d828cEFD708037)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xbfce47224b4a938865e3e2727dc34e0faa5b1d82000000000000000000000527 | uniETH-WETH | 50 | 0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA | 0.04% | 2.0% | mainnet | BIP-366 | 2 | ['uniETH-WETH(0xbFCe47224B4A938865E3e2727DC34E0fAA5b1D82)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'uniETH(0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x156c02f3f7fef64a3a9d80ccf7085f23cce91d76000000000000000000000570 | vETH/WETH BPT | 50 | 0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434 | 0.04% | 10.0% | mainnet | BIP-366 | 3 | ['vETH/WETH BPT(0x156C02f3f7fEf64a3A9D80CCF7085f23ccE91D76)', 'vETH(0x4Bc3263Eb5bb2Ef7Ad9aB6FB68be80E43b43801F)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9001cbbd96f54a658ff4e6e65ab564ded76a543100000000000000000000050a | cbETH-bb-a-WETH-BPT | 700 | 0x70c6A653e273523FADfB4dF99558737906c230c6 | 0.0001% | 100.0% | mainnet | BIP-366 | 4 | ['bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'cbETH-bb-a-WETH-BPT(0x9001cBbD96F54a658FF4e6E65AB564DED76a5431)', 'cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x04248aabca09e9a1a3d5129a7ba05b7f17de768400000000000000000000050e | qETH-bb-a-WETH-BPT | 100 | 0xC764B55852F8849Ae69923e45ce077A576bF9a8d | 0.04% | 2.0% | mainnet | BIP-366 | 5 | ['qETH-bb-a-WETH-BPT(0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684)', 'bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'qETH(0x93ef1Ea305D11A9b2a3EbB9bB4FCc34695292E7d)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x02d928e68d8f10c0358566152677db51e1e2dc8c00000000000000000000051e | swETH-bb-a-WETH-BPT | 500 | 0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5 | 0.0001% | 100.0% | mainnet | BIP-366 | 6 | ['swETH-bb-a-WETH-BPT(0x02D928E68D8F10C0358566152677Db51E1e2Dc8C)', 'bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'swETH(0xf951E335afb289353dc249e82926178EaC7DEd78)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb200000000000000000000056a | rETH/bbaWETH BPT | 500 | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | 0.0001% | 100.0% | mainnet | BIP-366 | 7 | ['rETH/bbaWETH BPT(0x481C5fc05D63a58AA2f0F2aA417C021B5d419cB2)', 'bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x66f33ae36dd80327744207a48122f874634b3ada000100000000000000000013 | agUSD-agWETH-agWBTC | N/A | 0x21b2Ef3DC22B7bd4634205081c667e39742075E2 | 0.1% | 100.0% | L0 sidechain | BIP-366 | 8 | ['bb-ag-WETH(0xbb9Cd48d33033F5EfFBeDec9Dd700C7D7E1dCF50)', 'bb-ag-WBTC(0xd4015683b8153666190e0B2bEC352580EBC4CaCa)', 'bb-ag-USD(0xFEdb19Ec000d38d92Af4B21436870F115db22725)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb973ca96a3f0d61045f53255e319aedb6ed49240000200000000000000000011 | 50bbagGNO-50bbagUSD | N/A | 0xcB2c2AF6c3E88b4a89aa2aae1D7C8120EEe9Ad0e | 0.1% | 100.0% | L0 sidechain | BIP-366 | 9 | ['bb-ag-USD(0xFEdb19Ec000d38d92Af4B21436870F115db22725)', 'bb-ag-GNO(0xFFFf76A3280e95dC855696111C2562Da09db2Ac0)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xfedb19ec000d38d92af4b21436870f115db22725000000000000000000000010 | bb-ag-USD | 2000 | 0x3B6A85B5e1e6205ebF4d4eabf147D10e8e4bf0A5 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 10 | ['bb-ag-WXDAI(0x41211BBa6d37F5a74b22e667533F080C7C7f3F13)', 'bb-ag-USDT(0xd16f72b02dA5f51231fDe542A8B9E2777a478c88)', 'bb-ag-USDC(0xE7f88d7d4EF2eb18FCF9Dd7216BA7Da1c46f3dD6)', 'bb-ag-USD(0xFEdb19Ec000d38d92Af4B21436870F115db22725)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a000000000000000000000ace | bb-t-USD | 2000 | 0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 11 | ['bb-t-USDT(0x7c82A23B4C48D796dee36A9cA215b641C6a8709d)', 'bb-t-USDC(0xae646817e458C0bE890b81e8d880206710E3c44e)', 'bb-t-USD(0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A)', 'bb-t-DAI(0xDa1CD1711743e57Dd57102E9e61b75f3587703da)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb371aa09f5a110ab69b39a84b5469d29f9b22b76000000000000000000000b37 | bb-am-USD | 2000 | 0x6b641e334f63f0D882538Fe189efC0702d961696 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 12 | ['bb-a-USDC(0x89B28A9494589b09dbcCb69911c189f74FdAdc5a)', 'bb-a-DAI(0xa5fE91dde37D8BF2daCACC0168B115D28eD03f84)', 'bb-am-USD(0xb371aA09F5a110AB69b39A84B5469d29f9b22B76)', 'bb-a-USDT(0xb59BE8f3C85A9DD6E2899103B6fbF6ea405B99a4)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5000000000000000000000b42 | frxETH-bb-a-WETH | 120 | 0x416d15C36c6DaAd2b9410B79aE557e6F07DcB642 | 0.04% | 100.0% | L0 sidechain | BIP-366 | 13 | ['bb-a-WETH(0x43894DE14462B421372bCFe445fA51b1b4A0Ff3D)', 'frxETH-bb-a-WETH(0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5)', 'frxETH(0xEe327F889d5947c1dc1934Bb208a1E792F953E96)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x567ecfcb22205d279bb8eed3e066989902bf03d5000000000000000000000452 | DOLA/bbaUSD-BPT | 200 | 0xacE0D479040231e3c6b17479cFd4444182d521d4 | 0.04% | 100.0% | L0 sidechain | BIP-366 | 14 | ['DOLA/bbaUSD-BPT(0x567ECfCB22205D279BB8Eed3E066989902bF03D5)', 'DOLA(0x6A7661795C374c0bFC635934efAddFf3A7Ee23b6)', 'bb-a-USD(0xEE02583596AEE94ccCB7e8ccd3921d955f17982A)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd3d5d45f4edf82ba0dfaf061d230766032a10e07000200000000000000000413 | 50STG-50bbaUSD | N/A | 0x8204b749B808818DEb7957DbD030ceEA44D1FE18 | 1.0% | 100.0% | L0 sidechain | BIP-366 | 15 | ['STG(0x6694340fc020c5E6B96567843da2df01b2CE1eb6)', 'bb-a-USD(0xEE02583596AEE94ccCB7e8ccd3921d955f17982A)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7000000000000000000000b5b | FRAX-bb-am-USD | 2000 | 0xecF0a26a290cbf3DDBAB7eC5Fb44Ef5A294cAc18 | 0.005% | 100.0% | L0 sidechain | BIP-366 | 16 | ['FRAX(0x45c32fA6DF82ead1e2EF74d17b76547EDdFaFF89)', 'FRAX-bb-am-USD(0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7)', 'bb-am-USD(0xb371aA09F5a110AB69b39A84B5469d29f9b22B76)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x3efb91c4f9b103ee45885695c67794591916f34e000200000000000000000b43 | 2BRL-bbamUSD | N/A | 0xBAdF0c8702B7Cb06bBEC351d18071804759e312c | 0.1% | 2.0% | L0 sidechain | BIP-366 | 17 | ['bb-am-USD(0xb371aA09F5a110AB69b39A84B5469d29f9b22B76)', '2BRL (BRZ)(0xe19ed40A47F9B0CEA4ca6D372dF66107758913Ec)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a000000000000000000000b38 | wstETH-bb-a-WETH-BPT | 1000 | 0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f | 0.005% | 100.0% | L0 sidechain | BIP-366 | 18 | ['wstETH(0x03b54A6e9a984069379fae1a4fC4dBAE93B3bCCD)', 'bb-a-WETH(0x43894DE14462B421372bCFe445fA51b1b4A0Ff3D)', 'wstETH-bb-a-WETH-BPT(0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+------+--------------------------------------------+---------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5705.0 (RAW: 5705000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` +## Gnosis +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/b7c7ace3-39af-40fb-82e9-ae0f5d607552) + +[Sign Nonce 19](https://app.safe.global/home?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) + + +``` ++----------------------+------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+==================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartvault | 0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | BIP-397 | 0 | ++----------------------+------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W32/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W32/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..0adcfd46b --- /dev/null +++ b/BIPs/00batched/2023/2023-W32/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Polygon": "[0x852580e3E1C0Fd35DE426C5481670c1772525265]" +} diff --git a/BIPs/00batched/2023/2023-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..203a2e62a --- /dev/null +++ b/BIPs/00batched/2023/2023-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xB5bd58C733948e3d65d86BA9604e06e5dA276FD1", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W33/BIP-404.json", + "bip_number": "BIP-404" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x01A9502C11f411b494c62746D37e89d6f7078657", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W33/BIP-404.json", + "bip_number": "BIP-404" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd8191A3496a1520c2B5C81D04B26F8556Fc62d7b", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W33/BIP-404.json", + "bip_number": "BIP-404" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W33/BIP-404.json", + "bip_number": "BIP-404" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..f0dbe32cf --- /dev/null +++ b/BIPs/00batched/2023/2023-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/00batched/2023-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `98914242d2a2ffab527cdfe24b6d8ededfa11e0f` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet, arbitrum` +``` ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=======================+=====+============================================+============+========+==============+=========+============+=============================================================================================================+ +| AAEntrypoint/killGauge() | 0x6910c4e32d425a834fb61e983c8083a84b0ebd01000200000000000000000532 | wstETH/rETH/L | N/A | 0xB5bd58C733948e3d65d86BA9604e06e5dA276FD1 | Not Found% | 2.0% | mainnet | BIP-404 | 0 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9c6d47ff73e0f5e51be5fd53236e3f595c5793f200020000000000000000042c | B-cbETH-wstETH-Stable | 50 | 0x01A9502C11f411b494c62746D37e89d6f7078657 | 0.04% | 100.0% | mainnet | BIP-404 | 1 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x18fdf15ff782e44c1f9b6c5846ff6b0f0004f6a2000200000000000000000560 | 50OHM-50LUSD | N/A | 0xd8191A3496a1520c2B5C81D04B26F8556Fc62d7b | 0.3% | 100.0% | mainnet | BIP-404 | 2 | ['LUSD(0x5f98805A4E8be255a32880FDeC7F6728C6568bA0)', 'OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xce2da1d3e5b5e4e1913f9ff65ee029d38682d8b900020000000000000000044e | B-50ACID-50WETH | N/A | 0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE | 0.25% | 2.0% | L0 sidechain | BIP-404 | 3 | ['ACID(0x29C1EA5ED7af53094b1a79eF60d20641987c867e)', 'WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/00batched/2023/2023-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..48d63ee86 --- /dev/null +++ b/BIPs/00batched/2023/2023-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W33/BIP-401.json", + "bip_number": "BIP-401" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x35e5100c90c1D657942EC5Ec4cbe38c53845245F", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W33/BIP-403.json", + "bip_number": "BIP-403" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W33/BIP-400.json", + "bip_number": "BIP-400" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..578f5d832 --- /dev/null +++ b/BIPs/00batched/2023/2023-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,19 @@ +File name: BIPs/00batched/2023-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `98914242d2a2ffab527cdfe24b6d8ededfa11e0f` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `polygon, mainnet, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xe4e72f872c4048925a78e1e6fddac411c9ae348a0000000000000000000005bc | 2BTC | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 | "tBTC(0x18084fbA666a33d37592fA2633fD49a74DD93a88)", | "0x0000000000000000000000000000000000000000", | BIP-401 | 0 | +| | pool_address: 0xe4e72f872c4048925a78E1e6Fddac411C9ae348A | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "WBTC(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "2BTC(0xe4e72f872c4048925a78E1e6Fddac411C9ae348A)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x76b9cbd55fd6776c2de18738a04b0f9da56ce6ca00020000000000000000048d | 80BETS/20wstETH | 0x35e5100c90c1D657942EC5Ec4cbe38c53845245F | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-403 | 1 | +| | pool_address: 0x76b9Cbd55FD6776c2de18738A04b0f9da56Ce6cA | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "BETS(0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | ECLP-WMATIC-MATICX | 0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c | "WMATIC(0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270)", | | BIP-400 | 2 | +| | pool_address: 0xeE278d943584dd8640eaf4cc6c7a5C80c0073E85 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 10.0% | "MaticX(0xfa68FB4628DFF1028CFEc22b4162FCcd0d45efb6)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W33/2023-W33-payload-report.md b/BIPs/00batched/2023/2023-W33/2023-W33-payload-report.md new file mode 100644 index 000000000..21c945ab6 --- /dev/null +++ b/BIPs/00batched/2023/2023-W33/2023-W33-payload-report.md @@ -0,0 +1,30 @@ +## Mainnet + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/fd3c6b56-bc45-4b30-8cbe-83dd80a425b6) + +[Sign Nonce 216](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` +CHAIN(S): `mainnet, arbitrum` ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=======================+=====+============================================+============+========+==============+=========+============+=============================================================================================================+ +| AAEntrypoint/killGauge() | 0x6910c4e32d425a834fb61e983c8083a84b0ebd01000200000000000000000532 | wstETH/rETH/L | N/A | 0xB5bd58C733948e3d65d86BA9604e06e5dA276FD1 | Not Found% | 2.0% | mainnet | BIP-404 | 0 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9c6d47ff73e0f5e51be5fd53236e3f595c5793f200020000000000000000042c | B-cbETH-wstETH-Stable | 50 | 0x01A9502C11f411b494c62746D37e89d6f7078657 | 0.04% | 100.0% | mainnet | BIP-404 | 1 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x18fdf15ff782e44c1f9b6c5846ff6b0f0004f6a2000200000000000000000560 | 50OHM-50LUSD | N/A | 0xd8191A3496a1520c2B5C81D04B26F8556Fc62d7b | 0.3% | 100.0% | mainnet | BIP-404 | 2 | ['LUSD(0x5f98805A4E8be255a32880FDeC7F6728C6568bA0)', 'OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xce2da1d3e5b5e4e1913f9ff65ee029d38682d8b900020000000000000000044e | B-50ACID-50WETH | N/A | 0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE | 0.25% | 2.0% | L0 sidechain | BIP-404 | 3 | ['ACID(0x29C1EA5ED7af53094b1a79eF60d20641987c867e)', 'WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +``` + +## Arbitrum +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/bef4cb20-30cd-477e-b0a6-8d10212dbf24) +[Sign Nonce 33](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) +``` ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000.0 (RAW: 100000000000000000000000) | BIP-322 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W33/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W33/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..1ca2c4ddf --- /dev/null +++ b/BIPs/00batched/2023/2023-W33/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "100000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W33/BIP-322.json", + "bip_number": "BIP-322" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W33/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2023/2023-W33/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..a8f077e17 --- /dev/null +++ b/BIPs/00batched/2023/2023-W33/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W33/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `98914242d2a2ffab527cdfe24b6d8ededfa11e0f` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `arbitrum` +``` ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000.0 (RAW: 100000000000000000000000) | BIP-322 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W33/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W33/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..cf31f910d --- /dev/null +++ b/BIPs/00batched/2023/2023-W33/checkpointer_gauges_by_chain.json @@ -0,0 +1,5 @@ +{ + "Arbitrum": "[0x35e5100c90c1D657942EC5Ec4cbe38c53845245F]", + "Optimism": "[0xd2BE9C60E0D91353842a267361D4b0c20c3bFD5B]", + "Polygon": "[0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c]" +} diff --git a/BIPs/00batched/2023/2023-W34/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W34/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..6cf7ea5fe --- /dev/null +++ b/BIPs/00batched/2023/2023-W34/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W34/BIP-394-September.json", + "bip_number": "BIP-394" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W34/BIP-393-September.json", + "bip_number": "BIP-393" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W34/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W34/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..cd8a1a806 --- /dev/null +++ b/BIPs/00batched/2023/2023-W34/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00batched/2023-W34/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `3d4874b8e6deff18064cd5318004347f54b9e6a7` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..d6bc974ec --- /dev/null +++ b/BIPs/00batched/2023/2023-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf720e9137baa9C7612e6CA59149a5057ab320cFa", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W34/BIP-411.json", + "bip_number": "BIP-411" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W34/BIP-406.json", + "bip_number": "BIP-406" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x399A750516c14C80480AED2Bb597092b9118Caa9", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W34/BIP-405.json", + "bip_number": "BIP-405" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x02ea1C2702eCD478082D4b3AE902B6d10d26b920", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W34/BIP410.json", + "bip_number": "BIP410" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2efCc89a1D534a8ee0e8dD469fa05cb20ccF5C19", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W34/BIP-407.json", + "bip_number": "BIP-407" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x276Df166BC23bC6A84Aac1EA48E1acC32264b652", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "", + "bip_number": "BIP-398" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..a28058eda --- /dev/null +++ b/BIPs/00batched/2023/2023-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,35 @@ +File name: BIPs/00batched/2023-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `3d4874b8e6deff18064cd5318004347f54b9e6a7` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `mainnet, arbitrum, gnosis` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+=====================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | GHO/USDT/USDC | 0xf720e9137baa9C7612e6CA59149a5057ab320cFa | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | "0x0000000000000000000000000000000000000000", | BIP-411 | 0 | +| | pool_address: 0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF | fee: 0.05, a-factor: 200 | Style: mainnet, cap: 100.0% | "GHO/USDT/USDC(0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDT(0xdAC17F958D2ee523a2206206994597C13D831ec7)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | wstETH/rETH/sfrxETH | 0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8 | "wstETH/rETH/sfrxETH(0x0c8972437a38b389ec83d1E666b69b8a4fcf8bfd)", | "0x0000000000000000000000000000000000000000", | BIP-406 | 1 | +| | pool_address: 0x0c8972437a38b389ec83d1E666b69b8a4fcf8bfd | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "sfrxETH(0x95aB45875cFFdba1E5f451B950bC2E42c0053f39)", | "0x2237a270E87F81A30a1980422185f806e4549346", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xA73ec45Fe405B5BFCdC0bF4cbc9014Bb32a01cd2" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x0c1b9ce6bf6c01f587c2ee98b0ef4b20c6648753000000000000000000000050 | EURe/staBAL3 | 0x399A750516c14C80480AED2Bb597092b9118Caa9 | "EURe/staBAL3(0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753)", | "0x0000000000000000000000000000000000000000", | BIP-405 | 2 | +| | pool_address: 0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753 | fee: 0.05, a-factor: 20 | Style: L0 sidechain, cap: 2.0% | "staBAL3(0x2086f52651837600180dE173B09470F54EF74910)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)" | "0xE7511f6e5C593007eA8A7F52af4B066333765e03" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x6f0ed6f346007563d3266de350d174a831bde0ca0001000000000000000005db | 50KNC-25WETH-25USDC-BPT | 0x02ea1C2702eCD478082D4b3AE902B6d10d26b920 | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | BIP410 | 3 | +| | pool_address: 0x6f0ed6f346007563D3266DE350d174a831bDE0ca | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 10.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "KNC(0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x8ed9e70bfa17a1e2c4f8e561c8d0c2d1acc092fa0001000000000000000005ce | 33LCNY-33LUSD-33WETH | 0x2efCc89a1D534a8ee0e8dD469fa05cb20ccF5C19 | "LUSD(0x5f98805A4E8be255a32880FDeC7F6728C6568bA0)", | "0x0000000000000000000000000000000000000000", | BIP-407 | 4 | +| | pool_address: 0x8ED9e70BfA17A1E2C4F8e561c8d0c2d1acc092fA | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 2.0% | "LCNY(0x7635B612792e4bFB7F2FA12a3E5d5A3f2e3C34BC)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x6ae5a7857aad26722cb02cc168e38c52e0e4e45d0000000000000000000005dd | TBY-feb1924-USDC-BPT | 0x276Df166BC23bC6A84Aac1EA48E1acC32264b652 | "TBY-feb1924-USDC-BPT(0x6Ae5a7857aAd26722cB02CC168e38c52E0e4e45d)", | "0x0000000000000000000000000000000000000000", | BIP-398 | 5 | +| | pool_address: 0x6Ae5a7857aAd26722cB02CC168e38c52E0e4e45d | fee: 0.01, a-factor: 100 | Style: mainnet, cap: 2.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "TBY-feb1924(0xC4cafEFBc3dfeA629c589728d648CB6111DB3136)" | "0x67560A970FFaB46D65cB520dD3C2fF4E684f29c2" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W34/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W34/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..50b20729f --- /dev/null +++ b/BIPs/00batched/2023/2023-W34/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Arbitrum": "[0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8]", + "Gnosis": "[0x399A750516c14C80480AED2Bb597092b9118Caa9]" +} diff --git a/BIPs/00batched/2023/2023-W35/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W35/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..994b681c3 --- /dev/null +++ b/BIPs/00batched/2023/2023-W35/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x414Eae9a827f4174A63Fe4f10E975678Ca28C898", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-413.json", + "bip_number": "BIP-413" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-413.json", + "bip_number": "BIP-413" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5c23661E747F84E0c71d782e5f1513126041734B", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-413.json", + "bip_number": "BIP-413" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-412.json", + "bip_number": "BIP-412" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-412.json", + "bip_number": "BIP-412" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W35/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W35/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..5880e536e --- /dev/null +++ b/BIPs/00batched/2023/2023-W35/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,19 @@ +File name: BIPs/00batched/2023-W35/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `b8f692d7efe8ac57dfcd77cd1f4a6a17277d52c4` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `arbitrum, mainnet` +``` ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+======================+=====+============================================+========+========+==============+=========+============+===============================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xbe19d87ea6cd5b05bbc34b564291c371dae967470000000000000000000005c4 | GHO-3POOL-BPT | 200 | 0x414Eae9a827f4174A63Fe4f10E975678Ca28C898 | 0.05% | 100.0% | mainnet | BIP-413 | 0 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'USDC-DAI-USDT(0x79c58f70905F734641735BC61e45c19dD9Ad60bC)', 'GHO-3POOL-BPT(0xbE19d87Ea6cd5b05bBC34B564291c371dAe96747)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb2b918f2d628b4c8ff237b0a1c6ac3bea222fedc00020000000000000000059c | 50GHO/50OHM | N/A | 0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9 | 0.05% | 100.0% | mainnet | BIP-413 | 1 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9a172e1cb0e99f7e6dcc4c52e4655e8f337d5c0000000000000000000000059a | GHO/MAI | 100 | 0x5c23661E747F84E0c71d782e5f1513126041734B | 0.05% | 100.0% | mainnet | BIP-413 | 2 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'MAI(0x8D6CeBD76f18E1558D4DB88138e2DeFB3909fAD6)', 'GHO/MAI(0x9A172e1cb0E99f7E6DCc4c52e4655e8f337d5c00)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x32296969ef14eb0c6d29669c550d4a0449130230000200000000000000000080 | B-stETH-STABLE | 50 | 0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE | 0.04% | N/A | mainnet | BIP-412 | 3 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x36bf227d6bac96e2ab1ebb5492ecec69c691943f000200000000000000000316 | B-wstETH-WETH-Stable | 50 | 0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf | 0.001% | 100.0% | L0 sidechain | BIP-412 | 4 | ['wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/00batched/2023/2023-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..d92714e14 --- /dev/null +++ b/BIPs/00batched/2023/2023-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x329cAebB9be5144C5727347F64F8B3a3B109ec57", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-416.json", + "bip_number": "BIP-416" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD5417ACb575c799cEB373f85AdF100C7cD84C8c8", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-417.json", + "bip_number": "BIP-417" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-414.json", + "bip_number": "BIP-414" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-415.json", + "bip_number": "BIP-415" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..21ef6c20c --- /dev/null +++ b/BIPs/00batched/2023/2023-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,22 @@ +File name: BIPs/00batched/2023-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `b8f692d7efe8ac57dfcd77cd1f4a6a17277d52c4` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `arbitrum, mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xead7e0163e3b33bf0065c9325fc8fb9b18cc82130000000000000000000004a9 | STAR/USDC-BPT | 0x329cAebB9be5144C5727347F64F8B3a3B109ec57 | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)", | "0x0000000000000000000000000000000000000000", | BIP-416 | 0 | +| | pool_address: 0xEAD7e0163e3b33bF0065C9325fC8fb9B18cc8213 | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 10.0% | "STAR(0xC19669A405067927865B40Ea045a2baabbbe57f5)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "STAR/USDC-BPT (0xEAD7e0163e3b33bF0065C9325fC8fb9B18cc8213)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x10f8ea49255e8a865ca4eda1630168c85cc8ee810002000000000000000005d3 | 50ELFI-50WETH | 0xD5417ACb575c799cEB373f85AdF100C7cD84C8c8 | "ELFI(0x5c6D51ecBA4D8E4F20373e3ce96a62342B125D6d)", | "0x0000000000000000000000000000000000000000", | BIP-417 | 1 | +| | pool_address: 0x10f8EA49255e8a865ca4edA1630168C85cC8ee81 | fee: 0.5, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | ECLP-wstETH-wETH | 0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | | BIP-414 | 2 | +| | pool_address: 0xf01b0684C98CD7aDA480BFDF6e43876422fa1Fc1 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 10.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | ECLP-wstETH-cbETH | 0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | | BIP-415 | 3 | +| | pool_address: 0xF7A826D47c8E02835D94fb0Aa40F0cC9505cb134 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 10.0% | "cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W35/2023-W35-combined-report.md b/BIPs/00batched/2023/2023-W35/2023-W35-combined-report.md new file mode 100644 index 000000000..6c7d88f9f --- /dev/null +++ b/BIPs/00batched/2023/2023-W35/2023-W35-combined-report.md @@ -0,0 +1,32 @@ +## Mainnet +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/b6268c2b-a6e0-4a2a-b0da-e3954207e80a) + +[Nonce 220](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `arbitrum, mainnet` +``` ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+======================+=====+============================================+========+========+==============+=========+============+===============================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xbe19d87ea6cd5b05bbc34b564291c371dae967470000000000000000000005c4 | GHO-3POOL-BPT | 200 | 0x414Eae9a827f4174A63Fe4f10E975678Ca28C898 | 0.05% | 100.0% | mainnet | BIP-413 | 0 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'USDC-DAI-USDT(0x79c58f70905F734641735BC61e45c19dD9Ad60bC)', 'GHO-3POOL-BPT(0xbE19d87Ea6cd5b05bBC34B564291c371dAe96747)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb2b918f2d628b4c8ff237b0a1c6ac3bea222fedc00020000000000000000059c | 50GHO/50OHM | N/A | 0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9 | 0.05% | 100.0% | mainnet | BIP-413 | 1 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9a172e1cb0e99f7e6dcc4c52e4655e8f337d5c0000000000000000000000059a | GHO/MAI | 100 | 0x5c23661E747F84E0c71d782e5f1513126041734B | 0.05% | 100.0% | mainnet | BIP-413 | 2 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'MAI(0x8D6CeBD76f18E1558D4DB88138e2DeFB3909fAD6)', 'GHO/MAI(0x9A172e1cb0E99f7E6DCc4c52e4655e8f337d5c00)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x32296969ef14eb0c6d29669c550d4a0449130230000200000000000000000080 | B-stETH-STABLE | 50 | 0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE | 0.04% | N/A | mainnet | BIP-412 | 3 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x36bf227d6bac96e2ab1ebb5492ecec69c691943f000200000000000000000316 | B-wstETH-WETH-Stable | 50 | 0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf | 0.001% | 100.0% | L0 sidechain | BIP-412 | 4 | ['wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` + +## Arbitrum +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/31c950b6-043b-4c11-97c4-1d803738def6) + +[Nonce 36](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) +```` ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000.0 (RAW: 100000000000000000000000) | BIP-322 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W35/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W35/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..15a3417e2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W35/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "100000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W35/BIP-322.json", + "bip_number": "BIP-322" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W35/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2023/2023-W35/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..fa61bd2b0 --- /dev/null +++ b/BIPs/00batched/2023/2023-W35/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W35/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `b8f692d7efe8ac57dfcd77cd1f4a6a17277d52c4` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `arbitrum` +``` ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000.0 (RAW: 100000000000000000000000) | BIP-322 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W35/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W35/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..7341b81c5 --- /dev/null +++ b/BIPs/00batched/2023/2023-W35/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0x329cAebB9be5144C5727347F64F8B3a3B109ec57]" +} diff --git a/BIPs/00batched/2023/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..9da8aad3b --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,308 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166, 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGaugeType", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Base" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "factory", + "type": "address", + "internalType": "contract ILiquidityGaugeFactory" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x8e3B64b3737097F283E965869e3503AA20F31E4D", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "factory", + "type": "address", + "internalType": "contract ILiquidityGaugeFactory" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x22625eEDd92c81a219A83e1dc48f88d54786B017", + "gaugeType": "Avalanche" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166, 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x455f20c54b5712a84454468c7831f7c431aeEB1C", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-419.json", + "bip_number": "BIP-419" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x68258012DA3B933a81617FD08c9382a60B87cA98", + "value": "8700000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-420.json", + "bip_number": "BIP-420" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "2500000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-420.json", + "bip_number": "BIP-420" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x7b065Fcb0760dF0CEA8CFd144e08554F3CeA73D1", + "value": "4600000000" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-420.json", + "bip_number": "BIP-420" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1bf019A44a708FBEBA7ADc79bdaD3D0769fF3a7b", + "value": "3800000000" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-420.json", + "bip_number": "BIP-420" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..3145fac69 --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,70 @@ +File name: BIPs/00batched/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `polygon` +``` ++--------------------------+--------------------------------------------------------------------+------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+============+=====+============================================+=======+=======+==============+=========+============+===================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xe19ed40a47f9b0cea4ca6d372df66107758913ec000000000000000000000b41 | 2BRL (BRZ) | 200 | 0x455f20c54b5712a84454468c7831f7c431aeEB1C | 0.05% | 2.0% | L0 sidechain | BIP-419 | 5 | ['BRZ(0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f)', '2BRL (BRZ)(0xe19ed40A47F9B0CEA4ca6D372dF66107758913Ec)', 'jBRL(0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722)'] | ++--------------------------+--------------------------------------------------------------------+------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +File name: BIPs/00batched/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x68258012DA3B933a81617FD08c9382a60B87cA98 | 8700.0 (RAW: 8700000000) | BIP-420 | 6 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 2500.0 (RAW: 2500000000) | BIP-420 | 7 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x7b065Fcb0760dF0CEA8CFd144e08554F3CeA73D1 | 4600.0 (RAW: 4600000000) | BIP-420 | 8 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x1bf019A44a708FBEBA7ADc79bdaD3D0769fF3a7b | 3800.0 (RAW: 3800000000) | BIP-420 | 9 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++========================+===============+============================================+====================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-424 | 0 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-424 | 4 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+=================================================================================+=========+========================================================================================================================+==============+============+ +| addGaugeType | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "gaugeType": "Base" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "factory": [ | | | +| | | | "0x8e3B64b3737097F283E965869e3503AA20F31E4D (20230911-base-root-gauge-factory/BaseRootGaugeFactory) " | | | +| | | | ], | | | +| | | | "gaugeType": "Base" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "factory": [ | | | +| | | | "0x22625eEDd92c81a219A83e1dc48f88d54786B017 (20230811-avalanche-root-gauge-factory-v2/AvalancheRootGaugeFactory) " | | | +| | | | ], | | | +| | | | "gaugeType": "Avalanche" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..1c4dea002 --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,464 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf0d3268d36Adf812Fa69756500D72A899D4c2420", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-423.json", + "bip_number": "BIP-423" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb1af0D75AEEa1c13c450ffc7e12083072DAf41eb", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-423.json", + "bip_number": "BIP-423" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x93AE6971F03CE890FA4e9274Ab441477b84DAE5f", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-423.json", + "bip_number": "BIP-423" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x64fCeD4684f4B065E6b900c4E99a0CBaCC5E5fe1", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-423.json", + "bip_number": "BIP-423" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA5893CF81150Aa61a0b33950c1B13C5251C19A10", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-421.json", + "bip_number": "BIP-421" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x956074628A64a316086f7125074a8A52d3306321", + "gaugeType": "Avalanche" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1e916950A659Da9813EE34479BFf04C732E03deb", + "gaugeType": "Avalanche" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50", + "gaugeType": "Avalanche" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd", + "gaugeType": "Avalanche" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39", + "gaugeType": "Avalanche" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd75026F8723b94d9a360A282080492d905c6A558", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xefF145872582721e1b33931d61c3fE9C1ca66690", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe9B2CB6836Be07357bCb8144F398730d5EC268E9", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbf8F01EbCf0A21C46D23ADa2C86EB31c9965B2F0", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424B.json", + "bip_number": "BIP-424" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..e30014a09 --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,66 @@ +File name: BIPs/00batched/2023-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `base, optimism, gnosis, avax` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===============================+============================================+===================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xeb30c85cc528537f5350cf5684ce6a4538e13394000200000000000000000059 | B-50USD-50wstETH | 0xf0d3268d36Adf812Fa69756500D72A899D4c2420 | "staBAL3(0x2086f52651837600180dE173B09470F54EF74910)", | "0x0000000000000000000000000000000000000000", | BIP-423 | 0 | +| | pool_address: 0xEb30C85CC528537f5350CF5684Ce6a4538e13394 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x4683e340a8049261057d5ab1b29c8d840e75695e00020000000000000000005a | B-50wstETH-50GNO | 0xb1af0D75AEEa1c13c450ffc7e12083072DAf41eb | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)", | "0x0000000000000000000000000000000000000000", | BIP-423 | 1 | +| | pool_address: 0x4683e340a8049261057D5aB1b29C8d840E75695e | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "GNO(0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x4cdabe9e07ca393943acfb9286bbbd0d0a310ff600020000000000000000005c | B-50wstETH-50COW | 0x93AE6971F03CE890FA4e9274Ab441477b84DAE5f | "COW(0x177127622c4A00F3d409B75571e12cB3c8973d3c)", | "0x0000000000000000000000000000000000000000", | BIP-423 | 2 | +| | pool_address: 0x4cdABE9E07ca393943AcFB9286bBbd0D0a310Ff6 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x00df7f58e1cf932ebe5f54de5970fb2bdf0ef06d00010000000000000000005b | B-50wstETH-25BAL-25AURA | 0x64fCeD4684f4B065E6b900c4E99a0CBaCC5E5fe1 | "AURA(0x1509706a6c66CA549ff0cB464de88231DDBe213B)", | "0x0000000000000000000000000000000000000000", | BIP-423 | 3 | +| | pool_address: 0x00dF7f58e1Cf932eBe5f54De5970Fb2Bdf0ef06D | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "BAL(0x7eF541E2a22058048904fE5744f9c7E4C57AF717)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xacfe9b4782910a853b68abba60f3fd8049ffe6380000000000000000000000ff | bpt-dolausdc | 0xA5893CF81150Aa61a0b33950c1B13C5251C19A10 | "USDC(0x7F5c764cBc14f9669B88837ca1490cCa17c31607)", | "0x0000000000000000000000000000000000000000", | BIP-421 | 4 | +| | pool_address: 0xACfE9b4782910A853b68abbA60f3FD8049Ffe638 | fee: 0.2, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "DOLA(0x8aE125E8653821E851F12A49F7765db9a9ce7384)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "bpt-dolausdc(0xACfE9b4782910A853b68abbA60f3FD8049Ffe638)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f | yyAVAX-WAVAX-BPT | 0x956074628A64a316086f7125074a8A52d3306321 | "yyAVAX-WAVAX-BPT(0x9fA6aB3d78984A69e712730A2227F20bCC8b5aD9)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 5 | +| | pool_address: 0x9fA6aB3d78984A69e712730A2227F20bCC8b5aD9 | fee: 0.04, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "WAVAX(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "yyAVAX(0xF7D9281e8e363584973F946201b82ba72C965D27)" | "0x13a80aBe608A054059CfB54Ef08809a05Fc07b82" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | sAVAX-WAVAX-BPT | 0x1e916950A659Da9813EE34479BFf04C732E03deb | "sAVAX(0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE)", | "0x5f8147f9e4fB550C5be815C8a20013171eEFB46D", | BIP-424 | 6 | +| | pool_address: 0xfD2620C9cfceC7D152467633B3B0Ca338D3d78cc | fee: 0.04, a-factor: 3000 | Style: L0 sidechain, cap: 100.0% | "WAVAX(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sAVAX-WAVAX-BPT(0xfD2620C9cfceC7D152467633B3B0Ca338D3d78cc)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e | USDC-USDT-BPT | 0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50 | "USDt(0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 7 | +| | pool_address: 0xB26f0e66317846Bd5fE0cBAa1d269f0efEb05c96 | fee: 0.01, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "USDC-USDT-BPT(0xB26f0e66317846Bd5fE0cBAa1d269f0efEb05c96)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | ggAVAX-WAVAX-BPT | 0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd | "ggAVAX(0xA25EaF2906FA1a3a13EdAc9B9657108Af7B703e3)", | "0x1bB74eC551cCd9FE416C71F904D64f42079A0a7f", | BIP-424 | 8 | +| | pool_address: 0xC13546b97B9B1b15372368Dc06529d7191081F5B | fee: 0.04, a-factor: 3000 | Style: L0 sidechain, cap: 100.0% | "WAVAX(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "ggAVAX-WAVAX-BPT(0xC13546b97B9B1b15372368Dc06529d7191081F5B)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc000200000000000000000011 | BPT | 0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39 | "USDC(0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E)", | | BIP-424 | 9 | +| | pool_address: 0x55bEC22f8f6C69137cEAf284d9B441Db1B9bFedc | fee: Not Found, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "EUROC(0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | rETH-WETH-BPT | 0xd75026F8723b94d9a360A282080492d905c6A558 | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 10 | +| | pool_address: 0xC771c1a5905420DAEc317b154EB13e4198BA97D0 | fee: 0.05, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "rETH(0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c)", | "0x039f7205C2cBa4535C2575123Ac3D657263892c4", | | | +| | | | | "rETH-WETH-BPT(0xC771c1a5905420DAEc317b154EB13e4198BA97D0)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026 | cbETH/WETH | 0xefF145872582721e1b33931d61c3fE9C1ca66690 | "cbETH(0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22)", | "0x3786a6CAAB433f5dfE56503207DF31DF87C5b5C1", | BIP-424 | 11 | +| | pool_address: 0xFb4C2E6E6e27B5b4a07a36360C89EDE29bB3c9B6 | fee: 0.008, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "cbETH/WETH(0xFb4C2E6E6e27B5b4a07a36360C89EDE29bB3c9B6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046 | USDC/USDbC/axlUSDC | 0xe9B2CB6836Be07357bCb8144F398730d5EC268E9 | "USDC/USDbC/axlUSDC(0x0C659734f1eEF9C63B7Ebdf78a164CDd745586Db)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 12 | +| | pool_address: 0x0C659734f1eEF9C63B7Ebdf78a164CDd745586Db | fee: 0.01, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "USDC(0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDbC(0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "axlUSDC(0xEB466342C4d449BC9f53A865D5Cb90586f405215)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x433f09ca08623e48bac7128b7105de678e37d988000100000000000000000047 | 50GOLD/25WETH/25USDC | 0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 13 | +| | pool_address: 0x433f09ca08623E48BAc7128B7105De678E37D988 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 10.0% | "USDC(0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "GOLD(0xbeFD5C25A59ef2C1316c5A4944931171F30Cd3E4)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xb328b50f1f7d97ee8ea391ab5096dd7657555f49000100000000000000000048 | GOLD/BAL/USDC | 0xbf8F01EbCf0A21C46D23ADa2C86EB31c9965B2F0 | "BAL(0x4158734D47Fc9692176B5085E0F52ee0Da5d47F1)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 14 | +| | pool_address: 0xb328B50F1f7d97EE8ea391Ab5096DD7657555F49 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "USDC(0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "GOLD(0xbeFD5C25A59ef2C1316c5A4944931171F30Cd3E4)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W36/2023-W36-combined-report.md b/BIPs/00batched/2023/2023-W36/2023-W36-combined-report.md new file mode 100644 index 000000000..6e274b0c4 --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/2023-W36-combined-report.md @@ -0,0 +1,100 @@ +## Mainnet +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/b2a42b45-5a6a-4c71-9c9e-803ad8319f5a) + +[Nonce 221](https://gnosis-safe.io/app/eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f/transactions/queue) + +``` ++--------------------------+--------------------------------------------------------------------+------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+============+=====+============================================+=======+=======+==============+=========+============+===================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xe19ed40a47f9b0cea4ca6d372df66107758913ec000000000000000000000b41 | 2BRL (BRZ) | 200 | 0x455f20c54b5712a84454468c7831f7c431aeEB1C | 0.05% | 2.0% | L0 sidechain | BIP-419 | 5 | ['BRZ(0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f)', '2BRL (BRZ)(0xe19ed40A47F9B0CEA4ca6D372dF66107758913Ec)', 'jBRL(0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722)'] | ++--------------------------+--------------------------------------------------------------------+------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x68258012DA3B933a81617FD08c9382a60B87cA98 | 8700.0 (RAW: 8700000000) | BIP-420 | 6 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 2500.0 (RAW: 2500000000) | BIP-420 | 7 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x7b065Fcb0760dF0CEA8CFd144e08554F3CeA73D1 | 4600.0 (RAW: 4600000000) | BIP-420 | 8 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x1bf019A44a708FBEBA7ADc79bdaD3D0769fF3a7b | 3800.0 (RAW: 3800000000) | BIP-420 | 9 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ + ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++========================+===============+============================================+====================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-424 | 0 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-424 | 4 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ + ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+=================================================================================+=========+========================================================================================================================+==============+============+ +| addGaugeType | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "gaugeType": "Base" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "factory": [ | | | +| | | | "0x8e3B64b3737097F283E965869e3503AA20F31E4D (20230911-base-root-gauge-factory/BaseRootGaugeFactory) " | | | +| | | | ], | | | +| | | | "gaugeType": "Base" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "factory": [ | | | +| | | | "0x22625eEDd92c81a219A83e1dc48f88d54786B017 (20230811-avalanche-root-gauge-factory-v2/AvalancheRootGaugeFactory) " | | | +| | | | ], | | | +| | | | "gaugeType": "Avalanche" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` +## Base +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/885f15f4-8cac-444e-9155-7c434e6df3f7) + +[Nonce 3](https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462) + + +``` ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d | BIP-424 | 0 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d | BIP-424 | 2 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ ++-----------------+--------------------------------------------------------------------------------------------------------+---------+-----------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================================================================+=========+===========================================================+==============+============+ +| addGaugeFactory | 0x0c5538098EBe88175078972F514C9e101D325D4F (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-424 | N/A | +| | | | "factory": "0xb1a4FE1C6d25a0DDAb47431A92A723dd71d9021f" | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+---------+-----------------------------------------------------------+--------------+------------+ +``` + +## Avax + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/2cedf3b8-177e-4c50-98aa-a27c7cfe89ce) + +REJECT NONCE 11 +REJECT NONCE 12 + +[Nonce 13](https://app.safe.global/transactions/queue?safe=avax%3A0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+======================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf | BIP-422 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | BIP-422 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | BIP-422 | 2 | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` \ No newline at end of file diff --git a/BIPs/00batched/2023/2023-W36/2023-W36-tg_template.txt b/BIPs/00batched/2023/2023-W36/2023-W36-tg_template.txt new file mode 100644 index 000000000..41165ebfd --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/2023-W36-tg_template.txt @@ -0,0 +1,26 @@ +gm everyone. This week we have some new chains being setup for veBAL. Gauges can't be added until the DAO multisig executes. Would be great if we could execute this tomorrow evening CET :) + +@garaigram @mouph @nanexcool @StefanGeorge @eboado @bonustrack @trentmc0 @alexanderlan @OxMaki @SausageDoge + +https://gnosis-safe.io/app/eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f/transactions/queue + +Sign #221 +BIP-419: Kill Duplicate BRZ/jBRZ gauge: https://snapshot.org/#/balancer.eth/proposal/0x844058e6c4794a72bb1c0135a1fe3f487b9b1963ca2b652e37e65b7843449782 +BIP-420: Pay back DAOs for lost bribes due to gauges killed as part of vulnerabliity mitigation: https://snapshot.org/#/balancer.eth/proposal/0x0f2948f53a82df8aa543b352290cea414bb75c2b59193505e282614df690bd06 +BIP-424: Provision Gauge system on Base and Avax (permissions + wireup): https://snapshot.org/#/balancer.eth/proposal/0x6459a7430d378236892af46e14afbecb56f51a81cd8e48b92e8a5774a919d7d6 + +————————————————————————————————————————————————————————————- +https://app.safe.global/transactions/queue?safe=avax%3A0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 + +Reject #11 (see:https://forum.balancer.fi/t/bip-422-wire-up-weighted-pool-permissions-on-avalanche/5166/3?u=tritium ) +Reject #12 (Sorry, reloaded the first TX) +Sign #13 +BIP-422: Enable missing permissions on Avalanche + + +————————————————————————————————————————————————————————————-- +https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462 + +Sign #3 +BIP-424: Configure new psudominter on Base + diff --git a/BIPs/00batched/2023/2023-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..3998cdea8 --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-422.json", + "bip_number": "BIP-422" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50", + "account": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-422.json", + "bip_number": "BIP-422" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50, 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae, 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-422.json", + "bip_number": "BIP-422" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt b/BIPs/00batched/2023/2023-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt new file mode 100644 index 000000000..5c344bd02 --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/00batched/2023-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/dao (0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +CHAIN(S): `avalanche` +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+======================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf | BIP-422 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | BIP-422 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | BIP-422 | 2 | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/00batched/2023/2023-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..6079eb75d --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,98 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424A.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x0c5538098EBe88175078972F514C9e101D325D4F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0xb1a4FE1C6d25a0DDAb47431A92A723dd71d9021f" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424A.json", + "bip_number": "BIP-424" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W36/BIP-424A.json", + "bip_number": "BIP-424" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/00batched/2023/2023-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..0b4d6822e --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,26 @@ +File name: BIPs/00batched/2023-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +MERGED PAYLOAD: Chain:base (8453), Multisig: multisigs/dao (0xC40DCFB13651e64C8551007aa57F9260827B6462) +CHAIN(S): `base` +``` ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d | BIP-424 | 0 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d | BIP-424 | 2 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +MERGED PAYLOAD: Chain:base (8453), Multisig: multisigs/dao (0xC40DCFB13651e64C8551007aa57F9260827B6462) +CHAIN(S): `8453` +``` ++-----------------+--------------------------------------------------------------------------------------------------------+---------+-----------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================================================================+=========+===========================================================+==============+============+ +| addGaugeFactory | 0x0c5538098EBe88175078972F514C9e101D325D4F (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-424 | N/A | +| | | | "factory": "0xb1a4FE1C6d25a0DDAb47431A92A723dd71d9021f" | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+---------+-----------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W36/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W36/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..cfbc04533 --- /dev/null +++ b/BIPs/00batched/2023/2023-W36/checkpointer_gauges_by_chain.json @@ -0,0 +1,6 @@ +{ + "Gnosis": "[0xf0d3268d36Adf812Fa69756500D72A899D4c2420, 0xb1af0D75AEEa1c13c450ffc7e12083072DAf41eb, 0x93AE6971F03CE890FA4e9274Ab441477b84DAE5f, 0x64fCeD4684f4B065E6b900c4E99a0CBaCC5E5fe1]", + "Optimism": "[0xA5893CF81150Aa61a0b33950c1B13C5251C19A10]", + "Avalanche": "[0x956074628A64a316086f7125074a8A52d3306321, 0x1e916950A659Da9813EE34479BFf04C732E03deb, 0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50, 0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd, 0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39]", + "Base": "[0xd75026F8723b94d9a360A282080492d905c6A558, 0xefF145872582721e1b33931d61c3fE9C1ca66690, 0xe9B2CB6836Be07357bCb8144F398730d5EC268E9, 0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c, 0xbf8F01EbCf0A21C46D23ADa2C86EB31c9965B2F0]" +} diff --git a/BIPs/00batched/2023/2023-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..7f47f4201 --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x25DDcad849de576c2A6c124984cE59e62739156D", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-418.json", + "bip_number": "BIP-418" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xeE707Ae5500DD9072aC0daB1170DD16d9AddD68F", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-426.json", + "bip_number": "BIP-426" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCc6A23446f6388D78F3037BD55f2eB820352d982", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-425.json", + "bip_number": "BIP-425" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2e6Cd45581002C894Cac692DCE4a30632125EF99", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-427.json", + "bip_number": "BIP-427" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe6281Fc01607366794597d7fA6b32931fF986969", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-428.json", + "bip_number": "BIP-428" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..a1a07ec98 --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,30 @@ +File name: BIPs/00batched/2023-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `79615e51d6896b8cedc275a0a24d91c623fccc65` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `arbitrum, mainnet, optimism` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x6b9f3f6b9054a45702d3f2c6e3d32a60204934cb0000000000000000000004a7 | USDF/USDC | 0x25DDcad849de576c2A6c124984cE59e62739156D | "USDF/USDC(0x6B9f3f6b9054A45702D3F2C6e3D32A60204934cb)", | "0x0000000000000000000000000000000000000000", | BIP-418 | 0 | +| | pool_address: 0x6B9f3f6b9054A45702D3F2C6e3D32A60204934cb | fee: 0.05, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "USDF(0xae48b7C8e096896E32D53F10d0Bf89f82ec7b987)", | "0xD438f19b1Dd47EbECc5f904d8Fd44583CbFB7c85", | | | +| | | | | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x47e1cf97a0586367349a14306a65f54ba0b8f1b60002000000000000000005cd | 20WETH-80ALTR | 0xeE707Ae5500DD9072aC0daB1170DD16d9AddD68F | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | BIP-426 | 1 | +| | pool_address: 0x47E1Cf97A0586367349A14306A65F54Ba0b8f1B6 | fee: 1.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "ALTR(0xD1ffCacFc630CE68d3cd3369F5db829a3ed01fE2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x6228f64d5ba8376652bfe7e36569d595347cf6fb0002000000000000000005df | 80T-20TBTC | 0xCc6A23446f6388D78F3037BD55f2eB820352d982 | "tBTC(0x18084fbA666a33d37592fA2633fD49a74DD93a88)", | "0x0000000000000000000000000000000000000000", | BIP-425 | 2 | +| | pool_address: 0x6228f64D5BA8376652Bfe7E36569D595347cF6Fb | fee: 0.5, a-factor: N/A | Style: mainnet, cap: 100.0% | "T(0xCdF7028ceAB81fA0C6971208e83fa7872994beE5)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x9da11ff60bfc5af527f58fd61679c3ac98d040d9000000000000000000000100 | bpt-stablebeets | 0x2e6Cd45581002C894Cac692DCE4a30632125EF99 | "USDC(0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85)", | "0x0000000000000000000000000000000000000000", | BIP-427 | 3 | +| | pool_address: 0x9Da11Ff60bfc5aF527f58fd61679c3AC98d040d9 | fee: 0.1, a-factor: 1000 | Style: L0 sidechain, cap: 100.0% | "USDC(0x7F5c764cBc14f9669B88837ca1490cCa17c31607)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDT(0x94b008aA00579c1307B0EF2c499aD98a8ce58e58)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "bpt-stablebeets(0x9Da11Ff60bfc5aF527f58fd61679c3AC98d040d9)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "DAI(0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7 | uniETH/wstETH/rETH | 0xe6281Fc01607366794597d7fA6b32931fF986969 | "uniETH/wstETH/rETH(0x70d5E3234F6329c1D5a26796dcf4e109d69A3488)", | "0x0000000000000000000000000000000000000000", | BIP-428 | 4 | +| | pool_address: 0x70d5E3234F6329c1D5a26796dcf4e109d69A3488 | fee: 0.04, a-factor: 50 | Style: mainnet, cap: 2.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)", | "0x1a8F81c256aee9C640e14bB0453ce247ea0DFE6F", | | | +| | | | | "uniETH(0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4)" | "0x2c3b8c5e98A6e89AAAF21Deebf5FF9d08c4A9FF7" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W37/2023-W37-combined-report.md b/BIPs/00batched/2023/2023-W37/2023-W37-combined-report.md new file mode 100644 index 000000000..bca4ca1f6 --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/2023-W37-combined-report.md @@ -0,0 +1,37 @@ +## Base +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/fd5c6c27-1d33-4c8a-858b-cab43c9a6d89) + +[Nonce 4 - More recent version](https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462) +``` ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=========================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb | BIP-430 | 0 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb | BIP-430 | 2 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +``` ++---------------+----------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+==========================================================================================================+=========+======================================================================================+==============+============+ +| setDelegation | 0xD87F44Df0159DC78029AB9CA7D7e57E7249F5ACD (20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy) | 0 | { | BIP-430 | N/A | +| | | | "delegation": [ | | | +| | | | "0xE42FFA682A26EF8F25891db4882932711D42e467 (20230525-l2-veboost-v2/VeBoostV2) " | | | +| | | | ] | | | +| | | | } | | | ++---------------+----------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` +## Arbitrum +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/72dc7b97-627d-4b4e-9ba5-7a3269f222f3) + +[Nonce 37](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) + + +``` ++------------+------------------------------------------------+------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0xf23d8342881edecced51ea694ac21c2b68440929 | 480000.0 (RAW: 480000000000000000000000) | BIP-429 | 0 | ++------------+------------------------------------------------+------------------------------------------------+------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W37/2023-W37-tg_template.txt b/BIPs/00batched/2023/2023-W37/2023-W37-tg_template.txt new file mode 100644 index 000000000..5585402ee --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/2023-W37-tg_template.txt @@ -0,0 +1,14 @@ +gm everyone. This weeks payloads. Replacement TX on base. Please double check and sign the far more recent Nonce 5. +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462 + +Please sign the newer Nonce #4 with 3 actions: +BIP-430: Enable Crosschain veBAL boost on Base + +————————————————————————————————————————————————————————————- +https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0 + +Please sign Nonce 37 +BIP-429: Restructure $ARB airdrop program + diff --git a/BIPs/00batched/2023/2023-W37/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W37/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..d407750b2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xf23d8342881edecced51ea694ac21c2b68440929", + "amount": "480000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-429.json", + "bip_number": "BIP-429" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W37/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2023/2023-W37/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..9e1cd8003 --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W37/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `79615e51d6896b8cedc275a0a24d91c623fccc65` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `arbitrum` +``` ++------------+------------------------------------------------+------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0xf23d8342881edecced51ea694ac21c2b68440929 | 480000.0 (RAW: 480000000000000000000000) | BIP-429 | 0 | ++------------+------------------------------------------------+------------------------------------------------+------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W37/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/00batched/2023/2023-W37/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..c079864f7 --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,98 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-430.json", + "bip_number": "BIP-430" + } + }, + { + "to": "0xD87F44Df0159DC78029AB9CA7D7e57E7249F5ACD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0xE42FFA682A26EF8F25891db4882932711D42e467" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-430.json", + "bip_number": "BIP-430" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W37/BIP-430.json", + "bip_number": "BIP-430" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W37/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/00batched/2023/2023-W37/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..ef9090c85 --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,28 @@ +File name: BIPs/00batched/2023-W37/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json +COMMIT: `79615e51d6896b8cedc275a0a24d91c623fccc65` +MERGED PAYLOAD: Chain:base (8453), Multisig: multisigs/dao (0xC40DCFB13651e64C8551007aa57F9260827B6462) +CHAIN(S): `base` +``` ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=========================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb | BIP-430 | 0 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb | BIP-430 | 2 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W37/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json +COMMIT: `79615e51d6896b8cedc275a0a24d91c623fccc65` +MERGED PAYLOAD: Chain:base (8453), Multisig: multisigs/dao (0xC40DCFB13651e64C8551007aa57F9260827B6462) +CHAIN(S): `8453` +``` ++---------------+----------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+==========================================================================================================+=========+======================================================================================+==============+============+ +| setDelegation | 0xD87F44Df0159DC78029AB9CA7D7e57E7249F5ACD (20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy) | 0 | { | BIP-430 | N/A | +| | | | "delegation": [ | | | +| | | | "0xE42FFA682A26EF8F25891db4882932711D42e467 (20230525-l2-veboost-v2/VeBoostV2) " | | | +| | | | ] | | | +| | | | } | | | ++---------------+----------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W37/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W37/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..6ad6ed8bd --- /dev/null +++ b/BIPs/00batched/2023/2023-W37/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Arbitrum": "[0x25DDcad849de576c2A6c124984cE59e62739156D]", + "Optimism": "[0x2e6Cd45581002C894Cac692DCE4a30632125EF99]" +} diff --git a/BIPs/00batched/2023/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..067ee78ba --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,358 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3f63974a377ba4713661ede455bceda6686a0395f8b8ed8701ad1f13bb926c4d", + "account": "0x0C8f71D19f87c0bD1b9baD2484EcC3388D5DbB98" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-438.json", + "bip_number": "BIP-438" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x54f43cdb53a74c7bd91359b21ad8cd82a6a41b6ff8718aea74f1d2b9292c6b41", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-438.json", + "bip_number": "BIP-438" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xFb3bD022D5DAcF95eE28a6B07825D4Ff9C5b3814", + "value": "3380000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-432.json", + "bip_number": "BIP-432" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5204000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-103-August.json", + "bip_number": "BIP-103" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "7631000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-431.json", + "bip_number": "BIP-431" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "40000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-436B.json", + "bip_number": "BIP-436" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-394-October.json", + "bip_number": "BIP-394" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-393-October.json", + "bip_number": "BIP-393" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "168770000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-433.json", + "bip_number": "BIP-433" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x166f54F44F271407f24AA1BE415a730035637325", + "amount": "31695000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-433.json", + "bip_number": "BIP-433" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "20000000000000000000", + "data": null, + "contractMethod": { + "inputs": [], + "name": "deposit", + "payable": true + }, + "contractInputsValues": null, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-433.json", + "bip_number": "BIP-433" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0x166f54F44F271407f24AA1BE415a730035637325", + "wad": "20000000000000000000" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-433.json", + "bip_number": "BIP-433" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..9e842269d --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,67 @@ +File name: BIPs/00batched/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `8cb4f80fc6d3d4299ae6d5858e4095d3797ef89f` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xFb3bD022D5DAcF95eE28a6B07825D4Ff9C5b3814 | 3380.0 (RAW: 3380000000) | BIP-432 | 2 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5204.0 (RAW: 5204000000) | BIP-103 | 3 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 7631.0 (RAW: 7631000000) | BIP-431 | 4 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 40000.0 (RAW: 40000000000000000000000) | BIP-436 | 5 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 6 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 7 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 168770.0 (RAW: 168770000000) | BIP-433 | 8 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 31695.0 (RAW: 31695000000000000000000) | BIP-433 | 9 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 20.0 (RAW: 20000000000000000000) | BIP-433 | 11 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `8cb4f80fc6d3d4299ae6d5858e4095d3797ef89f` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+=====================================================================+============================================+=================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | 20230915-stakeless-gauge-checkpointer-v2/StakelessGaugeCheckpointer | 0x0C8f71D19f87c0bD1b9baD2484EcC3388D5DbB98 | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/checkpoint() | 0x3f63974a377ba4713661ede455bceda6686a0395f8b8ed8701ad1f13bb926c4d | BIP-438 | 0 | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/checkpoint() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/checkpoint() | | | | +| | | | 20220325-gauge-controller/VotingEscrow/checkpoint() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/checkpoint() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/checkpoint() | | | | +| | | | 20220714-fee-distributor-v2/FeeDistributor/checkpoint() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/checkpoint() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/checkpoint() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/checkpoint() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/checkpoint() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/checkpoint() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/checkpoint() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/checkpoint() | | | | +| | | | 20220420-fee-distributor/FeeDistributor/checkpoint() | | | | +| | | | 20220325-gauge-controller/GaugeController/checkpoint() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/checkpoint() | | | | ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230915-stakeless-gauge-checkpointer-v2/StakelessGaugeCheckpointer/addGaugesWithVerifiedType(string,address[]) | 0x54f43cdb53a74c7bd91359b21ad8cd82a6a41b6ff8718aea74f1d2b9292c6b41 | BIP-438 | 1 | ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W38/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `8cb4f80fc6d3d4299ae6d5858e4095d3797ef89f` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++-----------+----------------------------------------------------------+----------------------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+======================+==========+==============+============+ +| deposit | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 20000000000000000000 | "N/A" | BIP-433 | N/A | ++-----------+----------------------------------------------------------+----------------------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..0757a0000 --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x67313e858fB87Cc4b30AD56b6B461D7450738950", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-436A.json", + "bip_number": "BIP-436" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x66E9A9d0a35C6a368A66A432AbD9dB4Fb248f212", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-436A.json", + "bip_number": "BIP-436" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-437.json", + "bip_number": "BIP-437" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W38/BIP-434.json", + "bip_number": "BIP-434" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..c54df42ac --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,23 @@ +File name: BIPs/00batched/2023-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `8cb4f80fc6d3d4299ae6d5858e4095d3797ef89f` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `base, mainnet, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x58f2110b61f97fd6b9200b038d92f17c722a5a3300000000000000000000004f | axlBAL/BAL | 0x67313e858fB87Cc4b30AD56b6B461D7450738950 | "axlBAL(0x11C1879227D463b60db18C17c20aE739aE8E961a)", | "0x0000000000000000000000000000000000000000", | BIP-436 | 0 | +| | pool_address: 0x58F2110B61F97fD6B9200b038d92f17c722A5A33 | fee: 0.05, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "BAL(0x4158734D47Fc9692176B5085E0F52ee0Da5d47F1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "axlBAL/BAL(0x58F2110B61F97fD6B9200b038d92f17c722A5A33)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x3f09c77b19ad8bb527355ec32d5ce98421fec2e30000000000000000000004b2 | axlBAL/BAL | 0x66E9A9d0a35C6a368A66A432AbD9dB4Fb248f212 | "BAL(0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8)", | "0x0000000000000000000000000000000000000000", | BIP-436 | 1 | +| | pool_address: 0x3f09C77B19AD8Bb527355ec32d5ce98421fec2E3 | fee: 0.05, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "axlBAL(0x11C1879227D463b60db18C17c20aE739aE8E961a)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "axlBAL/BAL(0x3f09C77B19AD8Bb527355ec32d5ce98421fec2E3)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | 0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98 | "R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)", | | BIP-437 | 2 | +| | pool_address: 0x52b69d6b3eB0BD6b2b4A48a316Dfb0e1460E67E4 | fee: 0.05, a-factor: N/A | Style: mainnet, cap: 100.0% | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)" | | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4 | 50wstETH/50-4Pool | 0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784 | "4POOL-BPT(0x423A1323c871aBC9d89EB06855bF5347048Fc4A5)", | "0x0000000000000000000000000000000000000000", | BIP-434 | 3 | +| | pool_address: 0xA1a8bf131571A2139FEB79401aA4A2E9482Df627 | fee: 0.02, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)" | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.csv b/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.csv new file mode 100644 index 000000000..30999ccbe --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.csv @@ -0,0 +1,30 @@ +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xc59a1a2ed72eb7b31b8eaedab1f6f8d8c8881365,3187.040443085624,0 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xd56e9f604ba364d5df09730afcf946845ace6683,2715.6251111507636,1 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x5c866c6ae5187130c234bc474a9fd55e3ea0ac5d,1744.2602517778532,2 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xe356e05c77c4df64ffd033432b969e229980f28b,1578,3 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x5a407865411253e5a991d3e49e8bc7a1fdbe82b0,1262.0811834996307,4 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xc407d9993b29f0ada4a98686f134c78567d0f562,1200,5 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xf7401728edd23290d8099ed73f155101dcf8cc0c,1121.482439738179,6 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xc4f91e9d571d1366551e01056a1c8a2b8b01f8ec,1012.5468620977971,7 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x1a7c7f0c3defe3818a0a8d90b41573546717f145,429.3758728800004,8 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5,147.90674567999957,9 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x1928c92c7b9d9a9699776f9fb57ad6c84b44be33,108.30214010150637,10 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x5614c860bfcb8d8ea59e14c8aee0b3f73511cd5b,96.39494281859493,11 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xe69e85b87e46ff35b32bd93aa5e9cf0a09b1c221,86.01015162000418,12 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xa24d30dd8cec57a8be66f7359c7cced581df29ed,71.99547022803651,13 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xff4f7b726ee86f810531d2842b3bdd8a512db594,67.9146687555237,14 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x83e92a956c551bec407d83e17f4317d9771466c3,66.15620791680004,15 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x82b417ba7daf38c496435e23e7714b5860c1c85f,64.244563572209881,16 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x53cfd45b8416322a72009bcf0f57f54d906d947b,60.07640838000006,17 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xbc0b4983f6375b25ae7d0f8f56d029cc24f78d05,40.24860554059,18 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x73e47e110dd251bd6449381724f2bb51c11b14bc,21.66710006634295,19 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x4624c8bde33545893bac01a999dda0f9296b3588,19.1848949784,20 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x3d631a345b1b45bf8a1456e43f91267304d5e048,15.997492709822254,21 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x5388a7f24e86c9c9d855a98c2f5a339afa6a3acc,12.279972513158436,22 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x892fac1beb41e5e4b44a21e2dbe238d92ff9564c,6.718158416421846,23 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x6d7ac63aaa7ba8925dcb3e44be6355261dcf688f,5.723600553180665,24 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xee49b4204275d1439d38af53ddaffa940b07f111,3.1500872461753895,25 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x40b1d8b0b7232eb3258a455445ecfb3813f13fb8,3.1199999999999997,26 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x125ad150043f25a8c0a09c8b82ac2a26eaac1400,1.868476885501508,27 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x75c9aa37a479d5edf521a505d9b366b442c80dac,1.7938496547794784,28 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xdf330ccb1d8fe97d176850bc127d0101cbe4e932,1.3950616614663156,29 \ No newline at end of file diff --git a/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.json b/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.json new file mode 100644 index 000000000..c0af3dc2c --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.json @@ -0,0 +1,764 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc59a1a2ed72eb7b31b8eaedab1f6f8d8c8881365", + "value": "3187040443" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xd56e9f604ba364d5df09730afcf946845ace6683", + "value": "2715625111" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5c866c6ae5187130c234bc474a9fd55e3ea0ac5d", + "value": "1744260251" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xe356e05c77c4df64ffd033432b969e229980f28b", + "value": "1578000000" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5a407865411253e5a991d3e49e8bc7a1fdbe82b0", + "value": "1262081183" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc407d9993b29f0ada4a98686f134c78567d0f562", + "value": "1200000000" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xf7401728edd23290d8099ed73f155101dcf8cc0c", + "value": "1121482439" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc4f91e9d571d1366551e01056a1c8a2b8b01f8ec", + "value": "1012546862" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1a7c7f0c3defe3818a0a8d90b41573546717f145", + "value": "429375872" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5", + "value": "147906745" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1928c92c7b9d9a9699776f9fb57ad6c84b44be33", + "value": "108302140" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5614c860bfcb8d8ea59e14c8aee0b3f73511cd5b", + "value": "96394942" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xe69e85b87e46ff35b32bd93aa5e9cf0a09b1c221", + "value": "86010151" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xa24d30dd8cec57a8be66f7359c7cced581df29ed", + "value": "71995470" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xff4f7b726ee86f810531d2842b3bdd8a512db594", + "value": "67914668" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x83e92a956c551bec407d83e17f4317d9771466c3", + "value": "66156207" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x82b417ba7daf38c496435e23e7714b5860c1c85f", + "value": "64244563" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x53cfd45b8416322a72009bcf0f57f54d906d947b", + "value": "60076408" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xbc0b4983f6375b25ae7d0f8f56d029cc24f78d05", + "value": "40248605" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x73e47e110dd251bd6449381724f2bb51c11b14bc", + "value": "21667100" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x4624c8bde33545893bac01a999dda0f9296b3588", + "value": "19184894" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3d631a345b1b45bf8a1456e43f91267304d5e048", + "value": "15997492" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5388a7f24e86c9c9d855a98c2f5a339afa6a3acc", + "value": "12279972" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x892fac1beb41e5e4b44a21e2dbe238d92ff9564c", + "value": "6718158" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x6d7ac63aaa7ba8925dcb3e44be6355261dcf688f", + "value": "5723600" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xee49b4204275d1439d38af53ddaffa940b07f111", + "value": "3150087" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x40b1d8b0b7232eb3258a455445ecfb3813f13fb8", + "value": "3119999" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x125ad150043f25a8c0a09c8b82ac2a26eaac1400", + "value": "1868476" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x75c9aa37a479d5edf521a505d9b366b442c80dac", + "value": "1793849" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xdf330ccb1d8fe97d176850bc127d0101cbe4e932", + "value": "1395061" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.report.txt b/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.report.txt new file mode 100644 index 000000000..7bca1c321 --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/BIP-431-airdrop.report.txt @@ -0,0 +1,68 @@ +File name: BIPs/00batched/2023-W38/BIP-431-airdrop.json +COMMIT: `b355f7de52c39cf2f37ae2a2821654fcf4c9ab79` +CHAIN(S): `arbitrum` +``` ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+===============================+=========+============+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xc59a1a2ed72Eb7B31b8eaEdAB1f6f8D8c8881365 | 3187.040443 (RAW: 3187040443) | BIP-431 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xd56e9F604ba364d5Df09730afcF946845ACe6683 | 2715.625111 (RAW: 2715625111) | BIP-431 | 1 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x5C866C6ae5187130C234BC474A9fd55e3ea0Ac5D | 1744.260251 (RAW: 1744260251) | BIP-431 | 2 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xE356E05c77c4Df64FFd033432b969E229980F28b | 1578.0 (RAW: 1578000000) | BIP-431 | 3 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x5a407865411253E5A991d3e49E8Bc7A1FdBE82B0 | 1262.081183 (RAW: 1262081183) | BIP-431 | 4 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xc407D9993b29F0aDA4a98686F134C78567D0F562 | 1200.0 (RAW: 1200000000) | BIP-431 | 5 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xF7401728edd23290d8099eD73f155101dCf8CC0C | 1121.482439 (RAW: 1121482439) | BIP-431 | 6 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xc4F91e9d571D1366551E01056a1C8a2B8b01F8Ec | 1012.546862 (RAW: 1012546862) | BIP-431 | 7 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x1a7c7F0C3deFe3818A0a8d90b41573546717f145 | 429.375872 (RAW: 429375872) | BIP-431 | 8 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x8484e288b7C2Edad1b5214ed9Df3BaE4af7dadf5 | 147.906745 (RAW: 147906745) | BIP-431 | 9 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x1928c92C7b9d9A9699776f9Fb57aD6C84b44bE33 | 108.30214 (RAW: 108302140) | BIP-431 | 10 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x5614c860bfcB8d8Ea59E14c8aeE0b3F73511Cd5B | 96.394942 (RAW: 96394942) | BIP-431 | 11 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xe69e85B87E46Ff35B32bD93aa5E9cf0a09B1c221 | 86.010151 (RAW: 86010151) | BIP-431 | 12 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xA24D30Dd8cEC57A8be66f7359c7CCed581Df29Ed | 71.99547 (RAW: 71995470) | BIP-431 | 13 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xFf4F7b726eE86f810531d2842B3BDd8A512dB594 | 67.914668 (RAW: 67914668) | BIP-431 | 14 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x83E92a956c551BEc407d83e17f4317d9771466c3 | 66.156207 (RAW: 66156207) | BIP-431 | 15 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x82b417bA7dAf38C496435E23e7714B5860C1C85F | 64.244563 (RAW: 64244563) | BIP-431 | 16 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x53Cfd45B8416322a72009BcF0F57f54d906D947b | 60.076408 (RAW: 60076408) | BIP-431 | 17 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xBC0b4983f6375b25ae7d0f8f56d029Cc24f78D05 | 40.248605 (RAW: 40248605) | BIP-431 | 18 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x73e47E110dD251bd6449381724F2BB51C11b14BC | 21.6671 (RAW: 21667100) | BIP-431 | 19 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x4624C8BDe33545893BaC01a999DDa0F9296B3588 | 19.184894 (RAW: 19184894) | BIP-431 | 20 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x3D631a345B1b45Bf8A1456e43F91267304d5E048 | 15.997492 (RAW: 15997492) | BIP-431 | 21 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x5388A7f24e86c9c9D855A98C2F5a339AFA6a3acc | 12.279972 (RAW: 12279972) | BIP-431 | 22 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x892faC1BeB41e5E4B44A21E2DbE238D92FF9564c | 6.718158 (RAW: 6718158) | BIP-431 | 23 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x6D7Ac63Aaa7bA8925dcB3E44BE6355261dCF688f | 5.7236 (RAW: 5723600) | BIP-431 | 24 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xEE49B4204275D1439d38aF53dDaFfA940b07F111 | 3.150087 (RAW: 3150087) | BIP-431 | 25 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x40b1d8B0B7232eb3258a455445ECfb3813f13fb8 | 3.119999 (RAW: 3119999) | BIP-431 | 26 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x125aD150043F25A8C0A09C8b82Ac2a26EaAC1400 | 1.868476 (RAW: 1868476) | BIP-431 | 27 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0x75c9aA37a479d5EdF521A505D9b366B442c80Dac | 1.793849 (RAW: 1793849) | BIP-431 | 28 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | N/A:0xdf330Ccb1d8fE97D176850BC127D0101cBe4e932 | 1.395061 (RAW: 1395061) | BIP-431 | 29 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W38/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W38/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..f4ef2b8b7 --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Base": "[0x67313e858fB87Cc4b30AD56b6B461D7450738950]", + "Arbitrum": "[0x66E9A9d0a35C6a368A66A432AbD9dB4Fb248f212, 0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784]" +} diff --git a/BIPs/00batched/2023/2023-W38/combined-report.md b/BIPs/00batched/2023/2023-W38/combined-report.md new file mode 100644 index 000000000..301855d17 --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/combined-report.md @@ -0,0 +1,60 @@ +## Mainnet + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/4ddec6d7-6bee-474b-8b97-f3dcb881b882) + +[Sign Nonce 222] (https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++-----------+----------------------------------------------------------+----------------------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+======================+==========+==============+============+ +| deposit | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 20000000000000000000 | "N/A" | BIP-433 | N/A | ++-----------+----------------------------------------------------------+----------------------+----------+--------------+------------+ +``` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xFb3bD022D5DAcF95eE28a6B07825D4Ff9C5b3814 | 3380.0 (RAW: 3380000000) | BIP-432 | 2 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5204.0 (RAW: 5204000000) | BIP-103 | 3 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 7631.0 (RAW: 7631000000) | BIP-431 | 4 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 40000.0 (RAW: 40000000000000000000000) | BIP-436 | 5 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 6 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 7 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 168770.0 (RAW: 168770000000) | BIP-433 | 8 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 31695.0 (RAW: 31695000000000000000000) | BIP-433 | 9 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 20.0 (RAW: 20000000000000000000) | BIP-433 | 11 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +``` ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+=====================================================================+============================================+=================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | 20230915-stakeless-gauge-checkpointer-v2/StakelessGaugeCheckpointer | 0x0C8f71D19f87c0bD1b9baD2484EcC3388D5DbB98 | 20220628-optimism-root-gauge-factory/OptimismRootGauge/checkpoint() | 0x3f63974a377ba4713661ede455bceda6686a0395f8b8ed8701ad1f13bb926c4d | BIP-438 | 0 | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/checkpoint() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/checkpoint() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/checkpoint() | | | | +| | | | 20220420-fee-distributor/FeeDistributor/checkpoint() | | | | +| | | | 20220714-fee-distributor-v2/FeeDistributor/checkpoint() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/checkpoint() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/checkpoint() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/checkpoint() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/checkpoint() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/checkpoint() | | | | +| | | | 20220325-gauge-controller/GaugeController/checkpoint() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/checkpoint() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/checkpoint() | | | | +| | | | 20220325-gauge-controller/VotingEscrow/checkpoint() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/checkpoint() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/checkpoint() | | | | ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230915-stakeless-gauge-checkpointer-v2/StakelessGaugeCheckpointer/addGaugesWithVerifiedType(string,address[]) | 0x54f43cdb53a74c7bd91359b21ad8cd82a6a41b6ff8718aea74f1d2b9292c6b41 | BIP-438 | 1 | ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W38/tg_template.txt b/BIPs/00batched/2023/2023-W38/tg_template.txt new file mode 100644 index 000000000..567e30660 --- /dev/null +++ b/BIPs/00batched/2023/2023-W38/tg_template.txt @@ -0,0 +1,20 @@ +gm everyone. This weeks payloads. Lots of transfers at end of quarter this week. The report (which I'll link this week) makes them easy to understand. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 222 +BIP-438: Enable Gauge Checkpointer V2 - https://snapshot.org/#/balancer.eth/proposal/0xcf201ad7a32dcd399654c476093f079554dae429a13063f50d839e5621cd2e6e +BIP-436: BAL for Axelar bridging - https://snapshot.org/#/balancer.eth/proposal/0x75a1b9bd1f6ddaddaf0f92d12293dc0607c9c43235a8914852d452da0a4f6db9 +BIP-433: Q4 Maxi Funding - https://snapshot.org/#/balancer.eth/proposal/0xbdd578a51415c10d7d9f0fd3c80758edfa4a56b6720247bc9f1d33ec2b8bc0c3 +BIP-431: Overnight Linear Pool incident refund - https://snapshot.org/#/balancer.eth/proposal/0xe9d33adfcb7f160233b8c4039bbeef330e469bca0be2419ab3f4abc4cacde588 - +BIP-432: Warden lost bribs from vuln defense refund - https://snapshot.org/#/balancer.eth/proposal/0x4ba6def8f4f7cf9c135ef02c9f0d007c61b09739f6988e13894dbb8d0f2ebdd2 +BIP-394: Beets Marketing - https://snapshot.org/#/balancer.eth/proposal/0x65f56258442e1a10a76014aa693ada4b15dc0731d4f0beb0dbc7bc24203f49a9 +BIP-393: Beets Engineering - Too old to laod +BIP-103: Karpatkey Monthly paymnet - Approved long ago + + +Also @fernando and other signers. The detailed BIP breakdown is quite time consuming to put together, we can automate eventually. I can keep doing it but is someone using it... You can pretty easily understand what is going on from the report and easily find BIPs you have questions about. Say something if it is important. + + + diff --git a/BIPs/00batched/2023/2023-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..035b95b98 --- /dev/null +++ b/BIPs/00batched/2023/2023-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "180211000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W39/BIP-352B.json", + "bip_number": "BIP-352" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xD14f076044414C255D2E82cceB1CB00fb1bBA64c", + "value": "117806250000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W39/BIP-443.json", + "bip_number": "BIP-443" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..62d188977 --- /dev/null +++ b/BIPs/00batched/2023/2023-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00batched/2023-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `394840427dee2bed7a68bcbc2d5f9c9c2dd82358` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------+-------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=================================================================+===============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation:0x3B8910F378034FD6E103Df958863e5c684072693 | 180211.0 (RAW: 180211000000) | BIP-352 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xD14f076044414C255D2E82cceB1CB00fb1bBA64c | 117806.25 (RAW: 117806250000) | BIP-443 | 1 | ++------------+-------------------------------------------------+-----------------------------------------------------------------+-------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..163ac1372 --- /dev/null +++ b/BIPs/00batched/2023/2023-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4A76a260cd496dd567a8165F55EB9c0838CCac3D", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W39/BIP-439.json", + "bip_number": "BIP-439" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8e486dBACb74C00dd31e489Da93d99bbeBE36cd5", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W39/BIP-440.json", + "bip_number": "BIP-440" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6A58e7C904eCF991A3183d28FC73bE90732B7a30", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W39/BIP-441.json", + "bip_number": "BIP-441" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..6a72ef4fc --- /dev/null +++ b/BIPs/00batched/2023/2023-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,21 @@ +File name: BIPs/00batched/2023-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `394840427dee2bed7a68bcbc2d5f9c9c2dd82358` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `mainnet, optimism` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xc05ab1b0ad472ce802e2c8db6f23e4a2865fdca6000000000000000000000103 | bpt-steamounrhyt | 0x4A76a260cd496dd567a8165F55EB9c0838CCac3D | "bpt-stablebeets(0x9Da11Ff60bfc5aF527f58fd61679c3AC98d040d9)", | "0x9Da11Ff60bfc5aF527f58fd61679c3AC98d040d9", | BIP-439 | 0 | +| | pool_address: 0xc05aB1B0aD472ce802E2c8db6f23e4a2865FdCa6 | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "DUSD(0xb396b31599333739A97951b74652c117BE86eE1D)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "bpt-steamounrhyt(0xc05aB1B0aD472ce802E2c8db6f23e4a2865FdCa6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x004700ba0a4f5f22e1e78a277fca55e36f47e09c000000000000000000000104 | bpt-ankrgalaharm | 0x8e486dBACb74C00dd31e489Da93d99bbeBE36cd5 | "bpt-ankrgalaharm(0x004700ba0a4f5f22e1E78a277fCA55e36F47E09C)", | "0x0000000000000000000000000000000000000000", | BIP-440 | 1 | +| | pool_address: 0x004700ba0a4f5f22e1E78a277fCA55e36F47E09C | fee: 0.2, a-factor: 100 | Style: L0 sidechain, cap: 100.0% | "rETH(0x9Bcef72be871e61ED4fBbc7630889beE758eb81D)", | "0x658843BB859B7b85cEAb5cF77167e3F0a78dFE7f", | | | +| | | | | "ankrETH(0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3)" | "0x97b323fc033323B66159402bcDb9D7B9DC604235" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5 | qETH/WETH | 0x6A58e7C904eCF991A3183d28FC73bE90732B7a30 | "qETH/WETH(0x40C806394d03d350420d13CD7d1DE1C806f34956)", | "0x0000000000000000000000000000000000000000", | BIP-441 | 2 | +| | pool_address: 0x40C806394d03d350420d13CD7d1DE1C806f34956 | fee: 0.04, a-factor: 100 | Style: mainnet, cap: 2.0% | "qETH(0x93ef1Ea305D11A9b2a3EbB9bB4FCc34695292E7d)", | "0xA6aeD7922366611953546014A3f9e93f058756a2", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W39/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W39/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..2ee74f3c2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W39/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Optimism": "[0x4A76a260cd496dd567a8165F55EB9c0838CCac3D, 0x8e486dBACb74C00dd31e489Da93d99bbeBE36cd5]" +} diff --git a/BIPs/00batched/2023/2023-W39/combined-report.md b/BIPs/00batched/2023/2023-W39/combined-report.md new file mode 100644 index 000000000..97cd1d521 --- /dev/null +++ b/BIPs/00batched/2023/2023-W39/combined-report.md @@ -0,0 +1,15 @@ +## Mainnet + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/4ddec6d7-6bee-474b-8b97-f3dcb881b882) + +[Sign Nonce 223] (https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------+-------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=================================================================+===============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation:0x3B8910F378034FD6E103Df958863e5c684072693 | 180211.0 (RAW: 180211000000) | BIP-352 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xD14f076044414C255D2E82cceB1CB00fb1bBA64c | 117806.25 (RAW: 117806250000) | BIP-443 | 1 | ++------------+-------------------------------------------------+-----------------------------------------------------------------+-------------------------------+---------+------------+ +``` \ No newline at end of file diff --git a/BIPs/00batched/2023/2023-W39/tg_template.txt b/BIPs/00batched/2023/2023-W39/tg_template.txt new file mode 100644 index 000000000..3b13cb27e --- /dev/null +++ b/BIPs/00batched/2023/2023-W39/tg_template.txt @@ -0,0 +1,12 @@ +gm everyone. Please sign below: +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 223 +BIP-443: Initial restituion for frontend exploit +BIP-352: Fund Three Rocks + + + + + diff --git a/BIPs/00batched/2023/2023-W40/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json b/BIPs/00batched/2023/2023-W40/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json new file mode 100644 index 000000000..18ef49a19 --- /dev/null +++ b/BIPs/00batched/2023/2023-W40/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json @@ -0,0 +1,514 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 10, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 11, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x20BC832ca081b91433ff6c17f85701B6e92486c5", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 12, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xFe2e637202056d30016725477c5da089Ab0A043A", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 13, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 14, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x48e5413b73add2434e47504E2a22d14940dBFe78", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 15, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 16, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 17, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 18, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 19, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 20, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1", + "value": "0", + "meta": { + "tx_index": 21, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1d6681042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 22, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b119aa6257000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 23, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1e3afe0a3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0", + "meta": { + "tx_index": 24, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2", + "value": "0", + "meta": { + "tx_index": 25, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 26, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0", + "meta": { + "tx_index": 27, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 28, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0", + "meta": { + "tx_index": 29, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3", + "value": "0", + "meta": { + "tx_index": 30, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f2b9fdb80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0", + "meta": { + "tx_index": 31, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f3fef3a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0", + "meta": { + "tx_index": 32, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40", + "value": "0", + "meta": { + "tx_index": 33, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40b7034f7e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 34, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb", + "value": "0", + "meta": { + "tx_index": 35, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb3b4da69f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 36, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbef693bed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 37, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbeb0dff660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 38, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8", + "value": "0", + "meta": { + "tx_index": 39, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8d0e30db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0", + "meta": { + "tx_index": 40, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", + "value": "0", + "meta": { + "tx_index": 41, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc639342966c68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0", + "meta": { + "tx_index": 42, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c", + "value": "0", + "meta": { + "tx_index": 43, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c55362f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0", + "meta": { + "tx_index": 44, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1ca824ae8b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0", + "meta": { + "tx_index": 45, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b", + "value": "0", + "meta": { + "tx_index": 46, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0", + "meta": { + "tx_index": 47, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020bc832ca081b91433ff6c17f85701b6e92486c50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "value": "0", + "meta": { + "tx_index": 48, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc63930000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe840000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "value": "0", + "meta": { + "tx_index": 49, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-442-permission-preset2.json", + "bip_number": "BIP-442" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W40/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt b/BIPs/00batched/2023/2023-W40/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt new file mode 100644 index 000000000..577fc19ad --- /dev/null +++ b/BIPs/00batched/2023/2023-W40/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W40/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json +COMMIT: `61003c47b84ce51494617c9900c2666f44a9eba4` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/karpatkey (0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) +CHAIN(S): `1` +``` ++-----------+--------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==============================================================================================================================================+==============+============+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+--------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..fae315a87 --- /dev/null +++ b/BIPs/00batched/2023/2023-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0a2738a1EeADA91DA6D5375a2E6f620c85C287f3", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-446.json", + "bip_number": "BIP-446" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x99e2fAfD901645FB611F6D56476AF8Ad25263ea5", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W40/BIP-446.json", + "bip_number": "BIP-446" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..474ad928f --- /dev/null +++ b/BIPs/00batched/2023/2023-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/00batched/2023-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `61003c47b84ce51494617c9900c2666f44a9eba4` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `optimism, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x00b82bc5edea6e5e6c77635e31a1a25aad99f881000200000000000000000105 | 80OVN/20wUSD+ | 0x0a2738a1EeADA91DA6D5375a2E6f620c85C287f3 | "OVN(0x3b08fcd15280e7B5A6e404c4abb87F7C774D1B2e)", | "0x0000000000000000000000000000000000000000", | BIP-446 | 0 | +| | pool_address: 0x00b82bc5EdEa6E5E6c77635e31a1A25Aad99f881 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "wUSD+(0xA348700745D249c3b49D2c2AcAC9A5AE8155F826)" | "0xe561451322a5efC51E6f8ffa558C7482c892Bc1A" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x85ec6ae01624ae0d2a04d0ffaad3a25884c7d0f30002000000000000000004b6 | 80OVN/20wUSD+ | 0x99e2fAfD901645FB611F6D56476AF8Ad25263ea5 | "OVN(0xA3d1a8DEB97B111454B294E2324EfAD13a9d8396)", | "0x0000000000000000000000000000000000000000", | BIP-446 | 1 | +| | pool_address: 0x85Ec6ae01624aE0d2a04D0Ffaad3A25884C7d0f3 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "wUSD+(0xB86fb1047A955C0186c77ff6263819b37B32440D)" | "0x2bA447d4B823338435057571bF70907F8224BB47" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W40/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W40/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..f30dc2166 --- /dev/null +++ b/BIPs/00batched/2023/2023-W40/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Optimism": "[0x0a2738a1EeADA91DA6D5375a2E6f620c85C287f3]", + "Arbitrum": "[0x99e2fAfD901645FB611F6D56476AF8Ad25263ea5]" +} diff --git a/BIPs/00batched/2023/2023-W41/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json b/BIPs/00batched/2023/2023-W41/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json new file mode 100644 index 000000000..666c49f65 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json @@ -0,0 +1,62 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-452.json", + "bip_number": "BIP-452" + } + }, + { + "to": "0x4da27a545c0c5B758a6BA100e3a049001de870f5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-452.json", + "bip_number": "BIP-452" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W41/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt b/BIPs/00batched/2023/2023-W41/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt new file mode 100644 index 000000000..a4bb84bcc --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt @@ -0,0 +1,21 @@ +File name: BIPs/00batched/2023-W41/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/karpatkey (0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) +CHAIN(S): `1` +``` ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================+=========+=========================================================+==============+============+ +| delegate | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | { | BIP-452 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52 (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| delegate | 0x4da27a545c0c5B758a6BA100e3a049001de870f5 (tokens/stkAAVE) | 0 | { | BIP-452 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52 (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..505107aaf --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,146 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2", + "amount": "160000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-453.json", + "bip_number": "BIP-453" + } + }, + { + "to": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "asset", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "onBehalfOf", + "type": "address" + }, + { + "internalType": "uint16", + "name": "referralCode", + "type": "uint16" + } + ], + "name": "supply", + "payable": false + }, + "contractInputsValues": { + "asset": "0xba100000625a3754423978a60c9317c58a424e3D", + "amount": "160000000000000000000000", + "onBehalfOf": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "referralCode": "0" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-453.json", + "bip_number": "BIP-453" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "21000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-450.json", + "bip_number": "BIP-450" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "11570000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-450.json", + "bip_number": "BIP-450" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..5395e6c8e --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,38 @@ +File name: BIPs/00batched/2023-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 21000.0 (RAW: 21000000000) | BIP-450 | 2 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 11570.0 (RAW: 11570000000000000000000) | BIP-450 | 3 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=========================================================+=========+================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-453 | N/A | +| | | | "spender": [ | | | +| | | | "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2 (N/A) " | | | +| | | | ], | | | +| | | | "amount": "160000000000000000000000" | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| supply | 0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2 (Not Found) | 0 | { | BIP-453 | N/A | +| | | | "asset": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "amount": "160000000000000000000000", | | | +| | | | "onBehalfOf": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "referralCode": "0" | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..9685b3ba8 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2041F8a758A0266e1B9272fcd4B1F1c37b67d5da", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-447A.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x346F1D4F98F055bb0791465923E27a10F1082912", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-447A.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2617724db92a8dbD4ebA7E24615BA369133Ff684", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-447A.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA9659365461380e8A6B30a50d421C1f5FCD8A8bC", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-447A.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6A2C2d4502335638d2c2f40f0171253fb2c2db88", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-451.json", + "bip_number": "BIP-451" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..ef189ce04 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,30 @@ +File name: BIPs/00batched/2023-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `optimism, gnosis` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xbc2acf5e821c5c9f8667a36bb1131dad26ed64f9000200000000000000000063 | B-50sDAI-50wstETH | 0x2041F8a758A0266e1B9272fcd4B1F1c37b67d5da | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)", | "0x0000000000000000000000000000000000000000", | BIP-447 | 0 | +| | pool_address: 0xBc2acf5E821c5c9f8667A36bB1131dAd26Ed64F9 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xdd439304a77f54b1f7854751ac1169b279591ef7000000000000000000000064 | EURe/sDAI | 0x346F1D4F98F055bb0791465923E27a10F1082912 | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)", | "0x89C80A4540A00b5270347E02e2E144c71da2EceD", | BIP-447 | 1 | +| | pool_address: 0xDd439304A77f54B1F7854751Ac1169b279591Ef7 | fee: 0.05, a-factor: 50 | Style: L0 sidechain, cap: 100.0% | "EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)", | "0xE7511f6e5C593007eA8A7F52af4B066333765e03", | | | +| | | | | "EURe/sDAI(0xDd439304A77f54B1F7854751Ac1169b279591Ef7)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x06135a9ae830476d3a941bae9010b63732a055f4000000000000000000000065 | stEUR/EURe | 0x2617724db92a8dbD4ebA7E24615BA369133Ff684 | "stEUR(0x004626A008B1aCdC4c74ab51644093b155e59A23)", | "0xff315299C4d3FB984b67e31F028724b6a9aEb077", | BIP-447 | 2 | +| | pool_address: 0x06135A9Ae830476d3a941baE9010B63732a055F4 | fee: 0.05, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "stEUR/EURe(0x06135A9Ae830476d3a941baE9010B63732a055F4)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x7644fa5d0ea14fcf3e813fdf93ca9544f8567655000000000000000000000066 | sBAL3 | 0xA9659365461380e8A6B30a50d421C1f5FCD8A8bC | "USDT(0x4ECaBa5870353805a9F068101A40E0f32ed605C6)", | "0x0000000000000000000000000000000000000000", | BIP-447 | 3 | +| | pool_address: 0x7644fA5D0eA14FcF3E813Fdf93ca9544f8567655 | fee: 0.01, a-factor: 2000 | Style: L0 sidechain, cap: 100.0% | "sBAL3(0x7644fA5D0eA14FcF3E813Fdf93ca9544f8567655)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)", | "0x89C80A4540A00b5270347E02e2E144c71da2EceD", | | | +| | | | | "USDC(0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x5f8893506ddc4c271837187d14a9c87964a074dc000000000000000000000106 | bpt-ethtri | 0x6A2C2d4502335638d2c2f40f0171253fb2c2db88 | "wstETH(0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb)", | "0x9aa3cd420f830E049e2b223D0b07D8c809C94d15", | BIP-451 | 4 | +| | pool_address: 0x5F8893506Ddc4C271837187d14A9C87964a074Dc | fee: 0.1, a-factor: 2000 | Style: L0 sidechain, cap: 100.0% | "sfrxETH(0x484c2D6e3cDd945a8B2DF735e079178C1036578c)", | "0xf752dd899F87a91370C1C8ac1488Aef6be687505", | | | +| | | | | "bpt-ethtri(0x5F8893506Ddc4C271837187d14A9C87964a074Dc)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "rETH(0x9Bcef72be871e61ED4fBbc7630889beE758eb81D)" | "0x658843BB859B7b85cEAb5cF77167e3F0a78dFE7f" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W41/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2023/2023-W41/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..724a15bd2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,60 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-447C.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-447C.json", + "bip_number": "BIP-447" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W41/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00batched/2023/2023-W41/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..dff85419f --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,22 @@ +File name: BIPs/00batched/2023-W41/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/dao (0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +CHAIN(S): `gnosis` +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+==============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-447 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W41/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/dao (0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +CHAIN(S): `100` +``` ++--------------------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++====================+========================================================+=========+==========+==============+============+ +| enableRecoveryMode | 0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753 (Not Found) | 0 | "N/A" | BIP-447 | N/A | ++--------------------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W41/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W41/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..1e58637d4 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "delegatee", + "type": "address", + "internalType": "address" + } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-448A.json", + "bip_number": "BIP-448" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W41/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2023/2023-W41/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..e387a54bd --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/00batched/2023-W41/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `42161` +``` ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==================================================================+==============+============+ +| delegate | 0x912CE59144191C1204E64559FE8253a0e49E6548 (Not Found) | 0 | { | BIP-448 | N/A | +| | | | "delegatee": [ | | | +| | | | "0xc38c5f97B34E175FFd35407fc91a937300E33860 (multisigs/lm) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W41/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W41/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..f4552bdf6 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "delegatee", + "type": "address", + "internalType": "address" + } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-448B.json", + "bip_number": "BIP-448" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W41/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W41/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..28b67ecd5 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/00batched/2023-W41/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `42161` +``` ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==================================================================+==============+============+ +| delegate | 0x912CE59144191C1204E64559FE8253a0e49E6548 (Not Found) | 0 | { | BIP-448 | N/A | +| | | | "delegatee": [ | | | +| | | | "0xc38c5f97B34E175FFd35407fc91a937300E33860 (multisigs/lm) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W41/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W41/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..2a6567f7e --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,98 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-449.json", + "bip_number": "BIP-449" + } + }, + { + "to": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-449.json", + "bip_number": "BIP-449" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W41/BIP-449.json", + "bip_number": "BIP-449" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W41/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt b/BIPs/00batched/2023/2023-W41/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt new file mode 100644 index 000000000..a508d4c07 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt @@ -0,0 +1,28 @@ +File name: BIPs/00batched/2023-W41/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/dao (0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +CHAIN(S): `avalanche` +``` ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a | BIP-449 | 0 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a | BIP-449 | 2 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W41/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json +COMMIT: `3f8e91fd011b97a1fbb68f6830b275fb64cb3e96` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/dao (0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +CHAIN(S): `43114` +``` ++-----------------+--------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================================================================+=========+==================================================================================================================+==============+============+ +| addGaugeFactory | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-449 | N/A | +| | | | "factory": [ | | | +| | | | "0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory) " | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W41/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W41/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..d9dd05dc4 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Gnosis": "[0x2041F8a758A0266e1B9272fcd4B1F1c37b67d5da, 0x346F1D4F98F055bb0791465923E27a10F1082912, 0x2617724db92a8dbD4ebA7E24615BA369133Ff684, 0xA9659365461380e8A6B30a50d421C1f5FCD8A8bC]", + "Optimism": "[0x6A2C2d4502335638d2c2f40f0171253fb2c2db88]" +} diff --git a/BIPs/00batched/2023/2023-W41/combined-report.md b/BIPs/00batched/2023/2023-W41/combined-report.md new file mode 100644 index 000000000..0c411ecc2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/combined-report.md @@ -0,0 +1,115 @@ +## Managed Treasury (Karpatkey) + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/2c295cc4-3519-417d-b8e2-015e8032e8d3) + +[Sign Nonce 223](https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) + +``` ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================+=========+=========================================================+==============+============+ +| delegate | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | { | BIP-452 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52 (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| delegate | 0x4da27a545c0c5B758a6BA100e3a049001de870f5 (tokens/stkAAVE) | 0 | { | BIP-452 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52 (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/be57d91a-db97-4498-871e-c6bf6944c197) + +[Sign Nonce 224](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 21000.0 (RAW: 21000000000) | BIP-450 | 2 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 11570.0 (RAW: 11570000000000000000000) | BIP-450 | 3 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +``` ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=========================================================+=========+================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-453 | N/A | +| | | | "spender": [ | | | +| | | | "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2 (N/A) " | | | +| | | | ], | | | +| | | | "amount": "160000000000000000000000" | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| supply | 0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2 (Not Found) | 0 | { | BIP-453 | N/A | +| | | | "asset": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "amount": "160000000000000000000000", | | | +| | | | "onBehalfOf": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "referralCode": "0" | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +``` + +## Gnosis Chain +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/ca6ab936-5635-4c8f-9863-cb93a89abe2d) +[Sign Nonce 21](https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+==============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-447 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +``` ++--------------------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++====================+========================================================+=========+==========+==============+============+ +| enableRecoveryMode | 0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753 (Not Found) | 0 | "N/A" | BIP-447 | N/A | ++--------------------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` + +## Arbitrum +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/795e0bf4-d16a-498c-bf69-7dc600f2bf47) +[Sign Nonce 38](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) +``` ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==================================================================+==============+============+ +| delegate | 0x912CE59144191C1204E64559FE8253a0e49E6548 (Not Found) | 0 | { | BIP-448 | N/A | +| | | | "delegatee": [ | | | +| | | | "0xc38c5f97B34E175FFd35407fc91a937300E33860 (multisigs/lm) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +``` + +## Avax +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/b9d40311-9faa-4801-a2fd-24132bd93a40) +[Sign Nonce 14](https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +``` ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a | BIP-449 | 0 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a | BIP-449 | 2 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +``` ++-----------------+--------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================================================================+=========+==================================================================================================================+==============+============+ +| addGaugeFactory | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-449 | N/A | +| | | | "factory": [ | | | +| | | | "0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory) " | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W41/tg_template.txt b/BIPs/00batched/2023/2023-W41/tg_template.txt new file mode 100644 index 000000000..a7674b01f --- /dev/null +++ b/BIPs/00batched/2023/2023-W41/tg_template.txt @@ -0,0 +1,31 @@ +gm everyone. Hope you enjoyed the week off from signing last week as much as I did. Here's this weeks payloads. Please sign each listed nonce on all 5 safes: + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce xxx +BIP-450: Fund Grants SP +BIP-453: Add 160k BAL to AAVE +--------------- +https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 +Please sign Nonce xxx +BIP-452: Delegate Aave to Karpatkey +--------------- +https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 +Please sign Nonce XXX +BIP-457: Optimize Gnosischain pools +--------------- +https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0 +Please sign Nonce xxx +BIP-448: Delegate Arbitrum Governance to LM Multisig +--------------- +https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 +please sign nonce xxx +BIP-449: Add Child Chain Gauge Factory to Pseudominter + + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/3f8e91fd011b97a1fbb68f6830b275fb64cb3e96/BIPs/00batched/2023-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt + + + + diff --git a/BIPs/00batched/2023/2023-W42/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W42/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..60bc5e4d8 --- /dev/null +++ b/BIPs/00batched/2023/2023-W42/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,344 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-394-November.json", + "bip_number": "BIP-394" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1511e7Fe2e06BBc75Eb4CeeE7c7dC5f9af6bb781", + "value": "108102830000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-455.json", + "bip_number": "BIP-455" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xf1Ca67191b4b0FD07d8ab924E6244127E3bdeCC4", + "value": "2656700000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-455.json", + "bip_number": "BIP-455" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3056B7039deb4347CA9AB2aBD7b5785fcDCc0ebf", + "value": "488720000" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-455.json", + "bip_number": "BIP-455" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xa7A13659692239c143daE313a0116D5b5C18d26C", + "value": "10366580000" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-455.json", + "bip_number": "BIP-455" + } + }, + { + "to": "0xC0fde70A65C7569Fe919bE57492228DEE8cDb585", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint8", + "name": "curveType", + "type": "uint8" + }, + { + "internalType": "uint16", + "name": "durationWeeks", + "type": "uint16" + }, + { + "internalType": "uint64", + "name": "startDate", + "type": "uint64" + }, + { + "internalType": "uint128", + "name": "amount", + "type": "uint128" + }, + { + "internalType": "bytes32[]", + "name": "proof", + "type": "bytes32[]" + } + ], + "name": "redeem", + "payable": false + }, + "contractInputsValues": { + "curveType": "0", + "durationWeeks": "208", + "startDate": "1662026400", + "amount": "5226757080486618000000", + "proof": "[0xe2c51661a283840fecf3cfaa9cc95b93aaebdcfe4a4f62a0162fd599ec039453,0xdb9970a77a4e031a8056c33c905b9bd7cb88d43da148aa11db63c72e39976469,0xec12235a00ca0e9020112e2e069d3a29906a9f70a80fb3402c3d9719233a1f8f,0x6e26f3cc44d2d3f9050512b419d95ca882f3a489ee043f4560e0fc02dedc790c,0x9c395ce5b3be7aa8f055358115b2a7ff6d0069612287527b732ac6bffb78851c,0x2284e66fa8327e7868bdaf84774ed78fc93583b206998a8fc95e540c8f639199,0x0475d4f9203785ad8e1d3911cc91e6b1cf687afbe672385b608fd67128dfb687,0x541dc2b261cfe6550a9ef0a1c8fcf63fc70c21c4a69726d519e383b0387db00d,0x24d9026ea0277bf122c85ebbd729b24c3c9a1e38f141a468d4ca736c4ed82c76,0x062565790f6e2dc017dc549fdfadc0bf055a1eca6452ec59e636c08bbb8294b6,0x875e2435fb36357427d33ac691ca01f2556dc3ff1425a6e460a742b1d6b58a61,0x14e29bb1ad35d88d686bf44b9274aef151bc01fe317beaacfc8cb30800a48023,0xe2b06e3ef3c26a6f4f600b9dd10fb39ce0edf9b7a68a9cfc3c823a9d1c674f0b,0xcdcda7e7a0107576ab65577d5d9ae431cfeec31a94a3da554b3b45f8a8dc4542]" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-454.json", + "bip_number": "BIP-454" + } + }, + { + "to": "0xC0fde70A65C7569Fe919bE57492228DEE8cDb585", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "vestingId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "beneficiary", + "type": "address" + }, + { + "internalType": "uint128", + "name": "tokensToClaim", + "type": "uint128" + } + ], + "name": "claimVestedTokensViaModule", + "payable": false + }, + "contractInputsValues": { + "vestingId": "0x7737be5963938ff3a68c4b15e6e5fe2517f8fa2e7256959fcd85982885d1d673", + "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "tokensToClaim": "340282366920938463463374607431768211455" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-454.json", + "bip_number": "BIP-454" + } + }, + { + "to": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "vestingId", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "beneficiary", + "type": "address", + "internalType": "address" + }, + { + "name": "tokensToClaim", + "type": "uint128", + "internalType": "uint128" + } + ], + "name": "claimVestedTokensViaModule", + "payable": false + }, + "contractInputsValues": { + "vestingId": "0x0348741aae78ee3ae9ac34b37e8dbc68753367eea275850c4208e3a040a91bbe", + "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "tokensToClaim": "340282366920938463463374607431768211455" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-454.json", + "bip_number": "BIP-454" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5CA24e2A586834A7B96216D68b26A82405e3DC15", + "value": "15000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-456.json", + "bip_number": "BIP-456" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-393-November.json", + "bip_number": "BIP-393" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W42/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W42/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..d3ad3e878 --- /dev/null +++ b/BIPs/00batched/2023/2023-W42/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,52 @@ +File name: BIPs/00batched/2023-W42/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `6d244b24f478ac502fd2c5c2cd34af0e7cbaa564` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+========================================================================+===============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x1511e7Fe2e06BBc75Eb4CeeE7c7dC5f9af6bb781 | 108102.83 (RAW: 108102830000) | BIP-455 | 1 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xf1Ca67191b4b0FD07d8ab924E6244127E3bdeCC4 | 2656.7 (RAW: 2656700000) | BIP-455 | 2 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x3056B7039deb4347CA9AB2aBD7b5785fcDCc0ebf | 488.72 (RAW: 488720000) | BIP-455 | 3 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xa7A13659692239c143daE313a0116D5b5C18d26C | 10366.58 (RAW: 10366580000) | BIP-455 | 4 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/hypernative_payments:0x5CA24e2A586834A7B96216D68b26A82405e3DC15 | 15000.0 (RAW: 15000000000) | BIP-456 | 8 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 9 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W42/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `6d244b24f478ac502fd2c5c2cd34af0e7cbaa564` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++============================+========================================================+=========+==========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| redeem | 0xC0fde70A65C7569Fe919bE57492228DEE8cDb585 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "curveType": "0", | | | +| | | | "durationWeeks": "208", | | | +| | | | "startDate": "1662026400", | | | +| | | | "amount": "5226757080486618000000", | | | +| | | | "proof": "[0xe2c51661a283840fecf3cfaa9cc95b93aaebdcfe4a4f62a0162fd599ec039453,0xdb9970a77a4e031a8056c33c905b9bd7cb88d43da148aa11db63c72e39976469,0xec12235a00ca0e9020112e2e069d3a29906a9f70a80fb3402c3d9719233a1f8f,0x6e26f3cc44d2d3f9050512b419d95ca882f3a489ee043f4560e0fc02dedc790c,0x9c395ce5b3be7aa8f055358115b2a7ff6d0069612287527b732ac6bffb78851c,0x2284e66fa8327e7868bdaf84774ed78fc93583b206998a8fc95e540c8f639199,0x0475d4f9203785ad8e1d3911cc91e6b1cf687afbe672385b608fd67128dfb687,0x541dc2b261cfe6550a9ef0a1c8fcf63fc70c21c4a69726d519e383b0387db00d,0x24d9026ea0277bf122c85ebbd729b24c3c9a1e38f141a468d4ca736c4ed82c76,0x062565790f6e2dc017dc549fdfadc0bf055a1eca6452ec59e636c08bbb8294b6,0x875e2435fb36357427d33ac691ca01f2556dc3ff1425a6e460a742b1d6b58a61,0x14e29bb1ad35d88d686bf44b9274aef151bc01fe317beaacfc8cb30800a48023,0xe2b06e3ef3c26a6f4f600b9dd10fb39ce0edf9b7a68a9cfc3c823a9d1c674f0b,0xcdcda7e7a0107576ab65577d5d9ae431cfeec31a94a3da554b3b45f8a8dc4542]" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| claimVestedTokensViaModule | 0xC0fde70A65C7569Fe919bE57492228DEE8cDb585 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "vestingId": "0x7737be5963938ff3a68c4b15e6e5fe2517f8fa2e7256959fcd85982885d1d673", | | | +| | | | "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "tokensToClaim": "340282366920938463463374607431768211455" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| claimVestedTokensViaModule | 0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "vestingId": "0x0348741aae78ee3ae9ac34b37e8dbc68753367eea275850c4208e3a040a91bbe", | | | +| | | | "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "tokensToClaim": "340282366920938463463374607431768211455" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..bd15aa051 --- /dev/null +++ b/BIPs/00batched/2023/2023-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x86Cf58bD7A64f2304227d1a490660D2954dB4a91", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-458B.json", + "bip_number": "BIP-458" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA8d4b31225BD6FAF1363DB5A0AB6c016894985d1", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W42/BIP-458B.json", + "bip_number": "BIP-458" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..d649ea889 --- /dev/null +++ b/BIPs/00batched/2023/2023-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,18 @@ +File name: BIPs/00batched/2023-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `6d244b24f478ac502fd2c5c2cd34af0e7cbaa564` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x49b2de7d214070893c038299a57bac5acb8b8a340001000000000000000004be | GOLD-BAL-AURA-wstETH | 0x86Cf58bD7A64f2304227d1a490660D2954dB4a91 | "BAL(0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8)", | "0x0000000000000000000000000000000000000000", | BIP-458 | 0 | +| | pool_address: 0x49b2De7d214070893c038299a57BaC5ACb8B8A34 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "AURA(0x1509706a6c66CA549ff0cB464de88231DDBe213B)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "GOLD(0x8b5e4C9a188b1A187f2D1E80b1c2fB17fA2922e1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb0001000000000000000004bc | 50GOLD-25USDC-25WSTETH | 0xA8d4b31225BD6FAF1363DB5A0AB6c016894985d1 | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-458 | 1 | +| | pool_address: 0x2e8Ea681FD59c9dc5f32B29de31F782724EF4DcB | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 6.0% | "GOLD(0x8b5e4C9a188b1A187f2D1E80b1c2fB17fA2922e1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W42/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W42/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..cf7f43dcb --- /dev/null +++ b/BIPs/00batched/2023/2023-W42/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0x86Cf58bD7A64f2304227d1a490660D2954dB4a91, 0xA8d4b31225BD6FAF1363DB5A0AB6c016894985d1]" +} diff --git a/BIPs/00batched/2023/2023-W42/combined-report.md b/BIPs/00batched/2023/2023-W42/combined-report.md new file mode 100644 index 000000000..5a959eaa6 --- /dev/null +++ b/BIPs/00batched/2023/2023-W42/combined-report.md @@ -0,0 +1,50 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/5555ab41-3b84-4046-ba22-23293a81be7f) + +[Sign Nonce 225](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+========================================================================+===============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x1511e7Fe2e06BBc75Eb4CeeE7c7dC5f9af6bb781 | 108102.83 (RAW: 108102830000) | BIP-455 | 1 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xf1Ca67191b4b0FD07d8ab924E6244127E3bdeCC4 | 2656.7 (RAW: 2656700000) | BIP-455 | 2 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x3056B7039deb4347CA9AB2aBD7b5785fcDCc0ebf | 488.72 (RAW: 488720000) | BIP-455 | 3 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xa7A13659692239c143daE313a0116D5b5C18d26C | 10366.58 (RAW: 10366580000) | BIP-455 | 4 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/hypernative_payments:0x5CA24e2A586834A7B96216D68b26A82405e3DC15 | 15000.0 (RAW: 15000000000) | BIP-456 | 8 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 9 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+-------------------------------+---------+------------+ +``` +``` ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++============================+========================================================+=========+==========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| redeem | 0xC0fde70A65C7569Fe919bE57492228DEE8cDb585 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "curveType": "0", | | | +| | | | "durationWeeks": "208", | | | +| | | | "startDate": "1662026400", | | | +| | | | "amount": "5226757080486618000000", | | | +| | | | "proof": "[0xe2c51661a283840fecf3cfaa9cc95b93aaebdcfe4a4f62a0162fd599ec039453,0xdb9970a77a4e031a8056c33c905b9bd7cb88d43da148aa11db63c72e39976469,0xec12235a00ca0e9020112e2e069d3a29906a9f70a80fb3402c3d9719233a1f8f,0x6e26f3cc44d2d3f9050512b419d95ca882f3a489ee043f4560e0fc02dedc790c,0x9c395ce5b3be7aa8f055358115b2a7ff6d0069612287527b732ac6bffb78851c,0x2284e66fa8327e7868bdaf84774ed78fc93583b206998a8fc95e540c8f639199,0x0475d4f9203785ad8e1d3911cc91e6b1cf687afbe672385b608fd67128dfb687,0x541dc2b261cfe6550a9ef0a1c8fcf63fc70c21c4a69726d519e383b0387db00d,0x24d9026ea0277bf122c85ebbd729b24c3c9a1e38f141a468d4ca736c4ed82c76,0x062565790f6e2dc017dc549fdfadc0bf055a1eca6452ec59e636c08bbb8294b6,0x875e2435fb36357427d33ac691ca01f2556dc3ff1425a6e460a742b1d6b58a61,0x14e29bb1ad35d88d686bf44b9274aef151bc01fe317beaacfc8cb30800a48023,0xe2b06e3ef3c26a6f4f600b9dd10fb39ce0edf9b7a68a9cfc3c823a9d1c674f0b,0xcdcda7e7a0107576ab65577d5d9ae431cfeec31a94a3da554b3b45f8a8dc4542]" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| claimVestedTokensViaModule | 0xC0fde70A65C7569Fe919bE57492228DEE8cDb585 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "vestingId": "0x7737be5963938ff3a68c4b15e6e5fe2517f8fa2e7256959fcd85982885d1d673", | | | +| | | | "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "tokensToClaim": "340282366920938463463374607431768211455" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| claimVestedTokensViaModule | 0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "vestingId": "0x0348741aae78ee3ae9ac34b37e8dbc68753367eea275850c4208e3a040a91bbe", | | | +| | | | "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "tokensToClaim": "340282366920938463463374607431768211455" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W42/tg_template.txt b/BIPs/00batched/2023/2023-W42/tg_template.txt new file mode 100644 index 000000000..6aa239e15 --- /dev/null +++ b/BIPs/00batched/2023/2023-W42/tg_template.txt @@ -0,0 +1,15 @@ +gm everyone. This weeks payloads ready await siggys: + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce xxx +BIP-394: Fund Beethoven Marketing +BIP-455: Pay back DNS hack victims +BIP-456: Pay Hypernative for infosec Advisory + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W42/combined-report.md + + + + diff --git a/BIPs/00batched/2023/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..72ba9440b --- /dev/null +++ b/BIPs/00batched/2023/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,254 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5a6fb12d15021649dda459e8585812142Aa6b968", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-447B.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x399A750516c14C80480AED2Bb597092b9118Caa9", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-447B.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf0d3268d36Adf812Fa69756500D72A899D4c2420", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-447B.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-447B.json", + "bip_number": "BIP-447" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5032000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-103-September.json", + "bip_number": "BIP-103" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-458A.json", + "bip_number": "BIP-458" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000b1a2bc2ec50000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-458A.json", + "bip_number": "BIP-458" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-458A.json", + "bip_number": "BIP-458" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..1e1a72d21 --- /dev/null +++ b/BIPs/00batched/2023/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,75 @@ +File name: BIPs/00batched/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `22c46144ea0c4587b070fce4a956b16c2b128d14` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `gnosis` +``` ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==================+======+============================================+========+========+==============+=========+============+======================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x2086f52651837600180de173b09470f54ef7491000000000000000000000004f | staBAL3 | 1500 | 0x5a6fb12d15021649dda459e8585812142Aa6b968 | 0.005% | 100.0% | L0 sidechain | BIP-447 | 0 | ['staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'USDT(0x4ECaBa5870353805a9F068101A40E0f32ed605C6)', 'USDC(0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83)', 'WXDAI(0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x0c1b9ce6bf6c01f587c2ee98b0ef4b20c6648753000000000000000000000050 | EURe/staBAL3 | 20 | 0x399A750516c14C80480AED2Bb597092b9118Caa9 | 0.05% | 2.0% | L0 sidechain | BIP-447 | 1 | ['EURe/staBAL3(0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753)', 'staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xeb30c85cc528537f5350cf5684ce6a4538e13394000200000000000000000059 | B-50USD-50wstETH | N/A | 0xf0d3268d36Adf812Fa69756500D72A899D4c2420 | 0.3% | 100.0% | L0 sidechain | BIP-447 | 2 | ['staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x5c78d05b8ecf97507d1cf70646082c54faa4da95000000000000000000000030 | bb-agEUR-EURe | 100 | 0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff | 0.01% | 100.0% | L0 sidechain | BIP-447 | 3 | ['agEUR(0x4b1E2c2762667331Bc91648052F646d1b0d35984)', 'bb-agEUR-EURe(0x5C78d05b8ECF97507d1cf70646082c54FaA4dA95)', 'EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +File name: BIPs/00batched/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `22c46144ea0c4587b070fce4a956b16c2b128d14` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5032.0 (RAW: 5032000000) | BIP-103 | 4 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `22c46144ea0c4587b070fce4a956b16c2b128d14` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-458 | 5 | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-458 | 7 | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `22c46144ea0c4587b070fce4a956b16c2b128d14` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+========================================================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-458 | N/A | +| | | | "target": [ | | | +| | | | "0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c (N/A) " | | | +| | | | ], | | | +| | | | "data": "0x10d3eb0400000000000000000000000000000000000000000000000000b1a2bc2ec50000" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..69e02de76 --- /dev/null +++ b/BIPs/00batched/2023/2023-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4", + "gaugeType": "PolygonZkEvm" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-460.json", + "bip_number": "BIP-460" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-461.json", + "bip_number": "BIP-461" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF6A814eD60653Cb0e36DA247B01E6309318328d4", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-459.json", + "bip_number": "BIP-459" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2D02Bf5EA195dc09854E18E7d2857A16bF376963", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-463.json", + "bip_number": "BIP-463" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb145b0eF7Dfd7E02b181f4c9a880e8aeCED9bCf3", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W43/BIP-462.json", + "bip_number": "BIP-462" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..d3ac4278d --- /dev/null +++ b/BIPs/00batched/2023/2023-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,26 @@ +File name: BIPs/00batched/2023-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `22c46144ea0c4587b070fce4a956b16c2b128d14` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `polygon, base, mainnet, zkevm, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+==================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xb1557cfea06de5a1601a7f0ccf3b515ef431a50d000200000000000000000059 | ECLP-wETH-rETH | 0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4 | "WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)", | | BIP-460 | 0 | +| | pool_address: 0xb1557CFEA06De5a1601a7F0cCF3b515EF431A50d | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "rETH(0xb23C20EFcE6e24Acca0Cef9B7B7aA196b84EC942)" | | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x127ecc2318d002664cc4515c9f2b22b09b6aea85000200000000000000000602 | ECLP-swETH-wstETH | 0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | | BIP-461 | 1 | +| | pool_address: 0x127ECc2318d002664cc4515C9f2B22B09b6aea85 | fee: 0.02, a-factor: N/A | Style: mainnet, cap: 100.0% | "swETH(0xf951E335afb289353dc249e82926178EaC7DEd78)" | | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x7af62c1ebf97034b7542ccec13a2e79bbcf34380000000000000000000000c13 | tetuBAL-BALWETH | 0xF6A814eD60653Cb0e36DA247B01E6309318328d4 | "20WETH-80BAL(0x3d468AB2329F296e1b9d8476Bb54Dd77D8c2320f)", | "0x0000000000000000000000000000000000000000", | BIP-459 | 2 | +| | pool_address: 0x7aF62C1ebf97034B7542CcEC13a2e79BbcF34380 | fee: 0.3, a-factor: 20 | Style: L0 sidechain, cap: 15.0% | "tetuBAL-BALWETH(0x7aF62C1ebf97034B7542CcEC13a2e79BbcF34380)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "tetuBAL(0x7fC9E0Aa043787BFad28e29632AdA302C790Ce33)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x835772bab114563746da80806930a9e37aa853440002000000000000000004c0 | D2D-rETH | 0x2D02Bf5EA195dc09854E18E7d2857A16bF376963 | "D2D(0xDD4AB36f31891fF25A69121FCCC732d93eB976Dd)", | "0x0000000000000000000000000000000000000000", | BIP-463 | 3 | +| | pool_address: 0x835772Bab114563746da80806930A9E37aa85344 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x30722f57d56037caa2c38abd1f5e2955814875e9000000000000000000000087 | axlETH/ETH | 0xb145b0eF7Dfd7E02b181f4c9a880e8aeCED9bCf3 | "axlETH/ETH(0x30722f57D56037CAA2C38ABD1F5E2955814875e9)", | "0x0000000000000000000000000000000000000000", | BIP-462 | 4 | +| | pool_address: 0x30722f57D56037CAA2C38ABD1F5E2955814875e9 | fee: 0.01, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "axlETH(0xb829b68f57CC546dA7E5806A929e53bE32a4625D)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W43/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W43/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..42a969e7b --- /dev/null +++ b/BIPs/00batched/2023/2023-W43/checkpointer_gauges_by_chain.json @@ -0,0 +1,6 @@ +{ + "PolygonZkEvm": "[0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4]", + "Polygon": "[0xF6A814eD60653Cb0e36DA247B01E6309318328d4]", + "Arbitrum": "[0x2D02Bf5EA195dc09854E18E7d2857A16bF376963]", + "Base": "[0xb145b0eF7Dfd7E02b181f4c9a880e8aeCED9bCf3]" +} diff --git a/BIPs/00batched/2023/2023-W43/combined-report.md b/BIPs/00batched/2023/2023-W43/combined-report.md new file mode 100644 index 000000000..0bf806af4 --- /dev/null +++ b/BIPs/00batched/2023/2023-W43/combined-report.md @@ -0,0 +1,64 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/67d1be78-f4b3-4cec-9743-3ff0342e6d91) + +[Sign Nonce 225](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==================+======+============================================+========+========+==============+=========+============+======================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x2086f52651837600180de173b09470f54ef7491000000000000000000000004f | staBAL3 | 1500 | 0x5a6fb12d15021649dda459e8585812142Aa6b968 | 0.005% | 100.0% | L0 sidechain | BIP-447 | 0 | ['staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'USDT(0x4ECaBa5870353805a9F068101A40E0f32ed605C6)', 'USDC(0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83)', 'WXDAI(0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x0c1b9ce6bf6c01f587c2ee98b0ef4b20c6648753000000000000000000000050 | EURe/staBAL3 | 20 | 0x399A750516c14C80480AED2Bb597092b9118Caa9 | 0.05% | 2.0% | L0 sidechain | BIP-447 | 1 | ['EURe/staBAL3(0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753)', 'staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xeb30c85cc528537f5350cf5684ce6a4538e13394000200000000000000000059 | B-50USD-50wstETH | N/A | 0xf0d3268d36Adf812Fa69756500D72A899D4c2420 | 0.3% | 100.0% | L0 sidechain | BIP-447 | 2 | ['staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x5c78d05b8ecf97507d1cf70646082c54faa4da95000000000000000000000030 | bb-agEUR-EURe | 100 | 0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff | 0.01% | 100.0% | L0 sidechain | BIP-447 | 3 | ['agEUR(0x4b1E2c2762667331Bc91648052F646d1b0d35984)', 'bb-agEUR-EURe(0x5C78d05b8ECF97507d1cf70646082c54FaA4dA95)', 'EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5032.0 (RAW: 5032000000) | BIP-103 | 4 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-458 | 5 | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-458 | 7 | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+========================================================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-458 | N/A | +| | | | "target": [ | | | +| | | | "0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c (N/A) " | | | +| | | | ], | | | +| | | | "data": "0x10d3eb0400000000000000000000000000000000000000000000000000b1a2bc2ec50000" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W43/tg_template.txt b/BIPs/00batched/2023/2023-W43/tg_template.txt new file mode 100644 index 000000000..ebe4d0b0d --- /dev/null +++ b/BIPs/00batched/2023/2023-W43/tg_template.txt @@ -0,0 +1,15 @@ +gm everyone. This weeks payloads ready await siggys: + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 226 +BIP-447: Rework Gnosischain Gauges (kills) +BIP-103: Karpatkey Monthly Payment +BIP-458: GOLD Gauges on Arbitrum (lower cap on Base) + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W43/combined-report.md + + + + diff --git a/BIPs/00batched/2023/2023-W44/1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.json b/BIPs/00batched/2023/2023-W44/1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.json new file mode 100644 index 000000000..c6effe741 --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.json @@ -0,0 +1,624 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x0efccbb9e2c09ea29551879bd9da32362b32fc89", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 10, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 11, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 12, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 13, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 14, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f67022ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0", + "meta": { + "tx_index": 15, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1", + "value": "0", + "meta": { + "tx_index": 16, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1d6681042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 17, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b119aa6257000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 18, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1e3afe0a3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0", + "meta": { + "tx_index": 19, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "value": "0", + "meta": { + "tx_index": 20, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae95c19a95c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000008787fc2de4de95c53e5e3a4e5459247d9773ea52", + "value": "0", + "meta": { + "tx_index": 21, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2", + "value": "0", + "meta": { + "tx_index": 22, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 23, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0", + "meta": { + "tx_index": 24, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 25, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0", + "meta": { + "tx_index": 26, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3", + "value": "0", + "meta": { + "tx_index": 27, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f2b9fdb80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0", + "meta": { + "tx_index": 28, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f3fef3a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0", + "meta": { + "tx_index": 29, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40", + "value": "0", + "meta": { + "tx_index": 30, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40b7034f7e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 31, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb", + "value": "0", + "meta": { + "tx_index": 32, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb3b4da69f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 33, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbef693bed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 34, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbeb0dff660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 35, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8", + "value": "0", + "meta": { + "tx_index": 36, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8d0e30db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0", + "meta": { + "tx_index": 37, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", + "value": "0", + "meta": { + "tx_index": 38, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc639342966c68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0", + "meta": { + "tx_index": 39, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c", + "value": "0", + "meta": { + "tx_index": 40, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c55362f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0", + "meta": { + "tx_index": 41, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1ca824ae8b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0", + "meta": { + "tx_index": 42, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d", + "value": "0", + "meta": { + "tx_index": 43, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 44, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x9393377200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0", + "meta": { + "tx_index": 45, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x9393377200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0", + "meta": { + "tx_index": 46, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f67022", + "value": "0", + "meta": { + "tx_index": 47, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670223df02124000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0", + "meta": { + "tx_index": 48, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5", + "value": "0", + "meta": { + "tx_index": 49, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5955e18af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 50, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f55c19a95c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000008787fc2de4de95c53e5e3a4e5459247d9773ea52", + "value": "0", + "meta": { + "tx_index": 51, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0", + "meta": { + "tx_index": 52, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0", + "meta": { + "tx_index": 53, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020bc832ca081b91433ff6c17f85701b6e92486c50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0", + "meta": { + "tx_index": 54, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0", + "meta": { + "tx_index": 55, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8", + "value": "0", + "meta": { + "tx_index": 56, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000", + "value": "0", + "meta": { + "tx_index": 57, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020efaa1604e82e1b3af8430b90192c1b9e8197e37700020000000000000000002100000000000000000000000000000000000000000000000000000000000000200b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a000000000000000000000000000000000000000000000000000000000000002096646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019000000000000000000000000000000000000000000000000000000000000002032296969ef14eb0c6d29669c550d4a044913023000020000000000000000008000000000000000000000000000000000000000000000000000000000000000201e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112", + "value": "0", + "meta": { + "tx_index": 58, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", + "value": "0", + "meta": { + "tx_index": 59, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", + "value": "0", + "meta": { + "tx_index": 60, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-473-karpatkey.json", + "bip_number": "BIP-473" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W44/1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.report.txt b/BIPs/00batched/2023/2023-W44/1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.report.txt new file mode 100644 index 000000000..8fa2e0a00 --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.report.txt @@ -0,0 +1,131 @@ +File name: BIPs/00batched/2023-W44/1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.json +COMMIT: `f195a3bf65e0e3b5402fdb8b07d367dcdc9dbc6e` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/karpatkey (0x0efccbb9e2c09ea29551879bd9da32362b32fc89) +CHAIN(S): `1` +``` ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (Not Found) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f67022ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1d6681042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b119aa6257000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1e3afe0a3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae95c19a95c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000008787fc2de4de95c53e5e3a4e5459247d9773ea52" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f2b9fdb80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f3fef3a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40b7034f7e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb3b4da69f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbef693bed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbeb0dff660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8d0e30db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc639342966c68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c55362f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1ca824ae8b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x9393377200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x9393377200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f67022" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670223df02124000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5955e18af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f55c19a95c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000008787fc2de4de95c53e5e3a4e5459247d9773ea52" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020bc832ca081b91433ff6c17f85701b6e92486c50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020efaa1604e82e1b3af8430b90192c1b9e8197e37700020000000000000000002100000000000000000000000000000000000000000000000000000000000000200b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a000000000000000000000000000000000000000000000000000000000000002096646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019000000000000000000000000000000000000000000000000000000000000002032296969ef14eb0c6d29669c550d4a044913023000020000000000000000008000000000000000000000000000000000000000000000000000000000000000201e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..8a35892ff --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint16", + "name": "_version", + "type": "uint16" + }, + { + "internalType": "uint16", + "name": "_chainId", + "type": "uint16" + }, + { + "internalType": "uint256", + "name": "_configType", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_config", + "type": "bytes" + } + ], + "name": "setConfig", + "payable": false + }, + "contractInputsValues": { + "_version": "0", + "_chainId": "106", + "_configType": "4", + "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-471-Mainnet.json", + "bip_number": "BIP-471" + } + }, + { + "to": "0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "numShares", + "type": "uint256" + } + ], + "name": "initiateWithdraw", + "payable": false + }, + "contractInputsValues": { + "numShares": "200000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-464A.json", + "bip_number": "BIP-464" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..17b3fa33d --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,20 @@ +File name: BIPs/00batched/2023-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `f195a3bf65e0e3b5402fdb8b07d367dcdc9dbc6e` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+========================================================+=========+===================================================================================+==============+============+ +| setConfig | 0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3 (Not Found) | 0 | { | BIP-471 | N/A | +| | | | "_version": "0", | | | +| | | | "_chainId": "106", | | | +| | | | "_configType": "4", | | | +| | | | "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" | | | +| | | | } | | | ++------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| initiateWithdraw | 0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe (Not Found) | 0 | { | BIP-464 | N/A | +| | | | "numShares": "200000000000000000000000" | | | +| | | | } | | | ++------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..b9452c876 --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,284 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x255912af1bA318527eDC69b4D56152d8c133288E", + "gaugeType": "PolygonZkEvm" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-465.json", + "bip_number": "BIP-465" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-467.json", + "bip_number": "BIP-467" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x156cC29C8dfA80821eD240C3cA4BA85103e10f2b", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-467.json", + "bip_number": "BIP-467" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x20D03f9D0304744891881e6ac1D45b996e7F39B5", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-469.json", + "bip_number": "BIP-469" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-470.json", + "bip_number": "BIP-470" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-472.json", + "bip_number": "BIP-472" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x70754AB20c63cc65Ea12206CF28342723d731aC6", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-466.json", + "bip_number": "BIP-466" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8E891A7b048A594592e9F0de70Dc223143B4F1E6", + "gaugeType": "EthereumSingleRecipientGauge" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-409.json", + "bip_number": "BIP-409" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3c8502E60eBD1e036E1d3906Fc34e9616218B6e5", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-468.json", + "bip_number": "BIP-468" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..99ad0fd4d --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,39 @@ +File name: BIPs/00batched/2023-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `f195a3bf65e0e3b5402fdb8b07d367dcdc9dbc6e` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `base, zkevm, mainnet, optimism` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+=================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x65da876a95cd5b6a5880710628c436409b1b29fa00000000000000000000005b | wstETH/ankrETH | 0x255912af1bA318527eDC69b4D56152d8c133288E | "ankrETH(0x12D8CE035c5DE3Ce39B1fDD4C1d5a745EAbA3b8C)", | "0xFC8d81A01deD207aD3DEB4FE91437CAe52deD0b5", | BIP-465 | 0 | +| | pool_address: 0x65dA876A95CD5b6A5880710628C436409B1B29fa | fee: 0.01, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5D8cfF95D7A57c0BF50B30b43c7CC0D52825D4a9)", | "0x00346D2Fd4B2Dc3468fA38B857409BC99f832ef8", | | | +| | | | | "wstETH/ankrETH (0x65dA876A95CD5b6A5880710628C436409B1B29fa)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x52e281318fed4efffb8e46c0847a8f9b71a461a8000200000000000000000018 | 50tBTC-50WETH | 0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb | "tBTC(0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b)", | "0x0000000000000000000000000000000000000000", | BIP-467 | 1 | +| | pool_address: 0x52e281318Fed4eFFfb8E46c0847a8f9B71a461A8 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "WETH(0x4200000000000000000000000000000000000006)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x036d68e4e0005da4ef1c9ebd53b948d2c083495e00020000000000000000001a | 50tBTC-50USD | 0x156cC29C8dfA80821eD240C3cA4BA85103e10f2b | "tBTC(0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b)", | "0x0000000000000000000000000000000000000000", | BIP-467 | 2 | +| | pool_address: 0x036d68e4e0005dA4eF1c9ebd53b948d2C083495e | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "USDbC(0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc1f46ce83439886f0ea9c21512b36e7e67239d2c000200000000000000000108 | bpt-roabee | 0x20D03f9D0304744891881e6ac1D45b996e7F39B5 | "rETH(0x9Bcef72be871e61ED4fBbc7630889beE758eb81D)", | "0x658843BB859B7b85cEAb5cF77167e3F0a78dFE7f", | BIP-469 | 3 | +| | pool_address: 0xc1F46ce83439886F0ea9c21512b36e7E67239d2C | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "BEETS(0xb4Bc46bc6cB217B59ea8F4530BaE26Bf69F677f0)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x02ca8086498552c071451724d3a34caa3922b65a000200000000000000000613 | 80ROOT-20WETH | 0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77 | "ROOT(0x8d2658E0F52dF7875A7b3e58FC12F82F5e34dd61)", | "0x0000000000000000000000000000000000000000", | BIP-470 | 4 | +| | pool_address: 0x02CA8086498552C071451724D3A34cAA3922b65a | fee: 2.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | RDNT-WETH | 0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216 | "RDNT(0x137dDB47Ee24EaA998a535Ab00378d6BFa84F893)", | "0x0000000000000000000000000000000000000000", | BIP-472 | 5 | +| | pool_address: 0xcF7b51ce5755513d4bE016b0e28D6EDEffa1d52a | fee: 0.5, a-factor: N/A | Style: mainnet, cap: 10.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611 | ECLP-mevETH-wETH | 0x70754AB20c63cc65Ea12206CF28342723d731aC6 | "mevETH(0x24Ae2dA0f361AA4BE46b48EB19C91e02c5e4f27E)", | | BIP-466 | 6 | +| | pool_address: 0xb3b675a9A3CB0DF8F66Caf08549371BfB76A9867 | fee: 0.02, a-factor: N/A | Style: mainnet, cap: 100.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x39eb558131e5ebeb9f76a6cbf6898f6e6dce5e4e0002000000000000000005c8 | QI BPT | 0x8E891A7b048A594592e9F0de70Dc223143B4F1E6 | "QI(0x559b7bfC48a5274754b08819F75C5F27aF53D53b)", | "0x0000000000000000000000000000000000000000", | BIP-409 | 7 | +| | pool_address: 0x39eB558131E5eBeb9f76a6cbf6898f6E6DCe5e4E | fee: 0.5, a-factor: N/A | Style: Single Recipient, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x01536b22ea06e4a315e3daaf05a12683ed4dc14c0000000000000000000005fc | e-cs-kp-usd | 0x3c8502E60eBD1e036E1d3906Fc34e9616218B6e5 | "e-cs-kp-usd(0x01536b22ea06e4A315E3DAAF05a12683Ed4dc14c)", | "0x0000000000000000000000000000000000000000", | BIP-468 | 8 | +| | pool_address: 0x01536b22ea06e4A315E3DAAF05a12683Ed4dc14c | fee: 0.05, a-factor: 200 | Style: mainnet, cap: 2.0% | "paUSD(0x571f54D23cDf2211C83E9A0CbD92AcA36c48Fa02)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wUSK(0xaF4ce7CD4F8891ecf1799878c3e9A35b8BE57E09)" | "0xd8689E8740C23d73136744817347fd6aC464E842" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W44/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W44/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..944087dbb --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,56 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint16", + "name": "_version", + "type": "uint16" + }, + { + "internalType": "uint16", + "name": "_chainId", + "type": "uint16" + }, + { + "internalType": "uint256", + "name": "_configType", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_config", + "type": "bytes" + } + ], + "name": "setConfig", + "payable": false + }, + "contractInputsValues": { + "_version": "0", + "_chainId": "101", + "_configType": "1", + "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W44/BIP-471-Avalanche.json", + "bip_number": "BIP-471" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W44/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt b/BIPs/00batched/2023/2023-W44/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt new file mode 100644 index 000000000..5cba67c32 --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/00batched/2023-W44/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json +COMMIT: `f195a3bf65e0e3b5402fdb8b07d367dcdc9dbc6e` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/dao (0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +CHAIN(S): `43114` +``` ++-----------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+===================================================================================+==============+============+ +| setConfig | 0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3 (Not Found) | 0 | { | BIP-471 | N/A | +| | | | "_version": "0", | | | +| | | | "_chainId": "101", | | | +| | | | "_configType": "1", | | | +| | | | "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W44/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W44/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..12ba11575 --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/checkpointer_gauges_by_chain.json @@ -0,0 +1,6 @@ +{ + "PolygonZkEvm": "[0x255912af1bA318527eDC69b4D56152d8c133288E]", + "Base": "[0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb, 0x156cC29C8dfA80821eD240C3cA4BA85103e10f2b]", + "Optimism": "[0x20D03f9D0304744891881e6ac1D45b996e7F39B5]", + "EthereumSingleRecipientGauge": "[0x8E891A7b048A594592e9F0de70Dc223143B4F1E6]" +} diff --git a/BIPs/00batched/2023/2023-W44/combined-report.md b/BIPs/00batched/2023/2023-W44/combined-report.md new file mode 100644 index 000000000..4e8c723dd --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/combined-report.md @@ -0,0 +1,48 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/6e990637-103e-4de6-9e09-64f21e227c3f) + +[Sign Nonce 227](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+========================================================+=========+===================================================================================+==============+============+ +| setConfig | 0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3 (Not Found) | 0 | { | BIP-471 | N/A | +| | | | "_version": "0", | | | +| | | | "_chainId": "106", | | | +| | | | "_configType": "4", | | | +| | | | "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" | | | +| | | | } | | | ++------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| initiateWithdraw | 0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe (Not Found) | 0 | { | BIP-464 | N/A | +| | | | "numShares": "200000000000000000000000" | | | +| | | | } | | | ++------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` + +## Mainnet Karpatkey Treasury +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/6b4911d7-1c80-4ac7-b154-fcfe5d492414) + +[Sign Nonce 47](https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) + +BIP-473 updates the permissions on the Karpatkey managed treasury safe. The provided payload is raw call data. The [report](1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.report.txt) renders little useful information. +A complete audit of the payload was completed as part of the governance process. The details be found [here](https://forum.balancer.fi/t/bip-473-permissions-preset-update-request-2-revised-version-of-bip-442/5281/3?u=tritium). + + +## Avax DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/c5511348-8b45-40dc-a667-1ab7a4ce03d0) + +[Sign Nonce 15](https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) + +``` ++-----------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+===================================================================================+==============+============+ +| setConfig | 0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3 (Not Found) | 0 | { | BIP-471 | N/A | +| | | | "_version": "0", | | | +| | | | "_chainId": "101", | | | +| | | | "_configType": "1", | | | +| | | | "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W44/tg_template.txt b/BIPs/00batched/2023/2023-W44/tg_template.txt new file mode 100644 index 000000000..da2b4f063 --- /dev/null +++ b/BIPs/00batched/2023/2023-W44/tg_template.txt @@ -0,0 +1,18 @@ +gm. A bit late this week as we needed a little more time to review the LayerZero payloads on mainnet and avax. It's rather important that we exec this week before 00:00 GMT on Thursday. Your prompt attention is requested. Please remember to sign the payloads on 2 safes this week. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 227 +BIP-471: Update Layer Zero config for Avalanche +BIP-464: Initial withdraw of BAL from Ribbon Finance + + +https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 +Please sign Nonce 15 +BIP-471: Update Layer Zero config for Avalanche + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W44/combined-report.md + +Note the report also has a load for the Karpatkey safe, but we will leave that until next week to facilitate a bit more review of the final, loaded payload. + diff --git a/BIPs/00batched/2023/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..a8a8d073f --- /dev/null +++ b/BIPs/00batched/2023/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,98 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W45/BIP-475.json", + "bip_number": "BIP-475" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "3337000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W45/BIP-103-October.json", + "bip_number": "BIP-103" + } + }, + { + "to": "0xFd72170339AC6d7bdda09D1eACA346B21a30D422", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bool", + "name": "_lock", + "type": "bool" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "_lock": "true" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W45/BIP-481.json", + "bip_number": "BIP-481" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..8080c6896 --- /dev/null +++ b/BIPs/00batched/2023/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,35 @@ +File name: BIPs/00batched/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `e7fe054043f93154c99ebe8713c0b910fc30a623` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+-------+---------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+===============+=====+============================================+=======+=======+=========+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0x02ca8086498552c071451724d3a34caa3922b65a000200000000000000000613 | 80ROOT-20WETH | N/A | 0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77 | 2.0% | 2.0% | mainnet | BIP-475 | 0 | ['ROOT(0x8d2658E0F52dF7875A7b3e58FC12F82F5e34dd61)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+-------+---------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` +File name: BIPs/00batched/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `e7fe054043f93154c99ebe8713c0b910fc30a623` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 3337.0 (RAW: 3337000000) | BIP-103 | 1 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W45/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `e7fe054043f93154c99ebe8713c0b910fc30a623` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++-----------+--------------------------------------------------------+---------+-------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+===================+==============+============+ +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (Not Found) | 0 | { | BIP-481 | N/A | +| | | | "_lock": "true" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+-------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..50f11e21c --- /dev/null +++ b/BIPs/00batched/2023/2023-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W45/BIP-474.json", + "bip_number": "BIP-474" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W45/BIP-476.json", + "bip_number": "BIP-476" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x53Fa0546f307317dAA82371e94E8Dcd5CAd3345F", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W45/BIP-479.json", + "bip_number": "BIP-479" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC6C69b977329D93E34fDBD2c37Ab8e70b8decFCD", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W45/BIP-478.json", + "bip_number": "BIP-478" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x132296d1Dfd10bA55b565C4Cfe49D350617a2A2b", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W45/BIP-477.json", + "bip_number": "BIP-477" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..937e0669c --- /dev/null +++ b/BIPs/00batched/2023/2023-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,25 @@ +File name: BIPs/00batched/2023-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `e7fe054043f93154c99ebe8713c0b910fc30a623` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `optimism, mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===============================+============================================+==========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xc58150838855a5605c9030398c6d22afd5bb09ee00020000000000000000061b | LP-GBPT-USDC | 0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33 | "GBPT(0x86B4dBE5D203e634a12364C0e428fa242A3FbA98)", | | BIP-474 | 0 | +| | pool_address: 0xC58150838855a5605C9030398c6D22afd5Bb09EE | fee: Not Found, a-factor: N/A | Style: mainnet, cap: 2.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x35c5c8c7b77942f9d44b535fa590d8b503b2b00c00000000000000000000060d | DUSD/sDAI | 0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7 | "DUSD/sDAI(0x35c5C8C7B77942f9D44B535Fa590D8b503B2b00C)", | "0x0000000000000000000000000000000000000000", | BIP-476 | 1 | +| | pool_address: 0x35c5C8C7B77942f9D44B535Fa590D8b503B2b00C | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)", | "0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c", | | | +| | | | | "DUSD(0xa48F322F8b3edff967629Af79E027628b9Dd1298)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xf8c4cd95c7496cb7c8d97202cf7e5b8da2204c2b00020000000000000000039e | 80psdnOCEAN-20OCEAN | 0x53Fa0546f307317dAA82371e94E8Dcd5CAd3345F | "psdnOCEAN(0x51Fa2efd62ee56a493f24AE963eAce7D0051929E)", | | BIP-479 | 2 | +| | pool_address: 0xf8C4CD95c7496cB7c8d97202Cf7e5b8DA2204C2b | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 2.0% | "OCEAN(0x967da4048cD07aB37855c090aAF366e4ce1b9F48)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x58b645fa247b60f2cb896991fd8956146c9fcb4a00020000000000000000061d | 80mevETH/20FOLD | 0xC6C69b977329D93E34fDBD2c37Ab8e70b8decFCD | "mevETH(0x24Ae2dA0f361AA4BE46b48EB19C91e02c5e4f27E)", | "0xf518f2EbeA5df8Ca2B5E9C7996a2A25e8010014b", | BIP-478 | 3 | +| | pool_address: 0x58B645FA247B60f2cB896991Fd8956146c9FCB4A | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 100.0% | "FOLD(0xd084944d3c05CD115C09d072B9F44bA3E0E45921)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x0244b0025264dc5f5c113d472d579c9c994a59ce0002000000000000000000c9 | BPT-OPARA | 0x132296d1Dfd10bA55b565C4Cfe49D350617a2A2b | "OP(0x4200000000000000000000000000000000000042)", | "0x0000000000000000000000000000000000000000", | BIP-477 | 4 | +| | pool_address: 0x0244B0025264dC5f5c113d472D579C9c994A59CE | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "PSP(0xd3594E879B358F430E20F82bea61e83562d49D48)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W45/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W45/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..4c28b6ce4 --- /dev/null +++ b/BIPs/00batched/2023/2023-W45/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Optimism": "[0x132296d1Dfd10bA55b565C4Cfe49D350617a2A2b]" +} diff --git a/BIPs/00batched/2023/2023-W45/combined-report.md b/BIPs/00batched/2023/2023-W45/combined-report.md new file mode 100644 index 000000000..46960588d --- /dev/null +++ b/BIPs/00batched/2023/2023-W45/combined-report.md @@ -0,0 +1,31 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/a4b18891-939b-40dc-8b7c-fcfae720319a) + +[Sign Nonce 228](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+-------+---------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+===============+=====+============================================+=======+=======+=========+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0x02ca8086498552c071451724d3a34caa3922b65a000200000000000000000613 | 80ROOT-20WETH | N/A | 0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77 | 2.0% | 2.0% | mainnet | BIP-475 | 0 | ['ROOT(0x8d2658E0F52dF7875A7b3e58FC12F82F5e34dd61)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+-------+---------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` + +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 3337.0 (RAW: 3337000000) | BIP-103 | 1 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` + +``` ++-----------+--------------------------------------------------------+---------+-------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+===================+==============+============+ +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (Not Found) | 0 | { | BIP-481 | N/A | +| | | | "_lock": "true" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+-------------------+--------------+------------+ +``` + diff --git a/BIPs/00batched/2023/2023-W45/tg_template.txt b/BIPs/00batched/2023/2023-W45/tg_template.txt new file mode 100644 index 000000000..876a799d3 --- /dev/null +++ b/BIPs/00batched/2023/2023-W45/tg_template.txt @@ -0,0 +1,13 @@ +gm all. Trying to let Mimic do their full automation this week. Would be very helpful if we could exec in the next 24 hours this week on Mainnet, Avax and Base +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 228 +BIP-481: Claim and lock vested Aura +BIP-475: Kill ROOT/WETH gauge +BIP-103: Karpatkey October + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W44/combined-report.md + +Note the report also has a load for the Karpatkey safe, but we will leave that for another week to facilitate a bit more review of the final, loaded payload. + diff --git a/BIPs/00batched/2023/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..8009720e7 --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-488-mainnet.json", + "bip_number": "BIP-488" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc186fA914353c44b2E33eBE05f21846F1048bEda", + "amount": "40000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-487.json", + "bip_number": "BIP-487" + } + }, + { + "to": "0xc186fA914353c44b2E33eBE05f21846F1048bEda", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "l1Token", + "type": "address", + "internalType": "address" + }, + { + "name": "l1TokenAmount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "addLiquidity", + "payable": true + }, + "contractInputsValues": { + "l1Token": "0xba100000625a3754423978a60c9317c58a424e3D", + "l1TokenAmount": "40000000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-487.json", + "bip_number": "BIP-487" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6f3b31296fd2457eba6dca3bed65ec79e06c1295", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..6deed30d6 --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,49 @@ +File name: BIPs/00batched/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+========+=========+=========+============+===============================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9000000000000000000000555 | R-DAI-BLP | 490 | 0x6f3b31296fd2457eba6dca3bed65ec79e06c1295 | 10.0% | 100.0% | mainnet | BIP-485 | 3 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'R-DAI-BLP(0x20a61B948E33879ce7F23e535CC7BAA3BC66c5a9)', 'DAI(0x6B175474E89094C44Da98b954EedeAC495271d0F)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | N/A | 0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98 | 0.05% | 100.0% | mainnet | BIP-485 | 4 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x380aabe019ed2a9c2d632b51eddd30fd804d0fad000200000000000000000554 | 50R-50wstETH | N/A | 0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21 | 0.3% | 100.0% | mainnet | BIP-485 | 5 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +File name: BIPs/00batched/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+=========================================================+=========+================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-487 | N/A | +| | | | "spender": [ | | | +| | | | "0xc186fA914353c44b2E33eBE05f21846F1048bEda (N/A) " | | | +| | | | ], | | | +| | | | "amount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| addLiquidity | 0xc186fA914353c44b2E33eBE05f21846F1048bEda (Not Found) | 0 | { | BIP-487 | N/A | +| | | | "l1Token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "l1TokenAmount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W46/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W46/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..f3285bf95 --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2C3eF846FC3B5a4820b2D3462c9300E6d8845055", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-484.json", + "bip_number": "BIP-484" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCEB17D5C8ef8556ed0424A4bebC35a5d562d96E2", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-483.json", + "bip_number": "BIP-483" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa1dDe34d48868F9E0901592f2A97e20F76004059", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-482.json", + "bip_number": "BIP-482" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W46/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W46/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..5093ce40d --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,20 @@ +File name: BIPs/00batched/2023-W46/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `arbitrum, gnosis, base` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x990a0f03c3ee397cafda61cad277de18280751fd0002000000000000000000b6 | 50WETH-50TAG | 0x2C3eF846FC3B5a4820b2D3462c9300E6d8845055 | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-484 | 0 | +| | pool_address: 0x990A0f03C3Ee397cAfDa61caD277DE18280751FD | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "TAG(0x7905EA12CC81a215A5F1D0F46DF73a53E19E9264)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc9f00c3a713008ddf69b768d90d4978549bfdf9400000000000000000000006d | crvUSD/sDAI | 0xCEB17D5C8ef8556ed0424A4bebC35a5d562d96E2 | "crvUSD(0xaBEf652195F98A91E490f047A5006B71c85f058d)", | "0x0000000000000000000000000000000000000000", | BIP-483 | 1 | +| | pool_address: 0xc9F00C3a713008DDf69b768d90d4978549bFDF94 | fee: 0.02, a-factor: 500 | Style: L0 sidechain, cap: 2.0% | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)", | "0x89C80A4540A00b5270347E02e2E144c71da2EceD", | | | +| | | | | "crvUSD/sDAI(0xc9F00C3a713008DDf69b768d90d4978549bFDF94)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xd1882ca6a22f3df54cd675b300b815864de67b200001000000000000000004c9 | Savvy TriCrypto Pool | 0xa1dDe34d48868F9E0901592f2A97e20F76004059 | "svBTC(0xeEE18334c414A47FB886a7317E1885b2Bfb8c2A6)", | "0x0000000000000000000000000000000000000000", | BIP-482 | 2 | +| | pool_address: 0xd1882cA6A22f3Df54CD675b300B815864DE67B20 | fee: 0.05, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "svUSD(0xF202Ab403Cd7E90197ec0f010ee897E283037706)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "svETH(0xf7728582002ef82908c8242CF552E969BA863Ffa)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W46/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W46/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..441d164e9 --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-488-avax.json", + "bip_number": "BIP-488" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W46/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt b/BIPs/00batched/2023/2023-W46/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt new file mode 100644 index 000000000..c08863c1c --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W46/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/dao (0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +CHAIN(S): `avalanche` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W46/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/00batched/2023/2023-W46/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..f5d0b139a --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-488-base.json", + "bip_number": "BIP-488" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W46/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/00batched/2023/2023-W46/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..c0af0f4dd --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W46/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:base (8453), Multisig: multisigs/dao (0xC40DCFB13651e64C8551007aa57F9260827B6462) +CHAIN(S): `base` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W46/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W46/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..19ca693db --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/checkpointer_gauges_by_chain.json @@ -0,0 +1,5 @@ +{ + "Base": "[0x2C3eF846FC3B5a4820b2D3462c9300E6d8845055]", + "Gnosis": "[0xCEB17D5C8ef8556ed0424A4bebC35a5d562d96E2]", + "Arbitrum": "[0xa1dDe34d48868F9E0901592f2A97e20F76004059]" +} diff --git a/BIPs/00batched/2023/2023-W46/combined-report.md b/BIPs/00batched/2023/2023-W46/combined-report.md new file mode 100644 index 000000000..ec1418012 --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/combined-report.md @@ -0,0 +1,77 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/e5a43713-44ee-4349-abc2-2013ae434ff3) + +[Sign Nonce 229](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+========+=========+=========+============+===============================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9000000000000000000000555 | R-DAI-BLP | 490 | 0x6f3b31296fd2457eba6dca3bed65ec79e06c1295 | 10.0% | 100.0% | mainnet | BIP-485 | 3 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'R-DAI-BLP(0x20a61B948E33879ce7F23e535CC7BAA3BC66c5a9)', 'DAI(0x6B175474E89094C44Da98b954EedeAC495271d0F)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | N/A | 0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98 | 0.05% | 100.0% | mainnet | BIP-485 | 4 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x380aabe019ed2a9c2d632b51eddd30fd804d0fad000200000000000000000554 | 50R-50wstETH | N/A | 0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21 | 0.3% | 100.0% | mainnet | BIP-485 | 5 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +``` ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+=========================================================+=========+================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-487 | N/A | +| | | | "spender": [ | | | +| | | | "0xc186fA914353c44b2E33eBE05f21846F1048bEda (N/A) " | | | +| | | | ], | | | +| | | | "amount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| addLiquidity | 0xc186fA914353c44b2E33eBE05f21846F1048bEda (Not Found) | 0 | { | BIP-487 | N/A | +| | | | "l1Token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "l1TokenAmount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +``` + + +## Avax DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/d643eaf5-8f07-46dc-9230-7387e184709c) +[Sign Nonce 16](https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## Base DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/56f8e94c-97d6-44bc-921a-5292c4e7a821) +[Sign Nonce 5](https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## Mainnet Karpatkey Treasury +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/6b4911d7-1c80-4ac7-b154-fcfe5d492414) + +[Sign Nonce 47](https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) + +BIP-473 updates the permissions on the Karpatkey managed treasury safe. The provided payload is raw call data. The [report](../2023-W44/1-0x0efccbb9e2c09ea29551879bd9da32362b32fc89.report.txt) renders little useful information. +A complete audit of the payload was completed as part of the governance process. The details be found [here](https://forum.balancer.fi/t/bip-473-permissions-preset-update-request-2-revised-version-of-bip-442/5281/3?u=tritium). + +----------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W46/tg_template.txt b/BIPs/00batched/2023/2023-W46/tg_template.txt new file mode 100644 index 000000000..c8154167a --- /dev/null +++ b/BIPs/00batched/2023/2023-W46/tg_template.txt @@ -0,0 +1,13 @@ +gm. A bit late this week as we needed. Nothing urgent this week, but would be nice to get it done. +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 228 +BIP-481: Claim and lock vested Aura +BIP-475: Kill ROOT/WETH gauge +BIP-103: Karpatkey October + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W44/combined-report.md + +Note the report also has a load for the Karpatkey safe, but we will leave that for another week to facilitate a bit more review of the final, loaded payload. + diff --git a/BIPs/00batched/2023/2023-W47/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W47/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..9ee8e7b22 --- /dev/null +++ b/BIPs/00batched/2023/2023-W47/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-394-December.json", + "bip_number": "BIP-394" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe629c43bcad1029e12ed51432b9dd3432b656cc9", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-489.json", + "bip_number": "BIP-489" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-489.json", + "bip_number": "BIP-489" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x145011e0c04805e11bef23c1eed848faf49bb779", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-489.json", + "bip_number": "BIP-489" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x40b4c2e260f803f868053789bd4a6c7edd1cdc39", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-489.json", + "bip_number": "BIP-489" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-393-December.json", + "bip_number": "BIP-393" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W47/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W47/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..7e2507dee --- /dev/null +++ b/BIPs/00batched/2023/2023-W47/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,30 @@ +File name: BIPs/00batched/2023-W47/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `84017b20d143066ff64ede10dacea43cd7478853` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `avax, polygon, mainnet` +``` ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+==============+============================================+===============+========+==============+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0xad0e5e0778cac28f1ff459602b31351871b5754a0002000000000000000003ce | BPT | N/A | 0xe629c43bcad1029e12ed51432b9dd3432b656cc9 | Not Found% | 2.0% | mainnet | BIP-489 | 1 | ['USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)', 'EURS(0xdB25f211AB05b1c97D595516F45794528a807ad8)'] | ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xc58150838855a5605c9030398c6d22afd5bb09ee00020000000000000000061b | LP-GBPT-USDC | N/A | 0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33 | Not Found% | 2.0% | mainnet | BIP-489 | 2 | ['GBPT(0x86B4dBE5D203e634a12364C0e428fa242A3FbA98)', 'USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)'] | ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x726e324c29a1e49309672b244bdc4ff62a270407000200000000000000000702 | BPT | N/A | 0x145011e0c04805e11bef23c1eed848faf49bb779 | Not Found% | 2.0% | L0 sidechain | BIP-489 | 3 | ['USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)', 'XSGD(0xDC3326e71D45186F113a2F448984CA0e8D201995)'] | ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | AVAX_UNKNOWN | AVAX_UNKNOWN | AVAX_UNKNOWN | 0x40b4c2e260f803f868053789bd4a6c7edd1cdc39 | AVAX_UNKNOWN% | 100.0% | L0 sidechain | BIP-489 | 4 | [] | ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` +File name: BIPs/00batched/2023-W47/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `84017b20d143066ff64ede10dacea43cd7478853` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 5 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W47/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W47/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..c3b6f50c4 --- /dev/null +++ b/BIPs/00batched/2023/2023-W47/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5D7C0521DB5a6F37aD839d0eEfbaF8205389adD8", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-492.json", + "bip_number": "BIP-492" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-491.json", + "bip_number": "BIP-491" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf21Fa4Fb30cA6eAFDF567A02aAD92E49D6d0752D", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-491.json", + "bip_number": "BIP-491" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xfC7D964f1676831d8105506b1F0c3B3e2B55c467", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-491.json", + "bip_number": "BIP-491" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1c9E55ae29541F2D29cDf83a38F53e1143Db278E", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W47/BIP-490.json", + "bip_number": "BIP-490" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W47/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W47/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..8d1bdebcf --- /dev/null +++ b/BIPs/00batched/2023/2023-W47/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,25 @@ +File name: BIPs/00batched/2023-W47/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `84017b20d143066ff64ede10dacea43cd7478853` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xb9debddf1d894c79d2b2d09f819ff9b856fca55200000000000000000000062a | weETH-WETH-BPT | 0x5D7C0521DB5a6F37aD839d0eEfbaF8205389adD8 | "weETH-WETH-BPT(0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552)", | "0x0000000000000000000000000000000000000000", | BIP-492 | 0 | +| | pool_address: 0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552 | fee: 0.04, a-factor: 600 | Style: mainnet, cap: 100.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)" | "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | ECLP-GYD-sDAI | 0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)", | | BIP-491 | 1 | +| | pool_address: 0x1CCE5169bDe03f3d5aD0206f6BD057953539DAE6 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c | ECLP-GYD-USDC | 0xf21Fa4Fb30cA6eAFDF567A02aAD92E49D6d0752D | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | | BIP-491 | 2 | +| | pool_address: 0xC2AA60465BfFa1A88f5bA471a59cA0435c3ec5c1 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d | ECLP-GYD-USDT | 0xfC7D964f1676831d8105506b1F0c3B3e2B55c467 | "USDT(0xdAC17F958D2ee523a2206206994597C13D831ec7)", | | BIP-491 | 3 | +| | pool_address: 0xfbfaD5fa9E99081da6461F36f229B5cC88A64c63 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x7056c8dfa8182859ed0d4fb0ef0886fdf3d2edcf000200000000000000000623 | 80OETH/20WETH | 0x1c9E55ae29541F2D29cDf83a38F53e1143Db278E | "OETH(0x856c4Efb76C1D1AE02e20CEB03A2A6a08b0b8dC3)", | "0x0000000000000000000000000000000000000000", | BIP-490 | 4 | +| | pool_address: 0x7056C8DFa8182859eD0d4Fb0eF0886fdf3d2edCF | fee: 0.04, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W47/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00batched/2023/2023-W47/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..b5e327ea8 --- /dev/null +++ b/BIPs/00batched/2023/2023-W47/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,180 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "roles", + "type": "bytes32[]", + "internalType": "bytes32[]" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c,0x873caa0fd93d3c1661f94fc8bdbe1c379f7fcda27086da0c26ec1f38bead59c1,0x2175568c6322118c9ae102adda930e3aee7b000bdf4cd0f0a0ee991c8c039d7e]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-add-roles-zkevm.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0060ad8f81979d2e64cb0d53e650dee47343f112c476effa7f1617731de77913", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-add-roles-zkevm.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "roles", + "type": "bytes32[]", + "internalType": "bytes32[]" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbfd69d98e6966ce935b9eba83ae8f056ed06f6406b875e0cf728e3d9c2c39961,0x2cca85787a500e04397f218a9851b4521750e6dc26edfdb062bb37f2d79b8de7,0x5a443c2e20bbd9246c672bd23a142a1c540ad1190fd7e5148866e4356d60ab29]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-add-roles-zkevm.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-disable-old-factory.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-disable-old-factory.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-disable-old-factory.json", + "bip_number": "BIP-486" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W47/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt b/BIPs/00batched/2023/2023-W47/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt new file mode 100644 index 000000000..caaff2a77 --- /dev/null +++ b/BIPs/00batched/2023/2023-W47/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt @@ -0,0 +1,34 @@ +File name: BIPs/00batched/2023-W47/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json +COMMIT: `bc999b4f105fbdadb778b3ba0b9c453ed62ed562` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/dao (0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +CHAIN(S): `zkevm` +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | BIP-486 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/disableRecoveryMode() | 0x873caa0fd93d3c1661f94fc8bdbe1c379f7fcda27086da0c26ec1f38bead59c1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x2175568c6322118c9ae102adda930e3aee7b000bdf4cd0f0a0ee991c8c039d7e | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0x0060ad8f81979d2e64cb0d53e650dee47343f112c476effa7f1617731de77913 | BIP-486 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0xbfd69d98e6966ce935b9eba83ae8f056ed06f6406b875e0cf728e3d9c2c39961 | BIP-486 | 2 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x2cca85787a500e04397f218a9851b4521750e6dc26edfdb062bb37f2d79b8de7 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0x5a443c2e20bbd9246c672bd23a142a1c540ad1190fd7e5148866e4356d60ab29 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 5 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W47/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json +COMMIT: `bc999b4f105fbdadb778b3ba0b9c453ed62ed562` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/dao (0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +CHAIN(S): `1101` +``` ++-----------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==========+==============+============+ +| disable | 0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288 (Not Found) | 0 | "N/A" | BIP-486 | N/A | ++-----------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W47/combined-report.md b/BIPs/00batched/2023/2023-W47/combined-report.md new file mode 100644 index 000000000..aac547c27 --- /dev/null +++ b/BIPs/00batched/2023/2023-W47/combined-report.md @@ -0,0 +1,58 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/cc7e11c8-8e48-416c-ae47-e5f293ffdadd) + +[Sign Nonce 230](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+==============+============================================+===============+========+==============+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0xad0e5e0778cac28f1ff459602b31351871b5754a0002000000000000000003ce | BPT | N/A | 0xe629c43bcad1029e12ed51432b9dd3432b656cc9 | Not Found% | 2.0% | mainnet | BIP-489 | 1 | ['USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)', 'EURS(0xdB25f211AB05b1c97D595516F45794528a807ad8)'] | ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xc58150838855a5605c9030398c6d22afd5bb09ee00020000000000000000061b | LP-GBPT-USDC | N/A | 0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33 | Not Found% | 2.0% | mainnet | BIP-489 | 2 | ['GBPT(0x86B4dBE5D203e634a12364C0e428fa242A3FbA98)', 'USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)'] | ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x726e324c29a1e49309672b244bdc4ff62a270407000200000000000000000702 | BPT | N/A | 0x145011e0c04805e11bef23c1eed848faf49bb779 | Not Found% | 2.0% | L0 sidechain | BIP-489 | 3 | ['USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)', 'XSGD(0xDC3326e71D45186F113a2F448984CA0e8D201995)'] | ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | AVAX_UNKNOWN | AVAX_UNKNOWN | AVAX_UNKNOWN | 0x40b4c2e260f803f868053789bd4a6c7edd1cdc39 | AVAX_UNKNOWN% | 100.0% | L0 sidechain | BIP-489 | 4 | [] | ++--------------------------+--------------------------------------------------------------------+--------------+--------------+--------------------------------------------+---------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-394 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000.0 (RAW: 25000000000) | BIP-393 | 5 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` + +# zkEVM +No Tenderly +[Sign Nonce 10](https://app.safe.global/transactions/queue?safe=zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | BIP-486 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/disableRecoveryMode() | 0x873caa0fd93d3c1661f94fc8bdbe1c379f7fcda27086da0c26ec1f38bead59c1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x2175568c6322118c9ae102adda930e3aee7b000bdf4cd0f0a0ee991c8c039d7e | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0x0060ad8f81979d2e64cb0d53e650dee47343f112c476effa7f1617731de77913 | BIP-486 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0xbfd69d98e6966ce935b9eba83ae8f056ed06f6406b875e0cf728e3d9c2c39961 | BIP-486 | 2 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x2cca85787a500e04397f218a9851b4521750e6dc26edfdb062bb37f2d79b8de7 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0x5a443c2e20bbd9246c672bd23a142a1c540ad1190fd7e5148866e4356d60ab29 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 5 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +``` ++-----------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==========+==============+============+ +| disable | 0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288 (Not Found) | 0 | "N/A" | BIP-486 | N/A | ++-----------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W47/tg_template.txt b/BIPs/00batched/2023/2023-W47/tg_template.txt new file mode 100644 index 000000000..6402cd8fd --- /dev/null +++ b/BIPs/00batched/2023/2023-W47/tg_template.txt @@ -0,0 +1,16 @@ +gm. A bit late this week due to a snafu with avax changing scanners. Nothing urgent this week. +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 230 +BIP-489: Kill Xave Gauges +BIP-394 + 395: Pay Beets December + +https://app.safe.global/transactions/queue?safe=zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa +Please sign Nonce 10 +BIP-486: Update zkEVM Composible V5 perms (redeploy after hardfork) + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W47/combined-report.md + +In other news: +I'm headed on Holiday tomorrow until the 12th. So won't be around to pester. @mikeb can keep an eye on things and exec. There will also be no signing session next week baring an emergency, next load should be around the 14th of December. Then we will try to have only 1 more in 2023 and seek to move to a biweekly cadence with some occasionaly extraordinary runs in 2024. \ No newline at end of file diff --git a/BIPs/00batched/2023/2023-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..5b44cee25 --- /dev/null +++ b/BIPs/00batched/2023/2023-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,224 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W48/BIP-497.json", + "bip_number": "BIP-497" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4e15b9184553740f5C822bd3d6169029D302e63e", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W48/BIP-493.json", + "bip_number": "BIP-493" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x057e7b14DC461f071958e0BbF42b5597564D4e6C", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W48/BIP-494.json", + "bip_number": "BIP-494" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x008EB79DBE2Efcf8A9586F8F697464BE65D39eFf", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W48/BIP-499.json", + "bip_number": "BIP-499" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4a3d252d121c627F2450f06412Ca5c5A62e662f2", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W48/BIP-499.json", + "bip_number": "BIP-499" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2B7Bd050d7E0341fB49fF96f32eA59Bd8087d487", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W48/BIP-499.json", + "bip_number": "BIP-499" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc592c33e51A764B94DB0702D8BAf4035eD577aED", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W48/BIP-496.json", + "bip_number": "BIP-496" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..69eaab38b --- /dev/null +++ b/BIPs/00batched/2023/2023-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,32 @@ +File name: BIPs/00batched/2023-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `b5f9108507d1795b8ace425b5ced447b64c7b795` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `polygon, arbitrum, mainnet, optimism` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===============================+============================================+=================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | plsRDNT-Stable | 0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342 | "RDNT-WETH(0x32dF62dc3aEd2cD6224193052Ce665DC18165841)", | "0x0000000000000000000000000000000000000000", | BIP-497 | 0 | +| | pool_address: 0x451B0Afd69ACe11Ec0AC339033D54d2543b088a8 | fee: 0.3, a-factor: 1 | Style: L0 sidechain, cap: 2.0% | "plsRDNT-Stable(0x451B0Afd69ACe11Ec0AC339033D54d2543b088a8)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "plsRDNT(0x6dbF2155B0636cb3fD5359FCcEFB8a2c02B6cb51)" | "0x6dbF2155B0636cb3fD5359FCcEFB8a2c02B6cb51" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4 | 50ANKR/50ankrETH | 0x4e15b9184553740f5C822bd3d6169029D302e63e | "ANKR(0xAeAeeD23478c3a4b798e4ed40D8B7F41366Ae861)", | "0x0000000000000000000000000000000000000000", | BIP-493 | 1 | +| | pool_address: 0x9F8ed1Acfe0C863381b9081AFF2144fC867AA773 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "ankrETH(0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3)" | "0xFC8d81A01deD207aD3DEB4FE91437CAe52deD0b5" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x478980c67d53cd990f2b7bab311ddc9934324e7b00020000000000000000010c | bpt-allrdsfrx | 0x057e7b14DC461f071958e0BbF42b5597564D4e6C | "FRAX(0x2E3D870790dC77A83DD1d18184Acc7439A53f475)", | "0x0000000000000000000000000000000000000000", | BIP-494 | 2 | +| | pool_address: 0x478980c67d53Cd990F2B7bab311DDC9934324E7B | fee: 0.2, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sfrxETH(0x484c2D6e3cDd945a8B2DF735e079178C1036578c)" | "0xf752dd899F87a91370C1C8ac1488Aef6be687505" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x5f8b11995d7f95faa59ca6fd5ffa1c0dbbe0ec7b000200000000000000000630 | LP-EURS-USDC | 0x008EB79DBE2Efcf8A9586F8F697464BE65D39eFf | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | | BIP-499 | 3 | +| | pool_address: 0x5F8B11995D7F95faA59cA6fD5fFA1C0dbBe0EC7b | fee: Not Found, a-factor: N/A | Style: mainnet, cap: 2.0% | "EURS(0xdB25f211AB05b1c97D595516F45794528a807ad8)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x73f8e7a9a19e284a9ac85704af58454cfe75f059000200000000000000000631 | LP-GBPT-USDC | 0x4a3d252d121c627F2450f06412Ca5c5A62e662f2 | "GBPT(0x86B4dBE5D203e634a12364C0e428fa242A3FbA98)", | | BIP-499 | 4 | +| | pool_address: 0x73f8E7A9A19E284a9Ac85704Af58454cFe75f059 | fee: Not Found, a-factor: N/A | Style: mainnet, cap: 2.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xe6d8fcd23ed4e417d7e9d1195edf2ca634684e0e000200000000000000000caf | LP-XSGD-USDC | 0x2B7Bd050d7E0341fB49fF96f32eA59Bd8087d487 | "USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)", | | BIP-499 | 5 | +| | pool_address: 0xE6D8FcD23eD4e417d7e9D1195eDf2cA634684e0E | fee: Not Found, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "XSGD(0xDC3326e71D45186F113a2F448984CA0e8D201995)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xdacf5fa19b1f720111609043ac67a9818262850c000000000000000000000635 | osETH/wETH-BPT | 0xc592c33e51A764B94DB0702D8BAf4035eD577aED | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | BIP-496 | 6 | +| | pool_address: 0xDACf5Fa19b1f720111609043ac67A9818262850c | fee: 0.01, a-factor: 200 | Style: mainnet, cap: 10.0% | "osETH/wETH-BPT(0xDACf5Fa19b1f720111609043ac67A9818262850c)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "osETH(0xf1C9acDc66974dFB6dEcB12aA385b9cD01190E38)" | "0x8023518b2192FB5384DAdc596765B3dD1cdFe471" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W48/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W48/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..5fb686fbf --- /dev/null +++ b/BIPs/00batched/2023/2023-W48/checkpointer_gauges_by_chain.json @@ -0,0 +1,5 @@ +{ + "Arbitrum": "[0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342, 0x4e15b9184553740f5C822bd3d6169029D302e63e]", + "Optimism": "[0x057e7b14DC461f071958e0BbF42b5597564D4e6C]", + "Polygon": "[0x2B7Bd050d7E0341fB49fF96f32eA59Bd8087d487]" +} diff --git a/BIPs/00batched/2023/2023-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..52b93c4ef --- /dev/null +++ b/BIPs/00batched/2023/2023-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5b006e53df539773e109DBbf392dEfF6E87E2781", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W49/BIP-502A.json", + "bip_number": "BIP-502" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x85d6840EaB7473b60F10d1a3E2452243eb702C97", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W49/BIP-504.json", + "bip_number": "BIP-504" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5622821A3b993f062Ff691478Bbb7d551c167321", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W49/BIP-495.json", + "bip_number": "BIP-495" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc4a2d0F9fC0f5828DA05e8399B4f38a345447d63", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W49/BIP-503.json", + "bip_number": "BIP-503" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9902913ce5439d667774c8f9526064b2bc103b4a", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W49/BIP-501.json", + "bip_number": "BIP-501" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..8e447a9f6 --- /dev/null +++ b/BIPs/00batched/2023/2023-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,27 @@ +FILENAME: `BIPs/00batched/2023-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9f3d9fcfbcb0fb0dd3e6db7da03ad265eadeca1b` +CHAIN(S): `mainnet, optimism, arbitrum, polygon` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x9bfcd4189cf9062697746ce292350f42fdee457c0002000000000000000004d6 | 50DFX-50WETH | 0x5b006e53df539773e109DBbf392dEfF6E87E2781 | "DFX(0x27f485b62C4A7E635F561A87560Adf5090239E93)", | "0x0000000000000000000000000000000000000000", | BIP-502 | 0 | +| | pool_address: 0x9bFCD4189Cf9062697746CE292350f42fDEE457C | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x577a7f7ee659aa14dc16fd384b3f8078e23f1920000200000000000000000633 | BAL-20WETH-80VCX | 0x85d6840EaB7473b60F10d1a3E2452243eb702C97 | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | | BIP-504 | 1 | +| | pool_address: 0x577A7f7EE659Aa14Dc16FD384B3F8078E23F1920 | fee: 1.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "VCX(0xcE246eEa10988C495B4A90a905Ee9237a0f91543)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xa71021492a3966eec735ed1b505afa097c7cfe6f00000000000000000000010d | bpt-fraxethe | 0x5622821A3b993f062Ff691478Bbb7d551c167321 | "sfrxETH(0x484c2D6e3cDd945a8B2DF735e079178C1036578c)", | "0xf752dd899F87a91370C1C8ac1488Aef6be687505", | BIP-495 | 2 | +| | pool_address: 0xA71021492a3966EeC735Ed1B505aFa097c7cFe6f | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "frxETH(0x6806411765Af15Bddd26f8f544A34cC40cb9838B)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "bpt-fraxethe(0xA71021492a3966EeC735Ed1B505aFa097c7cFe6f)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x46356123e062f93d6b0d56f6ff6c3744e87c22d7000000000000000000000ca6 | p-cs-kp-eur | 0xc4a2d0F9fC0f5828DA05e8399B4f38a345447d63 | "wFRK(0x01d1a890D40d890d59795aFCce22F5AdbB511A3a)", | "0x76D8B79Fb9afD4dA89913458C90B6C09676628E2", | BIP-503 | 3 | +| | pool_address: 0x46356123e062F93D6b0D56F6Ff6C3744E87C22d7 | fee: 0.05, a-factor: 200 | Style: L0 sidechain, cap: 2.0% | "p-cs-kp-eur(0x46356123e062F93D6b0D56F6Ff6C3744E87C22d7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "PAR(0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xb204bf10bc3a5435017d3db247f56da601dfe08a0002000000000000000000fe | 20USDC-80THX | 0x9902913ce5439d667774c8f9526064b2bc103b4a | "USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)", | | BIP-501 | 4 | +| | pool_address: 0xb204BF10bc3a5435017D3db247f56dA601dFe08A | fee: 0.25, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "THX(0x2934b36ca9A4B31E633C5BE670C8C8b28b6aA015)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W49/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W49/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..41549c152 --- /dev/null +++ b/BIPs/00batched/2023/2023-W49/checkpointer_gauges_by_chain.json @@ -0,0 +1,5 @@ +{ + "Arbitrum": "[0x5b006e53df539773e109DBbf392dEfF6E87E2781]", + "Optimism": "[0x5622821A3b993f062Ff691478Bbb7d551c167321]", + "Polygon": "[0xc4a2d0F9fC0f5828DA05e8399B4f38a345447d63, 0x9902913ce5439d667774c8f9526064b2bc103b4a]" +} diff --git a/BIPs/00batched/2023/2023-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..fa70ceca0 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,152 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "setRewardForwarding", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-508.json", + "bip_number": "BIP-508" + } + }, + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "newDelegatee", + "type": "address", + "internalType": "address" + } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "newDelegatee": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-508.json", + "bip_number": "BIP-508" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd5799f5a62cdbcebada0c4ff21f7a0d82cfc1ad293c79f597c27bd1c03ad100b", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-500.json", + "bip_number": "BIP-500" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6a625c2e350a93dad2713c2fa449ec9304288897f8b7ad89c21417b9020eb99e", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-500.json", + "bip_number": "BIP-500" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-509/2023-11-21_mainnet.json", + "bip_number": "BIP-509" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..b1bdfacab --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,41 @@ +FILENAME: `BIPs/00batched/2023-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `mainnet` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGaugeFactory/setArbitrumFees(uint64,uint64,uint64) | 0xd5799f5a62cdbcebada0c4ff21f7a0d82cfc1ad293c79f597c27bd1c03ad100b | BIP-500 | 2 | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220823-optimism-root-gauge-factory-v2/OptimismRootGaugeFactory/setOptimismGasLimit(uint32) | 0x6a625c2e350a93dad2713c2fa449ec9304288897f8b7ad89c21417b9020eb99e | BIP-500 | 3 | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 4 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2023-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `mainnet` +``` ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=====================+=======================================================================+=========+========================================================================================+==============+============+ +| setRewardForwarding | 0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) | 0 | { | BIP-508 | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling) " | | | +| | | | ] | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| delegate | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-508 | N/A | +| | | | "newDelegatee": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling) " | | | +| | | | ] | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..b8a2cb99b --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC859BF9d7B8C557bBd229565124c2C09269F3aEF", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-507.json", + "bip_number": "BIP-507" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6be156504cda8ee38169be96bcf53aeab4377c1a", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-505.json", + "bip_number": "BIP-505" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9e5B7e6b61529571E98C8F16d07794eA99A7a930", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-505.json", + "bip_number": "BIP-505" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe9b5f4d892Df284a15Ec90A58bd4385E57964f18", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-504.json", + "bip_number": "BIP-504" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..14367fbd3 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/00batched/2023-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `mainnet, polygon` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | weETH/rETH | 0xC859BF9d7B8C557bBd229565124c2C09269F3aEF | "weETH/rETH(0x05ff47AFADa98a98982113758878F9A8B9FddA0a)", | "0x0000000000000000000000000000000000000000", | BIP-507 | 0 | +| | pool_address: 0x05ff47AFADa98a98982113758878F9A8B9FddA0a | fee: 0.04, a-factor: 600 | Style: mainnet, cap: 10.0% | "rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)", | "0x1a8F81c256aee9C640e14bB0453ce247ea0DFE6F", | | | +| | | | | "weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)" | "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xee3959fd00a0b996d801fc34b7ce566bd037f5f500020000000000000000063e | 80MIMO-20WETH | 0x6be156504cda8ee38169be96bcf53aeab4377c1a | "MIMO(0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc)", | "0x0000000000000000000000000000000000000000", | BIP-505 | 1 | +| | pool_address: 0xee3959FD00a0B996d801fc34B7CE566bD037f5f5 | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x3dbb91bdd5fc74c49146819ed58d7d204cf5a016000200000000000000000cfb | 20WETH-80MIMO | 0x9e5B7e6b61529571E98C8F16d07794eA99A7a930 | "WETH(0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619)", | "0x0000000000000000000000000000000000000000", | BIP-505 | 2 | +| | pool_address: 0x3dBb91BDd5fc74c49146819ed58d7D204cf5a016 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "MIMO(0xADAC33f543267c4D59a8c299cF804c303BC3e4aC)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc260f3c5a57caf193d1813d8fd0a02442073d6fa000100000000000000000d07 | 40DFX-20USDC-40TEL | 0xe9b5f4d892Df284a15Ec90A58bd4385E57964f18 | "DFX(0x27f485b62C4A7E635F561A87560Adf5090239E93)", | "0x0000000000000000000000000000000000000000", | BIP-504 | 3 | +| | pool_address: 0xc260F3c5A57Caf193d1813D8fd0A02442073D6fa | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "USDC(0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "TEL(0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/2023/2023-W50/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..08c67232f --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x015ACA20a1422F3c729086c17f15F10e0CfbC75A" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-509/2023-11-21_optimism.json", + "bip_number": "BIP-509" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt b/BIPs/00batched/2023/2023-W50/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt new file mode 100644 index 000000000..ede05af60 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00batched/2023-W50/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `optimism` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2023/2023-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..651e05d57 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-509/2023-11-21_gnosis.json", + "bip_number": "BIP-509" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00batched/2023/2023-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..c2da5771c --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00batched/2023-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `gnosis` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00batched/2023/2023-W50/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..7883b7677 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-509/2023-11-21_zkevm.json", + "bip_number": "BIP-509" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt b/BIPs/00batched/2023/2023-W50/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt new file mode 100644 index 000000000..0910eee69 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00batched/2023-W50/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `zkevm` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2023/2023-W50/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..f7942ae47 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-509/2023-11-21_polygon.json", + "bip_number": "BIP-509" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt b/BIPs/00batched/2023/2023-W50/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt new file mode 100644 index 000000000..6f05955d8 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00batched/2023-W50/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `polygon` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2023/2023-W50/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..8b353535d --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x9B892E515D2Ab8869F17488d64B3b918731cc70d" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-509/2023-11-21_arbitrum.json", + "bip_number": "BIP-509" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2023/2023-W50/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..7c0829403 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00batched/2023-W50/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `arbitrum` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2023/2023-W50/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..893a2bd5f --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-509/2023-11-21_avalanche.json", + "bip_number": "BIP-509" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt b/BIPs/00batched/2023/2023-W50/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt new file mode 100644 index 000000000..d3c4ec1e2 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00batched/2023-W50/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `avalanche` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/00batched/2023/2023-W50/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..cca771a29 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W50/BIP-509/2023-11-21_base.json", + "bip_number": "BIP-509" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W50/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/00batched/2023/2023-W50/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..14f1fe1fb --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00batched/2023-W50/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `294458c00590cff0a955675572e0b641b366ff72` +CHAIN(S): `base` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W50/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..3864f695d --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Polygon": "[0x9e5B7e6b61529571E98C8F16d07794eA99A7a930, 0xe9b5f4d892Df284a15Ec90A58bd4385E57964f18]" +} diff --git a/BIPs/00batched/2023/2023-W50/combined-report.md b/BIPs/00batched/2023/2023-W50/combined-report.md new file mode 100644 index 000000000..7037280d9 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/combined-report.md @@ -0,0 +1,157 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/18ec2bd4-0ddd-4843-85ea-c79ec25d4515) + +[Sign Nonce 231](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGaugeFactory/setArbitrumFees(uint64,uint64,uint64) | 0xd5799f5a62cdbcebada0c4ff21f7a0d82cfc1ad293c79f597c27bd1c03ad100b | BIP-500 | 2 | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220823-optimism-root-gauge-factory-v2/OptimismRootGaugeFactory/setOptimismGasLimit(uint32) | 0x6a625c2e350a93dad2713c2fa449ec9304288897f8b7ad89c21417b9020eb99e | BIP-500 | 3 | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 4 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +``` ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=====================+=======================================================================+=========+========================================================================================+==============+============+ +| setRewardForwarding | 0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) | 0 | { | BIP-508 | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling) " | | | +| | | | ] | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| delegate | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-508 | N/A | +| | | | "newDelegatee": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling) " | | | +| | | | ] | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +``` + +## Optisim DAO msig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/bbfbf987-7695-4d2a-9b82-a823cf1faf6b) + +[Sign Nonce 29](https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) + + +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Gnosis DAO msig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/58c800f5-a78d-4e26-921d-df926f15bc8d) + +[Sign Nonce 22](https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Polygon +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/d9e7b951-d26c-45f5-bc27-d6f12ebd95c6) + +[Sign Nonce 32](https://app.safe.global/transactions/history?safe=matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) + +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## zkEVM +No Tenderly + +[Sign Nonce 11](https://app.safe.global/transactions/queue?safe=zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Base +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/b987a186-b4cf-4cb9-999d-41d68b35cc0e) + +[Sign Nonce 6](https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462) +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## Arbitrum +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/779fdee6-4b17-4ce5-9760-f082371d07b4) + +[Sign Nonce 39](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Avalanche +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/f6a83032-19d6-4fd0-8626-74b2056720a6) + +[Sign Nonce 17](https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W50/tg_template.txt b/BIPs/00batched/2023/2023-W50/tg_template.txt new file mode 100644 index 000000000..6e2a03372 --- /dev/null +++ b/BIPs/00batched/2023/2023-W50/tg_template.txt @@ -0,0 +1,42 @@ +gm. Back in the game. Was able to detach for the first time in a long time which was nice. Here's the payloads from the last weeks. Have to roll out a permissions change on all chains so it's quite a lot. Would be nice if we could get mainnet done soon:tm: the rest are less of a rush, but please sometime this week. + + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 231 +BIP-509: Grant Roles for Batch Relayer 6 +BIP-508: Delegate vlAURA +BIP-500: Give Maxis ability to tune veBAL l2 bridging + +https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc +Please sign Nonce 29 +BIP-509: Grant Roles for Batch Relayer 6 + +https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 +Please Sign Nonce 22 +BIP-509: Grant Roles for Batch Relayer 6 + +https://app.safe.global/transactions/history?safe=matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 +Please sign Nonce 32 +BIP-509: Grant Roles for Batch Relayer 6 + +https://app.safe.global/transactions/queue?safe=zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa +Please Sign Nonce 11 +BIP-509: Grant Roles for Batch Relayer 6 + +https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462 +Please sign Nonce 6 +BIP-509: Grant Roles for Batch Relayer 6 + +https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0 +Please Sign Nonce 39 +BIP-509: Grant Roles for Batch Relayer 6 + +https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 +Please sign Nonce 17 + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W50/combined-report.md + +Also final reminder to let me know if you want to get paid your 500 $BAL for the last half year of multisig service and where. 2 of you have reached out so far with information, I'll assume anyone who does not, does not wish to be paid. + diff --git a/BIPs/00batched/2023/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2023/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..88fb36863 --- /dev/null +++ b/BIPs/00batched/2023/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,1002 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "7918000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-103-November.json", + "bip_number": "BIP-103" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "20000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-513.json", + "bip_number": "BIP-513" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "19950000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-513.json", + "bip_number": "BIP-513" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5f69b3800ff7fa1bcb74090e16bd4b42a710749e", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5d7c0521db5a6f37ad839d0eefbaf8205389add8", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe5f24cd43f77fadf4db33dab44eb25774159ac66", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2c3ef846fc3b5a4820b2d3462c9300e6d8845055", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc6c69b977329d93e34fdbd2c37ab8e70b8decfcd", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf6fa773b5e54f4bd20e09d806ab483d58dd55dcb", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x16289f675ca54312a8fcf99341e7439982888077", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x605ea53472a496c3d483869fe8f355c12e861e19", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x75cacebb5b4a73a530edcdfde7cffbfea44c026e", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xaf3c3dab54ca15068d09c67d128344916e177ca9", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcd8bb8cebc794842967849255c234e7b7619a518", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 10, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3f29e69955e5202759208dd0c5e0ba55ff934814", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 11, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x31f99c542cbe456fcbbe99d4bf849af4d7fb5405", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 12, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf0d887c1f5996c91402eb69ab525f028dd5d7578", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 13, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x0bfcf593c149ddbeedb190667d24d30d2e38af73", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 14, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5f2c3422a675860f0e019ddd78c6fa681be84bd4", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 15, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x81c452e84b103555c2dd2dec0bfabc0c4d6b3065", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 16, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xee707ae5500dd9072ac0dab1170dd16d9addd68f", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 17, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2dc55e84baf47296c2cf87b4ec3eb66fd7665611", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 18, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x35e5100c90c1d657942ec5ec4cbe38c53845245f", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 19, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-515.json", + "bip_number": "BIP-515" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "35300000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-517.json", + "bip_number": "BIP-517" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "wad": "500000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-517.json", + "bip_number": "BIP-517" + } + }, + { + "to": "0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "completeWithdraw", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-464B.json", + "bip_number": "BIP-464" + } + }, + { + "to": "0x8f4205e1604133d1875a3E771AE7e4F2b0865639", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "136955000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-516.json", + "bip_number": "BIP-516" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-519-1.json", + "bip_number": "BIP-519" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-518-1.json", + "bip_number": "BIP-518" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "108095000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-514.json", + "bip_number": "BIP-514" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x166f54F44F271407f24AA1BE415a730035637325", + "amount": "35718000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-514.json", + "bip_number": "BIP-514" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "20", + "data": null, + "contractMethod": { + "inputs": [], + "name": "deposit", + "payable": true + }, + "contractInputsValues": {}, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-514.json", + "bip_number": "BIP-514" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0x166f54F44F271407f24AA1BE415a730035637325", + "wad": "20000000000000000000" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-514.json", + "bip_number": "BIP-514" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8f7a0f9cf545db78bf5120d3dbea7de9c6220c10", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-502B.json", + "bip_number": "BIP-502" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2023/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..618a5a380 --- /dev/null +++ b/BIPs/00batched/2023/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,95 @@ +FILENAME: `BIPs/00batched/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `cfb17bcfe0d4ca6903ce79d28318ed9da3f77b52` +CHAIN(S): `base, polygon, mainnet, arbitrum, optimism` +``` ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+===========================+======+============================================+=======+========+====================+=========+============+=========================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x8c89fb53d4d83173dd65b7a94569558ce393460f000000000000000000000c26 | FRAX-USDC-BPT | 5000 | 0x5f69b3800ff7fa1bcb74090e16bd4b42a710749e | 0.04% | 100.0% | L0 sidechain | BIP-515 | 3 | ['USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)', 'FRAX(0x45c32fA6DF82ead1e2EF74d17b76547EDdFaFF89)', 'FRAX-USDC-BPT(0x8C89fb53d4D83173Dd65B7a94569558Ce393460F)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb9debddf1d894c79d2b2d09f819ff9b856fca55200000000000000000000062a | weETH-WETH-BPT | 600 | 0x5d7c0521db5a6f37ad839d0eefbaf8205389add8 | 0.04% | 100.0% | mainnet | BIP-515 | 4 | ['weETH-WETH-BPT(0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x8eb6c82c3081bbbd45dcac5afa631aac53478b7c000100000000000000000270 | 40WBTC-40DIGG-20graviAURA | N/A | 0xe5f24cd43f77fadf4db33dab44eb25774159ac66 | 1.0% | 2.0% | mainnet | BIP-515 | 5 | ['WBTC(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599)', 'DIGG(0x798D1bE841a82a273720CE31c822C61a67a601C3)', 'graviAURA(0xBA485b556399123261a5F9c95d413B4f93107407)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x990a0f03c3ee397cafda61cad277de18280751fd0002000000000000000000b6 | 50WETH-50TAG | N/A | 0x2c3ef846fc3b5a4820b2d3462c9300e6d8845055 | 1.0% | 2.0% | L0 sidechain | BIP-515 | 6 | ['WETH(0x4200000000000000000000000000000000000006)', 'TAG(0x7905EA12CC81a215A5F1D0F46DF73a53E19E9264)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x58b645fa247b60f2cb896991fd8956146c9fcb4a00020000000000000000061d | 80mevETH/20FOLD | N/A | 0xc6c69b977329d93e34fdbd2c37ab8e70b8decfcd | 0.3% | 100.0% | mainnet | BIP-515 | 7 | ['mevETH(0x24Ae2dA0f361AA4BE46b48EB19C91e02c5e4f27E)', 'FOLD(0xd084944d3c05CD115C09d072B9F44bA3E0E45921)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52e281318fed4efffb8e46c0847a8f9b71a461a8000200000000000000000018 | 50tBTC-50WETH | N/A | 0xf6fa773b5e54f4bd20e09d806ab483d58dd55dcb | 0.3% | 100.0% | L0 sidechain | BIP-515 | 8 | ['tBTC(0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b)', 'WETH(0x4200000000000000000000000000000000000006)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x513cdee00251f39de280d9e5f771a6eafebcc88e000000000000000000000a6b | 2eur (PAR) | 200 | 0x16289f675ca54312a8fcf99341e7439982888077 | 0.05% | 2.0% | L0 sidechain | BIP-515 | 9 | ['jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)', '2eur (PAR)(0x513CdEE00251F39DE280d9E5f771A6eaFebCc88E)', 'PAR(0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x072f14b85add63488ddad88f855fda4a99d6ac9b000200000000000000000027 | B-50SNX-50WETH | N/A | 0x605ea53472a496c3d483869fe8f355c12e861e19 | 1.0% | N/A | mainnet | BIP-515 | 10 | ['SNX(0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x48607651416a943bf5ac71c41be1420538e78f87000200000000000000000327 | 50Silo-50WETH | N/A | 0x75cacebb5b4a73a530edcdfde7cffbfea44c026e | 0.3% | 2.0% | mainnet | BIP-515 | 11 | ['Silo(0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x99a14324cfd525a34bbc93ac7e348929909d57fd00020000000000000000030e | 50WETH-50FOLD | N/A | 0xaf3c3dab54ca15068d09c67d128344916e177ca9 | 1.0% | N/A | mainnet | BIP-515 | 12 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'FOLD(0xd084944d3c05CD115C09d072B9F44bA3E0E45921)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd278166dabaf26707362f7cfdd204b277fd2a4600002000000000000000004f6 | 50USH-50WETH | N/A | 0xcd8bb8cebc794842967849255c234e7b7619a518 | 0.5% | 10.0% | mainnet | BIP-515 | 13 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'USH(0xE60779CC1b2c1d0580611c526a8DF0E3f870EC48)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb460daa847c45f1c4a41cb05bfb3b51c92e41b36000200000000000000000194 | 20WBTC-80BADGER | N/A | 0x3f29e69955e5202759208dd0c5e0ba55ff934814 | 0.3% | 2.0% | mainnet | BIP-515 | 14 | ['WBTC(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599)', 'BADGER(0x3472A5A71965499acd81997a54BBA8D852C6E53d)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd80ef9fabfdc3b52e17f74c383cf88ee2efbf0b6000000000000000000000a65 | B-tetuQi-Stable | 50 | 0x31f99c542cbe456fcbbe99d4bf849af4d7fb5405 | 0.3% | 2.0% | L0 sidechain | BIP-515 | 15 | ['tetuQi(0x4Cd44ced63d9a6FEF595f6AD3F7CED13fCEAc768)', 'QI(0x580A84C73811E1839F75d86d75d88cCa0c241fF4)', 'B-tetuQi-Stable(0xD80Ef9FabfdC3B52e17f74c383Cf88ee2efBf0b6)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xe22483774bd8611be2ad2f4194078dac9159f4ba0000000000000000000008f0 | 2BRL (BRZ) | 200 | 0xf0d887c1f5996c91402eb69ab525f028dd5d7578 | 0.05% | 2.0% | ChildChainStreamer | BIP-515 | 16 | ['BRZ(0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f)', '2BRL (BRZ)(0xE22483774bd8611bE2Ad2F4194078DaC9159F4bA)', 'jBRL(0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd20f6f1d8a675cdca155cb07b5dc9042c467153f0002000000000000000000bc | BPT-BOATH | N/A | 0x0bfcf593c149ddbeedb190667d24d30d2e38af73 | 0.5% | 2.0% | L0 sidechain | BIP-515 | 17 | ['OATH(0x39FdE572a18448F8139b7788099F0a0740f51205)', 'WETH(0x4200000000000000000000000000000000000006)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd1ec5e215e8148d76f4460e4097fd3d5ae0a35580002000000000000000003d3 | 50OHM-50WETH | N/A | 0x5f2c3422a675860f0e019ddd78c6fa681be84bd4 | 0.3% | N/A | mainnet | BIP-515 | 18 | ['OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd590931466cdd6d488a25da1e89dd0539723800c00020000000000000000042b | 50RBN-50USDC | N/A | 0x81c452e84b103555c2dd2dec0bfabc0c4d6b3065 | 1.0% | N/A | mainnet | BIP-515 | 19 | ['RBN(0x6123B0049F904d730dB3C36a31167D9d4121fA6B)', 'USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x47e1cf97a0586367349a14306a65f54ba0b8f1b60002000000000000000005cd | 20WETH-80ALTR | N/A | 0xee707ae5500dd9072ac0dab1170dd16d9addd68f | 1.0% | 2.0% | mainnet | BIP-515 | 20 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'ALTR(0xD1ffCacFc630CE68d3cd3369F5db829a3ed01fE2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x26cc136e9b8fd65466f193a8e5710661ed9a98270002000000000000000005ad | 80BETS/20wstETH | N/A | 0x2dc55e84baf47296c2cf87b4ec3eb66fd7665611 | 0.5% | 2.0% | mainnet | BIP-515 | 21 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'BETS(0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x76b9cbd55fd6776c2de18738a04b0f9da56ce6ca00020000000000000000048d | 80BETS/20wstETH | N/A | 0x35e5100c90c1d657942ec5ec4cbe38c53845245f | 1.0% | 2.0% | L0 sidechain | BIP-515 | 22 | ['wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'BETS(0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xa231aea07bb5e79ae162f95903806fc5ad65ff1100020000000000000000043f | 50DFX-50WETH | N/A | 0x8f7a0f9cf545db78bf5120d3dbea7de9c6220c10 | 0.3% | 2.0% | L0 sidechain | BIP-502 | 33 | ['WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)', 'DFX(0xA4914B824eF261D4ED0Ccecec29500862d57c0a1)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `cfb17bcfe0d4ca6903ce79d28318ed9da3f77b52` +CHAIN(S): `mainnet` +``` ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+========================================================+======================================================================+==========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 7918.0 (RAW: 7918000000) | BIP-103 | 0 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20000.0 (RAW: 20000000000) | BIP-513 | 1 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 19950.0 (RAW: 19950000000000000000000) | BIP-513 | 2 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 35300.0 (RAW: 35300000000) | BIP-517 | 23 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 0.5 (RAW: 500000000000000000) | BIP-517 | 24 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | 50N/A-50N/A:0x8f4205e1604133d1875a3E771AE7e4F2b0865639 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 136955.0 (RAW: 136955000000000000000000) | BIP-516 | 26 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 27 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 28 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 108095.0 (RAW: 108095000000) | BIP-514 | 29 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 35718.0 (RAW: 35718000000000000000000) | BIP-514 | 30 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 20.0 (RAW: 20000000000000000000) | BIP-514 | 32 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2023-W51/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `cfb17bcfe0d4ca6903ce79d28318ed9da3f77b52` +CHAIN(S): `mainnet` +``` ++------------------+----------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+==========================================================+=========+==========+==============+============+ +| completeWithdraw | 0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe (Not Found) | 0 | "N/A" | BIP-464 | N/A | ++------------------+----------------------------------------------------------+---------+----------+--------------+------------+ +| deposit | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 20 | "N/A" | BIP-514 | N/A | ++------------------+----------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2023/2023-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..b3d766b1a --- /dev/null +++ b/BIPs/00batched/2023/2023-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF6A7ad46b00300344C7d4739C0518db70e722DC4", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-510.json", + "bip_number": "BIP-510" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x94981eB72dB7EBcAE91ABd5A810f34B1DBf21108", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-510.json", + "bip_number": "BIP-510" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x62A82FE26E21a8807599374CaC8024fae342eF83", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-510.json", + "bip_number": "BIP-510" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-510.json", + "bip_number": "BIP-510" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa1d5b81d0024809faa278ab72fe3d2fb467dd28b", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-511.json", + "bip_number": "BIP-511" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdee29b7b6dF3576280bFBbC088ee9eBAA767C0Bd", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W51/BIP-512.json", + "bip_number": "BIP-512" + } + } + ] +} diff --git a/BIPs/00batched/2023/2023-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2023/2023-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..b9c190b06 --- /dev/null +++ b/BIPs/00batched/2023/2023-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,31 @@ +FILENAME: `BIPs/00batched/2023-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `cfb17bcfe0d4ca6903ce79d28318ed9da3f77b52` +CHAIN(S): `mainnet, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | sDAI/3Pool | 0xF6A7ad46b00300344C7d4739C0518db70e722DC4 | "sDAI/3Pool(0x49cbD67651fbabCE12d1df18499896ec87BEf46f)", | "0x0000000000000000000000000000000000000000", | BIP-510 | 0 | +| | pool_address: 0x49cbD67651fbabCE12d1df18499896ec87BEf46f | fee: 0.01, a-factor: 1000 | Style: mainnet, cap: 100.0% | "USDC-DAI-USDT(0x79c58f70905F734641735BC61e45c19dD9Ad60bC)", | "0x79c58f70905F734641735BC61e45c19dD9Ad60bC", | | | +| | | | | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)" | "0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x6aa6d7542310cdc75d1179b8729e1e6ec8d42bf100020000000000000000064b | 50wstETH/50sDAI | 0x94981eB72dB7EBcAE91ABd5A810f34B1DBf21108 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | BIP-510 | 1 | +| | pool_address: 0x6Aa6d7542310cDC75D1179B8729E1E6ec8d42BF1 | fee: 0.25, a-factor: N/A | Style: mainnet, cap: 100.0% | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)" | "0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | sFRAX/4POOL | 0x62A82FE26E21a8807599374CaC8024fae342eF83 | "sFRAX/4POOL(0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27)", | "0x0000000000000000000000000000000000000000", | BIP-510 | 2 | +| | pool_address: 0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27 | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "4POOL-BPT(0x423A1323c871aBC9d89EB06855bF5347048Fc4A5)", | "0x423A1323c871aBC9d89EB06855bF5347048Fc4A5", | | | +| | | | | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | "0x320CFa1a78d37a13C5D1cA5aA51563fF6Bb0f686" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc757f12694f550d0985ad6e1019c4db4a803f1600002000000000000000004de | 50wstETH/50sFRAX | 0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-510 | 3 | +| | pool_address: 0xc757F12694F550d0985ad6E1019C4db4A803f160 | fee: 0.25, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | "0x320CFa1a78d37a13C5D1cA5aA51563fF6Bb0f686" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xb06bfbd7b50f80c8d9da57fc4cf5cbd5b3e2f14800000000000000000000064d | pxETH/frxETH | 0xa1d5b81d0024809faa278ab72fe3d2fb467dd28b | "pxETH(0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6)", | "0x0000000000000000000000000000000000000000", | BIP-511 | 4 | +| | pool_address: 0xB06bFBD7b50F80c8d9dA57Fc4cF5CBD5B3E2f148 | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "frxETH(0x5E8422345238F34275888049021821E8E08CAa1f)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "pxETH/frxETH(0xB06bFBD7b50F80c8d9dA57Fc4cF5CBD5B3E2f148)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x88794c65550deb6b4087b7552ecf295113794410000000000000000000000648 | pxETH/wETH | 0xdee29b7b6dF3576280bFBbC088ee9eBAA767C0Bd | "pxETH(0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6)", | "0x0000000000000000000000000000000000000000", | BIP-512 | 5 | +| | pool_address: 0x88794C65550DeB6b4087B7552eCf295113794410 | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "pxETH/wETH(0x88794C65550DeB6b4087B7552eCf295113794410)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W51/checkpointer_gauges_by_chain.json b/BIPs/00batched/2023/2023-W51/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..d5eb44435 --- /dev/null +++ b/BIPs/00batched/2023/2023-W51/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0x62A82FE26E21a8807599374CaC8024fae342eF83, 0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C]" +} diff --git a/BIPs/00batched/2023/2023-W51/combined-report.md b/BIPs/00batched/2023/2023-W51/combined-report.md new file mode 100644 index 000000000..0139fcb3f --- /dev/null +++ b/BIPs/00batched/2023/2023-W51/combined-report.md @@ -0,0 +1,88 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/ff8a9f13-bc6f-40a4-bcf6-05bc0d76f32f) + +[Sign Nonce 232](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+===========================+======+============================================+=======+========+====================+=========+============+=========================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x8c89fb53d4d83173dd65b7a94569558ce393460f000000000000000000000c26 | FRAX-USDC-BPT | 5000 | 0x5f69b3800ff7fa1bcb74090e16bd4b42a710749e | 0.04% | 100.0% | L0 sidechain | BIP-515 | 3 | ['USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)', 'FRAX(0x45c32fA6DF82ead1e2EF74d17b76547EDdFaFF89)', 'FRAX-USDC-BPT(0x8C89fb53d4D83173Dd65B7a94569558Ce393460F)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb9debddf1d894c79d2b2d09f819ff9b856fca55200000000000000000000062a | weETH-WETH-BPT | 600 | 0x5d7c0521db5a6f37ad839d0eefbaf8205389add8 | 0.04% | 100.0% | mainnet | BIP-515 | 4 | ['weETH-WETH-BPT(0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x8eb6c82c3081bbbd45dcac5afa631aac53478b7c000100000000000000000270 | 40WBTC-40DIGG-20graviAURA | N/A | 0xe5f24cd43f77fadf4db33dab44eb25774159ac66 | 1.0% | 2.0% | mainnet | BIP-515 | 5 | ['WBTC(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599)', 'DIGG(0x798D1bE841a82a273720CE31c822C61a67a601C3)', 'graviAURA(0xBA485b556399123261a5F9c95d413B4f93107407)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x990a0f03c3ee397cafda61cad277de18280751fd0002000000000000000000b6 | 50WETH-50TAG | N/A | 0x2c3ef846fc3b5a4820b2d3462c9300e6d8845055 | 1.0% | 2.0% | L0 sidechain | BIP-515 | 6 | ['WETH(0x4200000000000000000000000000000000000006)', 'TAG(0x7905EA12CC81a215A5F1D0F46DF73a53E19E9264)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x58b645fa247b60f2cb896991fd8956146c9fcb4a00020000000000000000061d | 80mevETH/20FOLD | N/A | 0xc6c69b977329d93e34fdbd2c37ab8e70b8decfcd | 0.3% | 100.0% | mainnet | BIP-515 | 7 | ['mevETH(0x24Ae2dA0f361AA4BE46b48EB19C91e02c5e4f27E)', 'FOLD(0xd084944d3c05CD115C09d072B9F44bA3E0E45921)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52e281318fed4efffb8e46c0847a8f9b71a461a8000200000000000000000018 | 50tBTC-50WETH | N/A | 0xf6fa773b5e54f4bd20e09d806ab483d58dd55dcb | 0.3% | 100.0% | L0 sidechain | BIP-515 | 8 | ['tBTC(0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b)', 'WETH(0x4200000000000000000000000000000000000006)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x513cdee00251f39de280d9e5f771a6eafebcc88e000000000000000000000a6b | 2eur (PAR) | 200 | 0x16289f675ca54312a8fcf99341e7439982888077 | 0.05% | 2.0% | L0 sidechain | BIP-515 | 9 | ['jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)', '2eur (PAR)(0x513CdEE00251F39DE280d9E5f771A6eaFebCc88E)', 'PAR(0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x072f14b85add63488ddad88f855fda4a99d6ac9b000200000000000000000027 | B-50SNX-50WETH | N/A | 0x605ea53472a496c3d483869fe8f355c12e861e19 | 1.0% | N/A | mainnet | BIP-515 | 10 | ['SNX(0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x48607651416a943bf5ac71c41be1420538e78f87000200000000000000000327 | 50Silo-50WETH | N/A | 0x75cacebb5b4a73a530edcdfde7cffbfea44c026e | 0.3% | 2.0% | mainnet | BIP-515 | 11 | ['Silo(0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x99a14324cfd525a34bbc93ac7e348929909d57fd00020000000000000000030e | 50WETH-50FOLD | N/A | 0xaf3c3dab54ca15068d09c67d128344916e177ca9 | 1.0% | N/A | mainnet | BIP-515 | 12 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'FOLD(0xd084944d3c05CD115C09d072B9F44bA3E0E45921)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd278166dabaf26707362f7cfdd204b277fd2a4600002000000000000000004f6 | 50USH-50WETH | N/A | 0xcd8bb8cebc794842967849255c234e7b7619a518 | 0.5% | 10.0% | mainnet | BIP-515 | 13 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'USH(0xE60779CC1b2c1d0580611c526a8DF0E3f870EC48)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb460daa847c45f1c4a41cb05bfb3b51c92e41b36000200000000000000000194 | 20WBTC-80BADGER | N/A | 0x3f29e69955e5202759208dd0c5e0ba55ff934814 | 0.3% | 2.0% | mainnet | BIP-515 | 14 | ['WBTC(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599)', 'BADGER(0x3472A5A71965499acd81997a54BBA8D852C6E53d)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd80ef9fabfdc3b52e17f74c383cf88ee2efbf0b6000000000000000000000a65 | B-tetuQi-Stable | 50 | 0x31f99c542cbe456fcbbe99d4bf849af4d7fb5405 | 0.3% | 2.0% | L0 sidechain | BIP-515 | 15 | ['tetuQi(0x4Cd44ced63d9a6FEF595f6AD3F7CED13fCEAc768)', 'QI(0x580A84C73811E1839F75d86d75d88cCa0c241fF4)', 'B-tetuQi-Stable(0xD80Ef9FabfdC3B52e17f74c383Cf88ee2efBf0b6)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xe22483774bd8611be2ad2f4194078dac9159f4ba0000000000000000000008f0 | 2BRL (BRZ) | 200 | 0xf0d887c1f5996c91402eb69ab525f028dd5d7578 | 0.05% | 2.0% | ChildChainStreamer | BIP-515 | 16 | ['BRZ(0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f)', '2BRL (BRZ)(0xE22483774bd8611bE2Ad2F4194078DaC9159F4bA)', 'jBRL(0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd20f6f1d8a675cdca155cb07b5dc9042c467153f0002000000000000000000bc | BPT-BOATH | N/A | 0x0bfcf593c149ddbeedb190667d24d30d2e38af73 | 0.5% | 2.0% | L0 sidechain | BIP-515 | 17 | ['OATH(0x39FdE572a18448F8139b7788099F0a0740f51205)', 'WETH(0x4200000000000000000000000000000000000006)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd1ec5e215e8148d76f4460e4097fd3d5ae0a35580002000000000000000003d3 | 50OHM-50WETH | N/A | 0x5f2c3422a675860f0e019ddd78c6fa681be84bd4 | 0.3% | N/A | mainnet | BIP-515 | 18 | ['OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd590931466cdd6d488a25da1e89dd0539723800c00020000000000000000042b | 50RBN-50USDC | N/A | 0x81c452e84b103555c2dd2dec0bfabc0c4d6b3065 | 1.0% | N/A | mainnet | BIP-515 | 19 | ['RBN(0x6123B0049F904d730dB3C36a31167D9d4121fA6B)', 'USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x47e1cf97a0586367349a14306a65f54ba0b8f1b60002000000000000000005cd | 20WETH-80ALTR | N/A | 0xee707ae5500dd9072ac0dab1170dd16d9addd68f | 1.0% | 2.0% | mainnet | BIP-515 | 20 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'ALTR(0xD1ffCacFc630CE68d3cd3369F5db829a3ed01fE2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x26cc136e9b8fd65466f193a8e5710661ed9a98270002000000000000000005ad | 80BETS/20wstETH | N/A | 0x2dc55e84baf47296c2cf87b4ec3eb66fd7665611 | 0.5% | 2.0% | mainnet | BIP-515 | 21 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'BETS(0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x76b9cbd55fd6776c2de18738a04b0f9da56ce6ca00020000000000000000048d | 80BETS/20wstETH | N/A | 0x35e5100c90c1d657942ec5ec4cbe38c53845245f | 1.0% | 2.0% | L0 sidechain | BIP-515 | 22 | ['wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'BETS(0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xa231aea07bb5e79ae162f95903806fc5ad65ff1100020000000000000000043f | 50DFX-50WETH | N/A | 0x8f7a0f9cf545db78bf5120d3dbea7de9c6220c10 | 0.3% | 2.0% | L0 sidechain | BIP-502 | 33 | ['WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)', 'DFX(0xA4914B824eF261D4ED0Ccecec29500862d57c0a1)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +``` ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+========================================================+======================================================================+==========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 7918.0 (RAW: 7918000000) | BIP-103 | 0 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20000.0 (RAW: 20000000000) | BIP-513 | 1 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 19950.0 (RAW: 19950000000000000000000) | BIP-513 | 2 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 35300.0 (RAW: 35300000000) | BIP-517 | 23 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 0.5 (RAW: 500000000000000000) | BIP-517 | 24 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | 50N/A-50N/A:0x8f4205e1604133d1875a3E771AE7e4F2b0865639 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 136955.0 (RAW: 136955000000000000000000) | BIP-516 | 26 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 27 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 28 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 108095.0 (RAW: 108095000000) | BIP-514 | 29 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 35718.0 (RAW: 35718000000000000000000) | BIP-514 | 30 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 20.0 (RAW: 20000000000000000000) | BIP-514 | 32 | ++------------+--------------------------------------------------------+----------------------------------------------------------------------+------------------------------------------+---------+------------+ +``` +``` ++------------------+----------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+==========================================================+=========+==========+==============+============+ +| completeWithdraw | 0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe (Not Found) | 0 | "N/A" | BIP-464 | N/A | ++------------------+----------------------------------------------------------+---------+----------+--------------+------------+ +| deposit | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 20 | "N/A" | BIP-514 | N/A | ++------------------+----------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2023/2023-W51/tg_template.txt b/BIPs/00batched/2023/2023-W51/tg_template.txt new file mode 100644 index 000000000..8c9a0b53e --- /dev/null +++ b/BIPs/00batched/2023/2023-W51/tg_template.txt @@ -0,0 +1,23 @@ +gm. Happy holidays to all. Wasn't planning to run this week, but we're runing low on gas and may need the ETH from BIP-514(Maxi Funding) here to keep things running without a scramble to scrape up gas money this week. Lots of transfers due to SP funding BIPs. + + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 232 +BIP-103: Karpatkey Payment +BIP-464: Withdraw BAL from Ribbon +BIP-502: Replace DFX/ETH gauge +BIP-513: BAL liquidity on AVAX +BIP-514: SP Funding: Maxis +BIP-515: Kill unused gauges +BIP-516: Exit D2D pool +BIP-517: SP Funding: Grants +BIP-518: SP Funding: Beets Tech +BIP-519: SP Funding: Beets Marketing + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W051/combined-report.md + +Sorry I didn't get a BIP together for BAL payouts this week, will be included in next weeks voting, perhaps along with the need not to vote on it every time like other regular funding situatuions such as Karpatkey or Beets. + + diff --git a/BIPs/00batched/2024-W10/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W10/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..966f9e49e --- /dev/null +++ b/BIPs/00batched/2024-W10/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5CA24e2A586834A7B96216D68b26A82405e3DC15", + "value": "60000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W10/BIP-545.json", + "bip_number": "BIP-545" + } + } + ] +} diff --git a/BIPs/00batched/2024-W10/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W10/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..1828b9e9e --- /dev/null +++ b/BIPs/00batched/2024-W10/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W10/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `8fcb7638626aa8e901f2390f4b4d215387222c18` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/670df59b-7ecb-4547-a9ec-7c485443ffac) +``` ++------------+-------------------------------------------------+------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+========================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/hypernative_payments:0x5CA24e2A586834A7B96216D68b26A82405e3DC15 | 60000.0 (RAW: 60000000000) | BIP-545 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W10/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W10/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..95417db0f --- /dev/null +++ b/BIPs/00batched/2024-W10/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB5dCdE9aDCace88705658Aa276C557afC011FE55", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W10/BIP-554.json", + "bip_number": "BIP-554" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W10/BIP-553.json", + "bip_number": "BIP-553" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W10/BIP-555.json", + "bip_number": "BIP-555" + } + } + ] +} diff --git a/BIPs/00batched/2024-W10/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W10/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..8a11ae5e7 --- /dev/null +++ b/BIPs/00batched/2024-W10/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,21 @@ +FILENAME: `BIPs/00batched/2024-W10/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8fcb7638626aa8e901f2390f4b4d215387222c18` +CHAIN(S): `mainnet, arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/ab1a3b46-d982-4c96-89e9-5469f0392ef7) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d | weETH/rETH | 0xB5dCdE9aDCace88705658Aa276C557afC011FE55 | "weETH(0x35751007a407ca6FEFfE80b3cB397736D2cf4dbe)", | "0xCd9e3fb32c8F258555b8292531112bBb5B87E2F4", | BIP-554 | 0 | +| | pool_address: 0x4B3af34eB1135D59df8b9CdC2FF07d30D05334C4 | fee: 0.04, a-factor: 600 | Style: L0 sidechain, cap: 10.0% | "weETH/rETH(0x4B3af34eB1135D59df8b9CdC2FF07d30D05334C4)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672 | 50KEP/50rsETH | 0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1 | "KEP(0x8E3A59427B1D87Db234Dd4ff63B25E4BF94672f4)", | "0x0000000000000000000000000000000000000000", | BIP-553 | 1 | +| | pool_address: 0xFf42A9AF956617e4C3532eF2fC7567465EFE4909 | fee: 1.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "rsETH(0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7)" | "0x746df66bc1Bb361b9E8E2a794C299c3427976e6C" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c | pyUSD/sDOLA BSP | 0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f | "pyUSD/sDOLA BSP(0x09B03b7cBB19b3daE94F884cF60dBc3c99a3947b)", | "0x0000000000000000000000000000000000000000", | BIP-555 | 2 | +| | pool_address: 0x09B03b7cBB19b3daE94F884cF60dBc3c99a3947b | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "PYUSD(0x6c3ea9036406852006290770BEdFcAbA0e23A0e8)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sDOLA(0xb45ad160634c528Cc3D2926d9807104FA3157305)" | "0xD02011C6C8AEE310D0aA42AA98BFE9DCa547fCc0" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W10/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2024-W10/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..ccf111f69 --- /dev/null +++ b/BIPs/00batched/2024-W10/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W10/BIP-552-GNOSIS.json", + "bip_number": "BIP-552" + } + } + ] +} diff --git a/BIPs/00batched/2024-W10/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00batched/2024-W10/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..271edef80 --- /dev/null +++ b/BIPs/00batched/2024-W10/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W10/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `8fcb7638626aa8e901f2390f4b4d215387222c18` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9df40f4d-a446-47c9-b40e-12f2ef4ba922) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | BIP-552 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W10/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2024-W10/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..2e2c36d73 --- /dev/null +++ b/BIPs/00batched/2024-W10/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W10/BIP-552-POLY.json", + "bip_number": "BIP-552" + } + } + ] +} diff --git a/BIPs/00batched/2024-W10/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt b/BIPs/00batched/2024-W10/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt new file mode 100644 index 000000000..6fa58872f --- /dev/null +++ b/BIPs/00batched/2024-W10/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W10/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `8fcb7638626aa8e901f2390f4b4d215387222c18` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d76d0b95-ee05-4240-8e9a-50f20d21ee41) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13 | BIP-552 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W10/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2024-W10/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..3552e64f8 --- /dev/null +++ b/BIPs/00batched/2024-W10/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W10/BIP-552-ARB.json", + "bip_number": "BIP-552" + } + } + ] +} diff --git a/BIPs/00batched/2024-W10/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2024-W10/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..67c571cb2 --- /dev/null +++ b/BIPs/00batched/2024-W10/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W10/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `8fcb7638626aa8e901f2390f4b4d215387222c18` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4767ac5d-ca45-4686-9173-951304d3fc97) +``` ++----------------------+--------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | maxiKeepers/mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf | BIP-552 | 0 | ++----------------------+--------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W10/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W10/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..1eb730201 --- /dev/null +++ b/BIPs/00batched/2024-W10/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0xB5dCdE9aDCace88705658Aa276C557afC011FE55]" +} diff --git a/BIPs/00batched/2024-W10/combined-report.md b/BIPs/00batched/2024-W10/combined-report.md new file mode 100644 index 000000000..f91fc4933 --- /dev/null +++ b/BIPs/00batched/2024-W10/combined-report.md @@ -0,0 +1,47 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/aaa79d3f-e6d4-4146-bad4-3eee488ab618) + +[Sign Nonce 238](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++------------+-------------------------------------------------+------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+========================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/hypernative_payments:0x5CA24e2A586834A7B96216D68b26A82405e3DC15 | 60000.0 (RAW: 60000000000) | BIP-545 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+----------------------------+---------+------------+ +``` +## Gnosis DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/7df2b35d-9187-4301-a719-ba19c234eeeb) + +[Sign Nonce 23](https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | BIP-552 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Arbitrum DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/44f4a0fb-e23c-475b-9e94-7f70abcb860a) + +[Sign Nonce 41](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) + +``` ++----------------------+--------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | maxiKeepers/mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf | BIP-552 | 0 | ++----------------------+--------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## Polygon DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/1f8e4059-fbd3-4252-a9b4-68b4b3db2077) + +[Sign Nonce 33](https://app.safe.global/transactions/queue?safe=matic%3A0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13 | BIP-552 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W10/tg_template.txt b/BIPs/00batched/2024-W10/tg_template.txt new file mode 100644 index 000000000..a909b3b7c --- /dev/null +++ b/BIPs/00batched/2024-W10/tg_template.txt @@ -0,0 +1,26 @@ +gm gm everyone. Hope you enjoyed the break. A bit late this week as we wanted to make sure we had all the mimic addresses properly recorded in our address book. + +Also next week ahve a critical payload that has to be executed before the 14th, so would be nice if you all could keep your eyes peeled nwxt monday. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 238 +BIP-545: Pay Hypernative for 1 year engagement + +https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 +Please Sign Nonce 23 +BIP-552: Authorize Mimic Smartvalt v2 + +https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0 +Please Sign Nonce 41 +BIP-552: Authorize Mimic Smartvalt v2 + +https://app.safe.global/transactions/queue?safe=matic%3A0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) +Please Sign Nonce 33 +BIP-552: Authorize Mimic Smartvalt v2 + + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W10 + + diff --git a/BIPs/00batched/2024-W11/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W11/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..7c09bcac2 --- /dev/null +++ b/BIPs/00batched/2024-W11/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_relock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "processExpiredLocks", + "payable": false + }, + "contractInputsValues": { + "_relock": "true" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-551.json", + "bip_number": "BIP-551" + } + }, + { + "to": "0xFd72170339AC6d7bdda09D1eACA346B21a30D422", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_lock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "_lock": "true" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-551.json", + "bip_number": "BIP-551" + } + }, + { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "50000000000000000000", + "data": null, + "contractMethod": null, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-556.json", + "bip_number": "BIP-556" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-518-4.json", + "bip_number": "BIP-518" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-519-4.json", + "bip_number": "BIP-519" + } + } + ] +} diff --git a/BIPs/00batched/2024-W11/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W11/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..4ad1dbc60 --- /dev/null +++ b/BIPs/00batched/2024-W11/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/2024-W11/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `c7064ddb2d3da43c6003a44f67dac7b3d81c89d6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/60345830-ce99-44de-ad7d-82049bdf72fa) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 3 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 4 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W11/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `c7064ddb2d3da43c6003a44f67dac7b3d81c89d6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b4179450-b4ba-489f-b807-7a98cd947868) +``` ++---------------------+-----------------------------------------------------------------+----------------------+-------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=====================+=================================================================+======================+===================+==============+============+ +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-551 | N/A | +| | | | "_relock": true | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------+----------------------+-------------------+--------------+------------+ +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (Not Found) | 0 | { | BIP-551 | N/A | +| | | | "_lock": true | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------+----------------------+-------------------+--------------+------------+ +| !!N/A!! | 0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops) | 50000000000000000000 | "N/A" | BIP-556 | N/A | ++---------------------+-----------------------------------------------------------------+----------------------+-------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W11/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W11/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..785662d2b --- /dev/null +++ b/BIPs/00batched/2024-W11/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7E1726D24B1CD3dFcd713f67a83ccEaa6108d069", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-557.json", + "bip_number": "BIP-557" + } + } + ] +} diff --git a/BIPs/00batched/2024-W11/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W11/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..30fc78c53 --- /dev/null +++ b/BIPs/00batched/2024-W11/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/00batched/2024-W11/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c7064ddb2d3da43c6003a44f67dac7b3d81c89d6` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a0febc92-0f36-4a99-95d8-af8c87f580f9) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xe906d4c4fc4c3fe96560de86b4bf7ed89af9a69a000200000000000000000126 | bpt-fraxsym | 0x7E1726D24B1CD3dFcd713f67a83ccEaa6108d069 | "sFRAX(0x2Dd1B4D4548aCCeA497050619965f91f78b3b532)", | | BIP-557 | 0 | +| | pool_address: 0xE906d4C4fC4c3Fe96560De86B4bf7eD89aF9A69a | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "FRAX(0x2E3D870790dC77A83DD1d18184Acc7439A53f475)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W11/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W11/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..81febe0ca --- /dev/null +++ b/BIPs/00batched/2024-W11/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Optimism": "[0x7E1726D24B1CD3dFcd713f67a83ccEaa6108d069]" +} diff --git a/BIPs/00batched/2024-W11/combined-report.md b/BIPs/00batched/2024-W11/combined-report.md new file mode 100644 index 000000000..77dc31de4 --- /dev/null +++ b/BIPs/00batched/2024-W11/combined-report.md @@ -0,0 +1,29 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/4722dbba-b150-4869-af11-5fc71e1b29c7) + +[Sign Nonce 239](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 3 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 4 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` +``` ++---------------------+-----------------------------------------------------------------+----------------------+-------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=====================+=================================================================+======================+===================+==============+============+ +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-551 | N/A | +| | | | "_relock": true | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------+----------------------+-------------------+--------------+------------+ +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (Not Found) | 0 | { | BIP-551 | N/A | +| | | | "_lock": true | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------+----------------------+-------------------+--------------+------------+ +| !!N/A!! | 0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops) | 50000000000000000000 | "N/A" | BIP-556 | N/A | ++---------------------+-----------------------------------------------------------------+----------------------+-------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W11/tg_template.txt b/BIPs/00batched/2024-W11/tg_template.txt new file mode 100644 index 000000000..541da4d2a --- /dev/null +++ b/BIPs/00batched/2024-W11/tg_template.txt @@ -0,0 +1,15 @@ +Gm Gm all. This week it is very critical that we execute by 23:00 GMT on Wednesday night. This payload includes relocking a bunch of vlAURA. If we are late to execute the DAO will loose out on a considerable amount of influence for 1 round and our partners will be... unhappy. Thanks for your prompt attention this wek. + + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 239 +BIP-518&519: Fund Beets Tech + Marketing +BIP-551: vlAURA lock handling +BIP-556: More gas money for the Maxis (ops) + + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W11/ + + diff --git a/BIPs/00batched/2024-W13/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W13/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..1c646cc21 --- /dev/null +++ b/BIPs/00batched/2024-W13/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb71C90F165cf99d4004499fF058E265Aa68fAC85", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W13/BIP-564.json", + "bip_number": "BIP-564" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2911d599C3494A416B27c144E4084a6617cA4Ff0", + "gaugeType": "Avalanche" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W13/BIP-570.json", + "bip_number": "BIP-570" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB9bB09ADCBcaE06F580DA494EE6987dbB083b45f", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W13/BIP-563.json", + "bip_number": "BIP-563" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7d631e72eb15285Da57eeaf40a971724A94ced05", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W13/BIP-561.json", + "bip_number": "BIP-561" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF27B784Aa66D5B27BFfd247e32C000C86511C2B2", + "gaugeType": "PolygonZkEvm" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W13/BIP-562A.json", + "bip_number": "BIP-562" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x24B7AEEEFDB612D43F018Cbc9c325680f61Ec96d", + "gaugeType": "EthereumSingleRecipientGauge" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W13/BIP-560.json", + "bip_number": "BIP-560" + } + } + ] +} diff --git a/BIPs/00batched/2024-W13/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W13/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..921f2cb3f --- /dev/null +++ b/BIPs/00batched/2024-W13/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/2024-W13/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6361088baec7a0bc37510e7783ee80a78f01e973` +CHAIN(S): `arbitrum, mainnet, avax, zkevm` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cfe18fbf-7df6-49f5-8ce7-e1e40c59f791) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x4c4ed61d81f531dcb34ad4d498548917aba3d193000200000000000000000680 | ECLP-GHO-pyUSD | 0xb71C90F165cf99d4004499fF058E265Aa68fAC85 | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | | BIP-564 | 0 | +| | pool_address: 0x4c4Ed61D81F531Dcb34Ad4d498548917ABA3D193 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "PYUSD(0x6c3ea9036406852006290770BEdFcAbA0e23A0e8)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x0df1be54b29aa9828bea1de6a6dfe3d03ec63082000100000000000000000047 | AFCC | 0x2911d599C3494A416B27c144E4084a6617cA4Ff0 | "KIMBO(0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1)", | "0x0000000000000000000000000000000000000000", | BIP-570 | 1 | +| | pool_address: 0x0df1Be54B29aA9828Bea1De6A6DFE3d03EC63082 | fee: 2.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "COQ(0x420FcA0121DC28039145009570975747295f2329)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "TECH(0x5Ac04b69bDE6f67C0bd5D6bA6fD5D816548b066a)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "NOCHILL(0xAcFb898Cff266E53278cC0124fC2C7C94C8cB9a5)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WAVAX(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "GEC(0xE8385CECb013561b69bEb63FF59f4d10734881f3)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xeb3e64ad9314d20bf943ac72fb69f272603f9cce0002000000000000000004f5 | 80SYNO-20WETH | 0xB9bB09ADCBcaE06F580DA494EE6987dbB083b45f | "SYNO(0x577Fd586c9E6BA7f2E85E025D5824DBE19896656)", | "0x0000000000000000000000000000000000000000", | BIP-563 | 2 | +| | pool_address: 0xEB3E64Ad9314D20bf943ac72Fb69F272603f9cce | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b | genETH/wstETH | 0x7d631e72eb15285Da57eeaf40a971724A94ced05 | "genETH/wstETH(0x6AA5a6b9257CA6e18b2da94e1a5FbE57ce2947cA)", | "0x0000000000000000000000000000000000000000", | BIP-561 | 3 | +| | pool_address: 0x6AA5a6b9257CA6e18b2da94e1a5FbE57ce2947cA | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "genETH(0xf073bAC22DAb7FaF4a3Dd6c6189a70D54110525C)" | "0xC29783738A475112Cafe58433Dd9D19F3a406619" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x9f826c576b1f821df31ca6d58c9443db25a81d65000200000000000000000064 | ECLP-wETH-rETH | 0xF27B784Aa66D5B27BFfd247e32C000C86511C2B2 | "WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)", | | BIP-562 | 4 | +| | pool_address: 0x9F826c576b1F821dF31Ca6d58c9443dB25a81D65 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "rETH(0xb23C20EFcE6e24Acca0Cef9B7B7aA196b84EC942)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | N/A - No Escrow | N/A | 0x24B7AEEEFDB612D43F018Cbc9c325680f61Ec96d | "None(UNKNOWN)" | "UNKNOWN" | BIP-560 | 5 | +| | pool_address: N/A | fee: N/A, a-factor: N/A | Style: Single Recipient, cap: 2.0% | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W13/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W13/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..4f181728b --- /dev/null +++ b/BIPs/00batched/2024-W13/checkpointer_gauges_by_chain.json @@ -0,0 +1,6 @@ +{ + "Avalanche": "[0x2911d599C3494A416B27c144E4084a6617cA4Ff0]", + "Arbitrum": "[0xB9bB09ADCBcaE06F580DA494EE6987dbB083b45f]", + "PolygonZkEvm": "[0xF27B784Aa66D5B27BFfd247e32C000C86511C2B2]", + "EthereumSingleRecipientGauge": "[0x24B7AEEEFDB612D43F018Cbc9c325680f61Ec96d]" +} diff --git a/BIPs/00batched/2024-W14/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W14/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..efca007ab --- /dev/null +++ b/BIPs/00batched/2024-W14/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,284 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x00b9bcd17cb049739d25fd7f826caa2e23b05620", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-547B.json", + "bip_number": "BIP-547" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x49f530b45ae792cdf5cbd5d25c5a9b9e59c6c3b8", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-547B.json", + "bip_number": "BIP-547" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x56c0626e6e3931af90ebb679a321225180d4b32b", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-547B.json", + "bip_number": "BIP-547" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "amount": "6809000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-573.json", + "bip_number": "BIP-573" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "29400000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-573.json", + "bip_number": "BIP-573" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "61000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-569.json", + "bip_number": "BIP-569" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "6342000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-569.json", + "bip_number": "BIP-569" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "165120000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-568.json", + "bip_number": "BIP-568" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "18625000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-568.json", + "bip_number": "BIP-568" + } + } + ] +} diff --git a/BIPs/00batched/2024-W14/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W14/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..d4da1f3e7 --- /dev/null +++ b/BIPs/00batched/2024-W14/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,38 @@ +FILENAME: `BIPs/00batched/2024-W14/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `7cbabff8ef7f89c6f51dc9092a921317deae41f8` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4f364eb4-ffb9-4cf2-a27a-cd3083190cce) +``` ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=====================+======+============================================+=======+========+==============+=========+============+======================================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497 | rETH-WETH-BPT | 500 | 0x00b9bcd17cb049739d25fd7f826caa2e23b05620 | 0.02% | 100.0% | L0 sidechain | BIP-547 | 0 | ['WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)', 'rETH-WETH-BPT(0xadE4A71BB62bEc25154CFc7e6ff49A513B491E81)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | wstETH/rETH/sfrxETH | 1500 | 0x49f530b45ae792cdf5cbd5d25c5a9b9e59c6c3b8 | 0.04% | 100.0% | L0 sidechain | BIP-547 | 1 | ['wstETH/rETH/sfrxETH(0x0c8972437a38b389ec83d1E666b69b8a4fcf8bfd)', 'wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'sfrxETH(0x95aB45875cFFdba1E5f451B950bC2E42c0053f39)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | wstETH/rETH/cbETH | 1500 | 0x56c0626e6e3931af90ebb679a321225180d4b32b | 0.04% | 100.0% | L0 sidechain | BIP-547 | 2 | ['cbETH(0x1DEBd73E752bEaF79865Fd6446b0c970EaE7732f)', 'wstETH/rETH/cbETH(0x4a2F6Ae7F3e5D715689530873ec35593Dc28951B)', 'wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/2024-W14/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `7cbabff8ef7f89c6f51dc9092a921317deae41f8` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/301d666a-4da7-45d3-b66c-f6ba2978714c) +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 6809.0 (RAW: 6809000000000000000000) | BIP-573 | 3 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 29400.0 (RAW: 29400000000) | BIP-573 | 4 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 61000.0 (RAW: 61000000000) | BIP-569 | 5 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 6342.0 (RAW: 6342000000000000000000) | BIP-569 | 6 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 165120.0 (RAW: 165120000000) | BIP-568 | 7 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 18625.0 (RAW: 18625000000000000000000) | BIP-568 | 8 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W14/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W14/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..99cf05e80 --- /dev/null +++ b/BIPs/00batched/2024-W14/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-577.json", + "bip_number": "BIP-577" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-574.json", + "bip_number": "BIP-574" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-575.json", + "bip_number": "BIP-575" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-572.json", + "bip_number": "BIP-572" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x75BA7F8733c154302cbE2e19fe3ec417E0679833", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-576.json", + "bip_number": "BIP-576" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W14/BIP-576.json", + "bip_number": "BIP-576" + } + } + ] +} diff --git a/BIPs/00batched/2024-W14/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W14/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..42ec73fb4 --- /dev/null +++ b/BIPs/00batched/2024-W14/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,30 @@ +FILENAME: `BIPs/00batched/2024-W14/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7cbabff8ef7f89c6f51dc9092a921317deae41f8` +CHAIN(S): `optimism, mainnet, arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/245f144c-3e41-4633-ae22-c660d495331e) +``` ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+============================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | pufETH/wstETH | 0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80 | "pufETH/wstETH(0x63E0d47A6964aD1565345Da9bfA66659F4983F02)", | "0x0000000000000000000000000000000000000000", | BIP-577 | 0 | +| | pool_address: 0x63E0d47A6964aD1565345Da9bfA66659F4983F02 | fee: 0.02, a-factor: 200 | Style: mainnet, cap: 100.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "pufETH(0xD9A442856C234a39a81a089C06451EBAa4306a72)" | "0x71f80e2CfAFA5EC2F0bF12f71FA7Ea57c3D0c7Af" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x8bb826afc0ff7d2c034a2883f4c461ffd238e1c300020000000000000000012b | RSB | 0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301 | "stataOptUSDT(0x035c93db04E5aAea54E6cd0261C492a3e0638b37)", | "0x3f921Ebabab0703BC06d1828D09a245e8390c263", | BIP-574 | 1 | +| | pool_address: 0x8BB826Afc0fF7d2c034a2883F4C461ffD238E1C3 | fee: 0.005, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "stataOptUSDCn(0x4DD03dfD36548C840B563745e3FBeC320F37BA7e)" | "0xdFa8d2b3c146b8a10B5d63CA0306AEa84B602cfb" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514 | ECLP-AUSDC-AUSDT | 0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5 | "stataArbUSDCn(0x7CFaDFD5645B50bE87d546f42699d863648251ad)", | "0x87cD462A781c0ca843EAB131Bf368328848bB6fD", | BIP-575 | 2 | +| | pool_address: 0x125bC5a031B2Db6733bfa35d914ffa428095978B | fee: 0.005, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "stataArbUSDT(0xb165a74407fE1e519d6bCbDeC1Ed3202B35a4140)" | "0x48942B49B5bB6f3E1d43c204a3F40a4c5F696ef6" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | ETHx/wstETH | 0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | BIP-572 | 3 | +| | pool_address: 0xB91159aa527D4769CB9FAf3e4ADB760c7E8C8Ea7 | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "ETHx(0xA35b1B31Ce002FBF2058D22F30f95D405200A15b)", | "0xAAE054B9b822554dd1D9d1F48f892B4585D3bbf0", | | | +| | | | | "ETHx/wstETH(0xB91159aa527D4769CB9FAf3e4ADB760c7E8C8Ea7)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d | 2CLP-AUSDC-USDC | 0x75BA7F8733c154302cbE2e19fe3ec417E0679833 | "stataArbUSDCn(0x7CFaDFD5645B50bE87d546f42699d863648251ad)", | "0x87cD462A781c0ca843EAB131Bf368328848bB6fD", | BIP-576 | 4 | +| | pool_address: 0xcA8ECD05A289B1FBc2E0eAEC07360c4BFec07B61 | fee: 0.0005, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f | 2CLP-AUSDT-USDT | 0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1 | "stataArbUSDT(0xb165a74407fE1e519d6bCbDeC1Ed3202B35a4140)", | "0x48942B49B5bB6f3E1d43c204a3F40a4c5F696ef6", | BIP-576 | 5 | +| | pool_address: 0x14ABD18d1FA335E9F630a658a2799B33208763Fa | fee: 0.0005, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "USDT(0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W14/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W14/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..db3e03c1d --- /dev/null +++ b/BIPs/00batched/2024-W14/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Optimism": "[0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301]", + "Arbitrum": "[0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5, 0x75BA7F8733c154302cbE2e19fe3ec417E0679833, 0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1]" +} diff --git a/BIPs/00batched/2024-W14/combined-report.md b/BIPs/00batched/2024-W14/combined-report.md new file mode 100644 index 000000000..f932de6d7 --- /dev/null +++ b/BIPs/00batched/2024-W14/combined-report.md @@ -0,0 +1,32 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/9e210dd1-db43-48d9-8dfd-1d7936b38d39) +[Sign Nonce 240](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=====================+======+============================================+=======+========+==============+=========+============+======================================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497 | rETH-WETH-BPT | 500 | 0x00b9bcd17cb049739d25fd7f826caa2e23b05620 | 0.02% | 100.0% | L0 sidechain | BIP-547 | 0 | ['WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)', 'rETH-WETH-BPT(0xadE4A71BB62bEc25154CFc7e6ff49A513B491E81)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | wstETH/rETH/sfrxETH | 1500 | 0x49f530b45ae792cdf5cbd5d25c5a9b9e59c6c3b8 | 0.04% | 100.0% | L0 sidechain | BIP-547 | 1 | ['wstETH/rETH/sfrxETH(0x0c8972437a38b389ec83d1E666b69b8a4fcf8bfd)', 'wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'sfrxETH(0x95aB45875cFFdba1E5f451B950bC2E42c0053f39)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | wstETH/rETH/cbETH | 1500 | 0x56c0626e6e3931af90ebb679a321225180d4b32b | 0.04% | 100.0% | L0 sidechain | BIP-547 | 2 | ['cbETH(0x1DEBd73E752bEaF79865Fd6446b0c970EaE7732f)', 'wstETH/rETH/cbETH(0x4a2F6Ae7F3e5D715689530873ec35593Dc28951B)', 'wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 6809.0 (RAW: 6809000000000000000000) | BIP-573 | 3 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 29400.0 (RAW: 29400000000) | BIP-573 | 4 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 61000.0 (RAW: 61000000000) | BIP-569 | 5 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 6342.0 (RAW: 6342000000000000000000) | BIP-569 | 6 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 165120.0 (RAW: 165120000000) | BIP-568 | 7 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 18625.0 (RAW: 18625000000000000000000) | BIP-568 | 8 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W14/tg_template.txt b/BIPs/00batched/2024-W14/tg_template.txt new file mode 100644 index 000000000..d71b7ded8 --- /dev/null +++ b/BIPs/00batched/2024-W14/tg_template.txt @@ -0,0 +1,15 @@ +Gm Gm all. Hope all the Europeans here had a nice long weekend. Here's this weeks payloads. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 240 +BIP-573: Fund Balancer Grants SP +BIP-569: Fund Balancer BD SP +BIP-568: Fund Balancer Maxis +BIP-547: rETH Arbitrum Gauge Migration (kills) + + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W14/ + + diff --git a/BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..59fb731e5 --- /dev/null +++ b/BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,162 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF", + "amount": "275000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-578-BAL-Vest.json", + "bip_number": "BIP-578" + } + }, + { + "to": "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "token", + "type": "address" + }, + { + "name": "recipient", + "type": "address" + }, + { + "name": "amount", + "type": "uint256" + }, + { + "name": "vesting_duration", + "type": "uint256" + }, + { + "name": "vesting_start", + "type": "uint256" + }, + { + "name": "cliff_length", + "type": "uint256" + }, + { + "name": "open_claim", + "type": "bool" + }, + { + "name": "support_vyper", + "type": "uint256" + } + ], + "name": "deploy_vesting_contract", + "payable": false + }, + "contractInputsValues": { + "token": "0xba100000625a3754423978a60c9317c58a424e3D", + "recipient": "0x74fEa3FB0eD030e9228026E7F413D66186d3D107", + "amount": "275000000000000000000000", + "vesting_duration": "126144000", + "vesting_start": "1707868800", + "cliff_length": "0", + "open_claim": "false", + "support_vyper": "0" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-578-BAL-Vest.json", + "bip_number": "BIP-578" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x74fea3fb0ed030e9228026e7f413d66186d3d107", + "value": "60000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-578-USDC-Mar-Apr.json", + "bip_number": "BIP-578" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-562B.json", + "bip_number": "BIP-562" + } + } + ] +} diff --git a/BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..6f7ef22d1 --- /dev/null +++ b/BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,90 @@ +FILENAME: `BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `fdedbb51b44c08ca3847bf9cdab5193cedaf1f9c` +CHAIN(S): `zkevm` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/34c4f282-2187-4b0b-a4f1-030d4e0c2811) +``` ++--------------------------+--------------------------------------------------------------------+----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+================+=====+============================================+=======+========+==============+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0xb1557cfea06de5a1601a7f0ccf3b515ef431a50d000200000000000000000059 | ECLP-wETH-rETH | N/A | 0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4 | 0.01% | 100.0% | L0 sidechain | BIP-562 | 3 | ['WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)', 'rETH(0xb23C20EFcE6e24Acca0Cef9B7B7aA196b84EC942)'] | ++--------------------------+--------------------------------------------------------------------+----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `fdedbb51b44c08ca3847bf9cdab5193cedaf1f9c` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/6cef3f4a-d10e-4e51-b47b-794bf3781a9c) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/wonderland:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 60000.0 (RAW: 60000000000) | BIP-578 | 2 | ++------------+-------------------------------------------------+-----------------------------------------------------------------+----------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W15/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `fdedbb51b44c08ca3847bf9cdab5193cedaf1f9c` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a26cfe61-d65a-4558-b7e9-4ce892741087) +``` ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=========================+=========================================================+=========+==================================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-578 | N/A | +| | | | "spender": [ | | | +| | | | "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF (N/A) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:275000000000000000000000, 18 decimals:275000.0, 6 decimals: 2.75e+17" | | | +| | | | ], | | | +| | | | [ | | | +| | | | 275000000000000000000000 | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +| deploy_vesting_contract | 0x200C92Dd85730872Ab6A1e7d5E40A067066257cF (Not Found) | 0 | { | BIP-578 | N/A | +| | | | "token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "recipient": [ | | | +| | | | "0x74fEa3FB0eD030e9228026E7F413D66186d3D107 (multisigs/wonderland) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:275000000000000000000000, 18 decimals:275000.0, 6 decimals: 2.75e+17" | | | +| | | | ], | | | +| | | | [ | | | +| | | | 275000000000000000000000 | | | +| | | | ] | | | +| | | | ], | | | +| | | | "vesting_duration": [ | | | +| | | | [ | | | +| | | | 126144000 | | | +| | | | ] | | | +| | | | ], | | | +| | | | "vesting_start": [ | | | +| | | | [ | | | +| | | | 1707868800 | | | +| | | | ] | | | +| | | | ], | | | +| | | | "cliff_length": [ | | | +| | | | [ | | | +| | | | 0 | | | +| | | | ] | | | +| | | | ], | | | +| | | | "open_claim": [ | | | +| | | | [ | | | +| | | | false | | | +| | | | ] | | | +| | | | ], | | | +| | | | "support_vyper": [ | | | +| | | | [ | | | +| | | | 0 | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W15/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W15/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..e8880d005 --- /dev/null +++ b/BIPs/00batched/2024-W15/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,284 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-582.json", + "bip_number": "BIP-582" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-580.json", + "bip_number": "BIP-580" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-583.json", + "bip_number": "BIP-583" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x41De33d3b227677af277b6c29CB2545195dF508c", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-583.json", + "bip_number": "BIP-583" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1c5007AF9907Ac83F6d391B18F28Fb2F5f8c9493", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-583.json", + "bip_number": "BIP-583" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-583.json", + "bip_number": "BIP-583" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x924ABE88022F9422a2938aE0741Fc2C769E85934", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-579.json", + "bip_number": "BIP-579" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x065885bDec1e571DC309d6d3576628419C13DB99", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-581.json", + "bip_number": "BIP-581" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x98fbf8Fc81edC411A53db921AB0eB82d97a6f123", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W15/BIP-584.json", + "bip_number": "BIP-584" + } + } + ] +} diff --git a/BIPs/00batched/2024-W15/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W15/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..f61d6a848 --- /dev/null +++ b/BIPs/00batched/2024-W15/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,44 @@ +FILENAME: `BIPs/00batched/2024-W15/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `fdedbb51b44c08ca3847bf9cdab5193cedaf1f9c` +CHAIN(S): `arbitrum, mainnet, base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/31465542-14c7-48b0-acc1-32f4b9570e7c) +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687 | ShezUSD/sDAI | 0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01 | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)", | "0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c", | BIP-582 | 0 | +| | pool_address: 0xEd0DF9Cd16D806E8A523805e53cf0c56E6dB4D1d | fee: 0.01, a-factor: 150 | Style: mainnet, cap: 2.0% | "ShezUSD(0xD60EeA80C83779a8A5BFCDAc1F3323548e6BB62d)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "ShezUSD/sDAI(0xEd0DF9Cd16D806E8A523805e53cf0c56E6dB4D1d)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x98bedb6a3c0b6feebbe662e6419481a6877d9681000000000000000000000104 | sfrxETH/cbETH | 0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c | "sfrxETH(0x1f55a02A049033E3419a8E2975cF3F572F4e6E9A)", | "0x1Fe586225989Dd88365C2D859670AA0A4379d7e4", | BIP-580 | 1 | +| | pool_address: 0x98BEDB6A3c0B6fEEbbe662E6419481a6877d9681 | fee: 0.04, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "cbETH(0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22)", | "0x3786a6CAAB433f5dfE56503207DF31DF87C5b5C1", | | | +| | | | | "sfrxETH/cbETH(0x98BEDB6A3c0B6fEEbbe662E6419481a6877d9681)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2f0cdf8596be980ef24924ca7bf54e630ca526b2000000000000000000000529 | sUSDe/USDC | 0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778 | "sUSDe(0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2)", | "0x3A236F67Fce401D87D7215695235e201966576E4", | BIP-583 | 2 | +| | pool_address: 0x2F0cDf8596Be980eF24924Ca7BF54E630cA526b2 | fee: 0.01, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "sUSDe/USDC(0x2F0cDf8596Be980eF24924Ca7BF54E630cA526b2)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x537d8ef9e6e0adfb099cb14aeaf04ebeffaf444c000000000000000000000528 | USDe/USDC | 0x41De33d3b227677af277b6c29CB2545195dF508c | "USDe/USDC(0x537D8ef9E6E0adfb099cB14aeAF04EBEFFAF444c)", | "0x0000000000000000000000000000000000000000", | BIP-583 | 3 | +| | pool_address: 0x537D8ef9E6E0adfb099cB14aeAF04EBEFFAF444c | fee: 0.01, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "USDe(0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x02a1e9f29e9a04dbb64114e78cb6cba20c22d73f00000000000000000000052a | sUSDe/USDe | 0x1c5007AF9907Ac83F6d391B18F28Fb2F5f8c9493 | "sUSDe/USDe(0x02A1E9F29E9a04Dbb64114E78Cb6cba20C22D73F)", | "0x0000000000000000000000000000000000000000", | BIP-583 | 4 | +| | pool_address: 0x02A1E9F29E9a04Dbb64114E78Cb6cba20C22D73F | fee: 0.01, a-factor: 1000 | Style: L0 sidechain, cap: 100.0% | "sUSDe(0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2)", | "0x3A236F67Fce401D87D7215695235e201966576E4", | | | +| | | | | "USDe(0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x59743f1812bb85db83e9e4ee061d124aaa64290000000000000000000000052b | sUSDe/sFRAX | 0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE | "sUSDe(0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2)", | "0x3A236F67Fce401D87D7215695235e201966576E4", | BIP-583 | 5 | +| | pool_address: 0x59743f1812bb85Db83e9e4EE061D124AAa642900 | fee: 0.01, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "sUSDe/sFRAX(0x59743f1812bb85Db83e9e4EE061D124AAa642900)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | "0x320CFa1a78d37a13C5D1cA5aA51563fF6Bb0f686" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x048158d7c77518bd72fdbe22d68719a9aaec75e0000200000000000000000688 | ECLP-pxETH-WETH | 0x924ABE88022F9422a2938aE0741Fc2C769E85934 | "pxETH(0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6)", | "0x0000000000000000000000000000000000000000", | BIP-579 | 6 | +| | pool_address: 0x048158D7c77518Bd72fDbE22D68719a9AAeC75e0 | fee: 0.04, a-factor: N/A | Style: mainnet, cap: 100.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x51c72451eddfcc08aae540fd36434bb7ba340d33000000000000000000000683 | mstETH/wstETH | 0x065885bDec1e571DC309d6d3576628419C13DB99 | "mstETH(0x49446A0874197839D15395B908328a74ccc96Bc0)", | "0xCC701e2D472dFa2857Bf9AE24c263DAa39fD2C61", | BIP-581 | 7 | +| | pool_address: 0x51C72451eDDFCC08AAe540Fd36434Bb7ba340d33 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "mstETH/wstETH(0x51C72451eDDFCC08AAe540Fd36434Bb7ba340d33)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)" | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x920ce9ec4c52e740ab4c3d36fb5454c274907ae500020000000000000000051b | 80PRF-20WETH | 0x98fbf8Fc81edC411A53db921AB0eB82d97a6f123 | "PRF(0x1310952Bc5594852459Ee45bfD0df70b34Ac5509)", | "0x0000000000000000000000000000000000000000", | BIP-584 | 8 | +| | pool_address: 0x920Ce9EC4c52e740Ab4C3D36Fb5454c274907aE5 | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W15/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W15/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..1b2950fc3 --- /dev/null +++ b/BIPs/00batched/2024-W15/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Base": "[0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c]", + "Arbitrum": "[0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778, 0x41De33d3b227677af277b6c29CB2545195dF508c, 0x1c5007AF9907Ac83F6d391B18F28Fb2F5f8c9493, 0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE, 0x98fbf8Fc81edC411A53db921AB0eB82d97a6f123]" +} diff --git a/BIPs/00batched/2024-W15/combined-report.md b/BIPs/00batched/2024-W15/combined-report.md new file mode 100644 index 000000000..743650df4 --- /dev/null +++ b/BIPs/00batched/2024-W15/combined-report.md @@ -0,0 +1,82 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/eea7f5c4-754c-43b9-86c4-cb14015cbcea) + +[Sign Nonce 241](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + + +``` ++--------------------------+--------------------------------------------------------------------+----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+================+=====+============================================+=======+========+==============+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0xb1557cfea06de5a1601a7f0ccf3b515ef431a50d000200000000000000000059 | ECLP-wETH-rETH | N/A | 0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4 | 0.01% | 100.0% | L0 sidechain | BIP-562 | 3 | ['WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)', 'rETH(0xb23C20EFcE6e24Acca0Cef9B7B7aA196b84EC942)'] | ++--------------------------+--------------------------------------------------------------------+----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/wonderland:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 60000.0 (RAW: 60000000000) | BIP-578 | 2 | ++------------+-------------------------------------------------+-----------------------------------------------------------------+----------------------------+---------+------------+ +``` +``` ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=========================+=========================================================+=========+==================================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-578 | N/A | +| | | | "spender": [ | | | +| | | | "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF (N/A) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:275000000000000000000000, 18 decimals:275000.0, 6 decimals: 2.75e+17" | | | +| | | | ], | | | +| | | | [ | | | +| | | | 275000000000000000000000 | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +| deploy_vesting_contract | 0x200C92Dd85730872Ab6A1e7d5E40A067066257cF (Not Found) | 0 | { | BIP-578 | N/A | +| | | | "token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "recipient": [ | | | +| | | | "0x74fEa3FB0eD030e9228026E7F413D66186d3D107 (multisigs/wonderland) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:275000000000000000000000, 18 decimals:275000.0, 6 decimals: 2.75e+17" | | | +| | | | ], | | | +| | | | [ | | | +| | | | 275000000000000000000000 | | | +| | | | ] | | | +| | | | ], | | | +| | | | "vesting_duration": [ | | | +| | | | [ | | | +| | | | 126144000 | | | +| | | | ] | | | +| | | | ], | | | +| | | | "vesting_start": [ | | | +| | | | [ | | | +| | | | 1707868800 | | | +| | | | ] | | | +| | | | ], | | | +| | | | "cliff_length": [ | | | +| | | | [ | | | +| | | | 0 | | | +| | | | ] | | | +| | | | ], | | | +| | | | "open_claim": [ | | | +| | | | [ | | | +| | | | false | | | +| | | | ] | | | +| | | | ], | | | +| | | | "support_vyper": [ | | | +| | | | [ | | | +| | | | 0 | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W15/tg_template.txt b/BIPs/00batched/2024-W15/tg_template.txt new file mode 100644 index 000000000..7450bf198 --- /dev/null +++ b/BIPs/00batched/2024-W15/tg_template.txt @@ -0,0 +1,13 @@ +Gm Gm all. Hope all the Europeans here had a nice long weekend. Here's this weeks payloads. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 241 +BIP-562: Kill old wstETH/ETH gauge on zkEVM +BIP-578: Fund Wonderland + + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W15/ + + diff --git a/BIPs/00batched/2024-W17/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W17/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..ed0d1df62 --- /dev/null +++ b/BIPs/00batched/2024-W17/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,224 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-518-5.json", + "bip_number": "BIP-518" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-519-5.json", + "bip_number": "BIP-519" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c]", + "account": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c, 0xcd61e70763e513c8c738ee449caf88b90566b2b193bb69d88856f6eb9d0d1f45, 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901, 0xdf9e7dec263e17ae8ec6c062f6f6076b90a1bccc2b50462ee12b4d98d23846c0]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x4a19dd39fa8f4bbd7452fd4cf82679df5cf73700c2b6b88c1243653f0e85260e, 0x7106e3d8f9c8398d705d56aa3dd355670b20ec766484954c9e74d61fd3aec3ad, 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84, 0xf611f8b232e4be511caea74a4b9a6dea519d09225c9cf5d0e4a4bef44e006f71]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84]", + "account": "0x1b300C86980a5195bCF49bD419A068D98dC133Db" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W17/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..6477899c4 --- /dev/null +++ b/BIPs/00batched/2024-W17/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,40 @@ +FILENAME: `BIPs/00batched/2024-W17/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `mainnet` +TENDERLY: [SKIPPED] +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 1 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W17/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `mainnet` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | cow/settlement | 0x9008D19f58AAbD9eD0D60971565AA8510560ab41 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 4 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xcd61e70763e513c8c738ee449caf88b90566b2b193bb69d88856f6eb9d0d1f45 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xdf9e7dec263e17ae8ec6c062f6f6076b90a1bccc2b50462ee12b4d98d23846c0 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x4a19dd39fa8f4bbd7452fd4cf82679df5cf73700c2b6b88c1243653f0e85260e | BIP-585 | 5 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x7106e3d8f9c8398d705d56aa3dd355670b20ec766484954c9e74d61fd3aec3ad | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0xf611f8b232e4be511caea74a4b9a6dea519d09225c9cf5d0e4a4bef44e006f71 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | BIP-585 | 6 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W17/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..7c32cad00 --- /dev/null +++ b/BIPs/00batched/2024-W17/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-586.json", + "bip_number": "BIP-586" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W17/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..3fb3eac08 --- /dev/null +++ b/BIPs/00batched/2024-W17/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/00batched/2024-W17/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/66c37c15-c878-45e7-8459-c8a331bbe3d1) +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | sUSDe/USDC | 0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC | "sUSDe(0x9D39A5DE30e57443BfF2A8307A4256c8797A3497)", | "0x3A244e6B3cfed21593a5E5B347B593C0B48C7dA1", | BIP-586 | 0 | +| | pool_address: 0xb819feeF8F0fcDC268AfE14162983A69f6BF179E | fee: 0.2, a-factor: 100 | Style: mainnet, cap: 100.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sUSDe/USDC(0xb819feeF8F0fcDC268AfE14162983A69f6BF179E)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/2024-W17/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..90d32a278 --- /dev/null +++ b/BIPs/00batched/2024-W17/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5, 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08, 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3, 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_optimism.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997, 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff, 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_optimism.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff]", + "account": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_optimism.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt b/BIPs/00batched/2024-W17/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt new file mode 100644 index 000000000..abd7abe61 --- /dev/null +++ b/BIPs/00batched/2024-W17/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W17/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `optimism` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | BIP-585 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2024-W17/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..be982ebdd --- /dev/null +++ b/BIPs/00batched/2024-W17/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x33b91e3688acaca9acc4caca69aa910c3140d6956ee3bbd6d5ccd3ab6df92c97, 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x55732eccb480f3fab3813ed3595584071ded9c10d3f82947f88572b5f0df5e46, 0xe7872d99e0351185f0ba58a9a987df315ecf7515645b82e84625b62456dc4868]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd, 0xc571be1313415036a074b5a131d47f9d271f37b6d0e2d441d3f175dc0abb9456, 0xe4e8dda6c4932e728b19aef0812933d9c816ff8184e98194fdf8ceb34a9b3d64, 0xf82a7b23f77e12dee3dd6da58497c97c35be0a9b9357687db117c20f78edec24]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd]", + "account": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00batched/2024-W17/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..623522efd --- /dev/null +++ b/BIPs/00batched/2024-W17/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W17/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `gnosis` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x33b91e3688acaca9acc4caca69aa910c3140d6956ee3bbd6d5ccd3ab6df92c97 | BIP-585 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x55732eccb480f3fab3813ed3595584071ded9c10d3f82947f88572b5f0df5e46 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xe7872d99e0351185f0ba58a9a987df315ecf7515645b82e84625b62456dc4868 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xc571be1313415036a074b5a131d47f9d271f37b6d0e2d441d3f175dc0abb9456 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0xe4e8dda6c4932e728b19aef0812933d9c816ff8184e98194fdf8ceb34a9b3d64 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0xf82a7b23f77e12dee3dd6da58497c97c35be0a9b9357687db117c20f78edec24 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00batched/2024-W17/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..57fb0fd60 --- /dev/null +++ b/BIPs/00batched/2024-W17/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0814546dc2f9071f966a272ec2747ac2f00be36ebcd0f81f0d184512f1b52228, 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656, 0x3be35af4fe52441201647f4d6699cfd4b8b5ebc18baac708ab15d9a22797f87f, 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c, 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154, 0x51530e1d909caf846c8075a98e41431ffe7e18eabf84b1f3ebade86b84547d30, 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951, 0xd12b97e317782dac10c3547fc977708cf0a2ebe3621f880b6f89236e760278ee]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt b/BIPs/00batched/2024-W17/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt new file mode 100644 index 000000000..120f0ee11 --- /dev/null +++ b/BIPs/00batched/2024-W17/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/00batched/2024-W17/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `zkevm` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x0814546dc2f9071f966a272ec2747ac2f00be36ebcd0f81f0d184512f1b52228 | BIP-585 | 0 | +| | | | 20230711-zkevm-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x3be35af4fe52441201647f4d6699cfd4b8b5ebc18baac708ab15d9a22797f87f | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x51530e1d909caf846c8075a98e41431ffe7e18eabf84b1f3ebade86b84547d30 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xd12b97e317782dac10c3547fc977708cf0a2ebe3621f880b6f89236e760278ee | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2024-W17/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..17f21b714 --- /dev/null +++ b/BIPs/00batched/2024-W17/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_polygon.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186, 0x421e910d9d2e701d0e181f997548467a67a50d9164124de8434f6f8ad348d82e, 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263, 0xc58a329b76e9a2243a49522312dfe6f54cdc155e08499573ab4d7d6ffe75df5a]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_polygon.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0483d53ea1eab1f6633a661730adf42ee3fa58361709e86cea2f136357ac0198, 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81, 0x34f66ef5706b2abf916d3f719040884c962d3a419b90ec8af8fb2c1f6ea4e313, 0xdc8bb9d1a82e326efeefddf0b599e6bc40ffb40e96faf0cef63f9c6cd600633f]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_polygon.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81]", + "account": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_polygon.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt b/BIPs/00batched/2024-W17/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt new file mode 100644 index 000000000..55861aa20 --- /dev/null +++ b/BIPs/00batched/2024-W17/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt @@ -0,0 +1,24 @@ +FILENAME: `BIPs/00batched/2024-W17/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `polygon` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | BIP-585 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x421e910d9d2e701d0e181f997548467a67a50d9164124de8434f6f8ad348d82e | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xc58a329b76e9a2243a49522312dfe6f54cdc155e08499573ab4d7d6ffe75df5a | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x0483d53ea1eab1f6633a661730adf42ee3fa58361709e86cea2f136357ac0198 | BIP-585 | 2 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x34f66ef5706b2abf916d3f719040884c962d3a419b90ec8af8fb2c1f6ea4e313 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xdc8bb9d1a82e326efeefddf0b599e6bc40ffb40e96faf0cef63f9c6cd600633f | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | BIP-585 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2024-W17/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..fb677c646 --- /dev/null +++ b/BIPs/00batched/2024-W17/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad, 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5, 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3, 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997, 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff, 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff]", + "account": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2024-W17/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..a2356daa6 --- /dev/null +++ b/BIPs/00batched/2024-W17/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,24 @@ +FILENAME: `BIPs/00batched/2024-W17/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `arbitrum` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | maxiKeepers/one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | BIP-585 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-585 | 2 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-585 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2024-W17/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..8657c8d9c --- /dev/null +++ b/BIPs/00batched/2024-W17/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed, 0x81cdf61d73f9758e4ea06a1c95ee9fa99de9941b89ee79ee97feea474543674f, 0x85fd49342760df94da4da1b8ae0954817843ed72ece3540120eb528bc152f903, 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6]", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0462c9b84b87fb6c25d52862b1a17b86e48ee92d7d5a7136304e1195efca03d6, 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a, 0x4c0e8aa6e2b05a19aefb892998330bff4b68f678770e82ef361d646c908463aa, 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a]", + "account": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt b/BIPs/00batched/2024-W17/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt new file mode 100644 index 000000000..49926e1dc --- /dev/null +++ b/BIPs/00batched/2024-W17/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W17/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `avalanche` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | BIP-585 | 0 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x81cdf61d73f9758e4ea06a1c95ee9fa99de9941b89ee79ee97feea474543674f | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x85fd49342760df94da4da1b8ae0954817843ed72ece3540120eb528bc152f903 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x0462c9b84b87fb6c25d52862b1a17b86e48ee92d7d5a7136304e1195efca03d6 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x4c0e8aa6e2b05a19aefb892998330bff4b68f678770e82ef361d646c908463aa | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/00batched/2024-W17/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..6582e4f7d --- /dev/null +++ b/BIPs/00batched/2024-W17/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85, 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313, 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09, 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4]", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_base.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656, 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e, 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35, 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_base.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e]", + "account": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W17/BIP-585/2024-04-18_base.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W17/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/00batched/2024-W17/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..9b564341b --- /dev/null +++ b/BIPs/00batched/2024-W17/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W17/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `8fccec7306fa3179a837eb7913f2fd877cc647b9` +CHAIN(S): `base` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | BIP-585 | 0 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/combined-report.md b/BIPs/00batched/2024-W17/combined-report.md new file mode 100644 index 000000000..a8e0ddbca --- /dev/null +++ b/BIPs/00batched/2024-W17/combined-report.md @@ -0,0 +1,193 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/fef41cba-9628-4632-bbfd-6daf6a5ff536) + +[Sign Nonce 242](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 1 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | cow/settlement | 0x9008D19f58AAbD9eD0D60971565AA8510560ab41 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 4 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xcd61e70763e513c8c738ee449caf88b90566b2b193bb69d88856f6eb9d0d1f45 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xdf9e7dec263e17ae8ec6c062f6f6076b90a1bccc2b50462ee12b4d98d23846c0 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x4a19dd39fa8f4bbd7452fd4cf82679df5cf73700c2b6b88c1243653f0e85260e | BIP-585 | 5 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x7106e3d8f9c8398d705d56aa3dd355670b20ec766484954c9e74d61fd3aec3ad | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0xf611f8b232e4be511caea74a4b9a6dea519d09225c9cf5d0e4a4bef44e006f71 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | BIP-585 | 6 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Optimsim DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/32410951-f207-4ab6-a192-32a52d3d0cb8) + +[Sign Nonce 30](https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | BIP-585 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Gnosis DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/4e7cb1d7-b5eb-4f25-b95d-444d186af66a) + +[Sign Nonce 24](https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) + +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x33b91e3688acaca9acc4caca69aa910c3140d6956ee3bbd6d5ccd3ab6df92c97 | BIP-585 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x55732eccb480f3fab3813ed3595584071ded9c10d3f82947f88572b5f0df5e46 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xe7872d99e0351185f0ba58a9a987df315ecf7515645b82e84625b62456dc4868 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xc571be1313415036a074b5a131d47f9d271f37b6d0e2d441d3f175dc0abb9456 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0xe4e8dda6c4932e728b19aef0812933d9c816ff8184e98194fdf8ceb34a9b3d64 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0xf82a7b23f77e12dee3dd6da58497c97c35be0a9b9357687db117c20f78edec24 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Polygon DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/8b632ae4-0b3c-4216-8912-0ed0ece41d6c) + +[Sign Nonce 34](https://app.safe.global/transactions/queue?safe=matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) + +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | BIP-585 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x421e910d9d2e701d0e181f997548467a67a50d9164124de8434f6f8ad348d82e | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xc58a329b76e9a2243a49522312dfe6f54cdc155e08499573ab4d7d6ffe75df5a | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x0483d53ea1eab1f6633a661730adf42ee3fa58361709e86cea2f136357ac0198 | BIP-585 | 2 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x34f66ef5706b2abf916d3f719040884c962d3a419b90ec8af8fb2c1f6ea4e313 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xdc8bb9d1a82e326efeefddf0b599e6bc40ffb40e96faf0cef63f9c6cd600633f | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | BIP-585 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## zkEVM DAO Multisig +No Tenderly + +[Sign Nonce 12](https://app.safe.global/transactions/queue?safe=zkevm%3A0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) + +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x0814546dc2f9071f966a272ec2747ac2f00be36ebcd0f81f0d184512f1b52228 | BIP-585 | 0 | +| | | | 20230711-zkevm-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x3be35af4fe52441201647f4d6699cfd4b8b5ebc18baac708ab15d9a22797f87f | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x51530e1d909caf846c8075a98e41431ffe7e18eabf84b1f3ebade86b84547d30 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xd12b97e317782dac10c3547fc977708cf0a2ebe3621f880b6f89236e760278ee | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Base DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/7c6f3859-3697-4ce7-aa6f-f0777cda9a51) + +[Sign Nonce 7](https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462) + +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | BIP-585 | 0 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +## Arbitrum DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/6a09c05d-53ca-4f31-8ac5-6ff531f110d2) + +[Sign Nonce 42](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | maxiKeepers/one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | BIP-585 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-585 | 2 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-585 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` + +## AVAX DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/af279b72-796e-41f7-b205-a1a3c997eedc) + +[Sign Nonce 18](https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) + +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | BIP-585 | 0 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x81cdf61d73f9758e4ea06a1c95ee9fa99de9941b89ee79ee97feea474543674f | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x85fd49342760df94da4da1b8ae0954817843ed72ece3540120eb528bc152f903 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x0462c9b84b87fb6c25d52862b1a17b86e48ee92d7d5a7136304e1195efca03d6 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x4c0e8aa6e2b05a19aefb892998330bff4b68f678770e82ef361d646c908463aa | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W17/tg_template.txt b/BIPs/00batched/2024-W17/tg_template.txt new file mode 100644 index 000000000..e4b06caa0 --- /dev/null +++ b/BIPs/00batched/2024-W17/tg_template.txt @@ -0,0 +1,38 @@ +Gm Gm all. Been a week to, but this one is a big one. Please note 2 transactions on mainnet this week + permissions adds on each chain. +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 241 - Delayed to finish contract work with Wonerland +BIP-562: Kill old wstETH/ETH gauge on zkEVM +BIP-578: Fund Wonderland +Please also Sign Nonce 242 +BIP-518&519: Fund Beets +BIP-585: Enable CSPV6 (long pause) + +Op: https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc +Please Sign Nonce 30 +BIP-585: Enable CSPV6 (long pause) + +Gnosis: https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 +Please Sign Nonce 24 +BIP-585: Enable CSPV6 (long pause) + +Polygon: https://app.safe.global/transactions/queue?safe=matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 +Please Sign Nonce 34 +BIP-585: Enable CSPV6 (long pause) + +zkEVM: https://app.safe.global/transactions/queue?safe=zkevm%3A0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa +Please Sign Nonce 12 +BIP-585: Enable CSPV6 (long pause) + +Base: https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462 +Please Sign Nonce 7 +BIP-585: Enable CSPV6 (long pause) + +AVAX: https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 +Please Sign Nonce 42 +BIP-585: Enable CSPV6 (long pause) + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W17/ + + diff --git a/BIPs/00batched/2024-W18/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W18/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..0ec70bafa --- /dev/null +++ b/BIPs/00batched/2024-W18/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x74fea3fb0ed030e9228026e7f413d66186d3d107", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W18/BIP-578-USDC-May.json", + "bip_number": "BIP-578" + } + } + ] +} diff --git a/BIPs/00batched/2024-W18/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W18/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..6648a2d91 --- /dev/null +++ b/BIPs/00batched/2024-W18/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W18/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0c0d634a82542428f12888208454027ff0702d08` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cd5a60c6-6f27-42a0-85fa-f33301d42be4) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/wonderland:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 30000.0 (RAW: 30000000000) | BIP-578 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W18/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W18/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..e6ba472ef --- /dev/null +++ b/BIPs/00batched/2024-W18/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf21F8CC39f5858cb2eAF5654a863C9b034AE451F", + "gaugeType": "PolygonZkEvm" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W18/BIP-593.json", + "bip_number": "BIP-593" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W18/BIP-595 sDAI-aUSDC on Optimism.json", + "bip_number": "BIP-595" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W18/BIP-594.json", + "bip_number": "BIP-594" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7542967F91fD6EE8433A41B22C2be8972A002CA5", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W18/BIP-594.json", + "bip_number": "BIP-594" + } + } + ] +} diff --git a/BIPs/00batched/2024-W18/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W18/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..1f29b5dce --- /dev/null +++ b/BIPs/00batched/2024-W18/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/00batched/2024-W18/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0c0d634a82542428f12888208454027ff0702d08` +CHAIN(S): `arbitrum, zkevm, optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/66e727f1-7492-4e67-a4dd-ce0f6b446e14) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xe58cd0c79cdff6252476b3445bee1400503e0ae0000200000000000000000066 | ECLP-wstETH-WETH | 0xf21F8CC39f5858cb2eAF5654a863C9b034AE451F | "WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)", | "0x0000000000000000000000000000000000000000", | BIP-593 | 0 | +| | pool_address: 0xe58cD0C79CDff6252476b3445BEE1400503e0aE0 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5D8cfF95D7A57c0BF50B30b43c7CC0D52825D4a9)" | "0x8dd590Ebb702C21A41289A0a69B0C6F74BdeCE75" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x876e0a21626c33bdab879330505eccc6091aa60700020000000000000000012e | GDSRH | 0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf | "sDAI(0x2218a117083f5B482B0bB821d27056Ba9c04b1D3)", | "0x15ACEE5F73b36762Ab1a6b7C98787b8148447898", | BIP-595 | 1 | +| | pool_address: 0x876E0A21626c33BDaB879330505eccc6091Aa607 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "stataOptUSDCn(0x4DD03dfD36548C840B563745e3FBeC320F37BA7e)" | "0xdFa8d2b3c146b8a10B5d63CA0306AEa84B602cfb" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x260dbd54d87a10a0fc9d08622ebc969a3bf4e6bb000200000000000000000536 | jitoSOL/wstETH | 0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-594 | 2 | +| | pool_address: 0x260Dbd54D87A10A0Fc9D08622Ebc969A3Bf4E6bb | fee: 0.1, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "JitoSOL(0x83e1d2310Ade410676B1733d16e89f91822FD5c3)" | "0x8aa73EC870DC4a0af6b471937682a8FC3b8A21f8" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xfb2f7ed572589940e24c5711c002adc59d5e79ef000000000000000000000535 | jitoSOL/wSOL | 0x7542967F91fD6EE8433A41B22C2be8972A002CA5 | "SOL(0x2bcC6D6CdBbDC0a4071e48bb3B969b06B3330c07)", | "0x0000000000000000000000000000000000000000", | BIP-594 | 3 | +| | pool_address: 0xFB2f7eD572589940e24c5711c002aDC59D5e79Ef | fee: 0.1, a-factor: 100 | Style: L0 sidechain, cap: 100.0% | "JitoSOL(0x83e1d2310Ade410676B1733d16e89f91822FD5c3)", | "0x8aa73EC870DC4a0af6b471937682a8FC3b8A21f8", | | | +| | | | | "jitoSOL/wSOL(0xFB2f7eD572589940e24c5711c002aDC59D5e79Ef)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W18/BIP-592-arbitrum.json b/BIPs/00batched/2024-W18/BIP-592-arbitrum.json new file mode 100644 index 000000000..2336fbfa7 --- /dev/null +++ b/BIPs/00batched/2024-W18/BIP-592-arbitrum.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1714026165308, + "meta": { + "name": "ARB Tx Batch", + "description": "Withdraw full position from AuraArbBalGrant contract", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x9d72467150d93ae3bb733a7d0f2c37ac3690d71451f7c6821f6634f2accd9080" + }, + "transactions": [ + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256[]", + "name": "_minOuts", + "type": "uint256[]" + } + ], + "name": "exit", + "payable": false + }, + "contractInputsValues": { + "_minOuts": "[361088999999999976669184, 2046856500000000053346304, 1282351499999999948750848]" + } + }, + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "withdrawBalances", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00batched/2024-W18/BIP-592-arbitrum.report.txt b/BIPs/00batched/2024-W18/BIP-592-arbitrum.report.txt new file mode 100644 index 000000000..7bb10688b --- /dev/null +++ b/BIPs/00batched/2024-W18/BIP-592-arbitrum.report.txt @@ -0,0 +1,20 @@ +FILENAME: `BIPs/00batched/2024-W18/BIP-592-arbitrum.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `0c0d634a82542428f12888208454027ff0702d08` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ea457e90-a252-4a39-a5a9-7c0853d4d41a) +``` ++------------------+-----------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=========================================================================================+=========+======================================================================================================================+==============+============+ +| exit | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (TreasuryExtentions/AURA_ARB_BAL_LP_BIP_322) | 0 | { | BIP-592 | N/A | +| | | | "_minOuts": [ | | | +| | | | "raw:361088999999999976669184, 18 decimals:361088.999999999976669184, 6 decimals: 361088999999999976.669184", | | | +| | | | "raw:2046856500000000053346304, 18 decimals:2046856.500000000053346304, 6 decimals: 2046856500000000053.346304", | | | +| | | | "raw:1282351499999999948750848, 18 decimals:1282351.499999999948750848, 6 decimals: 1282351499999999948.750848" | | | +| | | | ] | | | +| | | | } | | | ++------------------+-----------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| withdrawBalances | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (TreasuryExtentions/AURA_ARB_BAL_LP_BIP_322) | 0 | "N/A" | BIP-592 | N/A | ++------------------+-----------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W18/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W18/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..9a00c6dc1 --- /dev/null +++ b/BIPs/00batched/2024-W18/checkpointer_gauges_by_chain.json @@ -0,0 +1,5 @@ +{ + "PolygonZkEvm": "[0xf21F8CC39f5858cb2eAF5654a863C9b034AE451F]", + "Optimism": "[0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf]", + "Arbitrum": "[0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E, 0x7542967F91fD6EE8433A41B22C2be8972A002CA5]" +} diff --git a/BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..daf119a77 --- /dev/null +++ b/BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,254 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x20cF5bA8aBA68Cd7Ca3d0cAfAc54dA807c772418", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + }, + { + "name": "amountAllocated", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "merkleProof": "[0xe3f30724dc7b68f4dc7bef54b812e18454d9b9b278887f4f09de5ee8dd2fbb97,0x403b039b300b5d3f14f5a95011807ad1f279c31b5c6668e9dad1cbd43d5d9271,0x25ddc11367cfc9aeab1086adcc396ffdaeb90e491021ab488fcacd43037cd4e6,0xc2628e8800f0dbbce626dcf83c09a30a5a97d79413dcb79ca32a75d3cc1e66b8,0x933f0c6611414cc50cc739051a4e8140ca04f4ca6113746cedf8e9174aa9a6df]", + "amountAllocated": "119196472786989781864064" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-598-claim-extra-SAFE.json", + "bip_number": "BIP-598" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.json", + "bip_number": "BIP-601" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x87306F713EaB296f87CA4519295668fb4Bd51F04", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.json", + "bip_number": "BIP-601" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x30cEE2F8Cb8e53FC587f6B2578241a118188D530", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.json", + "bip_number": "BIP-600" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x597AEbfe41dCc042db206Eb888c42560a22c9303", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.json", + "bip_number": "BIP-599" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7f5A5c80cEeB1C91718a71030F67788F3810be98", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.json", + "bip_number": "BIP-603" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9b2defbf22be1ccd63f36dadf69842feb5e7b8df", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.json", + "bip_number": "BIP-602" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.json", + "bip_number": "BIP-602" + } + } + ] +} diff --git a/BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..fe9aad32a --- /dev/null +++ b/BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,100 @@ +FILENAME: `BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6f147cee905b92c3f68aa1653937e8dcb5072128` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/06a5c8af-122f-4ead-a683-ae02b67d1c58) +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-601 | 1 | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-602 | 7 | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6f147cee905b92c3f68aa1653937e8dcb5072128` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/15f239c7-0cf3-4f57-9507-17d152aefd67) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+==================================================================================================================+==============+============+ +| claim | 0x20cF5bA8aBA68Cd7Ca3d0cAfAc54dA807c772418 (Not Found) | 0 | { | BIP-598 | N/A | +| | | | "merkleProof": [ | | | +| | | | "0xe3f30724dc7b68f4dc7bef54b812e18454d9b9b278887f4f09de5ee8dd2fbb97", | | | +| | | | "0x403b039b300b5d3f14f5a95011807ad1f279c31b5c6668e9dad1cbd43d5d9271", | | | +| | | | "0x25ddc11367cfc9aeab1086adcc396ffdaeb90e491021ab488fcacd43037cd4e6", | | | +| | | | "0xc2628e8800f0dbbce626dcf83c09a30a5a97d79413dcb79ca32a75d3cc1e66b8", | | | +| | | | "0x933f0c6611414cc50cc739051a4e8140ca04f4ca6113746cedf8e9174aa9a6df" | | | +| | | | ], | | | +| | | | "amountAllocated": [ | | | +| | | | "raw:119196472786989781864064, 18 decimals:119196.472786989781864064, 6 decimals: 119196472786989781.864064" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-601 | N/A | +| | | | "target": [ | | | +| | | | "0x87306F713EaB296f87CA4519295668fb4Bd51F04 (root_gauges/ECLP-paUSD-USDC-rh-polygon-root-8730)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-600 | N/A | +| | | | "target": [ | | | +| | | | "0x30cEE2F8Cb8e53FC587f6B2578241a118188D530 (N/A)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-599 | N/A | +| | | | "target": [ | | | +| | | | "0x597AEbfe41dCc042db206Eb888c42560a22c9303 (N/A)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-603 | N/A | +| | | | "target": [ | | | +| | | | "0x7f5A5c80cEeB1C91718a71030F67788F3810be98 (root_gauges/ECLP-PAR-EUROe-polygon-root-7f5a)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-602 | N/A | +| | | | "target": [ | | | +| | | | "0x9b2defbf22bE1CCD63f36DADf69842FEB5e7b8Df (root_gauges/ECLP-PAR-EURe-polygon-root-9b2d)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W19/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W19/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..f1cfd0c1a --- /dev/null +++ b/BIPs/00batched/2024-W19/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,224 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9b2defbf22be1ccd63f36dadf69842feb5e7b8df", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-602-enable-par-eure-gauge-polygon.json", + "bip_number": "BIP-602" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-596.json", + "bip_number": "BIP-596" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x87306F713EaB296f87CA4519295668fb4Bd51F04", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json", + "bip_number": "BIP-601" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7f5A5c80cEeB1C91718a71030F67788F3810be98", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-603-enable-par-eura-gauge-polygon.json", + "bip_number": "BIP-603" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x597AEbfe41dCc042db206Eb888c42560a22c9303", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-599-PAR-EURA-gauge-mainnet.json", + "bip_number": "BIP-599" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x30cEE2F8Cb8e53FC587f6B2578241a118188D530", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-600-paUSD-GYD-gauge.json", + "bip_number": "BIP-600" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W19/BIP-604.json", + "bip_number": "BIP-604" + } + } + ] +} diff --git a/BIPs/00batched/2024-W19/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W19/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..fdcc27e13 --- /dev/null +++ b/BIPs/00batched/2024-W19/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,32 @@ +FILENAME: `BIPs/00batched/2024-W19/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6f147cee905b92c3f68aa1653937e8dcb5072128` +CHAIN(S): `base, mainnet, polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/6028be6c-a64a-4d26-86d5-9ef13b32facc) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x121363653c22f1c8bccbbf1b1aa8e1af85929784000200000000000000000e75 | ECLP-PAR-EURe | 0x9b2defbf22be1ccd63f36dadf69842feb5e7b8df | "EURe (0x18ec0A6E18E5bc3784fDd3a3634b31245ab704F6)", | "0x0000000000000000000000000000000000000000", | BIP-602 | 0 | +| | pool_address: 0x121363653c22F1c8bccBbf1b1aA8e1af85929784 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "PAR (0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | weETH/wETH | 0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D | "weETH (0x04C0599Ae5A44757c0af6F9eC3b93da8976c150A)", | "0x5a7A419C59eAAdec8Dc00bc93ac95612e6e154Cf", | BIP-596 | 1 | +| | pool_address: 0xaB99a3e856dEb448eD99713dfce62F937E2d4D74 | fee: 0.04, a-factor: 600 | Style: L0 sidechain, cap: 100.0% | "WETH (0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "weETH/wETH (0xaB99a3e856dEb448eD99713dfce62F937E2d4D74)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc77a0c0998816f7862aba46f19be6dda7cbb65a8000200000000000000000e77 | ECLP-paUSD-USDC-rh | 0x87306F713EaB296f87CA4519295668fb4Bd51F04 | "stataPolUSDCn (0x2dCa80061632f3F87c9cA28364d1d0c30cD79a19)", | "0x7d10050F608c8EFFf118eDd1416D82a0EF2d7531", | BIP-601 | 2 | +| | pool_address: 0xc77A0c0998816f7862aba46F19be6DDa7cbb65a8 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "paUSD (0x8054d4D130C3A84852f379424Bcac75673a7486B)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xba773022202887379f0733f111e4580f53296ada000200000000000000000e76 | ECLP-PAR-EUROe | 0x7f5A5c80cEeB1C91718a71030F67788F3810be98 | "EUROe (0x820802Fa8a99901F52e39acD21177b0BE6EE2974)", | "0x0000000000000000000000000000000000000000", | BIP-603 | 3 | +| | pool_address: 0xBA773022202887379f0733f111E4580F53296ada | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "PAR (0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2044afef1268100918f88de66a3532eab3d8f3ef00020000000000000000068a | ECLP-PAR-EURA | 0x597AEbfe41dCc042db206Eb888c42560a22c9303 | "EURA (0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8)", | "0x0000000000000000000000000000000000000000", | BIP-599 | 4 | +| | pool_address: 0x2044aFEF1268100918F88De66a3532Eab3D8f3ef | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "PAR (0x68037790A0229e9Ce6EaA8A99ea92964106C4703)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xae2d97cbbc13b67988eced2aba0f6939655ed3de00020000000000000000068b | ECLP-paUSD-GYD | 0x30cEE2F8Cb8e53FC587f6B2578241a118188D530 | "paUSD (0x571f54D23cDf2211C83E9A0CbD92AcA36c48Fa02)", | "0x0000000000000000000000000000000000000000", | BIP-600 | 5 | +| | pool_address: 0xae2D97CbBc13B67988ECEd2abA0F6939655eD3De | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD (0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x821afe819450a359e29a5209c48f2fa3321c8ad200020000000000000000010d | ECLP-sDAI-USDC-rh | 0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1 | "stataBasUSDC (0x4EA71A20e655794051D1eE8b6e4A3269B13ccaCc)", | "0x4467Ab7BC794bb3929d77e826328BD378bf5392F", | BIP-604 | 6 | +| | pool_address: 0x821aFE819450A359E29a5209C48f2Fa3321C8AD2 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sDAI (0x99aC4484e8a1dbd6A185380B3A811913Ac884D87)" | "0xeC0C14Ea7fF20F104496d960FDEBF5a0a0cC14D0" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W19/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W19/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..12794b702 --- /dev/null +++ b/BIPs/00batched/2024-W19/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Polygon": "[0x9b2defbf22be1ccd63f36dadf69842feb5e7b8df, 0x87306F713EaB296f87CA4519295668fb4Bd51F04, 0x7f5A5c80cEeB1C91718a71030F67788F3810be98]", + "Base": "[0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D, 0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1]" +} diff --git a/BIPs/00batched/2024-W19/combined-report.md b/BIPs/00batched/2024-W19/combined-report.md new file mode 100644 index 000000000..903955961 --- /dev/null +++ b/BIPs/00batched/2024-W19/combined-report.md @@ -0,0 +1,100 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/ce6e1e5a-43fb-4b6d-93cf-b6ba18151033) + +[Sign Nonce 244](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-601 | 1 | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-602 | 7 | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W19/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e5cb8adfd35d7aa1caa06ec83b3069c1b640f369` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a3f489cc-056f-4f5a-9862-42a602539e8c) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+==================================================================================================================+==============+============+ +| claim | 0x20cF5bA8aBA68Cd7Ca3d0cAfAc54dA807c772418 (Not Found) | 0 | { | BIP-598 | N/A | +| | | | "merkleProof": [ | | | +| | | | "0xe3f30724dc7b68f4dc7bef54b812e18454d9b9b278887f4f09de5ee8dd2fbb97", | | | +| | | | "0x403b039b300b5d3f14f5a95011807ad1f279c31b5c6668e9dad1cbd43d5d9271", | | | +| | | | "0x25ddc11367cfc9aeab1086adcc396ffdaeb90e491021ab488fcacd43037cd4e6", | | | +| | | | "0xc2628e8800f0dbbce626dcf83c09a30a5a97d79413dcb79ca32a75d3cc1e66b8", | | | +| | | | "0x933f0c6611414cc50cc739051a4e8140ca04f4ca6113746cedf8e9174aa9a6df" | | | +| | | | ], | | | +| | | | "amountAllocated": [ | | | +| | | | "raw:119196472786989781864064, 18 decimals:119196.472786989781864064, 6 decimals: 119196472786989781.864064" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-601 | N/A | +| | | | "target": [ | | | +| | | | "0x87306F713EaB296f87CA4519295668fb4Bd51F04 (root_gauges/ECLP-paUSD-USDC-rh-polygon-root-8730)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-600 | N/A | +| | | | "target": [ | | | +| | | | "0x30cEE2F8Cb8e53FC587f6B2578241a118188D530 (N/A)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-599 | N/A | +| | | | "target": [ | | | +| | | | "0x597AEbfe41dCc042db206Eb888c42560a22c9303 (N/A)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-603 | N/A | +| | | | "target": [ | | | +| | | | "0x7f5A5c80cEeB1C91718a71030F67788F3810be98 (root_gauges/ECLP-PAR-EUROe-polygon-root-7f5a)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-602 | N/A | +| | | | "target": [ | | | +| | | | "0x9b2defbf22bE1CCD63f36DADf69842FEB5e7b8Df (root_gauges/ECLP-PAR-EURe-polygon-root-9b2d)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W19/tg_template.txt b/BIPs/00batched/2024-W19/tg_template.txt new file mode 100644 index 000000000..a8a4b647b --- /dev/null +++ b/BIPs/00batched/2024-W19/tg_template.txt @@ -0,0 +1,15 @@ +Gm Gm all. It's very important that we get the Message signed this week to add editores to snapshot, we're getting quite low on delegation. Please focus on that first, would be great to get it done tomorrow. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet Snapshot Update Message: https://app.safe.global/transactions/messages?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign the TOP message dated 06-May-2024, which adds the following addresses: [0x7019Be4E4eB74cA5F61224FeAf687d2b43998516, 0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17,0xff0281256B2A478905B79895c1A2038A679E1751] as authors who can post snapshot votes as per BIP-587 +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f + +Please also Sign Nonce 244 +BIP-598: Claim extra SAFE airdrop from GNO staking +BIP-599-603: Reduce caps on gauges added by governance + + +Here is a loom video of me loading the snapshot change: https://www.loom.com/share/cbdb35647a574ef0a133656853bbf4f8?sid=8b9648f5-f91e-4102-b2e7-bef38d66ed7c +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W19/ diff --git a/BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..ec0d266f5 --- /dev/null +++ b/BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,447 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9F7dfAb2222A473284205cdDF08a677726d786A0", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "wad": "8480000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-524.json", + "bip_number": "BIP-524" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "17170000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-524.json", + "bip_number": "BIP-524" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2", + "value": "5000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-525.json", + "bip_number": "BIP-525" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "20000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-525.json", + "bip_number": "BIP-525" + } + }, + { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "300000000000000000", + "data": "0x", + "contractMethod": null, + "contractInputsValues": { + "spender": "", + "value": "" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-525.json", + "bip_number": "BIP-525" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-527.json", + "bip_number": "BIP-527" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x16289F675Ca54312a8fCF99341e7439982888077", + "data": "0xd34fb267" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-527.json", + "bip_number": "BIP-527" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-527.json", + "bip_number": "BIP-527" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x790DE8ABE859f399023BCe73B5FE5C4870cD816A", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-527.json", + "bip_number": "BIP-527" + } + } + ] +} diff --git a/BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..e83ebaf25 --- /dev/null +++ b/BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,102 @@ +FILENAME: `BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0d9f6ce6dc31cfd29a7aab9c10c20acdd57501a5` +CHAIN(S): `polygon` +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+=======+==============+=========+============+=======================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a | 2eur (agEUR) | 200 | 0x790DE8ABE859f399023BCe73B5FE5C4870cD816A | 0.05% | 2.0% | L0 sidechain | BIP-527 | 14 | ['jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)', '2eur (agEUR)(0x77e97D4908Be63394bc5DFf72C8C7Bddf1699882)', 'agEUR(0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0d9f6ce6dc31cfd29a7aab9c10c20acdd57501a5` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+==================================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/mounibec:0x0951FF0835302929d6c0162b3d2495A85e38ec3A | 500.0 (RAW: 500000000000000000000) | BIP-526 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xMaki:0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 1 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xSausageDoge:0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 2 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/tritium:0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | 500.0 (RAW: 500000000000000000000) | BIP-526 | 3 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/nanexcool:0x823DF0278e4998cD0D06FB857fBD51e85b18A250 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 4 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/StefanDGeorge:0x9F7dfAb2222A473284205cdDF08a677726d786A0 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 5 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 8.48 (RAW: 8480000000000000000) | BIP-524 | 6 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 17170.0 (RAW: 17170000000000000000000) | BIP-524 | 7 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors/json:0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2 | 5000.0 (RAW: 5000000000) | BIP-525 | 8 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 20000.0 (RAW: 20000000000) | BIP-525 | 9 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0d9f6ce6dc31cfd29a7aab9c10c20acdd57501a5` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 11 | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 13 | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0d9f6ce6dc31cfd29a7aab9c10c20acdd57501a5` +CHAIN(S): `mainnet` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+====================+=========================================================+==============+============+ +| !!N/A!! | 0xC7E84373FC63A17B5B22EBaF86219141B630cD7a (multisigs/bizdev) | 300000000000000000 | { | BIP-525 | N/A | +| | | | "spender": "", | | | +| | | | "value": "" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------+---------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-527 | N/A | +| | | | "target": [ | | | +| | | | "0x16289F675Ca54312a8fCF99341e7439982888077 (N/A) " | | | +| | | | ], | | | +| | | | "data": "0xd34fb267" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W2/combined-report.md b/BIPs/00batched/2024-W2/combined-report.md new file mode 100644 index 000000000..b28bc782d --- /dev/null +++ b/BIPs/00batched/2024-W2/combined-report.md @@ -0,0 +1,105 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/36678287-ba8c-481a-b1f2-012c271e839a) + +[Sign Nonce 233](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +PLease sign Nonce 234 on the same safe, which is BIP-521 changes to snapshot configuration. +The report for Nonce 234 is included below. I will share posting notes for the snapshot change in our telegram channel and we have used 4 eyes to load. +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+=======+==============+=========+============+=======================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a | 2eur (agEUR) | 200 | 0x790DE8ABE859f399023BCe73B5FE5C4870cD816A | 0.05% | 2.0% | L0 sidechain | BIP-527 | 14 | ['jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)', '2eur (agEUR)(0x77e97D4908Be63394bc5DFf72C8C7Bddf1699882)', 'agEUR(0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e1e932be197e88fd1489ae537696eb7714cf0e7a` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+==================================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/mounibec:0x0951FF0835302929d6c0162b3d2495A85e38ec3A | 500.0 (RAW: 500000000000000000000) | BIP-526 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xMaki:0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 1 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xSausageDoge:0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 2 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/tritium:0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | 500.0 (RAW: 500000000000000000000) | BIP-526 | 3 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/nanexcool:0x823DF0278e4998cD0D06FB857fBD51e85b18A250 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 4 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/StefanDGeorge:0x9F7dfAb2222A473284205cdDF08a677726d786A0 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 5 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 8.48 (RAW: 8480000000000000000) | BIP-524 | 6 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 17170.0 (RAW: 17170000000000000000000) | BIP-524 | 7 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors/json:0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2 | 5000.0 (RAW: 5000000000) | BIP-525 | 8 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 20000.0 (RAW: 20000000000) | BIP-525 | 9 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e1e932be197e88fd1489ae537696eb7714cf0e7a` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 11 | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 13 | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W2/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e1e932be197e88fd1489ae537696eb7714cf0e7a` +CHAIN(S): `mainnet` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+====================+=========================================================+==============+============+ +| !!N/A!! | 0xC7E84373FC63A17B5B22EBaF86219141B630cD7a (multisigs/bizdev) | 300000000000000000 | { | BIP-525 | N/A | +| | | | "spender": "", | | | +| | | | "value": "" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------+---------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-527 | N/A | +| | | | "target": [ | | | +| | | | "0x16289F675Ca54312a8fCF99341e7439982888077 (N/A) " | | | +| | | | ], | | | +| | | | "data": "0xd34fb267" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W2/tg_template.txt b/BIPs/00batched/2024-W2/tg_template.txt new file mode 100644 index 000000000..437e7bed4 --- /dev/null +++ b/BIPs/00batched/2024-W2/tg_template.txt @@ -0,0 +1,16 @@ +gm. Welcome to 2024, and our first signer session. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 233 +BIP-527: Change killed 2EUR gauge +BIP-526: Pay H2 DAO Multisig Stipends +BIP-525: Fund BD SP +BIP-524: BAL Liquidity for Optimism + + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2024-W052/combined-report.md + +Sorry I didn't get a BIP together for BAL payouts this week, will be included in next weeks voting, perhaps along with the need not to vote on it every time like other regular funding situatuions such as Karpatkey or Beets. + diff --git a/BIPs/00batched/2024-W20/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W20/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..eb5f70b0e --- /dev/null +++ b/BIPs/00batched/2024-W20/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCC9723faDed81a9448a9664c39C0Df2e77FDfA2E", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W20/BIP-605-inankrETH-ankrETH-Gauge.json", + "bip_number": "BIP-605" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W20/BIP-606-wOETH-wETH-Gauge.json", + "bip_number": "BIP-606" + } + } + ] +} diff --git a/BIPs/00batched/2024-W20/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W20/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..d6ec66b4e --- /dev/null +++ b/BIPs/00batched/2024-W20/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/00batched/2024-W20/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `aac7dcacfab17254e72a007eea9f4bb2a9ebfc87` +CHAIN(S): `mainnet, arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/1e2f5161-32a6-4c2c-80d4-378ffaf2d8a2) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xdb3575310dd8f6c9e51be290fed9a2db32743fde00000000000000000000068e | inankrETH/ankrETH | 0xCC9723faDed81a9448a9664c39C0Df2e77FDfA2E | "inankrETH/ankrETH (0xdB3575310Dd8F6c9E51be290FeD9a2Db32743FDE)", | "0x0000000000000000000000000000000000000000", | BIP-605 | 0 | +| | pool_address: 0xdB3575310Dd8F6c9E51be290FeD9a2Db32743FDE | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "ankrETH (0xE95A203B1a91a908F9B9CE46459d101078c2c3cb)", | "0x00F8e64a8651E3479A0B20F46b1D462Fe29D6aBc", | | | +| | | | | "InankrETH (0xfa2629B9cF3998D52726994E0FcdB750224D8B9D)" | "0x8bC73134A736437da780570308d3b37b67174ddb" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a | ECLP-WOETH-WETH | 0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b | "WETH (0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | BIP-606 | 1 | +| | pool_address: 0xef0c116A2818A5b1A5D836A291856A321f43C2Fb | fee: 0.04, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "WOETH (0xD8724322f44E5c58D7A815F542036fb17DbbF839)" | "0xEfA422c31fc71A636c2C630d226DbA4ccEd1073a" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W20/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W20/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..ac77efff1 --- /dev/null +++ b/BIPs/00batched/2024-W20/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b]" +} diff --git a/BIPs/00batched/2024-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..c346fa9d5 --- /dev/null +++ b/BIPs/00batched/2024-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "53242000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W22/BIP-103-Dec-April.json", + "bip_number": "BIP-103" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W22/BIP-519-6.json", + "bip_number": "BIP-519" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W22/BIP-518-6.json", + "bip_number": "BIP-518" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x74fea3fb0ed030e9228026e7f413d66186d3d107", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W22/BIP-578-USDC-Jun.json", + "bip_number": "BIP-578" + } + } + ] +} diff --git a/BIPs/00batched/2024-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..345e4bd5f --- /dev/null +++ b/BIPs/00batched/2024-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,18 @@ +FILENAME: `BIPs/00batched/2024-W22/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `554358326f50c23901ddede8317d38d6f6a6e4b6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cbb4b1de-68ce-439d-9b68-7c717f69027d) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 53242.0 (RAW: 53242000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 1 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 2 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/wonderland:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 30000.0 (RAW: 30000000000) | BIP-578 | 3 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..8a6519f1a --- /dev/null +++ b/BIPs/00batched/2024-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x058059cb764a98c18B937222eD06C1ad2f174Dce", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W22/BIP-610-ETHx-wstETH-Abritrum-Gauge.json", + "bip_number": "BIP-610" + } + } + ] +} diff --git a/BIPs/00batched/2024-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..9b3d896f0 --- /dev/null +++ b/BIPs/00batched/2024-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/00batched/2024-W22/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `554358326f50c23901ddede8317d38d6f6a6e4b6` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/aca78b0a-3815-4b43-a40e-997e74e9a8cd) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | ETHx/wstETH | 0x058059cb764a98c18B937222eD06C1ad2f174Dce | "wstETH (0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-610 | 0 | +| | pool_address: 0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "ETHx/wstETH (0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "ETHx (0xED65C5085a18Fa160Af0313E60dcc7905E944Dc7)" | "0x8581953084FfdDBB82fC63f30f11bDb0E7300284" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W22/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2024-W22/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..6327d5baf --- /dev/null +++ b/BIPs/00batched/2024-W22/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "delegatee", + "type": "address", + "internalType": "address" + } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0x583E3EDc26E1B8620341bce90547197bfE2c1ddD" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W22/BIP-611-ARB-Delegation.json", + "bip_number": "BIP-611" + } + } + ] +} diff --git a/BIPs/00batched/2024-W22/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2024-W22/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..c2b4c7df2 --- /dev/null +++ b/BIPs/00batched/2024-W22/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00batched/2024-W22/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `554358326f50c23901ddede8317d38d6f6a6e4b6` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/27fb7477-a3c0-4bc1-94f6-8898f1aaa81e) +``` ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=========================================================+=========+============================================================================+==============+============+ +| delegate | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | BIP-611 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x583E3EDc26E1B8620341bce90547197bfE2c1ddD (karpatkey/delegate_msig)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W22/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W22/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..f543bb783 --- /dev/null +++ b/BIPs/00batched/2024-W22/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0x058059cb764a98c18B937222eD06C1ad2f174Dce]" +} diff --git a/BIPs/00batched/2024-W22/combined-report.md b/BIPs/00batched/2024-W22/combined-report.md new file mode 100644 index 000000000..af798d43e --- /dev/null +++ b/BIPs/00batched/2024-W22/combined-report.md @@ -0,0 +1,37 @@ + +## Mainnet DAO Multisig + +[Sign Nonce 245](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 53242.0 (RAW: 53242000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 1 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 2 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/wonderland:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 30000.0 (RAW: 30000000000) | BIP-578 | 3 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` + +## Arbitrum DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/285c63e3-8290-424c-8dcf-9e4c120447ec) + +[Sign Nonce 44](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) + +``` ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=========================================================+=========+============================================================================+==============+============+ +| delegate | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | BIP-611 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x583E3EDc26E1B8620341bce90547197bfE2c1ddD (karpatkey/delegate_msig)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +``` + + diff --git a/BIPs/00batched/2024-W22/tg_template.txt b/BIPs/00batched/2024-W22/tg_template.txt new file mode 100644 index 000000000..fd856eee2 --- /dev/null +++ b/BIPs/00batched/2024-W22/tg_template.txt @@ -0,0 +1,15 @@ +Gm Gm all. Trying to batch payments to keep load lighter. This week is mostly paying the bills, and delegating our $ARB voting to karpatkey + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please Sign Nonce 245 +BIP-103: Pay Karpatkey +BIP-518&519: Pay Beets +BIP-578: Pay Wonderland + +Arbitrum: https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0 +Please Sign Nonce 44 +BIP-611: Delegate $ARB voting to Karpatkey + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W22/ diff --git a/BIPs/00batched/2024-W23/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W23/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..31c915cc5 --- /dev/null +++ b/BIPs/00batched/2024-W23/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "1000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-617.json", + "bip_number": "BIP-617" + } + } + ] +} diff --git a/BIPs/00batched/2024-W23/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W23/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..c3342b410 --- /dev/null +++ b/BIPs/00batched/2024-W23/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W23/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9d1a52d433f01e6ed5bdaae29ca0d25fde2feea4` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/29967912-6983-4663-85ec-05b6bbec2444) +``` ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 1000.0 (RAW: 1000000000000000000000) | BIP-617 | 0 | ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W23/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W23/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..5470430af --- /dev/null +++ b/BIPs/00batched/2024-W23/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbF39254fD93C81ac9F0ffd2E721c86C052793353", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-614.json", + "bip_number": "BIP-614" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8806BdF4D6aEB1E3b35bea43835abFAA601BC7b5", + "gaugeType": "PolygonZkEvm" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-615.json", + "bip_number": "BIP-615" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xab973781729714Cf85849C00A015615997325985", + "gaugeType": "PolygonZkEvm" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-615.json", + "bip_number": "BIP-615" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-616.json", + "bip_number": "BIP-616" + } + } + ] +} diff --git a/BIPs/00batched/2024-W23/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W23/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..70d47d4f5 --- /dev/null +++ b/BIPs/00batched/2024-W23/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/00batched/2024-W23/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9d1a52d433f01e6ed5bdaae29ca0d25fde2feea4` +CHAIN(S): `zkevm, gnosis, mainnet` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/8cd93f31-101e-4c51-9bdd-4ed11ae4cdee) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x87cf784ee055d0260ad3ab7ee40888d4a0a5d364000200000000000000000691 | 50ZRS-50WETH-BPT | 0xbF39254fD93C81ac9F0ffd2E721c86C052793353 | 0x75e88B8c2d34a52a6d36deAda664D7dc9116e4EF: ZRS | 0x0000000000000000000000000000000000000000 | -- | BIP-614 | 0 | +| | pool_address: 0x87Cf784Ee055d0260AD3AB7EE40888D4a0A5d364 | fee: 1.0 | Style: mainnet | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0xd4ec150896f1784b5be2b3af460d2cb2b8c0f522000200000000000000000069 | ECLP-GYD-USDC | 0x8806BdF4D6aEB1E3b35bea43835abFAA601BC7b5 | 0x37eAA0eF3549a5Bb7D431be78a3D99BD360d19e5: USDC | 0x0000000000000000000000000000000000000000 | -- | BIP-615 | 1 | +| | pool_address: 0xD4Ec150896F1784b5BE2B3AF460D2cb2b8c0f522 | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xf596ac9c9b60f9c555b8290c2b039c275396afb4000200000000000000000068 | ECLP-GYD-USDT | 0xab973781729714Cf85849C00A015615997325985 | 0x1E4a5963aBFD975d8c9021ce480b42188849D41d: USDT | 0x0000000000000000000000000000000000000000 | -- | BIP-615 | 2 | +| | pool_address: 0xF596ac9c9b60F9C555B8290c2b039C275396afb4 | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x045200c6077f105023000d803f3f95b16b187d70000200000000000000000091 | ECLP-sDAI-AUSDC | 0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c | 0x270bA1f35D8b87510D24F693fcCc0da02e6E4EeB: stataGnoUSDC | 0x821aFE819450A359E29a5209C48f2Fa3321C8AD2 | safe | BIP-616 | 3 | +| | pool_address: 0x045200C6077f105023000D803F3F95B16B187D70 | fee: 0.01 | Style: L0 sidechain | 0xaf204776c7245bF4147c2612BF6e5972Ee483701: sDAI | 0x89C80A4540A00b5270347E02e2E144c71da2EceD | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json b/BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json new file mode 100644 index 000000000..71ad1a8ec --- /dev/null +++ b/BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json @@ -0,0 +1,459 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "to_meta": "20210418-vault/Vault'", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "to_meta": "20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5, 0x0e9dc9cb7f6c04b4bd6a3a1454fea541139560e67c2305a90fa5021b5a9654a6, 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3, 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9, 0x3ebf880359d778f39e7be152c0f9e08ca720deb5fec5c8d1f452538638a298db, 0x5136d1203b14ba22a937b7e444c8af4b759cc078fda17daabcc62cb16d44f770, 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56, 0x8bd6c78035cf14d9a9eee5f76434919f54549515ffeb33ef262637ace4623751, 0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65, 0xe59f99daac75c9e44d591c49a65423101c290813a1ebd1ef8833a4dab984fa9a]", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997, 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d, 0x3d2eef14850cbbadfbbe943f0365f71562f347a7f22272c6fde14bc3b2e8890b, 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff, 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xbd92af6a2dfb24acf76fcff3ee827e4d13aceb26a57d95e47b90581760c41049, 0xda3af9541f52be1def53d54294a906c129ad5721f0b79b6a7efa9d0b6ed49de5, 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec]", + "account": "0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d, 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff]", + "account": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0xb541765F540447646A9545E0A4800A0Bacf9E13D" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083, 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e]", + "account": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6a0dbf850b77efe39084cc09b1e400307ad6949c5b87efdec8381b88592862fa]", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "to_meta": "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "to_meta": "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00fraxtal.json", + "bip_number": "BIP-613" + } + } + ] +} diff --git a/BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt b/BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt new file mode 100644 index 000000000..4f7e6d948 --- /dev/null +++ b/BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt @@ -0,0 +1,86 @@ +FILENAME: `BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `9d1a52d433f01e6ed5bdaae29ca0d25fde2feea4` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7557d1a5-60b7-4f42-ac76-6b674b00bf2f) +``` ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 0 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 2 | +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e | BIP-613 | 3 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e | BIP-613 | 5 | +| Authorizer/grantRoles | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | BIP-613 | 6 | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x0e9dc9cb7f6c04b4bd6a3a1454fea541139560e67c2305a90fa5021b5a9654a6 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0x3ebf880359d778f39e7be152c0f9e08ca720deb5fec5c8d1f452538638a298db | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0x5136d1203b14ba22a937b7e444c8af4b759cc078fda17daabcc62cb16d44f770 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x8bd6c78035cf14d9a9eee5f76434919f54549515ffeb33ef262637ace4623751 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0xe59f99daac75c9e44d591c49a65423101c290813a1ebd1ef8833a4dab984fa9a | | | +| Authorizer/grantRoles | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-613 | 7 | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0x3d2eef14850cbbadfbbe943f0365f71562f347a7f22272c6fde14bc3b2e8890b | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0xbd92af6a2dfb24acf76fcff3ee827e4d13aceb26a57d95e47b90581760c41049 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xda3af9541f52be1def53d54294a906c129ad5721f0b79b6a7efa9d0b6ed49de5 | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | | | +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | BIP-613 | 8 | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-613 | 9 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-613 | 10 | +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | BIP-613 | 11 | +| | | | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | | | +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0x6a0dbf850b77efe39084cc09b1e400307ad6949c5b87efdec8381b88592862fa | BIP-613 | 12 | ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `9d1a52d433f01e6ed5bdaae29ca0d25fde2feea4` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/3935fc1e-0e80-40d4-bb2b-67950d8a02ee) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-613 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0 (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | +| addGaugeFactory | 0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-613 | N/A | +| | | | "factory": [ | | | +| | | | "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory)" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json b/BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json new file mode 100644 index 000000000..6a40b3b2d --- /dev/null +++ b/BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json @@ -0,0 +1,459 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613C-mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "to_meta": "20210418-vault/Vault'", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x013D4382F291be5688AFBcc741Ee8A24C66B2C92" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613C-mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613C-mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x000dfb61af4938ab97859cfdca0fcf16419f15e36c90216b41d5e38d72ef208e, 0x8cda99fc04bda5395d59be6ecac7c4311f4b7fd26fdc0a111934a1aeb5c4637f, 0x921076734257eb232f70b5aff2cae0f998b4e1aa7a55ae3a0af1ce8629c33da9, 0x9a098720ece757a23df7742e3f16c6ad6e0610120f10c8edbd6ac53cd9b7c951, 0xa1d496e6430b89d0d1db0f2a465fa90c6869e0fa261764f9ded0fc763c7fe5a6, 0xa78f1cb63d3f446e1e9b8487adb64f8eb62fb54ea65fcacb2c71bd3984818985, 0xb484eabe5a2eb23a030770c8418e6b7ac968a740108f25f9360bc2bae2c41e4c, 0xcdf8a72988961264bb6330f6907f1a0833ad472cbc1d9522cc8e23d8b6e7fbb9, 0xe14e689f3fefda81a75d35b8e900ec0af04143ad3c43dfc6f460cfb0a45815f6, 0xf27822b70ee081744165c05eea053ce08242fb70b8c76d0839da1cf7a4f5fa01]", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08, 0x4d30cbc2e28f426257db0dd64beff2e6fd04e66b7453e947fecc1cf4d0b4eef7, 0x7533f5ec889e599162d5b62c7931b402430fe4e92f30ca02054986fc9ba5f0d5, 0x7610899afab87ac343d3033932882e61b78ae3df6c6ca132e39b607f1761c624, 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae, 0xb402f1c527ae841a6ab9272b0b11576bb706145b9e1857103b96b31606cb995a, 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c, 0xd9801dfe2a5b9b3b528585abebb08cd61b35502437c6bec85414ff7aaa387f84, 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932]", + "account": "0x66C4b8Ba38a7B57495b7D0581f25784E629516c2" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae, 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c, 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932]", + "account": "0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0xb541765F540447646A9545E0A4800A0Bacf9E13D" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083, 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e]", + "account": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1c81700c4527c26bb9aa170d0053c053b25de1492f19267ac6be7f8c62ef5569]", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "to_meta": "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "to_meta": "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/00mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613B-mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0x5cF4928a3205728bd12830E1840F7DB85c62a4B9", + "to_meta": "20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613B-mode.json", + "bip_number": "BIP-613" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W23/BIP-613/BIP-613B-mode.json", + "bip_number": "BIP-613" + } + } + ] +} diff --git a/BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt b/BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt new file mode 100644 index 000000000..dfa81d44f --- /dev/null +++ b/BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt @@ -0,0 +1,86 @@ +FILENAME: `BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `9d1a52d433f01e6ed5bdaae29ca0d25fde2feea4` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b2fc7cc7-2189-4986-93ad-3066f8f01ebf) +``` ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 0 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 2 | +| Authorizer/grantRoles | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x000dfb61af4938ab97859cfdca0fcf16419f15e36c90216b41d5e38d72ef208e | BIP-613 | 3 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x8cda99fc04bda5395d59be6ecac7c4311f4b7fd26fdc0a111934a1aeb5c4637f | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x921076734257eb232f70b5aff2cae0f998b4e1aa7a55ae3a0af1ce8629c33da9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x9a098720ece757a23df7742e3f16c6ad6e0610120f10c8edbd6ac53cd9b7c951 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0xa1d496e6430b89d0d1db0f2a465fa90c6869e0fa261764f9ded0fc763c7fe5a6 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0xa78f1cb63d3f446e1e9b8487adb64f8eb62fb54ea65fcacb2c71bd3984818985 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xb484eabe5a2eb23a030770c8418e6b7ac968a740108f25f9360bc2bae2c41e4c | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xcdf8a72988961264bb6330f6907f1a0833ad472cbc1d9522cc8e23d8b6e7fbb9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xe14e689f3fefda81a75d35b8e900ec0af04143ad3c43dfc6f460cfb0a45815f6 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf27822b70ee081744165c05eea053ce08242fb70b8c76d0839da1cf7a4f5fa01 | | | +| Authorizer/grantRoles | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | BIP-613 | 4 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x4d30cbc2e28f426257db0dd64beff2e6fd04e66b7453e947fecc1cf4d0b4eef7 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x7533f5ec889e599162d5b62c7931b402430fe4e92f30ca02054986fc9ba5f0d5 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x7610899afab87ac343d3033932882e61b78ae3df6c6ca132e39b607f1761c624 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xb402f1c527ae841a6ab9272b0b11576bb706145b9e1857103b96b31606cb995a | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xd9801dfe2a5b9b3b528585abebb08cd61b35502437c6bec85414ff7aaa387f84 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | | | +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | BIP-613 | 5 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | | | +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-613 | 6 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-613 | 7 | +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | BIP-613 | 8 | +| | | | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | | | +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0x1c81700c4527c26bb9aa170d0053c053b25de1492f19267ac6be7f8c62ef5569 | BIP-613 | 9 | +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce | BIP-613 | 12 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce | BIP-613 | 14 | ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `9d1a52d433f01e6ed5bdaae29ca0d25fde2feea4` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c075a919-25dd-408b-84fe-667bc3a5e87f) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-613 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0x013D4382F291be5688AFBcc741Ee8A24C66B2C92 (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| addGaugeFactory | 0x5cF4928a3205728bd12830E1840F7DB85c62a4B9 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-613 | N/A | +| | | | "factory": [ | | | +| | | | "0x4fb47126Fa83A8734991E41B942Ac29A3266C968 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory)" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W23/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W23/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..19324d08e --- /dev/null +++ b/BIPs/00batched/2024-W23/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "PolygonZkEvm": "[0x8806BdF4D6aEB1E3b35bea43835abFAA601BC7b5, 0xab973781729714Cf85849C00A015615997325985]", + "Gnosis": "[0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c]" +} diff --git a/BIPs/00batched/2024-W23/combined-report.md b/BIPs/00batched/2024-W23/combined-report.md new file mode 100644 index 000000000..db66483fc --- /dev/null +++ b/BIPs/00batched/2024-W23/combined-report.md @@ -0,0 +1,194 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/66cbb8dd-6315-458c-a300-2155a06dcc46) +[Sign Nonce 246](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 1000.0 (RAW: 1000000000000000000000) | BIP-617 | 0 | ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +``` + +## Mode DAO Multisig +[Sign Nonce 1](https://safe.optimism.io/transactions/queue?safe=mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e) +No Tenderly, decode is bad, here's screenshots from load: +![img.png](screenshots/img.pnghots/img.png) ![img_1.png](screenshots/img_1.pngts/img_1.png) +FILENAME: `BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `dc3f8fe4c7eec716229aa1cd1b6a065e246e9d21` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/dca2026d-21ba-40e4-91a7-a6c3d65c6d58) +``` ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 0 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 2 | +| Authorizer/grantRoles | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x000dfb61af4938ab97859cfdca0fcf16419f15e36c90216b41d5e38d72ef208e | BIP-613 | 3 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x8cda99fc04bda5395d59be6ecac7c4311f4b7fd26fdc0a111934a1aeb5c4637f | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x921076734257eb232f70b5aff2cae0f998b4e1aa7a55ae3a0af1ce8629c33da9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x9a098720ece757a23df7742e3f16c6ad6e0610120f10c8edbd6ac53cd9b7c951 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0xa1d496e6430b89d0d1db0f2a465fa90c6869e0fa261764f9ded0fc763c7fe5a6 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0xa78f1cb63d3f446e1e9b8487adb64f8eb62fb54ea65fcacb2c71bd3984818985 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xb484eabe5a2eb23a030770c8418e6b7ac968a740108f25f9360bc2bae2c41e4c | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xcdf8a72988961264bb6330f6907f1a0833ad472cbc1d9522cc8e23d8b6e7fbb9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xe14e689f3fefda81a75d35b8e900ec0af04143ad3c43dfc6f460cfb0a45815f6 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf27822b70ee081744165c05eea053ce08242fb70b8c76d0839da1cf7a4f5fa01 | | | +| Authorizer/grantRoles | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | BIP-613 | 4 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x4d30cbc2e28f426257db0dd64beff2e6fd04e66b7453e947fecc1cf4d0b4eef7 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x7533f5ec889e599162d5b62c7931b402430fe4e92f30ca02054986fc9ba5f0d5 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x7610899afab87ac343d3033932882e61b78ae3df6c6ca132e39b607f1761c624 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xb402f1c527ae841a6ab9272b0b11576bb706145b9e1857103b96b31606cb995a | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xd9801dfe2a5b9b3b528585abebb08cd61b35502437c6bec85414ff7aaa387f84 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | | | +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | BIP-613 | 5 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | | | +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-613 | 6 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-613 | 7 | +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | BIP-613 | 8 | +| | | | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | | | +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0x1c81700c4527c26bb9aa170d0053c053b25de1492f19267ac6be7f8c62ef5569 | BIP-613 | 9 | +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce | BIP-613 | 12 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce | BIP-613 | 14 | ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W23/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `dc3f8fe4c7eec716229aa1cd1b6a065e246e9d21` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/471b1e02-7b8c-455f-8614-7b9e10412b16) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-613 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0x013D4382F291be5688AFBcc741Ee8A24C66B2C92 (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| addGaugeFactory | 0x5cF4928a3205728bd12830E1840F7DB85c62a4B9 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-613 | N/A | +| | | | "factory": [ | | | +| | | | "0x4fb47126Fa83A8734991E41B942Ac29A3266C968 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory)" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` + +## Fraxtal DAO Multisig +[Sign Nonce 1](https://safe.optimism.io/transactions/tx?id=multisig_0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e_0xe0948e7778dce342f819662db74232d82f15414d1194b4906a5e2ea5b7f848b4&safe=fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e) +Same, no tenderly, maybe this helps, also reports. +![img_2.png](screenshots/img_2.pngts/img_2.png) +![img_3.png](screenshots/img_3.pngts/img_3.png) +FILENAME: `BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `dc3f8fe4c7eec716229aa1cd1b6a065e246e9d21` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/97f083d1-b369-45d5-85a6-b70edf3c79b7) +``` ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 0 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 2 | +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e | BIP-613 | 3 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e | BIP-613 | 5 | +| Authorizer/grantRoles | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | BIP-613 | 6 | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x0e9dc9cb7f6c04b4bd6a3a1454fea541139560e67c2305a90fa5021b5a9654a6 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0x3ebf880359d778f39e7be152c0f9e08ca720deb5fec5c8d1f452538638a298db | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0x5136d1203b14ba22a937b7e444c8af4b759cc078fda17daabcc62cb16d44f770 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x8bd6c78035cf14d9a9eee5f76434919f54549515ffeb33ef262637ace4623751 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0xe59f99daac75c9e44d591c49a65423101c290813a1ebd1ef8833a4dab984fa9a | | | +| Authorizer/grantRoles | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-613 | 7 | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0x3d2eef14850cbbadfbbe943f0365f71562f347a7f22272c6fde14bc3b2e8890b | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0xbd92af6a2dfb24acf76fcff3ee827e4d13aceb26a57d95e47b90581760c41049 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xda3af9541f52be1def53d54294a906c129ad5721f0b79b6a7efa9d0b6ed49de5 | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | | | +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | BIP-613 | 8 | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-613 | 9 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-613 | 10 | +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | BIP-613 | 11 | +| | | | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | | | +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0x6a0dbf850b77efe39084cc09b1e400307ad6949c5b87efdec8381b88592862fa | BIP-613 | 12 | ++-------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W23/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `dc3f8fe4c7eec716229aa1cd1b6a065e246e9d21` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b1b6e170-4428-471b-9751-7141ca33488b) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-613 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0 (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | +| addGaugeFactory | 0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-613 | N/A | +| | | | "factory": [ | | | +| | | | "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory)" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W23/screenshots/img.png b/BIPs/00batched/2024-W23/screenshots/img.png new file mode 100644 index 000000000..156d2a311 Binary files /dev/null and b/BIPs/00batched/2024-W23/screenshots/img.png differ diff --git a/BIPs/00batched/2024-W23/screenshots/img_1.png b/BIPs/00batched/2024-W23/screenshots/img_1.png new file mode 100644 index 000000000..1845ffea2 Binary files /dev/null and b/BIPs/00batched/2024-W23/screenshots/img_1.png differ diff --git a/BIPs/00batched/2024-W23/screenshots/img_2.png b/BIPs/00batched/2024-W23/screenshots/img_2.png new file mode 100644 index 000000000..fae286734 Binary files /dev/null and b/BIPs/00batched/2024-W23/screenshots/img_2.png differ diff --git a/BIPs/00batched/2024-W23/screenshots/img_3.png b/BIPs/00batched/2024-W23/screenshots/img_3.png new file mode 100644 index 000000000..7cf40632b Binary files /dev/null and b/BIPs/00batched/2024-W23/screenshots/img_3.png differ diff --git a/BIPs/00batched/2024-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..c65e2741b --- /dev/null +++ b/BIPs/00batched/2024-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBC5E2f2945Ff4a6568C4DBD3aA15D9e8FfDF0125", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W24/BIP-618.json", + "bip_number": "BIP-618" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbd00C7CBE59DDDBD784c899aC173B7Ba514B9997", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W24/BIP-619.json", + "bip_number": "BIP-619" + } + } + ] +} diff --git a/BIPs/00batched/2024-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..9545be1cf --- /dev/null +++ b/BIPs/00batched/2024-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/00batched/2024-W24/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `775262ad5d5328f9830e16f03bc7936b3740d555` +CHAIN(S): `mainnet, arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/871c4052-5341-4fe5-82d0-aa7bb00a69ee) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x395aad0582cd035c6c75ae32043bb83423ddd6f800020000000000000000054c | 20GYD-80D2D | 0xBC5E2f2945Ff4a6568C4DBD3aA15D9e8FfDF0125 | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | BIP-618 | 0 | +| | pool_address: 0x395aaD0582Cd035C6C75ae32043bb83423DdD6f8 | fee: 1.0 | Style: L0 sidechain | 0xDD4AB36f31891fF25A69121FCCC732d93eB976Dd: D2D | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0xa8210885430aaa333c9f0d66ab5d0c312bed5e43000200000000000000000692 | 50wstETH-50sUSDe | 0xbd00C7CBE59DDDBD784c899aC173B7Ba514B9997 | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-619 | 1 | +| | pool_address: 0xa8210885430aaA333c9F0D66AB5d0c312beD5E43 | fee: 0.3 | Style: mainnet | 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497: sUSDe | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W24/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W24/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..7c01cb83a --- /dev/null +++ b/BIPs/00batched/2024-W24/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0xBC5E2f2945Ff4a6568C4DBD3aA15D9e8FfDF0125]" +} diff --git a/BIPs/00batched/2024-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..1406d58f9 --- /dev/null +++ b/BIPs/00batched/2024-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2", + "amount": "124374160017847396583275" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W25/BIP-621-lock-safe-balance.json", + "bip_number": "BIP-621" + } + }, + { + "to": "0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "amount", + "type": "uint96", + "internalType": "uint96" + } + ], + "name": "lock", + "payable": false + }, + "contractInputsValues": { + "amount": "124374160017847396583275" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W25/BIP-621-lock-safe-balance.json", + "bip_number": "BIP-621" + } + } + ] +} diff --git a/BIPs/00batched/2024-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..4a66044ab --- /dev/null +++ b/BIPs/00batched/2024-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,24 @@ +FILENAME: `BIPs/00batched/2024-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `284ec1608b6a605fcbec770e16497c6ea3ece9f8` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/85ccbca4-7522-4dee-b007-475d51d9395c) +``` ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x5aFE3855358E112B5647B952709E6165e1c1eEEe (Not Found) | 0 | { | BIP-621 | N/A | +| | | | "spender": [ | | | +| | | | "0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2 (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:124374160017847396583275, 18 decimals:124374.160017847396583275, 6 decimals: 124374160017847396.583275" | | | +| | | | ] | | | +| | | | } | | | +| lock | 0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2 (Not Found) | 0 | { | BIP-621 | N/A | +| | | | "amount": [ | | | +| | | | "raw:124374160017847396583275, 18 decimals:124374.160017847396583275, 6 decimals: 124374160017847396.583275" | | | +| | | | ] | | | +| | | | } | | | ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..aeb1e9906 --- /dev/null +++ b/BIPs/00batched/2024-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W25/BIP-624.json", + "bip_number": "BIP-624" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W25/BIP-622.json", + "bip_number": "BIP-622" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W25/BIP-622.json", + "bip_number": "BIP-622" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W25/BIP-623.json", + "bip_number": "BIP-623" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6d060a785530cB13795b3c5a43320c462811d43b", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W25/BIP-620.json", + "bip_number": "BIP-620" + } + } + ] +} diff --git a/BIPs/00batched/2024-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..2942739d9 --- /dev/null +++ b/BIPs/00batched/2024-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,26 @@ +FILENAME: `BIPs/00batched/2024-W25/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `284ec1608b6a605fcbec770e16497c6ea3ece9f8` +CHAIN(S): `mainnet, arbitrum, gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/43e94245-68aa-4663-ab85-d3f41f5759be) +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c | rsETH/wETH | 0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9 | 0x4186BFC76E2E237523CBC30FD220FE055156b41F: rsETH | 0x3222d3De5A9a3aB884751828903044CC4ADC627e | !!NO REVIEW!! | BIP-624 | 0 | +| | pool_address: 0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739 | fee: 0.04 | Style: L0 sidechain | 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 100.0% | 0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739: rsETH/wETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d | aETH/wstETH | 0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A | 0x47a4f5440Ab097CF3ec7abEeDF1afeCC5749a4E2: aETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-622 | 1 | +| | pool_address: 0x47a4f5440Ab097CF3ec7abEeDF1afeCC5749a4E2 | fee: 0.04 | Style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | !!NO REVIEW!! | | | +| | | a-factor: 200 | cap: 100.0% | 0xFC87753Df5Ef5C368b5FBA8D4C5043b77e8C5b39: aETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x38fe2b73612527eff3c5ac3bf2dcb73784ad927400000000000000000000068c | saETH/wstETH | 0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e | 0x38fe2B73612527eFf3C5aC3bF2Dcb73784aD9274: saETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-622 | 2 | +| | pool_address: 0x38fe2B73612527eFf3C5aC3bF2Dcb73784aD9274 | fee: 0.04 | Style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | !!NO REVIEW!! | | | +| | | a-factor: 200 | cap: 100.0% | 0xF1617882A71467534D14EEe865922de1395c9E89: saETH | 0x1aCB59d7c5D23C0310451bcd7bA5AE46d18c108C | !!NO REVIEW!! | | | +| GaugeAdderV4/addGauge | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | ECLP-weETH-wstETH | 0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a | 0x35751007a407ca6FEFfE80b3cB397736D2cf4dbe: weETH | 0xCd9e3fb32c8F258555b8292531112bBb5B87E2F4 | !!NO REVIEW!! | BIP-623 | 3 | +| | pool_address: 0xCDCef9765D369954a4A936064535710f7235110A | fee: 0.01 | Style: L0 sidechain | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | !!NO REVIEW!! | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c | ECLP-wstETH-WETH | 0x6d060a785530cB13795b3c5a43320c462811d43b | 0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1: WETH | | | BIP-620 | 4 | +| | pool_address: 0x8DD4df4Ce580b9644437f3375e54f1ab09808228 | fee: 0.01 | Style: L0 sidechain | 0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6: wstETH | | | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W25/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W25/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..cdee3a39b --- /dev/null +++ b/BIPs/00batched/2024-W25/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Arbitrum": "[0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9, 0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a]", + "Gnosis": "[0x6d060a785530cB13795b3c5a43320c462811d43b]" +} diff --git a/BIPs/00batched/2024-W25/combined-report.md b/BIPs/00batched/2024-W25/combined-report.md new file mode 100644 index 000000000..e3f82cef5 --- /dev/null +++ b/BIPs/00batched/2024-W25/combined-report.md @@ -0,0 +1,28 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/a074f965-8fc8-4cb8-b480-b27f40af8015) +[Sign Nonce 247](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +FILENAME: `BIPs/00batched/2024-W25/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `284ec1608b6a605fcbec770e16497c6ea3ece9f8` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/85ccbca4-7522-4dee-b007-475d51d9395c) +``` ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x5aFE3855358E112B5647B952709E6165e1c1eEEe (Not Found) | 0 | { | BIP-621 | N/A | +| | | | "spender": [ | | | +| | | | "0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2 (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:124374160017847396583275, 18 decimals:124374.160017847396583275, 6 decimals: 124374160017847396.583275" | | | +| | | | ] | | | +| | | | } | | | +| lock | 0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2 (Not Found) | 0 | { | BIP-621 | N/A | +| | | | "amount": [ | | | +| | | | "raw:124374160017847396583275, 18 decimals:124374.160017847396583275, 6 decimals: 124374160017847396.583275" | | | +| | | | ] | | | +| | | | } | | | ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W25/tg_template.txt b/BIPs/00batched/2024-W25/tg_template.txt new file mode 100644 index 000000000..4a1418172 --- /dev/null +++ b/BIPs/00batched/2024-W25/tg_template.txt @@ -0,0 +1,10 @@ +Hello again. Light load this week. Just locking our SAFE. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please Sign Nonce 247 +BIP-621: Lock $SAFE for 1 year + + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W25/ diff --git a/BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..4d1bc8898 --- /dev/null +++ b/BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,344 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "87000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-631-beethoven-x-technical-q3-2024.json", + "bip_number": "BIP-631" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "522168000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-634-fund-opco-admin-year3.json", + "bip_number": "BIP-634" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "36000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.json", + "bip_number": "N/A" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "4386000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.json", + "bip_number": "N/A" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "6900000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-633-fund-grants-q3-2024.json", + "bip_number": "BIP-633" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "33527000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-633-fund-grants-q3-2024.json", + "bip_number": "BIP-633" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "90000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-632-fund-beethoven-x-marketing-q3-2024.json", + "bip_number": "BIP-632" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe2b680A8d02fbf48C7D9465398C4225d7b7A7f87", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-636B-Kill-PAL-USDC-Gauge.json", + "bip_number": "BIP-636" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "172500000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.json", + "bip_number": "BIP-630" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "14464000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.json", + "bip_number": "BIP-630" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x74fea3fb0ed030e9228026e7f413d66186d3d107", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-578-USDC-Jul.json", + "bip_number": "BIP-578" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..2f6f16119 --- /dev/null +++ b/BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,33 @@ +FILENAME: `BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/222205a7-6af5-4981-90f3-e4ef60f5445b) +``` ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xa7ff759dbef9f3efdd1d59beee44b966acafe214000200000000000000000180 | USDC-PAL | N/A | 0xe2b680A8d02fbf48C7D9465398C4225d7b7A7f87 | 1.0% | 2.0% | mainnet | BIP-636 | 7 | ['0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: USDC', '0xAB846Fb6C81370327e784Ae7CbB6d6a6af6Ff4BF: PAL'] | ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4ad3f7fb-217e-4466-8d7a-91c5e96a8773) +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 87000.0 (RAW: 87000000000) | BIP-631 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 522168.0 (RAW: 522168000000) | BIP-634 | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 36000.0 (RAW: 36000000000) | N/A | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 4386.0 (RAW: 4386000000000000000000) | N/A | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 6900.0 (RAW: 6900000000) | BIP-633 | 4 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 33527.0 (RAW: 33527000000000000000000) | BIP-633 | 5 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 90000.0 (RAW: 90000000000) | BIP-632 | 6 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 172500.0 (RAW: 172500000000) | BIP-630 | 8 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 14464.0 (RAW: 14464000000000000000000) | BIP-630 | 9 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/wonderland:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 30000.0 (RAW: 30000000000) | BIP-578 | 10 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..bbbb167cd --- /dev/null +++ b/BIPs/00batched/2024-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,240 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5fDEcB3bAA4d12Ac1190DF57C3c8347ccb0C4432", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.json", + "bip_number": "BIP-626" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x17a738D17a4ff98abAfde9C60D0d116D0D63021f", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.json", + "bip_number": "BIP-626" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf8aE0F56f7f95f6D3B773799ee85724efD651583", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.json", + "bip_number": "BIP-626" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC65086819f5d32185D9FFCeAe2AE9A6CDCe3F346", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.json", + "bip_number": "BIP-626" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1A33F4e48fc9A6b015Ff44Fa7a592d3aC9F9B99e", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-627syrupUSD-sDAI-gauge-Mainnet.json", + "bip_number": "BIP-627" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x07b914F3C6031D5499ac5bE828016b115fc68825", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-636A-Add-WAR-wETH-Gauge.json", + "bip_number": "BIP-636" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBf4116cEf22D4565A16696427Eaefc248F47Beb6", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-625.json", + "bip_number": "BIP-625" + } + }, + { + "to": "0xDB8d758BCb971e482B2C45f7F8a7740283A1bd3A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_mainnet.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..a0916ca86 --- /dev/null +++ b/BIPs/00batched/2024-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,44 @@ +FILENAME: `BIPs/00batched/2024-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `base, mainnet, arbitrum, polygon, gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/8b53850e-39d8-4e85-8195-8ae144a4f500) +``` ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x7c173e2a341faf5c90bf0ff448cd925d3731c604000200000000000000000eb8 | 50WMATIC-50PORIGON | 0x5fDEcB3bAA4d12Ac1190DF57C3c8347ccb0C4432 | 0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270: WMATIC | 0x0000000000000000000000000000000000000000 | -- | BIP-626 | 0 | +| | pool_address: 0x7c173e2A341Faf5C90BF0fF448CD925D3731c604 | fee: 1.0 | Style: L0 sidechain | 0xC3323b6e71925b25943fB7369EE6769837e9C676: PORIGON | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x0dce7d1e1fbfc85c31bd04f890027738f00e580b000100000000000000000163 | 33WETH-33KABOSUCHAN-33DOG | 0x17a738D17a4ff98abAfde9C60D0d116D0D63021f | 0x4200000000000000000000000000000000000006: WETH | 0x0000000000000000000000000000000000000000 | -- | BIP-626 | 1 | +| | pool_address: 0x0DCE7d1E1fbfC85C31bd04F890027738F00e580B | fee: 1.0 | Style: L0 sidechain | 0x9e949461F9EC22C6032cE26Ea509824Fd2f6d98f: KABOSUCHAN | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | 0xAfb89a09D82FBDE58f18Ac6437B3fC81724e4dF6: DOG | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0xd2b6e489ce64691cb46967df6963a49f92764ba9000200000000000000000545 | 50OOGABOOGA-50USDC | 0xf8aE0F56f7f95f6D3B773799ee85724efD651583 | 0x4e6b45BB1C7D11402faf72c2d59cAbC4085E36f2: OogaBooga | 0x0000000000000000000000000000000000000000 | -- | BIP-626 | 2 | +| | pool_address: 0xd2B6E489ce64691cb46967Df6963a49f92764Ba9 | fee: 1.0 | Style: L0 sidechain | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0xfed111077e0905ef2b2fbf3060cfa9a34bab4383000200000000000000000544 | 50MOLANDAK-50USDT | 0xC65086819f5d32185D9FFCeAe2AE9A6CDCe3F346 | 0xA170Eaa9a74ab4b3218C736210b0421aF35C3c00: MOLANDAK | 0x0000000000000000000000000000000000000000 | -- | BIP-626 | 3 | +| | pool_address: 0xfeD111077E0905eF2B2fbf3060cFa9a34BaB4383 | fee: 1.0 | Style: L0 sidechain | 0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9: USDT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x48a5bfb5bd44345db0b31fa4b5a204890695c9b4000000000000000000000697 | syrupUSDC/sDAI | 0x1A33F4e48fc9A6b015Ff44Fa7a592d3aC9F9B99e | 0x48a5bFB5bd44345Db0B31FA4b5a204890695C9B4: syrupUSDC/sDAI | 0x0000000000000000000000000000000000000000 | -- | BIP-627 | 4 | +| | pool_address: 0x48a5bFB5bd44345Db0B31FA4b5a204890695C9B4 | fee: 0.1 | Style: mainnet | 0x80ac24aA929eaF5013f6436cdA2a7ba190f5Cc0b: syrupUSDC | 0xd2C59781F1Db84080A0592CE83Fe265642A4a8Eb | safe | | | +| | | a-factor: 500 | cap: 2.0% | 0x83F20F44975D03b1b09e64809B757c47f942BEeA: sDAI | 0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c | safe | | | +| GaugeAdderV4/addGauge | 0x5002eb99f569405987d56e53cec01fbb5da28968000200000000000000000696 | 50WAR-50WETH | 0x07b914F3C6031D5499ac5bE828016b115fc68825 | 0xa8258deE2a677874a48F5320670A869D74f0cbC1: WAR | 0x0000000000000000000000000000000000000000 | -- | BIP-636 | 5 | +| | pool_address: 0x5002EB99f569405987d56e53Cec01FbB5DA28968 | fee: 1.0 | Style: mainnet | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x71e1179c5e197fa551beec85ca2ef8693c61b85b0002000000000000000000a0 | ECLP-rETH-WETH | 0xBf4116cEf22D4565A16696427Eaefc248F47Beb6 | 0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1: WETH | | | BIP-625 | 6 | +| | pool_address: 0x71E1179C5e197FA551BEEC85ca2EF8693c61b85b | fee: 0.02 | Style: L0 sidechain | 0xc791240D1F2dEf5938E2031364Ff4ed887133C3d: rETH | | | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W26/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ce699b82-9816-4f64-bea1-b384d1969ac4) +``` ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------------+------------+----------+ +| disable | 0xDB8d758BCb971e482B2C45f7F8a7740283A1bd3A (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "0x2f2770db" | BIP-585 | N/A | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/10-0x14969B55a675d13a1700F71A37511bc22D90155a.json b/BIPs/00batched/2024-W26/10-0x14969B55a675d13a1700F71A37511bc22D90155a.json new file mode 100644 index 000000000..9d85c547d --- /dev/null +++ b/BIPs/00batched/2024-W26/10-0x14969B55a675d13a1700F71A37511bc22D90155a.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_optimism.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/10-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt b/BIPs/00batched/2024-W26/10-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt new file mode 100644 index 000000000..4c249938d --- /dev/null +++ b/BIPs/00batched/2024-W26/10-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W26/10-0x14969B55a675d13a1700F71A37511bc22D90155a.json` +MULTISIG: `!NOT FOUND (optimism:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `optimism` +TENDERLY: SKIPPED (`BadFunctionCallOutput('Could not transact with/call contract function, is contract deployed correctly and chain synced?')`) +``` ++---------+-----------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-----------------------------------------------------------+-------+--------+------------+----------+ +| disable | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | "N/A" | BIP-585 | N/A | ++---------+-----------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/100-0x14969B55a675d13a1700F71A37511bc22D90155a.json b/BIPs/00batched/2024-W26/100-0x14969B55a675d13a1700F71A37511bc22D90155a.json new file mode 100644 index 000000000..1389de861 --- /dev/null +++ b/BIPs/00batched/2024-W26/100-0x14969B55a675d13a1700F71A37511bc22D90155a.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x4bdCc2fb18AEb9e2d281b0278D946445070EAda7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_gnosis.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/100-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt b/BIPs/00batched/2024-W26/100-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt new file mode 100644 index 000000000..1105e8865 --- /dev/null +++ b/BIPs/00batched/2024-W26/100-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W26/100-0x14969B55a675d13a1700F71A37511bc22D90155a.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e3e75f5a-21bf-4730-8dfc-ea13161dec7f) +``` ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| disable | 0x4bdCc2fb18AEb9e2d281b0278D946445070EAda7 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json b/BIPs/00batched/2024-W26/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json new file mode 100644 index 000000000..a00116adc --- /dev/null +++ b/BIPs/00batched/2024-W26/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x577e5993B9Cc480F07F98B5Ebd055604bd9071C4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_zkevm.json", + "bip_number": "BIP-585" + } + }, + { + "to": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_zkevm.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.report.txt b/BIPs/00batched/2024-W26/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.report.txt new file mode 100644 index 000000000..f285f80ce --- /dev/null +++ b/BIPs/00batched/2024-W26/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/00batched/2024-W26/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json` +MULTISIG: `multisigs/feesManager (zkevm:0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': 'f4feee16-3f20-4e08-9d07-59ee92ab8e1e', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++---------+-------------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-------------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| disable | 0x577e5993B9Cc480F07F98B5Ebd055604bd9071C4 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | +| disable | 0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288 (20230711-zkevm-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++---------+-------------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W26/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..c6fd7751d --- /dev/null +++ b/BIPs/00batched/2024-W26/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xe2fa4e1d17725e72dcdAfe943Ecf45dF4B9E285b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_polygon.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W26/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..81b464f8e --- /dev/null +++ b/BIPs/00batched/2024-W26/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W26/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (polygon:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4d573d72-0aef-45ce-8a74-fe66eed697a9) +``` ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| disable | 0xe2fa4e1d17725e72dcdAfe943Ecf45dF4B9E285b (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W26/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..0864f22c0 --- /dev/null +++ b/BIPs/00batched/2024-W26/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA8920455934Da4D853faac1f94Fe7bEf72943eF1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_arbitrum.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W26/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..581536208 --- /dev/null +++ b/BIPs/00batched/2024-W26/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W26/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/33d2bfaa-b76b-41bd-9db1-c32e9f9ab401) +``` ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| disable | 0xA8920455934Da4D853faac1f94Fe7bEf72943eF1 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/43114-0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6.json b/BIPs/00batched/2024-W26/43114-0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6.json new file mode 100644 index 000000000..2b3548976 --- /dev/null +++ b/BIPs/00batched/2024-W26/43114-0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE42FFA682A26EF8F25891db4882932711D42e467", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_avalanche.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/43114-0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6.report.txt b/BIPs/00batched/2024-W26/43114-0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6.report.txt new file mode 100644 index 000000000..cf02609bd --- /dev/null +++ b/BIPs/00batched/2024-W26/43114-0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W26/43114-0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e0c39e77-9c3a-43b5-bba7-51e281a41698) +``` ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| disable | 0xE42FFA682A26EF8F25891db4882932711D42e467 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/8453-0x65226673F3D202E0f897C862590d7e1A992B2048.json b/BIPs/00batched/2024-W26/8453-0x65226673F3D202E0f897C862590d7e1A992B2048.json new file mode 100644 index 000000000..8b356fa69 --- /dev/null +++ b/BIPs/00batched/2024-W26/8453-0x65226673F3D202E0f897C862590d7e1A992B2048.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x8df317a729fcaA260306d7de28888932cb579b88", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W26/BIP-585/disable_base.json", + "bip_number": "BIP-585" + } + } + ] +} diff --git a/BIPs/00batched/2024-W26/8453-0x65226673F3D202E0f897C862590d7e1A992B2048.report.txt b/BIPs/00batched/2024-W26/8453-0x65226673F3D202E0f897C862590d7e1A992B2048.report.txt new file mode 100644 index 000000000..71952083f --- /dev/null +++ b/BIPs/00batched/2024-W26/8453-0x65226673F3D202E0f897C862590d7e1A992B2048.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W26/8453-0x65226673F3D202E0f897C862590d7e1A992B2048.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a5150dac-723c-4572-a08a-dee99909cbb0) +``` ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| disable | 0x8df317a729fcaA260306d7de28888932cb579b88 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W26/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..fe01f4ed5 --- /dev/null +++ b/BIPs/00batched/2024-W26/checkpointer_gauges_by_chain.json @@ -0,0 +1,6 @@ +{ + "Polygon": "[0x5fDEcB3bAA4d12Ac1190DF57C3c8347ccb0C4432]", + "Base": "[0x17a738D17a4ff98abAfde9C60D0d116D0D63021f]", + "Arbitrum": "[0xf8aE0F56f7f95f6D3B773799ee85724efD651583, 0xC65086819f5d32185D9FFCeAe2AE9A6CDCe3F346]", + "Gnosis": "[0xBf4116cEf22D4565A16696427Eaefc248F47Beb6]" +} diff --git a/BIPs/00batched/2024-W26/combined-report.md b/BIPs/00batched/2024-W26/combined-report.md new file mode 100644 index 000000000..54b44e8a6 --- /dev/null +++ b/BIPs/00batched/2024-W26/combined-report.md @@ -0,0 +1,40 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/a074f965-8fc8-4cb8-b480-b27f40af8015) + +[Sign Nonce 247](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +--- +FILENAME: `BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/222205a7-6af5-4981-90f3-e4ef60f5445b) +``` ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xa7ff759dbef9f3efdd1d59beee44b966acafe214000200000000000000000180 | USDC-PAL | N/A | 0xe2b680A8d02fbf48C7D9465398C4225d7b7A7f87 | 1.0% | 2.0% | mainnet | BIP-636 | 7 | ['0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: USDC', '0xAB846Fb6C81370327e784Ae7CbB6d6a6af6Ff4BF: PAL'] | ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/2024-W26/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6f51e78984818972c7b3062d4dd76c47bd1d1217` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4ad3f7fb-217e-4466-8d7a-91c5e96a8773) +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 87000.0 (RAW: 87000000000) | BIP-631 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 522168.0 (RAW: 522168000000) | BIP-634 | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 36000.0 (RAW: 36000000000) | BIP-635 | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 4386.0 (RAW: 4386000000000000000000) | BIP-635 | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 6900.0 (RAW: 6900000000) | BIP-633 | 4 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 33527.0 (RAW: 33527000000000000000000) | BIP-633 | 5 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 90000.0 (RAW: 90000000000) | BIP-632 | 6 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 172500.0 (RAW: 172500000000) | BIP-630 | 8 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 14464.0 (RAW: 14464000000000000000000) | BIP-630 | 9 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/wonderland:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 30000.0 (RAW: 30000000000) | BIP-578 | 10 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W26/tg_template.txt b/BIPs/00batched/2024-W26/tg_template.txt new file mode 100644 index 000000000..1086da812 --- /dev/null +++ b/BIPs/00batched/2024-W26/tg_template.txt @@ -0,0 +1,17 @@ +GM GM. Lots of transfers this week as SPs are getting paid. We did everyone quarterly this time. There may be a few loose ends to tie up, but getting there. Note that the combined-report.md has how much goes where pretty well laid out. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please Sign Nonce 248 +BIP-578: Fund Wonderland +BIP-630: Fund Balancer Maxis +BIP-631: Fund Beets Tech +BIP-632: Fund Beets Marketing +BIP-633: Fund Grants +BIP-634: Fund OpCo +BIP-635: Fund BizDev +BIP-636: Kill old PAL/USD gauge, which is being replaced. + + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W26 diff --git a/BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..e41429056 --- /dev/null +++ b/BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,206 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5205000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-648.json", + "bip_number": "BIP-648" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166, 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json", + "bip_number": "BIP-637" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGaugeType", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Fraxtal" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json", + "bip_number": "BIP-637" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x18CC3C68A5e64b40c846Aa6E45312cbcBb94f71b", + "gaugeType": "Fraxtal" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json", + "bip_number": "BIP-637" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166, 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json", + "bip_number": "BIP-637" + } + }, + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_relock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "processExpiredLocks", + "payable": false + }, + "contractInputsValues": { + "_relock": "true" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-638.json", + "bip_number": "BIP-638" + } + }, + { + "to": "0xFd72170339AC6d7bdda09D1eACA346B21a30D422", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_lock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "_lock": "true" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-638.json", + "bip_number": "BIP-638" + } + } + ] +} diff --git a/BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..f77e518b9 --- /dev/null +++ b/BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,61 @@ +FILENAME: `BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/75d4aada-bcf4-4e45-a852-333a5f595d0d) +``` ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5205.0 (RAW: 5205000000000000000000) | BIP-648 | 0 | ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/81dab0da-5217-4300-920d-560f1bf46e62) +``` ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-637 | 1 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | +| Authorizer/revokeRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-637 | 4 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/59f5fe74-dba4-40a1-82dc-91978ad12e2a) +``` ++---------------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +| addGaugeType | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-637 | N/A | +| | | | "gaugeType": [ | | | +| | | | "Fraxtal" | | | +| | | | ] | | | +| | | | } | | | +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-637 | N/A | +| | | | "factory": [ | | | +| | | | "0x18CC3C68A5e64b40c846Aa6E45312cbcBb94f71b (20240522-fraxtal-root-gauge-factory/OptimisticRootGaugeFactory)" | | | +| | | | ], | | | +| | | | "gaugeType": [ | | | +| | | | "Fraxtal" | | | +| | | | ] | | | +| | | | } | | | +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-638 | N/A | +| | | | "_relock": [ | | | +| | | | false | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (aura/aura_vested_escrow) | 0 | { | BIP-638 | N/A | +| | | | "_lock": [ | | | +| | | | false | | | +| | | | ] | | | +| | | | } | | | ++---------------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W27/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W27/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..c95208330 --- /dev/null +++ b/BIPs/00batched/2024-W27/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,434 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x81900935C04A3F7152BD6b0b3B894Ac5932c367F", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-640-enable-USDC.e-USDT-sDAI-gauge-Gnosis.json", + "bip_number": "BIP-640" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-641.json", + "bip_number": "BIP-641" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3Db8e1Ffe58EA99939efaeF084ca23Cc0195B531", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-639.json", + "bip_number": "BIP-639" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-642.json", + "bip_number": "BIP-642" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-642.json", + "bip_number": "BIP-642" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x82bc385C57447188de50Ba8237210cAaA43a0BB3", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/[BIP-646] Enable instETH-wstETH Gauge Arbitrum.json", + "bip_number": "BIP-646" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6b9dE817875952Cb23d985AbF6fa9ec4b7f66ad5", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.json", + "bip_number": "BIP-643" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7C02ac2BAd481dC4E566D3D54359244f381d58dC", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.json", + "bip_number": "BIP-643" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-645.json", + "bip_number": "BIP-645" + } + }, + { + "to": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint16", + "name": "_remoteChainId", + "type": "uint16" + }, + { + "internalType": "bytes", + "name": "_remoteAddress", + "type": "bytes" + } + ], + "name": "setTrustedRemoteAddress", + "payable": false + }, + "contractInputsValues": { + "_remoteChainId": "255", + "_remoteAddress": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-637C Fraxtal Gauges and Cross Chain Wire Up.json", + "bip_number": "BIP-637" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xccDDC6cbBB003741EAC7A6635d7f3705c5bA6Bd1", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].json", + "bip_number": "BIP-649" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa532f5AAFB0B268D873443d621521ee0EEb8a6d3", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].json", + "bip_number": "BIP-649" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xDa993d62510043602DE20487E8ff409552724f0C", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].json", + "bip_number": "BIP-649" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x03ac2920378A51d6CA78813b1d7578Dab08d3760", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/[BIP-644] Enable amphrETH/rstETH/Re7LRT/steakLRT/[BIP-644] Enable trenSTETH Gauge [Ethereum].json", + "bip_number": "BIP-644" + } + } + ] +} diff --git a/BIPs/00batched/2024-W27/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W27/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..252f8d114 --- /dev/null +++ b/BIPs/00batched/2024-W27/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,73 @@ +FILENAME: `BIPs/00batched/2024-W27/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `polygon, optimism, mainnet, gnosis, arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a969601e-aa2c-474a-b7de-88e558e0ef95) +``` ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xfc095c811fe836ed12f247bcf042504342b73fb700000000000000000000009f | sBAL3 | 0x81900935C04A3F7152BD6b0b3B894Ac5932c367F | 0x2a22f9c3b484c3629090FeED35F17Ff8F88f76F0: USDC.e | 0x0000000000000000000000000000000000000000 | -- | BIP-640 | 0 | +| | pool_address: 0xfC095C811fE836Ed12f247BCf042504342B73FB7 | fee: 0.01 | Style: L0 sidechain | 0x4ECaBa5870353805a9F068101A40E0f32ed605C6: USDT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 2000 | cap: 100.0% | 0xaf204776c7245bF4147c2612BF6e5972Ee483701: sDAI | 0x89C80A4540A00b5270347E02e2E144c71da2EceD | safe | | | +| | | | | 0xfC095C811fE836Ed12f247BCf042504342B73FB7: sBAL3 | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | ECLP-wstETH-WETH | 0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5 | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-641 | 1 | +| | pool_address: 0x7967FA58B9501600D96bD843173b9334983EE6E6 | fee: 0.005 | Style: L0 sidechain | 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x2bb4712247d5f451063b5e4f6948abdfb925d93d000000000000000000000136 | bpt-weethwsteth | 0x3Db8e1Ffe58EA99939efaeF084ca23Cc0195B531 | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | BIP-639 | 2 | +| | pool_address: 0x2Bb4712247D5F451063b5E4f6948abDfb925d93D | fee: 0.04 | Style: L0 sidechain | 0x2Bb4712247D5F451063b5E4f6948abDfb925d93D: bpt-weethwsteth | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 100 | cap: 100.0% | 0x5A7fACB970D094B6C7FF1df0eA68D99E6e73CBFF: weETH | 0xef42D000a3e85C4e71C57e2C6A1E600e86f5a91B | safe | | | +| GaugeAdderV4/addGauge | 0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549 | ECLP-GYD-AUSDT | 0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb | 0xb165a74407fE1e519d6bCbDeC1Ed3202B35a4140: stataArbUSDT | 0x48942B49B5bB6f3E1d43c204a3F40a4c5F696ef6 | safe | BIP-642 | 3 | +| | pool_address: 0x7272163A931DaC5BBe1CB5feFaF959BB65F7346F | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548 | ECLP-GYD-AUSDC | 0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5 | 0x7CFaDFD5645B50bE87d546f42699d863648251ad: stataArbUSDCn | 0x87cD462A781c0ca843EAB131Bf368328848bB6fD | safe | BIP-642 | 4 | +| | pool_address: 0x6e822c64c00393b2078f2a5BB75c575aB505B55c | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x5b89dc91e5a4dc6d4ab0d970af6a7f981971a443000000000000000000000572 | instETH/wstETH | 0x82bc385C57447188de50Ba8237210cAaA43a0BB3 | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-646 | 5 | +| | pool_address: 0x5b89dC91E5a4Dc6D4AB0D970AF6A7F981971a443 | fee: 0.04 | Style: L0 sidechain | 0x5b89dC91E5a4Dc6D4AB0D970AF6A7F981971a443: instETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 100.0% | 0xd08C3F25862077056cb1b710937576Af899a4959: InstETH | 0x57a5a0567187FF4A8dcC1A9bBa86155E355878F2 | !!NO REVIEW!! | | | +| GaugeAdderV4/addGauge | 0x9412206f58cc72b9b4e340422a95354372a3ec3d00020000000000000000069a | 20B-baoUSD-LUSD-BPT-80BAO | 0x6b9dE817875952Cb23d985AbF6fa9ec4b7f66ad5 | 0x7E9AfD25F5Ec0eb24d7d4b089Ae7EcB9651c8b1F: B-baoUSD-LUSD-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-643 | 6 | +| | pool_address: 0x9412206f58cc72b9b4e340422A95354372A3ec3D | fee: 1.0 | Style: mainnet | 0xCe391315b414D4c7555956120461D21808A69F3A: BAO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x19df5bb37380186bc8efc5ad91516373a2c5459f000200000000000000000698 | 20B-baoETH-ETH-BPT-80BAO | 0x7C02ac2BAd481dC4E566D3D54359244f381d58dC | 0x1A44E35d5451E0b78621A1B3e7a53DFaA306B1D0: B-baoETH-ETH-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-643 | 7 | +| | pool_address: 0x19DF5BB37380186bC8EFc5Ad91516373A2C5459f | fee: 1.0 | Style: mainnet | 0xCe391315b414D4c7555956120461D21808A69F3A: BAO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0xb8cb384e65096386c1edaaf784e842c957fa3645000000000000000000000571 | inETH/wstETH | 0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729 | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-645 | 8 | +| | pool_address: 0xB8Cb384E65096386C1eDaaF784e842c957FA3645 | fee: 0.04 | Style: L0 sidechain | 0x5A7a183B6B44Dc4EC2E3d2eF43F98C5152b1d76d: inETH | 0x971b35225361535D04828F16442AAA54009efE1a | !!NO REVIEW!! | | | +| | | a-factor: 200 | cap: 100.0% | 0xB8Cb384E65096386C1eDaaF784e842c957FA3645: inETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x98f9220f128eed5e853cd3d23a2c33e1f98f8311000200000000000000000e55 | LP-TXAU-USDC | 0xccDDC6cbBB003741EAC7A6635d7f3705c5bA6Bd1 | 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359: USDC | | | BIP-649 | 10 | +| | pool_address: 0x98F9220f128Eed5e853cd3D23A2C33E1F98F8311 | fee: Not Found | Style: L0 sidechain | 0xA6da8C8999c094432c77E7d318951D34019AF24B: TXAU | | | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x31ac27805b0665695071b640bf2abfbe0736c02e000200000000000000000e56 | LP-TXAG-USDC | 0xa532f5AAFB0B268D873443d621521ee0EEb8a6d3 | 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359: USDC | | | BIP-649 | 11 | +| | pool_address: 0x31ac27805b0665695071b640BF2Abfbe0736c02E | fee: Not Found | Style: L0 sidechain | 0x57fCbd6503C8BE3B1AbAD191Bc7799ef414A5b31: TXAG | | | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x418681127fb0c4fb5ee01202fbe4ab8c8f4eb84a000100000000000000000e59 | 33TXAG-33WETH-33TXAU | 0xDa993d62510043602DE20487E8ff409552724f0C | 0x57fCbd6503C8BE3B1AbAD191Bc7799ef414A5b31: TXAG | 0x0000000000000000000000000000000000000000 | -- | BIP-649 | 12 | +| | pool_address: 0x418681127fB0C4fb5EE01202fbE4Ab8c8F4eb84a | fee: 0.3 | Style: L0 sidechain | 0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | 0xA6da8C8999c094432c77E7d318951D34019AF24B: TXAU | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | trenSTETH | 0x03ac2920378A51d6CA78813b1d7578Dab08d3760 | 0x4216d5900a6109bba48418b5e2AB6cc4e61Cf477: trenSTETH | 0x0000000000000000000000000000000000000000 | -- | BIP-644 | 13 | +| | pool_address: 0x4216d5900a6109bba48418b5e2AB6cc4e61Cf477 | fee: 0.04 | Style: mainnet | 0x5fD13359Ba15A84B76f7F87568309040176167cd: amphrETH | 0x3A2228C7B3Bc3A32AEa9338d0A890A5EbD7bc977 | safe | | | +| | | a-factor: 200 | cap: 100.0% | 0x7a4EffD87C2f3C55CA251080b1343b605f327E3a: rstETH | 0x6984F8E8ce474B69A2F32bE7dEc4d003d644B4B7 | safe | | | +| | | | | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | | | 0x84631c0d0081FDe56DeB72F6DE77abBbF6A9f93a: Re7LRT | 0x9D09c1E832102A23215e27E85B37b139aEe95Ff4 | safe | | | +| | | | | 0xBEEF69Ac7870777598A04B2bd4771c71212E6aBc: steakLRT | 0x20EDB9299Ae83D9f22bE16279a4A2B422F34d020 | safe | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W27/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/22e33c42-4c0a-4d2f-9b05-747d3541da51) +``` ++-------------------------+-------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------+-------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| setTrustedRemoteAddress | 0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (layerzero/OmniVotingEscrow) | 0 | { | BIP-637 | N/A | +| | | | "_remoteChainId": [ | | | +| | | | 255 | | | +| | | | ], | | | +| | | | "_remoteAddress": [ | | | +| | | | "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (layerzero/OmniVotingEscrow)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+-------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json b/BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json new file mode 100644 index 000000000..10ccf4f0f --- /dev/null +++ b/BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json @@ -0,0 +1,98 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f]", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.json", + "bip_number": "BIP-637" + } + }, + { + "to": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0x1702067424096F07A60e62cceE3dE9420068492D" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.json", + "bip_number": "BIP-637" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f]", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.json", + "bip_number": "BIP-637" + } + } + ] +} diff --git a/BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt b/BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt new file mode 100644 index 000000000..44d4a1826 --- /dev/null +++ b/BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt @@ -0,0 +1,29 @@ +FILENAME: `BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9fc340e2-6f38-43b9-9ceb-0679db089f64) +``` ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f | BIP-637 | 0 | +| Authorizer/revokeRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f | BIP-637 | 2 | ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9fd9fc25-12aa-4fc1-bec2-7b755585062a) +``` ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| setDelegation | 0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7 (20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy) | 0 | { | BIP-637 | N/A | +| | | | "delegation": [ | | | +| | | | "0x1702067424096F07A60e62cceE3dE9420068492D (20230525-l2-veboost-v2/VeBoostV2)" | | | +| | | | ] | | | +| | | | } | | | ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W27/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W27/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..383310ea1 --- /dev/null +++ b/BIPs/00batched/2024-W27/checkpointer_gauges_by_chain.json @@ -0,0 +1,6 @@ +{ + "Gnosis": "[0x81900935C04A3F7152BD6b0b3B894Ac5932c367F]", + "Arbitrum": "[0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5, 0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb, 0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5, 0x82bc385C57447188de50Ba8237210cAaA43a0BB3, 0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729]", + "Optimism": "[0x3Db8e1Ffe58EA99939efaeF084ca23Cc0195B531]", + "Polygon": "[0xccDDC6cbBB003741EAC7A6635d7f3705c5bA6Bd1, 0xa532f5AAFB0B268D873443d621521ee0EEb8a6d3, 0xDa993d62510043602DE20487E8ff409552724f0C]" +} diff --git a/BIPs/00batched/2024-W27/combined-report.md b/BIPs/00batched/2024-W27/combined-report.md new file mode 100644 index 000000000..67b694211 --- /dev/null +++ b/BIPs/00batched/2024-W27/combined-report.md @@ -0,0 +1,98 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/a074f965-8fc8-4cb8-b480-b27f40af8015) + +[Sign Nonce 249](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +FILENAME: `BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/75d4aada-bcf4-4e45-a852-333a5f595d0d) +``` ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5205.0 (RAW: 5205000000000000000000) | BIP-648 | 0 | ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/81dab0da-5217-4300-920d-560f1bf46e62) +``` ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-637 | 1 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | +| Authorizer/revokeRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-637 | 4 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W27/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/59f5fe74-dba4-40a1-82dc-91978ad12e2a) +``` ++---------------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +| addGaugeType | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-637 | N/A | +| | | | "gaugeType": [ | | | +| | | | "Fraxtal" | | | +| | | | ] | | | +| | | | } | | | +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-637 | N/A | +| | | | "factory": [ | | | +| | | | "0x18CC3C68A5e64b40c846Aa6E45312cbcBb94f71b (20240522-fraxtal-root-gauge-factory/OptimisticRootGaugeFactory)" | | | +| | | | ], | | | +| | | | "gaugeType": [ | | | +| | | | "Fraxtal" | | | +| | | | ] | | | +| | | | } | | | +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-638 | N/A | +| | | | "_relock": [ | | | +| | | | false | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (aura/aura_vested_escrow) | 0 | { | BIP-638 | N/A | +| | | | "_lock": [ | | | +| | | | false | | | +| | | | ] | | | +| | | | } | | | ++---------------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` + +## Fraxtal DAO multisig +FILENAME: `BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9fc340e2-6f38-43b9-9ceb-0679db089f64) +``` ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f | BIP-637 | 0 | +| Authorizer/revokeRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f | BIP-637 | 2 | ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W27/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `99fce6b0456b75da0c5defb882bd9570958767fc` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9fd9fc25-12aa-4fc1-bec2-7b755585062a) +``` ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| setDelegation | 0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7 (20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy) | 0 | { | BIP-637 | N/A | +| | | | "delegation": [ | | | +| | | | "0x1702067424096F07A60e62cceE3dE9420068492D (20230525-l2-veboost-v2/VeBoostV2)" | | | +| | | | ] | | | +| | | | } | | | ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W27/tg_template.txt b/BIPs/00batched/2024-W27/tg_template.txt new file mode 100644 index 000000000..dfd5b69fc --- /dev/null +++ b/BIPs/00batched/2024-W27/tg_template.txt @@ -0,0 +1,17 @@ +GM GM. It is very important that we execute mainnet by about 11pm GMT on Wednesday night as we have to relock our Aura. Failure to do so will result in significant loss of our ablitity to direct incentives for the next Aura round. +Request your fast action on mainnet this week frens. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please Sign Nonce 249 +BIP-637: Provision veBAL on Fraxtal +BIP-638: Claim and relock Aura (EXEC BEFORE 00:00 UTC on 2024-07-04) +BIP-648: Extend Karpatkey relationship and grant for Treasury Reporting + +Fraxtal: +Please Sign Nonce 2 +https://safe.optimism.io/transactions/queue?safe=fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e +BIP-637: Provision veBAL on Fraxtal + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W27 \ No newline at end of file diff --git a/BIPs/00batched/2024-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..0b60ad439 --- /dev/null +++ b/BIPs/00batched/2024-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,404 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE03b4CB39C54EedFe4E46677511989866A88dbE3", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/BIP-650.json", + "bip_number": "BIP-650" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x27213687F92cdA21F10cc09A3e860B6D817Ef096", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/BIP-650.json", + "bip_number": "BIP-650" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/BIP-650.json", + "bip_number": "BIP-650" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6DD48C4858dd84738E2A347881D66761C964CE3F", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/BIP-650.json", + "bip_number": "BIP-650" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/BIP-654.json", + "bip_number": "BIP-654" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/BIP-654.json", + "bip_number": "BIP-654" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF91BA601c53F831869DA4aCeAAEc11c479413972", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/BIP-654.json", + "bip_number": "BIP-654" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x17753fC89894A5eBD8b327F7d6121038e9240437", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/BIP-654.json", + "bip_number": "BIP-654" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/[BIP-656] Enable gUSDC-USDC Gauge [Arbitrum].json", + "bip_number": "BIP-656" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x58e71Af9CE4378b79dAAf2C4E7be9765c442dFC2", + "gaugeType": "Fraxtal" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.json", + "bip_number": "BIP-655" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x259371cA8AC5E7F3163704Ce58B0dA58820173ed", + "gaugeType": "Fraxtal" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.json", + "bip_number": "BIP-655" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xEA8Ba6b0cB5908A5d803b01CeAea5a6E65D33508", + "gaugeType": "Fraxtal" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.json", + "bip_number": "BIP-655" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5f0a99997ab2AcC5097dc5349aDF6985761336ac", + "gaugeType": "Fraxtal" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.json", + "bip_number": "BIP-655" + } + } + ] +} diff --git a/BIPs/00batched/2024-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..e43f6d7d9 --- /dev/null +++ b/BIPs/00batched/2024-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,52 @@ +FILENAME: `BIPs/00batched/2024-W28/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e2cf13aa416436d7fbc07f7b500549080669a98e` +CHAIN(S): `mainnet, fraxtal, arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a3b44bd6-6f67-486c-a1ac-422ac61530ec) +``` ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------+-----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------+-----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2b783cd37774bb77d387d35683e8388937712f0a00020000000000000000056b | ECLP-GHO-USDe | 0xE03b4CB39C54EedFe4E46677511989866A88dbE3 | 0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34: USDe | 0x0000000000000000000000000000000000000000 | -- | BIP-650 | 0 | +| | pool_address: 0x2B783cD37774BB77d387D35683e8388937712f0a | fee: 0.01 | Style: L0 sidechain | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c | ECLP-GHO-AUSDC | 0x27213687F92cdA21F10cc09A3e860B6D817Ef096 | 0x7CFaDFD5645B50bE87d546f42699d863648251ad: stataArbUSDCn | 0x87cD462A781c0ca843EAB131Bf368328848bB6fD | safe | BIP-650 | 1 | +| | pool_address: 0x46472CBA35E6800012aA9fcC7939Ff07478C473E | fee: 0.01 | Style: L0 sidechain | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xbc88fa2aeb274326ae3f2c66139d5eb33d1f5c2e00020000000000000000056d | ECLP-GHO-GYD | 0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180 | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | BIP-650 | 2 | +| | pool_address: 0xBc88FA2aeb274326ae3F2c66139D5Eb33D1F5C2E | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xf890360473c12d8015da8dbf7af11da87337a065000000000000000000000570 | GHO/USDC/USDT | 0x6DD48C4858dd84738E2A347881D66761C964CE3F | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | BIP-650 | 3 | +| | pool_address: 0xF890360473c12d8015DA8DBf7Af11dA87337A065 | fee: 0.01 | Style: L0 sidechain | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 750 | cap: 100.0% | 0xF890360473c12d8015DA8DBf7Af11dA87337A065: GHO/USDC/USDT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | | 0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9: USDT | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x8296057edb832feac03269e9fce8304ebcbabcaf00000000000000000000069c | B-baoETH-wstETH-BPT | 0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43 | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | BIP-654 | 4 | +| | pool_address: 0x8296057Edb832feac03269E9fCE8304EbCbAbCaF | fee: 0.04 | Style: mainnet | 0x8296057Edb832feac03269E9fCE8304EbCbAbCaF: B-baoETH-wstETH-BPT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 2.0% | 0xf4edfad26EE0D23B69CA93112eccE52704E0006f: baoETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0xabc7d08ef73fe3fb67efd900f4471cca788b089900000000000000000000069d | B-baoETH-rETH-BPT | 0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f | 0xAbC7d08EF73FE3Fb67eFd900F4471CCa788b0899: B-baoETH-rETH-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-654 | 5 | +| | pool_address: 0xAbC7d08EF73FE3Fb67eFd900F4471CCa788b0899 | fee: 0.04 | Style: mainnet | 0xae78736Cd615f374D3085123A210448E74Fc6393: rETH | 0x1a8F81c256aee9C640e14bB0453ce247ea0DFE6F | safe | | | +| | | a-factor: 200 | cap: 2.0% | 0xf4edfad26EE0D23B69CA93112eccE52704E0006f: baoETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x79af734562f741946566d5126bbded4cb699e35500000000000000000000069f | B-baoUSD-sUSDe-BPT | 0xF91BA601c53F831869DA4aCeAAEc11c479413972 | 0x7945b0A6674b175695e5d1D08aE1e6F13744Abb0: BaoUSD | 0x0000000000000000000000000000000000000000 | -- | BIP-654 | 6 | +| | pool_address: 0x79AF734562f741946566D5126bBDed4Cb699E355 | fee: 0.04 | Style: mainnet | 0x79AF734562f741946566D5126bBDed4Cb699E355: B-baoUSD-sUSDe-BPT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 2.0% | 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497: sUSDe | 0x3A244e6B3cfed21593a5E5B347B593C0B48C7dA1 | safe | | | +| GaugeAdderV4/addGauge | 0xc5b3f108024da9776d024fd9cefa4b48e021f1a200000000000000000000069e | B-baoUSD-sDAI-BPT | 0x17753fC89894A5eBD8b327F7d6121038e9240437 | 0x7945b0A6674b175695e5d1D08aE1e6F13744Abb0: BaoUSD | 0x0000000000000000000000000000000000000000 | -- | BIP-654 | 7 | +| | pool_address: 0xC5B3F108024da9776D024fD9CEFa4b48e021f1A2 | fee: 0.04 | Style: mainnet | 0x83F20F44975D03b1b09e64809B757c47f942BEeA: sDAI | 0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c | safe | | | +| | | a-factor: 200 | cap: 2.0% | 0xC5B3F108024da9776D024fD9CEFa4b48e021f1A2: B-baoUSD-sDAI-BPT | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0xe8a6026365254f779b6927f00f8724ea1b8ae5e0000000000000000000000580 | gUSDC/USDC | 0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7 | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | 0x0000000000000000000000000000000000000000 | -- | BIP-656 | 8 | +| | pool_address: 0xE8a6026365254f779b6927f00f8724EA1B8aE5E0 | fee: 0.02 | Style: L0 sidechain | 0xd3443ee1e91aF28e5FB858Fbd0D72A63bA8046E0: gUSDC | 0x601A3bC1A24d209A2C08D2d54eC3f3aa39c3a40A | safe | | | +| | | a-factor: 200 | cap: 100.0% | 0xE8a6026365254f779b6927f00f8724EA1B8aE5E0: gUSDC/USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0xa0b92b33beafce388ce0092afdcd0ca77323eb12000000000000000000000006 | sFRAX/sDAI | 0x58e71Af9CE4378b79dAAf2C4E7be9765c442dFC2 | 0x09eAdcBAa812A4C076c3a6cDe765DC4a22E0d775: sDAI | 0x95eedc9d10B6964a579948Fd717D34F45E15C0C6 | safe | BIP-655 | 9 | +| | pool_address: 0xA0b92B33BeafcE388Ce0092afDcd0cA77323Eb12 | fee: 0.01 | Style: L0 sidechain | 0xA0b92B33BeafcE388Ce0092afDcd0cA77323Eb12: sFRAX/sDAI | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | cap: 100.0% | 0xfc00000000000000000000000000000000000008: sFRAX | 0x3893E8e1584fF73188034D37Fc6B7d41A255E570 | safe | | | +| GaugeAdderV4/addGauge | 0xa0af0b88796c1aa67e93db89fead2ab7aa3d6747000000000000000000000007 | FRAX/USDe | 0x259371cA8AC5E7F3163704Ce58B0dA58820173ed | 0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34: USDe | 0x0000000000000000000000000000000000000000 | -- | BIP-655 | 10 | +| | pool_address: 0xa0Af0B88796C1aA67e93db89FEAd2Ab7aA3D6747 | fee: 0.01 | Style: L0 sidechain | 0xa0Af0B88796C1aA67e93db89FEAd2Ab7aA3D6747: FRAX/USDe | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | cap: 100.0% | 0xFc00000000000000000000000000000000000001: FRAX | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x33251abecb0364df98a27a8d5d7b5ccddc774c42000000000000000000000008 | sFRAX/sDAI/sUSDe | 0xEA8Ba6b0cB5908A5d803b01CeAea5a6E65D33508 | 0x09eAdcBAa812A4C076c3a6cDe765DC4a22E0d775: sDAI | 0x95eedc9d10B6964a579948Fd717D34F45E15C0C6 | safe | BIP-655 | 11 | +| | pool_address: 0x33251abeCb0364Df98a27A8D5d7b5CCddc774c42 | fee: 0.01 | Style: L0 sidechain | 0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2: sUSDe | 0x99D033888aCe9d8E01F793Cf85AE7d4EA56494F9 | safe | | | +| | | a-factor: 500 | cap: 100.0% | 0x33251abeCb0364Df98a27A8D5d7b5CCddc774c42: sFRAX/sDAI/sUSDe | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | | 0xfc00000000000000000000000000000000000008: sFRAX | 0x3893E8e1584fF73188034D37Fc6B7d41A255E570 | safe | | | +| GaugeAdderV4/addGauge | 0x1570315476480fa80cec1fff07a20c1df1adfd53000200000000000000000009 | sFRAX/sfrxETH | 0x5f0a99997ab2AcC5097dc5349aDF6985761336ac | 0xFC00000000000000000000000000000000000005: sfrxETH | 0x761efEF0347E23e2e75907A6e2df0Bbc6d3A3F38 | safe | BIP-655 | 12 | +| | pool_address: 0x1570315476480fA80ceC1FFF07A20c1df1aDfD53 | fee: 0.05 | Style: L0 sidechain | 0xfc00000000000000000000000000000000000008: sFRAX | 0x3893E8e1584fF73188034D37Fc6B7d41A255E570 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------+-----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W28/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W28/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..c2d71c5a9 --- /dev/null +++ b/BIPs/00batched/2024-W28/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Arbitrum": "[0xE03b4CB39C54EedFe4E46677511989866A88dbE3, 0x27213687F92cdA21F10cc09A3e860B6D817Ef096, 0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180, 0x6DD48C4858dd84738E2A347881D66761C964CE3F, 0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7]", + "Fraxtal": "[0x58e71Af9CE4378b79dAAf2C4E7be9765c442dFC2, 0x259371cA8AC5E7F3163704Ce58B0dA58820173ed, 0xEA8Ba6b0cB5908A5d803b01CeAea5a6E65D33508, 0x5f0a99997ab2AcC5097dc5349aDF6985761336ac]" +} diff --git a/BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..8cdeee8db --- /dev/null +++ b/BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,158 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/BIP-653.json", + "bip_number": "BIP-653" + } + }, + { + "to": "0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/BIP-653.json", + "bip_number": "BIP-653" + } + }, + { + "to": "0xCD19892916929F013930ed628547Cc1F439b230e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/BIP-653.json", + "bip_number": "BIP-653" + } + }, + { + "to": "0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/BIP-653.json", + "bip_number": "BIP-653" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/BIP-653.json", + "bip_number": "BIP-653" + } + } + ] +} diff --git a/BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..7d8921e6c --- /dev/null +++ b/BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,50 @@ +FILENAME: `BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `7b2a929e13e633cb97b5909efe25533030524ec8` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/14ab9daa-298c-40e9-bda0-889322bc3a42) +``` ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 0 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 4 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `7b2a929e13e633cb97b5909efe25533030524ec8` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/8a1923fb-6d0d-4638-9d04-f6c19f774c11) +``` ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| set_reward_distributor | 0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b (gauges/DOLA-USDC BSP-gauge-bc02) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0xCD19892916929F013930ed628547Cc1F439b230e (gauges/sDOLA-DOLA BSP-gauge-cd19) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 (gauges/2BTC-gauge-21c3) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5 (tokens/T)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..db1284315 --- /dev/null +++ b/BIPs/00batched/2024-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdf04E3a7ab9857a16FB97174e0f1001aa44380AF", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/[BIP-659] Enable rsETH-wETH Gauge [Ethereum].json", + "bip_number": "BIP-659" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2fa29bbfd19314b3faf170dc7826ef69372203a6", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/BIP-657.json", + "bip_number": "BIP-657" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA99280581D6520d336231687Fd8D673bBA97c115", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/[BIP-661] Enable 80TRUF-20LINK Gauge [Ethereum].json", + "bip_number": "BIP-661" + } + } + ] +} diff --git a/BIPs/00batched/2024-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..47b45c810 --- /dev/null +++ b/BIPs/00batched/2024-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,20 @@ +FILENAME: `BIPs/00batched/2024-W29/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7b2a929e13e633cb97b5909efe25533030524ec8` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/638f96ee-88e4-416f-9a00-d0461976484f) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x58aadfb1afac0ad7fca1148f3cde6aedf5236b6d00000000000000000000067f | rsETH / WETH | 0xdf04E3a7ab9857a16FB97174e0f1001aa44380AF | 0x58AAdFB1Afac0ad7fca1148f3cdE6aEDF5236B6D: rsETH / WETH | 0x0000000000000000000000000000000000000000 | -- | BIP-659 | 0 | +| | pool_address: 0x58AAdFB1Afac0ad7fca1148f3cdE6aEDF5236B6D | fee: 0.01 | Style: mainnet | 0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7: rsETH | 0x746df66bc1Bb361b9E8E2a794C299c3427976e6C | safe | | | +| | | a-factor: 1000 | cap: 100.0% | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x093254005743b7af89e24f645730ba2dd84413330002000000000000000006a4 | 50APW-50WETH | 0x2fa29bbfd19314b3faf170dc7826ef69372203a6 | 0x4104b135DBC9609Fc1A9490E61369036497660c8: APW | 0x0000000000000000000000000000000000000000 | -- | BIP-657 | 1 | +| | pool_address: 0x093254005743b7Af89e24F645730Ba2dD8441333 | fee: 1.0 | Style: mainnet | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0xe96a45f66bdda121b24f0a861372a72e8889523d00020000000000000000069b | 80TRUF/20LINK | 0xA99280581D6520d336231687Fd8D673bBA97c115 | 0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA: TRUF | 0x0000000000000000000000000000000000000000 | -- | BIP-661 | 2 | +| | pool_address: 0xe96a45f66bdDA121B24F0a861372A72E8889523d | fee: 0.5 | Style: mainnet | 0x514910771AF9Ca656af840dff83E8264EcF986CA: LINK | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..752be1d93 --- /dev/null +++ b/BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/BIP-651.json", + "bip_number": "BIP-651" + } + } + ] +} diff --git a/BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt b/BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt new file mode 100644 index 000000000..ca7e5a9e6 --- /dev/null +++ b/BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `7b2a929e13e633cb97b5909efe25533030524ec8` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/003282db-851c-44db-aedc-af6386a5bf73) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6 | BIP-651 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json b/BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json new file mode 100644 index 000000000..5b28a4842 --- /dev/null +++ b/BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint16", + "name": "_remoteChainId", + "type": "uint16" + }, + { + "internalType": "bytes", + "name": "_remoteAddress", + "type": "bytes" + } + ], + "name": "setTrustedRemoteAddress", + "payable": false + }, + "contractInputsValues": { + "_remoteChainId": "101", + "_remoteAddress": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.json", + "bip_number": "BIP-660" + } + } + ] +} diff --git a/BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.report.txt b/BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.report.txt new file mode 100644 index 000000000..d27c6796a --- /dev/null +++ b/BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.report.txt @@ -0,0 +1,19 @@ +FILENAME: `BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json` +MULTISIG: `multisigs/lm (fraxtal:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `7b2a929e13e633cb97b5909efe25533030524ec8` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/eaef40d5-fe93-4b24-9ed0-8d8ddb191529) +``` ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| setTrustedRemoteAddress | 0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild) | 0 | { | BIP-660 | N/A | +| | | | "_remoteChainId": [ | | | +| | | | "101" | | | +| | | | ], | | | +| | | | "_remoteAddress": [ | | | +| | | | "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W29/README.md b/BIPs/00batched/2024-W29/README.md new file mode 100644 index 000000000..4b76eafea --- /dev/null +++ b/BIPs/00batched/2024-W29/README.md @@ -0,0 +1,3 @@ +1-0x10 was not executed due to not using the authorizer adapter. See: https://github.com/BalancerMaxis/multisig-ops/pull/1179 + +252-9f was loaded on the wrong chain (will reject in W30, and then delayed as it was not time sensitive and this was the only item) \ No newline at end of file diff --git a/BIPs/00batched/2024-W29/combined-report.md b/BIPs/00batched/2024-W29/combined-report.md new file mode 100644 index 000000000..65676ffdd --- /dev/null +++ b/BIPs/00batched/2024-W29/combined-report.md @@ -0,0 +1,96 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/a074f965-8fc8-4cb8-b480-b27f40af8015) + +[Sign Nonce 250](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +FILENAME: `BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `632e2e90b71fe972ba0a55a2c8595f1b631f7ab2` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a97fdaf3-6e04-4c84-883a-85ee76b52c1a) +``` ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 0 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 4 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `632e2e90b71fe972ba0a55a2c8595f1b631f7ab2` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f1cec0a9-3992-4364-b618-a258eef6d7e6) +``` ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| set_reward_distributor | 0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b (gauges/DOLA-USDC BSP-gauge-bc02) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0xCD19892916929F013930ed628547Cc1F439b230e (gauges/sDOLA-DOLA BSP-gauge-cd19) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 (gauges/2BTC-gauge-21c3) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5 (tokens/T)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +``` +## Optimism DAO Multisig +[Sign Nonce 31](https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) + + +FILENAME: `BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `632e2e90b71fe972ba0a55a2c8595f1b631f7ab2` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/259bad4d-ddf1-4ea5-b252-cdf6091526c9) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6 | BIP-651 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` + + +## Fraxtal DAO multisig +[Sign Nonce 4](https://safe.optimism.io/transactions/queue?safe=mode:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e) + +FILENAME: `BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json` +MULTISIG: `multisigs/lm (fraxtal:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `632e2e90b71fe972ba0a55a2c8595f1b631f7ab2` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c3e814c3-68e5-4fbf-bae6-7517a6666362) +``` ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| setTrustedRemoteAddress | 0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild) | 0 | { | BIP-660 | N/A | +| | | | "_remoteChainId": [ | | | +| | | | "101" | | | +| | | | ], | | | +| | | | "_remoteAddress": [ | | | +| | | | "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W29/tg_template.txt b/BIPs/00batched/2024-W29/tg_template.txt new file mode 100644 index 000000000..e9fc5ba22 --- /dev/null +++ b/BIPs/00batched/2024-W29/tg_template.txt @@ -0,0 +1,17 @@ +GM GM. Some housekeeping this week. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please Sign Nonce 250 +BIP-653: Rewire direct incentives distributorship for Paladin + +Optimism: https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc +Please Sign Nonce 31 +BIP-651: Enable Mimic Smartvault V3 on Optimism + +Fraxtal: https://safe.optimism.io/transactions/queue?safe=fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e +Please Sign Nonce 3 +BIP-660: Revise LZ veBAL boost wireup on Fraxtal + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W29 \ No newline at end of file diff --git a/BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..3d05229cd --- /dev/null +++ b/BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-519-2.json", + "bip_number": "BIP-519" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-518-2.json", + "bip_number": "BIP-518" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-534.json", + "bip_number": "BIP-534" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb", + "data": "0xd34fb267" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-534.json", + "bip_number": "BIP-534" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-534.json", + "bip_number": "BIP-534" + } + } + ] +} diff --git a/BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..d8fdc86f7 --- /dev/null +++ b/BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,70 @@ +FILENAME: `BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9e88b57f40a764c1de32faf40e64b1f4e7c0d9ca` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9e88b57f40a764c1de32faf40e64b1f4e7c0d9ca` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-534 | 2 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-534 | 4 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/2024-W3/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9e88b57f40a764c1de32faf40e64b1f4e7c0d9ca` +CHAIN(S): `mainnet` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+=========================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-534 | N/A | +| | | | "target": [ | | | +| | | | "0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb (N/A) " | | | +| | | | ], | | | +| | | | "data": "0xd34fb267" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W3/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W3/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..ec572b30c --- /dev/null +++ b/BIPs/00batched/2024-W3/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1461C4a373d27977f0D343Ba33C22870c89F9dF0", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-528A.json", + "bip_number": "BIP-528" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc40F4ABc616Ab3136A002A667A7830F3F7dEC5FA", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-532.json", + "bip_number": "BIP-532" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8c596E8D1b3Be04a6cAa1B1152b51c495f799a16", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-529.json", + "bip_number": "BIP-529" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB17F2F3dE17D5013E7cc8ceB4ec2BE02c6cc1501", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-531.json", + "bip_number": "BIP-531" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-530.json", + "bip_number": "BIP-530" + } + } + ] +} diff --git a/BIPs/00batched/2024-W3/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W3/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..1a0aaaf0b --- /dev/null +++ b/BIPs/00batched/2024-W3/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,26 @@ +FILENAME: `BIPs/00batched/2024-W3/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9e88b57f40a764c1de32faf40e64b1f4e7c0d9ca` +CHAIN(S): `optimism, mainnet, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xe25ecadca47419e9aee2700ceab4e7c4b01b94ca0002000000000000000004e4 | 20WETH-80PAL | 0x1461C4a373d27977f0D343Ba33C22870c89F9dF0 | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | BIP-528 | 0 | +| | pool_address: 0xe25EcAdcA47419E9aEE2700CeaB4e7c4b01B94ca | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "PAL(0xa7997F0eC9fa54E89659229fB26537B6A725b798)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xa2e9242163d54b536583368a01b5d232c95aa884000000000000000000000653 | ePENDLE/PENDLE | 0xc40F4ABc616Ab3136A002A667A7830F3F7dEC5FA | "ePendle(0x22Fc5A29bd3d6CCe19a06f844019fd506fCe4455)", | "0x0000000000000000000000000000000000000000", | BIP-532 | 1 | +| | pool_address: 0xA2E9242163d54b536583368a01b5D232C95aA884 | fee: 0.3, a-factor: 10 | Style: mainnet, cap: 2.0% | "PENDLE(0x808507121B80c02388fAd14726482e061B8da827)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "ePENDLE/PENDLE(0xA2E9242163d54b536583368a01b5D232C95aA884)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2feb76966459d7841fa8a7ed0aa4bf574d6111bf00020000000000000000011d | bpt-yieldconcerto | 0x8c596E8D1b3Be04a6cAa1B1152b51c495f799a16 | "sFRAX(0x2Dd1B4D4548aCCeA497050619965f91f78b3b532)", | "0xDe3B7eC86B67B05D312ac8FD935B6F59836F2c41", | BIP-529 | 2 | +| | pool_address: 0x2FEb76966459d7841fa8A7Ed0aa4bf574d6111Bf | fee: 0.1, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sfrxETH(0x484c2D6e3cDd945a8B2DF735e079178C1036578c)" | "0xf752dd899F87a91370C1C8ac1488Aef6be687505" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2a5139cd86c041aa3467e649f5ee0880a5de2f2f00020000000000000000011a | bpt-stadue | 0xB17F2F3dE17D5013E7cc8ceB4ec2BE02c6cc1501 | "wstETH(0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb)", | "0x9aa3cd420f830E049e2b223D0b07D8c809C94d15", | BIP-531 | 3 | +| | pool_address: 0x2a5139cd86C041aa3467e649F5Ee0880A5de2f2F | fee: 0.2, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "stERN(0x3eE6107d9C93955acBb3f39871D32B02F82B78AB)" | "0xBCEBb4dcdEc1c12bf7eB31bd26bc9C3b8F55C966" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8 | sFRAX/FRAX | 0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF | "FRAX(0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F)", | "0x0000000000000000000000000000000000000000", | BIP-530 | 4 | +| | pool_address: 0xdfa752ca3fF49d4B6dBE08E2d5a111f51773D395 | fee: 0.04, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "sFRAX/FRAX(0xdfa752ca3fF49d4B6dBE08E2d5a111f51773D395)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | "0x320CFa1a78d37a13C5D1cA5aA51563fF6Bb0f686" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W3/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2024-W3/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..49ea8cd60 --- /dev/null +++ b/BIPs/00batched/2024-W3/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "startCooldown", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W3/BIP-533.json", + "bip_number": "BIP-533" + } + } + ] +} diff --git a/BIPs/00batched/2024-W3/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2024-W3/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..13684eaa3 --- /dev/null +++ b/BIPs/00batched/2024-W3/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/00batched/2024-W3/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `9e88b57f40a764c1de32faf40e64b1f4e7c0d9ca` +CHAIN(S): `arbitrum` +``` ++---------------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+========================================================+=========+==========+==============+============+ +| startCooldown | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (Not Found) | 0 | "N/A" | BIP-533 | N/A | ++---------------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W3/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W3/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..b81cf4b40 --- /dev/null +++ b/BIPs/00batched/2024-W3/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Arbitrum": "[0x1461C4a373d27977f0D343Ba33C22870c89F9dF0, 0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF]", + "Optimism": "[0x8c596E8D1b3Be04a6cAa1B1152b51c495f799a16, 0xB17F2F3dE17D5013E7cc8ceB4ec2BE02c6cc1501]" +} diff --git a/BIPs/00batched/2024-W3/combined-report.md b/BIPs/00batched/2024-W3/combined-report.md new file mode 100644 index 000000000..d5e929227 --- /dev/null +++ b/BIPs/00batched/2024-W3/combined-report.md @@ -0,0 +1,59 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/633983eb-85a7-4bc1-9f76-84679e6e18a8) + +[Sign Nonce 234](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-534 | 2 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-534 | 4 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+=========================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-534 | N/A | +| | | | "target": [ | | | +| | | | "0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb (N/A) " | | | +| | | | ], | | | +| | | | "data": "0xd34fb267" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W3/tg_template.txt b/BIPs/00batched/2024-W3/tg_template.txt new file mode 100644 index 000000000..44c0b23ab --- /dev/null +++ b/BIPs/00batched/2024-W3/tg_template.txt @@ -0,0 +1,13 @@ +gm. Welcome to 2024, and our first signer session. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 233 + +BIP-518&519: Pay Beets SP +BIP-534: Reenable tBTC/WETH gauge on Base + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2024-W03/combined-report.md + + diff --git a/BIPs/00batched/2024-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..a1c6f40bd --- /dev/null +++ b/BIPs/00batched/2024-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W30/BIP-653.json", + "bip_number": "BIP-653" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b", + "data": "0x058a3a2400000000000000000000000041d5d79431a913c4ae7d69a668ecdfe5ff9dfb68000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W30/BIP-653.json", + "bip_number": "BIP-653" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xCD19892916929F013930ed628547Cc1F439b230e", + "data": "0x058a3a2400000000000000000000000041d5d79431a913c4ae7d69a668ecdfe5ff9dfb68000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W30/BIP-653.json", + "bip_number": "BIP-653" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8", + "data": "0x058a3a24000000000000000000000000cdf7028ceab81fa0c6971208e83fa7872994bee5000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W30/BIP-653.json", + "bip_number": "BIP-653" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W30/BIP-653.json", + "bip_number": "BIP-653" + } + } + ] +} diff --git a/BIPs/00batched/2024-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..ecc4443c8 --- /dev/null +++ b/BIPs/00batched/2024-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,32 @@ +FILENAME: `BIPs/00batched/2024-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6e04a43ee3ef7fefe40a2f1a83e564ad30992414` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b2f371b3-bcd7-4f57-afd1-7f8058040314) +``` ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 0 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 4 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W30/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6e04a43ee3ef7fefe40a2f1a83e564ad30992414` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f6f12ad7-a256-4579-b917-07010deb45ef) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b (gauges/DOLA-USDC BSP-gauge-bc02) | set_reward_distributor(address,address) | 0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68: tokens/INV | BIP-653 | 1 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xCD19892916929F013930ed628547Cc1F439b230e (gauges/sDOLA-DOLA BSP-gauge-cd19) | set_reward_distributor(address,address) | 0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68: tokens/INV | BIP-653 | 2 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 (gauges/2BTC-gauge-21c3) | set_reward_distributor(address,address) | 0xCdF7028ceAB81fA0C6971208e83fa7872994beE5: tokens/T | BIP-653 | 3 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..17d9f700e --- /dev/null +++ b/BIPs/00batched/2024-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9eCc698c20219Ea45697d82ca89cD044aEEACF60", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W30/[BIP-663] Enable GYD-wUSDM Gauge [Arbitrum].json", + "bip_number": "BIP-663" + } + } + ] +} diff --git a/BIPs/00batched/2024-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..468f3090f --- /dev/null +++ b/BIPs/00batched/2024-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/00batched/2024-W30/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6e04a43ee3ef7fefe40a2f1a83e564ad30992414` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/12b26d9e-771e-49d7-82b9-a649d7cc104b) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x315dd595e82bdc0c194f3a38a08fde480d7e5d2100020000000000000000056a | ECLP-wUSDM-GYD | 0x9eCc698c20219Ea45697d82ca89cD044aEEACF60 | 0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812: wUSDM | 0x7F55E509006C9Df7594C4819Ba7ebfE6EfE4854b | safe | BIP-663 | 0 | +| | pool_address: 0x315dd595e82bDc0c194f3A38A08fDE480D7E5d21 | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W30/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json b/BIPs/00batched/2024-W30/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json new file mode 100644 index 000000000..5b28a4842 --- /dev/null +++ b/BIPs/00batched/2024-W30/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint16", + "name": "_remoteChainId", + "type": "uint16" + }, + { + "internalType": "bytes", + "name": "_remoteAddress", + "type": "bytes" + } + ], + "name": "setTrustedRemoteAddress", + "payable": false + }, + "contractInputsValues": { + "_remoteChainId": "101", + "_remoteAddress": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.json", + "bip_number": "BIP-660" + } + } + ] +} diff --git a/BIPs/00batched/2024-W30/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.report.txt b/BIPs/00batched/2024-W30/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.report.txt new file mode 100644 index 000000000..782ae66e3 --- /dev/null +++ b/BIPs/00batched/2024-W30/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.report.txt @@ -0,0 +1,19 @@ +FILENAME: `BIPs/00batched/2024-W30/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json` +MULTISIG: `multisigs/lm (fraxtal:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `6e04a43ee3ef7fefe40a2f1a83e564ad30992414` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d31a9499-a8ce-4e20-863f-5bd5f73adcf5) +``` ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| setTrustedRemoteAddress | 0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild) | 0 | { | BIP-660 | N/A | +| | | | "_remoteChainId": [ | | | +| | | | "101" | | | +| | | | ], | | | +| | | | "_remoteAddress": [ | | | +| | | | "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W30/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W30/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..b7ee0aa41 --- /dev/null +++ b/BIPs/00batched/2024-W30/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0x9eCc698c20219Ea45697d82ca89cD044aEEACF60]" +} diff --git a/BIPs/00batched/2024-W30/combined-report.md b/BIPs/00batched/2024-W30/combined-report.md new file mode 100644 index 000000000..7d71909d5 --- /dev/null +++ b/BIPs/00batched/2024-W30/combined-report.md @@ -0,0 +1,98 @@ + +## Mainnet DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/1c84d54d-4aaa-44cb-9180-51e2e12e79f5) +[Reject Nonce 250 - will fail, Sign Nonce 251](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +Note that Nonce 250 was loaded without using the authorizer adapter, tenderly showed success, and it was only caught in final review after loading. 250 will fail to exec. The original [Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/a074f965-8fc8-4cb8-b480-b27f40af8015) shows an end state of success but does show the revert. +251 is the corrected version that calls admin functions the gauge through the AuthorizerAdapter + +FILENAME: `BIPs/00batched/2024-W29/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `632e2e90b71fe972ba0a55a2c8595f1b631f7ab2` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a97fdaf3-6e04-4c84-883a-85ee76b52c1a) +``` ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 0 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 4 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| set_reward_distributor | 0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b (gauges/DOLA-USDC BSP-gauge-bc02) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0xCD19892916929F013930ed628547Cc1F439b230e (gauges/sDOLA-DOLA BSP-gauge-cd19) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 (gauges/2BTC-gauge-21c3) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5 (tokens/T)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +``` +## Optimism DAO Multisig +[Sign Nonce 31](https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) + +Note this was loaded in Week-29 but delayed due to no critical operatiions. + + +FILENAME: `BIPs/00batched/2024-W29/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `632e2e90b71fe972ba0a55a2c8595f1b631f7ab2` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/259bad4d-ddf1-4ea5-b252-cdf6091526c9) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6 | BIP-651 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` + + +## Fraxtal DAO multisig +[Sign Nonce 4](https://safe.optimism.io/transactions/queue?safe=fraxtal:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e) + +FILENAME: `BIPs/00batched/2024-W29/252-0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e.json` +MULTISIG: `multisigs/lm (fraxtal:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `632e2e90b71fe972ba0a55a2c8595f1b631f7ab2` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c3e814c3-68e5-4fbf-bae6-7517a6666362) +``` ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| setTrustedRemoteAddress | 0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild) | 0 | { | BIP-660 | N/A | +| | | | "_remoteChainId": [ | | | +| | | | "101" | | | +| | | | ], | | | +| | | | "_remoteAddress": [ | | | +| | | | "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +``` +## MODE DAO Multisig +Please reject Nonce 4. The fraxtal payload above was loaded on the wrong safe due to some confusion with new chain_ids, the non-standard safe interface, and the lack of tenderly to check things. \ No newline at end of file diff --git a/BIPs/00batched/2024-W30/tg_template.txt b/BIPs/00batched/2024-W30/tg_template.txt new file mode 100644 index 000000000..8c5c0aec2 --- /dev/null +++ b/BIPs/00batched/2024-W30/tg_template.txt @@ -0,0 +1,24 @@ +GM GM. Last week we loaded a 2 problematic payloads, and then delayed because nothing critical could be executed. As a result we will need to Reject transactions on Mainnet, and Mode. Please carefully read the instructions for each safe. Details about what happened are in the combined report. + + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +-> Please REJECT Nonce 250 +Rewire direct incentives distributorship for Paladin will fail due to not using the AuthorizerAdapter. Tenderly made us a little too comfy here. +-> Plese SIGN Nonce 251 +BIP-653: Rewire direct incentives distributorship for Paladin + +Optimism: https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc +-> Please Sign Nonce 31 +BIP-651: Enable Mimic Smartvault V3 on Optimism + +Fraxtal: https://safe.optimism.io/transactions/queue?safe=fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e +-> Please Sign Nonce 3 +BIP-660: Revise LZ veBAL boost wireup on Fraxtal + +Mode: https://safe.optimism.io/transactions/queue?safe=mode:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e +-> Please REJECT Nonce 4 +I got confused by the Op safe interface and new chain IDs and loaded BIP-660 on Mode instead of Fraxtal... :/ + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W30 \ No newline at end of file diff --git a/BIPs/00batched/2024-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..2c63343ec --- /dev/null +++ b/BIPs/00batched/2024-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "1000000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W31/BIP-664.json", + "bip_number": "BIP-664" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "21724000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W31/BIP-103-May-Jun.json", + "bip_number": "BIP-103" + } + } + ] +} diff --git a/BIPs/00batched/2024-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..8c3e2b543 --- /dev/null +++ b/BIPs/00batched/2024-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/00batched/2024-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `40f0eb6ce6a47a6bac5ab087f2f085f528786fdf` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6a87d1be-6de5-49b2-bb19-49c85d612579) +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 1000000.0 (RAW: 1000000000000000000000000) | BIP-664 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 21724.0 (RAW: 21724000000) | BIP-103 | 1 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W31/combined-report.md b/BIPs/00batched/2024-W31/combined-report.md new file mode 100644 index 000000000..4005af337 --- /dev/null +++ b/BIPs/00batched/2024-W31/combined-report.md @@ -0,0 +1,19 @@ + +## Mainnet DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/9edb82d9-dc25-4bb9-9cf8-7d5aac204ae6) +[Sign Nonce 252](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +FILENAME: `BIPs/00batched/2024-W31/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `a4e17f2e1679458251d0747dfa7b554e0390cb57` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d35e2693-d633-4995-9339-870e1c17e2ad) +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 1000000.0 (RAW: 1000000000000000000000000) | BIP-664 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 21724.0 (RAW: 21724000000) | BIP-103 | 1 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W31/tg_template.txt b/BIPs/00batched/2024-W31/tg_template.txt new file mode 100644 index 000000000..f83d6ec44 --- /dev/null +++ b/BIPs/00batched/2024-W31/tg_template.txt @@ -0,0 +1,11 @@ +GM GM. This week we have a request to urgently get some BAL to OpCo so they can begin KYC process with market makers. Those involved have requested us to be as prompt as possible. +Please also review the message directly above for information about a upcoming BIP relating to our group and a bit more info about what is to come over the next couple weeks. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Plase Sign Nonce 252 +BIP-664: Engage A Market Maker +BIP-103: Karpatkey May-June 2024 + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W31 diff --git a/BIPs/00batched/2024-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..b4616e49f --- /dev/null +++ b/BIPs/00batched/2024-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,102 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "125000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W32/BIP-666-COWAMM-POL.json", + "bip_number": "BIP-666" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "213675210000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W32/BIP-666-COWAMM-POL.json", + "bip_number": "BIP-666" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "wad": "118260000000000000000" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W32/BIP-666-COWAMM-POL.json", + "bip_number": "BIP-666" + } + } + ] +} diff --git a/BIPs/00batched/2024-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..96d1d4f98 --- /dev/null +++ b/BIPs/00batched/2024-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/00batched/2024-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `93a1b6634d0d627810ccdbb291dbd5be5eb2ed00` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/98efa4bf-a4fe-4588-94e5-b989b273299f) +``` ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 125000.0 (RAW: 125000000000) | BIP-666 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 213675.21 (RAW: 213675210000000000000000) | BIP-666 | 1 | +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 118.26 (RAW: 118260000000000000000) | BIP-666 | 2 | ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..ae16dfd4a --- /dev/null +++ b/BIPs/00batched/2024-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9fbfcb0547Dc7D57258b8Cf57A57624c6C3a61A1", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W32/BIP-665.json", + "bip_number": "BIP-665" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC8BA8e58Df99e974960789494a615c876F8190c9", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W32/BIP-665.json", + "bip_number": "BIP-665" + } + } + ] +} diff --git a/BIPs/00batched/2024-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..da4f9791b --- /dev/null +++ b/BIPs/00batched/2024-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/00batched/2024-W32/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `93a1b6634d0d627810ccdbb291dbd5be5eb2ed00` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7e03e61f-7076-460b-8410-293158779fdb) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xd4cc1afe3430c6c227f8f640d022bf5747538f53000200000000000000000ebb | LP-COPM-USDC | 0x9fbfcb0547Dc7D57258b8Cf57A57624c6C3a61A1 | 0x12050c705152931cFEe3DD56c52Fb09Dea816C23: COPM | | | BIP-665 | 0 | +| | pool_address: 0xd4Cc1Afe3430C6C227F8F640D022bf5747538F53 | fee: Not Found | Style: L0 sidechain | 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359: USDC | | | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0xa2a6639815c2147ce904308ddfea38b6f1ab8ddd000200000000000000000ebc | 50COPM-50WETH | 0xC8BA8e58Df99e974960789494a615c876F8190c9 | 0x12050c705152931cFEe3DD56c52Fb09Dea816C23: COPM | 0x0000000000000000000000000000000000000000 | -- | BIP-665 | 1 | +| | pool_address: 0xA2a6639815C2147ce904308ddFea38B6F1Ab8Ddd | fee: 1.0 | Style: L0 sidechain | 0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W32/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W32/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..82e825961 --- /dev/null +++ b/BIPs/00batched/2024-W32/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Polygon": "[0x9fbfcb0547Dc7D57258b8Cf57A57624c6C3a61A1, 0xC8BA8e58Df99e974960789494a615c876F8190c9]" +} diff --git a/BIPs/00batched/2024-W32/combined-report.md b/BIPs/00batched/2024-W32/combined-report.md new file mode 100644 index 000000000..b7c6c626c --- /dev/null +++ b/BIPs/00batched/2024-W32/combined-report.md @@ -0,0 +1,20 @@ + +## Mainnet DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/c8efa17b-bba7-4b6f-ad65-925ddd693b97) +[Sign Nonce 253](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +FILENAME: `BIPs/00batched/2024-W32/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e35bff78de3f11cc484b1113ad2ec3f194661829` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/3a1fc0f9-3eaa-414f-a336-acee92b22408) +``` ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 125000.0 (RAW: 125000000000) | BIP-666 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 213675.21 (RAW: 213675210000000000000000) | BIP-666 | 1 | +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 118.26 (RAW: 118260000000000000000) | BIP-666 | 2 | ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W32/tg_template.txt b/BIPs/00batched/2024-W32/tg_template.txt new file mode 100644 index 000000000..3c66ac4f5 --- /dev/null +++ b/BIPs/00batched/2024-W32/tg_template.txt @@ -0,0 +1,9 @@ +GM GM. This week we need to send some funds to an operational safe in order to seed some liquidtiy for the CowAMM launch taking place on the 8th. Would be amazing if we could get the single, simple, tx on mainnet signed by Wednesday afternoon CET. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Plase Sign Nonce 253 +BIP-666: Seed pools for CowAMM launch + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W32 diff --git a/BIPs/00batched/2024-W33/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json b/BIPs/00batched/2024-W33/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json new file mode 100644 index 000000000..b893e4f09 --- /dev/null +++ b/BIPs/00batched/2024-W33/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json @@ -0,0 +1,366 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714755380082, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "", + "checksum": "0xac654bde04827bf032e496187c74484e2119858952f2835e22284c00fba61451" + }, + "transactions": [ + { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "enableModule", + "payable": false + }, + "contractInputsValues": { + "module": "0x13c61a25DB73e7a94a244bD2205aDba8b4a60F4a" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x569d3489", + "conditions": "[[0,5,5,\"0x\"],[0,3,5,\"0x\"],[0,1,0,\"0x\"],[0,1,18,\"0x00000000000000000000000000000000000000000000000000000000000000c9\"],[1,0,2,\"0x\"],[1,0,2,\"0x\"],[1,1,15,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[4,1,16,\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[4,1,16,\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[4,1,16,\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[4,1,16,\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"],[4,1,16,\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"],[4,1,16,\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[4,1,16,\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[4,1,16,\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"],[4,1,16,\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[4,1,16,\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[4,1,16,\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[4,1,16,\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[5,1,16,\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[5,1,16,\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[5,1,16,\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[5,1,16,\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[5,1,16,\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[5,1,16,\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[5,1,16,\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[5,1,16,\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]]", + "options": "2" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x5a66c223", + "conditions": "[[0,5,5,\"0x\"],[0,3,5,\"0x\"],[1,0,2,\"0x\"],[1,0,2,\"0x\"],[1,1,15,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[2,1,16,\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[2,1,16,\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[2,1,16,\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[2,1,16,\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"],[2,1,16,\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"],[2,1,16,\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[2,1,16,\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[2,1,16,\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"],[2,1,16,\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[2,1,16,\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[2,1,16,\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[2,1,16,\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[3,1,16,\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[3,1,16,\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[3,1,16,\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[3,1,16,\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[3,1,16,\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[3,1,16,\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[3,1,16,\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[3,1,16,\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]]", + "options": "2" + } + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670220000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc30000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "data": "0x095ea7b30000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f50000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "data": "0x095ea7b3000000000000000000000000e65cdb6479bac1e22340e4e755fae7e509ecd06c0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xFe2e637202056d30016725477c5da089Ab0A043A", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x20BC832ca081b91433ff6c17f85701B6e92486c5", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xFe2e637202056d30016725477c5da089Ab0A043A", + "data": "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000039aa39c021dfbae8fac545936693ac917d5e75630000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b30000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e36430000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + } + ] +} diff --git a/BIPs/00batched/2024-W33/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt b/BIPs/00batched/2024-W33/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt new file mode 100644 index 000000000..2744327a0 --- /dev/null +++ b/BIPs/00batched/2024-W33/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt @@ -0,0 +1,372 @@ +FILENAME: `BIPs/00batched/2024-W33/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json` +MULTISIG: `multisigs/karpatkey (mainnet:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `4948709759c1237b2bd778f7c01d94955bd0cd51` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `scopeFunction`, positional arguments with type(s) `str,address,str,(str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str),int` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `scopeFunction`: ['scopeFunction(bytes32,address,bytes4,(uint8,uint8,uint8,bytes)[],uint8)']\nFunction invocation failed due to no matching argument types."))` +``` ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| enableModule | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | N/A | N/A | +| | | | "module": [ | | | +| | | | "0x13c61a25DB73e7a94a244bD2205aDba8b4a60F4a (karpatkey/roles_v2)" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x569d3489" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "0", | | | +| | | | "5", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "3", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "1", | | | +| | | | "18", | | | +| | | | "\"0x00000000000000000000000000000000000000000000000000000000000000c9\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "15", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5a66c223" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "0", | | | +| | | | "5", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "3", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "15", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670220000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb0000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c0000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc30000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (tokens/wstETH) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b30000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f50000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b3000000000000000000000000e65cdb6479bac1e22340e4e755fae7e509ecd06c0000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (tokens/wstETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 (tokens/WBTC) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xFe2e637202056d30016725477c5da089Ab0A043A (tokens/sETH2) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2 (tokens/SWISE) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x20BC832ca081b91433ff6c17f85701B6e92486c5 (tokens/rETH2) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xFe2e637202056d30016725477c5da089Ab0A043A (tokens/sETH2) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000039aa39c021dfbae8fac545936693ac917d5e75630000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b30000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e36430000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | +| !!N/A!! | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 (tokens/WBTC) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | N/A | N/A | ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..0355fcd70 --- /dev/null +++ b/BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "21978000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-669.json", + "bip_number": "BIP-669" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "dst", + "type": "address" + }, + { + "internalType": "uint256", + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "wad": "24450000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-669.json", + "bip_number": "BIP-669" + } + }, + { + "to": "0xD6208F3B61640baEbb71aa59b58Cc61E32F8Ddf5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "revoke", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-668-Revoke-Wonderland-vest.json", + "bip_number": "BIP-668" + } + } + ] +} diff --git a/BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..d96df6404 --- /dev/null +++ b/BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,25 @@ +FILENAME: `BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `4948709759c1237b2bd778f7c01d94955bd0cd51` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/963de604-4e30-45c4-92e9-061d24ccb895) +``` ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 21978.0 (RAW: 21978000000000000000000) | BIP-669 | 0 | +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 24.45 (RAW: 24450000000000000000) | BIP-669 | 1 | ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `4948709759c1237b2bd778f7c01d94955bd0cd51` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4c4d41e4-4bc8-490f-92f6-16a55e079d1a) +``` ++---------+--------------------------------------------------------+-------+--------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+--------------+------------+----------+ +| revoke | 0xD6208F3B61640baEbb71aa59b58Cc61E32F8Ddf5 (Not Found) | 0 | "0xb6549f75" | BIP-668 | N/A | ++---------+--------------------------------------------------------+-------+--------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..80bc74717 --- /dev/null +++ b/BIPs/00batched/2024-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,254 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x24E9A49Ffd2B2189940E802e62f318382fAB395c", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-671.json", + "bip_number": "BIP-671" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5a47e3f2E5009168Af11C4b0198605f694805779", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json", + "bip_number": "BIP-675" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xcb785286C9bEBeFF7654a8238Eb563666fD75338", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json", + "bip_number": "BIP-675" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json", + "bip_number": "BIP-675" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json", + "bip_number": "BIP-675" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x00654F788342647A8Aa15f2eb2490e17d222aC85", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json", + "bip_number": "BIP-675" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xAc1305f2C08E961dcEd925b585c3882afCa8C1c5", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-672.json", + "bip_number": "BIP-672" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x86893f6829dA1296F739F50Ff9d3923453E9b48D", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-674.json", + "bip_number": "BIP-674" + } + } + ] +} diff --git a/BIPs/00batched/2024-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..94c2434bb --- /dev/null +++ b/BIPs/00batched/2024-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,35 @@ +FILENAME: `BIPs/00batched/2024-W33/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4948709759c1237b2bd778f7c01d94955bd0cd51` +CHAIN(S): `optimism, arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1aba4fb6-af3a-4245-b821-df2f4c962178) +``` ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x0ccb0c34d4898dfa8de3ece9d814074e60adefd0000000000000000000000142 | bpt-ineth-wsteth | 0x24E9A49Ffd2B2189940E802e62f318382fAB395c | 0x0Ccb0C34D4898dFA8de3ece9D814074E60aDEFd0: bpt-ineth-wsteth | 0x0000000000000000000000000000000000000000 | -- | BIP-671 | 0 | +| | pool_address: 0x0Ccb0C34D4898dFA8de3ece9D814074E60aDEFd0 | fee: 0.1 | Style: L0 sidechain | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | | | +| | | a-factor: 100 | cap: 100.0% | 0x5A7a183B6B44Dc4EC2E3d2eF43F98C5152b1d76d: inETH | 0x210ABdFD989f3eE5C08614a8f4e096Cf8408f5DF | safe | | | +| GaugeAdderV4/addGauge | 0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f | ECLP-sUSDe-GYD | 0x5a47e3f2E5009168Af11C4b0198605f694805779 | 0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2: sUSDe | 0x3A236F67Fce401D87D7215695235e201966576E4 | safe | BIP-675 | 1 | +| | pool_address: 0xdeEaF8B0A8Cf26217261b813e085418C7dD8F1eE | fee: 0.15 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594 | ECLP-rETH-wstETH | 0xcb785286C9bEBeFF7654a8238Eb563666fD75338 | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-675 | 2 | +| | pool_address: 0xa899c63BA9ff275d6bfc83E43ee8E58fF6987584 | fee: 0.02 | Style: L0 sidechain | 0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8: rETH | 0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xff38cc0ce0de4476c5a3e78675b48420a851035b000200000000000000000593 | ECLP-GHO-GYD-rh | 0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | BIP-675 | 3 | +| | pool_address: 0xff38cC0cE0DE4476C5a3e78675b48420A851035B | fee: 0.01 | Style: L0 sidechain | 0xD9FBA68D89178e3538e708939332c79efC540179: stataArbGHO | 0x177862A0242acD8b5F9cc757a963c1C8883da45E | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x71c64ac8ec1da03f8a05c3cfeb6493e6dad54a6f000200000000000000000592 | ECLP-wUSDM-USDC-rh | 0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E | 0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812: wUSDM | 0x7F55E509006C9Df7594C4819Ba7ebfE6EfE4854b | safe | BIP-675 | 4 | +| | pool_address: 0x71c64ac8Ec1DA03f8A05C3cfEB6493E6DAd54a6F | fee: 0.01 | Style: L0 sidechain | 0x7CFaDFD5645B50bE87d546f42699d863648251ad: stataArbUSDCn | 0x87cD462A781c0ca843EAB131Bf368328848bB6fD | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x36c2f879f446c3b6533f9703745c0504f3a84885000200000000000000000591 | ECLP-sFRAX-aFRAX | 0x00654F788342647A8Aa15f2eb2490e17d222aC85 | 0x89AEc2023f89E26Dbb7eaa7a98fe3996f9d112A8: stataArbFRAX | 0x183Ac1bCC538aa9729350f8a9C6357a268e1Bd03 | safe | BIP-675 | 5 | +| | pool_address: 0x36C2f879f446c3b6533f9703745C0504f3a84885 | fee: 0.01 | Style: L0 sidechain | 0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906: sFRAX | 0x155a25c8C3a9353d47BCDBc3650E19d1aEa13E54 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xc9eb4b8ce914ee451360b315ffd1d1af8df96be9000000000000000000000143 | bpt-insteth-wsteth | 0xAc1305f2C08E961dcEd925b585c3882afCa8C1c5 | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | BIP-672 | 6 | +| | pool_address: 0xC9Eb4b8ce914EE451360B315ffD1D1AF8df96bE9 | fee: 0.1 | Style: L0 sidechain | 0xC9Eb4b8ce914EE451360B315ffD1D1AF8df96bE9: bpt-insteth-wsteth | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 50 | cap: 100.0% | 0xd08C3F25862077056cb1b710937576Af899a4959: InstETH | 0xC092E0a4f5a2AdF3CF91E27cf4B7d7917D12CA2B | safe | | | +| GaugeAdderV4/addGauge | 0x69d9bc07a19caad9ae4ca40af18d5a688839a29900020000000000000000058e | ECLP-gUSDC-AUSDC | 0x86893f6829dA1296F739F50Ff9d3923453E9b48D | 0x7CFaDFD5645B50bE87d546f42699d863648251ad: stataArbUSDCn | 0x87cD462A781c0ca843EAB131Bf368328848bB6fD | safe | BIP-674 | 7 | +| | pool_address: 0x69D9BC07A19CAAD9aE4ca40Af18d5A688839a299 | fee: 0.02 | Style: L0 sidechain | 0xd3443ee1e91aF28e5FB858Fbd0D72A63bA8046E0: gUSDC | 0x601A3bC1A24d209A2C08D2d54eC3f3aa39c3a40A | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W33/10-0x09Df1626110803C7b3b07085Ef1E053494155089.json b/BIPs/00batched/2024-W33/10-0x09Df1626110803C7b3b07085Ef1E053494155089.json new file mode 100644 index 000000000..4656b486f --- /dev/null +++ b/BIPs/00batched/2024-W33/10-0x09Df1626110803C7b3b07085Ef1E053494155089.json @@ -0,0 +1,158 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "oldOwner": "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6", + "newOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.json", + "bip_number": "BIP-670" + } + }, + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x693f30c37D5a0Db9258C636E93Ccf011ACd8c90c" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.json", + "bip_number": "BIP-670" + } + }, + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x693f30c37D5a0Db9258C636E93Ccf011ACd8c90c", + "oldOwner": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "newOwner": "0xa01Bfd7F1Be1ccF81A02CF7D722c30bDCc029718" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.json", + "bip_number": "BIP-670" + } + }, + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "removeOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "owner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "_threshold": "3" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.json", + "bip_number": "BIP-670" + } + } + ] +} diff --git a/BIPs/00batched/2024-W33/10-0x09Df1626110803C7b3b07085Ef1E053494155089.report.txt b/BIPs/00batched/2024-W33/10-0x09Df1626110803C7b3b07085Ef1E053494155089.report.txt new file mode 100644 index 000000000..e4a6bdefa --- /dev/null +++ b/BIPs/00batched/2024-W33/10-0x09Df1626110803C7b3b07085Ef1E053494155089.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/00batched/2024-W33/10-0x09Df1626110803C7b3b07085Ef1E053494155089.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `4948709759c1237b2bd778f7c01d94955bd0cd51` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/08f44b78-a430-4956-844e-9f602bb4d528) +``` ++-------------+-----------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+-----------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | { | BIP-670 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/emergency/xeonus)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6 (N/A)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | { | BIP-670 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x693f30c37D5a0Db9258C636E93Ccf011ACd8c90c (EOA/beethoven/ardo)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | { | BIP-670 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x693f30c37D5a0Db9258C636E93Ccf011ACd8c90c (EOA/beethoven/ardo)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D (EOA/maxi_deployers/mikeb)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0xa01Bfd7F1Be1ccF81A02CF7D722c30bDCc029718 (EOA/beethoven/netrim)" | | | +| | | | ] | | | +| | | | } | | | +| removeOwner | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | { | BIP-670 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F (EOA/dao/tritium)" | | | +| | | | ], | | | +| | | | "owner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "3" | | | +| | | | ] | | | +| | | | } | | | ++-------------+-----------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W33/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W33/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..08161d907 --- /dev/null +++ b/BIPs/00batched/2024-W33/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Optimism": "[0x24E9A49Ffd2B2189940E802e62f318382fAB395c, 0xAc1305f2C08E961dcEd925b585c3882afCa8C1c5]", + "Arbitrum": "[0x5a47e3f2E5009168Af11C4b0198605f694805779, 0xcb785286C9bEBeFF7654a8238Eb563666fD75338, 0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B, 0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E, 0x00654F788342647A8Aa15f2eb2490e17d222aC85, 0x86893f6829dA1296F739F50Ff9d3923453E9b48D]" +} diff --git a/BIPs/00batched/2024-W33/combined-report.md b/BIPs/00batched/2024-W33/combined-report.md new file mode 100644 index 000000000..07159781f --- /dev/null +++ b/BIPs/00batched/2024-W33/combined-report.md @@ -0,0 +1,408 @@ + +## Mainnet DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/9a9aa259-d489-43b1-9dfe-3e04ef81d93e) +[Sign Nonce 254](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +FILENAME: `BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `c3045467e2764260a2fe26d52e33843552ff0ecd` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f0f5529f-a716-4583-9c0f-cedaec7c59b1) +``` ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 21978.0 (RAW: 21978000000000000000000) | BIP-669 | 0 | +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 24.45 (RAW: 24450000000000000000) | BIP-669 | 1 | ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W33/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `c3045467e2764260a2fe26d52e33843552ff0ecd` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/862eeb0e-db3c-4327-951a-e50a930ef1c9) +``` ++---------+--------------------------------------------------------+-------+--------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+--------------+------------+----------+ +| revoke | 0xD6208F3B61640baEbb71aa59b58Cc61E32F8Ddf5 (Not Found) | 0 | "0xb6549f75" | BIP-668 | N/A | ++---------+--------------------------------------------------------+-------+--------------+------------+----------+ +``` + +## Karpatkey Managed Treasury Multisig +#### Note @gosuto has done a detailed review of this payload. Details can be found in the [Payload PR](), the [Forum](), and gos is here to answer any questions. +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/f44fd680-b8b0-4112-8ff2-f71623f64db4) +[Sign Nonce 48](https://app.safe.global/transactions/tx?id=multisig_0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89_0x6d8683c28129a38c3ef8f78d5a7488c5178b7a69f77316f2d1bf4371dbfe1135&safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) +FILENAME: `BIPs/2024-W32/BIP-667-RolesV2.json` +MULTISIG: `multisigs/karpatkey (mainnet:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `19a61ceb43a1bcf68b482af23338e705335bbca3` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `scopeFunction`, positional arguments with type(s) `str,address,str,(str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str),int` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `scopeFunction`: ['scopeFunction(bytes32,address,bytes4,(uint8,uint8,uint8,bytes)[],uint8)']\nFunction invocation failed due to no matching argument types."))` +``` ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| enableModule | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-667 | N/A | +| | | | "module": [ | | | +| | | | "0x13c61a25DB73e7a94a244bD2205aDba8b4a60F4a (karpatkey/roles_v2)" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-667 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-667 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x569d3489" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "0", | | | +| | | | "5", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "3", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "1", | | | +| | | | "18", | | | +| | | | "\"0x00000000000000000000000000000000000000000000000000000000000000c9\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "15", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-667 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5a66c223" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "0", | | | +| | | | "5", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "3", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "15", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670220000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc30000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (tokens/wstETH) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b30000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f50000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b3000000000000000000000000e65cdb6479bac1e22340e4e755fae7e509ecd06c0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (tokens/wstETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 (tokens/WBTC) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xFe2e637202056d30016725477c5da089Ab0A043A (tokens/sETH2) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2 (tokens/SWISE) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x20BC832ca081b91433ff6c17f85701B6e92486c5 (tokens/rETH2) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xFe2e637202056d30016725477c5da089Ab0A043A (tokens/sETH2) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000039aa39c021dfbae8fac545936693ac917d5e75630000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b30000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e36430000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 (tokens/WBTC) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W33/tg_template.txt b/BIPs/00batched/2024-W33/tg_template.txt new file mode 100644 index 000000000..374151575 --- /dev/null +++ b/BIPs/00batched/2024-W33/tg_template.txt @@ -0,0 +1,15 @@ +Hello Again! :D This week we have the some transfers and a revoke of a vesting contract on the DAO multisig that would be best executed soonish. Also a new roles module on the Karpatkeyu Treasury. This is a large change. Feel free to take more time with it if you have questions/want to do a bit more review. +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Plase Sign Nonce 254 +BIP-668: Revoke Wonderland BAL Vesting (relationship concluded) +BIP-669: Setup 80-bal/20-eth/BAL LP on mainnet via the LM Multisig + +Karpatkey Safe: https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 +Please Sign Nonce 48 +BIP-667: Karpatkey Roles V2 Migration + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W33 + +Of final note, the BIP to swap signers and pay out is now on the Forum. Waiting to validate all the new signers and get them added to our address book before running snapshot. diff --git a/BIPs/00batched/2024-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..d9f965036 --- /dev/null +++ b/BIPs/00batched/2024-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0Ad055942640eAF282179d89EB2F3D59136959C7", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W34/BIP-679-Enable-jEUR-EURe-Gauge-Gnosis.json", + "bip_number": "BIP-679" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x77bE4d39598962210b702514219fBCA4A6dc77Ba", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W34/BIP-677-Enable-osGNO-GNO-Gauge-Gnosis.json", + "bip_number": "BIP-677" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4a0c9905b098842827fB09BaA4522721d4e14deE", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W34/BIP-678-Enable-sUSX-USDC-Gauge-Arbitrum.json", + "bip_number": "BIP-678" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W34/BIP-680 Enable weETH/wETH Gauge Arbitrum.json", + "bip_number": "BIP-680" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x80A423a65a6a630943D9A34b8b78943af00c98cD", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W34/[BIP-676] Enable Gauge for [CDCETH/[BIP-676] Enable Gauge for [CDCETH/BIP-676-Enable-cdcETH-wstETH-Gauge-Mainnet.json.json", + "bip_number": "BIP-676" + } + } + ] +} diff --git a/BIPs/00batched/2024-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..622ac0c7b --- /dev/null +++ b/BIPs/00batched/2024-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,26 @@ +FILENAME: `BIPs/00batched/2024-W34/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bfbaf250d81a40fb7915628292775a93a86208d1` +CHAIN(S): `arbitrum, gnosis, mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/59f8272f-280d-48c9-96cf-489d59b66c37) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xc66936a47e6d40dd050a8419b4352825d9082241000000000000000000000090 | EURe-jEUR | 0x0Ad055942640eAF282179d89EB2F3D59136959C7 | 0x9fB1d52596c44603198fB0aee434fac3a679f702: jEUR | 0x0000000000000000000000000000000000000000 | -- | BIP-679 | 0 | +| | pool_address: 0xC66936a47E6D40DD050A8419B4352825D9082241 | fee: 0.04 | Style: L0 sidechain | 0xC66936a47E6D40DD050A8419B4352825D9082241: EURe-jEUR | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 100 | cap: 2.0% | 0xcB444e90D8198415266c6a2724b7900fb12FC56E: EURe | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x3220c83e953186f2b9ddfc0b5dd69483354edca20000000000000000000000b0 | osGNO/GNO-BPT | 0x77bE4d39598962210b702514219fBCA4A6dc77Ba | 0x3220C83e953186f2B9dDFc0B5dD69483354EDCA2: osGNO/GNO-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-677 | 1 | +| | pool_address: 0x3220C83e953186f2B9dDFc0B5dD69483354EDCA2 | fee: 0.01 | Style: L0 sidechain | 0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb: GNO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 1000 | cap: 100.0% | 0xF490c80aAE5f2616d3e3BDa2483E30C4CB21d1A0: osGNO | 0x9B1b13afA6a57e54C03AD0428a4766C39707D272 | safe | | | +| GaugeAdderV4/addGauge | 0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c | sUSX/USDC | 0x4a0c9905b098842827fB09BaA4522721d4e14deE | 0x8d58755CA11d2c7273FED72AEb637e38A66c228c: sUSX/USDC | 0x0000000000000000000000000000000000000000 | -- | BIP-678 | 2 | +| | pool_address: 0x8d58755CA11d2c7273FED72AEb637e38A66c228c | fee: 0.01 | Style: L0 sidechain | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 100.0% | 0xbC404429558292eE2D769E57d57D6E74bbd2792d: sUSX | 0xf7ec24690fBCEc489E7C9A7055C04Db5C221c397 | safe | | | +| GaugeAdderV4/addGauge | 0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595 | weETH/wETH | 0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef | 0x35751007a407ca6FEFfE80b3cB397736D2cf4dbe: weETH | 0xCd9e3fb32c8F258555b8292531112bBb5B87E2F4 | safe | BIP-680 | 3 | +| | pool_address: 0xF13758D6Edd1937dcb3F4Fe75889b579d400299A | fee: 0.04 | Style: L0 sidechain | 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 600 | cap: 10.0% | 0xF13758D6Edd1937dcb3F4Fe75889b579d400299A: weETH/wETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6 | cdcETH/wstETH | 0x80A423a65a6a630943D9A34b8b78943af00c98cD | 0x740A691bd31c4176BCb6B8A7a40f1A723537D99d: cdcETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-676 | 4 | +| | pool_address: 0x740A691bd31c4176BCb6B8A7a40f1A723537D99d | fee: 0.04 | Style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 500 | cap: 100.0% | 0xfe18aE03741a5b84e39C295Ac9C856eD7991C38e: CDCETH | 0x3f032432f239d86D36ccF01Fb0c86399a33BD004 | safe | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W34/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W34/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..aa2b78926 --- /dev/null +++ b/BIPs/00batched/2024-W34/checkpointer_gauges_by_chain.json @@ -0,0 +1,4 @@ +{ + "Gnosis": "[0x0Ad055942640eAF282179d89EB2F3D59136959C7, 0x77bE4d39598962210b702514219fBCA4A6dc77Ba]", + "Arbitrum": "[0x4a0c9905b098842827fB09BaA4522721d4e14deE, 0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef]" +} diff --git a/BIPs/00batched/2024-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..1c181eb61 --- /dev/null +++ b/BIPs/00batched/2024-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD558C611B69a223767788B638717E868D8947Fd0", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W35/BIP-683.json", + "bip_number": "BIP-683" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x146b6030E6d6a6398B918E9854652a71C9537180", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W35/BIP-682.json", + "bip_number": "BIP-682" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA00DB7d9c465e95e4AA814A9340B9A161364470a", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W35/BIP-684.json", + "bip_number": "BIP-684" + } + } + ] +} diff --git a/BIPs/00batched/2024-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..99d6452bf --- /dev/null +++ b/BIPs/00batched/2024-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,20 @@ +FILENAME: `BIPs/00batched/2024-W35/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `558431fd634a39f313eb0c33e0da805a2970e49b` +CHAIN(S): `arbitrum, mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/6beb0b33-3d19-453b-b114-c44caaa0eb33) +``` ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x38161e9efb8de52d00a1eb0f773223fd28fdd7c20002000000000000000005a0 | ECLP-GHO-USDe-rh | 0xD558C611B69a223767788B638717E868D8947Fd0 | 0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34: USDe | 0x0000000000000000000000000000000000000000 | -- | BIP-683 | 0 | +| | pool_address: 0x38161e9eFb8De52D00A1eB0f773223FD28FDd7c2 | fee: 0.01 | Style: L0 sidechain | 0xD9FBA68D89178e3538e708939332c79efC540179: stataArbGHO | 0x177862A0242acD8b5F9cc757a963c1C8883da45E | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3 | ECLP-sUSDe-GYD | 0x146b6030E6d6a6398B918E9854652a71C9537180 | 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497: sUSDe | 0x3A244e6B3cfed21593a5E5B347B593C0B48C7dA1 | safe | BIP-682 | 1 | +| | pool_address: 0x8D93B853849b9884E2Bb413444Ec23eB5366eE91 | fee: 0.15 | Style: mainnet | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be | ECLP-stdeUSD-deUSD | 0xA00DB7d9c465e95e4AA814A9340B9A161364470a | 0x15700B564Ca08D9439C58cA5053166E8317aa138: deUSD | 0x0000000000000000000000000000000000000000 | -- | BIP-684 | 2 | +| | pool_address: 0x41FDbea2E52790c0a1Dc374F07b628741f2E062D | fee: 0.01 | Style: mainnet | 0x5C5b196aBE0d54485975D1Ec29617D42D9198326: sdeUSD | 0x414aB7081D3C2d0BA75703A465744DF99c9f9B22 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W35/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W35/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..0add3510a --- /dev/null +++ b/BIPs/00batched/2024-W35/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0xD558C611B69a223767788B638717E868D8947Fd0]" +} diff --git a/BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..cf045a290 --- /dev/null +++ b/BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,260 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Ethereum.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "prevOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "oldOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "newOwner", + "type": "address", + "internalType": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mainnet.json", + "bip_number": "BIP-681" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json", + "bip_number": "BIP-681" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json", + "bip_number": "BIP-681" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json", + "bip_number": "BIP-681" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json", + "bip_number": "BIP-681" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x72BA1965320ab5352FD6D68235Cc3C5306a6FFA2", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json", + "bip_number": "BIP-681" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9F7dfAb2222A473284205cdDF08a677726d786A0", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..b932668ba --- /dev/null +++ b/BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,52 @@ +FILENAME: `BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8ca05860-0245-409f-b324-508e741a850f) +``` ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/mounibec:0x0951FF0835302929d6c0162b3d2495A85e38ec3A | 500.0 (RAW: 500000000000000000000) | BIP-681 | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xMaki:0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 3 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xSausageDoge:0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 4 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/tritium:0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | 500.0 (RAW: 500000000000000000000) | BIP-681 | 5 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/nanexcool_payments:0x72BA1965320ab5352FD6D68235Cc3C5306a6FFA2 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 6 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/StefanDGeorge:0x9F7dfAb2222A473284205cdDF08a677726d786A0 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 7 | ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/22c6f842-f697-4489-b464-c6263ded1544) +``` ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-685 | 0 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/dcd108ef-f34e-40bc-be02-706d93ff93eb) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..84181bdc5 --- /dev/null +++ b/BIPs/00batched/2024-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC219821b1FE1bBe436f62D911F00Ef1C8542A8F7", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-686.json", + "bip_number": "BIP-686" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..6130d6374 --- /dev/null +++ b/BIPs/00batched/2024-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/00batched/2024-W36/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fb070ee4-a144-43bd-8c53-61ea501cac3b) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xcf8dfdb73e7434b05903b5599fb96174555f43530002000000000000000006c3 | 60GOLD-40WETH | 0xC219821b1FE1bBe436f62D911F00Ef1C8542A8F7 | 0x583019fF0f430721aDa9cfb4fac8F06cA104d0B4: st-yETH | 0x748d749c6Cd0cCA8f53F66A3A0D75a91E2978d65 | safe | BIP-686 | 0 | +| | pool_address: 0xcF8dFdb73e7434b05903B5599fB96174555F4353 | fee: 1.0 | Style: mainnet | 0x9DeB0fc809955b79c85e82918E8586d3b7d2695a: GOLD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 10.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/2024-W36/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..4bc4f436a --- /dev/null +++ b/BIPs/00batched/2024-W36/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Optimism.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Optimism.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt b/BIPs/00batched/2024-W36/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt new file mode 100644 index 000000000..8d90fa407 --- /dev/null +++ b/BIPs/00batched/2024-W36/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt @@ -0,0 +1,35 @@ +FILENAME: `BIPs/00batched/2024-W36/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8b238f74-d5b5-4cef-bd83-3b0b19375d84) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a1c3c6a4-55f2-4e89-b8c9-1c79fe8add53) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x043f9687842771b3dF8852c1E9801DCAeED3f6bc (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..c208bcc0b --- /dev/null +++ b/BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9d575f62420250ec382e1e8e262ddae46d0d6817fab9fde48f9c6efd068e5844", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Gnosis.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Gnosis.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..cc8b0c330 --- /dev/null +++ b/BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,35 @@ +FILENAME: `BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/394dd42b-a2af-4428-81f0-f7a816c71703) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0x9d575f62420250ec382e1e8e262ddae46d0d6817fab9fde48f9c6efd068e5844 | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0f12ad3e-64e8-4618-abd9-4da18f512ef2) +``` ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA (EOA/dao/AlexLangeVC)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..6bfd2cefa --- /dev/null +++ b/BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xa68f8859aea0e52f285bf8615e8d0b1c2421e59f342cfea2e496bb19738e86ea", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/PolygonzkEVM.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "prevOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "oldOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "newOwner", + "type": "address", + "internalType": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon zkEVM.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt b/BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt new file mode 100644 index 000000000..66eec100c --- /dev/null +++ b/BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `zkevm` +TENDERLY: `🟪 SKIPPED (ValueError({'error': {'id': '4b660a66-e62f-499b-99eb-7b71a5f8be3c', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}}))` +``` ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0xa68f8859aea0e52f285bf8615e8d0b1c2421e59f342cfea2e496bb19738e86ea | BIP-685 | 0 | ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `zkevm` +TENDERLY: `🟪 SKIPPED (ValueError({'error': {'id': '0d0fe7c3-9a79-4439-81f7-6e0a720fe749', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}}))` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..267313cd7 --- /dev/null +++ b/BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x363cf2bd771efe16bd206d33a549d4698c4ad202ea6b5bf693722fbe151140a6", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Polygon.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "prevOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "oldOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "newOwner", + "type": "address", + "internalType": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt b/BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt new file mode 100644 index 000000000..a5f62b8a9 --- /dev/null +++ b/BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt @@ -0,0 +1,35 @@ +FILENAME: `BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6f11df3a-7634-4839-866c-11f83b38fc18) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0x363cf2bd771efe16bd206d33a549d4698c4ad202ea6b5bf693722fbe151140a6 | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9c32a7c1-c7e0-4811-a0c9-ab5caa6eac26) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json b/BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json new file mode 100644 index 000000000..81b1b3cb3 --- /dev/null +++ b/BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x47c8a529e3b2e456350bd1fb2b5bdd61d0740858cd3fc3a95757ed080665b1b7", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Fraxtal.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Fraxtal.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt b/BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt new file mode 100644 index 000000000..1bf431e3e --- /dev/null +++ b/BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `fraxtal` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ba712a80-d8ae-4be6-ba58-11a936cc8fe9) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x47c8a529e3b2e456350bd1fb2b5bdd61d0740858cd3fc3a95757ed080665b1b7 | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `fraxtal` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/96fecad4-25ff-43e3-8efd-a63b548b6d01) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json b/BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json new file mode 100644 index 000000000..5740ba128 --- /dev/null +++ b/BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x603ba459e5bfca68c1b7b9babc9136a997eaffd125b314a7ca705cb943e36c3d", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Mode.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mode.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt b/BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt new file mode 100644 index 000000000..8cab2bba7 --- /dev/null +++ b/BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `mode` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d4216fdf-f0d9-4fed-aff7-d907cba6f0df) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x603ba459e5bfca68c1b7b9babc9136a997eaffd125b314a7ca705cb943e36c3d | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `mode` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/514c312a-d00e-4e1a-be2c-60a2b69730a9) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..96fc7be5f --- /dev/null +++ b/BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xa7ed295af0b197c9481510d6c8326ba2e2d17b2c1a89ab1834ac80de9220b60e", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Arbitrum.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Arbitrum.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..7a3b24682 --- /dev/null +++ b/BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,35 @@ +FILENAME: `BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/03657ee2-49b6-4eba-8fcc-d34ed0e44188) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0xa7ed295af0b197c9481510d6c8326ba2e2d17b2c1a89ab1834ac80de9220b60e | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a0d72050-1076-425e-9271-48e641b7e4d7) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..09596ac4c --- /dev/null +++ b/BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xce713085e9498c958964f4c64979785027e7a93323b68bca8e87296c696fa643", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Avalanche.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Avalanche.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt b/BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt new file mode 100644 index 000000000..a50f561cd --- /dev/null +++ b/BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt @@ -0,0 +1,36 @@ +FILENAME: `BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0e7ebfaf-1c59-4ef1-8e72-7b68749c3d92) +``` ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20230316-avax-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0xce713085e9498c958964f4c64979785027e7a93323b68bca8e87296c696fa643 | BIP-685 | 0 | +| | | | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/043ac6a0-96b5-4f97-99c8-d31cb736c314) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..a5f60a2f1 --- /dev/null +++ b/BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,80 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x82f054fdfa86620d25b289d7f068681a5224bcfc083243cdb49512fe1574a36f", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Base.json", + "bip_number": "BIP-685" + } + }, + { + "to": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Base.json", + "bip_number": "BIP-681" + } + } + ] +} diff --git a/BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..7506bd881 --- /dev/null +++ b/BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1fd5433e-a375-400b-a5b3-841e58796d52) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x82f054fdfa86620d25b289d7f068681a5224bcfc083243cdb49512fe1574a36f | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `fd57328885ba4e61945f8da8bfd8440c24177b36` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f0b8bad2-e65a-42a9-ac57-9a73a32c188b) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xC40DCFB13651e64C8551007aa57F9260827B6462 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/combined-report.md b/BIPs/00batched/2024-W36/combined-report.md new file mode 100644 index 000000000..2efccdbd9 --- /dev/null +++ b/BIPs/00batched/2024-W36/combined-report.md @@ -0,0 +1,365 @@ + +## Mainnet DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/ef37188d-5c77-4154-87b1-d144049fe680) + +[Sign Nonce 256](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +Please also reject Nonce 255, which was bundled into 256. + + +FILENAME: `BIPs/00batched/2024-W36/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8960009c-6075-4b1a-b8b8-8c7570b4d5ef) +``` ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/mounibec:0x0951FF0835302929d6c0162b3d2495A85e38ec3A | 500.0 (RAW: 500000000000000000000) | BIP-681 | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xMaki:0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 3 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xSausageDoge:0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 4 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/tritium:0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | 500.0 (RAW: 500000000000000000000) | BIP-681 | 5 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/nanexcool_payments:0x72BA1965320ab5352FD6D68235Cc3C5306a6FFA2 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 6 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/StefanDGeorge:0x9F7dfAb2222A473284205cdDF08a677726d786A0 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 7 | ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +``` +``` ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-685 | 0 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` + +## Optimism DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/eeff41ee-4d4e-4e02-b214-cc5a7501a980) + +[Sign Nonce 32](https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-685 | 0 | +| | | | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x043f9687842771b3dF8852c1E9801DCAeED3f6bc (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` +## Gnosis DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/76a114ea-a925-410a-a003-bef25652b4bc) + +[Sign Nonce 25](https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) + +FILENAME: `BIPs/00batched/2024-W36/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fbcf2472-b4b6-4db9-bac3-29974435ba2d) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x9d575f62420250ec382e1e8e262ddae46d0d6817fab9fde48f9c6efd068e5844 | BIP-685 | 0 | +| | | | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA (EOA/dao/AlexLangeVC)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +``` +## Polygon DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/ccb85bd8-a4b8-4596-98de-6c7d97370a8b) + +[Sign Nonce 35](https://app.safe.global/transactions/queue?safe=matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) + +FILENAME: `BIPs/00batched/2024-W36/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/08a67a39-4367-4dad-a1c9-95a5298e69fd) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x363cf2bd771efe16bd206d33a549d4698c4ad202ea6b5bf693722fbe151140a6 | BIP-685 | 0 | +| | | | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` + +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` + +## Fraxtal DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/c49385c7-54ff-4f91-9b38-7f2d67c4f69f) + +[Sign nonce 3](https://safe.mainnet.frax.com/transactions/queue?safe=fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e) + +FILENAME: `BIPs/00batched/2024-W36/252-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `fraxtal` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/62d1668f-4786-4180-ae5f-72fffa061c04) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x47c8a529e3b2e456350bd1fb2b5bdd61d0740858cd3fc3a95757ed080665b1b7 | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` + +## zkEVM DAO Multisig +No Tenderly :( + +[Sign Nonce 13](https://app.safe.global/transactions/queue?safe=zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) + +FILENAME: `BIPs/00batched/2024-W36/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `zkevm` +TENDERLY: `🟪 SKIPPED (ValueError({'error': {'id': 'd73e689c-bba9-4663-9a44-16718a15de5f', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}}))` +``` ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0xa68f8859aea0e52f285bf8615e8d0b1c2421e59f342cfea2e496bb19738e86ea | BIP-685 | 0 | ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` +## Base DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/aaa89d78-3936-400f-b350-bd42e155aa4f) + +[Sign Nonce 8](https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462) + +FILENAME: `BIPs/00batched/2024-W36/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/840d9924-bb13-4913-b4d6-ddeb2c83234c) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x82f054fdfa86620d25b289d7f068681a5224bcfc083243cdb49512fe1574a36f | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xC40DCFB13651e64C8551007aa57F9260827B6462 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` + +## Mode DAO Multisig +[Tenderly](https://dashboard.tenderly.co/shared/simulation/1344653b-8942-4436-b07f-1d8313470c7c) + +[Sign Nonce 2](https://safe.optimism.io/transactions/queue?safe=mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e) + +FILENAME: `BIPs/00batched/2024-W36/34443-0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `mode` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0d2b3fcb-0986-474c-a5b3-fb4552ad400b) + +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x603ba459e5bfca68c1b7b9babc9136a997eaffd125b314a7ca705cb943e36c3d | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` +## Arbitrum DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/ed25e883-8f87-44ca-b4bb-28026497132b) + +[Sign Nonce 45](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) + +FILENAME: `BIPs/00batched/2024-W36/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9bddadc6-7ce6-49a1-84b2-751aaa9e3c18) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0xa7ed295af0b197c9481510d6c8326ba2e2d17b2c1a89ab1834ac80de9220b60e | BIP-685 | 0 | +| | | | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` + +## Avalanche DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/8e1b4eaf-a917-4c8e-adb1-5b1e4d0eece2) + +[Sign Nonce 19](https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) + +FILENAME: `BIPs/00batched/2024-W36/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `efa03f8c15e9da771e35720c36aa127e607fd60c` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/3936bbeb-551b-40ac-a7e7-cb285fac49d8) +``` ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0xce713085e9498c958964f4c64979785027e7a93323b68bca8e87296c696fa643 | BIP-685 | 0 | +| | | | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | | | | +| | | | 20230316-avax-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W36/tg_template.txt b/BIPs/00batched/2024-W36/tg_template.txt new file mode 100644 index 000000000..983916157 --- /dev/null +++ b/BIPs/00batched/2024-W36/tg_template.txt @@ -0,0 +1,42 @@ +GM GM fine sers. Lots to sign this week as we say goodbye to Trent and welcome Gosuto. Execution of the payloads is time critical on Optimism as we need to change the owner of a distributor. Please sign that fast/first. The rest of the chains can really wait until the next load if need be. While prompt attention to all/as many of these as you can would be great, what we really need now is Op and Mainnet. +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + + +Note that all payloads cover the same 2 Bips so will list them here once: +BIP-681: DAO multisig signer swap and payments +BIP-685: Grant Maxi's the right to change who can distribute third party rewards on gauges. + +Please sign these 2 ASAP: +Optimsim: https://app.safe.global/transactions/queue?safe=oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc +Please Sign Nonce 32 + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please REJECT Nonce 255 - the changes here were batched into 256 to reduce signer load. +Plase Sign Nonce 256 + +These are less urgent, will not pester for them: +Gnosis: https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 +Please Sign Nonce 25 + +Polygon: https://app.safe.global/transactions/queue?safe=matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 +Please Sign Nonce 35 + +Fraxtal: https://safe.mainnet.frax.com/transactions/queue?safe=fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e +Please Sign Nonce 3 + +zkEVM: https://app.safe.global/transactions/queue?safe=zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa +Please sign Nonce 13 + +Base: https://app.safe.global/transactions/queue?safe=base:0xC40DCFB13651e64C8551007aa57F9260827B6462 +Please Sign Nonce 8 + +Mode: https://safe.optimism.io/transactions/queue?safe=mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e +Please Sign Nonce 2 + +Arbitrum: https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0 +Please Sign Nonce 45 + +Avax: https://app.safe.global/transactions/queue?safe=avax:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 +Please Sign Nonce 19 + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W36 diff --git a/BIPs/00batched/2024-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..5dc925e7b --- /dev/null +++ b/BIPs/00batched/2024-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC11442Cdbe8901b36aeB7bE7F3f95B6a8ade394e", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W37/BIP-691-Enable-wstETH-E-CLP-Gauge-Arbitrum.json", + "bip_number": "BIP-691" + } + } + ] +} diff --git a/BIPs/00batched/2024-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..a43f3f597 --- /dev/null +++ b/BIPs/00batched/2024-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/00batched/2024-W37/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7d0b264a76d633e1bb8222a977ec6c3b62ff042d` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/54005229-df1e-4fce-b939-ee0af6bcf46c) +``` ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x596a76a1ae4f7a6055f0c7d4e40737bfc19cfa2c00020000000000000000059f | ECLP-wstETH-GYD | 0xC11442Cdbe8901b36aeB7bE7F3f95B6a8ade394e | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-691 | 0 | +| | pool_address: 0x596a76a1AE4F7a6055F0C7D4e40737bFc19cFa2c | fee: 0.3 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x3a216B01db971Bf28D171C9dA44Cc8C89867697F | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W37/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W37/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..338957e4e --- /dev/null +++ b/BIPs/00batched/2024-W37/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0xC11442Cdbe8901b36aeB7bE7F3f95B6a8ade394e]" +} diff --git a/BIPs/00batched/2024-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..a710d9daf --- /dev/null +++ b/BIPs/00batched/2024-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc0b75da8E6F6403804EFEFDE3101b02276C5f8EA", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W38/[BIP-692] Enable-sDAI-aUSDC-ECLP-Gnosis.json", + "bip_number": "BIP-692" + } + } + ] +} diff --git a/BIPs/00batched/2024-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..7b4a3b931 --- /dev/null +++ b/BIPs/00batched/2024-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W38/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9c324cdd5f8a4918efbbcdc9af1892063ec7c7d8` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/839351cb-196a-4b7e-b94d-35aad67a14f1) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xaa56989be5e6267fc579919576948db3e1f108070002000000000000000000ca | ECLP-sDAI-USDC.e-rh | root: 0xc0b75da8E6F6403804EFEFDE3101b02276C5f8EA | 0xaf204776c7245bF4147c2612BF6e5972Ee483701: sDAI | 0x89C80A4540A00b5270347E02e2E144c71da2EceD | safe | BIP-692 | 0 | +| | pool_address: 0xaa56989Be5E6267fC579919576948DB3e1F10807 | fee: 0.01 | side: 0x9ED250d67c4E5F5B2b5F982a678eD1c0ba011207 | 0xf0E7eC247b918311afa054E0AEdb99d74c31b809: stataGnoUSDCe | 0x5F62fd24941B585b91EB059E0ea1a7e729357511 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W39/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json b/BIPs/00batched/2024-W39/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json new file mode 100644 index 000000000..0ee29c1cf --- /dev/null +++ b/BIPs/00batched/2024-W39/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json @@ -0,0 +1,50 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "prevOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "oldOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "newOwner", + "type": "address", + "internalType": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Mainnet.json", + "bip_number": "BIP-688" + } + } + ] +} diff --git a/BIPs/00batched/2024-W39/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt b/BIPs/00batched/2024-W39/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt new file mode 100644 index 000000000..40cf0955a --- /dev/null +++ b/BIPs/00batched/2024-W39/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/00batched/2024-W39/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json` +MULTISIG: `multisigs/karpatkey (mainnet:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `52a2b1aaed9b5590d1250b7c9f6914033613b044` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/399387a8-b4c5-4834-94e7-5d1f2abb8a77) + +``` ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-688 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x823DF0278e4998cD0D06FB857fBD51e85b18A250 (EOA/dao/nanexcool)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..57dd7eb6a --- /dev/null +++ b/BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,448 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "90000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-632-fund-beethoven-x-marketing-q4-2024.json", + "bip_number": "BIP-632" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "87000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-631-beethoven-x-technical-q4-2024.json", + "bip_number": "BIP-631" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "398135000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.json", + "bip_number": "BIP-694" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x166f54F44F271407f24AA1BE415a730035637325", + "amount": "32738000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.json", + "bip_number": "BIP-694" + } + }, + { + "to": "0x0e2d46fe246eb926d939A10efA96fB7d4EB14bB3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "retrieve", + "payable": false + }, + "contractInputsValues": {}, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-689 Claim stkAAVe from Linear Pools.json", + "bip_number": "BIP-689" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "333325000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/[BIP-695] OpCo Funding Proposal Q4 2024 - Q1 2025.json", + "bip_number": "BIP-695" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "72000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.json", + "bip_number": "BIP-697" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "amount": "6780000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.json", + "bip_number": "BIP-697" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xed0bb13496ce24efff8f9734a9707d092d4be10c", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.json", + "bip_number": "BIP-686" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xbf8f01ebcf0a21c46d23ada2c86eb31c9965b2f0", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.json", + "bip_number": "BIP-686" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xa8d4b31225bd6faf1363db5a0ab6c016894985d1", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.json", + "bip_number": "BIP-686" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x86cf58bd7a64f2304227d1a490660d2954db4a91", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.json", + "bip_number": "BIP-686" + } + }, + { + "to": "0x4f8AD938eBA0CD19155a835f617317a6E788c868", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "withdraw", + "payable": false + }, + "contractInputsValues": { + "amount": "9051000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-696-stakeGNO.json", + "bip_number": "BIP-696" + } + }, + { + "to": "0x6810e776880C02933D47DB1b9fc05908e5386b96", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0x88ad09518695c6c3712AC10a214bE5109a655671", + "_value": "9051000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-696-stakeGNO.json", + "bip_number": "BIP-696" + } + }, + { + "to": "0x88ad09518695c6c3712AC10a214bE5109a655671", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "token", + "type": "address", + "internalType": "contract IERC677" + }, + { + "name": "_receiver", + "type": "address", + "internalType": "address" + }, + { + "name": "_value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "relayTokens", + "payable": false + }, + "contractInputsValues": { + "token": "0x6810e776880C02933D47DB1b9fc05908e5386b96", + "_receiver": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "_value": "9051000000000000000000" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-696-stakeGNO.json", + "bip_number": "BIP-696" + } + } + ] +} diff --git a/BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..384f7735e --- /dev/null +++ b/BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,72 @@ +FILENAME: `BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `52a2b1aaed9b5590d1250b7c9f6914033613b044` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ffc8fb2e-97e3-45e8-b7fd-30e2e11a481a) + +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 90000.0 (RAW: 90000000000) | BIP-632 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 87000.0 (RAW: 87000000000) | BIP-631 | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 398135.0 (RAW: 398135000000) | BIP-694 | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 32738.0 (RAW: 32738000000000000000000) | BIP-694 | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 333325.0 (RAW: 333325000000) | BIP-695 | 5 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 72000.0 (RAW: 72000000000) | BIP-697 | 6 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 6780.0 (RAW: 6780000000000000000000) | BIP-697 | 7 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `52a2b1aaed9b5590d1250b7c9f6914033613b044` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/3c40c656-6212-4e1f-b9ed-f684f44f29ad) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c (root_gauges/50GOLD/25WETH/25USDC-base-root-ed0b) | killGauge() | | BIP-686 | 8 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xbf8F01EbCf0A21C46D23ADa2C86EB31c9965B2F0 (root_gauges/GOLD/BAL/USDC-base-root-bf8f) | killGauge() | | BIP-686 | 9 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xA8d4b31225BD6FAF1363DB5A0AB6c016894985d1 (root_gauges/50GOLD-25USDC-25WSTETH-arbitrum-root-a8d4) | killGauge() | | BIP-686 | 10 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x86Cf58bD7A64f2304227d1a490660D2954dB4a91 (root_gauges/GOLD-BAL-AURA-wstETH-arbitrum-root-86cf) | killGauge() | | BIP-686 | 11 | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `52a2b1aaed9b5590d1250b7c9f6914033613b044` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b461bc9d-62f1-4841-b99b-fccc71eccf2c) + +``` ++-------------+-------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+-------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| retrieve | 0x0e2d46fe246eb926d939A10efA96fB7d4EB14bB3 (aave/balancer_stk_aave_retrieval) | 0 | {} | BIP-689 | N/A | +| withdraw | 0x4f8AD938eBA0CD19155a835f617317a6E788c868 (tokens/Locked GNO) | 0 | { | BIP-696 | N/A | +| | | | "amount": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x6810e776880C02933D47DB1b9fc05908e5386b96 (tokens/GNO) | 0 | { | BIP-696 | N/A | +| | | | "_spender": [ | | | +| | | | "0x88ad09518695c6c3712AC10a214bE5109a655671 (gnosis/omnibridge)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | +| relayTokens | 0x88ad09518695c6c3712AC10a214bE5109a655671 (gnosis/omnibridge) | 0 | { | BIP-696 | N/A | +| | | | "token": [ | | | +| | | | "0x6810e776880C02933D47DB1b9fc05908e5386b96 (tokens/GNO)" | | | +| | | | ], | | | +| | | | "_receiver": [ | | | +| | | | "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------+-------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..1027cbcb6 --- /dev/null +++ b/BIPs/00batched/2024-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf99b2f358efeC751A9071f30E541ab6C42C25B93", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-698 Enable Gauge wrsETHwstETH Optimism.json", + "bip_number": "BIP-698" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/[BIP-701] Enable balETH-wstETH gauge [Ethereum].json", + "bip_number": "BIP-701" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9E965252d1b294aF358a232933A65Bd30645c34C", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/[BIP-699] Enable wstETH-GYD Gauge [Arbitrum].json", + "bip_number": "BIP-699" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCda69C40176B98bB1773109d1fEa91e12F478451", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/[BIP-700] Enable a wstETH-GYD Gauge [Ethereum].json", + "bip_number": "BIP-700" + } + } + ] +} diff --git a/BIPs/00batched/2024-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..5e7ba8804 --- /dev/null +++ b/BIPs/00batched/2024-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,37 @@ +FILENAME: `BIPs/00batched/2024-W39/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `52a2b1aaed9b5590d1250b7c9f6914033613b044` +CHAIN(S): `mainnet, optimism, arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a026ec66-3c3f-43cc-9f4a-fe05eaa23b6c) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xcb7d357c84b101e3d559ff4845cef63d7d0753ef000000000000000000000150 | bpt-wrseth-wsteth | root: 0xf99b2f358efeC751A9071f30E541ab6C42C25B93 | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | BIP-698 | 0 | +| | pool_address: 0xcb7D357c84B101e3d559fF4845cef63D7D0753ef | fee: 0.2 | side: 0x028591C6e8DFeb2E315Ddc2647ADBfC5A62b4f77 | 0x87eEE96D50Fb761AD85B1c982d28A042169d61b1: wrsETH | 0x1373A61449C26CC3F48C1B4c547322eDAa36eB12 | safe | | | +| | | a-factor: 200 | style: L0 sidechain | 0xcb7D357c84B101e3d559fF4845cef63D7D0753ef: bpt-wrseth-wsteth | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xb757ddbc72155c0a41058e148969ba29ba071a2e0000000000000000000006ce | balETH/wstETH | root: 0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A | 0x6dC3ce9C57b20131347FDc9089D740DAf6eB34c5: balETH | 0xd4580a56e715F14Ed9d340Ff30147d66230d44Ba | safe | BIP-701 | 1 | +| | pool_address: 0xB757DdbC72155C0a41058E148969BA29BA071A2E | fee: 0.04 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 200 | style: mainnet | 0xB757DdbC72155C0a41058E148969BA29BA071A2E: balETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x6ce1d1e46548ef657f8d7ebddfc4beadb04f72f30002000000000000000005a1 | ECLP-wstETH-GYD | root: 0x9E965252d1b294aF358a232933A65Bd30645c34C | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-699 | 2 | +| | pool_address: 0x6ce1D1e46548ef657f8D7Ebddfc4BEaDB04F72f3 | fee: 0.3 | side: 0x654a17A779B82BA7739cD3Adb2052e039c4366C5 | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x72F6Da3b4bd0Ab7028F52339Ee3B1f94fffe2dD0 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xc8cf54b0b70899ea846b70361e62f3f5b22b1f4b0002000000000000000006c7 | ECLP-wstETH-GYD | root: 0xCda69C40176B98bB1773109d1fEa91e12F478451 | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | BIP-700 | 3 | +| | pool_address: 0xC8cF54b0b70899Ea846B70361e62F3F5B22b1f4B | fee: 0.3 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0xD43F5a722e8e7355D790adda4642f392Dfb820a1 | safe | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W39/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json b/BIPs/00batched/2024-W39/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json new file mode 100644 index 000000000..8915ceb4b --- /dev/null +++ b/BIPs/00batched/2024-W39/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json @@ -0,0 +1,86 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "removeOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3", + "owner": "0x7f87c1C42BeF332245F8B3cCAdD8224541CDaEcE", + "_threshold": "6" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-696-RemoveEOA.json", + "bip_number": "BIP-696" + } + }, + { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Gnosis.json", + "bip_number": "BIP-688" + } + } + ] +} diff --git a/BIPs/00batched/2024-W39/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt b/BIPs/00batched/2024-W39/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt new file mode 100644 index 000000000..72bc898ad --- /dev/null +++ b/BIPs/00batched/2024-W39/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/2024-W39/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json` +MULTISIG: `multisigs/karpatkey (gnosis:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `52a2b1aaed9b5590d1250b7c9f6914033613b044` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/67f5b777-774b-4b5f-9e30-fdd9656b0f31) + +``` ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| removeOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-696 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "owner": [ | | | +| | | | "0x7f87c1C42BeF332245F8B3cCAdD8224541CDaEcE (EOA/karpatkey/balancer_eoa)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-688 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x823DF0278e4998cD0D06FB857fBD51e85b18A250 (EOA/dao/nanexcool)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W39/combined-report.md b/BIPs/00batched/2024-W39/combined-report.md new file mode 100644 index 000000000..635fab24e --- /dev/null +++ b/BIPs/00batched/2024-W39/combined-report.md @@ -0,0 +1,136 @@ + +## Mainnet DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/66b17461-8676-4794-9973-bfcbace9bd25) + +[Sign Nonce 257](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + + +FILENAME: `BIPs/00batched/2024-W39/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `41c437668367f160cb00e7144e518c08003c81c4` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/de4a2ce0-ca58-4882-89c5-6dac54cd7521) + +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 90000.0 (RAW: 90000000000) | BIP-632 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 87000.0 (RAW: 87000000000) | BIP-631 | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 398135.0 (RAW: 398135000000) | BIP-694 | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 32738.0 (RAW: 32738000000000000000000) | BIP-694 | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 333325.0 (RAW: 333325000000) | BIP-695 | 5 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 72000.0 (RAW: 72000000000) | BIP-697 | 6 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 6780.0 (RAW: 6780000000000000000000) | BIP-697 | 7 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------------------+---------+----------+ +``` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c (root_gauges/50GOLD/25WETH/25USDC-base-root-ed0b) | killGauge() | | BIP-686 | 8 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xbf8F01EbCf0A21C46D23ADa2C86EB31c9965B2F0 (root_gauges/GOLD/BAL/USDC-base-root-bf8f) | killGauge() | | BIP-686 | 9 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xA8d4b31225BD6FAF1363DB5A0AB6c016894985d1 (root_gauges/50GOLD-25USDC-25WSTETH-arbitrum-root-a8d4) | killGauge() | | BIP-686 | 10 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x86Cf58bD7A64f2304227d1a490660D2954dB4a91 (root_gauges/GOLD-BAL-AURA-wstETH-arbitrum-root-86cf) | killGauge() | | BIP-686 | 11 | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` +``` ++-------------+-------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+-------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| retrieve | 0x0e2d46fe246eb926d939A10efA96fB7d4EB14bB3 (aave/balancer_stk_aave_retrieval) | 0 | {} | BIP-689 | N/A | +| withdraw | 0x4f8AD938eBA0CD19155a835f617317a6E788c868 (tokens/Locked GNO) | 0 | { | BIP-696 | N/A | +| | | | "amount": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x6810e776880C02933D47DB1b9fc05908e5386b96 (tokens/GNO) | 0 | { | BIP-696 | N/A | +| | | | "_spender": [ | | | +| | | | "0x88ad09518695c6c3712AC10a214bE5109a655671 (gnosis/omnibridge)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | +| relayTokens | 0x88ad09518695c6c3712AC10a214bE5109a655671 (gnosis/omnibridge) | 0 | { | BIP-696 | N/A | +| | | | "token": [ | | | +| | | | "0x6810e776880C02933D47DB1b9fc05908e5386b96 (tokens/GNO)" | | | +| | | | ], | | | +| | | | "_receiver": [ | | | +| | | | "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------+-------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +``` + +## Karpatkey Managed Treasury (mainnet) +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/ebd5ade9-fd7e-4291-b93d-45b3c1441bc5) + +[Sign Nonce 49](https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) + +FILENAME: `BIPs/00batched/2024-W39/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json` +MULTISIG: `multisigs/karpatkey (mainnet:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `41c437668367f160cb00e7144e518c08003c81c4` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/37831e1a-03c8-4984-a440-24dd6790759b) + +``` ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-688 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x823DF0278e4998cD0D06FB857fBD51e85b18A250 (EOA/dao/nanexcool)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +``` + +## Karpatkey Managed Treasury (gnosis) +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/667ee645-c324-4de6-b05b-e910f2524df7) + +[Sign Nonce 13](https://app.safe.global/transactions/queue?safe=gno:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) +FILENAME: `BIPs/00batched/2024-W39/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json` +MULTISIG: `multisigs/karpatkey (gnosis:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `41c437668367f160cb00e7144e518c08003c81c4` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8385c146-7ba6-40a0-95e4-8e4e85480af9) + +``` ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| removeOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-696 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "owner": [ | | | +| | | | "0x7f87c1C42BeF332245F8B3cCAdD8224541CDaEcE (EOA/karpatkey/balancer_eoa)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-688 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x823DF0278e4998cD0D06FB857fBD51e85b18A250 (EOA/dao/nanexcool)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W39/tg_template.txt b/BIPs/00batched/2024-W39/tg_template.txt new file mode 100644 index 000000000..99f206bc4 --- /dev/null +++ b/BIPs/00batched/2024-W39/tg_template.txt @@ -0,0 +1,26 @@ +Hello again. Gosuto and I are working hard to batch payloads till the end of the month. Hope to pester less often. Goal will be to only call on this group at the end of each Month unless there is something really urghent. We are trying to be more strict about what urgent is now. + +Note that there are lots of fund transfers of decent sums this round. This mostly due to 6 months of funding for a number of Balancer SPs (see below). + +@alexanderlan @gosuto @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Plase Sign Nonce 257 +Note there are some prior pending nonces that most of you have already signed @0xmaki has agreed to polish this off tomorrrow🙏🙏. For everyone else just Sign 257. +BIP-631: Fund Beets Tech +BIP-632: Fund Beets Marketing +BIP-694: Fund the Maxis +BIP-695: Fund OpCo +BIP-697: Fund BD SP +BIP-686: Kill old GOLD gauges +BIP-689: Claim stkAAVE +BIP-696: Claim and Bridge GNO + +Karpatkey Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 +BIP-688: Swap Trent for Gosuto + +Karpatkey Gnosis: https://app.safe.global/transactions/queue?safe=gno:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 +BIP-696: Remove KPK EOA +BIP-688: Swap Trent for Gosuto + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W39 diff --git a/BIPs/00batched/2024-W4/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W4/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..a068cba33 --- /dev/null +++ b/BIPs/00batched/2024-W4/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "6545000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W4/BIP-537.json", + "bip_number": "BIP-537" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xde5cbe25c58c49ee7635216de6998f8dacd63b96", + "value": "4382140000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W4/BIP-535.json", + "bip_number": "BIP-535" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc4f95f674b393a49410ace864833abe836848526", + "value": "4088240000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W4/BIP-535.json", + "bip_number": "BIP-535" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "46474050000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W4/BIP-520.json", + "bip_number": "BIP-520" + } + } + ] +} diff --git a/BIPs/00batched/2024-W4/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W4/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..cf93c2779 --- /dev/null +++ b/BIPs/00batched/2024-W4/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/00batched/2024-W4/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0dd85ca81f2ec801f56744f05200f0d6cd68bbf0` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+======================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 6545.0 (RAW: 6545000000000000000000) | BIP-537 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xDe5cbE25c58c49Ee7635216de6998f8dAcD63b96 | 4382.14 (RAW: 4382140000) | BIP-535 | 1 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xc4F95f674b393a49410acE864833abE836848526 | 4088.24 (RAW: 4088240000) | BIP-535 | 2 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 46474.05 (RAW: 46474050000) | BIP-520 | 3 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W4/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W4/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..fe9a9594f --- /dev/null +++ b/BIPs/00batched/2024-W4/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W4/BIP-538.json", + "bip_number": "BIP-538" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6D560CbE3Cc25Eca8c930835Ec3d296a6C16B210", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W4/BIP-536.json", + "bip_number": "BIP-536" + } + } + ] +} diff --git a/BIPs/00batched/2024-W4/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W4/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..2d013f068 --- /dev/null +++ b/BIPs/00batched/2024-W4/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/00batched/2024-W4/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0dd85ca81f2ec801f56744f05200f0d6cd68bbf0` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | ezETH-WETH-BPT | 0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b | "ezETH-WETH-BPT(0x596192bB6e41802428Ac943D2f1476C1Af25CC0E)", | "0x0000000000000000000000000000000000000000", | BIP-538 | 0 | +| | pool_address: 0x596192bB6e41802428Ac943D2f1476C1Af25CC0E | fee: 0.01, a-factor: 443 | Style: mainnet, cap: 100.0% | "ezETH(0xbf5495Efe5DB9ce00f80364C8B423567e58d2110)", | "0x387dBc0fB00b26fb085aa658527D5BE98302c84C", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x383e7859271b2d0589b013b6d944572a0a8be3cb000000000000000000000657 | DOLA-mkUSD BSP | 0x6D560CbE3Cc25Eca8c930835Ec3d296a6C16B210 | "DOLA-mkUSD BSP(0x383e7859271B2D0589B013b6d944572a0a8bE3cB)", | "0x0000000000000000000000000000000000000000", | BIP-536 | 1 | +| | pool_address: 0x383e7859271B2D0589B013b6d944572a0a8bE3cB | fee: 0.04, a-factor: 100 | Style: mainnet, cap: 100.0% | "mkUSD(0x4591DBfF62656E7859Afe5e45f6f47D3669fBB28)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "DOLA(0x865377367054516e17014CcdED1e7d814EDC9ce4)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W4/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/2024-W4/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..8a59d0922 --- /dev/null +++ b/BIPs/00batched/2024-W4/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1704957019300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0xbf85372921c35a4e62729c1fb0ea7cbf4936133ffd383e764a6ea1a78e85891c" + }, + "transactions": [ + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "startCooldown", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00batched/2024-W4/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00batched/2024-W4/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..dd2183e4e --- /dev/null +++ b/BIPs/00batched/2024-W4/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/00batched/2024-W4/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `0dd85ca81f2ec801f56744f05200f0d6cd68bbf0` +CHAIN(S): `arbitrum` +``` ++---------------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+========================================================+=========+==========+==============+============+ +| startCooldown | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (Not Found) | 0 | "N/A" | N/A | N/A | ++---------------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W4/combined-report.md b/BIPs/00batched/2024-W4/combined-report.md new file mode 100644 index 000000000..45cb5ba52 --- /dev/null +++ b/BIPs/00batched/2024-W4/combined-report.md @@ -0,0 +1,29 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/35782de8-25bd-43a2-8ca1-be8fcf5edd68) + +[Sign Nonce 235](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+======================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 6545.0 (RAW: 6545000000000000000000) | BIP-537 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xDe5cbE25c58c49Ee7635216de6998f8dAcD63b96 | 4382.14 (RAW: 4382140000) | BIP-535 | 1 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xc4F95f674b393a49410acE864833abE836848526 | 4088.24 (RAW: 4088240000) | BIP-535 | 2 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 46474.05 (RAW: 46474050000) | BIP-520 | 3 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +``` +## Arbitrum DAO multisig +[Tenderly](https://app.safe.global/transactions/tx?id=multisig_0xaF23DC5983230E9eEAf93280e312e57539D098D0_0x7ad679d72be8dc7bd9d9bbb3a64d6e17d86170ddd80ab8e154bba4ec15465f3e&safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) +[Sign Nonce 40](https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0) +``` ++---------------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+========================================================+=========+==========+==============+============+ +| startCooldown | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (Not Found) | 0 | "N/A" | BIP-533 | N/A | ++---------------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/2024-W4/tg_template.txt b/BIPs/00batched/2024-W4/tg_template.txt new file mode 100644 index 000000000..354ca54c7 --- /dev/null +++ b/BIPs/00batched/2024-W4/tg_template.txt @@ -0,0 +1,17 @@ +gm gm everyone. Last week's mainnet payload is still waiting, please sign both if you haven't already signed nonce 234. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 235 + +BIP-535: Final DNS hack payments +BIP-520: Fund offsite +BIP-537: Replace GGP Incentives On Avax + +https://app.safe.global/transactions/queue?safe=arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0 +BIP-533: BAL/AURA/ARB LP exit (start cooldown) + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W4 + + diff --git a/BIPs/00batched/2024-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..7fe60d852 --- /dev/null +++ b/BIPs/00batched/2024-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2400b9BAfb56Ec6D9eCeE50aF463A155Cf46db98", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W40/[BIP-704] Enable MORE-GYD gauge [Arbitrum].json", + "bip_number": "BIP-704" + } + } + ] +} diff --git a/BIPs/00batched/2024-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..7daa2d128 --- /dev/null +++ b/BIPs/00batched/2024-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W40/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `40805d3ed047e75042f60022f1fa23b39c336e98` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a3a644ac-e182-4edb-953e-b0e621329c3f) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x4284c68f567903537e2d9ff726fdf8591e431ddc0002000000000000000005b5 | ECLP-MORE-GYD | root: 0x2400b9BAfb56Ec6D9eCeE50aF463A155Cf46db98 | 0x25ea98ac87A38142561eA70143fd44c4772A16b6: MORE | 0x0000000000000000000000000000000000000000 | -- | BIP-704 | 0 | +| | pool_address: 0x4284c68f567903537E2d9Ff726fdF8591E431DDC | fee: 0.05 | side: 0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..19c96e736 --- /dev/null +++ b/BIPs/00batched/2024-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2", + "value": "265000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.json", + "bip_number": "BIP-713" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2", + "amount": "115250000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.json", + "bip_number": "BIP-713" + } + } + ] +} diff --git a/BIPs/00batched/2024-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..127f7b1cc --- /dev/null +++ b/BIPs/00batched/2024-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/00batched/2024-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `73cdfee5d45619c2bd89c6516e47bda34a2b9289` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/54360481-cf9f-4c58-b215-8c9d36287eff) + +``` ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/cantina_payments:0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2 | 265000.0 (RAW: 265000000000) | BIP-713 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/cantina_payments:0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2 | 115250.0 (RAW: 115250000000000000000000) | BIP-713 | 1 | ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..abf041069 --- /dev/null +++ b/BIPs/00batched/2024-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xae009634C214C23772a0E19F9AAfdFF12E89d19D", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W41/[BIP-712] Enable UltraEths-wETH gauge [Ethereum].json", + "bip_number": "BIP-712" + } + } + ] +} diff --git a/BIPs/00batched/2024-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..b88ebd28a --- /dev/null +++ b/BIPs/00batched/2024-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W41/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `73cdfee5d45619c2bd89c6516e47bda34a2b9289` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d2e1dbc3-a232-4079-8b48-176db1a1a3cb) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xa7cbc1346c8bf4237487157c8bb97abc55a4fb810000000000000000000006d5 | UltraETHs/wETH | root: 0xae009634C214C23772a0E19F9AAfdFF12E89d19D | 0xa7CBC1346C8bf4237487157c8bB97aBc55A4fb81: UltraETHs/wETH | 0x0000000000000000000000000000000000000000 | -- | BIP-712 | 0 | +| | pool_address: 0xa7CBC1346C8bf4237487157c8bB97aBc55A4fb81 | fee: 0.04 | side: None | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | style: mainnet | 0xF0a949B935e367A94cDFe0F2A54892C2BC7b2131: ultraETHs | 0x4E4C0ea425bacc68cD2Acbf1cdaa234bE9Dd8742 | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W41/combined-report.md b/BIPs/00batched/2024-W41/combined-report.md new file mode 100644 index 000000000..8b3b07446 --- /dev/null +++ b/BIPs/00batched/2024-W41/combined-report.md @@ -0,0 +1,20 @@ +## Mainnet DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/6635de7c-24fe-400b-8467-1ffb8e144871) + +[Sign Nonce 258](https://app.safe.global/transactions/tx?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f&id=multisig_0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f_0xbe48d4a18fce80940fd5097d5824021a70d3bbc94baab33f9a1d75c010399f6e) + +FILENAME: `BIPs/00batched/2024-W41/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `81c8549cbd038ef7df109d294e194264397e5cfb` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9da501f1-b6ca-4196-82f1-c974bf82adb2) + +``` ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/cantina_payments:0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2 | 265000.0 (RAW: 265000000000) | BIP-713 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/cantina_payments:0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2 | 115250.0 (RAW: 115250000000000000000000) | BIP-713 | 1 | ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W41/tg_template.txt b/BIPs/00batched/2024-W41/tg_template.txt new file mode 100644 index 000000000..e20c648ac --- /dev/null +++ b/BIPs/00batched/2024-W41/tg_template.txt @@ -0,0 +1,9 @@ +GM all. Although we are still trying to batch all payloads until the end of the month, the one from this week can unfortunately not wait. It is a BAL and USDC transfer to Cantina for the upcoming Balancer V3 review contest starting next week. Funds need to be received on their end before Oct 15th. Please sign asap :) + +@alexanderlan @gosuto @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge @tritium_vlk + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Plase Sign Nonce 258 +BIP-713: Fund Cantina contest + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W41 diff --git a/BIPs/00batched/2024-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..a2105633c --- /dev/null +++ b/BIPs/00batched/2024-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W42/[BIP-717] Enable GHO-wUSDL Gauge on Arbitrum.json", + "bip_number": "BIP-717" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbDBC5A69CC499F9286a55c48C9939cE1554d7A23", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W42/[BIP-718] Enable Gauge for dvstETH-wstETH [Ethereum].json", + "bip_number": "BIP-718" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9C1A157cf8B242F67b3c950EDA9A30b320bDe9cd", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W42/[BIP-716] Enable USDC-GYD Gauge [Ethereum].json", + "bip_number": "BIP-716" + } + } + ] +} diff --git a/BIPs/00batched/2024-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..a72520168 --- /dev/null +++ b/BIPs/00batched/2024-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,32 @@ +FILENAME: `BIPs/00batched/2024-W42/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `91a42a323437c1ddf6c67cdef34e8e7cdd42a060` +CHAIN(S): `mainnet, arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/10551d95-5437-497e-ad09-0f36b2106d4c) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xab297f94235de777b85024ed1208ff43852385d90000000000000000000005bb | wUSDL/GHO | root: 0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2 | 0x7751E2F4b8ae93EF6B79d86419d42FE3295A4559: wUSDL | 0x4d494eF5CB1143991F7F767567aD7f55bCfDc279 | safe | BIP-717 | 0 | +| | pool_address: 0xab297f94235De777B85024eD1208Ff43852385D9 | fee: 0.01 | side: 0xcC014e60585259dA1C8501b00789521659e7a4fC | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: L0 sidechain | 0xab297f94235De777B85024eD1208Ff43852385D9: wUSDL/GHO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x632aafc2d3d2ca1764e702aa25c065c273cd08ed0000000000000000000006d6 | DVstETH/wstETH | root: 0xbDBC5A69CC499F9286a55c48C9939cE1554d7A23 | 0x5E362eb2c0706Bd1d134689eC75176018385430B: DVstETH | 0x1a9DBa2dC3E82F53d040701F97DC0438d26A4320 | safe | BIP-718 | 1 | +| | pool_address: 0x632aafC2D3D2cA1764E702aa25c065c273Cd08eD | fee: 0.01 | side: None | 0x632aafC2D3D2cA1764E702aa25c065c273Cd08eD: DVstETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x2875f3effe9ec897d7e4c32680d77ca3e628f33a0002000000000000000006d1 | ECLP-GYD-USDC | root: 0x9C1A157cf8B242F67b3c950EDA9A30b320bDe9cd | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: USDC | 0x0000000000000000000000000000000000000000 | -- | BIP-716 | 2 | +| | pool_address: 0x2875f3eFfE9Ec897D7e4C32680D77cA3E628f33a | fee: 0.01 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..1506b0bd2 --- /dev/null +++ b/BIPs/00batched/2024-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_relock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "processExpiredLocks", + "payable": false + }, + "contractInputsValues": { + "_relock": "true" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W43/BIP-720-relock-vlAura-part3.json", + "bip_number": "BIP-720" + } + } + ] +} diff --git a/BIPs/00batched/2024-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..e454a9232 --- /dev/null +++ b/BIPs/00batched/2024-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/00batched/2024-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `d474f48df6d121eab993857dd3de00de1bd52f59` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/10281705-5e53-44ae-9773-659b2f4040a8) + +``` ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-720 | N/A | +| | | | "_relock": [ | | | +| | | | "true" | | | +| | | | ] | | | +| | | | } | | | ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..a8e05b209 --- /dev/null +++ b/BIPs/00batched/2024-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xFa2F6BE7cF4da6FaE6A011A4EFC53180c9Cf0a1b", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].json", + "bip_number": "BIP-723" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe2251F5cc98f8Ccd8812Be9c0aAe8A9bD29500F3", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].json", + "bip_number": "BIP-723" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x60adB6A1D73b16F47EA3CCBa94f79cc95D2ba73B", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W43/[BIP-725] Enable hETH-wstETH Gauge [Ethereum].json", + "bip_number": "BIP-725" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF55ab397a9DB73D352A883eaC4777B14eE2E4bBf", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W43/[BIP-719] Enable MORE-USDC gauge [BASE].json", + "bip_number": "BIP-719" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8E4debFB047eFCF6501665160739818E90eD621F", + "gaugeType": "Polygon" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W43/[BIP-724] Enable GYD-aUSDT gauge [Polygon PoS].json", + "bip_number": "BIP-724" + } + } + ] +} diff --git a/BIPs/00batched/2024-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..903f17103 --- /dev/null +++ b/BIPs/00batched/2024-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,42 @@ +FILENAME: `BIPs/00batched/2024-W43/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `d474f48df6d121eab993857dd3de00de1bd52f59` +CHAIN(S): `gnosis, base, polygon, mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/15b4d52a-1524-4220-b2dd-f54e47b4473e) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x263a6edafa6444dc2ae550f9eff6344c1686d6aa0002000000000000000000d5 | ECLP-GYD-AUSDC.e | root: 0xFa2F6BE7cF4da6FaE6A011A4EFC53180c9Cf0a1b | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | BIP-723 | 0 | +| | pool_address: 0x263A6Edafa6444DC2ae550f9EFF6344c1686d6aA | fee: 0.01 | side: 0xeCC38A7E4EB20FB72BA1cDcF2fC7A6002C6C59f3 | 0xf0E7eC247b918311afa054E0AEdb99d74c31b809: stataGnoUSDCe | 0x5F62fd24941B585b91EB059E0ea1a7e729357511 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x1e8b447129984d8a6b652c807dfc3bd1359731330002000000000000000000d6 | ECLP-GYD-sDAI | root: 0xe2251F5cc98f8Ccd8812Be9c0aAe8A9bD29500F3 | 0xaf204776c7245bF4147c2612BF6e5972Ee483701: sDAI | 0x89C80A4540A00b5270347E02e2E144c71da2EceD | safe | BIP-723 | 1 | +| | pool_address: 0x1e8b447129984d8A6B652C807DfC3bd135973133 | fee: 0.01 | side: 0xEA71b7FDAA3683D2d307e8AF3e236FB7a395e88d | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xa34bd98e54411494c55f6b12626204350d2d447f0000000000000000000006dc | hETH/wstETH | root: 0x60adB6A1D73b16F47EA3CCBa94f79cc95D2ba73B | 0x270B7748CdF8243bFe68FaCE7230ef0fCE695389: hETH | 0x388BeD0F17Ad5752EBC5b4034226D4c5D33bAA9e | safe | BIP-725 | 2 | +| | pool_address: 0xa34bD98E54411494C55F6b12626204350d2D447f | fee: 0.04 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 200 | style: mainnet | 0xa34bD98E54411494C55F6b12626204350d2D447f: hETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x0008a59c1d2e5922790c929ea432ed02d4d3323a000200000000000000000190 | ECLP-MORE-USDC | root: 0xF55ab397a9DB73D352A883eaC4777B14eE2E4bBf | 0x25ea98ac87A38142561eA70143fd44c4772A16b6: MORE | 0x0000000000000000000000000000000000000000 | -- | BIP-719 | 3 | +| | pool_address: 0x0008A59C1d2E5922790C929ea432ed02D4D3323A | fee: 0.05 | side: 0x04eB463335845e8B8d46d410B344Fd2187BbF87C | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 2.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xa8cbbffe0d62797afaf7af0a23810bd5ba39a4dd000200000000000000000f04 | ECLP-GYD-AUSDT | root: 0x8E4debFB047eFCF6501665160739818E90eD621F | 0x87A1fdc4C726c459f597282be639a045062c0E46: stataPolUSDT | 0x9977a61a6aa950044d4dcD8aA0cAb76F84ea5aCd | safe | BIP-724 | 4 | +| | pool_address: 0xa8CbbfFE0d62797AFAF7af0A23810bd5ba39a4dD | fee: 0.01 | side: 0xCC322077D4056739FC11E950326b2a97aEcB0cc8 | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W43/combined-report.md b/BIPs/00batched/2024-W43/combined-report.md new file mode 100644 index 000000000..282452028 --- /dev/null +++ b/BIPs/00batched/2024-W43/combined-report.md @@ -0,0 +1,15 @@ +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/6635de7c-24fe-400b-8467-1ffb8e144871) + +[Sign Nonce 259](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +``` ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-720 | N/A | +| | | | "_relock": [ | | | +| | | | "true" | | | +| | | | ] | | | +| | | | } | | | ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W43/tg_template.txt b/BIPs/00batched/2024-W43/tg_template.txt new file mode 100644 index 000000000..0caff9e72 --- /dev/null +++ b/BIPs/00batched/2024-W43/tg_template.txt @@ -0,0 +1,11 @@ +GM all. As I explained in the messages above. We need to lock our vlAURA before Thursday this week or we miss out on a 2 week Epoch of BD incentives. Everyone is on red alert right now re signer security. The paylaod above has been reviewed already by a number of people for a few PCs, and we will be closley monitoring the signing process. + +If you feel safu/comfortable signing right now. Please do so promptly so we can get this done. If not, that's fine. If this slips it's not the end of the world. + +@alexanderlan @gosuto @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge @tritium_vlk + +Mainnet: https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Plase Sign Nonce 259 +BIP-720: Relock vlAURA + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W43 diff --git a/BIPs/00batched/2024-W44/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json b/BIPs/00batched/2024-W44/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json new file mode 100644 index 000000000..cbdc544f2 --- /dev/null +++ b/BIPs/00batched/2024-W44/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json @@ -0,0 +1,1311 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]]", + "options": "0" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]]", + "options": "0" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]]", + "options": "0" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "selector": "0x6e553f65", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "selector": "0xba087652", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "selector": "0xb460af94", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816" + }, + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816", + "selector": "0x6e553f65", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 10, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816", + "selector": "0xba087652", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 11, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F" + }, + "meta": { + "tx_index": 12, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"]]", + "options": "0" + }, + "meta": { + "tx_index": 13, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + }, + "meta": { + "tx_index": 14, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"]]", + "options": "0" + }, + "meta": { + "tx_index": 15, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xC36442b4a4522E871399CD717aBDD847Ab11FE88" + }, + "meta": { + "tx_index": 16, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xC36442b4a4522E871399CD717aBDD847Ab11FE88", + "selector": "0x12210e8a", + "options": "1" + }, + "meta": { + "tx_index": 17, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + "meta": { + "tx_index": 18, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]]", + "options": "0" + }, + "meta": { + "tx_index": 19, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB" + }, + "meta": { + "tx_index": 20, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x569d3489", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"18\",\"0x00000000000000000000000000000000000000000000000000000000000000c9\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"4\",\"0\",\"2\",\"0x\"],[\"4\",\"0\",\"2\",\"0x\"],[\"4\",\"1\",\"15\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"5\",\"0\",\"2\",\"0x\"],[\"5\",\"0\",\"2\",\"0x\"],[\"5\",\"1\",\"15\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"6\",\"1\",\"16\",\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[\"7\",\"1\",\"16\",\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[\"7\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"7\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[\"18\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"18\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"18\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"18\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"18\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"18\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"19\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"19\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"19\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"19\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"19\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"19\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]]", + "options": "2" + }, + "meta": { + "tx_index": 21, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x5a66c223", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"2\",\"0\",\"2\",\"0x\"],[\"2\",\"0\",\"2\",\"0x\"],[\"2\",\"1\",\"15\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"3\",\"0\",\"2\",\"0x\"],[\"3\",\"0\",\"2\",\"0x\"],[\"3\",\"1\",\"15\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"4\",\"1\",\"16\",\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[\"5\",\"1\",\"16\",\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[\"5\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"5\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[\"16\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"16\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"16\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"16\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"16\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"16\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"17\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"17\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"17\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]]", + "options": "2" + }, + "meta": { + "tx_index": 22, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xBA12222222228d8Ba445958a75a0704d566BF2C8" + }, + "meta": { + "tx_index": 23, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "selector": "0x52bbbe29", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"0\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"2\",\"1\",\"15\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"15\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"16\",\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"3\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"2\",\"0\",\"0x\"],[\"4\",\"1\",\"16\",\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"2\",\"0\",\"0x\"],[\"5\",\"1\",\"16\",\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"2\",\"0\",\"0x\"],[\"6\",\"1\",\"16\",\"0x0b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"2\",\"0\",\"0x\"],[\"7\",\"1\",\"16\",\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"],[\"7\",\"1\",\"0\",\"0x\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"7\",\"1\",\"0\",\"0x\"],[\"7\",\"2\",\"0\",\"0x\"],[\"8\",\"1\",\"16\",\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"],[\"8\",\"1\",\"0\",\"0x\"],[\"8\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"8\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"8\",\"1\",\"0\",\"0x\"],[\"8\",\"2\",\"0\",\"0x\"],[\"9\",\"1\",\"16\",\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"],[\"9\",\"1\",\"0\",\"0x\"],[\"9\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"9\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"9\",\"1\",\"0\",\"0x\"],[\"9\",\"2\",\"0\",\"0x\"],[\"10\",\"1\",\"16\",\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"],[\"10\",\"1\",\"0\",\"0x\"],[\"10\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"10\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"10\",\"1\",\"0\",\"0x\"],[\"10\",\"2\",\"0\",\"0x\"],[\"11\",\"1\",\"16\",\"0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019\"],[\"11\",\"1\",\"0\",\"0x\"],[\"11\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"11\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"11\",\"1\",\"0\",\"0x\"],[\"11\",\"2\",\"0\",\"0x\"],[\"12\",\"1\",\"16\",\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"],[\"12\",\"1\",\"0\",\"0x\"],[\"12\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"12\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"12\",\"1\",\"0\",\"0x\"],[\"12\",\"2\",\"0\",\"0x\"],[\"13\",\"1\",\"16\",\"0xefaa1604e82e1b3af8430b90192c1b9e8197e377000200000000000000000021\"],[\"13\",\"1\",\"0\",\"0x\"],[\"13\",\"1\",\"16\",\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[\"13\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"13\",\"1\",\"0\",\"0x\"],[\"13\",\"2\",\"0\",\"0x\"],[\"14\",\"1\",\"16\",\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"],[\"14\",\"1\",\"0\",\"0x\"],[\"14\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"14\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"14\",\"1\",\"0\",\"0x\"],[\"14\",\"2\",\"0\",\"0x\"],[\"15\",\"1\",\"16\",\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"],[\"15\",\"1\",\"0\",\"0x\"],[\"15\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"15\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"15\",\"1\",\"0\",\"0x\"],[\"15\",\"2\",\"0\",\"0x\"],[\"16\",\"1\",\"16\",\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"],[\"16\",\"1\",\"0\",\"0x\"],[\"16\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"16\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"16\",\"1\",\"0\",\"0x\"],[\"16\",\"2\",\"0\",\"0x\"],[\"17\",\"1\",\"16\",\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"],[\"17\",\"1\",\"0\",\"0x\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"17\",\"1\",\"0\",\"0x\"],[\"17\",\"2\",\"0\",\"0x\"],[\"18\",\"1\",\"16\",\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"],[\"18\",\"1\",\"0\",\"0x\"],[\"18\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"18\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"18\",\"1\",\"0\",\"0x\"],[\"18\",\"2\",\"0\",\"0x\"],[\"19\",\"1\",\"16\",\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"],[\"19\",\"1\",\"0\",\"0x\"],[\"19\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"19\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"19\",\"1\",\"0\",\"0x\"],[\"19\",\"2\",\"0\",\"0x\"],[\"20\",\"1\",\"16\",\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"],[\"20\",\"1\",\"0\",\"0x\"],[\"20\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"20\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"20\",\"1\",\"0\",\"0x\"],[\"20\",\"2\",\"0\",\"0x\"],[\"21\",\"1\",\"16\",\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"],[\"21\",\"1\",\"0\",\"0x\"],[\"21\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"21\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"21\",\"1\",\"0\",\"0x\"],[\"21\",\"2\",\"0\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 24, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] sgyd_permissions.json", + "bip_number": "BIP-714" + } + } + ] +} diff --git a/BIPs/00batched/2024-W44/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt b/BIPs/00batched/2024-W44/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt new file mode 100644 index 000000000..d543ba8e1 --- /dev/null +++ b/BIPs/00batched/2024-W44/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt @@ -0,0 +1,1574 @@ +FILENAME: `BIPs/00batched/2024-W44/1-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json` +MULTISIG: `multisigs/karpatkey (mainnet:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `2e698d41c71f88e948c5e21fb2cba79cd6c4b044` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `scopeFunction`, positional arguments with type(s) `str,address,str,(str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str),int` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `scopeFunction`: ['scopeFunction(bytes32,address,bytes4,(uint8,uint8,uint8,bytes)[],uint8)']\nFunction invocation failed due to no matching argument types."))` + +``` ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (tokens/GHO)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (tokens/GHO)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x6e553f65" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xba087652" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xb460af94" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x6e553f65" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xba087652" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xC36442b4a4522E871399CD717aBDD847Ab11FE88 (uniswap/NonfungiblePositionManager)" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xC36442b4a4522E871399CD717aBDD847Ab11FE88 (uniswap/NonfungiblePositionManager)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x12210e8a" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x569d3489" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"18\"", | | | +| | | | "\"0x00000000000000000000000000000000000000000000000000000000000000c9\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5a66c223" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x52bbbe29" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xefaa1604e82e1b3af8430b90192c1b9e8197e377000200000000000000000021\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..e88b2e41e --- /dev/null +++ b/BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,562 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE03b4CB39C54EedFe4E46677511989866A88dbE3", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json", + "bip_number": "BIP-722" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc028EFDa059e040b42998c96FF7fe0b126FA87fA", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json", + "bip_number": "BIP-722" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json", + "bip_number": "BIP-722" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json", + "bip_number": "BIP-722" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json", + "bip_number": "BIP-722" + } + }, + { + "to": "0x8f72fcf695523A6FC7DD97EafDd7A083c386b7b6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "string", + "name": "protocolName", + "type": "string" + }, + { + "components": [ + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "contact", + "type": "string" + } + ], + "internalType": "struct Contact[]", + "name": "contactDetails", + "type": "tuple[]" + }, + { + "components": [ + { + "internalType": "address", + "name": "assetRecoveryAddress", + "type": "address" + }, + { + "components": [ + { + "internalType": "address", + "name": "accountAddress", + "type": "address" + }, + { + "internalType": "enum ChildContractScope", + "name": "childContractScope", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "internalType": "struct Account[]", + "name": "accounts", + "type": "tuple[]" + }, + { + "internalType": "uint256", + "name": "id", + "type": "uint256" + } + ], + "internalType": "struct Chain[]", + "name": "chains", + "type": "tuple[]" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "bountyPercentage", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bountyCapUSD", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "retainable", + "type": "bool" + }, + { + "internalType": "enum IdentityRequirements", + "name": "identity", + "type": "uint8" + }, + { + "internalType": "string", + "name": "diligenceRequirements", + "type": "string" + } + ], + "internalType": "struct BountyTerms", + "name": "bountyTerms", + "type": "tuple" + }, + { + "internalType": "string", + "name": "agreementURI", + "type": "string" + } + ], + "internalType": "struct AgreementDetailsV1", + "name": "details", + "type": "tuple" + } + ], + "name": "adoptSafeHarbor", + "payable": false + }, + "contractInputsValues": { + "details": "[\"Balancer\",[[\"Telegram: Mikeisballin\",\"Mike B - Strategy\"]],[[\"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],1],[\"0xaF23DC5983230E9eEAf93280e312e57539D098D0\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],42161],[\"0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],43114],[\"0xC40DCFB13651e64C8551007aa57F9260827B6462\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],8453],[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],252],[\"0x2a5AEcE0bb9EfFD7608213AE1745873385515c18\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],100],[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],34443],[\"0x043f9687842771b3dF8852c1E9801DCAeED3f6bc\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],10],[\"0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],137],[\"0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],1101]],[10,1000000,false,2,\"KYC & Global Sanction Verification. Balancer requires all eligible whitehats to undergo Know Your Customer (KYC) verification and be screened against global sanctions lists, including OFAC, UK, and EU regulations. This process ensures that all bounty recipients are compliant with legal and regulatory standards before qualifying for payment.\"],\"https://bafybeiakxvysdvsvupqcibkpifugzwcnllzt2udjk3l4yhcix7dqxxqyp4.ipfs.w3s.link/agreement.pdf\"]" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-726] Adopt SEAL Whitehat Safe Harbor Agreement.json", + "bip_number": "BIP-726" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "7800000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.json", + "bip_number": "BIP-705" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "amount": "46113000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.json", + "bip_number": "BIP-705" + } + }, + { + "to": "0x64646f112FfD6F1B7533359CFaAF7998F23C8c40", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "index": "76", + "amount": "644468387507556000000000", + "merkleProof": "[0x094ad36ae546eed2259ef0fece65a547da0f0637fd0f4f2eada3f1d0683f38ec,0xd384949604f27f23a72c2f4a8b9685fbd5c7c73dff91a090dfe1b9f97d400901,0x08bbea027cafe80e4980174a6c737ea14a1f2112fc729dab0edbfc5c5f1db49a,0xad831294f8fdafb520d6d5bd541cf4dcda1a70296984bc3724ff6b4ced47031e,0x089e0540e28339fdc77e4fe34924a44c9118c931d327d6c93b50a855fcc0728b,0xec1729dc9432b2d6cf47739e615ea9047b354edd301f3ccdf9f99a4a76fc036e,0x39931438cd8162fd4c05032bbd0e02ea5b30be104554d8739d6af78e792935e5,0xe9067ae76891425e5e33c2a12d6a9cd062d5e2ab763ddd1283fba657d32bc623,0x9bf5615249d7ef7fe82e7039d7dc3c2a8c105cc491dca112246b549b24ad28d9,0xd84e4549adcf49890f091546b3f873d102368cb115fac46655102eff21a1291b]" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/BIP-702-Claim-COW-Rewards.json", + "bip_number": "BIP-702" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-703] Kill aUSDC-sDAI gauge [Gnosis].json", + "bip_number": "BIP-703" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-706] Kill GHO-USDC Wide Range ECLP Gauge.json", + "bip_number": "BIP-706" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "amount": "2784420000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.json", + "bip_number": "BIP-103" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "28720000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.json", + "bip_number": "BIP-103" + } + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "_value": "250000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-714] transferUSDT.json", + "bip_number": "BIP-714" + } + }, + { + "to": "0x4da27a545c0c5B758a6BA100e3a049001de870f5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "amount": "1499850055174218445588" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-708] Transfer stkAAVE to karpatkey-managed SAFE and Delegate Voting Power.json", + "bip_number": "BIP-708" + } + } + ] +} diff --git a/BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..3980ffd3a --- /dev/null +++ b/BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,135 @@ +FILENAME: `BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `2e698d41c71f88e948c5e21fb2cba79cd6c4b044` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `adoptSafeHarbor`, positional arguments with type(s) `str` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `adoptSafeHarbor`: ['adoptSafeHarbor((string,(string,string)[],(address,(address,uint8,bytes)[],uint256)[],(uint256,uint256,bool,uint8,string),string))']\nFunction invocation failed due to no matching argument types."))` + +``` ++----------+----------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+----------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 7800.0 (RAW: 7800000000) | BIP-705 | 6 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 46113.0 (RAW: 46113000000000000000000) | BIP-705 | 7 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 2784.42 (RAW: 2784420000000000000000) | BIP-103 | 11 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 28720.0 (RAW: 28720000000) | BIP-103 | 12 | +| transfer | USDT:0xdAC17F958D2ee523a2206206994597C13D831ec7 | multisigs/karpatkey:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 | 250000.0 (RAW: 250000000000) | BIP-714 | 13 | +| transfer | stkAAVE:0x4da27a545c0c5B758a6BA100e3a049001de870f5 | multisigs/karpatkey:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 | 1499.8500551742184 (RAW: 1499850055174218445588) | BIP-708 | 14 | ++----------+----------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `2e698d41c71f88e948c5e21fb2cba79cd6c4b044` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `adoptSafeHarbor`, positional arguments with type(s) `str` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `adoptSafeHarbor`: ['adoptSafeHarbor((string,(string,string)[],(address,(address,uint8,bytes)[],uint256)[],(uint256,uint256,bool,uint8,string),string))']\nFunction invocation failed due to no matching argument types."))` + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xE03b4CB39C54EedFe4E46677511989866A88dbE3 (root_gauges/ECLP-GHO-USDe-arbitrum-root-e03b) | killGauge() | | BIP-722 | 0 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc028EFDa059e040b42998c96FF7fe0b126FA87fA (root_gauges/ECLP-sFRAX-FRAX-arbitrum-root-c028) | killGauge() | | BIP-722 | 1 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180 (root_gauges/ECLP-GHO-GYD-arbitrum-root-9434) | killGauge() | | BIP-722 | 2 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf (root_gauges/GDSRH-optimism-root-9de7) | killGauge() | | BIP-722 | 3 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1 (root_gauges/ECLP-sDAI-USDC-rh-base-root-39a6) | killGauge() | | BIP-722 | 4 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c (root_gauges/ECLP-sDAI-AUSDC-gnosis-root-c671) | killGauge() | | BIP-703 | 9 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE (gauges/ECLP-GHO-USDC-gauge-80ae) | killGauge() | | BIP-706 | 10 | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W44/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `2e698d41c71f88e948c5e21fb2cba79cd6c4b044` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `adoptSafeHarbor`, positional arguments with type(s) `str` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `adoptSafeHarbor`: ['adoptSafeHarbor((string,(string,string)[],(address,(address,uint8,bytes)[],uint256)[],(uint256,uint256,bool,uint8,string),string))']\nFunction invocation failed due to no matching argument types."))` + +``` ++-----------------+-----------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+-----------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| adoptSafeHarbor | 0x8f72fcf695523A6FC7DD97EafDd7A083c386b7b6 (safe_harbor/registry) | 0 | { | BIP-726 | N/A | +| | | | "details": [ | | | +| | | | "\"Balancer\"", | | | +| | | | "[[\"Telegram:Mikeisballin\"", | | | +| | | | "\"MikeB-Strategy\"]]", | | | +| | | | "[[\"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "1]", | | | +| | | | "[\"0xaF23DC5983230E9eEAf93280e312e57539D098D0\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "42161]", | | | +| | | | "[\"0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "43114]", | | | +| | | | "[\"0xC40DCFB13651e64C8551007aa57F9260827B6462\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "8453]", | | | +| | | | "[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "252]", | | | +| | | | "[\"0x2a5AEcE0bb9EfFD7608213AE1745873385515c18\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "100]", | | | +| | | | "[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "34443]", | | | +| | | | "[\"0x043f9687842771b3dF8852c1E9801DCAeED3f6bc\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "10]", | | | +| | | | "[\"0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "137]", | | | +| | | | "[\"0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "1101]]", | | | +| | | | "[10", | | | +| | | | "1000000", | | | +| | | | "false", | | | +| | | | "2", | | | +| | | | "\"KYC&GlobalSanctionVerification.BalancerrequiresalleligiblewhitehatstoundergoKnowYourCustomer(KYC)verificationandbescreenedagainstglobalsanctionslists", | | | +| | | | "includingOFAC", | | | +| | | | "UK", | | | +| | | | "andEUregulations.Thisprocessensuresthatallbountyrecipientsarecompliantwithlegalandregulatorystandardsbeforequalifyingforpayment.\"]", | | | +| | | | "\"https://bafybeiakxvysdvsvupqcibkpifugzwcnllzt2udjk3l4yhcix7dqxxqyp4.ipfs.w3s.link/agreement.pdf\"" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x64646f112FfD6F1B7533359CFaAF7998F23C8c40 (cow/airdrop_merkle_distributor) | 0 | { | BIP-702 | N/A | +| | | | "index": [ | | | +| | | | "76" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:644468387507556000000000, 18 decimals:644468.387507556, 6 decimals: 644468387507556000" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x094ad36ae546eed2259ef0fece65a547da0f0637fd0f4f2eada3f1d0683f38ec", | | | +| | | | "0xd384949604f27f23a72c2f4a8b9685fbd5c7c73dff91a090dfe1b9f97d400901", | | | +| | | | "0x08bbea027cafe80e4980174a6c737ea14a1f2112fc729dab0edbfc5c5f1db49a", | | | +| | | | "0xad831294f8fdafb520d6d5bd541cf4dcda1a70296984bc3724ff6b4ced47031e", | | | +| | | | "0x089e0540e28339fdc77e4fe34924a44c9118c931d327d6c93b50a855fcc0728b", | | | +| | | | "0xec1729dc9432b2d6cf47739e615ea9047b354edd301f3ccdf9f99a4a76fc036e", | | | +| | | | "0x39931438cd8162fd4c05032bbd0e02ea5b30be104554d8739d6af78e792935e5", | | | +| | | | "0xe9067ae76891425e5e33c2a12d6a9cd062d5e2ab763ddd1283fba657d32bc623", | | | +| | | | "0x9bf5615249d7ef7fe82e7039d7dc3c2a8c105cc491dca112246b549b24ad28d9", | | | +| | | | "0xd84e4549adcf49890f091546b3f873d102368cb115fac46655102eff21a1291b" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+-----------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..32b17e943 --- /dev/null +++ b/BIPs/00batched/2024-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0Bb8B971AaF99eddfddE2e71736eBEBe8CC7769b", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W44/[BIP-727] Enable wstETH-weETHs Gauge [Ethereum].json", + "bip_number": "BIP-727" + } + } + ] +} diff --git a/BIPs/00batched/2024-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..0e612b188 --- /dev/null +++ b/BIPs/00batched/2024-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W44/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `2e698d41c71f88e948c5e21fb2cba79cd6c4b044` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/97f4a1aa-a456-4e0b-a9cd-5926f44149ac) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2ab8df7429f4fce60eb2c1233f0326767765e2f30000000000000000000006da | weETHs/wstETH | root: 0x0Bb8B971AaF99eddfddE2e71736eBEBe8CC7769b | 0x2AB8Df7429f4fCe60eb2C1233f0326767765e2F3: weETHs/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-727 | 0 | +| | pool_address: 0x2AB8Df7429f4fCe60eb2C1233f0326767765e2F3 | fee: 0.04 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 500 | style: mainnet | 0x917ceE801a67f933F2e6b33fC0cD1ED2d5909D88: weETHs | 0x64C04442C4Bc85C49782525AbE92c8a6fB714b50 | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W44/combined-report.md b/BIPs/00batched/2024-W44/combined-report.md new file mode 100644 index 000000000..d74b77496 --- /dev/null +++ b/BIPs/00batched/2024-W44/combined-report.md @@ -0,0 +1,1700 @@ +# Ethereum DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/39f50cb1-c9aa-4001-b166-9d929a3edd34) + +[Sign Nonce 260](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++----------+----------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+----------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 7800.0 (RAW: 7800000000) | BIP-705 | 6 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 46113.0 (RAW: 46113000000000000000000) | BIP-705 | 7 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 2784.42 (RAW: 2784420000000000000000) | BIP-103 | 11 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 28720.0 (RAW: 28720000000) | BIP-103 | 12 | +| transfer | USDT:0xdAC17F958D2ee523a2206206994597C13D831ec7 | multisigs/karpatkey:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 | 250000.0 (RAW: 250000000000) | BIP-714 | 13 | +| transfer | stkAAVE:0x4da27a545c0c5B758a6BA100e3a049001de870f5 | multisigs/karpatkey:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 | 1499.8500551742184 (RAW: 1499850055174218445588) | BIP-708 | 14 | ++----------+----------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------+---------+----------+ +``` + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xE03b4CB39C54EedFe4E46677511989866A88dbE3 (root_gauges/ECLP-GHO-USDe-arbitrum-root-e03b) | killGauge() | | BIP-722 | 0 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc028EFDa059e040b42998c96FF7fe0b126FA87fA (root_gauges/ECLP-sFRAX-FRAX-arbitrum-root-c028) | killGauge() | | BIP-722 | 1 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180 (root_gauges/ECLP-GHO-GYD-arbitrum-root-9434) | killGauge() | | BIP-722 | 2 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf (root_gauges/GDSRH-optimism-root-9de7) | killGauge() | | BIP-722 | 3 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1 (root_gauges/ECLP-sDAI-USDC-rh-base-root-39a6) | killGauge() | | BIP-722 | 4 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c (root_gauges/ECLP-sDAI-AUSDC-gnosis-root-c671) | killGauge() | | BIP-703 | 9 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE (gauges/ECLP-GHO-USDC-gauge-80ae) | killGauge() | | BIP-706 | 10 | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` + +``` ++-----------------+-----------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+-----------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| adoptSafeHarbor | 0x8f72fcf695523A6FC7DD97EafDd7A083c386b7b6 (safe_harbor/registry) | 0 | { | BIP-726 | N/A | +| | | | "details": [ | | | +| | | | "\"Balancer\"", | | | +| | | | "[[\"Telegram:Mikeisballin\"", | | | +| | | | "\"MikeB-Strategy\"]]", | | | +| | | | "[[\"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "1]", | | | +| | | | "[\"0xaF23DC5983230E9eEAf93280e312e57539D098D0\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "42161]", | | | +| | | | "[\"0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "43114]", | | | +| | | | "[\"0xC40DCFB13651e64C8551007aa57F9260827B6462\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "8453]", | | | +| | | | "[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "252]", | | | +| | | | "[\"0x2a5AEcE0bb9EfFD7608213AE1745873385515c18\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "100]", | | | +| | | | "[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "34443]", | | | +| | | | "[\"0x043f9687842771b3dF8852c1E9801DCAeED3f6bc\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "10]", | | | +| | | | "[\"0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "137]", | | | +| | | | "[\"0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "1101]]", | | | +| | | | "[10", | | | +| | | | "1000000", | | | +| | | | "false", | | | +| | | | "2", | | | +| | | | "\"KYC&GlobalSanctionVerification.BalancerrequiresalleligiblewhitehatstoundergoKnowYourCustomer(KYC)verificationandbescreenedagainstglobalsanctionslists", | | | +| | | | "includingOFAC", | | | +| | | | "UK", | | | +| | | | "andEUregulations.Thisprocessensuresthatallbountyrecipientsarecompliantwithlegalandregulatorystandardsbeforequalifyingforpayment.\"]", | | | +| | | | "\"https://bafybeiakxvysdvsvupqcibkpifugzwcnllzt2udjk3l4yhcix7dqxxqyp4.ipfs.w3s.link/agreement.pdf\"" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x64646f112FfD6F1B7533359CFaAF7998F23C8c40 (cow/airdrop_merkle_distributor) | 0 | { | BIP-702 | N/A | +| | | | "index": [ | | | +| | | | "76" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:644468387507556000000000, 18 decimals:644468.387507556, 6 decimals: 644468387507556000" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x094ad36ae546eed2259ef0fece65a547da0f0637fd0f4f2eada3f1d0683f38ec", | | | +| | | | "0xd384949604f27f23a72c2f4a8b9685fbd5c7c73dff91a090dfe1b9f97d400901", | | | +| | | | "0x08bbea027cafe80e4980174a6c737ea14a1f2112fc729dab0edbfc5c5f1db49a", | | | +| | | | "0xad831294f8fdafb520d6d5bd541cf4dcda1a70296984bc3724ff6b4ced47031e", | | | +| | | | "0x089e0540e28339fdc77e4fe34924a44c9118c931d327d6c93b50a855fcc0728b", | | | +| | | | "0xec1729dc9432b2d6cf47739e615ea9047b354edd301f3ccdf9f99a4a76fc036e", | | | +| | | | "0x39931438cd8162fd4c05032bbd0e02ea5b30be104554d8739d6af78e792935e5", | | | +| | | | "0xe9067ae76891425e5e33c2a12d6a9cd062d5e2ab763ddd1283fba657d32bc623", | | | +| | | | "0x9bf5615249d7ef7fe82e7039d7dc3c2a8c105cc491dca112246b549b24ad28d9", | | | +| | | | "0xd84e4549adcf49890f091546b3f873d102368cb115fac46655102eff21a1291b" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+-----------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` + +# Ethereum Karpatkey Managed Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/430c1090-aa64-4cbe-bbd2-926fbeef9adb) + +[Sign nonce 50](https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89) + +``` ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (tokens/GHO)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (tokens/GHO)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x6e553f65" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xba087652" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xb460af94" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x6e553f65" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xba087652" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xC36442b4a4522E871399CD717aBDD847Ab11FE88 (uniswap/NonfungiblePositionManager)" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xC36442b4a4522E871399CD717aBDD847Ab11FE88 (uniswap/NonfungiblePositionManager)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x12210e8a" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x569d3489" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"18\"", | | | +| | | | "\"0x00000000000000000000000000000000000000000000000000000000000000c9\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5a66c223" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | BIP-714 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x52bbbe29" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xefaa1604e82e1b3af8430b90192c1b9e8197e377000200000000000000000021\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W44/tg_template.txt b/BIPs/00batched/2024-W44/tg_template.txt new file mode 100644 index 000000000..a180b7999 --- /dev/null +++ b/BIPs/00batched/2024-W44/tg_template.txt @@ -0,0 +1,23 @@ +Payload of the month! Mostly moving funds for Karpatkey, also some permissions changes on their managed treasury. + +@alexanderlan @gosuto @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge @tritium_vlk + +Ethereum (DAO multisig): https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f + +Nonce 260: + +- BIP-103: Pay Karpatkey management, performance and reporting fees for Q3 +- BIP-702: Claim part of our COW airdrop +- BIP-705: Pay Grants SP their requested budget for Q4 +- BIP-708: Transfer stkAAVE position to the Karpatkey managed multisig +- BIP-714: Transfer 250k USDT to the Karpatkey managed multisig to invest into sGYD +- BIP-722: Kill a bunch of old Gyro gauges +- BIP-726: Adopt Safe Harbor agreement + +Ethereum (Karpatkey managed multisig): https://app.safe.global/transactions/queue?safe=eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 + +Nonce 50: + +- BIP-714: Give Karpatkey module the necessary permissions to execute on sGYD investment (detailed review of these permissions available [on the forum](https://forum.balancer.fi/t/bip-714-allocate-250-000-usdt-to-sgyd/6038/3?u=gosuto)) + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W44 diff --git a/BIPs/00batched/2024-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..86056da2c --- /dev/null +++ b/BIPs/00batched/2024-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,254 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xDFaD195F91e1591ae8Eb4c1c7183185CeF58864D", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W45/BIP-729.json", + "bip_number": "BIP-729" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W45/BIP-731.json", + "bip_number": "BIP-731" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3143F29F2d541B03D8526c265a54fBC727DA6565", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W45/BIP-731.json", + "bip_number": "BIP-731" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe8BED31b0245Cd174a182D18CD0DE0355A77151F", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W45/BIP-731.json", + "bip_number": "BIP-731" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE01347229d681C69f459176A042268Cf981DFaa4", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W45/BIP-731.json", + "bip_number": "BIP-731" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf697535848B535900c76f70F1e36EC3985D27862", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W45/BIP-728.json", + "bip_number": "BIP-728" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x655A2B240151b4fAb06dfb2B6329eF72647F89dd", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W45/BIP-730.json", + "bip_number": "BIP-730" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF3E9A97e5fEddf961A3d431627561bbFc7cFb6cf", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W45/BIP-730.json", + "bip_number": "BIP-730" + } + } + ] +} diff --git a/BIPs/00batched/2024-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..3ede4ef1b --- /dev/null +++ b/BIPs/00batched/2024-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,57 @@ +FILENAME: `BIPs/00batched/2024-W45/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `53cfb2f30d4a94b6b557eaf9727b3616560d35fc` +CHAIN(S): `base, mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fe8b7055-7c42-4a0a-bbf7-e6aceb79612e) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2238ab6c8c58473a5e81b86ec352322fb3f5edd80000000000000000000006de | pumpBTC/wBTC | root: 0xDFaD195F91e1591ae8Eb4c1c7183185CeF58864D | 0x2238aB6c8c58473a5e81b86ec352322fB3f5Edd8: pumpBTC/wBTC | 0x0000000000000000000000000000000000000000 | -- | BIP-729 | 0 | +| | pool_address: 0x2238aB6c8c58473a5e81b86ec352322fB3f5Edd8 | fee: 0.02 | side: None | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599: WBTC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: mainnet | 0xF469fBD2abcd6B9de8E169d128226C0Fc90a012e: pumpBTC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x54d86e177cdc664b5f9b17eb5fd6a76fa529e466000200000000000000000199 | ECLP-cbETH-wstETH | root: 0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC | 0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22: cbETH | 0x3786a6CAAB433f5dfE56503207DF31DF87C5b5C1 | safe | BIP-731 | 1 | +| | pool_address: 0x54D86E177cdC664B5F9B17eB5fd6A76Fa529e466 | fee: 0.01 | side: 0x0Cb9e522cA688C88af547A119279764F00F677C7 | 0xc1CBa3fCea344f92D9239c08C0568f6F2F0ee452: wstETH | 0x3b3dd5f913443bb5E70389F29c83F7DCA460CAe1 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xbbb4966335677ea24f7b86dc19a423412390e1fb00020000000000000000019a | ECLP-WETH-USDC | root: 0x3143F29F2d541B03D8526c265a54fBC727DA6565 | 0x4200000000000000000000000000000000000006: WETH | 0x5E10C2a55fB6E4C14c50C7f6B82bb28A813a4748 | safe | BIP-731 | 2 | +| | pool_address: 0xbbb4966335677Ea24F7B86DC19a423412390e1fb | fee: 0.3 | side: 0x5Ed3Cd1d293CC96E15216F90D83AeEB00340E2f1 | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x1529f6af353e180867f257820843425b49b1b47800020000000000000000019b | ECLP-WETH-USDC | root: 0xe8BED31b0245Cd174a182D18CD0DE0355A77151F | 0x4200000000000000000000000000000000000006: WETH | 0x3e89cc86307aF44A77EB29d0c4163d515D348313 | safe | BIP-731 | 3 | +| | pool_address: 0x1529f6Af353E180867F257820843425B49B1b478 | fee: 0.3 | side: 0x0AC2AB71E19fB0929da93dFceC8b0389377a5a25 | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x4c42b5057a8663e2b1ac21685d1502c937a0381700020000000000000000019c | ECLP-WETH-USDC | root: 0xE01347229d681C69f459176A042268Cf981DFaa4 | 0x4200000000000000000000000000000000000006: WETH | 0x3fA516CEB5d068b60FDC0c68a3B793Fc43B88f15 | safe | BIP-731 | 4 | +| | pool_address: 0x4c42B5057A8663E2b1ac21685D1502c937a03817 | fee: 0.3 | side: 0xEdf537FFbc7C5ED4042AEdE5c0d2E14a41FdC121 | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x1d13531bf6344c102280ce4c458781fbf14dad140000000000000000000006df | tETH/wstETH | root: 0xf697535848B535900c76f70F1e36EC3985D27862 | 0x1D13531bf6344c102280CE4c458781FBF14Dad14: tETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-728 | 5 | +| | pool_address: 0x1D13531bf6344c102280CE4c458781FBF14Dad14 | fee: 0.05 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | style: mainnet | 0xD11c452fc99cF405034ee446803b6F6c1F6d5ED8: tETH | 0x7C53f86d9a6B01821F916802A7606E9255DfE4e2 | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xc683955059e98350de4e5dc1c75971bd640829bb0002000000000000000006e1 | ECLP-cbETH-wstETH | root: 0x655A2B240151b4fAb06dfb2B6329eF72647F89dd | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | BIP-730 | 6 | +| | pool_address: 0xC683955059e98350DE4e5Dc1C75971bD640829Bb | fee: 0.03 | side: None | 0xBe9895146f7AF43049ca1c1AE358B0541Ea49704: cbETH | 0x7311E4BB8a72e7B300c5B8BDE4de6CdaA822a5b1 | safe | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x9d73398c54be236da189d937eace8e6dccad36160002000000000000000006e3 | ECLP-cbBTC-WBTC | root: 0xF3E9A97e5fEddf961A3d431627561bbFc7cFb6cf | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599: WBTC | 0x0000000000000000000000000000000000000000 | -- | BIP-730 | 7 | +| | pool_address: 0x9D73398C54be236da189d937EACE8E6dccaD3616 | fee: 0.02 | side: None | 0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf: cbBTC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W46/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json b/BIPs/00batched/2024-W46/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json new file mode 100644 index 000000000..ae54392fc --- /dev/null +++ b/BIPs/00batched/2024-W46/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json @@ -0,0 +1,2690 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xaf204776c7245bF4147c2612BF6e5972Ee483701" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xaf204776c7245bF4147c2612BF6e5972Ee483701", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000d499b51fcfc66bd31248ef4b28d656d67e591a94\"]]", + "options": "0" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x569d3489", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"18\",\"0x00000000000000000000000000000000000000000000000000000000000000c9\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"4\",\"0\",\"2\",\"0x\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000af204776c7245bf4147c2612bf6e5972ee483701\"],[\"4\",\"1\",\"15\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000af204776c7245bf4147c2612bf6e5972ee483701\"],[\"5\",\"0\",\"2\",\"0x\"],[\"5\",\"1\",\"15\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"6\",\"0\",\"2\",\"0x\"],[\"6\",\"0\",\"2\",\"0x\"],[\"6\",\"1\",\"15\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000e91d153e0b41518a2ce8dd3d7944fa863463a97d\"],[\"7\",\"1\",\"16\",\"0x0000000000000000000000004ecaba5870353805a9f068101a40e0f32ed605c6\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a83\"],[\"20\",\"1\",\"16\",\"0x000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\"],[\"20\",\"1\",\"16\",\"0x0000000000000000000000004ecaba5870353805a9f068101a40e0f32ed605c6\"],[\"20\",\"1\",\"16\",\"0x000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a83\"],[\"31\",\"1\",\"16\",\"0x0000000000000000000000006a023ccd1ff6f2045c3309768ead9e68f978f6e1\"],[\"31\",\"1\",\"16\",\"0x0000000000000000000000009c58bacc331c9aa871afd802db6379a98e80cedb\"],[\"32\",\"1\",\"16\",\"0x0000000000000000000000006a023ccd1ff6f2045c3309768ead9e68f978f6e1\"],[\"32\",\"1\",\"16\",\"0x0000000000000000000000009c58bacc331c9aa871afd802db6379a98e80cedb\"]]", + "options": "2" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x5a66c223", + "options": "2" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d", + "selector": "0xd0e30db0", + "options": "1" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000d499b51fcfc66bd31248ef4b28d656d67e591a94\"]]", + "options": "0" + }, + "meta": { + "tx_index": 7, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83" + }, + "meta": { + "tx_index": 8, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]]", + "options": "0" + }, + "meta": { + "tx_index": 9, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x4ECaBa5870353805a9F068101A40E0f32ed605C6" + }, + "meta": { + "tx_index": 10, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x4ECaBa5870353805a9F068101A40E0f32ed605C6", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]]", + "options": "0" + }, + "meta": { + "tx_index": 11, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1" + }, + "meta": { + "tx_index": 12, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]]", + "options": "0" + }, + "meta": { + "tx_index": 13, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94" + }, + "meta": { + "tx_index": 14, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94", + "selector": "0xf716a92b", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "1" + }, + "meta": { + "tx_index": 15, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94", + "selector": "0xd1ff8241", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 16, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94", + "selector": "0x6e553f65", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 17, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94", + "selector": "0x7bde82f2", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 18, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD" + }, + "meta": { + "tx_index": 19, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x2e2d2984", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 20, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x1a7ff553", + "options": "0" + }, + "meta": { + "tx_index": 21, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x201b9eb5", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 22, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x066055e0", + "options": "0" + }, + "meta": { + "tx_index": 23, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x8ceab9aa", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 24, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x8697d2c2", + "options": "0" + }, + "meta": { + "tx_index": 25, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D" + }, + "meta": { + "tx_index": 26, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x2e2d2984", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 27, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x1a7ff553", + "options": "0" + }, + "meta": { + "tx_index": 28, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x201b9eb5", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 29, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x066055e0", + "options": "0" + }, + "meta": { + "tx_index": 30, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x8ceab9aa", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 31, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x8697d2c2", + "options": "0" + }, + "meta": { + "tx_index": 32, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35" + }, + "meta": { + "tx_index": 33, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x2e2d2984", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 34, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x1a7ff553", + "options": "0" + }, + "meta": { + "tx_index": 35, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x201b9eb5", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 36, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x066055e0", + "options": "0" + }, + "meta": { + "tx_index": 37, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x8ceab9aa", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 38, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x8697d2c2", + "options": "0" + }, + "meta": { + "tx_index": 39, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE" + }, + "meta": { + "tx_index": 40, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x2e2d2984", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 41, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x1a7ff553", + "options": "0" + }, + "meta": { + "tx_index": 42, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x201b9eb5", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 43, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x066055e0", + "options": "0" + }, + "meta": { + "tx_index": 44, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x8ceab9aa", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + }, + "meta": { + "tx_index": 45, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x8697d2c2", + "options": "0" + }, + "meta": { + "tx_index": 46, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x7301CFA0e1756B71869E93d4e4Dca5c7d0eb0AA6" + }, + "meta": { + "tx_index": 47, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x7301CFA0e1756B71869E93d4e4Dca5c7d0eb0AA6", + "selector": "0x5d1e9307", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "1" + }, + "meta": { + "tx_index": 48, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb" + }, + "meta": { + "tx_index": 49, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x0000000000000000000000003cb4692177525db38d983da0445d4eb25c3826de\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000000025c729a3364faef02c7d1f577068d87e90ba6\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000033c346928ed9249cf1d5fc16ae32a8cffa1671ad\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000e0a342ed4e0f0dbe97c4810534cfcb6550ea017d\"],[\"1\",\"1\",\"16\",\"0x0000000000000000000000004b4406ed8659d03423490d8b62a1639206da0a7a\"],[\"1\",\"1\",\"16\",\"0x0000000000000000000000002cd404d9d75436e7d6ddbccc2fb9cf7c06941bf1\"],[\"1\",\"1\",\"16\",\"0x0000000000000000000000009eeb6be79899cfe45018866a2113c6b77fa96f35\"]]", + "options": "0" + }, + "meta": { + "tx_index": 50, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb", + "selector": "0x4000aea0", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"16\",\"0x000000000000000000000000f6a78083ca3e2a662d6dd1703c939c8ace2e268d\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"2\",\"16\",\"0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000140efccbb9e2c09ea29551879bd9da32362b32fc89000000000000000000000000\"]]", + "options": "0" + }, + "meta": { + "tx_index": 51, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json", + "bip_number": "BIP-732" + } + } + ] +} diff --git a/BIPs/00batched/2024-W46/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt b/BIPs/00batched/2024-W46/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt new file mode 100644 index 000000000..8795e802d --- /dev/null +++ b/BIPs/00batched/2024-W46/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.report.txt @@ -0,0 +1,1216 @@ +FILENAME: `BIPs/00batched/2024-W46/100-0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89.json` +MULTISIG: `multisigs/karpatkey (gnosis:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `902011cbb3de2b44b9256b5b7f7860670b3d9983` +CHAIN(S): `gnosis` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `scopeFunction`, positional arguments with type(s) `str,address,str,((int,int,int,str)),int` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `scopeFunction`: ['scopeFunction(bytes32,address,bytes4,(uint8,uint8,uint8,bytes)[],uint8)']\nFunction invocation failed due to no matching argument types."))` + +``` ++---------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xaf204776c7245bF4147c2612BF6e5972Ee483701 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xaf204776c7245bF4147c2612BF6e5972Ee483701 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000d499b51fcfc66bd31248ef4b28d656d67e591a94\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x569d3489" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"18\"", | | | +| | | | "\"0x00000000000000000000000000000000000000000000000000000000000000c9\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000af204776c7245bf4147c2612bf6e5972ee483701\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000af204776c7245bf4147c2612bf6e5972ee483701\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e91d153e0b41518a2ce8dd3d7944fa863463a97d\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004ecaba5870353805a9f068101a40e0f32ed605c6\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a83\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004ecaba5870353805a9f068101a40e0f32ed605c6\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a83\"]", | | | +| | | | "[\"31\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006a023ccd1ff6f2045c3309768ead9e68f978f6e1\"]", | | | +| | | | "[\"31\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000009c58bacc331c9aa871afd802db6379a98e80cedb\"]", | | | +| | | | "[\"32\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006a023ccd1ff6f2045c3309768ead9e68f978f6e1\"]", | | | +| | | | "[\"32\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000009c58bacc331c9aa871afd802db6379a98e80cedb\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5a66c223" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xd0e30db0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000d499b51fcfc66bd31248ef4b28d656d67e591a94\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x4ECaBa5870353805a9F068101A40E0f32ed605C6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x4ECaBa5870353805a9F068101A40E0f32ed605C6 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xf716a92b" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xd1ff8241" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x6e553f65" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x7bde82f2" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x2e2d2984" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x1a7ff553" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x201b9eb5" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x066055e0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8ceab9aa" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8697d2c2" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x2e2d2984" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x1a7ff553" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x201b9eb5" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x066055e0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8ceab9aa" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8697d2c2" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x2e2d2984" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x1a7ff553" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x201b9eb5" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x066055e0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8ceab9aa" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8697d2c2" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x2e2d2984" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x1a7ff553" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x201b9eb5" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x066055e0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8ceab9aa" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8697d2c2" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x7301CFA0e1756B71869E93d4e4Dca5c7d0eb0AA6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x7301CFA0e1756B71869E93d4e4Dca5c7d0eb0AA6 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5d1e9307" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000003cb4692177525db38d983da0445d4eb25c3826de\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000000025c729a3364faef02c7d1f577068d87e90ba6\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000033c346928ed9249cf1d5fc16ae32a8cffa1671ad\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e0a342ed4e0f0dbe97c4810534cfcb6550ea017d\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004b4406ed8659d03423490d8b62a1639206da0a7a\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002cd404d9d75436e7d6ddbccc2fb9cf7c06941bf1\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000009eeb6be79899cfe45018866a2113c6b77fa96f35\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x4000aea0" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000f6a78083ca3e2a662d6dd1703c939c8ace2e268d\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000140efccbb9e2c09ea29551879bd9da32362b32fc89000000000000000000000000\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | ++---------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..206953104 --- /dev/null +++ b/BIPs/00batched/2024-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf2c203a264dc05942CFbAeA16f712b2106c2fb02", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W48/[BIP-733] Enable ynETH-wETH Gauge [Ethereum].json", + "bip_number": "BIP-733" + } + } + ] +} diff --git a/BIPs/00batched/2024-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..bb06de454 --- /dev/null +++ b/BIPs/00batched/2024-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W48/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4c625200a6f71f3b2bee1b75283165bf21659ca1` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/acc53eb8-559f-4e00-a05d-8e707c82312d) + +| Gauge Validator (0xf2c203a264dc05942CFbAeA16f712b2106c2fb02) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x398901c7a1a05a93499a40f88fca6381de912de80002000000000000000006c1 | ECLP-ynETH-wstETH | root: 0xf2c203a264dc05942CFbAeA16f712b2106c2fb02 | 0x09db87A538BD693E9d08544577d5cCfAA6373A48: ynETH | 0xF0207Ffa0b793E009DF9Df62fEE95B8FC6c93EcF | safe | BIP-733 | 0 | +| | pool_address: 0x398901C7a1a05a93499A40F88fca6381De912de8 | fee: 0.01 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W49/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W49/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..57d0d636f --- /dev/null +++ b/BIPs/00batched/2024-W49/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "60000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W49/BIP-738.json", + "bip_number": "BIP-738" + } + } + ] +} diff --git a/BIPs/00batched/2024-W49/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W49/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..03b1fe823 --- /dev/null +++ b/BIPs/00batched/2024-W49/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/00batched/2024-W49/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `2680a983f669df1ea255795ec1f1a044fb195a2e` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ea21af49-4631-4553-84f9-c7ac5bf80f87) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 60000.0 (RAW: 60000000000) | BIP-738 | 0 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..43c3d9a6b --- /dev/null +++ b/BIPs/00batched/2024-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb7bb16b58b04fe4f8d270430ce57d2a4753993de", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W49/BIP-735.json", + "bip_number": "BIP-735" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xAf1b4bfA0a69B9e669d925888b99741E15e37253", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W49/BIP-736a.json", + "bip_number": "BIP-736" + } + } + ] +} diff --git a/BIPs/00batched/2024-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..91d17b3dd --- /dev/null +++ b/BIPs/00batched/2024-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,32 @@ +FILENAME: `BIPs/00batched/2024-W49/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `2680a983f669df1ea255795ec1f1a044fb195a2e` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5c000c43-615b-41b7-9c8c-77325956caff) + +| Gauge Validator (0xB7Bb16B58b04fE4f8d270430cE57d2A4753993de) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +| Gauge Validator (0xAf1b4bfA0a69B9e669d925888b99741E15e37253) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xdcb5ed405a9b11250def047ae8016008fae7d69b0000000000000000000006d8 | WETH-lpETH | root: 0xB7Bb16B58b04fE4f8d270430cE57d2A4753993de | 0xa684EAf215ad323452e2B2bF6F817d4aa5C116ab: lpETH | 0x0000000000000000000000000000000000000000 | -- | BIP-735 | 0 | +| | pool_address: 0xdCb5ED405a9b11250deF047AE8016008Fae7D69b | fee: 0.3 | side: None | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: mainnet | 0xdCb5ED405a9b11250deF047AE8016008Fae7D69b: WETH-lpETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x8950e720eb51af9709a86941345844134517bcf40002000000000000000006e9 | ECLP-GHO-pyUSD | root: 0xAf1b4bfA0a69B9e669d925888b99741E15e37253 | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f: GHO | 0x0000000000000000000000000000000000000000 | -- | BIP-736 | 1 | +| | pool_address: 0x8950E720eB51AF9709A86941345844134517bcF4 | fee: 0.01 | side: None | 0x6c3ea9036406852006290770BEdFcAbA0e23A0e8: PYUSD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W49/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00batched/2024-W49/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..82f435b1e --- /dev/null +++ b/BIPs/00batched/2024-W49/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W49/BIP-737.json", + "bip_number": "BIP-737" + } + } + ] +} diff --git a/BIPs/00batched/2024-W49/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt b/BIPs/00batched/2024-W49/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt new file mode 100644 index 000000000..df36d78ce --- /dev/null +++ b/BIPs/00batched/2024-W49/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/00batched/2024-W49/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `2680a983f669df1ea255795ec1f1a044fb195a2e` +CHAIN(S): `zkevm` +TENDERLY: `🟪 SKIPPED (ValueError({'error': {'id': '5960f12d-f529-4771-956f-62b56607d13d', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}}))` + +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | BIP-737 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W49/combined-report.md b/BIPs/00batched/2024-W49/combined-report.md new file mode 100644 index 000000000..2addb21fd --- /dev/null +++ b/BIPs/00batched/2024-W49/combined-report.md @@ -0,0 +1,25 @@ +# Ethereum DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/39cee6b9-5a3a-41d5-91e2-e90cc5cd2904) + +[Sign Nonce 261](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 60000.0 (RAW: 60000000000) | BIP-738 | 0 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +``` + +# zkEVM DAO Multisig + +[Sign Nonce 14](https://app.safe.global/transactions/queue?safe=zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) + +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | BIP-737 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W49/tg_template.txt b/BIPs/00batched/2024-W49/tg_template.txt new file mode 100644 index 000000000..d974889a8 --- /dev/null +++ b/BIPs/00batched/2024-W49/tg_template.txt @@ -0,0 +1,13 @@ +GM! Quick payload this week to pay OpCo additional marketing funds for the V3 launch, and kicking off fee processing on zkEVM! Note Tenderly does not have zkEVM support, so no simulation available there unfortunately. + +@alexanderlan @gosuto @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge @tritium_vlk + +Ethereum (DAO multisig): https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Nonce 261: +- BIP-738: Additional Marketing Funding + +zKEVM (DAO multisig): https://app.safe.global/transactions/queue?safe=zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa +Nonce 14: +- BIP-737: Authorize Mimic Smart Vault on Polygon zkEVM (Balancer v2) + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W49 diff --git a/BIPs/00batched/2024-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..bdb415aa7 --- /dev/null +++ b/BIPs/00batched/2024-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA2321E23B3060e160195E138b62F8498546B0247", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "_delegate", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "delegateVote", + "payable": false + }, + "contractInputsValues": { + "_delegate": "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6", + "_amount": "20" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.json", + "bip_number": "BIP-739" + } + }, + { + "to": "0xA2321E23B3060e160195E138b62F8498546B0247", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "_delegate", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "delegateVote", + "payable": false + }, + "contractInputsValues": { + "_delegate": "0x9f74662aD05840Ba35d111930501c617920dD68e", + "_amount": "20" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.json", + "bip_number": "BIP-739" + } + }, + { + "to": "0xA2321E23B3060e160195E138b62F8498546B0247", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "_delegate", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "delegateVote", + "payable": false + }, + "contractInputsValues": { + "_delegate": "0x29430750d7c3Ff58c9615490485deA50bdFD15f7", + "_amount": "20" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.json", + "bip_number": "BIP-739" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c,0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4,0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f,0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155,0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c,0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43,0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07,0xc1d77fef06a5acef26a30536474b98eb44840e5f17e86114c8aaa4274e206b3c,0xeeed27c13054947e3283c26fca5c34c2e514ef8caa98f1c6a6778c06f1d247da]", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W50/[BIP-741] perms_v3_ethereum.json", + "bip_number": "BIP-741" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886,0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e,0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272,0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5,0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9,0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc,0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e,0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa,0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2,0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d,0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16,0x2f54088e4f997de92b7bea3779089047980bab824c65d526fc075413ff373000,0xed6f8a5f0602534601834cae86e16a9424b7bf30c562d15bd781fbcd5026d9a1]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W50/[BIP-741] perms_v3_ethereum.json", + "bip_number": "BIP-741" + } + } + ] +} diff --git a/BIPs/00batched/2024-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..47f46bf82 --- /dev/null +++ b/BIPs/00batched/2024-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,70 @@ +FILENAME: `BIPs/00batched/2024-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `879fee06b1a74222b02522da4c372b619f421360` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c6cbe406-50be-4e02-aabc-5730c4fcbf1f) + +``` ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/maxi_omni | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20241204-v3-vault/VaultAdmin/setStaticSwapFeePercentage(address,uint256) | 0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c | BIP-741 | 3 | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolSwapFeePercentage(uint256) | 0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolYieldFeePercentage(uint256) | 0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolSwapFeePercentage(address,uint256) | 0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolYieldFeePercentage(address,uint256) | 0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFees(address,address) | 0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFeesForToken(address,address,address) | 0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07 | | | +| | | | 20241205-v3-stable-pool/StablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xc1d77fef06a5acef26a30536474b98eb44840e5f17e86114c8aaa4274e206b3c | | | +| | | | 20241205-v3-stable-pool/StablePool/stopAmplificationParameterUpdate() | 0xeeed27c13054947e3283c26fca5c34c2e514ef8caa98f1c6a6778c06f1d247da | | | +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20241204-v3-vault/VaultAdmin/pauseVault() | 0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886 | BIP-741 | 4 | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVault() | 0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e | | | +| | | | 20241204-v3-vault/VaultAdmin/pausePool(address) | 0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpausePool(address) | 0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5 | | | +| | | | 20241204-v3-vault/VaultAdmin/pauseVaultBuffers() | 0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVaultBuffers() | 0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc | | | +| | | | 20241204-v3-vault/VaultAdmin/enableRecoveryMode(address) | 0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e | | | +| | | | 20241204-v3-vault/VaultAdmin/disableRecoveryMode(address) | 0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa | | | +| | | | 20241204-v3-vault/VaultAdmin/enableQuery() | 0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2 | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQuery() | 0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQueryPermanently() | 0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16 | | | +| | | | 20241205-v3-stable-pool/StablePoolFactory/disable() | 0x2f54088e4f997de92b7bea3779089047980bab824c65d526fc075413ff373000 | | | +| | | | 20241205-v3-weighted-pool/WeightedPoolFactory/disable() | 0xed6f8a5f0602534601834cae86e16a9424b7bf30c562d15bd781fbcd5026d9a1 | | | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/00batched/2024-W50/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `879fee06b1a74222b02522da4c372b619f421360` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/48c1f430-e6bc-4e6b-8f47-65175693b40f) + +``` ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | BIP-739 | N/A | +| | | | "_delegate": [ | | | +| | | | "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6 (gyro/zen_dragon_delegate)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | BIP-739 | N/A | +| | | | "_delegate": [ | | | +| | | | "0x9f74662aD05840Ba35d111930501c617920dD68e (N/A)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | BIP-739 | N/A | +| | | | "_delegate": [ | | | +| | | | "0x29430750d7c3Ff58c9615490485deA50bdFD15f7 (gyro/defi_naly_delegate)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/00batched/2024-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..8a70a31e3 --- /dev/null +++ b/BIPs/00batched/2024-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4fd03b8c15e70e6b3413e4d2ff3825a19746e78b", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W50/BIP-740.json", + "bip_number": "BIP-740" + } + } + ] +} diff --git a/BIPs/00batched/2024-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..fcfd5d4cc --- /dev/null +++ b/BIPs/00batched/2024-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W50/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `879fee06b1a74222b02522da4c372b619f421360` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c883731a-0860-4e4d-84cb-e1d1eaa21a6d) + +| Gauge Validator (0x4fd03B8C15E70E6b3413E4D2ff3825a19746e78B) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x62e57e37e3185871c13a422a363293780d17305b0002000000000000000006d3 | B-kaiAURA-AURA-WEIGHTED | root: 0x4fd03B8C15E70E6b3413E4D2ff3825a19746e78B | 0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF: AURA | 0x0000000000000000000000000000000000000000 | -- | BIP-740 | 0 | +| | pool_address: 0x62E57e37E3185871c13a422A363293780D17305B | fee: 1.0 | side: None | 0xFFd9c960bC303b8d3aAED58229ce8a7310bCc5b8: kaiAURA | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 2.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/2024-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..b5b8b896c --- /dev/null +++ b/BIPs/00batched/2024-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c,0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4,0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f,0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155,0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c,0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43,0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07,0xd092c49bcc2e34f69b02005821b50d57632951029f4a20eb4fb8d6fcb2ef08a3,0x66a9e5de1de4dbcb0b1d3979ca06bd4bb8ba535a1f67873ed92779cfd976dcf0]", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W50/[BIP-741] perms_v3_gnosis.json", + "bip_number": "BIP-741" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886,0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e,0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272,0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5,0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9,0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc,0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e,0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa,0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2,0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d,0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16,0x918265b00e10f59d74df8af13287d5465c19a072459da4ae7d94b20d4e66c1e8,0x0b57c528b17bebb5b75282268198cc2f48585d04488cdc16020206499ed61769]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W50/[BIP-741] perms_v3_gnosis.json", + "bip_number": "BIP-741" + } + } + ] +} diff --git a/BIPs/00batched/2024-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00batched/2024-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..27b2a7081 --- /dev/null +++ b/BIPs/00batched/2024-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/2024-W50/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `879fee06b1a74222b02522da4c372b619f421360` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0cb4e994-7d71-486c-b0e8-49f683823f9a) + +``` ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/maxi_omni | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20241204-v3-vault/VaultAdmin/setStaticSwapFeePercentage(address,uint256) | 0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c | BIP-741 | 0 | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolSwapFeePercentage(uint256) | 0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolYieldFeePercentage(uint256) | 0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolSwapFeePercentage(address,uint256) | 0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolYieldFeePercentage(address,uint256) | 0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFees(address,address) | 0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFeesForToken(address,address,address) | 0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07 | | | +| | | | 20241205-v3-stable-pool/StablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xd092c49bcc2e34f69b02005821b50d57632951029f4a20eb4fb8d6fcb2ef08a3 | | | +| | | | 20241205-v3-stable-pool/StablePool/stopAmplificationParameterUpdate() | 0x66a9e5de1de4dbcb0b1d3979ca06bd4bb8ba535a1f67873ed92779cfd976dcf0 | | | +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20241204-v3-vault/VaultAdmin/pauseVault() | 0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886 | BIP-741 | 1 | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVault() | 0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e | | | +| | | | 20241204-v3-vault/VaultAdmin/pausePool(address) | 0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpausePool(address) | 0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5 | | | +| | | | 20241204-v3-vault/VaultAdmin/pauseVaultBuffers() | 0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVaultBuffers() | 0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc | | | +| | | | 20241204-v3-vault/VaultAdmin/enableRecoveryMode(address) | 0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e | | | +| | | | 20241204-v3-vault/VaultAdmin/disableRecoveryMode(address) | 0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa | | | +| | | | 20241204-v3-vault/VaultAdmin/enableQuery() | 0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2 | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQuery() | 0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQueryPermanently() | 0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16 | | | +| | | | 20241205-v3-stable-pool/StablePoolFactory/disable() | 0x918265b00e10f59d74df8af13287d5465c19a072459da4ae7d94b20d4e66c1e8 | | | +| | | | 20241205-v3-weighted-pool/WeightedPoolFactory/disable() | 0x0b57c528b17bebb5b75282268198cc2f48585d04488cdc16020206499ed61769 | | | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W50/combined-report.md b/BIPs/00batched/2024-W50/combined-report.md new file mode 100644 index 000000000..e7b4f9df3 --- /dev/null +++ b/BIPs/00batched/2024-W50/combined-report.md @@ -0,0 +1,100 @@ +# Ethereum DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/8ca8d58f-6b9d-49ce-8d75-ad3d5cbdc775) + +[Sign Nonce 262](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +``` ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | BIP-739 | N/A | +| | | | "_delegate": [ | | | +| | | | "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6 (gyro/zen_dragon_delegate)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | BIP-739 | N/A | +| | | | "_delegate": [ | | | +| | | | "0x9f74662aD05840Ba35d111930501c617920dD68e (N/A)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | BIP-739 | N/A | +| | | | "_delegate": [ | | | +| | | | "0x29430750d7c3Ff58c9615490485deA50bdFD15f7 (gyro/defi_naly_delegate)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` + +``` ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/maxi_omni | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20241204-v3-vault/VaultAdmin/setStaticSwapFeePercentage(address,uint256) | 0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c | BIP-741 | 3 | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolSwapFeePercentage(uint256) | 0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolYieldFeePercentage(uint256) | 0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolSwapFeePercentage(address,uint256) | 0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolYieldFeePercentage(address,uint256) | 0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFees(address,address) | 0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFeesForToken(address,address,address) | 0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07 | | | +| | | | 20241205-v3-stable-pool/StablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xc1d77fef06a5acef26a30536474b98eb44840e5f17e86114c8aaa4274e206b3c | | | +| | | | 20241205-v3-stable-pool/StablePool/stopAmplificationParameterUpdate() | 0xeeed27c13054947e3283c26fca5c34c2e514ef8caa98f1c6a6778c06f1d247da | | | +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20241204-v3-vault/VaultAdmin/pauseVault() | 0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886 | BIP-741 | 4 | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVault() | 0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e | | | +| | | | 20241204-v3-vault/VaultAdmin/pausePool(address) | 0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpausePool(address) | 0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5 | | | +| | | | 20241204-v3-vault/VaultAdmin/pauseVaultBuffers() | 0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVaultBuffers() | 0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc | | | +| | | | 20241204-v3-vault/VaultAdmin/enableRecoveryMode(address) | 0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e | | | +| | | | 20241204-v3-vault/VaultAdmin/disableRecoveryMode(address) | 0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa | | | +| | | | 20241204-v3-vault/VaultAdmin/enableQuery() | 0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2 | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQuery() | 0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQueryPermanently() | 0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16 | | | +| | | | 20241205-v3-stable-pool/StablePoolFactory/disable() | 0x2f54088e4f997de92b7bea3779089047980bab824c65d526fc075413ff373000 | | | +| | | | 20241205-v3-weighted-pool/WeightedPoolFactory/disable() | 0xed6f8a5f0602534601834cae86e16a9424b7bf30c562d15bd781fbcd5026d9a1 | | | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` + +# Gnosis DAO Multisig + +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/a4643c4c-8a7e-4faf-a7b7-e18169f3fc1f) + +[Sign Nonce 26](https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) + +``` ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/maxi_omni | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20241204-v3-vault/VaultAdmin/setStaticSwapFeePercentage(address,uint256) | 0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c | BIP-741 | 0 | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolSwapFeePercentage(uint256) | 0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolYieldFeePercentage(uint256) | 0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolSwapFeePercentage(address,uint256) | 0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolYieldFeePercentage(address,uint256) | 0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFees(address,address) | 0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFeesForToken(address,address,address) | 0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07 | | | +| | | | 20241205-v3-stable-pool/StablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xd092c49bcc2e34f69b02005821b50d57632951029f4a20eb4fb8d6fcb2ef08a3 | | | +| | | | 20241205-v3-stable-pool/StablePool/stopAmplificationParameterUpdate() | 0x66a9e5de1de4dbcb0b1d3979ca06bd4bb8ba535a1f67873ed92779cfd976dcf0 | | | +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20241204-v3-vault/VaultAdmin/pauseVault() | 0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886 | BIP-741 | 1 | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVault() | 0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e | | | +| | | | 20241204-v3-vault/VaultAdmin/pausePool(address) | 0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpausePool(address) | 0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5 | | | +| | | | 20241204-v3-vault/VaultAdmin/pauseVaultBuffers() | 0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVaultBuffers() | 0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc | | | +| | | | 20241204-v3-vault/VaultAdmin/enableRecoveryMode(address) | 0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e | | | +| | | | 20241204-v3-vault/VaultAdmin/disableRecoveryMode(address) | 0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa | | | +| | | | 20241204-v3-vault/VaultAdmin/enableQuery() | 0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2 | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQuery() | 0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQueryPermanently() | 0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16 | | | +| | | | 20241205-v3-stable-pool/StablePoolFactory/disable() | 0x918265b00e10f59d74df8af13287d5465c19a072459da4ae7d94b20d4e66c1e8 | | | +| | | | 20241205-v3-weighted-pool/WeightedPoolFactory/disable() | 0x0b57c528b17bebb5b75282268198cc2f48585d04488cdc16020206499ed61769 | | | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W50/tg_template.txt b/BIPs/00batched/2024-W50/tg_template.txt new file mode 100644 index 000000000..aa8ab1896 --- /dev/null +++ b/BIPs/00batched/2024-W50/tg_template.txt @@ -0,0 +1,16 @@ +Urgent!! + +Dear signers, please prioritise placing your signature this week. The official V3 launch is happening THIS WEEK and we need the BIP-741 executed to make that possible: + +Ethereum (DAO multisig): https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Nonce 262: +- BIP-739: Delegate Gyroscope GGU to DAO Participants +- BIP-741: Grant V3 Permissions to Maxis and Emergency DAO Multisigs + +Gnosis (DAO multisig): https://app.safe.global/transactions/queue?safe=gno:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 +Nonce 26: +- BIP-741: Grant V3 Permissions to Maxis and Emergency DAO Multisigs + +See detailed reports here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W50 + +@alexanderlan @gosuto @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge @tritium_vlk diff --git a/BIPs/00batched/2024-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..629484655 --- /dev/null +++ b/BIPs/00batched/2024-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF8150d9599a9c994A9528d7a28AF1262BE4e3ebd", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W51/BIP-743.json", + "bip_number": "BIP-743" + } + } + ] +} diff --git a/BIPs/00batched/2024-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..8281ecd68 --- /dev/null +++ b/BIPs/00batched/2024-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00batched/2024-W51/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `15f3f086a221d281a87b1d45af4de855fe7bbae6` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7928b218-5844-4022-bf74-76f4adcc49c5) + +| Gauge Validator (0xF8150d9599a9c994A9528d7a28AF1262BE4e3ebd) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8461537a9bfc5a1df57cf825f8a58049ef61557b0002000000000000000006ea | ECLP-USR-GYD | root: 0xF8150d9599a9c994A9528d7a28AF1262BE4e3ebd | 0x66a1E37c9b0eAddca17d3662D6c05F4DECf3e110: USR | 0x0000000000000000000000000000000000000000 | -- | BIP-743 | 0 | +| | pool_address: 0x8461537a9BfC5A1dF57cF825F8A58049eF61557B | fee: 0.01 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/00batched/2024-W6/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W6/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..7137fa9e8 --- /dev/null +++ b/BIPs/00batched/2024-W6/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa2F8bd6B95a0cB9094206075504CD0ED1Cc717Be", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W6/BIP-539.json", + "bip_number": "BIP-539" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W6/BIP-539.json", + "bip_number": "BIP-539" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4a7475D32CCD29edD65b2a1712b091aA741ba9BB", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W6/BIP-539.json", + "bip_number": "BIP-539" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W6/BIP-541.json", + "bip_number": "BIP-541" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W6/BIP-540.json", + "bip_number": "BIP-540" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x047301b311741ce6C007FFEF7f182Ec93ab07968", + "gaugeType": "PolygonZkEvm" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W6/BIP-540.json", + "bip_number": "BIP-540" + } + } + ] +} diff --git a/BIPs/00batched/2024-W6/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W6/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..80f4bc8cd --- /dev/null +++ b/BIPs/00batched/2024-W6/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,30 @@ +FILENAME: `BIPs/00batched/2024-W6/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `149e436133a2dcf6ee658e477c668b0735faba3a` +CHAIN(S): `mainnet, zkevm` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x3932b187f440ce7703653b3908edc5bb7676c283000200000000000000000664 | ECLP-GHO-USDC-2 | 0xa2F8bd6B95a0cB9094206075504CD0ED1Cc717Be | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | | BIP-539 | 0 | +| | pool_address: 0x3932b187f440cE7703653b3908EDc5bB7676C283 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x99e7b15df044e1b62e2e1774fd4469d54d9409ac00020000000000000000065a | ECLP-GHO-USDC | 0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | | BIP-539 | 1 | +| | pool_address: 0x99e7b15df044e1b62e2e1774fD4469d54D9409aC | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663 | ECLP-GHO-GYD | 0x4a7475D32CCD29edD65b2a1712b091aA741ba9BB | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | | BIP-539 | 2 | +| | pool_address: 0xaA7a70070E7495fe86c67225329DbD39BAa2F63b | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661 | vETH/wstETH | 0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02 | "vETH(0x38D64ce1Bdf1A9f24E0Ec469C9cAde61236fB4a0)", | "0x0000000000000000000000000000000000000000", | BIP-541 | 3 | +| | pool_address: 0xD3F8AB9C5928FDf53153e7757131aD7815fe3146 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "vETH/wstETH(0xD3F8AB9C5928FDf53153e7757131aD7815fe3146)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | rsETH / ETHx | 0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab | "rsETH / ETHx(0x7761b6E0Daa04E70637D81f1Da7d186C205C2aDE)", | "0x0000000000000000000000000000000000000000", | BIP-540 | 4 | +| | pool_address: 0x7761b6E0Daa04E70637D81f1Da7d186C205C2aDE | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "rsETH(0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7)", | "0x746df66bc1Bb361b9E8E2a794C299c3427976e6C", | | | +| | | | | "ETHx(0xA35b1B31Ce002FBF2058D22F30f95D405200A15b)" | "0xAAE054B9b822554dd1D9d1F48f892B4585D3bbf0" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xffc865fcb34e754fad4b0144139b9c28c81c3eff00000000000000000000005f | rsETH/wETH | 0x047301b311741ce6C007FFEF7f182Ec93ab07968 | "WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)", | "0x0000000000000000000000000000000000000000", | BIP-540 | 5 | +| | pool_address: 0xfFC865fCb34e754Fad4B0144139b9c28c81C3eFF | fee: 0.04, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "rsETH(0x8C7D118B5c47a5BCBD47cc51789558B98dAD17c5)", | "0x4186BFC76E2E237523CBC30FD220FE055156b41F", | | | +| | | | | "rsETH/wETH(0xfFC865fCb34e754Fad4B0144139b9c28c81C3eFF)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W6/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W6/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..59103b98b --- /dev/null +++ b/BIPs/00batched/2024-W6/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "PolygonZkEvm": "[0x047301b311741ce6C007FFEF7f182Ec93ab07968]" +} diff --git a/BIPs/00batched/2024-W7/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/2024-W7/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..937539c9a --- /dev/null +++ b/BIPs/00batched/2024-W7/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W7/BIP-519-3.json", + "bip_number": "BIP-519" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W7/BIP-518-3.json", + "bip_number": "BIP-518" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd758454bdf4df7ad85f7538dc9742648ef8e6d0a", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W7/BIP-528B.json", + "bip_number": "BIP-528" + } + } + ] +} diff --git a/BIPs/00batched/2024-W7/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/2024-W7/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..9e01222b5 --- /dev/null +++ b/BIPs/00batched/2024-W7/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,26 @@ +FILENAME: `BIPs/00batched/2024-W7/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e61ab94ac66807008c318205ac038bee7ca81abf` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/443850ba-aa32-489e-a755-56fa4f4abaa1) +``` ++--------------------------+--------------------------------------------------------------------+-------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=============+=====+============================================+=======+=======+==============+=========+============+========================================================================================================+ +| AAEntrypoint/killGauge() | 0x8d333f82e0693f53fa48c40d5d4547142e907e1d000200000000000000000437 | 80PAL-20OHM | N/A | 0xd758454bdf4df7ad85f7538dc9742648ef8e6d0a | 1.0% | 2.0% | L0 sidechain | BIP-528 | 2 | ['PAL(0xa7997F0eC9fa54E89659229fB26537B6A725b798)', 'OHM(0xf0cb2dc0db5e6c66B9a70Ac27B06b878da017028)'] | ++--------------------------+--------------------------------------------------------------------+-------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/2024-W7/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e61ab94ac66807008c318205ac038bee7ca81abf` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4309a1e2-dccc-4a35-bec6-bea1c79e7d88) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 1 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W7/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W7/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..da8609fca --- /dev/null +++ b/BIPs/00batched/2024-W7/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc028EFDa059e040b42998c96FF7fe0b126FA87fA", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W7/BIP-543.json", + "bip_number": "BIP-543" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD98ed0426D18B115d6388923803e33ad8aaF11F8", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W7/BIP-542.json", + "bip_number": "BIP-542" + } + } + ] +} diff --git a/BIPs/00batched/2024-W7/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W7/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..5730a4486 --- /dev/null +++ b/BIPs/00batched/2024-W7/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/00batched/2024-W7/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e61ab94ac66807008c318205ac038bee7ca81abf` +CHAIN(S): `arbitrum, mainnet` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/16fe4f93-44ff-403f-9315-356297071a4d) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xf8201d478418d6a67507e10880eafaaacd3230da000200000000000000000504 | ECLP-sFRAX-FRAX | 0xc028EFDa059e040b42998c96FF7fe0b126FA87fA | "FRAX(0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F)", | | BIP-543 | 0 | +| | pool_address: 0xf8201D478418D6A67507e10880EaFAAaCD3230da | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | svETH/wstETH | 0xD98ed0426D18B115d6388923803e33ad8aaF11F8 | "svETH(0x6733F0283711F225A447e759D859a70b0c0Fd2bC)", | "0xad4bFaFAe75ECd3fED5cFad4E4E9847Cd47A1879", | BIP-542 | 1 | +| | pool_address: 0xdEdb11A6a23263469567C2881A9b9F8629eE0041 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "svETH/wstETH(0xdEdb11A6a23263469567C2881A9b9F8629eE0041)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W7/BIP-544.csv b/BIPs/00batched/2024-W7/BIP-544.csv new file mode 100644 index 000000000..18b69a353 --- /dev/null +++ b/BIPs/00batched/2024-W7/BIP-544.csv @@ -0,0 +1,37 @@ +token_type,token_address,receiver,amount,id +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xea06e1b4259730724885a39CE3ca670eFB020E26,570.903896103896, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x0412ed8438b5fae246606909ef8ba365f9103783,9264.377275832330, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x4281e53938c3b1c1d3e8afd21c02ce8512cdbc93,8292.550901502570, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xbb19053e031d9b2b364351b21a8ed3568b21399b,5083.454531429230, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x6aee9dc09702dffab334f3f8e6f3f97c0e7261f4,3688.191661683030, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xda6b2a5e0c56542984d84a710f90eefd94ca1991,3583.283041144180, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x1c39babd4e0d7bff33bc27c6cc5a4f1d74c9f562,3340.269280346460, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x66c9e1e4fe518cebfe59c9de16e1c780ef5bacd3,3071.117383782660, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xe7a76d8513e55578c80e4b26fc61ee7d4906d4cd,2689.167917042790, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x91b9e59614995e13a32e36440ac524825f7ae39e,2645.733417543510, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x19ae63358648795aaf29e36733f04fcef683aa69,2229.034955339120, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xd519d5704b41511951c8cf9f65fee9ab9bef2611,2194.228700929120, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x9b71dbccd9ffb858899ef3244b09a5354b16048e,2189.234801335870, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x74c3646adad7e196102d1fe35267adfd401a568b,2154.816289796320, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xba5c2f2165ddd691f99e12a23ec75cc1519930b4,2151.930006878870, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x1cbad69d9cc22962a0a885921518c06ed2f04ffd,1958.759844590260, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x1c8bcb6348c84122e67a50e513a1e183c0e6929a,1747.121204211190, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x6724f3fbb16f542401bfc42c464ce91b6c31001e,1602.526326789670, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xff052381092420b7f24cc97fded9c0c17b2cbbb9,1474.153160303520, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x242d7cd78cce454946f35f0a263b54fbe228852c,1416.959993699480, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x6d5dda04760f0515dc131ff4df76a5188ffcdfcb,1052.888962858090, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x6e33b41e44ca2be27e8f65b5231ae61a21044b4a,1031.984190904610, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xf96cd1cf416b50b60358a17bc8593060148de422,984.748538359532, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x0a29500ccc6af0b11c72d4e171d925eb0bb7ee15,984.486653952069, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xd3238d8be92fd856146f53a8b6582bc88e887559,983.663429221023, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xfe73b5a595405bac396c329c674571a7a3db528c,966.440080208157, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x438fd34eab0e80814a231a983d8bfaf507ae16d4,898.248137560579, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xc9cea7a3984cefd7a8d2a0405999cb62e8d206dc,797.746457725601, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x0b177b7f10faeadd6eee6d2cc46d783f460566c8,760.533303236744, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xaa857ddce7b5b9cb17296c790cb40e8c11a3d4f0,739.781232389394, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xe68d7a6c421e2d220b5840116008c9abdbcf53b2,589.912447063721, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xd09ca75315e70bd3988a47958a0c6c5b30b830e1,570.002934675748, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x54c3c925b9d715af541b77f9817544bdc663345e,337.233278651500, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x36cc7b13029b5dee4034745fb4f24034f3f2ffc6,320.180581563214, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xcaab2680d81df6b3e2ece585bb45cee97bf30cd7,280.644066290214, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xcb926f497763ea5cf993912a442431e6a91d5a64,35.854762848568, diff --git a/BIPs/00batched/2024-W7/BIP-544.md b/BIPs/00batched/2024-W7/BIP-544.md new file mode 100644 index 000000000..017cff23a --- /dev/null +++ b/BIPs/00batched/2024-W7/BIP-544.md @@ -0,0 +1,116 @@ +# Payload + +https://github.com/BalancerMaxis/multisig-ops/pull/780 + +# TL;DR: + +This BIP is concerning what to do with $376k USD in losses reported pertaining to the linear pool hack from last year. + +It proposes back paying holders 75% of the lost value in BAL by way of a direct airdrop based on the discussion held here: https://forum.balancer.fi/t/rfc-linear-pool-hack-restitution/5504. + +If passed, BAL amounts will be finally calculated based on pricing before a direct airdrop TX is loaded. Based on current pricing the total amount is 75,475 $BAL. + +If any users bring up concerns about being dropped BAL, they may request themselves to be removed before the final payload is loaded on Monday. We can then handle that in separate governance. + +# Background: + +Last year, Balancer, a whitehat found a [vulnerability in Balancer’s linear pools ](https://medium.com/balancer-protocol/rate-manipulation-in-balancer-boosted-pools-technical-postmortem-53db4b642492). Mitigations were put in place for many pools, and a strong [comms effort](https://twitter.com/functi0nZer0/status/1694107340079792477) was initiated to try to reach depositors in the pools that could be mitigated, asking them to withdraw. 5 days after the vulnerability was announced, hackers figured out the exploit and remaining funds in vulnerable pools were drained. + +Following the passage of [BIP-445](https://forum.balancer.fi/t/bip-445-decide-on-direction-of-restitution-for-affected-lps-in-boosted-pool-incident), a 90 day collection period was completed. Multiple reminders were sent out over various channels, the most recent of which was this [Tweet](https://twitter.com/Balancer/status/1738158848827912214). This RFC presents the results of the research on the resulting dataset of claims, and asks veBAL voters to decide on how to restitute the victims. Once final details are decided in this RFC, a BIP will be posted with similar contents to approve the decision. + +# Details + +## The Claims Data set: + +Users were sent to an [UI element](https://app.balancer.fi/#/ethereum/claim-submission) that requested transaction IDs withdraws from hacked pools. These requests were submitted on chain to this [Smart Contract ](https://etherscan.io/address/0x70b55Af71B29c5Ca7e67bD1995250364C4bE5554#events), which generated events for each claim. Note that the claims period is now closed, using the UI element to report a loss now will not result in it being considered. + +The events were collected and imported into this [google sheet ](https://docs.google.com/spreadsheets/d/1oAAqh2fJnR4EwnHYiKzuJoWZfy1GxmOPTkDj2SAR71I/edit#gid=1476637663), where research was conducted and results were obtained. In the end 41 addresses reported losses. Of those, 4 addresses did not show any on-chain evidence of loss. A vast majority of the losses came from the bb-a-usd pool. The total USD value lost, based on pricing at time of hack adds up to $376,032.42. $5,861.27 of these losses were from 2 wallets on Optimism, the rest from mainnet. + +The shape and style of Compensation: + +## The form of payment: + +A major narrative over the last year at Balancer has been building/maintaining a stable USD runway. Things have improved recently, but Balancer is not USD rich. For that reason, it is proposed that restitution be paid in BAL tokens. The amount of BAL tokens paid should be based on a 24 hour TWAP preceding the posting of the snapshot (on a Thursday). + +## The delivery of payment: + +On mainnet, payment will be directly airdropped to affected wallets in the same week that voting ends. +The addresses on Optimism do not look like they have gas on mainnet. Further, Beets has signalled its willingness to assist with distribution, and potentially cover half of the costs of repayment for Beets users on OP. For this reason, it is suggested that 50% of the BAL due to OP users is sent to Beethoven X on mainnet, and Beethoven then takes responsibility for restitution to the users for the full amount due directly on Optimsm. If beet governance decides not to pay half of the costs, the final proposal will be changed such that 100% of the BAL due to OP users is sent to beets. + +## The amount of payment: + +An [RFC was held](https://forum.balancer.fi/t/rfc-linear-pool-hack-restitution/5504) to collect community feedback around this issue. A poll was staged asking if this BIP should offer 75% of the amount lost or 100% and opened the floor to discuss other options. + +As a [result of said conversation](https://forum.balancer.fi/t/rfc-linear-pool-hack-restitution/5504/15?u=tritium), this BIP proposes that 75% of the amount lost is paid back. This results in a total of `376_032.42 * .75 = 282_024.32` USD of value, which results in a total of `282_024.32 / 3.57 = 78_998.40896359` BAL at the time of this vote. If the price of BAL moves by more than 5 cents by noon on Monday after a successful yes vote, the payload will be regenerated using new BAL pricing and the total amount of BAL paid out may change. + +# Extra decisions and details surrounding this matter + +## Beethoven helps out with losses on Optimism +Beethoven has agreed to pay half of the `5_861.28 * .75 = 4_395.96` USD due to victims as decided by Balancer, which is 50% of the final value owed to Optimsim based victims will be sent to the Beets Treasury on Mainnet `0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86`. This reduces the total amount due by Balancer by `615.68067227` BAL (see first row of the airdrop csv). + +## Addition of a late reporter on Arbitrum with special handling +A user with the address [0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5](https://arbiscan.io/address/0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5) showed up on Discord after the end of the claim period reporting [losses](https://arbiscan.io/tx/0xe135f72acc1214b05fb68a1977d11a951960bb3fa323b2ab2b3fdf8f4d159c96) from the USD+ pool on Arbitrum. The total losses were calculated using the same methods as other claimants: + +``` +pre-hack value = 2_312.80701209198413362 BPTs * 1.01542668 USDperBPT = 2_348.48594577 USD +recpvered value USD = (106.19 USD in USD+) + (66.35 USDC) = 172.54 +total loss = 2_312.8070120919841336 - 172.54 = 2140.267012092 in USD value lost +``` + +Support and the Balancer Maxis agreed to include this address in this restitution BIP barring any strong objections stated in comments before snapshot. + +Based on the 75% payback at the currently used BAL price this equates to `2140.267012092 * .75 / 3.57 = 449.6359269101 $BAL`. As with other claims this amount will be recalculated if the price of BAL drops more than 5 cents. + +Further this user is the sole Arbitrum claimant, and does not have gas on mainnet. The Balancer Maxis still have 1,287 $BAL in the [Op LM Multisig](https://app.safe.global/balances?safe=oeth:0x09Df1626110803C7b3b07085Ef1E053494155089). This BAL was left over from the [entry into BAL/ETH LP](https://forum.balancer.fi/t/bip-524-seed-bal-liquidity-on-optimism/5474) due to price movements between snapshot and deposit. The plan was to bridge these assets back to the DAO multisig on mainnet, but this BIP proposes that this BAL is instead held on Op to be used there as instructed by governance, with a portion of it being used to pay back the affected user described above. The user has agreed to accept payment on Optimsim for their Arbitrum based losses. + + + +# Specification + +Around Noon GMT on Monday the final price of BAL should be checked. If it deviates from the current payload price of `$3.57` by more then 5 cents, the payload CSV will be renegerated from the google sheet using the new current price. The final payload will then be reviewed by at least 2 Balancer Maxis on github before being loaded into the DAO multisig as part of the regular process. + +The Maxis are authorized to hold upto 1300 BAL in the Op LM multisig, and use a portion of that to pay back `1605.200259069` USD worth of BAL to `0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5` on Optimism. Remaining BAL in this safe will stay put until future governance specifies otherwise. + + +# The List of Payouts + +The current CSV, that may be revised based on BAL pricing and does not include Optimsim victims, but does include the Beethoven Treasury is below. If you reported, please check this. If you will be unable to access $BAL sent to this address, please comment on this forum post or contact @gosuto or myself or any of the Maxis here or on [Discord](https://discord.balancer.fi). + +| receiver | amount (BAL) | +| ------------------------------------------ |------------------------| +| 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 615.680672270000000000 | +| 0x0412ed8438b5fae246606909ef8ba365f9103783 | 9990.995101387800 | +| 0x4281e53938c3b1c1d3e8afd21c02ce8512cdbc93 | 8942.947050640030 | +| 0xbb19053e031d9b2b364351b21a8ed3568b21399b | 5482.156847619760 | +| 0x6aee9dc09702dffab334f3f8e6f3f97c0e7261f4 | 3977.461595932680 | +| 0xda6b2a5e0c56542984d84a710f90eefd94ca1991 | 3864.324848292750 | +| 0x1c39babd4e0d7bff33bc27c6cc5a4f1d74c9f562 | 3602.251184687360 | +| 0x66c9e1e4fe518cebfe59c9de16e1c780ef5bacd3 | 3311.989335451880 | +| 0xe7a76d8513e55578c80e4b26fc61ee7d4906d4cd | 2900.083047791250 | +| 0x91b9e59614995e13a32e36440ac524825f7ae39e | 2853.241920880260 | +| 0x19ae63358648795aaf29e36733f04fcef683aa69 | 2403.861226346110 | +| 0xd519d5704b41511951c8cf9f65fee9ab9bef2611 | 2366.325069629450 | +| 0x9b71dbccd9ffb858899ef3244b09a5354b16048e | 2360.939491636720 | +| 0x74c3646adad7e196102d1fe35267adfd401a568b | 2323.821488996030 | +| 0xba5c2f2165ddd691f99e12a23ec75cc1519930b4 | 2320.708830947810 | +| 0x1cbad69d9cc22962a0a885921518c06ed2f04ffd | 2112.388067695380 | +| 0x1c8bcb6348c84122e67a50e513a1e183c0e6929a | 1884.150318266970 | +| 0x6724f3fbb16f542401bfc42c464ce91b6c31001e | 1728.214666145720 | +| 0xff052381092420b7f24cc97fded9c0c17b2cbbb9 | 1589.773016013600 | +| 0x242d7cd78cce454946f35f0a263b54fbe228852c | 1528.094110852380 | +| 0x6d5dda04760f0515dc131ff4df76a5188ffcdfcb | 1135.468489356770 | +| 0x6e33b41e44ca2be27e8f65b5231ae61a21044b4a | 1112.924127446140 | +| 0xf96cd1cf416b50b60358a17bc8593060148de422 | 1061.983717838710 | +| 0x0a29500ccc6af0b11c72d4e171d925eb0bb7ee15 | 1061.701293477720 | +| 0xd3238d8be92fd856146f53a8b6582bc88e887559 | 1060.813502101100 | +| 0xfe73b5a595405bac396c329c674571a7a3db528c | 1042.239302185270 | +| 0x438fd34eab0e80814a231a983d8bfaf507ae16d4 | 968.698971879056 | +| 0xc9cea7a3984cefd7a8d2a0405999cb62e8d206dc | 860.314807351138 | +| 0x0b177b7f10faeadd6eee6d2cc46d783f460566c8 | 820.182974078841 | +| 0xaa857ddce7b5b9cb17296c790cb40e8c11a3d4f0 | 797.803289831699 | +| 0xe68d7a6c421e2d220b5840116008c9abdbcf53b2 | 636.180089970680 | +| 0xd09ca75315e70bd3988a47958a0c6c5b30b830e1 | 614.709047199336 | +| 0x54c3c925b9d715af541b77f9817544bdc663345e | 363.682947565343 | +| 0x36cc7b13029b5dee4034745fb4f24034f3f2ffc6 | 345.292784038761 | +| 0xcaab2680d81df6b3e2ece585bb45cee97bf30cd7 | 302.655365607094 | +| 0xcb926f497763ea5cf993912a442431e6a91d5a64 | 38.666901111201 | diff --git a/BIPs/00batched/2024-W7/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W7/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..48c7d3940 --- /dev/null +++ b/BIPs/00batched/2024-W7/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0xc028EFDa059e040b42998c96FF7fe0b126FA87fA]" +} diff --git a/BIPs/00batched/2024-W7/combined-report.md b/BIPs/00batched/2024-W7/combined-report.md new file mode 100644 index 000000000..c281a7983 --- /dev/null +++ b/BIPs/00batched/2024-W7/combined-report.md @@ -0,0 +1,24 @@ + +## Mainnet DAO Multisig +[Tenderly](https://dashboard.tenderly.co/public/safe/safe-apps/simulator/f58926b5-3e94-43e8-b19d-c452e6fabcdd) +[Sign Nonce 236](https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) + +Also please sign Nonce 237, which is the linear pool hack refund done via a CSV airdrop [BIP](https://forum.balancer.fi/t/bip-544-linear-pool-hack-restituion/5541), [Sheet with calculations](https://docs.google.com/spreadsheets/d/1oAAqh2fJnR4EwnHYiKzuJoWZfy1GxmOPTkDj2SAR71I/edit#gid=1201725315) + + +``` ++--------------------------+--------------------------------------------------------------------+-------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=============+=====+============================================+=======+=======+==============+=========+============+========================================================================================================+ +| AAEntrypoint/killGauge() | 0x8d333f82e0693f53fa48c40d5d4547142e907e1d000200000000000000000437 | 80PAL-20OHM | N/A | 0xd758454bdf4df7ad85f7538dc9742648ef8e6d0a | 1.0% | 2.0% | L0 sidechain | BIP-528 | 2 | ['PAL(0xa7997F0eC9fa54E89659229fB26537B6A725b798)', 'OHM(0xf0cb2dc0db5e6c66B9a70Ac27B06b878da017028)'] | ++--------------------------+--------------------------------------------------------------------+-------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------+ +``` +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 1 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W7/tg_template.txt b/BIPs/00batched/2024-W7/tg_template.txt new file mode 100644 index 000000000..c6cd48325 --- /dev/null +++ b/BIPs/00batched/2024-W7/tg_template.txt @@ -0,0 +1,20 @@ +gm gm everyone. Gm all. Airdropping BAL this week to pay back USDC based losses, so would be nice to exec promptly this week. + +@alexanderlan @trentmc0 @garaigram @mouph @nanexcool @eboado @OxMaki @StefanGeorge @bonustrack @SausageDoge + +https://app.safe.global/transactions/queue?safe=eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f +Please sign Nonce 236 + +BIP-528: Kill old PAL/OHM gauge +BIPS 518&519: Fund beets for February + +Please also sign Nonce 237 + +This is a CSV airdrop of BAL to victims of the Linear Pool Hack + +Governance: https://forum.balancer.fi/t/bip-544-linear-pool-hack-restituion/5541 +Calculations: https://docs.google.com/spreadsheets/d/1oAAqh2fJnR4EwnHYiKzuJoWZfy1GxmOPTkDj2SAR71I/edit#gid=1201725315 + +See detailed report here: https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched/2024-W7 + + diff --git a/BIPs/00batched/2024-W8/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W8/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..2aa909480 --- /dev/null +++ b/BIPs/00batched/2024-W8/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,164 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCD19892916929F013930ed628547Cc1F439b230e", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W8/BIP-548.json", + "bip_number": "BIP-548" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf8A95653CC7ee59AfA2304DcC518c431a15C292C", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W8/BIP-547A.json", + "bip_number": "BIP-547" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W8/BIP-547A.json", + "bip_number": "BIP-547" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBE0967E7510604302b0F974E21A625D9f762B8bb", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W8/BIP-547A.json", + "bip_number": "BIP-547" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x253ED65fff980AEE7E94a0dC57BE304426048b35", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W8/BIP-546.json", + "bip_number": "BIP-546" + } + } + ] +} diff --git a/BIPs/00batched/2024-W8/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W8/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..e19d5fc52 --- /dev/null +++ b/BIPs/00batched/2024-W8/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,32 @@ +FILENAME: `BIPs/00batched/2024-W8/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `461d2f62ee9c0c210a338347d5dbf82ef3a750a8` +CHAIN(S): `arbitrum, mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b1e34d57-2a96-4e12-956e-72b7fd72ba97) +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+====================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | sDOLA-DOLA BSP | 0xCD19892916929F013930ed628547Cc1F439b230e | "sDOLA-DOLA BSP(0x264062CA46A1322c2E6464471764089E01F22F19)", | "0x0000000000000000000000000000000000000000", | BIP-548 | 0 | +| | pool_address: 0x264062CA46A1322c2E6464471764089E01F22F19 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "DOLA(0x865377367054516e17014CcdED1e7d814EDC9ce4)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sDOLA(0xb45ad160634c528Cc3D2926d9807104FA3157305)" | "0xD02011C6C8AEE310D0aA42AA98BFE9DCa547fCc0" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | rETH/wETH BPT | 0xf8A95653CC7ee59AfA2304DcC518c431a15C292C | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | BIP-547 | 1 | +| | pool_address: 0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069 | fee: 0.02, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "rETH/wETH BPT(0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | wstETH/sfrxETH | 0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8 | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-547 | 2 | +| | pool_address: 0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3 | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "sfrxETH(0x95aB45875cFFdba1E5f451B950bC2E42c0053f39)", | "0x2237a270E87F81A30a1980422185f806e4549346", | | | +| | | | | "wstETH/sfrxETH(0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | cbETH/rETH/wstETH | 0xBE0967E7510604302b0F974E21A625D9f762B8bb | "cbETH(0x1DEBd73E752bEaF79865Fd6446b0c970EaE7732f)", | "0xd983d5560129475bFC210332422FAdCb4EcD09B0", | BIP-547 | 3 | +| | pool_address: 0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "cbETH/rETH/wstETH(0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | weETH/ezETH/rswETH | 0x253ED65fff980AEE7E94a0dC57BE304426048b35 | "weETH/ezETH/rswETH(0x848a5564158d84b8A8fb68ab5D004Fae11619A54)", | "0x0000000000000000000000000000000000000000", | BIP-546 | 4 | +| | pool_address: 0x848a5564158d84b8A8fb68ab5D004Fae11619A54 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "ezETH(0xbf5495Efe5DB9ce00f80364C8B423567e58d2110)", | "0x387dBc0fB00b26fb085aa658527D5BE98302c84C", | | | +| | | | | "weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)", | "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee", | | | +| | | | | "rswETH(0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0)" | "0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/2024-W8/checkpointer_gauges_by_chain.json b/BIPs/00batched/2024-W8/checkpointer_gauges_by_chain.json new file mode 100644 index 000000000..7b8612c4d --- /dev/null +++ b/BIPs/00batched/2024-W8/checkpointer_gauges_by_chain.json @@ -0,0 +1,3 @@ +{ + "Arbitrum": "[0xf8A95653CC7ee59AfA2304DcC518c431a15C292C, 0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8, 0xBE0967E7510604302b0F974E21A625D9f762B8bb]" +} diff --git a/BIPs/00batched/2024-W9/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/2024-W9/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..36d7be249 --- /dev/null +++ b/BIPs/00batched/2024-W9/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x21693d09df79D4297A1ED9622Fb1D2E4Eeec5BC5", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W9/BIP-550.json", + "bip_number": "BIP-550" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCDA1B6704B108dF230d2a36da4C088C6afd6f335", + "gaugeType": "Ethereum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W9/BIP-549.json", + "bip_number": "BIP-549" + } + } + ] +} diff --git a/BIPs/00batched/2024-W9/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/2024-W9/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..decfb236f --- /dev/null +++ b/BIPs/00batched/2024-W9/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/00batched/2024-W9/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `f3af292e010de0ed2dad0458117d3837b29433c8` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/59a20488-e076-409e-ac4e-b35911f284b5) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x767cb26e38bebddfd857d4ad426d8ff5bc0fac2f00020000000000000000066e | ECLP-pxETH-frxETH | 0x21693d09df79D4297A1ED9622Fb1D2E4Eeec5BC5 | "pxETH(0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6)", | | BIP-550 | 0 | +| | pool_address: 0x767CB26E38beBddfd857d4Ad426d8ff5Bc0fAc2f | fee: 0.04, a-factor: N/A | Style: mainnet, cap: 100.0% | "frxETH(0x5E8422345238F34275888049021821E8E08CAa1f)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670 | InstETH/wstETH | 0xCDA1B6704B108dF230d2a36da4C088C6afd6f335 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | BIP-549 | 1 | +| | pool_address: 0xE3E0022d25194431a98e8bf5034D2617C96e1D44 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "InstETH(0x7FA768E035F956c41d6aeaa3Bd857e7E5141CAd5)", | "0x343281Bb5029C4b698fE736D800115ac64D5De39", | | | +| | | | | "InstETH/wstETH(0xE3E0022d25194431a98e8bf5034D2617C96e1D44)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.json b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.json new file mode 100644 index 000000000..8009720e7 --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-488-mainnet.json", + "bip_number": "BIP-488" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc186fA914353c44b2E33eBE05f21846F1048bEda", + "amount": "40000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-487.json", + "bip_number": "BIP-487" + } + }, + { + "to": "0xc186fA914353c44b2E33eBE05f21846F1048bEda", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "l1Token", + "type": "address", + "internalType": "address" + }, + { + "name": "l1TokenAmount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "addLiquidity", + "payable": true + }, + "contractInputsValues": { + "l1Token": "0xba100000625a3754423978a60c9317c58a424e3D", + "l1TokenAmount": "40000000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-487.json", + "bip_number": "BIP-487" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6f3b31296fd2457eba6dca3bed65ec79e06c1295", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.report.txt b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.report.txt new file mode 100644 index 000000000..026fb3c2c --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.report.txt @@ -0,0 +1,49 @@ +FILENAME: `BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e02963e2691f1565ad11b7ca2664c88818b3b8dd` +CHAIN(S): `mainnet` +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+========+=========+=========+============+===============================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9000000000000000000000555 | R-DAI-BLP | 468 | 0x6f3b31296fd2457eba6dca3bed65ec79e06c1295 | 10.0% | 100.0% | mainnet | BIP-485 | 3 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'R-DAI-BLP(0x20a61B948E33879ce7F23e535CC7BAA3BC66c5a9)', 'DAI(0x6B175474E89094C44Da98b954EedeAC495271d0F)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | N/A | 0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98 | 0.05% | 100.0% | mainnet | BIP-485 | 4 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x380aabe019ed2a9c2d632b51eddd30fd804d0fad000200000000000000000554 | 50R-50wstETH | N/A | 0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21 | 0.3% | 100.0% | mainnet | BIP-485 | 5 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e02963e2691f1565ad11b7ca2664c88818b3b8dd` +CHAIN(S): `mainnet` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f copy.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e02963e2691f1565ad11b7ca2664c88818b3b8dd` +CHAIN(S): `mainnet` +``` ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+=========================================================+=========+================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-487 | N/A | +| | | | "spender": [ | | | +| | | | "0xc186fA914353c44b2E33eBE05f21846F1048bEda (N/A) " | | | +| | | | ], | | | +| | | | "amount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| addLiquidity | 0xc186fA914353c44b2E33eBE05f21846F1048bEda (Not Found) | 0 | { | BIP-487 | N/A | +| | | | "l1Token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "l1TokenAmount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..08ce7b1a4 --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "132630000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-347.json", + "bip_number": "BIP-347" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "25400000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-347.json", + "bip_number": "BIP-347" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "55000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-314 july.json", + "bip_number": "BIP-314" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "93750000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-348.json", + "bip_number": "BIP-348" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8a88C1f44854C61a466aB55614F6A7778473418b", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-340B.json", + "bip_number": "BIP-340B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x883ac0fb54f0b07161f4c1d1132c7179cf4fd457dec4d2cf15af62bfe93d6402, 0xd1cab845861601849b43df194d75e16c676ee31cf20296f392e9d44dd3793ef3, 0xdcae01a1d3143e115458cda9b816ea278dd5daf08d9b6d3ec668632aa7b82dad, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0xa35b682012cf580f34e9cd41e4bf1c0210b6ebfc1a952fb582842c0e23b8c069, 0xb6f4ab951143da625c0c25d6eca1ce9e007e3139abfd9cfec3a301bad7238e15]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-343/mainnet.json", + "bip_number": "BIP-343" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report copy.txt b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report copy.txt new file mode 100644 index 000000000..6deed30d6 --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report copy.txt @@ -0,0 +1,49 @@ +File name: BIPs/00batched/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+========+=========+=========+============+===============================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9000000000000000000000555 | R-DAI-BLP | 490 | 0x6f3b31296fd2457eba6dca3bed65ec79e06c1295 | 10.0% | 100.0% | mainnet | BIP-485 | 3 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'R-DAI-BLP(0x20a61B948E33879ce7F23e535CC7BAA3BC66c5a9)', 'DAI(0x6B175474E89094C44Da98b954EedeAC495271d0F)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | N/A | 0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98 | 0.05% | 100.0% | mainnet | BIP-485 | 4 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x380aabe019ed2a9c2d632b51eddd30fd804d0fad000200000000000000000554 | 50R-50wstETH | N/A | 0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21 | 0.3% | 100.0% | mainnet | BIP-485 | 5 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +File name: BIPs/00batched/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W46/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+=========================================================+=========+================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-487 | N/A | +| | | | "spender": [ | | | +| | | | "0xc186fA914353c44b2E33eBE05f21846F1048bEda (N/A) " | | | +| | | | ], | | | +| | | | "amount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| addLiquidity | 0xc186fA914353c44b2E33eBE05f21846F1048bEda (Not Found) | 0 | { | BIP-487 | N/A | +| | | | "l1Token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "l1TokenAmount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..b11648115 --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,23 @@ +File name: BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `087fee858aee18aaeb7271cb8230e44cfd23dc15` +CHAIN(S): `mainnet` +``` ++-------------+---------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+----------+----------+ +| function | chain | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++-------------+---------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+----------+----------+ +| killGauge() | mainnet | 0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d0000000000000000000004f8 | B-vETH-STABLE | 0x793F2D5Cd52dfafe7a1a1B0B3988940Ba2d6a63D | 50 | 0x8a88C1f44854C61a466aB55614F6A7778473418b | 0.04% | 10.0% | mainnet | BIP-340B | 0 | ++-------------+---------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+----------+----------+ +``` +File name: BIPs/00batched/4269-W69/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `087fee858aee18aaeb7271cb8230e44cfd23dc15` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+----------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++----------+---------+--------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+----------+ +| transfer | mainnet | USDC | multisigs/maxi_ops | 132630.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x166f54F44F271407f24AA1BE415a730035637325 | 132630000000 | BIP-347 | 0 | +| transfer | mainnet | BAL | multisigs/maxi_ops | 25400.0 | 0xba100000625a3754423978a60c9317c58a424e3D | 0x166f54F44F271407f24AA1BE415a730035637325 | 25400000000000000000000 | BIP-347 | 1 | +| transfer | mainnet | USDC | multisigs/beets_treasury | 55000.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 55000000000 | BIP-314 | 0 | +| transfer | mainnet | USDC | multisigs/foundation | 93750.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x3B8910F378034FD6E103Df958863e5c684072693 | 93750000000 | BIP-348 | 0 | ++----------+---------+--------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+----------+ +``` diff --git a/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860 copy.json b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860 copy.json new file mode 100644 index 000000000..f3285bf95 --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860 copy.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2C3eF846FC3B5a4820b2D3462c9300E6d8845055", + "gaugeType": "Base" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-484.json", + "bip_number": "BIP-484" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCEB17D5C8ef8556ed0424A4bebC35a5d562d96E2", + "gaugeType": "Gnosis" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-483.json", + "bip_number": "BIP-483" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa1dDe34d48868F9E0901592f2A97e20F76004059", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-482.json", + "bip_number": "BIP-482" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860 copy.report.txt b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860 copy.report.txt new file mode 100644 index 000000000..67faa5522 --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860 copy.report.txt @@ -0,0 +1,20 @@ +FILENAME: `BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860 copy.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e02963e2691f1565ad11b7ca2664c88818b3b8dd` +CHAIN(S): `arbitrum, gnosis, base` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x990a0f03c3ee397cafda61cad277de18280751fd0002000000000000000000b6 | 50WETH-50TAG | 0x2C3eF846FC3B5a4820b2D3462c9300E6d8845055 | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-484 | 0 | +| | pool_address: 0x990A0f03C3Ee397cAfDa61caD277DE18280751FD | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "TAG(0x7905EA12CC81a215A5F1D0F46DF73a53E19E9264)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc9f00c3a713008ddf69b768d90d4978549bfdf9400000000000000000000006d | crvUSD/sDAI | 0xCEB17D5C8ef8556ed0424A4bebC35a5d562d96E2 | "crvUSD(0xaBEf652195F98A91E490f047A5006B71c85f058d)", | "0x0000000000000000000000000000000000000000", | BIP-483 | 1 | +| | pool_address: 0xc9F00C3a713008DDf69b768d90d4978549bFDF94 | fee: 0.02, a-factor: 500 | Style: L0 sidechain, cap: 2.0% | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)", | "0x89C80A4540A00b5270347E02e2E144c71da2EceD", | | | +| | | | | "crvUSD/sDAI(0xc9F00C3a713008DDf69b768d90d4978549bFDF94)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xd1882ca6a22f3df54cd675b300b815864de67b200001000000000000000004c9 | Savvy TriCrypto Pool | 0xa1dDe34d48868F9E0901592f2A97e20F76004059 | "svBTC(0xeEE18334c414A47FB886a7317E1885b2Bfb8c2A6)", | "0x0000000000000000000000000000000000000000", | BIP-482 | 2 | +| | pool_address: 0xd1882cA6A22f3Df54CD675b300B815864DE67B20 | fee: 0.05, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "svUSD(0xF202Ab403Cd7E90197ec0f010ee897E283037706)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "svETH(0xf7728582002ef82908c8242CF552E969BA863Ffa)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..3d10f332d --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-344.json", + "bip_number": "BIP-344" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-344.json", + "bip_number": "BIP-344" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-344.json", + "bip_number": "BIP-344" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-344.json", + "bip_number": "BIP-344" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-345.json", + "bip_number": "BIP-345" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x730A168cF6F501cf302b803FFc57FF3040f378Bf", + "gaugeType": "Optimism" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-346.json", + "bip_number": "BIP-346" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report copy.txt b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report copy.txt new file mode 100644 index 000000000..5093ce40d --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report copy.txt @@ -0,0 +1,20 @@ +File name: BIPs/00batched/2023-W46/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/lm (0xc38c5f97B34E175FFd35407fc91a937300E33860) +CHAIN(S): `arbitrum, gnosis, base` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x990a0f03c3ee397cafda61cad277de18280751fd0002000000000000000000b6 | 50WETH-50TAG | 0x2C3eF846FC3B5a4820b2D3462c9300E6d8845055 | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-484 | 0 | +| | pool_address: 0x990A0f03C3Ee397cAfDa61caD277DE18280751FD | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "TAG(0x7905EA12CC81a215A5F1D0F46DF73a53E19E9264)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc9f00c3a713008ddf69b768d90d4978549bfdf9400000000000000000000006d | crvUSD/sDAI | 0xCEB17D5C8ef8556ed0424A4bebC35a5d562d96E2 | "crvUSD(0xaBEf652195F98A91E490f047A5006B71c85f058d)", | "0x0000000000000000000000000000000000000000", | BIP-483 | 1 | +| | pool_address: 0xc9F00C3a713008DDf69b768d90d4978549bFDF94 | fee: 0.02, a-factor: 500 | Style: L0 sidechain, cap: 2.0% | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)", | "0x89C80A4540A00b5270347E02e2E144c71da2EceD", | | | +| | | | | "crvUSD/sDAI(0xc9F00C3a713008DDf69b768d90d4978549bFDF94)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xd1882ca6a22f3df54cd675b300b815864de67b200001000000000000000004c9 | Savvy TriCrypto Pool | 0xa1dDe34d48868F9E0901592f2A97e20F76004059 | "svBTC(0xeEE18334c414A47FB886a7317E1885b2Bfb8c2A6)", | "0x0000000000000000000000000000000000000000", | BIP-482 | 2 | +| | pool_address: 0xd1882cA6A22f3Df54CD675b300B815864DE67B20 | fee: 0.05, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "svUSD(0xF202Ab403Cd7E90197ec0f010ee897E283037706)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "svETH(0xf7728582002ef82908c8242CF552E969BA863Ffa)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..2e66fdb73 --- /dev/null +++ b/BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/00batched/4269-W69/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json +COMMIT: `087fee858aee18aaeb7271cb8230e44cfd23dc15` +CHAIN(S): `optimism` +``` ++----------+----------+--------------------------------------------------------------------+------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| addGauge | optimism | 0x39965c9dab5448482cf7e002f583c812ceb53046000100000000000000000003 | BPT-ROAD | N/A | 0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d | 0.5% | 100.0% | L0 sidechain | BIP-344 | 0 | +| addGauge | optimism | 0x1d95129c18a8c91c464111fdf7d0eb241b37a9850002000000000000000000c1 | BPT-RESERVE | N/A | 0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad | 0.05% | 2.0% | L0 sidechain | BIP-344 | 1 | +| addGauge | optimism | 0xd20f6f1d8a675cdca155cb07b5dc9042c467153f0002000000000000000000bc | BPT-BOATH | N/A | 0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73 | 0.5% | 2.0% | L0 sidechain | BIP-344 | 2 | +| addGauge | optimism | 0x098f32d98d0d64dba199fc1923d3bf4192e787190001000000000000000000d2 | bb-rf-SOTRI | N/A | 0xdc08146530DD9910F8ab4D0aD2C184f87e903540 | 0.4% | 100.0% | L0 sidechain | BIP-344 | 3 | +| addGauge | optimism | 0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb200020000000000000000008b | BPT-WSTETH-WETH | 500 | 0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87 | 0.01% | 100.0% | L0 sidechain | BIP-345 | 0 | +| addGauge | optimism | 0x7ca75bdea9dede97f8b13c6641b768650cb837820002000000000000000000d5 | ECLP-wstETH-WETH | N/A | 0x730A168cF6F501cf302b803FFc57FF3040f378Bf | 0.01% | 10.0% | L0 sidechain | BIP-346 | 0 | ++----------+----------+--------------------------------------------------------------------+------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/00batched/4269-W69/1-anySafeWillDo.json b/BIPs/00batched/4269-W69/1-anySafeWillDo.json new file mode 100644 index 000000000..27565d268 --- /dev/null +++ b/BIPs/00batched/4269-W69/1-anySafeWillDo.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Optimism", + "gauges": [ + "0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d", + "0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad", + "0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73", + "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87", + "0x730A168cF6F501cf302b803FFc57FF3040f378Bf" + ] + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00batched/4269-W69/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..1ded516f5 --- /dev/null +++ b/BIPs/00batched/4269-W69/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa, 0x94d058c565b594a202b88b57a685b093db0fd3406b926f2033a3443a6d8e1b50, 0x53a0625529c519f2e4a706b874baf30797466df455c9d39cd3ee19e6fe5bc6e2, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0xe4efb851c410e171273aee46d6939a91154b536e375e6fe59c09a4e617072339, 0xf65bca6198c80a6fc89409c116db12c0427a0b571cd0d2ee5dd614145d006810]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-343/optimism.json", + "bip_number": "BIP-343" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00batched/4269-W69/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..6181f3f9c --- /dev/null +++ b/BIPs/00batched/4269-W69/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x29596d20dcc54c557d94ae57af84f08715a588be1d756198eec61a3dc368b6c1, 0x9023a208ea63197b4da99dc4a096d44fb3152b807b6e4d37f15239d9fff8beb2, 0x478e7f53087deab85ae5870218c02821a6bafa4a75984797ac58cdfd513a385b, 0x4b0cfb0e3afde1903ef88f0072b490a0d78f1027a165371b1b4732daa84a9559, 0x338ff79f4b040df80f9cbc5217e904e2c8dbb7fb58beb6100c837ffa25ab4197]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-343/gnosis.json", + "bip_number": "BIP-343" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa copy.json b/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa copy.json new file mode 100644 index 000000000..b5e327ea8 --- /dev/null +++ b/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa copy.json @@ -0,0 +1,180 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "roles", + "type": "bytes32[]", + "internalType": "bytes32[]" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c,0x873caa0fd93d3c1661f94fc8bdbe1c379f7fcda27086da0c26ec1f38bead59c1,0x2175568c6322118c9ae102adda930e3aee7b000bdf4cd0f0a0ee991c8c039d7e]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-add-roles-zkevm.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0060ad8f81979d2e64cb0d53e650dee47343f112c476effa7f1617731de77913", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-add-roles-zkevm.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "roles", + "type": "bytes32[]", + "internalType": "bytes32[]" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbfd69d98e6966ce935b9eba83ae8f056ed06f6406b875e0cf728e3d9c2c39961,0x2cca85787a500e04397f218a9851b4521750e6dc26edfdb062bb37f2d79b8de7,0x5a443c2e20bbd9246c672bd23a142a1c540ad1190fd7e5148866e4356d60ab29]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-add-roles-zkevm.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-disable-old-factory.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disable", + "payable": false + }, + "contractInputsValues": null, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-disable-old-factory.json", + "bip_number": "BIP-486" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-486-disable-old-factory.json", + "bip_number": "BIP-486" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa copy.report.txt b/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa copy.report.txt new file mode 100644 index 000000000..50c02d141 --- /dev/null +++ b/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa copy.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa copy.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `e02963e2691f1565ad11b7ca2664c88818b3b8dd` +CHAIN(S): `zkevm` +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | BIP-486 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/disableRecoveryMode() | 0x873caa0fd93d3c1661f94fc8bdbe1c379f7fcda27086da0c26ec1f38bead59c1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x2175568c6322118c9ae102adda930e3aee7b000bdf4cd0f0a0ee991c8c039d7e | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0x0060ad8f81979d2e64cb0d53e650dee47343f112c476effa7f1617731de77913 | BIP-486 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0xbfd69d98e6966ce935b9eba83ae8f056ed06f6406b875e0cf728e3d9c2c39961 | BIP-486 | 2 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x2cca85787a500e04397f218a9851b4521750e6dc26edfdb062bb37f2d79b8de7 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0x5a443c2e20bbd9246c672bd23a142a1c540ad1190fd7e5148866e4356d60ab29 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | 20230711-zkevm-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | 20230711-zkevm-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 5 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa copy.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `e02963e2691f1565ad11b7ca2664c88818b3b8dd` +CHAIN(S): `zkevm` +``` ++-----------+-------------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+===================================================================================================================+=========+==========+==============+============+ +| disable | 0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288 (20230711-zkevm-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-486 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..546d48447 --- /dev/null +++ b/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,482 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd21198f97672ee6118c9598a1b4c2053515bf28a40c4df5cf02365c4ff3d5ba7, 0x5610aeafaa3f5c4ef9b9b45ee9c0810b2f7bd64b7b504f19d1a8a3bde062a966]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-343/zkevm.json", + "bip_number": "BIP-343" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12, 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922, 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846, 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc, 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd, 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/zkevm.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/zkevm.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779, 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b, 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7, 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f, 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae, 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc, 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93, 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439, 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d, 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168, 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2, 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9, 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/zkevm.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x4678731DC41142A902a114aC5B2F77b63f4a259D" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/zkevm.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0x1802953277FD955f9a254B80Aa0582f193cF1d77" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/zkevm.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/zkevm.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8]", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/zkevm.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/BIP-303B.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0x475D18169BE8a89357A9ee3Ab00ca386d20fA229", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/BIP-303B.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/BIP-303B.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/BIP-303C.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x8df317a729fcaA260306d7de28888932cb579b88" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/BIP-303C.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/BIP-303C.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/BIP-303A.json", + "bip_number": "BIP-303" + } + }, + { + "to": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-303/BIP-303A.json", + "bip_number": "BIP-303" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report copy.txt b/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report copy.txt new file mode 100644 index 000000000..2f161b196 --- /dev/null +++ b/BIPs/00batched/4269-W69/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report copy.txt @@ -0,0 +1,34 @@ +File name: BIPs/00batched/2023-W46/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/dao (0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +CHAIN(S): `zkevm` +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | BIP-486 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/disableRecoveryMode() | 0x873caa0fd93d3c1661f94fc8bdbe1c379f7fcda27086da0c26ec1f38bead59c1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x2175568c6322118c9ae102adda930e3aee7b000bdf4cd0f0a0ee991c8c039d7e | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0x0060ad8f81979d2e64cb0d53e650dee47343f112c476effa7f1617731de77913 | BIP-486 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0xbfd69d98e6966ce935b9eba83ae8f056ed06f6406b875e0cf728e3d9c2c39961 | BIP-486 | 2 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x2cca85787a500e04397f218a9851b4521750e6dc26edfdb062bb37f2d79b8de7 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0x5a443c2e20bbd9246c672bd23a142a1c540ad1190fd7e5148866e4356d60ab29 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 5 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/00batched/2023-W46/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/dao (0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +CHAIN(S): `1101` +``` ++-----------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==========+==============+============+ +| disable | 0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288 (Not Found) | 0 | "N/A" | BIP-486 | N/A | ++-----------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00batched/4269-W69/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..7994ac281 --- /dev/null +++ b/BIPs/00batched/4269-W69/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x70d81f1b0f71c8c3037ee34b69ad6980888bab8b2e32959f8c6aac274a7f10cb, 0x70ea65bcadbec99c10058d43f9acdc9a5ad05cde666b7d0065818feb763e7cb2, 0x2bd529cf8062fa0ff07c2054e5dc654a104415c2ae171092c450a88c9ff098a9, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0x3f743640e5e338ede5771590dab93e6860616f4318ca6d5a578c84be2c329844, 0xdb63b0c040446fcfa9503943eff986bc051fb5e7cb8f83a8bcebb7115c535b60]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-343/polygon.json", + "bip_number": "BIP-343" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00batched/4269-W69/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..575a1653a --- /dev/null +++ b/BIPs/00batched/4269-W69/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f9dc3da8a6332271be3fccd1a107fd3117a1a988666ff673241edc8c12279ac, 0x0fb35afbdd369d25e1e13986af342dd66f4af22e88628aded66fc015fddee9e6, 0x6849898f08c7f64552f27ae1a4dfcc908200c4d6901ee3945a8c62dbf9cefb8f, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0x0585ff33fe95b333f37198850856b5b788891cbc6fd99c447b8d7625c94a33b9, 0x2cdef929bdc29c7b9ca832b8a8f62ce592fee150df38b736a8cab1d2918fc179]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-343/arbitrum.json", + "bip_number": "BIP-343" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 copy.json b/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 copy.json new file mode 100644 index 000000000..441d164e9 --- /dev/null +++ b/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 copy.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-488-avax.json", + "bip_number": "BIP-488" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 copy.report.txt b/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 copy.report.txt new file mode 100644 index 000000000..1964739c1 --- /dev/null +++ b/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 copy.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 copy.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `e02963e2691f1565ad11b7ca2664c88818b3b8dd` +CHAIN(S): `avalanche` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..df6b184b5 --- /dev/null +++ b/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa, 0x57a99f3ed4c936dc3acc397e914c860702345856a9cca3a5be4c01fefa6a7674, 0xe41196603a4830aa78064fa1ce052e42607bc0a162707e1ce030e7fd9757f0b1]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/4269-W69/test/BIP-343/avalanche.json", + "bip_number": "BIP-343" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report copy.txt b/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report copy.txt new file mode 100644 index 000000000..c08863c1c --- /dev/null +++ b/BIPs/00batched/4269-W69/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report copy.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W46/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/dao (0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +CHAIN(S): `avalanche` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462 copy.json b/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462 copy.json new file mode 100644 index 000000000..f5d0b139a --- /dev/null +++ b/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462 copy.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-488-base.json", + "bip_number": "BIP-488" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462 copy.report.txt b/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462 copy.report.txt new file mode 100644 index 000000000..007332442 --- /dev/null +++ b/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462 copy.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462 copy.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `e02963e2691f1565ad11b7ca2664c88818b3b8dd` +CHAIN(S): `base` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report copy.txt b/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report copy.txt new file mode 100644 index 000000000..c0af0f4dd --- /dev/null +++ b/BIPs/00batched/4269-W69/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report copy.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/2023-W46/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json +COMMIT: `c92464c1312ebf4522501db4817db8f7ae528c9d` +MERGED PAYLOAD: Chain:base (8453), Multisig: multisigs/dao (0xC40DCFB13651e64C8551007aa57F9260827B6462) +CHAIN(S): `base` +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00batched/4269-W69/noreporttest.json b/BIPs/00batched/4269-W69/noreporttest.json new file mode 100644 index 000000000..8009720e7 --- /dev/null +++ b/BIPs/00batched/4269-W69/noreporttest.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-488-mainnet.json", + "bip_number": "BIP-488" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc186fA914353c44b2E33eBE05f21846F1048bEda", + "amount": "40000000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-487.json", + "bip_number": "BIP-487" + } + }, + { + "to": "0xc186fA914353c44b2E33eBE05f21846F1048bEda", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "l1Token", + "type": "address", + "internalType": "address" + }, + { + "name": "l1TokenAmount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "addLiquidity", + "payable": true + }, + "contractInputsValues": { + "l1Token": "0xba100000625a3754423978a60c9317c58a424e3D", + "l1TokenAmount": "40000000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-487.json", + "bip_number": "BIP-487" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6f3b31296fd2457eba6dca3bed65ec79e06c1295", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W46/BIP-485.json", + "bip_number": "BIP-485" + } + } + ] +} diff --git a/BIPs/00batched/4269-W69/noreporttest.report.txt b/BIPs/00batched/4269-W69/noreporttest.report.txt new file mode 100644 index 000000000..267efd7c4 --- /dev/null +++ b/BIPs/00batched/4269-W69/noreporttest.report.txt @@ -0,0 +1,66 @@ +FILENAME: `BIPs/00batched/4269-W69/noreporttest.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/3f2287e0-bbf6-4b8a-ac8b-0984edcda5fb) +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+========+=========+=========+============+===============================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9000000000000000000000555 | R-DAI-BLP | 228 | 0x6f3b31296fd2457eba6dca3bed65ec79e06c1295 | 10.0% | 100.0% | mainnet | BIP-485 | 3 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'R-DAI-BLP(0x20a61B948E33879ce7F23e535CC7BAA3BC66c5a9)', 'DAI(0x6B175474E89094C44Da98b954EedeAC495271d0F)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | N/A | 0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98 | 0.05% | 100.0% | mainnet | BIP-485 | 4 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x380aabe019ed2a9c2d632b51eddd30fd804d0fad000200000000000000000554 | 50R-50wstETH | N/A | 0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21 | 0.3% | 100.0% | mainnet | BIP-485 | 5 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/00batched/4269-W69/noreporttest.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/391ce8e1-cf60-426b-bc33-f7cc334a9055) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/00batched/4269-W69/noreporttest.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/dccc905d-9366-4145-9c61-4b715266b4dd) +``` ++--------------+---------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+=========================================================+=========+=============================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-487 | N/A | +| | | | "spender": [ | | | +| | | | "0xc186fA914353c44b2E33eBE05f21846F1048bEda (N/A) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:40000000000000000000000, 18 decimals:40000.0, 6 decimals: 4e+16" | | | +| | | | ], | | | +| | | | [ | | | +| | | | 40000000000000000000000 | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| addLiquidity | 0xc186fA914353c44b2E33eBE05f21846F1048bEda (Not Found) | 0 | { | BIP-487 | N/A | +| | | | "l1Token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "l1TokenAmount": [ | | | +| | | | [ | | | +| | | | "raw:40000000000000000000000, 18 decimals:40000.0, 6 decimals: 4e+16" | | | +| | | | ], | | | +| | | | [ | | | +| | | | 40000000000000000000000 | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00batched/add-v3-pools/add_roles_arbitrum.json b/BIPs/00batched/add-v3-pools/add_roles_arbitrum.json new file mode 100644 index 000000000..a76640dd0 --- /dev/null +++ b/BIPs/00batched/add-v3-pools/add_roles_arbitrum.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f476d79932a277fc0be18747fc314f1db33802d38a900d529db018c01de81a4, 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c, 0xbbb29600025604666f66b68dff00546068c5be9c0a5a0fbe825550f6c3519c27, 0xa23cd4468cbe8403f6163d16350699bab6b407aee02d6a29755b0cffa52dd023, 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e, 0xcf96d782d1bc8dd12869fb51374544f9c037fd559b8811972f35756f204c6012]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x92253d002d63e0211f775527924e2891f18bb060ff2ab3be19c6b242bafa5fec, 0xc383be2c6e87a9b18ae919e677f011279a8d98346dbcd5cb326053f5f873b753, 0x79f0094a409615c52fb7491ca130145e7ec31efb578af4019db59e6636c07ebf, 0xfaede3ef05348eea541571b87b87560ae56292ed04fd5e08fcced4d41916dfb1]", + "account": "0x7c68c42De679ffB0f16216154C996C354cF1161B" + } + } + ] +} diff --git a/BIPs/00batched/add-v3-pools/add_roles_mainnet.json b/BIPs/00batched/add-v3-pools/add_roles_mainnet.json new file mode 100644 index 000000000..7ec77799c --- /dev/null +++ b/BIPs/00batched/add-v3-pools/add_roles_mainnet.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0df3339673f8356288d97461676bb443e5def15e6d6e8321add702ef77075160, 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7, 0x33b06cb79113c1c80d5db0ad41675a5368e7ec0ba8a2fd4d6328524a984d465b, 0x3fad985e82b2b68120f2bbe4c05b3bcbb41b29519eaa63fb25cb25833043f1e8, 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f, 0xa4d7ff702c3f830a7ce937a195bfb05c081c0c36a462ed72bfbf721bc5a3f462]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831, 0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae]", + "account": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe560c24a44460de963ea8e6716dd635144e8c4991c131b63dd9e956b1f1415b8, 0x36e63b457adcc8834537417d275eec404708707f4fbe63097f15e865dc3e2847]", + "account": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6" + } + } + ] +} diff --git a/BIPs/00batched/add-v3-pools/add_roles_optimism.json b/BIPs/00batched/add-v3-pools/add_roles_optimism.json new file mode 100644 index 000000000..2795feadd --- /dev/null +++ b/BIPs/00batched/add-v3-pools/add_roles_optimism.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3e97e0a2e6079577d465a9e3898ed6097ed0c661cb291f58991b80599b0e5558, 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748, 0xae409b1e306416a87e8d92b1a08f860798e5e882c8785f185db2e2a310793aa1, 0xe59ccea4d4a98c33b7c0b3c05a3d65ff930273fa5ee03855a3104befc6d1d362, 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec, 0x25ec546c5f4dfc2fe31ba04f5cf65a8098b35111075a5fd114ea3475e4254ac6]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0173d9c9c500f721f528e83cd89297298d530857b46dc4adb8fe329905f4f773, 0xe9d4a41f6bb25c8862c0c2c860268861488f862a3702115587343e3c3d6ea29a, 0xe0788d96bd3d5c93d8ca894a720bf55835562c15aea8eba5cfb15c2c73bd5652, 0x063ab569eba76f955edb79b6f9d647bf9772872dc688a6449689ad4d2d5b5ca3]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/00batched/add-v3-pools/add_roles_polygon.json b/BIPs/00batched/add-v3-pools/add_roles_polygon.json new file mode 100644 index 000000000..bb8af38fa --- /dev/null +++ b/BIPs/00batched/add-v3-pools/add_roles_polygon.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x18be448c0c01ad4576befd4f6bce2abf1214dc50697f946a487657e3c3c66947, 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9, 0xb251963ecd27d2fe81c17cdd47c025b03bdc56bd9138b8556a747d1112d8c01b, 0x9592bbf1ef6b5256ed5698e4cf4610375a5e984fa05ddb8a9c6f2e411f2d0d1e, 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d, 0xf3018734e770ecf7082ee926a91cef5bd218b62d081217bf47f5a67ea7a1e80e]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x22f3e304ab030be776b205711d7ba79f146b07726b10c5e9d29c24dacc09c140, 0xf6c13c09ddba8f114fe2b23ff442766dca7a9bf303adfde386f20ac38c749733, 0x1eeda74ac7741bce16788e080c79c907c79419e41281fa442cc39f8d148a8773, 0xe202c405a4ff60ae0c38dea8bbb722ee570a1c89487598e7fc4ede5248a527c7]", + "account": "0x7c68c42De679ffB0f16216154C996C354cF1161B" + } + } + ] +} diff --git a/BIPs/00batched/add-v3-pools/change_list_address_sorted.md b/BIPs/00batched/add-v3-pools/change_list_address_sorted.md new file mode 100644 index 000000000..d1cee0f5b --- /dev/null +++ b/BIPs/00batched/add-v3-pools/change_list_address_sorted.md @@ -0,0 +1,42 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:------------------|:-------------------------------------------| +| 20230206-weighted-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0x92253d002d63e0211f775527924e2891f18bb060ff2ab3be19c6b242bafa5fec | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0xc383be2c6e87a9b18ae919e677f011279a8d98346dbcd5cb326053f5f873b753 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x79f0094a409615c52fb7491ca130145e7ec31efb578af4019db59e6636c07ebf | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | stopAmplificationParameterUpdate() | 0xfaede3ef05348eea541571b87b87560ae56292ed04fd5e08fcced4d41916dfb1 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-weighted-pool-v3 | arbitrum | disable() | 0x3f476d79932a277fc0be18747fc314f1db33802d38a900d529db018c01de81a4 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | enableRecoveryMode() | 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | pause() | 0xbbb29600025604666f66b68dff00546068c5be9c0a5a0fbe825550f6c3519c27 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | disable() | 0xa23cd4468cbe8403f6163d16350699bab6b407aee02d6a29755b0cffa52dd023 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | enableRecoveryMode() | 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | pause() | 0xcf96d782d1bc8dd12869fb51374544f9c037fd559b8811972f35756f204c6012 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | mainnet | disable() | 0x0df3339673f8356288d97461676bb443e5def15e6d6e8321add702ef77075160 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | enableRecoveryMode() | 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | pause() | 0x33b06cb79113c1c80d5db0ad41675a5368e7ec0ba8a2fd4d6328524a984d465b | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | disable() | 0x3fad985e82b2b68120f2bbe4c05b3bcbb41b29519eaa63fb25cb25833043f1e8 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | enableRecoveryMode() | 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | pause() | 0xa4d7ff702c3f830a7ce937a195bfb05c081c0c36a462ed72bfbf721bc5a3f462 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-composable-stable-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-composable-stable-pool-v3 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0xe560c24a44460de963ea8e6716dd635144e8c4991c131b63dd9e956b1f1415b8 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-composable-stable-pool-v3 | mainnet | stopAmplificationParameterUpdate() | 0x36e63b457adcc8834537417d275eec404708707f4fbe63097f15e865dc3e2847 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-weighted-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0x0173d9c9c500f721f528e83cd89297298d530857b46dc4adb8fe329905f4f773 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0xe9d4a41f6bb25c8862c0c2c860268861488f862a3702115587343e3c3d6ea29a | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0xe0788d96bd3d5c93d8ca894a720bf55835562c15aea8eba5cfb15c2c73bd5652 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | stopAmplificationParameterUpdate() | 0x063ab569eba76f955edb79b6f9d647bf9772872dc688a6449689ad4d2d5b5ca3 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-weighted-pool-v3 | optimism | disable() | 0x3e97e0a2e6079577d465a9e3898ed6097ed0c661cb291f58991b80599b0e5558 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | enableRecoveryMode() | 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | pause() | 0xae409b1e306416a87e8d92b1a08f860798e5e882c8785f185db2e2a310793aa1 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | disable() | 0xe59ccea4d4a98c33b7c0b3c05a3d65ff930273fa5ee03855a3104befc6d1d362 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | enableRecoveryMode() | 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | pause() | 0x25ec546c5f4dfc2fe31ba04f5cf65a8098b35111075a5fd114ea3475e4254ac6 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | polygon | disable() | 0x18be448c0c01ad4576befd4f6bce2abf1214dc50697f946a487657e3c3c66947 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | enableRecoveryMode() | 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | pause() | 0xb251963ecd27d2fe81c17cdd47c025b03bdc56bd9138b8556a747d1112d8c01b | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | disable() | 0x9592bbf1ef6b5256ed5698e4cf4610375a5e984fa05ddb8a9c6f2e411f2d0d1e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | enableRecoveryMode() | 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | pause() | 0xf3018734e770ecf7082ee926a91cef5bd218b62d081217bf47f5a67ea7a1e80e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0x22f3e304ab030be776b205711d7ba79f146b07726b10c5e9d29c24dacc09c140 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0xf6c13c09ddba8f114fe2b23ff442766dca7a9bf303adfde386f20ac38c749733 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x1eeda74ac7741bce16788e080c79c907c79419e41281fa442cc39f8d148a8773 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | stopAmplificationParameterUpdate() | 0xe202c405a4ff60ae0c38dea8bbb722ee570a1c89487598e7fc4ede5248a527c7 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | \ No newline at end of file diff --git a/BIPs/00batched/add-v3-pools/change_list_deployment_sorted.md b/BIPs/00batched/add-v3-pools/change_list_deployment_sorted.md new file mode 100644 index 000000000..bdcdcf55e --- /dev/null +++ b/BIPs/00batched/add-v3-pools/change_list_deployment_sorted.md @@ -0,0 +1,42 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:------------------|:-------------------------------------------| +| 20230206-composable-stable-pool-v3 | arbitrum | disable() | 0xa23cd4468cbe8403f6163d16350699bab6b407aee02d6a29755b0cffa52dd023 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | enableRecoveryMode() | 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | pause() | 0xcf96d782d1bc8dd12869fb51374544f9c037fd559b8811972f35756f204c6012 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0xc383be2c6e87a9b18ae919e677f011279a8d98346dbcd5cb326053f5f873b753 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x79f0094a409615c52fb7491ca130145e7ec31efb578af4019db59e6636c07ebf | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | stopAmplificationParameterUpdate() | 0xfaede3ef05348eea541571b87b87560ae56292ed04fd5e08fcced4d41916dfb1 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-weighted-pool-v3 | arbitrum | disable() | 0x3f476d79932a277fc0be18747fc314f1db33802d38a900d529db018c01de81a4 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | enableRecoveryMode() | 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | pause() | 0xbbb29600025604666f66b68dff00546068c5be9c0a5a0fbe825550f6c3519c27 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0x92253d002d63e0211f775527924e2891f18bb060ff2ab3be19c6b242bafa5fec | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | mainnet | disable() | 0x3fad985e82b2b68120f2bbe4c05b3bcbb41b29519eaa63fb25cb25833043f1e8 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | enableRecoveryMode() | 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | pause() | 0xa4d7ff702c3f830a7ce937a195bfb05c081c0c36a462ed72bfbf721bc5a3f462 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-composable-stable-pool-v3 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0xe560c24a44460de963ea8e6716dd635144e8c4991c131b63dd9e956b1f1415b8 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-composable-stable-pool-v3 | mainnet | stopAmplificationParameterUpdate() | 0x36e63b457adcc8834537417d275eec404708707f4fbe63097f15e865dc3e2847 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-weighted-pool-v3 | mainnet | disable() | 0x0df3339673f8356288d97461676bb443e5def15e6d6e8321add702ef77075160 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | enableRecoveryMode() | 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | pause() | 0x33b06cb79113c1c80d5db0ad41675a5368e7ec0ba8a2fd4d6328524a984d465b | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-composable-stable-pool-v3 | optimism | disable() | 0xe59ccea4d4a98c33b7c0b3c05a3d65ff930273fa5ee03855a3104befc6d1d362 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | enableRecoveryMode() | 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | pause() | 0x25ec546c5f4dfc2fe31ba04f5cf65a8098b35111075a5fd114ea3475e4254ac6 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0xe9d4a41f6bb25c8862c0c2c860268861488f862a3702115587343e3c3d6ea29a | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0xe0788d96bd3d5c93d8ca894a720bf55835562c15aea8eba5cfb15c2c73bd5652 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | stopAmplificationParameterUpdate() | 0x063ab569eba76f955edb79b6f9d647bf9772872dc688a6449689ad4d2d5b5ca3 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-weighted-pool-v3 | optimism | disable() | 0x3e97e0a2e6079577d465a9e3898ed6097ed0c661cb291f58991b80599b0e5558 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | enableRecoveryMode() | 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | pause() | 0xae409b1e306416a87e8d92b1a08f860798e5e882c8785f185db2e2a310793aa1 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0x0173d9c9c500f721f528e83cd89297298d530857b46dc4adb8fe329905f4f773 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | polygon | disable() | 0x9592bbf1ef6b5256ed5698e4cf4610375a5e984fa05ddb8a9c6f2e411f2d0d1e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | enableRecoveryMode() | 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | pause() | 0xf3018734e770ecf7082ee926a91cef5bd218b62d081217bf47f5a67ea7a1e80e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0xf6c13c09ddba8f114fe2b23ff442766dca7a9bf303adfde386f20ac38c749733 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x1eeda74ac7741bce16788e080c79c907c79419e41281fa442cc39f8d148a8773 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | stopAmplificationParameterUpdate() | 0xe202c405a4ff60ae0c38dea8bbb722ee570a1c89487598e7fc4ede5248a527c7 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-weighted-pool-v3 | polygon | disable() | 0x18be448c0c01ad4576befd4f6bce2abf1214dc50697f946a487657e3c3c66947 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | enableRecoveryMode() | 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | pause() | 0xb251963ecd27d2fe81c17cdd47c025b03bdc56bd9138b8556a747d1112d8c01b | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0x22f3e304ab030be776b205711d7ba79f146b07726b10c5e9d29c24dacc09c140 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | \ No newline at end of file diff --git a/BIPs/00batched/authorizer/00_input_example.json b/BIPs/00batched/authorizer/00_input_example.json new file mode 100644 index 000000000..7926d6f7f --- /dev/null +++ b/BIPs/00batched/authorizer/00_input_example.json @@ -0,0 +1,31 @@ +[ + { + "deployments": [ + "20220908-weighted-pool-v2", + "20221122-composable-stable-pool-v2" + ], + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "disable()": "emergency" + } + }, + { + "deployments": [ + "20230206-weighted-pool-v3", + "20230206-composable-stable-pool-v3" + ], + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": "feeManager", + "startAmplificationParameterUpdate(uint256,uint256)": "feeManager", + "stopAmplificationParameterUpdate()": "feeManager", + "pause()": "emergency", + "disable()": "emergency", + "enableRecoveryMode()": "emergency" + } + } +] diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04.json b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04.json new file mode 100644 index 000000000..0616fa573 --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04.json @@ -0,0 +1,162 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "/pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + }, + "deployments": [ + "20230206-weighted-pool-v4", + "20230206-composable-stable-pool-v4", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2", + "20230410-silo-linear-pool-v2" + ] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + }, + "deployments": ["20210418-vault"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "base": 8453, + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114 + }, + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/blabs_ops"], + "addPoolFactory(address)": ["multisigs/blabs_ops"] + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + }, + "deployments": ["20230223-protocol-id-registry"] + } +] diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_address_sorted.md b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_address_sorted.md new file mode 100644 index 000000000..8852e6947 --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_address_sorted.md @@ -0,0 +1,49 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:--------------------|:-------------------------------------------| +| 20220725-protocol-fee-percentages-provider | arbitrum | setFeeTypePercentage(uint256,uint256) | 0xa0ace5c52c8f0974c521244ccf49a5a7166a9a6fcef623779b42d55fb2c5fbbe | multisigs/dao | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 | +| 20230409-erc4626-linear-pool-v4 | arbitrum | setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | arbitrum | setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | arbitrum | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20220517-protocol-fee-withdrawer | arbitrum | withdrawCollectedFees(address[],uint256[],address) | 0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | arbitrum | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | arbitrum | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | arbitrum | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20210418-vault | arbitrum | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20221123-pool-recovery-helper | base | removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20221123-pool-recovery-helper | base | addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | gnosis | setTargets(uint256,uint256) | 0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230410-aave-linear-pool-v5 | gnosis | enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230409-erc4626-linear-pool-v4 | mainnet | enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | mainnet | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20210418-vault | mainnet | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xd41187a1d52918991b8e886e7e02dadf9f3899ff8134eaa5aa4e8f6a81dec3ab | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | mainnet | setTargets(uint256,uint256) | 0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-gearbox-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x0724bafdb03f8d97bf0372ebba73684e8da490a627cc54840323b96c0f8a54d7 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-gearbox-linear-pool-v2 | mainnet | setTargets(uint256,uint256) | 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x479aa48247a9811620c0d80d6cb740bbc8d9424523952ff24ff7e07f3d10f955 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | mainnet | setTargets(uint256,uint256) | 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | mainnet | setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | mainnet | setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-silo-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0xf7939f1289f961848c0a92aaeff509b21549a13102c87a1c7925a11395ae7d91 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-silo-linear-pool-v2 | mainnet | setTargets(uint256,uint256) | 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20220517-protocol-fee-withdrawer | mainnet | withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | optimism | setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-yearn-linear-pool-v2 | optimism | setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230410-aave-linear-pool-v5 | optimism | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20220517-protocol-fee-withdrawer | optimism | withdrawCollectedFees(address[],uint256[],address) | 0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6 | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-erc4626-linear-pool-v4 | optimism | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | optimism | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | optimism | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20210418-vault | optimism | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | polygon | enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | polygon | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | polygon | enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20210418-vault | polygon | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | polygon | setTargets(uint256,uint256) | 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | polygon | setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | polygon | setTargets(uint256,uint256) | 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20220517-protocol-fee-withdrawer | polygon | withdrawCollectedFees(address[],uint256[],address) | 0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20220725-protocol-fee-percentages-provider | polygon | setFeeTypePercentage(uint256,uint256) | 0x716d6b6afc33d645e9c2c78937fc28afcca38a4ef927fb307679e9709b73214e | multisigs/dao | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 | \ No newline at end of file diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_arbitrum.json b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_arbitrum.json new file mode 100644 index 000000000..fb0c81dea --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_arbitrum.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8, 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a, 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf, 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e, 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a, 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa0ace5c52c8f0974c521244ccf49a5a7166a9a6fcef623779b42d55fb2c5fbbe]", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + } + ] +} diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_arbitrum.report.txt b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_arbitrum.report.txt new file mode 100644 index 000000000..3ce6c353e --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_arbitrum.report.txt @@ -0,0 +1,20 @@ +File name: BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_arbitrum.json +COMMIT: `7242436b52282a31ab15b318aa6693c1700d7d4c` +CHAIN(S): `arbitrum` +``` ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+=====================+============================================+=================================================================================================================+====================================================================+=======+============+ +| grantRoles | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | N/A | 0 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf | N/A | 1 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | | | ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| grantRoles | multisigs/dao | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xa0ace5c52c8f0974c521244ccf49a5a7166a9a6fcef623779b42d55fb2c5fbbe | N/A | 2 | ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_base.json b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_base.json new file mode 100644 index 000000000..ce558808f --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_base.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 8453, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd, 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + } + } + ] +} diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_base.report.txt b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_base.report.txt new file mode 100644 index 000000000..79e014e9f --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_base.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_base.json +COMMIT: `7242436b52282a31ab15b318aa6693c1700d7d4c` +CHAIN(S): `base` +``` ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+=====================+============================================+=============================================================================+====================================================================+=======+============+ +| grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | N/A | 0 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | | | ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_deployment_sorted.md b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_deployment_sorted.md new file mode 100644 index 000000000..2ae480c42 --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_deployment_sorted.md @@ -0,0 +1,49 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:--------------------|:-------------------------------------------| +| 20210418-vault | arbitrum | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20220517-protocol-fee-withdrawer | arbitrum | withdrawCollectedFees(address[],uint256[],address) | 0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20220725-protocol-fee-percentages-provider | arbitrum | setFeeTypePercentage(uint256,uint256) | 0xa0ace5c52c8f0974c521244ccf49a5a7166a9a6fcef623779b42d55fb2c5fbbe | multisigs/dao | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 | +| 20230409-erc4626-linear-pool-v4 | arbitrum | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-erc4626-linear-pool-v4 | arbitrum | setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | arbitrum | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | arbitrum | setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | arbitrum | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | arbitrum | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20221123-pool-recovery-helper | base | addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20221123-pool-recovery-helper | base | removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | gnosis | enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230410-aave-linear-pool-v5 | gnosis | setTargets(uint256,uint256) | 0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20210418-vault | mainnet | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20220517-protocol-fee-withdrawer | mainnet | withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | mainnet | enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xd41187a1d52918991b8e886e7e02dadf9f3899ff8134eaa5aa4e8f6a81dec3ab | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | mainnet | setTargets(uint256,uint256) | 0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-gearbox-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x0724bafdb03f8d97bf0372ebba73684e8da490a627cc54840323b96c0f8a54d7 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-gearbox-linear-pool-v2 | mainnet | setTargets(uint256,uint256) | 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x479aa48247a9811620c0d80d6cb740bbc8d9424523952ff24ff7e07f3d10f955 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | mainnet | setTargets(uint256,uint256) | 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | mainnet | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | mainnet | setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | mainnet | setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-silo-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0xf7939f1289f961848c0a92aaeff509b21549a13102c87a1c7925a11395ae7d91 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-silo-linear-pool-v2 | mainnet | setTargets(uint256,uint256) | 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20210418-vault | optimism | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20220517-protocol-fee-withdrawer | optimism | withdrawCollectedFees(address[],uint256[],address) | 0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6 | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-erc4626-linear-pool-v4 | optimism | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | optimism | setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-yearn-linear-pool-v2 | optimism | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | optimism | setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230410-aave-linear-pool-v5 | optimism | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | optimism | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20210418-vault | polygon | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20220517-protocol-fee-withdrawer | polygon | withdrawCollectedFees(address[],uint256[],address) | 0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20220725-protocol-fee-percentages-provider | polygon | setFeeTypePercentage(uint256,uint256) | 0x716d6b6afc33d645e9c2c78937fc28afcca38a4ef927fb307679e9709b73214e | multisigs/dao | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 | +| 20230409-erc4626-linear-pool-v4 | polygon | enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | polygon | setTargets(uint256,uint256) | 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | polygon | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | polygon | setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | polygon | enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | polygon | setTargets(uint256,uint256) | 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_function_descriptions.md b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_function_descriptions.md new file mode 100644 index 000000000..1fd1c3802 --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_function_descriptions.md @@ -0,0 +1,11 @@ +| function | description | +|:---------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| setTargets(uint256,uint256) | Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens. | +| setPaused(bool) | Stops all trading activity involving the vault | +| withdrawCollectedFees(address[],uint256[],address) | Allows the withdrawal of collected protocol fees | +| setFeeTypePercentage(uint256,uint256) | Sets the protocol fee for a particular fee type for this deployment | +| removePoolFactory(address) | Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| addPoolFactory(address) | Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | \ No newline at end of file diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_gnosis.json b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_gnosis.json new file mode 100644 index 000000000..f335fa399 --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_gnosis.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_gnosis.report.txt b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_gnosis.report.txt new file mode 100644 index 000000000..4d0e215fa --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_gnosis.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_gnosis.json +COMMIT: `7242436b52282a31ab15b318aa6693c1700d7d4c` +CHAIN(S): `gnosis` +``` ++------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+=====================+============================================+=========================================================================+====================================================================+=======+============+ +| grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | N/A | 0 | ++------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| grantRoles | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0 | N/A | 1 | ++------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_mainnet.json b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_mainnet.json new file mode 100644 index 000000000..e9bd5b4cf --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_mainnet.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e, 0xf7939f1289f961848c0a92aaeff509b21549a13102c87a1c7925a11395ae7d91, 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c, 0xd41187a1d52918991b8e886e7e02dadf9f3899ff8134eaa5aa4e8f6a81dec3ab, 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca, 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31, 0x479aa48247a9811620c0d80d6cb740bbc8d9424523952ff24ff7e07f3d10f955, 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202, 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe, 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71, 0x0724bafdb03f8d97bf0372ebba73684e8da490a627cc54840323b96c0f8a54d7]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0, 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196, 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad, 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192, 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + } + ] +} diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_mainnet.report.txt b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_mainnet.report.txt new file mode 100644 index 000000000..0659ecfbe --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_mainnet.report.txt @@ -0,0 +1,27 @@ +File name: BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_mainnet.json +COMMIT: `7242436b52282a31ab15b318aa6693c1700d7d4c` +CHAIN(S): `mainnet` +``` ++------------+---------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+=====================+============================================+============================================================================================================+====================================================================+=======+============+ +| grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e | N/A | 0 | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/setSwapFeePercentage(uint256) | 0xf7939f1289f961848c0a92aaeff509b21549a13102c87a1c7925a11395ae7d91 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0xd41187a1d52918991b8e886e7e02dadf9f3899ff8134eaa5aa4e8f6a81dec3ab | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca | | | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/setTargets(uint256,uint256) | 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0x479aa48247a9811620c0d80d6cb740bbc8d9424523952ff24ff7e07f3d10f955 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0x0724bafdb03f8d97bf0372ebba73684e8da490a627cc54840323b96c0f8a54d7 | | | ++------------+---------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | N/A | 1 | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | | | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | | | ++------------+---------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_optimism.json b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_optimism.json new file mode 100644 index 000000000..da10d8f99 --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_optimism.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8, 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a, 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6, 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e, 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a, 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_optimism.report.txt b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_optimism.report.txt new file mode 100644 index 000000000..c505352ea --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_optimism.report.txt @@ -0,0 +1,18 @@ +File name: BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_optimism.json +COMMIT: `7242436b52282a31ab15b318aa6693c1700d7d4c` +CHAIN(S): `optimism` +``` ++------------+---------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+=====================+============================================+============================================================================================================+====================================================================+=======+============+ +| grantRoles | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | N/A | 0 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | ++------------+---------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| grantRoles | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6 | N/A | 1 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | | | ++------------+---------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_polygon.json b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_polygon.json new file mode 100644 index 000000000..346356873 --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_polygon.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564, 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13, 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202, 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b, 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x716d6b6afc33d645e9c2c78937fc28afcca38a4ef927fb307679e9709b73214e]", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + } + ] +} diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_polygon.report.txt b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_polygon.report.txt new file mode 100644 index 000000000..9f0d1ef7d --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_polygon.report.txt @@ -0,0 +1,20 @@ +File name: BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_polygon.json +COMMIT: `7242436b52282a31ab15b318aa6693c1700d7d4c` +CHAIN(S): `polygon` +``` ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+=====================+============================================+=================================================================================================================+====================================================================+=======+============+ +| grantRoles | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | N/A | 0 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | | | ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13 | N/A | 1 | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44 | | | ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| grantRoles | multisigs/dao | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0x716d6b6afc33d645e9c2c78937fc28afcca38a4ef927fb307679e9709b73214e | N/A | 2 | ++------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_warnings.txt b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_warnings.txt new file mode 100644 index 000000000..b48e296cf --- /dev/null +++ b/BIPs/00batched/authorizer/08-04-perms-check/2023-08-04_warnings.txt @@ -0,0 +1,580 @@ +WARNING: On chain:base:20230206-weighted-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4//pause(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/disable(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230206-composable-stable-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230409-yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:base:20230316-child-chain-gauge-factory-v2/add_reward(address,address): found no matches, skipping +WARNING: On chain:base:20230223-protocol-id-registry/registerProtocolId(uint256,string): found no matches, skipping +WARNING: On chain:base:20230223-protocol-id-registry/renameProtocolId(uint256,string): found no matches, skipping + +20230409-erc4626-linear-pool-v4/pause() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/disable() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/pause() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/disable() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/pause() already has the proper owner set, skipping. +20230411-managed-pool-v2/disable() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230410-silo-linear-pool-v2/pause() already has the proper owner set, skipping. +20230410-silo-linear-pool-v2/disable() already has the proper owner set, skipping. +20230410-silo-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20210418-vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) already has the proper owner set, skipping. +20210418-vault/manageUserBalance((uint8,address,uint256,address,address)[]) already has the proper owner set, skipping. +20210418-vault/setRelayerApproval(address,address,bool) already has the proper owner set, skipping. +20210418-vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) already has the proper owner set, skipping. +20210418-vault/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20210418-vault/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setFlashLoanFeePercentage(uint256) already has the proper owner set, skipping. +20220725-protocol-fee-percentages-provider/setFeeTypePercentage(uint256,uint256) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/denylistToken(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/removePoolFactory(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/addPoolFactory(address) already has the proper owner set, skipping. +20230223-protocol-id-registry/registerProtocolId(uint256,string) already has the proper owner set, skipping. +20230223-protocol-id-registry/renameProtocolId(uint256,string) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/pause() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/disable() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/pause() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/disable() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/pause() already has the proper owner set, skipping. +20230411-managed-pool-v2/disable() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20210418-vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) already has the proper owner set, skipping. +20210418-vault/manageUserBalance((uint8,address,uint256,address,address)[]) already has the proper owner set, skipping. +20210418-vault/setRelayerApproval(address,address,bool) already has the proper owner set, skipping. +20210418-vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) already has the proper owner set, skipping. +20210418-vault/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20210418-vault/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setFlashLoanFeePercentage(uint256) already has the proper owner set, skipping. +20230316-child-chain-gauge-factory-v2/add_reward(address,address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/denylistToken(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/removePoolFactory(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/addPoolFactory(address) already has the proper owner set, skipping. +20230223-protocol-id-registry/registerProtocolId(uint256,string) already has the proper owner set, skipping. +20230223-protocol-id-registry/renameProtocolId(uint256,string) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/pause() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/disable() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/pause() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/disable() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/pause() already has the proper owner set, skipping. +20230411-managed-pool-v2/disable() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20210418-vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) already has the proper owner set, skipping. +20210418-vault/manageUserBalance((uint8,address,uint256,address,address)[]) already has the proper owner set, skipping. +20210418-vault/setRelayerApproval(address,address,bool) already has the proper owner set, skipping. +20210418-vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) already has the proper owner set, skipping. +20210418-vault/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20210418-vault/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setFlashLoanFeePercentage(uint256) already has the proper owner set, skipping. +20230316-child-chain-gauge-factory-v2/add_reward(address,address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/denylistToken(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/removePoolFactory(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/addPoolFactory(address) already has the proper owner set, skipping. +20230223-protocol-id-registry/registerProtocolId(uint256,string) already has the proper owner set, skipping. +20230223-protocol-id-registry/renameProtocolId(uint256,string) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/pause() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/disable() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/pause() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/disable() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/pause() already has the proper owner set, skipping. +20230411-managed-pool-v2/disable() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20210418-vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) already has the proper owner set, skipping. +20210418-vault/manageUserBalance((uint8,address,uint256,address,address)[]) already has the proper owner set, skipping. +20210418-vault/setRelayerApproval(address,address,bool) already has the proper owner set, skipping. +20210418-vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) already has the proper owner set, skipping. +20210418-vault/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20210418-vault/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setFlashLoanFeePercentage(uint256) already has the proper owner set, skipping. +20220725-protocol-fee-percentages-provider/setFeeTypePercentage(uint256,uint256) already has the proper owner set, skipping. +20230316-child-chain-gauge-factory-v2/add_reward(address,address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/denylistToken(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/removePoolFactory(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/addPoolFactory(address) already has the proper owner set, skipping. +20230223-protocol-id-registry/registerProtocolId(uint256,string) already has the proper owner set, skipping. +20230223-protocol-id-registry/renameProtocolId(uint256,string) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/pause() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/disable() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/pause() already has the proper owner set, skipping. +20230411-managed-pool-v2/disable() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20210418-vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) already has the proper owner set, skipping. +20210418-vault/manageUserBalance((uint8,address,uint256,address,address)[]) already has the proper owner set, skipping. +20210418-vault/setRelayerApproval(address,address,bool) already has the proper owner set, skipping. +20210418-vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) already has the proper owner set, skipping. +20210418-vault/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20210418-vault/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setFlashLoanFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setPaused(bool) already has the proper owner set, skipping. +20220725-protocol-fee-percentages-provider/setFeeTypePercentage(uint256,uint256) already has the proper owner set, skipping. +20230316-child-chain-gauge-factory-v2/add_reward(address,address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/denylistToken(address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/removePoolFactory(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/addPoolFactory(address) already has the proper owner set, skipping. +20230223-protocol-id-registry/registerProtocolId(uint256,string) already has the proper owner set, skipping. +20230223-protocol-id-registry/renameProtocolId(uint256,string) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/pause() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/disable() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/pause() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/disable() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230411-managed-pool-v2/pause() already has the proper owner set, skipping. +20230411-managed-pool-v2/disable() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20210418-vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) already has the proper owner set, skipping. +20210418-vault/manageUserBalance((uint8,address,uint256,address,address)[]) already has the proper owner set, skipping. +20210418-vault/setRelayerApproval(address,address,bool) already has the proper owner set, skipping. +20210418-vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) already has the proper owner set, skipping. +20210418-vault/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20210418-vault/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setFlashLoanFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setPaused(bool) already has the proper owner set, skipping. +20220725-protocol-fee-percentages-provider/setFeeTypePercentage(uint256,uint256) already has the proper owner set, skipping. +20230316-child-chain-gauge-factory-v2/add_reward(address,address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/denylistToken(address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/removePoolFactory(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/addPoolFactory(address) already has the proper owner set, skipping. +20230223-protocol-id-registry/registerProtocolId(uint256,string) already has the proper owner set, skipping. +20230223-protocol-id-registry/renameProtocolId(uint256,string) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/pause() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/disable() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/pause() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/disable() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230411-managed-pool-v2/pause() already has the proper owner set, skipping. +20230411-managed-pool-v2/disable() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20210418-vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) already has the proper owner set, skipping. +20210418-vault/manageUserBalance((uint8,address,uint256,address,address)[]) already has the proper owner set, skipping. +20210418-vault/setRelayerApproval(address,address,bool) already has the proper owner set, skipping. +20210418-vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) already has the proper owner set, skipping. +20210418-vault/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20210418-vault/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setFlashLoanFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setPaused(bool) already has the proper owner set, skipping. +20220725-protocol-fee-percentages-provider/setFeeTypePercentage(uint256,uint256) already has the proper owner set, skipping. +20230316-avax-child-chain-gauge-factory-v2/add_reward(address,address) already has the proper owner set, skipping. +20230316-child-chain-gauge-factory-v2/add_reward(address,address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/denylistToken(address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/removePoolFactory(address) already has the proper owner set, skipping. +20221123-pool-recovery-helper/addPoolFactory(address) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/pause() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/disable() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/pause() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/disable() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/pause() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/disable() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230411-managed-pool-v2/pause() already has the proper owner set, skipping. +20230411-managed-pool-v2/disable() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230411-managed-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20210418-vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) already has the proper owner set, skipping. +20210418-vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) already has the proper owner set, skipping. +20210418-vault/manageUserBalance((uint8,address,uint256,address,address)[]) already has the proper owner set, skipping. +20210418-vault/setRelayerApproval(address,address,bool) already has the proper owner set, skipping. +20210418-vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) already has the proper owner set, skipping. +20210418-vault/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20210418-vault/setSwapFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setFlashLoanFeePercentage(uint256) already has the proper owner set, skipping. +20210418-vault/setPaused(bool) already has the proper owner set, skipping. +20220725-protocol-fee-percentages-provider/setFeeTypePercentage(uint256,uint256) already has the proper owner set, skipping. +20230316-child-chain-gauge-factory-v2/add_reward(address,address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/denylistToken(address) already has the proper owner set, skipping. +20220517-protocol-fee-withdrawer/withdrawCollectedFees(address[],uint256[],address) already has the proper owner set, skipping. +20230223-protocol-id-registry/registerProtocolId(uint256,string) already has the proper owner set, skipping. +20230223-protocol-id-registry/renameProtocolId(uint256,string) already has the proper owner set, skipping. diff --git a/BIPs/00batched/authorizer/2023-08-05.json b/BIPs/00batched/authorizer/2023-08-05.json new file mode 100644 index 000000000..d58c8f4f7 --- /dev/null +++ b/BIPs/00batched/authorizer/2023-08-05.json @@ -0,0 +1,25 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "setTargets": "multisigs/lm", + "enableRecoveryMode": "multisigs/emergency" + }, + "deployments": [ + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230410-silo-linear-pool-v2" + ] + } +] diff --git a/BIPs/00batched/authorizer/2024-05-28_warnings.txt b/BIPs/00batched/authorizer/2024-05-28_warnings.txt new file mode 100644 index 000000000..78d60cb05 --- /dev/null +++ b/BIPs/00batched/authorizer/2024-05-28_warnings.txt @@ -0,0 +1,87 @@ +WARNING: On chain:mode:weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:mode:weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:composable-stable-pool-v6/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:composable-stable-pool-v5/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:mode:composable-stable-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:composable-stable-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:mode:composable-stable-pool-v5//pause(): found no matches, skipping +WARNING: On chain:mode:composable-stable-pool-v5/disable(): found no matches, skipping +WARNING: On chain:mode:composable-stable-pool-v5/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:mode:composable-stable-pool-v5/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:mode:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:mode:20230409-erc4626-linear-pool-v4//pause(): found no matches, skipping +WARNING: On chain:mode:20230409-erc4626-linear-pool-v4/disable(): found no matches, skipping +WARNING: On chain:mode:20230409-erc4626-linear-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:mode:20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:mode:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:mode:20230409-gearbox-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:mode:20230409-gearbox-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:mode:20230409-gearbox-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:mode:20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:yearn-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:mode:yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:mode:yearn-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:mode:yearn-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:mode:yearn-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:mode:yearn-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:mode:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:mode:20230410-aave-linear-pool-v5//pause(): found no matches, skipping +WARNING: On chain:mode:20230410-aave-linear-pool-v5/disable(): found no matches, skipping +WARNING: On chain:mode:20230410-aave-linear-pool-v5/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:mode:20230410-aave-linear-pool-v5/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:mode:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:mode:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:mode:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:weighted-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:weighted-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:fraxtal:weighted-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:composable-stable-pool-v6/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:composable-stable-pool-v5/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:fraxtal:composable-stable-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:composable-stable-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:fraxtal:composable-stable-pool-v5//pause(): found no matches, skipping +WARNING: On chain:fraxtal:composable-stable-pool-v5/disable(): found no matches, skipping +WARNING: On chain:fraxtal:composable-stable-pool-v5/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:fraxtal:composable-stable-pool-v5/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230409-erc4626-linear-pool-v4/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230409-erc4626-linear-pool-v4/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230409-erc4626-linear-pool-v4/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:fraxtal:20230409-erc4626-linear-pool-v4//pause(): found no matches, skipping +WARNING: On chain:fraxtal:20230409-erc4626-linear-pool-v4/disable(): found no matches, skipping +WARNING: On chain:fraxtal:20230409-erc4626-linear-pool-v4/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:fraxtal:20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230409-gearbox-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230409-gearbox-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230409-gearbox-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:fraxtal:20230409-gearbox-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:fraxtal:20230409-gearbox-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:fraxtal:20230409-gearbox-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:fraxtal:20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:yearn-linear-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:fraxtal:yearn-linear-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:yearn-linear-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:fraxtal:yearn-linear-pool-v2//pause(): found no matches, skipping +WARNING: On chain:fraxtal:yearn-linear-pool-v2/disable(): found no matches, skipping +WARNING: On chain:fraxtal:yearn-linear-pool-v2/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:fraxtal:yearn-linear-pool-v2/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230410-aave-linear-pool-v5/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230410-aave-linear-pool-v5/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230410-aave-linear-pool-v5/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:fraxtal:20230410-aave-linear-pool-v5//pause(): found no matches, skipping +WARNING: On chain:fraxtal:20230410-aave-linear-pool-v5/disable(): found no matches, skipping +WARNING: On chain:fraxtal:20230410-aave-linear-pool-v5/enableRecoveryMode(): found no matches, skipping +WARNING: On chain:fraxtal:20230410-aave-linear-pool-v5/setTargets(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230411-managed-pool-v2/setSwapFeePercentage(uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230411-managed-pool-v2/startAmplificationParameterUpdate(uint256,uint256): found no matches, skipping +WARNING: On chain:fraxtal:20230411-managed-pool-v2/stopAmplificationParameterUpdate(): found no matches, skipping +WARNING: On chain:fraxtal:20230411-managed-pool-v2/setTargets(uint256,uint256): found no matches, skipping + diff --git a/BIPs/00batched/authorizer/README.md b/BIPs/00batched/authorizer/README.md new file mode 100644 index 000000000..e968643b3 --- /dev/null +++ b/BIPs/00batched/authorizer/README.md @@ -0,0 +1,25 @@ +## Generate Authorizor JSON files and write most of the governance + +### To use this +- Copy [00_input_example.json](00_input_example.json) to a new file. Fill out the scripts + - For each map in the list, the script will generate permissions to give the target access to the functions specified in the deployments specified on all the chains specified. +- Name your file with `YYYY_MM_DD`.json with todays date like `2023-01-31.json` and put it in this authorizer folder. +- Create a new branch with your file and push it to github. +- Create a pull request and label it "Generate Authorizer". This could be the PR for the BIP. + - A script should run and create the all the input files + - Set the following environment vars + +```bash +BIP_NUMBER= +PR_NUMBER= +``` +Where BIP number is the number of the BIP like 175, nad PR number is the number of the payload PR for that BIP, like 57 + + - Run ./gen_gov_md.sh + - A BIP-XXX folder will be created in the [BIPs folder at the root of this repo](../../) that contains all the payloads and md files and a BIP-XXX.MD with governance text to link them all. + +### Merge into the `staging` branch +We need to merge +### Edit your governance + +You can edit the governance BIP in your IDE or in the forum and tidy it up and add context. In the end, you should either update the governance MD file in the BIP folder with the final contents of what is posted to forum or delete it to avoid confusion diff --git a/BIPs/00batched/authorizer/action_ids/gnosis_action_ids.json b/BIPs/00batched/authorizer/action_ids/gnosis_action_ids.json new file mode 100644 index 000000000..9306be14b --- /dev/null +++ b/BIPs/00batched/authorizer/action_ids/gnosis_action_ids.json @@ -0,0 +1,332 @@ +{ + "20210418-authorizer": { + "Authorizer": { + "useAdaptor": true, + "actionIds": { + "grantRole(bytes32,address)": "0x8f534e702b217e5e54d14acb1a963da2da0205e6da3fbf07bae02937585643f3", + "grantRoles(bytes32[],address)": "0x9d4b445ebe9d7dd8da3959b70388ef05848094bd7be603d9a8af45931c87f4cf", + "grantRolesToMany(bytes32[],address[])": "0x6a444ff66b43d430cdd0dace4fd0133a4d9b92ab229b082858f96ec042afc116", + "renounceRole(bytes32,address)": "0x97f8003ab4583df7fbf35514575ed47c1b43c122da62b731d17bd092af008cd7", + "revokeRole(bytes32,address)": "0x2662b1eb91a4dfc51a23b917c57870152310d397d670a30389530259838b3f5a", + "revokeRoles(bytes32[],address)": "0x9d462981d1fb25869d034ed3a80847569c60c659e5066a0eb005ca7e8fb37fac", + "revokeRolesFromMany(bytes32[],address[])": "0x8c9de7778fa69fce3ac891eae46ec7db74e7ef0d9b060d4b2cb79f797c645874" + } + } + }, + "20210418-vault": { + "Vault": { + "useAdaptor": false, + "actionIds": { + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": "0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30", + "deregisterTokens(bytes32,address[])": "0xe4f8ff74aa05a4d54a06e035d5e86947bc6474f8d7b166ebeb49fc9178d28551", + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34", + "flashLoan(address,address[],uint256[],bytes)": "0x96ebe854ca6ab6242ad127dcd7809576513b0c64571e515cedd7b8885612c82d", + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653", + "managePoolBalance((uint8,bytes32,address,uint256)[])": "0x7275fb98594b03dc36a7de69051058e9e2d05cabeb4fe7d9c87bc69f94d9d084", + "manageUserBalance((uint8,address,uint256,address,address)[])": "0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498", + "queryBatchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool))": "0xf5f701b3adfba2adad8f16a8be5a989593e42a2caa84c5c6e60b22143db65a2f", + "registerPool(uint8)": "0x956dfce4343a6be4df20714d3dc413ef59e73fa9995d3d247e7c8d12efd33ac2", + "registerTokens(bytes32,address[],address[])": "0xad5bd4a1cc4243b4d772a8a55d24792c1f57cc45eb97ed1291b82d96125a7626", + "setAuthorizer(address)": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "setPaused(bool)": "0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb", + "setRelayerApproval(address,address,bool)": "0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8", + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": "0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff" + } + }, + "ProtocolFeesCollector": { + "useAdaptor": false, + "actionIds": { + "setFlashLoanFeePercentage(uint256)": "0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e", + "setSwapFeePercentage(uint256)": "0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083", + "withdrawCollectedFees(address[],uint256[],address)": "0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796" + } + }, + "BalancerHelpers": { + "useAdaptor": true, + "actionIds": { + "queryExit(bytes32,address,address,(address[],uint256[],bytes,bool))": "0x2c2d48381025f2538d3009c98716f7e89c28225a73559252433caa24330885fb", + "queryJoin(bytes32,address,address,(address[],uint256[],bytes,bool))": "0xd972b0ea55e93f1ad627c0b544d12659dfd52456acc8e7899690b6bebca50994" + } + } + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": { + "useAdaptor": false, + "actionIds": { + "allowlistToken(address)": "0xd156faa29828f1d77abbbf52c62dcba4870f2f2855640707e320e8c1b4cfddd2", + "denylistToken(address)": "0x6843b94f991c5dbdf5c0bd1ce79ce0de10b8e72ed8b70dbe019e3eda4079802a", + "withdrawCollectedFees(address[],uint256[],address)": "0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da" + } + } + }, + "20220721-balancer-queries": { + "BalancerQueries": { + "useAdaptor": true, + "actionIds": { + "queryBatchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool))": "0x77d5bf2ce7d0fab708ed4c816f181e8f9ce7bb476eef69981b52fdf9c0a99929", + "queryExit(bytes32,address,address,(address[],uint256[],bytes,bool))": "0x2c2d48381025f2538d3009c98716f7e89c28225a73559252433caa24330885fb", + "queryJoin(bytes32,address,address,(address[],uint256[],bytes,bool))": "0xd972b0ea55e93f1ad627c0b544d12659dfd52456acc8e7899690b6bebca50994", + "querySwap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool))": "0x23e849b0c61d08883bcec5984056a84de4844a25bedd5e7fc632775522b08ad9" + } + } + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": { + "useAdaptor": false, + "actionIds": { + "registerFeeType(uint256,string,uint256,uint256)": "0x16a4f23f315de2ee156a3b37232abd6e8aa71d84c607f75d224ffd37d4178378", + "setFeeTypePercentage(uint256,uint256)": "0x77b2549a67e235e7bd37726ed4ebd404701323182a0028ea067bb8337e6e15a3" + } + } + }, + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": { + "useAdaptor": true, + "actionIds": { + "approveVault(address,uint256)": "0x366943a376e1eee87c125c41e1ebfefefecb7625f9560400b401e08554f12f9d", + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256,uint256,(uint256,uint256)[])": "0x1c51c12025cad8b59a93f565aba39b7586417548fffa0784034ef4efc2b03994", + "exitPool(bytes32,uint8,address,address,(address[],uint256[],bytes,bool),(uint256,uint256)[])": "0x0033a2b07675761aeb0b878dcdb51e664d1b5071472b3d6773eb903d001c4f22", + "gaugeClaimRewards(address[])": "0x390c7ee687ce5a121a2d012da2c5ede3401e04e9fae81c18087112971b77776a", + "gaugeDeposit(address,address,address,uint256)": "0x1ed26eebb9efc5aec3251ec636da5692f56cfebc2f5d06086c43eee7cdf77b23", + "gaugeMint(address[],uint256)": "0xaea0e18c34e441f756843cfbe6171de65c63cf98daeb1c4a62658c4891810c8f", + "gaugeSetMinterApproval(bool,address,uint256,uint8,bytes32,bytes32)": "0xede1819d855fb435df8844525fa1e1b1e85e61923c88952d2cae5f93c28494ea", + "gaugeWithdraw(address,address,address,uint256)": "0xda69dae4673e4f75fe2fa61c746ba8b23d7f58d79640acd9a70ec18975772ca3", + "joinPool(bytes32,uint8,address,address,(address[],uint256[],bytes,bool),uint256,uint256)": "0xaccf83d8621bc59db150cd86e5d7e8a86fd45def71eddfa860d21a3c9b0884f6", + "manageUserBalance((uint8,address,uint256,address,address)[],uint256)": "0x2ce3348a3d7a3d024e4ceed93f96899123aba5ef69f4a0e8fdff68dc6173f8bf", + "setRelayerApproval(address,bool,bytes)": "0xa66222bfe1523c936400ff0873ec8ec9a28e557fd0dd4e2b4f134622658bd2bf", + "stakeETH(address,uint256,uint256)": "0x6b9313fc3efac9cde6d2bcd2ecdc582e1ff06a33fb0f74ebcb95b01088e98e4f", + "stakeETHAndWrap(address,uint256,uint256)": "0x299942611cfabb9a824ef6fcbb21c88e3e31372809e82a66c53ce3b2c31aff35", + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256,uint256,uint256)": "0x1e61bb0248d61e32328afd35243dbcfdc0e4186ca4f1b444bfd9350b681eeb66", + "unwrapAaveStaticToken(address,address,address,uint256,bool,uint256)": "0xde0c041e406703bbb745d4db99101ebb7b171be13d919f77370fd652c782278b", + "unwrapERC4626(address,address,address,uint256,uint256)": "0xca102cfa86bd480e952b610d0dabfe76c47751df20fbbd4297928818adb3a74b", + "unwrapReaperVaultToken(address,address,address,uint256,uint256)": "0x8a4cd40e1a2f14f83116beb3a754344844eebd7cdd4bcf3181b765e86e42e171", + "unwrapUnbuttonToken(address,address,address,uint256,uint256)": "0xfe699461dc246d04093c97e801fca1dfe7bf29bd63725f9f159d0c5364426379", + "unwrapWstETH(address,address,uint256,uint256)": "0xfa9bcc4f89128e741e8d9fef6b33c68da4aba16cac8940235db5705a8c92fbed", + "vaultPermit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "0x9cffff4bd644ab27bc1ff66019354dd4bf34dff14aeac978b38288dd8108b597", + "vaultPermitDAI(address,address,uint256,uint256,bool,uint8,bytes32,bytes32)": "0xdc095992a61ef91733f4c9c8797ce198484d744abdc54b1db8c9f930b02f7073", + "wrapAaveDynamicToken(address,address,address,uint256,bool,uint256)": "0x32a6b68c912f85d8561796231d43bdc6db7036eda77f2f3f9643e58f891aae6b", + "wrapERC4626(address,address,address,uint256,uint256)": "0x44c79f14b79b7ef1bef8e5e53d943945c5d8df1a27fe1c6408bc0884df8ded41", + "wrapReaperVaultToken(address,address,address,uint256,uint256)": "0xc90e51726c51526e90d73620145365669f007bec7b0e3821bfbdb0520a5c118f", + "wrapStETH(address,address,uint256,uint256)": "0x5161bd7d2bb7c1ca32df99e222692073ced616bc0ebcfacb82e49f251cfcc263", + "wrapUnbuttonToken(address,address,address,uint256,uint256)": "0x1788a4448d746681dc29939260f2db801b68ab6dde7d8d519b14811a4bdcba36" + } + } + }, + "20220908-weighted-pool-v2": { + "WeightedPoolFactory": { + "useAdaptor": false, + "actionIds": { + "create(string,string,address[],uint256[],address[],uint256,address)": "0x737b3eb524e40f471925572c70ba79fdfe3cf273844aa81f67552e060002da81", + "disable()": "0x0a7c328c61ac04bc0e79818b5fa98658f18c222d04e7433de4d87fcbfa15e08e" + } + } + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": { + "useAdaptor": false, + "actionIds": { + "create(string,string,address[],uint256[],uint256,address,bool)": "0x64a472fecada50f544efe7f4cf5c748a80d400544a9425c675ffb2e34d67f7f8", + "disable()": "0x0a35dcf04fdcf4e2119802287b94a1cf758427e74e9bb450cb31af7c660d7735" + } + } + }, + "20220404-erc4626-linear-pool-v2": { + "ERC4626LinearPoolFactory": { + "useAdaptor": true, + "actionIds": { + "create(string,string,address,address,uint256,uint256,address)": "0xf9d27f783f06c33f198165d11f500f70ae99e14c6624f234cac46e1fc1978bec" + } + } + }, + "20220609-stable-pool-v2": { + "StablePoolFactory": { + "useAdaptor": false, + "actionIds": { + "create(string,string,address[],uint256,uint256,address)": "0x48453570be67198c7e351cbc0d8ae38840caccd425ed446800ad3fcd11308642", + "disable()": "0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154" + } + } + }, + "20221122-composable-stable-pool-v2": { + "ComposableStablePoolFactory": { + "useAdaptor": false, + "actionIds": { + "create(string,string,address[],uint256,address[],uint256[],bool[],uint256,address)": "0xe52b283c4c0a52c8c69ec18fbd26e6695901ab956518a087c98fa3023d8b72d9", + "disable()": "0xa676b10c0a312087e255fee5692d8b31aec2a0839a91e715a43860c3e62437e3" + } + }, + "ComposableStablePool": { + "useAdaptor": false, + "factoryOutput": "0x707B7d4a1bAe449d546DCAb869256591bbB3d70b", + "actionIds": { + "disableRecoveryMode()": "0x478e7f53087deab85ae5870218c02821a6bafa4a75984797ac58cdfd513a385b", + "enableRecoveryMode()": "0x793ca26aa62caae6b2fb946bce982e9d0448354abd818cabb58abd0d04a3ef03", + "pause()": "0x21e53d020b912764bb3a437d64ccad86ad4b36334ab4933c92b4f7e20ec74c34", + "setAssetManagerPoolConfig(address,bytes)": "0x1a17c7ed7c4b51c2cf3591a02771ba34c774cc6399066d8ada37ba375a620c76", + "setSwapFeePercentage(uint256)": "0x60b21b2ae5a82434b74afd79abbbafb941197b06237922de3a54d36aaa9c4ea2", + "setTokenRateCacheDuration(address,uint256)": "0xe31d65e162602f6e8861401254d09d67128f6e5c011ce9fee7dfe3f5b02cebd7", + "startAmplificationParameterUpdate(uint256,uint256)": "0xd82b3ab66c70adebd687f4d69dae8b0abd33cacede07deb0c948dc2383f4aeb7", + "stopAmplificationParameterUpdate()": "0x8ab1e42805feb8214d075b216e36ee38c5f3064d5c2ada1d99aa9f63367a029d", + "unpause()": "0x48f45ecf6661caac6ac47a9195afd122325e5c7c3a348b20948083d9cd1b0bcf", + "updateProtocolFeePercentageCache()": "0xe6a8838a78aa2701d75624f03378c203901c2385d269d6ef3f0c8c3e7fb78ae3", + "updateTokenRateCache(address)": "0x7593829f05e636bada285755fdfb8d6806c9b0fc1f3d04e7fc931d7574b88d8d" + } + } + }, + "20221207-aave-rebalanced-linear-pool-v3": { + "AaveLinearPoolFactory": { + "useAdaptor": false, + "actionIds": { + "create(string,string,address,address,uint256,uint256,address,uint256)": "0x4103c182dc4f1bf98e3f9d3a728ac96da85fe9b6e168da96cfe8b0564cf9f5d0", + "disable()": "0x12068567376f5214f735cd6e477a885e135c8964f6771112086ce1fda7cc475d", + "registerProtocolId(uint256,string)": "0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65" + } + }, + "AaveLinearPool": { + "useAdaptor": false, + "factoryOutput": "0x581Ec1f5e7CeD12B186deaE32256AdB53BDd5B08", + "actionIds": { + "disableRecoveryMode()": "0x2918305da5aadaca85b718b266fbd7e7a878a5dcb1aa307b57811c84004f7b23", + "enableRecoveryMode()": "0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e", + "initialize()": "0x945f53a3cbc62449ed64541978f5618251cc4ca8dbcc6f78f3447801d3b26cc8", + "pause()": "0xd919e97356fc5c0cb30e2fdb110ca94a297b955b06db82ee8d9d603c7f9d1989", + "setSwapFeePercentage(uint256)": "0x528c3020f2bd77511812b0aacb3cb91170124524cfdf0d4941db79d4ebf6ff72", + "setTargets(uint256,uint256)": "0xf0475ec32aacdcbce0baad5031052738f06d3cb8595863d3dd61fadd7a51365b", + "unpause()": "0x185a18e7d0123f2d672af9514ca30dbbc1ebc37c347e887255425f7310210efa" + } + } + }, + "20220425-unbutton-aave-linear-pool": { + "UnbuttonAaveLinearPoolFactory": { + "useAdaptor": true, + "actionIds": { + "create(string,string,address,address,uint256,uint256,address)": "0xf9d27f783f06c33f198165d11f500f70ae99e14c6624f234cac46e1fc1978bec" + } + } + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": { + "useAdaptor": false, + "actionIds": { + "addPoolFactory(address)": "0x27f2737d0304362f4d515085adcfa1319a27436bb556d75e8ce5216c8ad601be", + "enableRecoveryMode(address)": "0x32ae16017f0d7c12020f27aca68678c9a3e0fb6cafdb9580f61d3395225a48db", + "removePoolFactory(address)": "0xf73432698cd2e092161276906856b882c56056a85b0a0792733cc87cc6d49e57" + } + } + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": { + "useAdaptor": false, + "actionIds": { + "create(string,string,address[],uint256[],address[],uint256,address)": "0xc534ea9557d664a2b2ad46c506e0e844d93e3d6c4b55a83b8e923fc2dba301b4", + "disable()": "0xbe826ebecfd64701333db6557b090b44c6155461ce9aaf6efce57ad8dc12bd2e" + } + }, + "WeightedPool": { + "useAdaptor": false, + "factoryOutput": "0xE051605A83dEAe38d26a7346B100EF1AC2ef8a0b", + "actionIds": { + "disableRecoveryMode()": "0x9023a208ea63197b4da99dc4a096d44fb3152b807b6e4d37f15239d9fff8beb2", + "enableRecoveryMode()": "0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87", + "pause()": "0xbfd04f562f5ffcabe925c3bca0e8c47adfc4018a6ddeea8baaeccc502815f86d", + "setAssetManagerPoolConfig(address,bytes)": "0x21abb70d5dc9d589f905afa9933d0280c885b8fccc45427dcd7aaba1ff5fc615", + "setSwapFeePercentage(uint256)": "0xec5cf9ce37bce68429403f673d6dfd0a89d33d4af5960016f9a1bbd07c71be88", + "unpause()": "0x221069d5c4d75512385f4722d8f19772710de5e70ed39f4b97ee6797787e678f", + "updateProtocolFeePercentageCache()": "0x8f5716f90fa88ab80e1aa6f6e226aea38767cfb72561005e3ef45ef67828b422" + } + } + }, + "20230206-composable-stable-pool-v3": { + "ComposableStablePoolFactory": { + "useAdaptor": false, + "actionIds": { + "create(string,string,address[],uint256,address[],uint256[],bool[],uint256,address)": "0x55c896f5716f3534d43308bb6990f5497d7b5b57af0dd89db11470dd57388c6b", + "disable()": "0x9f637c196de3124bc0febbb78f206994fdb68c3f8fe8070b42230a76e14ece0b" + } + }, + "ComposableStablePool": { + "useAdaptor": false, + "factoryOutput": "0x07c896050dD6E273c199f06d7516F8A4A369d23A", + "actionIds": { + "disableRecoveryMode()": "0x4b0cfb0e3afde1903ef88f0072b490a0d78f1027a165371b1b4732daa84a9559", + "enableRecoveryMode()": "0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f", + "pause()": "0xf5a74fe74a42c6fe47ddc84feffff02db467d464946b66b317ef6ceeb66bda38", + "setAssetManagerPoolConfig(address,bytes)": "0x20165844cf9e6c2a6f49b8a283d786c5aaa1d89c711042e31d2928eb36d23824", + "setSwapFeePercentage(uint256)": "0x49832d9b75ad868dbf821cf6ee67ab240ff87c62516d7ce788883fdb8845b215", + "setTokenRateCacheDuration(address,uint256)": "0x02c2a0f6c6251ab0610c2548b20e0967cc5ae385cd1109cf5f3d9ce72f722ee3", + "startAmplificationParameterUpdate(uint256,uint256)": "0x8b804839ef6ccdd1c81145961370ad18658e0bf277e9541fcac3915a5608b94d", + "stopAmplificationParameterUpdate()": "0xe0b032f405d9019d046250109c96eb24cf9ff8ed4694d761a65f6153000193c3", + "unpause()": "0xa4f38ba3cf0b1b3ea8bc7b3022ecc6976c184fbbe48d5bebcde37f1c03640b19", + "updateProtocolFeePercentageCache()": "0xff4395d1455f4a2bcb2fde056e750f2af69c000d9897ff5a0cbd87622db503d1", + "updateTokenRateCache(address)": "0xf1af6ce6368dfbb2b08fdf1c7b6ac9eb97f5a7df881c5193406c74c2e8a760ef" + } + } + }, + "20230206-aave-rebalanced-linear-pool-v4": { + "AaveLinearPoolFactory": { + "useAdaptor": false, + "actionIds": { + "create(string,string,address,address,uint256,uint256,address,uint256)": "0x4ced0ffacf01dd754c6fb3dc32076ae0d36a588714792b909e8a58faa254bcd8", + "disable()": "0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec" + } + }, + "AaveLinearPool": { + "useAdaptor": false, + "factoryOutput": "0x225E0047671939A8d78e08EBd692788Abe63f15c", + "actionIds": { + "disableRecoveryMode()": "0x9445e55417916b0075c7d42cc8d936bf87a2e04096fe6e29f17d1e2f80eb4123", + "enableRecoveryMode()": "0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a", + "initialize()": "0x61249c1cc033f0419e0b4556153f3f145175693c37ecd48224e031665842bb4f", + "pause()": "0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0", + "setSwapFeePercentage(uint256)": "0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9", + "setTargets(uint256,uint256)": "0xc4f7c40d1a1c9c1b1f2c156f3cff7d927a45ed28ae5b64d1fb81ea8ca888ee95", + "unpause()": "0xdf74aa35ca13699649afd09db6086f7d5c7c8f820ce90357c4825b982a2cbafa" + } + } + }, + "20220413-child-chain-gauge-factory": { + "RewardsOnlyGauge": { + "useAdaptor": true, + "actionIds": { + "claim_rewards()": "0xcf0b2b6798f0926a93b908e27f332cfe675625416f0bb92ba5eba0210e8862ad", + "claim_rewards(address)": "0x148bace62efe321c95bf0889b402b31e98d5fdcc6ab4cb39b8098228a82d5c7f", + "claim_rewards(address,address)": "0x94551b28e4224ffdc70c9e7178f6ee9e48764fb50cf5635edd9bcf09d2df64c3", + "claimable_reward_write(address,address)": "0xfc679314994f093e3443cbe466b4000351be4d017dde5b9ee2f976d75895dd84", + "deposit(uint256)": "0xebd01fda981e6a2ce9baed03021c6bffe3678acf18bd69a03e20b91a8a7ea0f4", + "deposit(uint256,address)": "0x9b9e09750c8ed7d83806572801ddf623057c7e95ec15c1ea36c0670827095bed", + "deposit(uint256,address,bool)": "0xa7a296781ddbbfeee4f9ce8663551468770c83f65d153c064f9dbfeb70f02548", + "initialize(address,address,bytes32)": "0x160d6c7f4356bb088dfced82b71d12011d070259698cdaf9e8e3dc54a16d8f16", + "set_rewards(address,bytes32,address[8])": "0x04427096606d82eb0bae4dae90ee6092c33092524a75e0a2a806438943457a83", + "set_rewards_receiver(address)": "0x3b7c2782c806c66b41a98e6f998aa0056451d31e41d0f7d04238e0ed97a4350b", + "withdraw(uint256)": "0x2fbeeab59a2e8b7f4a4bb0d5b80177b8aef087f0063d317953cc3b9b3512136e", + "withdraw(uint256,bool)": "0x994c5c9162060c36fbbe4385f912f952d59113ec2bae61eed98052872009e2ed" + } + }, + "ChildChainStreamer": { + "useAdaptor": true, + "actionIds": { + "add_reward(address,address,uint256)": "0x1b89af5fd70d90b47a73a66d5c4b0f73ca01ea21b5a9c30d783f222b1452e562", + "get_reward()": "0x87643eb119a19e1654fb9d119137d30aad0d2132f799205e66c18d41476c3a2a", + "initialize(address)": "0x2b460a731f9534cd88c1e413cdbc71cdc845a51dfcb8d26d48bb7b70df49bb90", + "notify_reward_amount(address)": "0xf139842955587e7816c90b6d72792f2b7e6014d560464517094450df28164bc8", + "remove_reward(address,address)": "0x1da39327dd83225169af7d55dd9b3feb33fc61ab0a25ca6b8919596f356cbf94", + "set_reward_distributor(address,address)": "0x9d575f62420250ec382e1e8e262ddae46d0d6817fab9fde48f9c6efd068e5844", + "set_reward_duration(address,uint256)": "0x8437b3a9baec9691032f2656bf1874cdd89f3fbd8682005ca84f336686c7d48c" + } + }, + "ChildChainLiquidityGaugeFactory": { + "useAdaptor": true, + "actionIds": { + "create(address)": "0x9b9ebe5b6e53727fbefa2541e629822e72cd8c63c1e2911094b42bab112590a0" + } + } + }, + "20220527-child-chain-gauge-token-adder": { + "ChildChainGaugeTokenAdder": { + "useAdaptor": false, + "actionIds": { + "addTokenToGauge(address,address,address)": "0x1ff8dca7a9af725b8fde69703b657ae58c04e9a7153ef1025379deb0dda4f926" + } + } + } +} diff --git a/BIPs/00batched/authorizer/all_chains_base.json b/BIPs/00batched/authorizer/all_chains_base.json new file mode 100644 index 000000000..0616fa573 --- /dev/null +++ b/BIPs/00batched/authorizer/all_chains_base.json @@ -0,0 +1,162 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "/pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + }, + "deployments": [ + "20230206-weighted-pool-v4", + "20230206-composable-stable-pool-v4", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2", + "20230410-silo-linear-pool-v2" + ] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + }, + "deployments": ["20210418-vault"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "base": 8453, + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114 + }, + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/blabs_ops"], + "addPoolFactory(address)": ["multisigs/blabs_ops"] + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + }, + "deployments": ["20230223-protocol-id-registry"] + } +] diff --git a/BIPs/00batched/authorizer/func_desc_by_name.json b/BIPs/00batched/authorizer/func_desc_by_name.json new file mode 100644 index 000000000..daa3d9dbd --- /dev/null +++ b/BIPs/00batched/authorizer/func_desc_by_name.json @@ -0,0 +1,27 @@ +{ + "setSwapFeePercentage(uint256)": "**Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1...\n **Deployments**: Sets the protocol fee charged on swaps for this deployment", + "startAmplificationParameterUpdate(uint256,uint256)": "Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1...", + "stopAmplificationParameterUpdate()": "Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1...", + "pause()": "Stops trading in a pool. Proportinal withdraws are still possible.", + "disable()": "Disables new creation of pools from a pool factory.", + "enableRecoveryMode()": "Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72)", + "setTargets(uint256,uint256)": "Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens.", + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md)", + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md)", + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": "Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md)", + "manageUserBalance((uint8,address,uint256,address,address)[])": "Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md)", + "setRelayerApproval(address,address,bool)": "Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md)", + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": "Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md)", + "withdrawCollectedFees(address[],uint256[],address)": "Allows the withdrawal of collected protocol fees", + "setFlashLoanFeePercentage(uint256)": "Sets the protocol fee charged on flash loans for this deployment", + "setPaused(bool)": "Stops all trading activity involving the vault", + "notify_reward_amount(address)": "Begins a seven day distribution of token rewards", + "setFeeTypePercentage(uint256,uint256)": "Sets the protocol fee for a particular fee type for this deployment", + "addTokenToGauge(address,address,address)": "Whitelists a new token to be used as a reward token for a particular gauge", + "denylistToken(address)": "Adds a token to the ProtocolFeeWithdrawer deny list which prevents the withdrawal of that token from the ProtocolFeeCollector", + "addPoolFactory(address)": "Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring", + "removePoolFactory(address)": "Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring", + "registerProtocolId(uint256,string)": "Register a new DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435)", + "renameProtocolId(uint256,string)": "Change the name of a DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435)", + "add_reward(address,address)": "Allows adding of an external reward token to gauges." +} diff --git a/BIPs/00batched/authorizer/gen_gov_md.sh b/BIPs/00batched/authorizer/gen_gov_md.sh new file mode 100644 index 000000000..42d32df4d --- /dev/null +++ b/BIPs/00batched/authorizer/gen_gov_md.sh @@ -0,0 +1,70 @@ +#!/bin/bash +### This generates a governance MD from template based on the following environment variables + + +#BIP_NUMBER = The BIP number for the governance +#PR_NUMBER = The PR number for the governance +#date=$(date '+%Y-%m-%d') +if [ -z $DATE ]; then + echo "No Date" + exit 2 +fi +if [ -z $BIP_NUMBER ]; then + echo "No BIP NUMBER" + exit 3 +fi +if [ -z $PR_NUMBER ]; then + echo "No PR NUMBER" + exit 4 +fi +if [ -z $WEEKLY_DIR ]; then + echo "No Weekly DIR" + exit 5 +fi + +BIP_DIR="../../$WEEKLY_DIR/BIP-$BIP_NUMBER" +BIP_DIR_FROM_REPO_ROOT="BIPs/$WEEKLY_DIR/BIP-$BIP_NUMBER" + +date=$DATE +## Setup git +git config --global user.name "BIP Bot" +git config --global user.email "bipbot@nowhere.gov" + +echo "Creating $BIP_DIR and moving generated files into place." +mkdir -p $BIP_DIR +mv ${date}.json ${BIP_DIR}/inputs.json +mv ${date}_address_sorted.md ${BIP_DIR}/results_address_sorted.md +mv ${date}_deployment_sorted.md ${BIP_DIR}/results_deployment_sorted.md +mv ${date}_function_descriptions.md ${BIP_DIR}/function_descriptions.md + +## move chain jsons +mkdir chains +for file in ${date}_*.json; do + mv $file `echo $file | sed s/${date}_/chains\\\//` +done +mv chains/* $BIP_DIR +rm -r chains + +## Build basic governance MD + +TABLE=${BIP_DIR}/results_address_sorted.md + +echo "Building governance forum md file. Note you will need to review and update the top sections to talk a bit about the change and it's reasons." +sed "s/{BIP_NUMBER}/$BIP_NUMBER/g" governance_template.md > .working.md +sed "s/{PR_NUMBER}/$PR_NUMBER/g" .working.md > .working1.md +sed "s'{BIP_DIR}'$BIP_DIR_FROM_REPO_ROOT'g" .working1.md > .working2.md +sed "/ADDRESS_SORTED_MD_TABLE/r $TABLE" .working2.md | sed 's/ADDRESS_SORTED_MD_TABLE//' > ${BIP_DIR}/BIP-${BIP_NUMBER}.md +echo "[See Here](BIP-${BIP_NUMBER}.md) for the governance contents." > ${BIP_DIR}/README.md + +rm .working*.md + +git pull +git add -A +git add -u # find moved files +git commit -m "Setting up Payload Directory." +git push origin +BRANCH=`git branch --show-current` +git checkout staging +git merge $BRANCH +git push origin +git checkout $BRANCH diff --git a/BIPs/00batched/authorizer/governance_template.md b/BIPs/00batched/authorizer/governance_template.md new file mode 100644 index 000000000..1c61e7920 --- /dev/null +++ b/BIPs/00batched/authorizer/governance_template.md @@ -0,0 +1,41 @@ +## Payload PR - BIP-{BIP_NUMBER} +https://github.com/BalancerMaxis/multisig-ops/pull/{PR_NUMBER} + +## Background +Talk about the background of this BIP here + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-{BIP_NUMBER}) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|-----------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/{BIP_DIR}/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/{BIP_DIR}/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/{BIP_DIR}/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/{BIP_DIR}/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/{BIP_DIR}/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/{BIP_DIR}/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-deployments](https://github.com/balancer/balancer-deployments/tree/master/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/{BIP_DIR}/results_address_sorted.md) are printed here: + + +ADDRESS_SORTED_MD_TABLE + +## Risk Assessment +Something should be here... + + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/00batched/authorizer/new-chain-pretemplate.json b/BIPs/00batched/authorizer/new-chain-pretemplate.json new file mode 100644 index 000000000..5211734df --- /dev/null +++ b/BIPs/00batched/authorizer/new-chain-pretemplate.json @@ -0,0 +1,100 @@ +[ + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": "lm", + "startAmplificationParameterUpdate(uint256,uint256)": "lm", + "stopAmplificationParameterUpdate()": "lm", + "pause()": "multisigs/emergency", + "disable()": "multisigs/emergency", + "enableRecoveryMode()": ["multisigs/emergency", "PoolRecoveryHelper"], + "setTargets": "lm" + }, + "deployments": [ + "20230206-weighted-pool-v4", + "20230206-composable-stable-pool-v4", + "20220404-erc4626-linear-pool-v2", + "20221207-aave-rebalanced-linear-pool-v3", + "20230206-aave-rebalanced-linear-pool-v4", + "20230411-managed-pool-v2" + ] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "BalancerRelayer", + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "BalancerRelayer", + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": "BalancerRelayer", + "manageUserBalance((uint8,address,uint256,address,address)[])": "BalancerRelayer", + "setRelayerApproval(address,address,bool)": "BalancerRelayer", + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": "BalancerRelayer", + "withdrawCollectedFees(address[],uint256[],address)": "ProtocolFeesWithdrawer", + "setSwapFeePercentage(uint256)": "ProtocolFeePercentagesProvider", + "setFlashLoanFeePercentage(uint256)": "ProtocolFeePercentagesProvider", + "setPaused(bool)": "mutlisigs/emergency" + }, + "deployments": ["20210418-vault"] + }, + + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": "multisigs/dao" + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "add_reward(address,address)": "lm" + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "denylistToken(address)": "multisigs/emergency", + "withdrawCollectedFees(address[],uint256[],address)": "lm" + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "removePoolFactory(address)": "multisigs/blabs_ops", + "addPoolFactory(address)": "multisigs/blabs_ops" + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": "lm", + "renameProtocolId(uint256,string)": "lm" + }, + "deployments": ["20230223-protocol-id-registry"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "addGaugeFactory(address)": "lm" + }, + "deployments": ["20230316-l2-balancer-pseudo-minter"] + } +] diff --git a/BIPs/00batched/authorizer/new-chain-template.json b/BIPs/00batched/authorizer/new-chain-template.json new file mode 100644 index 000000000..245c25991 --- /dev/null +++ b/BIPs/00batched/authorizer/new-chain-template.json @@ -0,0 +1,113 @@ +[ + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "/pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + }, + "deployments": [ + "20230206-weighted-pool-v4", + "20230206-composable-stable-pool-v4", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2", + "20230410-silo-linear-pool-v2" + ] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + }, + "deployments": ["20210418-vault"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/blabs_ops"], + "addPoolFactory(address)": ["multisigs/blabs_ops"] + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + }, + "deployments": ["20230223-protocol-id-registry"] + } +] diff --git a/BIPs/00batched/authorizer/targets/gnosis_targets.json b/BIPs/00batched/authorizer/targets/gnosis_targets.json new file mode 100644 index 000000000..c7590157d --- /dev/null +++ b/BIPs/00batched/authorizer/targets/gnosis_targets.json @@ -0,0 +1,37 @@ +{ + "AaveLinearPoolFactory": "0x9dd5Db2d38b50bEF682cE532bCca5DfD203915E1", + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "AuthorizerAdaptor": "0x5aDDCCa35b7A0D07C74063c48700C8590E87864E", + "AuthorizerAdaptorEntrypoint": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "BalancerHelpers": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9", + "BalancerQueries": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e", + "BalancerRelayer": "0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3", + "BatchRelayerLibrary": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8", + "ChildChainGaugeRewardHelper": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd", + "ChildChainGaugeTokenAdder": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "ChildChainLiquidityGaugeFactory": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "ChildChainStreamer": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a", + "ComposableStablePoolFactory": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "ERC4626LinearPoolFactory": "0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8", + "MockAaveLendingPool": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "MockAaveLinearPool": "0x581Ec1f5e7CeD12B186deaE32256AdB53BDd5B08", + "MockComposableStablePool": "0x707B7d4a1bAe449d546DCAb869256591bbB3d70b", + "MockStaticAToken": "0x5cF4928a3205728bd12830E1840F7DB85c62a4B9", + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "PoolRecoveryHelper": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "ProtocolFeePercentagesProvider": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F", + "ProtocolFeesWithdrawer": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca", + "RewardsOnlyGauge": "0x45fFd460cC6642B8D8Fb12373DFd77Ceb0f4932B", + "StablePoolFactory": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "UnbuttonAaveLinearPoolFactory": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968", + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "WeightedPoolFactory": "0xf302f9F50958c5593770FDf4d4812309fF77414f", + "multisigs": { + "dao": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "emergency": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "feeManager": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "fees": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "lm": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } +} diff --git a/BIPs/BIP-xxx.json b/BIPs/00batched/placeholder similarity index 100% rename from BIPs/BIP-xxx.json rename to BIPs/00batched/placeholder diff --git a/BIPs/00batched/tg_template.txt b/BIPs/00batched/tg_template.txt new file mode 100644 index 000000000..9059f3e93 --- /dev/null +++ b/BIPs/00batched/tg_template.txt @@ -0,0 +1,27 @@ +gm everyone. please pay close attention and only sign where you are pinged. Doing some new tx's on Ethereum plus housekeeping on the other networks. + +@OxMaki @alexanderlan @trentmc0 @SausageDogCrypto @nanexcool @bonustrack @StefanGeorge @eboado @garaigram + +https://gnosis-safe.io/app/eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f/transactions/queue + +#74 & #75 - pay Balancer Foundation per https://snapshot.org/#/balancer.eth/proposal/0x05d36e7cb6f2f63ac84eb279ff7bb274eb6375a81429edc77655212c79d6d0ae +#76 - pay Ops subDAO per https://snapshot.org/#/balancer.eth/proposal/0x4ddd290617b42c91844e91c372f34d702292c7874b25667652c092b84a0b1bdc +#77 - swap Kain for Mounir per https://snapshot.org/#/balancer.eth/proposal/0x9614c890099947b96d36cee4f6d64e649fe41bdd66331d1d93b39ed952c4ffcd + +————————————————————————————————————————————————————————————- +@alexanderlan @kaiynne2 @trentmc0 @cryptovc @StefanGeorge @jbrukh + +https://gnosis-safe.io/app/matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85/transactions/queue + +please sign the REJECTION of #5 and sign #6 to replace coopah with 0xMaki on our Polygon treasury + +————————————————————————————————————————————————————————————-- +@OxMaki @alexanderlan @kaiynne2 @trentmc0 @nanexcool @cryptovc @bonustrack @StefanGeorge + +https://gnosis-safe.io/app/arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0/transactions/queue + +please sign #5 to replace jbrukh with David Gerai on our Arbitrum treasury +————————————————————————————————————————————————————————————— +@alexanderlan @kaiynne2 @trentmc0 @nanexcool @cryptovc @bonustrack @jbrukh @coopahtroopanew + +https://safe.fantom.network/ftm:0xFe2022da08d17ac8388F5bEFE4F71456255105A4/transactions/queue diff --git a/BIPs/00corePools/2023/2023-10-28.json b/BIPs/00corePools/2023/2023-10-28.json new file mode 100644 index 000000000..11eaa7f64 --- /dev/null +++ b/BIPs/00corePools/2023/2023-10-28.json @@ -0,0 +1,1460 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "rawAmount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "125517080001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "43930960000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11457180000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11496450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1620070000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1350390000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1789650000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1054589999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1252930000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3384350000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "942160000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1792890000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1786910000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1175540000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11018340000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1817800000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa099eef8874207bea6d5687d682605b8b3c72be2995363900f57d1f2501ab02", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "564030000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "755920000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "983510000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2220860000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5926160000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1017800000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2584660000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "761100000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1804980000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1196590000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "624550000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1073260000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "847520000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2330360000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8228440000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8256629999", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1163520000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "969840000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1285320000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "899840000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2430610000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1050060000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1287640000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1283340000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7913280000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1305520000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "520980000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "677830000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1530620000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4084290000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "701460000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1844310000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "543090000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1287960000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1060800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "898290000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1662860000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "81586024494" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "2087619404687059451904" + } + } + ] +} diff --git a/BIPs/00corePools/2023/2023-10-28.report.txt b/BIPs/00corePools/2023/2023-10-28.report.txt new file mode 100644 index 000000000..87babf816 --- /dev/null +++ b/BIPs/00corePools/2023/2023-10-28.report.txt @@ -0,0 +1,539 @@ +File name: BIPs/00corePools/2023-10-28.json +COMMIT: `a92b48ab1999c9672418a3db226c4eac4705ac3e` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+==================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 43930.96 (RAW: 43930960000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 81586.024494 (RAW: 81586024494) | N/A | 53 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 2087.6194046870596 (RAW: 2087619404687059451904) | N/A | 54 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +``` +File name: BIPs/00corePools/2023-10-28.json +COMMIT: `a92b48ab1999c9672418a3db226c4eac4705ac3e` +CHAIN(S): `1` +``` ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+===========================================================================+=========+======================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "125517080001" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "11457180000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "11496450000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1620070000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1350390000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1789650000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1054589999", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1252930000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3384350000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "942160000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1792890000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1786910000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1175540000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "11018340000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1817800000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa099eef8874207bea6d5687d682605b8b3c72be2995363900f57d1f2501ab02", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "564030000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "755920000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "983510000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2220860000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5926160000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1017800000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2584660000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "761100000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1804980000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1196590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "624550000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1073260000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "847520000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2330360000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8228440000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8256629999", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1163520000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "969840000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1285320000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "899840000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2430610000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1050060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1287640000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1283340000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7913280000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1305520000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "520980000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "677830000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1530620000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4084290000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "701460000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1844310000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "543090000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1287960000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1060800000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "898290000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1662860000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00corePools/2023/2023-11-10.json b/BIPs/00corePools/2023/2023-11-10.json new file mode 100644 index 000000000..bf5bc5527 --- /dev/null +++ b/BIPs/00corePools/2023/2023-11-10.json @@ -0,0 +1,1811 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "rawAmount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "179312870001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "62759470000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6812140000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9925090000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "841160000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1654240000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1254990000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "852230000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1852900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7252420000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1265900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10058060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1672530000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "896680000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8792830000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1466060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa099eef8874207bea6d5687d682605b8b3c72be2995363900f57d1f2501ab02", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1053280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4240380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "781810000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1114340000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3199720000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14381230000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1092680000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1982170000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "649410000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1071849999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2371010000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "724740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1601050000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "779490000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "571580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5186290000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x7173a1e5cc69f4b4b412f98323fe2da0d8dc716a84b5435b783e6b53e38b1097", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2198500000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x6c4809f7a6731938655cc8b083eb558af3aed482e5b71fe81cedc29c8bcf3e47", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "872120000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf89cabc0646730697de1ca7c698040399fd30299cf2addf1f00c427311697db0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2260450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5392650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7856930000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "665880000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1309530000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "993480000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "537740000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1466800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5741190000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1002110000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7962200000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1324010000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "709840000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6960620000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1160570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa099eef8874207bea6d5687d682605b8b3c72be2995363900f57d1f2501ab02", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "833800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3356790000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "604100000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "861050000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2472410000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11112350000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "844310000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1568690000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "848260000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1876420000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfd2241dcf5150d483ec42a96db0387a7fc8aef2baf4a49ca8a58bb73cec3110d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "856900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1305780000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "635740000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4104420000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x7173a1e5cc69f4b4b412f98323fe2da0d8dc716a84b5435b783e6b53e38b1097", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1739880000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x6c4809f7a6731938655cc8b083eb558af3aed482e5b71fe81cedc29c8bcf3e47", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "690190000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf89cabc0646730697de1ca7c698040399fd30299cf2addf1f00c427311697db0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1788900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "116553333903" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "9840244584782021787648" + } + } + ] +} diff --git a/BIPs/00corePools/2023/2023-11-10.report.txt b/BIPs/00corePools/2023/2023-11-10.report.txt new file mode 100644 index 000000000..4dacc593f --- /dev/null +++ b/BIPs/00corePools/2023/2023-11-10.report.txt @@ -0,0 +1,669 @@ +File name: BIPs/00corePools/2023-11-10.json +COMMIT: `18caa630caccd6af2a726e511e47c3cf828372bc` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 62759.47 (RAW: 62759470000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 116553.333903 (RAW: 116553333903) | N/A | 66 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 9840.244584782022 (RAW: 9840244584782021787648) | N/A | 67 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +File name: BIPs/00corePools/2023-11-10.json +COMMIT: `18caa630caccd6af2a726e511e47c3cf828372bc` +CHAIN(S): `1` +``` ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+===========================================================================+=========+======================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "179312870001" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "6812140000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "9925090000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "841160000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1654240000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1254990000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "852230000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1852900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7252420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1265900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "10058060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1672530000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "896680000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8792830000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1466060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa099eef8874207bea6d5687d682605b8b3c72be2995363900f57d1f2501ab02", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1053280000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4240380000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "781810000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1114340000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3199720000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "14381230000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1092680000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1982170000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "649410000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1071849999", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2371010000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "724740000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1601050000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "779490000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "571580000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5186290000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x7173a1e5cc69f4b4b412f98323fe2da0d8dc716a84b5435b783e6b53e38b1097", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2198500000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x6c4809f7a6731938655cc8b083eb558af3aed482e5b71fe81cedc29c8bcf3e47", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "872120000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf89cabc0646730697de1ca7c698040399fd30299cf2addf1f00c427311697db0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2260450000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5392650000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7856930000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "665880000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1309530000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "993480000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "537740000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1466800000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5741190000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1002110000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7962200000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1324010000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "709840000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "6960620000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1160570000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa099eef8874207bea6d5687d682605b8b3c72be2995363900f57d1f2501ab02", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "833800000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3356790000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "604100000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "861050000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2472410000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "11112350000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "844310000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1568690000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "848260000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1876420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfd2241dcf5150d483ec42a96db0387a7fc8aef2baf4a49ca8a58bb73cec3110d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "856900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1305780000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "635740000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4104420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x7173a1e5cc69f4b4b412f98323fe2da0d8dc716a84b5435b783e6b53e38b1097", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1739880000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x6c4809f7a6731938655cc8b083eb558af3aed482e5b71fe81cedc29c8bcf3e47", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "690190000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf89cabc0646730697de1ca7c698040399fd30299cf2addf1f00c427311697db0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1788900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00corePools/2023/2023-11-11.json b/BIPs/00corePools/2023/2023-11-11.json new file mode 100644 index 000000000..f5a1f75e6 --- /dev/null +++ b/BIPs/00corePools/2023/2023-11-11.json @@ -0,0 +1,1757 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "rawAmount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "179312870001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "62759470000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6812140000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9925090000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "841160000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1654240000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1254990000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "852230000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1852900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7252420000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1265900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10058060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1672530000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "896680000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9846110000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1466060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4240380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "781810000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1114340000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3199720000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14381230000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1092680000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1982170000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "649410000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1071849999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2371010000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "724740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1601050000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "779490000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "571580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5186290000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x7173a1e5cc69f4b4b412f98323fe2da0d8dc716a84b5435b783e6b53e38b1097", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2198500000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x6c4809f7a6731938655cc8b083eb558af3aed482e5b71fe81cedc29c8bcf3e47", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "872120000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf89cabc0646730697de1ca7c698040399fd30299cf2addf1f00c427311697db0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2260450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5392650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7856930000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "665880000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1309530000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "993480000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "537740000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1466800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5741190000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1002110000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7962200000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1324010000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "709840000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7794420000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1160570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3356790000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "604100000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "861050000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2472410000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11112350000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "844310000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1568690000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "848260000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1876420000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfd2241dcf5150d483ec42a96db0387a7fc8aef2baf4a49ca8a58bb73cec3110d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "856900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1305780000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "635740000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4104420000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x7173a1e5cc69f4b4b412f98323fe2da0d8dc716a84b5435b783e6b53e38b1097", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1739880000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x6c4809f7a6731938655cc8b083eb558af3aed482e5b71fe81cedc29c8bcf3e47", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "690190000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf89cabc0646730697de1ca7c698040399fd30299cf2addf1f00c427311697db0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1788900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "116553333903" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "9840244584782021787648" + } + } + ] +} diff --git a/BIPs/00corePools/2023/2023-11-11.report.txt b/BIPs/00corePools/2023/2023-11-11.report.txt new file mode 100644 index 000000000..709c666cf --- /dev/null +++ b/BIPs/00corePools/2023/2023-11-11.report.txt @@ -0,0 +1,649 @@ +File name: BIPs/00corePools/2023-11-11.json +COMMIT: `18caa630caccd6af2a726e511e47c3cf828372bc` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 62759.47 (RAW: 62759470000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 116553.333903 (RAW: 116553333903) | N/A | 64 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 9840.244584782022 (RAW: 9840244584782021787648) | N/A | 65 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +File name: BIPs/00corePools/2023-11-11.json +COMMIT: `18caa630caccd6af2a726e511e47c3cf828372bc` +CHAIN(S): `1` +``` ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+===========================================================================+=========+======================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "179312870001" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "6812140000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "9925090000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "841160000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1654240000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1254990000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "852230000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1852900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7252420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1265900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "10058060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1672530000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "896680000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "9846110000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1466060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4240380000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "781810000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1114340000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3199720000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "14381230000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1092680000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1982170000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "649410000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1071849999", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2371010000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "724740000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1601050000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "779490000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "571580000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5186290000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x7173a1e5cc69f4b4b412f98323fe2da0d8dc716a84b5435b783e6b53e38b1097", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2198500000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x6c4809f7a6731938655cc8b083eb558af3aed482e5b71fe81cedc29c8bcf3e47", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "872120000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf89cabc0646730697de1ca7c698040399fd30299cf2addf1f00c427311697db0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2260450000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5392650000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7856930000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "665880000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1309530000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "993480000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "537740000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1466800000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5741190000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1002110000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7962200000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1324010000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "709840000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7794420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8db5e2dd21907018281d810fdc9721a01bc6603db9ac2549680200a3a206f600", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1160570000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3356790000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "604100000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "861050000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2472410000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "11112350000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "844310000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1568690000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "848260000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1876420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfd2241dcf5150d483ec42a96db0387a7fc8aef2baf4a49ca8a58bb73cec3110d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "856900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1305780000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "635740000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4104420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x7173a1e5cc69f4b4b412f98323fe2da0d8dc716a84b5435b783e6b53e38b1097", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1739880000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x6c4809f7a6731938655cc8b083eb558af3aed482e5b71fe81cedc29c8bcf3e47", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "690190000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf89cabc0646730697de1ca7c698040399fd30299cf2addf1f00c427311697db0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1788900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00corePools/2023/2023-11-24.json b/BIPs/00corePools/2023/2023-11-24.json new file mode 100644 index 000000000..b87255a54 --- /dev/null +++ b/BIPs/00corePools/2023/2023-11-24.json @@ -0,0 +1,2394 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "183982470000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "64393840000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7137110000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "13907930000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1066300000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2020670000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1672420000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1039839999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3189130000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3487320000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "851020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9822580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1893940000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "942600000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9133590000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2505590000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "900960000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1246740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3234590000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12539340000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1496870000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2871720000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "967110000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3072250000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1639980000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2115000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "888680000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "787020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7767100000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6362580000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12398620000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "950590000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1801380000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1490930000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "550070000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2843040000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3108870000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "758670000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8756620000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1688410000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "840300000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8142390000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2233670000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "777680000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1076140000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2791980000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10823510000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1292040000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2540850000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "855680000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2718280000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1429890000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1887490000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "793090000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6872300000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "119588648266" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "7347281435742813573384" + } + } + ] +} diff --git a/BIPs/00corePools/2023/2023-11-24.report.txt b/BIPs/00corePools/2023/2023-11-24.report.txt new file mode 100644 index 000000000..3daf35984 --- /dev/null +++ b/BIPs/00corePools/2023/2023-11-24.report.txt @@ -0,0 +1,559 @@ +File name: BIPs/00corePools/2023-11-24.json +COMMIT: `84f97ef86b1d00b2e58c330d90d09a161017b708` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 64393.84 (RAW: 64393840000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 119588.648266 (RAW: 119588648266) | N/A | 55 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 7347.281435742813 (RAW: 7347281435742813573384) | N/A | 56 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +File name: BIPs/00corePools/2023-11-24.json +COMMIT: `84f97ef86b1d00b2e58c330d90d09a161017b708` +CHAIN(S): `1` +``` ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+===========================================================================+=========+======================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "183982470000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7137110000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "13907930000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1066300000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2020670000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1672420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1039839999", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3189130000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3487320000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "851020000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "9822580000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1893940000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "942600000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "9133590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2505590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "900960000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1246740000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3234590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "12539340000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1496870000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2871720000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "967110000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3072250000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1639980000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2115000000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "888680000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "787020000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7767100000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "6362580000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "12398620000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "950590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1801380000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1490930000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "550070000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2843040000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3108870000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "758670000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8756620000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1688410000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "840300000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8142390000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2233670000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "777680000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1076140000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2791980000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "10823510000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1292040000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2540850000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "855680000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2718280000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1429890000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1887490000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "793090000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "6872300000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00corePools/2023/2023-12-07.json b/BIPs/00corePools/2023/2023-12-07.json new file mode 100644 index 000000000..4c06c263d --- /dev/null +++ b/BIPs/00corePools/2023/2023-12-07.json @@ -0,0 +1,2308 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "163968550001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "57388980000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6524400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12278240000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "917970000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1502580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4388540000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "808590000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "741550000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2353390000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "827130000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "998550000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2661060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4561990000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8791140000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2502920000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1055710000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1009590000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2552000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "518840000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9703510000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1355390000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3173460000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1245590000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3077920000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1229760000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2083190000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "993050000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9344300000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5945300000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11188410000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "836490000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1369200000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3999010000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "736830000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2144489999", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "909930000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2424870000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4157080000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8010830000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2280750000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "960010000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "918080000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2320670000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8823920000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1232530000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2872370000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1127410000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2785890000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "930560000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1581800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "754030000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8457730000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "106579498192" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "5812258960697404184829" + } + } + ] +} diff --git a/BIPs/00corePools/2023/2023-12-07.report.txt b/BIPs/00corePools/2023/2023-12-07.report.txt new file mode 100644 index 000000000..185c1e8f0 --- /dev/null +++ b/BIPs/00corePools/2023/2023-12-07.report.txt @@ -0,0 +1,541 @@ +FILENAME: `BIPs/00corePools/2023-12-07.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `a6adabfe74ecaf15665c4b789b7bc267035b1077` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 57388.98 (RAW: 57388980000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 106579.498192 (RAW: 106579498192) | N/A | 53 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 5812.258960697404 (RAW: 5812258960697404184829) | N/A | 54 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `BIPs/00corePools/2023-12-07.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `a6adabfe74ecaf15665c4b789b7bc267035b1077` +CHAIN(S): `mainnet` +``` ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+===========================================================================+=========+======================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "163968550001" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "6524400000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "12278240000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "917970000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1502580000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4388540000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "808590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "741550000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2353390000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbc2e8bef76e9b601c96852dc0fb1bde5a4d233ce73e1ad5626b1303c4b507b06", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "827130000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "998550000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2661060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4561990000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8791140000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2502920000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1055710000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1009590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2552000000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "518840000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "9703510000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1355390000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3173460000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1245590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3077920000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1229760000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2083190000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "993050000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "9344300000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5945300000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "11188410000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "836490000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1369200000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3999010000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "736830000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2144489999", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "909930000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2424870000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4157080000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8010830000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2280750000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "960010000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "918080000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2320670000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8823920000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1232530000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2872370000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1127410000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2785890000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "930560000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1581800000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "754030000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8457730000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00corePools/2023/2023-12-22.json b/BIPs/00corePools/2023/2023-12-22.json new file mode 100644 index 000000000..94a7db861 --- /dev/null +++ b/BIPs/00corePools/2023/2023-12-22.json @@ -0,0 +1,2351 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "148623010001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "52018080000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4598380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8607010000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "750060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1472200000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "765400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "912740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2342500000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5866470000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1817040000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1186170000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5429970000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1342970000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1443450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1035270000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3374180000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "770280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11738460000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1329240000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1059400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2766560000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1058930000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2745180000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1010980000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3361140000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1411240000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1003900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7505380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4430240000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8292290000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "722620000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1418370000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "737410000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2256850000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5651960000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1750610000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1142790000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5231420000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1293870000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf512ca7f2d414492b70978b612f9ebe6efbe83be25c331b17db20d6c5eae5882", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "932340000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1381800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "991050000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3230060000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11237050000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1272460000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1014160000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2671620000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1022590000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2650970000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "720840000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3251940000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1365390000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7247810000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "96604892121" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "6058377001692936688580" + } + } + ] +} diff --git a/BIPs/00corePools/2023/2023-12-22.report.txt b/BIPs/00corePools/2023/2023-12-22.report.txt new file mode 100644 index 000000000..a84df7526 --- /dev/null +++ b/BIPs/00corePools/2023/2023-12-22.report.txt @@ -0,0 +1,551 @@ +FILENAME: `BIPs/00corePools/2023-12-22.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `d1c2704ac166900f181f3e6a4b5d0847fce6fc32` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 52018.08 (RAW: 52018080000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 96604.892121 (RAW: 96604892121) | N/A | 54 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 6058.377001692937 (RAW: 6058377001692936688580) | N/A | 55 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `BIPs/00corePools/2023-12-22.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `d1c2704ac166900f181f3e6a4b5d0847fce6fc32` +CHAIN(S): `mainnet` +``` ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+===========================================================================+=========+======================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "148623010001" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4598380000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8607010000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "750060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1472200000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "765400000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "912740000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2342500000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5866470000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1817040000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1186170000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5429970000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1342970000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1443450000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1035270000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3374180000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "770280000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "11738460000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1329240000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1059400000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2766560000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1058930000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2745180000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1010980000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3361140000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1411240000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1003900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7505380000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4430240000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "8292290000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "722620000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1418370000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "737410000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2256850000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5651960000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1750610000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1142790000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5231420000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1293870000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xf512ca7f2d414492b70978b612f9ebe6efbe83be25c331b17db20d6c5eae5882", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "932340000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1381800000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "991050000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3230060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "11237050000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1272460000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1014160000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2671620000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1022590000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2650970000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "720840000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3251940000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1365390000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "7247810000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00corePools/2024-01-05.json b/BIPs/00corePools/2024-01-05.json new file mode 100644 index 000000000..0da1270eb --- /dev/null +++ b/BIPs/00corePools/2024-01-05.json @@ -0,0 +1,2437 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "222127060001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "77744470000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4184700000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14052630000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "601080000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1727580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16311870000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "818340000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2108710000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1933430000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4990870000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1827400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1550880000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3946220000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2519310000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1615460000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1616610000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3067730000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "897750000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "18714660000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "963880000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1099050000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2534620000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3828210000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1646820000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4350760000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1181870000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "668380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3720020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1488900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2510380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5690060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4298940000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14436250000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1774750000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16757160000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2166270000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1986220000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5127120000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1877280000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1593210000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4053950000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2588080000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1659570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1660750000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3151470000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "19225540000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1129060000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2603810000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3932720000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1691770000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4469540000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3821570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1529550000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2578910000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5845390000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "144382542962" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "8816648566492391320475" + } + } + ] +} diff --git a/BIPs/00corePools/2024-01-05.report.txt b/BIPs/00corePools/2024-01-05.report.txt new file mode 100644 index 000000000..4ed2f55d9 --- /dev/null +++ b/BIPs/00corePools/2024-01-05.report.txt @@ -0,0 +1,742 @@ +FILENAME: `BIPs/00corePools/2024-01-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `4130fda2d1202149852c9b955baa49e2dbbb060e` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 77744.47 (RAW: 77744470000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 144382.542962 (RAW: 144382542962) | N/A | 56 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 8816.648566492391 (RAW: 8816648566492391320475) | N/A | 57 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `BIPs/00corePools/2024-01-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `N/A` +CHAIN(S): `mainnet` +``` ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+============================+====================================================================+===========+============+ +| depositBribe | WETH wstETH | USDC 4184.7(4184700000) | balancer | 2 | 2 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH WETH | USDC 14052.63(14052630000) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH swETH | USDC 601.08(601080000) | balancer | 2 | 4 | +| | 0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca | | 0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | cbETH wstETH (GYROE) | USDC 1727.58(1727580000) | balancer | 2 | 5 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 16311.87(16311870000) | balancer | 2 | 6 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | staFi rETH WETH | USDC 818.34(818340000) | balancer | 2 | 7 | +| | 0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445 | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 2108.71(2108710000) | balancer | 2 | 8 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH-50% RPL-50% | USDC 1933.43(1933430000) | balancer | 2 | 9 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-50% STG-50% | USDC 4990.87(4990870000) | balancer | 2 | 10 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 1827.4(1827400000) | balancer | 2 | 11 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 1550.88(1550880000) | balancer | 2 | 12 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH wstETH sfrxETH | USDC 3946.22(3946220000) | balancer | 2 | 13 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% RDNT-80% | USDC 2519.31(2519310000) | balancer | 2 | 14 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH rETH | USDC 1615.46(1615460000) | balancer | 2 | 15 | +| | 0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497 | | 0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH WETH | USDC 1616.61(1616610000) | balancer | 2 | 16 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH cbETH wstETH | USDC 3067.73(3067730000) | balancer | 2 | 17 | +| | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | | 0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) USDC DAI USDT USDC.e | USDC 897.75(897750000) | balancer | 2 | 18 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 18714.66(18714660000) | balancer | 2 | 19 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sfrxETH rETH wstETH | USDC 963.88(963880000) | balancer | 2 | 20 | +| | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | | 0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 1099.05(1099050000) | balancer | 2 | 21 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) RDNT-WETH plsRDNT | USDC 2534.62(2534620000) | balancer | 2 | 22 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC stMATIC (GYROE) | USDC 3828.21(3828210000) | balancer | 2 | 23 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 1646.82(1646820000) | balancer | 2 | 24 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) MaticX WMATIC | USDC 4350.76(4350760000) | balancer | 2 | 25 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH cbETH | USDC 1181.87(1181870000) | balancer | 2 | 26 | +| | 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026 | | 0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 668.38(668380000) | balancer | 2 | 27 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) sAVAX WAVAX | USDC 3720.02(3720020000) | balancer | 2 | 28 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX ggAVAX | USDC 1488.9(1488900000) | balancer | 2 | 29 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX yyAVAX | USDC 2510.38(2510380000) | balancer | 2 | 30 | +| | 0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f | | 0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 5690.06(5690060000) | balancer | 2 | 31 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | PhantomStable WETH/wstETH | USDC 4298.94(4298940000) | aura | 1 | 32 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable rETH/WETH | USDC 14436.25(14436250000) | aura | 1 | 33 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe cbETH/wstETH | USDC 1774.75(1774750000) | aura | 1 | 34 | +| | Not Found | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 16757.16(16757160000) | aura | 1 | 35 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | PhantomStable wstETH/ankrETH | USDC 2166.27(2166270000) | aura | 1 | 36 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 rETH/RPL | USDC 1986.22(1986220000) | aura | 1 | 37 | +| | Not Found | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 USDC/STG | USDC 5127.12(5127120000) | aura | 1 | 38 | +| | Not Found | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 1877.28(1877280000) | aura | 1 | 39 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 1593.21(1593210000) | aura | 1 | 40 | +| | Not Found | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | PhantomStable rETH/wstETH/sfrxETH | USDC 4053.95(4053950000) | aura | 1 | 41 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 2588.08(2588080000) | aura | 1 | 42 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable WETH/rETH | USDC 1659.57(1659570000) | aura | 1 | 43 | +| | Not Found | | 0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable wstETH/WETH | USDC 1660.75(1660750000) | aura | 1 | 44 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable rETH/cbETH/wstETH | USDC 3151.47(3151470000) | aura | 1 | 45 | +| | Not Found | | 0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 19225.54(19225540000) | aura | 1 | 46 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable ankrETH/wstETH | USDC 1129.06(1129060000) | aura | 1 | 47 | +| | Not Found | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable RDNT-WETH/plsRDNT | USDC 2603.81(2603810000) | aura | 1 | 48 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 3932.72(3932720000) | aura | 1 | 49 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/MaticX | USDC 1691.77(1691770000) | aura | 1 | 50 | +| | Not Found | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-PhantomStable MaticX/WMATIC | USDC 4469.54(4469540000) | aura | 1 | 51 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-PhantomStable sAVAX/WAVAX | USDC 3821.57(3821570000) | aura | 1 | 52 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-PhantomStable WAVAX/ggAVAX | USDC 1529.55(1529550000) | aura | 1 | 53 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-PhantomStable WAVAX/yyAVAX | USDC 2578.91(2578910000) | aura | 1 | 54 | +| | Not Found | | 0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-PhantomStable WETH/wstETH | USDC 5845.39(5845390000) | aura | 1 | 55 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `BIPs/00corePools/2024-01-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `N/A` +CHAIN(S): `mainnet` +``` ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+===========================================================================+=========+======================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "222127060001" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4184700000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "14052630000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "601080000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1727580000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "16311870000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "818340000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2108710000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1933430000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4990870000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1827400000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1550880000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3946220000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2519310000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1615460000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1616610000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3067730000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "897750000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "18714660000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "963880000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1099050000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2534620000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3828210000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1646820000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4350760000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1181870000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "668380000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3720020000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1488900000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2510380000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc (hidden_hand2/balancer_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5690060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4298940000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "14436250000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1774750000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "16757160000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2166270000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1986220000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5127120000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1877280000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1593210000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4053950000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2588080000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1659570000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1660750000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3151470000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "19225540000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1129060000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2603810000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3932720000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1691770000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4469540000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "3821570000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "1529550000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2578910000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "5845390000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+---------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00corePools/fees_2023-12_07_2023-12-21.json b/BIPs/00corePools/fees_2023-12_07_2023-12-21.json new file mode 100644 index 000000000..8fb03feba --- /dev/null +++ b/BIPs/00corePools/fees_2023-12_07_2023-12-21.json @@ -0,0 +1,9 @@ +{ + "mainnet": 137903.33332300003, + "arbitrum": 79753.72102, + "polygon": 25831.69876, + "base": 3463.629101, + "gnosis": 29506.37495, + "avalanche": 20787.224967, + "zkevm": 0 +} diff --git a/BIPs/00corePools/incentives_2023-12-07_2023-12-21.csv b/BIPs/00corePools/incentives_2023-12-07_2023-12-21.csv new file mode 100644 index 000000000..2d1a1fdcd --- /dev/null +++ b/BIPs/00corePools/incentives_2023-12-07_2023-12-21.csv @@ -0,0 +1,51 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives +0xe1f2c039a68a216de6dd427be6c60decf405762a00000000000000000000000e,zkevm,B-wstETH-STABLE,1570.30,0.00,0.00,0,0,0,0.00,0 +0xdf725fde6e89981fb30d9bf999841ac2c160b512000000000000000000000010,zkevm,B-wstETH/rETH-STABLE,454.95,0.00,0.00,0,0,0,0.00,0 +0x1d0a8a31cdb04efac3153237526fb15cc65a252000000000000000000000000f,zkevm,B-rETH-STABLE,348.27,0.00,0.00,0,0,0,0.00,0 +0x65da876a95cd5b6a5880710628c436409b1b29fa00000000000000000000005b,zkevm,wstETH/ankrETH ,211.98,0.00,0.00,0,0,0,0.00,0 +0xb1557cfea06de5a1601a7f0ccf3b515ef431a50d000200000000000000000059,zkevm,ECLP-wETH-rETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,2845.38,3534.82,1903.36,5438.18,2671.62,2766.56,0,0 +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,2823.39,3507.50,1888.65,5396.15,2650.97,2745.18,0,0 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,1089.10,1352.99,728.53,2081.52,1022.59,1058.93,0,0 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,30025.06,10854.39,5844.67,16899.30,8292.29,8607.01,200.25,0 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,20464.84,7398.26,3983.68,11518.43,5651.96,5866.47,136.49,0 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,18942.12,6847.78,3687.27,10661.39,5231.42,5429.97,126.34,0 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,16041.19,5799.07,3122.57,9028.62,4430.24,4598.38,106.98,0 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,8171.67,2954.15,1590.70,4599.35,2256.85,2342.50,54.50,0 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,6338.63,2291.48,1233.88,3567.65,1750.61,1817.04,42.29,0 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,5135.72,1856.62,999.72,2890.57,1418.37,1472.20,34.24,0 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,4684.89,1693.64,911.96,2636.84,1293.87,1342.97,31.25,0 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,4137.85,1495.88,805.47,2328.96,1142.79,1186.17,27.60,0 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,2670.02,965.24,519.75,1502.81,737.41,765.40,17.82,0 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,2616.51,945.90,509.33,1472.68,722.62,750.06,17.45,0 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,1656.51,598.85,322.46,932.34,932.34,0,11.04,0 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,1621.66,586.25,315.67,912.74,0,912.74,10.82,0 +0xb9debddf1d894c79d2b2d09f819ff9b856fca55200000000000000000000062a,mainnet,weETH-WETH-BPT,542.71,196.20,105.64,0,0,0,-301.84,0 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,422.11,152.60,82.17,0,0,0,-234.77,0 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,276.82,100.07,53.89,0,0,0,-153.96,0 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,196.95,71.20,38.34,0,0,0,-109.54,0 +0x35c5c8c7b77942f9d44b535fa590d8b503b2b00c00000000000000000000060d,mainnet,DUSD/sDAI,30.47,11.02,5.93,0,0,0,-16.95,0 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,0.00,0.00,0.00,0,0,0,0.00,0 +0x37b18b10ce5635a84834b26095a0ae5639dcb7520000000000000000000005cb,mainnet,ETHx-WETH-BPT,0.00,0.00,0.00,0,0,0,0.00,0 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x58b645fa247b60f2cb896991fd8956146c9fcb4a00020000000000000000061d,mainnet,80mevETH/20FOLD,0.00,0.00,0.00,0,0,0,0.00,0 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,4911.30,9589.57,5163.62,14753.19,7247.81,7505.38,0,0 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,1064.86,712.16,383.47,1731.82,720.84,1010.98,636.19,0 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,440.86,294.84,158.76,0,0,0,-453.60,0 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,177.46,118.68,63.91,0,0,0,-182.59,0 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,12108.64,4294.50,2312.42,6613.08,3251.94,3361.14,6.15,0 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,5084.04,1803.13,970.91,2776.63,1365.39,1411.24,2.58,0 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,1838.16,651.93,351.04,1003.90,0,1003.90,0.93,0 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,17.73,6.29,3.39,0,0,0,-9.67,0 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,39086.41,14831.05,7985.95,22975.51,11237.05,11738.46,158.51,0 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,arbitrum,wstETH/rETH/cbETH,11235.27,4263.14,2295.54,6604.24,3230.06,3374.18,45.56,0 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,arbitrum,rETH-WETH-BPT,4806.38,1823.75,982.02,2825.25,1381.80,1443.45,19.49,0 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,4426.05,1679.43,904.31,2601.70,1272.46,1329.24,17.95,0 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,3527.57,1338.51,720.74,2073.56,1014.16,1059.40,14.31,0 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,3447.22,1308.02,704.32,2026.32,991.05,1035.27,13.98,0 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,1310.42,497.23,267.74,770.28,0,770.28,5.31,0 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,388.84,147.54,79.45,0,0,0,-226.99,0 +0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e,arbitrum,wstETH/rETH/sfrxETH,81.91,31.08,16.74,0,0,0,-47.82,0 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.53,0.20,0.11,0,0,0,-0.31,0 +0x6b9f3f6b9054a45702d3f2c6e3d32a60204934cb0000000000000000000004a7,arbitrum,USDF/USDC,0.00,0.00,0.00,0,0,0,0.00,0 diff --git a/BIPs/00examples/README.md b/BIPs/00examples/README.md new file mode 100644 index 000000000..465e9ef49 --- /dev/null +++ b/BIPs/00examples/README.md @@ -0,0 +1,9 @@ +#### Examples +Here are some documents of how to do specific, commonly requested things. + +| Link | Description | Difficulty/Complexity | +|----------------------------------------|---------------------------------------------------------------|--------------------------------------| +| [Add Gauge to veBAL](gauge-request) | Add a gauge to veBAL and upload it | Low - Noob | +| [Transfer DAO Funds](funding) | Transfer funds from the treasury one or more other addresses | Low - Noob | +| [Gauge Replacement](gauge-replacement) | Kill one gauge and add another for pool or gauge replacements | Moderate - Requires basic git skillz | + diff --git a/BIPs/00examples/gauge-replacement/BIP-157.example/mainnetDaoMultisig.report.txt b/BIPs/00examples/gauge-replacement/BIP-157.example/mainnetDaoMultisig.report.txt new file mode 100644 index 000000000..36a8148f2 --- /dev/null +++ b/BIPs/00examples/gauge-replacement/BIP-157.example/mainnetDaoMultisig.report.txt @@ -0,0 +1,9 @@ +BIPs/00examples/gauge-replacement/BIP-157.example/mainnetDaoMultisig.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| killGauge() | 0x4edcb2b46377530bc18bb4d2c7fe46a992c73e100000000000000000000003ec | cbETH-wstETH-BPT | 0x4EdcB2B46377530Bc18BB4D2c7Fe46a992c73e10 | 50 | 0xe624E9E85A5728072313c4F4720cDF8fD4FFdAFC | NA | N/A% | mainnet | ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +``` diff --git a/BIPs/00notGov/07-2023-disableRecovery/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/07-2023-disableRecovery/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..6c77c73c1 --- /dev/null +++ b/BIPs/00notGov/07-2023-disableRecovery/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,81 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "disableRecoveryMode Safu Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0x79c58f70905f734641735bc61e45c19dd9ad60bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2e848426aec6dbf2260535a5bea048ed94d9ff3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/07-2023-disableRecovery/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json b/BIPs/00notGov/07-2023-disableRecovery/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json new file mode 100644 index 000000000..be1d97a52 --- /dev/null +++ b/BIPs/00notGov/07-2023-disableRecovery/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json @@ -0,0 +1,37 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "disableRecoveryMode Safu Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "transactions": [ + { + "to": "0xbad20c15a773bf03ab973302f61fabcea5101f0a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5c78d05b8ecf97507d1cf70646082c54faa4da95", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/07-2023-disableRecovery/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json b/BIPs/00notGov/07-2023-disableRecovery/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json new file mode 100644 index 000000000..27c863172 --- /dev/null +++ b/BIPs/00notGov/07-2023-disableRecovery/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json @@ -0,0 +1,48 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "disableRecoveryMode Safu Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "transactions": [ + { + "to": "0x1D0A8A31CDB04EFAC3153237526FB15CC65A2520", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE1F2C039A68A216DE6DD427BE6C60DECF405762A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDF725FDE6E89981FB30D9BF999841AC2C160B512", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/07-2023-disableRecovery/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json b/BIPs/00notGov/07-2023-disableRecovery/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json new file mode 100644 index 000000000..a5b50a2eb --- /dev/null +++ b/BIPs/00notGov/07-2023-disableRecovery/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "disableRecoveryMode Safu Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "transactions": [ + { + "to": "0x77e97d4908be63394bc5dff72c8c7bddf1699882", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x513cdee00251f39de280d9e5f771a6eafebcc88e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd80ef9fabfdc3b52e17f74c383cf88ee2efbf0b6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe19ed40a47f9b0cea4ca6d372df66107758913ec", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/07-2023-disableRecovery/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json b/BIPs/00notGov/07-2023-disableRecovery/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json new file mode 100644 index 000000000..b41932615 --- /dev/null +++ b/BIPs/00notGov/07-2023-disableRecovery/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json @@ -0,0 +1,37 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "disableRecoveryMode Safu Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "transactions": [ + { + "to": "0x542f16da0efb162d20bf4358efa095b70a100f9e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8bc65eed474d1a00555825c91feab6a8255c2107", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/07-2023-disableRecovery/readyPools.csv b/BIPs/00notGov/07-2023-disableRecovery/readyPools.csv new file mode 100644 index 000000000..eb8d24ad3 --- /dev/null +++ b/BIPs/00notGov/07-2023-disableRecovery/readyPools.csv @@ -0,0 +1,23 @@ +Root Gauge on Ethereum,current pool ID,poolType,Network,Label,Notes,New poolId,New root gauge,"whitelisted, name, isDeep, tokens added?" +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,0x5aee1e99fe86960377de9f88689616916d5dcabe000000000000000000000467,ComposableStable,1,wstETH-rETH-sfrxETH-BPT,Amp: 1000 fee: 0.01,,, +0x5612876e6F6cA370d93873FE28c874e89E741fB9,0x79c58f70905f734641735bc61e45c19dd9ad60bc0000000000000000000004e7,ComposableStable,1,USDC-DAI-USDT,Amp: 5000 fee: 0.005,,, +0x8a88C1f44854C61a466aB55614F6A7778473418b,0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d0000000000000000000004f8,ComposableStable,1,B-vETH-STABLE,no change,,, +0x5aF3B93Fb82ab8691b82a09CBBae7b8D3eB5Ac11,0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f000000000000000000000511,ComposableStable,1,B-baoUSD-LUSD-BPT,no change,,, +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,ComposableStable,1,wbETH-wstETH,Amp: 1500 fee: 0.01,,, +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,ComposableStable,1,ankrETH/wstETH,no change,,, +0xD449Efa0A587f2cb6BE3AE577Bc167a774525810,0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d000000000000000000000051b,ComposableStable,1,B-baoETH-ETH-BPT,no change,,, +0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA,0xbfce47224b4a938865e3e2727dc34e0faa5b1d82000000000000000000000527,ComposableStable,1,uniETH-WETH,no change,,, +0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434,0x156c02f3f7fef64a3a9d80ccf7085f23cce91d76000000000000000000000570,ComposableStable,1,vETH/WETH BPT,no change,,, +0xf8C85bd74FeE26831336B51A90587145391a27Ba,0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,ComposableStable,100,bb-WETH-wstETH,no change,,, +0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff,0x5c78d05b8ecf97507d1cf70646082c54faa4da95000000000000000000000030,ComposableStable,100,bb-agEUR-EURe,no change,,, +0x790DE8ABE859f399023BCe73B5FE5C4870cD816A,0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a,ComposableStable,137,2eur (agEUR),no change,,, +0x16289F675Ca54312a8fCF99341e7439982888077,0x513cdee00251f39de280d9e5f771a6eafebcc88e000000000000000000000a6b,ComposableStable,137,2eur (PAR),no change,,, +0x31F99c542CbE456FcbBe99D4bf849Af4D7fB5405,0xd80ef9fabfdc3b52e17f74c383cf88ee2efbf0b6000000000000000000000a65,ComposableStable,137,B-tetuQi-Stable,no change,,, +0x455f20c54b5712a84454468c7831f7c431aeEB1C,0xe19ed40a47f9b0cea4ca6d372df66107758913ec000000000000000000000b41,ComposableStable,137,2BRL (BRZ),no change,,, +0xc4b6cc9A444337b1Cb8cBbDD9de4d983f609C391,0x542f16da0efb162d20bf4358efa095b70a100f9e000000000000000000000436,ComposableStable,42161,2BTC,no change,,, +0x25869f277f474FA9459F40F5D4cB0D6A8Ab41967,0x8bc65eed474d1a00555825c91feab6a8255c2107000000000000000000000453,ComposableStable,42161,DOLA/USDC BPT,"no change, use native USDC",,, +0x870Cd189889C1117b33bc8c94394a7477d4EB6fa,0x01990f1e6f7f32296f125ee9469705c1c070054d000000000000000000000461,ComposableStable,42161,Stafi rETH/WETH,no change,,, +0x54f220a891f468629027C3Cc8A58722D4F576402,0x1D0A8A31CDB04EFAC3153237526FB15CC65A252000000000000000000000000F,ComposableStable,1101,wETH/rETH,amp: 1500,,, +0xce99399fb4De36056A6831b159572E271360ea40,0xE1F2C039A68A216DE6DD427BE6C60DECF405762A00000000000000000000000E ,ComposableStable,1101,wETH/wstETH,no change,,, +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,0xDF725FDE6E89981FB30D9BF999841AC2C160B512000000000000000000000010 ,ComposableStable,1101,wstETH/rETH,amp: 3000,,, +0x6F3b31296FD2457eba6Dca3BED65ec79e06c1295,0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9000000000000000000000555,ComposableStable,1,R-DAI-BLP,R<>boosted DAI/sDAI. no amp/fee change,,, \ No newline at end of file diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..aa3f04aa5 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,869 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2d8a0dc8170e2251ed6ab59cc43a981d1e05511d06a8c65226eb06278e3ae231\",\"0x950f47d4c7cbd9a3b68b5ab354673981827bd5e9a7b8e5cf4057f8bd547b675f\",\"0xe4814396e9db5314024c424f43d6a129829efad6c545df373b226431cbcadbd3\"]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x02D928E68D8F10C0358566152677Db51E1e2Dc8C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xbc0f2372008005471874e426e86ccfae7b4de79d", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xdba274b4d04097b90a72b62467d828cefd708037", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x804cdb9116a10bb78768d3252355a1b18067bf8f", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9210f1204b5a24742eba12f710636d76240df3d0", + "duration": "0" + } + }, + { + "to": "0x9001cBbD96F54a658FF4e6E65AB564DED76a5431", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4a82b580365cff9b146281ab72500957a849abdc", + "duration": "0" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe03af00fabe8401560c1ff7d242d622a5b601573", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2f4eb100552ef93840d5adc30560e5513dfffacb", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x82698aecc9e28e9bb27608bd52cf57f704bd1b83", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xae37d54ae477268b9997d4161b96b8200755935c", + "duration": "0" + } + }, + { + "to": "0xE0fCBf4d98F0aD982DB260f86cf28b49845403C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xa1697f9af0875b63ddc472d6eebada8c1fab8568", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692", + "duration": "0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a\",\"0x650376aebfe02b35334f3ae96d46b9e5659baa84220d58312d9d2e2920ec9f1d\",\"0xa32a74d0340eda2bd1a7c5ec04d47e7a95f472e66d159ecf6e21d957a5a003a9\",\"0xc4d951f4e2b18951a2744f120e996aed880151f929157b787c7191357e83e8eb\",\"0xd3f06ece971762157e9c58797051a03bb62d731bdf05ea4de799b7223f9463c2\"]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x0A0FB4ff697dE5ac5B6770CD8eE1B72AF80b57CF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0AFBd58bEcA09545e4fb67772faf3858e610bcD0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x126e7643235ec0ab9c103c507642dC3F4cA23C66", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x159cB00338fB63f263fd6f621Df619cEf71DA954", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x246ffB4d928E394a02E45761FecdbA6C2e79B8eB", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2FF1A9Dbdacd55297452cFD8a4d94724Bc22a5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x331d50e0b00fc1C32742F151E56B9B616227E23E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x335d1709D4dA9aca59d16328db5Cd4eA66BFe06b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x395d8A1D9aD82B5ABE558F8AbbFe183B27138af4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3BB22Fc9033b802F2AC47c18885F63476F158aFC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4A82b580365Cff9B146281Ab72500957a849ABDC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x60D604890feaa0b5460B28A424407c24fe89374a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6667c6fa9f2b3Fc1Cc8D85320b62703d938E4385", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7337224D59CB16C2Dc6938CD45A7b2c60C865D6A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8E6eC57A822c2F527F2Df7C7D7D361dF3E7530a1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B1c8407a360443A9E5ECA004713E4088FAB8AC0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1697F9Af0875B63DdC472d6EeBADa8C1fAB8568", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa8b103A10A94f4f2D7Ed2FdCd5545E8075573307", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbc0F2372008005471874e426e86CCFae7B4De79d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbFA413A2ff0F20456d57B643746133F54bFE0cd2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcbFA4532D8B2ade2C261D3DD5ef2A2284f792692", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD6E355036f41dC261B3f1ed3Bbc6003E87AAdB4f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDbA274B4D04097b90A72b62467d828cEFD708037", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDc063deAfcE952160eC112FA382ac206305657e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDEC02e6642e2c999aF429F5cE944653CAd15e093", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe03aF00faBe8401560c1FF7d242d622a5b601573", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF22ff21e17157340575158aD7394E068048dd98B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF71d0774B214c4cf51E33Eb3d30Ef98132e4DBaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFD11CCdBdb7AB91Cb9427A6d6BF570C95876d195", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfeF969638C52899f91781f1Be594aF6f40B99BAd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..d8657abd4 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,369 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | | "0x2d8a0dc8170e2251ed6ab59cc43a981d1e05511d06a8c65226eb06278e3ae231" | N/A | 0 | +| | | | | "0x950f47d4c7cbd9a3b68b5ab354673981827bd5e9a7b8e5cf4057f8bd547b675f" | | | +| | | | | "0xe4814396e9db5314024c424f43d6a129829efad6c545df373b226431cbcadbd3" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | | "0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a" | N/A | 20 | +| | | | | "0x650376aebfe02b35334f3ae96d46b9e5659baa84220d58312d9d2e2920ec9f1d" | | | +| | | | | "0xa32a74d0340eda2bd1a7c5ec04d47e7a95f472e66d159ecf6e21d957a5a003a9" | | | +| | | | | "0xc4d951f4e2b18951a2744f120e996aed880151f929157b787c7191357e83e8eb" | | | +| | | | | "0xd3f06ece971762157e9c58797051a03bb62d731bdf05ea4de799b7223f9463c2" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+=========================================================================================================+=========+==========================================================+==============+============+ +| setTokenRateCacheDuration | 0x02D928E68D8F10C0358566152677Db51E1e2Dc8C (Not Found) | 0 | { | N/A | 1 | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684 (Not Found) | 0 | { | N/A | 2 | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa (Not Found) | 0 | { | N/A | 3 | +| | | | "token": [ | | | +| | | | "0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa (Not Found) | 0 | { | N/A | 4 | +| | | | "token": [ | | | +| | | | "0xbc0f2372008005471874e426e86ccfae7b4de79d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa (Not Found) | 0 | { | N/A | 5 | +| | | | "token": [ | | | +| | | | "0xdba274b4d04097b90a72b62467d828cefd708037 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 (Not Found) | 0 | { | N/A | 6 | +| | | | "token": [ | | | +| | | | "0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 (Not Found) | 0 | { | N/A | 7 | +| | | | "token": "0x804cdb9116a10bb78768d3252355a1b18067bf8f", | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 (Not Found) | 0 | { | N/A | 8 | +| | | | "token": [ | | | +| | | | "0x9210f1204b5a24742eba12f710636d76240df3d0 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x9001cBbD96F54a658FF4e6E65AB564DED76a5431 (Not Found) | 0 | { | N/A | 9 | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x99c88AD7dc566616548adde8ED3eFfa730eB6C34 (Not Found) | 0 | { | N/A | 10 | +| | | | "token": [ | | | +| | | | "0x4a82b580365cff9b146281ab72500957a849abdc (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x99c88AD7dc566616548adde8ED3eFfa730eB6C34 (Not Found) | 0 | { | N/A | 11 | +| | | | "token": [ | | | +| | | | "0xe03af00fabe8401560c1ff7d242d622a5b601573 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xA13a9247ea42D743238089903570127DdA72fE44 (tokens/bb_a_usd) | 0 | { | N/A | 12 | +| | | | "token": [ | | | +| | | | "0x2f4eb100552ef93840d5adc30560e5513dfffacb (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xA13a9247ea42D743238089903570127DdA72fE44 (tokens/bb_a_usd) | 0 | { | N/A | 13 | +| | | | "token": [ | | | +| | | | "0x82698aecc9e28e9bb27608bd52cf57f704bd1b83 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xA13a9247ea42D743238089903570127DdA72fE44 (tokens/bb_a_usd) | 0 | { | N/A | 14 | +| | | | "token": [ | | | +| | | | "0xae37d54ae477268b9997d4161b96b8200755935c (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xE0fCBf4d98F0aD982DB260f86cf28b49845403C5 (Not Found) | 0 | { | N/A | 15 | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d (Not Found) | 0 | { | N/A | 16 | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 (Not Found) | 0 | { | N/A | 17 | +| | | | "token": [ | | | +| | | | "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 (Not Found) | 0 | { | N/A | 18 | +| | | | "token": [ | | | +| | | | "0xa1697f9af0875b63ddc472d6eebada8c1fab8568 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 (Not Found) | 0 | { | N/A | 19 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x0A0FB4ff697dE5ac5B6770CD8eE1B72AF80b57CF (Not Found) | 0 | { | N/A | 21 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x0AFBd58bEcA09545e4fb67772faf3858e610bcD0 (Not Found) | 0 | { | N/A | 22 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x126e7643235ec0ab9c103c507642dC3F4cA23C66 (Not Found) | 0 | { | N/A | 23 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x159cB00338fB63f263fd6f621Df619cEf71DA954 (Not Found) | 0 | { | N/A | 24 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x246ffB4d928E394a02E45761FecdbA6C2e79B8eB (Not Found) | 0 | { | N/A | 25 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x2FF1A9Dbdacd55297452cFD8a4d94724Bc22a5F7 (Not Found) | 0 | { | N/A | 26 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x331d50e0b00fc1C32742F151E56B9B616227E23E (20230206-aave-rebalanced-linear-pool-v4/MockAaveLinearPool) | 0 | { | N/A | 27 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x335d1709D4dA9aca59d16328db5Cd4eA66BFe06b (Not Found) | 0 | { | N/A | 28 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x395d8A1D9aD82B5ABE558F8AbbFe183B27138af4 (20230315-silo-linear-pool/MockSiloLinearPool) | 0 | { | N/A | 29 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x3BB22Fc9033b802F2AC47c18885F63476F158aFC (Not Found) | 0 | { | N/A | 30 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x4A82b580365Cff9B146281Ab72500957a849ABDC (Not Found) | 0 | { | N/A | 31 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x60D604890feaa0b5460B28A424407c24fe89374a (Not Found) | 0 | { | N/A | 32 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x6667c6fa9f2b3Fc1Cc8D85320b62703d938E4385 (Not Found) | 0 | { | N/A | 33 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x7337224D59CB16C2Dc6938CD45A7b2c60C865D6A (Not Found) | 0 | { | N/A | 34 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x8E6eC57A822c2F527F2Df7C7D7D361dF3E7530a1 (Not Found) | 0 | { | N/A | 35 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x9B1c8407a360443A9E5ECA004713E4088FAB8AC0 (Not Found) | 0 | { | N/A | 36 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xA1697F9Af0875B63DdC472d6EeBADa8C1fAB8568 (Not Found) | 0 | { | N/A | 37 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xa8b103A10A94f4f2D7Ed2FdCd5545E8075573307 (20230213-gearbox-linear-pool/MockGearboxLinearPool) | 0 | { | N/A | 38 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xbc0F2372008005471874e426e86CCFae7B4De79d (Not Found) | 0 | { | N/A | 39 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xbFA413A2ff0F20456d57B643746133F54bFE0cd2 (Not Found) | 0 | { | N/A | 40 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xcbFA4532D8B2ade2C261D3DD5ef2A2284f792692 (Not Found) | 0 | { | N/A | 41 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xD6E355036f41dC261B3f1ed3Bbc6003E87AAdB4f (Not Found) | 0 | { | N/A | 42 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDbA274B4D04097b90A72b62467d828cEFD708037 (Not Found) | 0 | { | N/A | 43 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDc063deAfcE952160eC112FA382ac206305657e6 (Not Found) | 0 | { | N/A | 44 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDEC02e6642e2c999aF429F5cE944653CAd15e093 (20230208-euler-linear-pool/MockEulerLinearPool) | 0 | { | N/A | 45 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xe03aF00faBe8401560c1FF7d242d622a5b601573 (Not Found) | 0 | { | N/A | 46 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xF22ff21e17157340575158aD7394E068048dd98B (Not Found) | 0 | { | N/A | 47 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xF71d0774B214c4cf51E33Eb3d30Ef98132e4DBaA (Not Found) | 0 | { | N/A | 48 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xFD11CCdBdb7AB91Cb9427A6d6BF570C95876d195 (Not Found) | 0 | { | N/A | 49 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xfeF969638C52899f91781f1Be594aF6f40B99BAd (20230206-erc4626-linear-pool-v3/MockERC4626LinearPool) | 0 | { | N/A | 50 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..ec8ae0ce1 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,2644 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x1bd2F176a812e312077BcA87e37c08432Bb09F3e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4C81255Cc9eD7062180ea99962fE05aC0D57350B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4CbdE5C4B4B53EBE4aF4adB85404725985406163", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B692f571b256140a39a34676BffA30634c586e1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc2B021133D1b0cF07dba696fd5DD89338428225B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE8C56405Bc405840154d9b572927F4197D110dE1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0d05Aac44aC7Dd3c7ba5d50Be93EB884A057d234", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0DA692Ac0611397027c91E559cFD482C4197e403", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11839D635e2F0270DA37e8ef4324D4d5d5432957", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1bd2F176a812e312077BcA87e37c08432Bb09F3e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x26c2B83FC8535DeEaD276f5Cc3ad9c1a2192E027", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2B218683178d029BAB6c9789b1073aA6c96E5176", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2e52c64FD319E380cDbCFC4577eA1Fda558a32e4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2F4eb100552ef93840d5aDC30560E5513DFfFACb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3035917bE42aF437CBdD774Be26B9EC90a2BD677", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3CdAE4f12A67ba563499e102f309c73213cB241c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3f7a7fd7F214bE45EC26820Fd01aC3bE4fC75aa7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3fCb7085B8F2F473F80bF6D879cAe99eA4DE9344", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4228290eE9cab692938Ff0b4ba303FBCDB68e9F2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x454Ed96955d04D2f5cDD05E0Fd1C77975bFE5307", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4C81255Cc9eD7062180ea99962fE05aC0D57350B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4CbdE5C4B4B53EBE4aF4adB85404725985406163", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4cE277Df0FeB5B4d07a0ca2ADCf5326E4005239d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x639883476960a23b38579acfd7D71561A0f408Cf", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6a1eB2e9B45e772F55bd9a34659A04B6F75Da687", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6C56E72c551B5aC4Bf54A620A76077cA768C8FE4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x74CBfAF94A3577c539a9dCEE9870A6349a33b34f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x813E3fE1761f714c502d1d2d3a7CCEB33f37F59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x82698aeCc9E28e9Bb27608Bd52cF57f704BD1B83", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9516a2d25958EdB8da246a320f2c7d94A0DBe25d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x959216BB492B2efa72b15B7AAcEa5B5C984c3ccA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B692f571b256140a39a34676BffA30634c586e1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9d7f992c900FbeA0EC314Bdd71b7cC1becF76A33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC5B4EF7eDe2F2843a704E96dcAA637F4BA3Dc3f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae37D54Ae477268B9997d4161B96b8200755935c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB841B062eA8CCf5C4cb78032e91dE4aE87556042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbB6881874825E60e1160416D6C426eae65f2459E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc2B021133D1b0cF07dba696fd5DD89338428225B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc50d4347209F285247BDa8A09Fc1C12CE42031c3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcfAE6E251369467F465f13836Ac8135bd42f8A56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE8C56405Bc405840154d9b572927F4197D110dE1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfa24A90A3F2bBE5FEEA92B95cD0d14Ce709649f9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x02d928e68d8f10c0358566152677db51e1e2dc8c", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x04248aabca09e9a1a3d5129a7ba05b7f17de7684", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1bd2f176a812e312077bca87e37c08432bb09f3e", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x26c2b83fc8535deead276f5cc3ad9c1a2192e027", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x41503c9d499ddbd1dcdf818a1b05e9774203bf46", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb2", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4c81255cc9ed7062180ea99962fe05ac0d57350b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4cbde5c4b4b53ebe4af4adb85404725985406163", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x639883476960a23b38579acfd7d71561a0f408cf", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9001cbbd96f54a658ff4e6e65ab564ded76a5431", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1697f9af0875b63ddc472d6eebada8c1fab8568", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xae8535c23afedda9304b03c68a3563b75fc8f92b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbb6881874825e60e1160416d6c426eae65f2459e", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc2b021133d1b0cf07dba696fd5dd89338428225b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc443c15033fcb6cf72cc24f1bda0db070ddd9786", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc50d4347209f285247bda8a09fc1c12ce42031c3", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcfae6e251369467f465f13836ac8135bd42f8a56", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe0fcbf4d98f0ad982db260f86cf28b49845403c5", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e1", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe8c56405bc405840154d9b572927f4197d110de1", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xeb567dde03f3da7fe185bdacd5ab495ab220769d", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf57c794f42da72b38c8f610ff3b5e8502e48cbde", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", + "value": "0" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x06d27c0FE5AbF6020bf56E47c72Ca002dD5d9f54", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x29488df9253171AcD0a0598FDdA92C5F6E767a38", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9e3f4FB69058244066801404e50889592d33cA11", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x454eb2f12242397688DbfdA241487e67ed80507a", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x19A13793af96f534F0027b4b6a3eB699647368e7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE35f0152f0d49fE8E386E5c42B656321ffB0d477", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x39dF6e857bdf7387273C43eBb373b9D74F467d35", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5669736FD1dF3572f9D519FcCf7536A750CFAc62", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x882f961Def46deadAcf31798B295834a5b6d0c86", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21eC388000B5BA5D9e3DF3848EA0c1f58e054Af7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3eFd3E18504dC213188Ed2b694F886A305a6e5ed", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x639F4583E505e9E0A16C5D90E1AF61b47415A3A9", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe9E6E9597123034Fa3fc73D482852e18EdF9c282", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x224989bC31286f0E6Dd6F32C0E475BbD4579A976", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5c0e6d132C53DA7F6e958EdF13db0FA02C5b2eC6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb7b9B9D35e7F9E324C762235FB69848175C03A19", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x735B275a567F6c921c82F83D4515beC1F72038D3", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdb218DC1394BbD787bb059dBd9F7E41063e16374", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x95Ee4c90aC8AaFbAe0DfE18F08a290b59eacbc1b", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6f06b425e1bc11FC486C308c22e503d188525F06", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1EcB261dc3496675c54514e44deA2a5115aEcb38", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xEE3cc827EF3e7a00a728Fd52199cd5A6e336361D", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7a4e71a8A33d3b385279079c503ca93905dd553e", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3A7Ed8916Ebb9131966b9b3af3cd8B9adcc53559", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x774D0F67DcFA5568cA435c70fbA272C64352d859", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE41736b4e78be41Bd03EbAf8F86EA493C6e9EA96", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xCe3a024bAF36C91d315722B093928020a4F56622", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x80aed5C5C683FEC86817C98da334DD72424E7297", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x90DDAa2A6D192Db2F47195d847626F94E940c7Ac", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x175FAb9C7aB502B9E76E7fca0C9Da618387EBAdA", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBc771929359B1A6386801705e8D185205d8f1CBF", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb12ADA23eE766bd6b596E2bE556ea2046758b87c", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2Cb5EB92314bf3BFE7977e059A72A806d353fd21", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc85679E41f1F98E694D9F8983fdD484F98F2eB02", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.report.txt new file mode 100644 index 000000000..9b18878e4 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.report.txt @@ -0,0 +1,728 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/emergency (0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888) +CHAIN(S): `mainnet, optimism, zkevm, polygon, arbitrum, gnosis` +``` ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==========================+======+============================================+=========+========+==============+=======+============+==========================================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x1bd2f176a812e312077bca87e37c08432bb09f3e0000000000000000000005a1 | qETH-bb-a-WETH-BPT | 100 | 0x06d27c0FE5AbF6020bf56E47c72Ca002dD5d9f54 | 0.04% | 100.0% | mainnet | N/A | 85 | ['qETH-bb-a-WETH-BPT(0x1bd2F176a812e312077BcA87e37c08432Bb09F3e)', 'qETH(0x93ef1Ea305D11A9b2a3EbB9bB4FCc34695292E7d)', 'bb-a-WETH(0xbB6881874825E60e1160416D6C426eae65f2459E)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x26c2b83fc8535deead276f5cc3ad9c1a2192e02700020000000000000000056b | OHM/bbaDAI BPT | N/A | 0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07 | 0.3% | 100.0% | mainnet | N/A | 86 | ['OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)', 'bb-a-DAI(0x6667c6fa9f2b3Fc1Cc8D85320b62703d938E4385)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x41503c9d499ddbd1dcdf818a1b05e9774203bf46000000000000000000000594 | wstETH-bb-a-WETH-BPT | 5000 | 0x29488df9253171AcD0a0598FDdA92C5F6E767a38 | 0.01% | 100.0% | mainnet | N/A | 87 | ['wstETH-bb-a-WETH-BPT(0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46)', 'wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'bb-a-WETH(0xbB6881874825E60e1160416D6C426eae65f2459E)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x4c81255cc9ed7062180ea99962fe05ac0d57350b0000000000000000000005a3 | cbETH-bb-a-WETH-BPT | 1500 | 0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07 | 0.001% | 100.0% | mainnet | N/A | 88 | ['cbETH-bb-a-WETH-BPT (0x4C81255Cc9eD7062180ea99962fE05aC0D57350B)', 'bb-a-WETH(0xbB6881874825E60e1160416D6C426eae65f2459E)', 'cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x4cbde5c4b4b53ebe4af4adb85404725985406163000000000000000000000595 | B-ETHx/bb-a-WETH | 1500 | 0x9e3f4FB69058244066801404e50889592d33cA11 | 0.04% | 100.0% | mainnet | N/A | 89 | ['B-ETHx/bb-a-WETH (0x4CbdE5C4B4B53EBE4aF4adB85404725985406163)', 'ETHx(0xA35b1B31Ce002FBF2058D22F30f95D405200A15b)', 'bb-a-WETH(0xbB6881874825E60e1160416D6C426eae65f2459E)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x639883476960a23b38579acfd7d71561a0f408cf000200000000000000000505 | 50STG-50bbaUSD | N/A | 0x454eb2f12242397688DbfdA241487e67ed80507a | 1.0% | 100.0% | mainnet | N/A | 90 | ['STG(0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6)', 'bb-a-USD(0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x99c88ad7dc566616548adde8ed3effa730eb6c3400000000000000000000049a | bb-g-USD | 2000 | 0x19A13793af96f534F0027b4b6a3eB699647368e7 | 0.005% | 100.0% | mainnet | N/A | 91 | ['bb-g-USDC(0x4A82b580365Cff9B146281Ab72500957a849ABDC)', 'bb-g-USD(0x99c88AD7dc566616548adde8ED3eFfa730eB6C34)', 'bb-g-DAI(0xe03aF00faBe8401560c1FF7d242d622a5b601573)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9b692f571b256140a39a34676bffa30634c586e100000000000000000000059d | bb-i-USD | 2000 | 0xE35f0152f0d49fE8E386E5c42B656321ffB0d477 | 0.001% | 100.0% | mainnet | N/A | 92 | ['bb-i-USDT(0x2FF1A9Dbdacd55297452cFD8a4d94724Bc22a5F7)', 'bb-i-USD(0x9B692f571b256140a39a34676BffA30634c586e1)', 'bb-i-USDC(0xbc0F2372008005471874e426e86CCFae7B4De79d)', 'bb-i-DAI(0xDbA274B4D04097b90A72b62467d828cEFD708037)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33000200000000000000000573 | 50OHM/50bbaWETH | N/A | 0x39dF6e857bdf7387273C43eBb373b9D74F467d35 | 0.3% | 100.0% | mainnet | N/A | 93 | ['bb-a-WETH(0x60D604890feaa0b5460B28A424407c24fe89374a)', 'OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xae8535c23afedda9304b03c68a3563b75fc8f92b0000000000000000000005a0 | swETH-bb-a-WETH-BPT | 500 | 0x5669736FD1dF3572f9D519FcCf7536A750CFAc62 | 0.001% | 100.0% | mainnet | N/A | 94 | ['swETH-bb-a-WETH-BPT(0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b)', 'bb-a-WETH(0xbB6881874825E60e1160416D6C426eae65f2459E)', 'swETH(0xf951E335afb289353dc249e82926178EaC7DEd78)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef3300000000000000000000058d | R-bb-s-DAI-BLP | 120 | 0x882f961Def46deadAcf31798B295834a5b6d0c86 | 0.05% | 100.0% | mainnet | N/A | 95 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'bb-s-DAI(0x2B218683178d029BAB6c9789b1073aA6c96E5176)', 'R-bb-s-DAI-BLP(0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xc2b021133d1b0cf07dba696fd5dd89338428225b000000000000000000000598 | GHO/bb-a-USD | 100 | 0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2 | 0.05% | 100.0% | mainnet | N/A | 96 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'GHO/bb-a-USD(0xc2B021133D1b0cF07dba696fd5DD89338428225B)', 'bb-a-USD(0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xc443c15033fcb6cf72cc24f1bda0db070ddd9786000000000000000000000593 | bb-a-USD | 4000 | 0x21eC388000B5BA5D9e3DF3848EA0c1f58e054Af7 | 0.0001% | 100.0% | mainnet | N/A | 97 | ['bb-a-USD(0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786)', 'bb-a-USDC(0xc50d4347209F285247BDa8A09Fc1C12CE42031c3)', 'bb-a-USDT(0xcfAE6E251369467F465f13836Ac8135bd42f8A56)', 'bb-a-DAI(0xfa24A90A3F2bBE5FEEA92B95cD0d14Ce709649f9)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd7edb56f63b2a0191742aea32df1f98ca81ed9c600000000000000000000058e | B-wstETH/bb-ma3-weth | 1500 | 0x3eFd3E18504dC213188Ed2b694F886A305a6e5ed | 0.001% | 100.0% | mainnet | N/A | 98 | ['bb-ma3-weth(0x3fCb7085B8F2F473F80bF6D879cAe99eA4DE9344)', 'wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'B-wstETH/bb-ma3-weth(0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e10000000000000000000005a7 | DUSD/bbaUSD-BPT | 500 | 0x639F4583E505e9E0A16C5D90E1AF61b47415A3A9 | 0.04% | 100.0% | mainnet | N/A | 99 | ['DUSD(0xa48F322F8b3edff967629Af79E027628b9Dd1298)', 'bb-a-USD(0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786)', 'DUSD/bbaUSD-BPT(0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xe8c56405bc405840154d9b572927f4197d110de10000000000000000000005a4 | rETH/bbaWETH BPT | 1500 | 0xe9E6E9597123034Fa3fc73D482852e18EdF9c282 | 0.001% | 100.0% | mainnet | N/A | 100 | ['rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)', 'bb-a-WETH(0xbB6881874825E60e1160416D6C426eae65f2459E)', 'rETH/bbaWETH BPT (0xE8C56405Bc405840154d9b572927F4197D110dE1)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x03090a9811181a2afe830a3a0b467698ccf3a8b1000000000000000000000bf5 | bb-am-usd | 3000 | 0x224989bC31286f0E6Dd6F32C0E475BbD4579A976 | 0.01% | 100.0% | L0 sidechain | N/A | 101 | ['bb-am-usd(0x03090a9811181A2AfE830a3a0B467698CcF3a8b1)', 'bb-a-USDT(0x230eCdB2a7CEE56d6889965A023AA0473D6dA507)', 'bb-a-DAI(0x63cE19cCd39930725b8a3D2733627804718Ab83D)', 'bb-a-USDC(0x89bb15076C9f2D86aa98ec6cFfC1a71e31c38953)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x2645b13fd2c5295296e94a76280b968bdcbbdfed000000000000000000000c11 | DUSD/bbaUSD | 500 | 0x5c0e6d132C53DA7F6e958EdF13db0FA02C5b2eC6 | 0.04% | 100.0% | L0 sidechain | N/A | 102 | ['bb-am-usd(0x03090a9811181A2AfE830a3a0B467698CcF3a8b1)', 'DUSD/bbaUSD(0x2645B13FD2c5295296e94A76280B968bDcbbDfED)', 'DUSD(0xEC38621e72D86775a89C7422746de1f52bbA5320)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x402cfdb7781fa85d52f425352661128250b79e12000000000000000000000be3 | MaticX-bb-a-WMATIC-BPT | 2000 | 0xb7b9B9D35e7F9E324C762235FB69848175C03A19 | 0.01% | 100.0% | L0 sidechain | N/A | 103 | ['MaticX-bb-a-WMATIC-BPT(0x402cFDb7781fa85d52F425352661128250B79e12)', 'bb-a-WMATIC(0xb0C830DCeB4EF55A60192472c20C8bf19dF03488)', 'MaticX(0xfa68FB4628DFF1028CFEc22b4162FCcd0d45efb6)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5000000000000000000000bf4 | bb-t-USD | 2000 | 0x735B275a567F6c921c82F83D4515beC1F72038D3 | 0.005% | 100.0% | L0 sidechain | N/A | 104 | ['bb-t-USDT(0x7c82A23B4C48D796dee36A9cA215b641C6a8709d)', 'bb-t-USD(0x9321e2250767D79bAb5aA06DAa8606A2B3B7B4C5)', 'bb-t-USDC(0xae646817e458C0bE890b81e8d880206710E3c44e)', 'bb-t-DAI(0xDa1CD1711743e57Dd57102E9e61b75f3587703da)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1000000000000000000000bf6 | FRAX-bb-am-USD | 2000 | 0xdb218DC1394BbD787bb059dBd9F7E41063e16374 | 0.005% | 100.0% | L0 sidechain | N/A | 105 | ['bb-am-usd(0x03090a9811181A2AfE830a3a0B467698CcF3a8b1)', 'FRAX(0x45c32fA6DF82ead1e2EF74d17b76547EDdFaFF89)', 'FRAX-bb-am-USD(0xA8BF1C584519bE0184311C48AdBDc4c15cb2E8C1)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xab269164a10fab22bc87c39946da06c870b172d6000000000000000000000bfc | wstETH-bb-a-WETH-BPT | 1500 | 0x95Ee4c90aC8AaFbAe0DfE18F08a290b59eacbc1b | 0.01% | 100.0% | L0 sidechain | N/A | 106 | ['wstETH(0x03b54A6e9a984069379fae1a4fC4dBAE93B3bCCD)', 'bb-a-WETH(0x25e57F4612912614e6C99616Bd2aBB9b5Ae71E99)', 'wstETH-bb-a-WETH-BPT(0xAB269164a10faB22BC87c39946da06C870B172D6)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3000000000000000000000be2 | stMATIC-bb-a-WMATIC-BPT | 2000 | 0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7 | 0.01% | 100.0% | L0 sidechain | N/A | 107 | ['stMATIC(0x3A58a54C066FdC0f2D55FC9C89F0415C92eBf3C4)', 'stMATIC-bb-a-WMATIC-BPT(0xAC2CaE8D2f78A4a8F92f20dbe74042Cd0a8d5Af3)', 'bb-a-WMATIC(0xb0C830DCeB4EF55A60192472c20C8bf19dF03488)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be000000000000000000000be4 | truMATIC-bb-a-WMATIC-BPT | 1500 | 0x6f06b425e1bc11FC486C308c22e503d188525F06 | 0.01% | 100.0% | L0 sidechain | N/A | 108 | ['bb-a-WMATIC(0xb0C830DCeB4EF55A60192472c20C8bf19dF03488)', 'truMATIC-bb-a-WMATIC-BPT(0xb266aC3b7C98D7Bcb28731Dac0eF42DbA1b276bE)', 'fxTruMATIC(0xC1381c17d29A22dF5c3015C3D83ebd90AbD0e6b3)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761000200000000000000000bf7 | 2BRLUSD-boosted | N/A | 0x1EcB261dc3496675c54514e44deA2a5115aEcb38 | 0.1% | 2.0% | L0 sidechain | N/A | 109 | ['bb-am-usd(0x03090a9811181A2AfE830a3a0B467698CcF3a8b1)', '2BRL (BRZ)(0x42942cDeC85078Cf0e28e9CB5ACd40CB53997Ed6)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6000000000000000000000bf8 | frxETH-bb-a-WETH | 120 | 0xEE3cc827EF3e7a00a728Fd52199cd5A6e336361D | 0.04% | 100.0% | L0 sidechain | N/A | 110 | ['bb-a-WETH(0x25e57F4612912614e6C99616Bd2aBB9b5Ae71E99)', 'frxETH(0xEe327F889d5947c1dc1934Bb208a1E792F953E96)', 'frxETH-bb-a-WETH(0xF42ED61450458eE4620F5eF4f29adB25a6Ef0fb6)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x4de21b365d6543661d0e105e579a34b963862497000200000000000000000045 | 50bbagGNO-50bbagUSD | N/A | 0x7a4e71a8A33d3b385279079c503ca93905dd553e | 0.1% | 100.0% | L0 sidechain | N/A | 111 | ['bb-ag-USD(0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f)', 'bb-ag-GNO(0xFFFf76A3280e95dC855696111C2562Da09db2Ac0)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xba1a5b19d09a79dada039b1f974015c5a989d5fd000100000000000000000046 | agUSD-agWETH-agWBTC | N/A | 0x3A7Ed8916Ebb9131966b9b3af3cd8B9adcc53559 | 0.1% | 100.0% | L0 sidechain | N/A | 112 | ['bb-ag-WETH(0xbb9Cd48d33033F5EfFBeDec9Dd700C7D7E1dCF50)', 'bb-ag-WBTC(0xd4015683b8153666190e0B2bEC352580EBC4CaCa)', 'bb-ag-USD(0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xe15cac1df3621e001f76210ab12a7f1a1691481f000000000000000000000044 | bb-ag-USD | 2000 | 0x774D0F67DcFA5568cA435c70fbA272C64352d859 | 0.005% | 100.0% | L0 sidechain | N/A | 113 | ['bb-ag-WXDAI(0x41211BBa6d37F5a74b22e667533F080C7C7f3F13)', 'bb-ag-USDT(0xd16f72b02dA5f51231fDe542A8B9E2777a478c88)', 'bb-ag-USD(0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f)', 'bb-ag-USDC(0xE7f88d7d4EF2eb18FCF9Dd7216BA7Da1c46f3dD6)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56000200000000000000000012 | 50bbagGNO-50bbagWETH | N/A | 0xE41736b4e78be41Bd03EbAf8F86EA493C6e9EA96 | 0.1% | 100.0% | L0 sidechain | N/A | 114 | ['bb-ag-WETH(0xbb9Cd48d33033F5EfFBeDec9Dd700C7D7E1dCF50)', 'bb-ag-GNO(0xFFFf76A3280e95dC855696111C2562Da09db2Ac0)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x00fcd3d55085e998e291a0005cedecf58ac14c4000020000000000000000047f | 50STG-50bbaUSD | N/A | 0xCe3a024bAF36C91d315722B093928020a4F56622 | 1.0% | 100.0% | L0 sidechain | N/A | 115 | ['STG(0x6694340fc020c5E6B96567843da2df01b2CE1eb6)', 'bb-a-USD(0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x45c4d1376943ab28802b995acffc04903eb5223f000000000000000000000470 | wstETH-bb-a-WETH-BPT | 5000 | 0x80aed5C5C683FEC86817C98da334DD72424E7297 | 0.01% | 100.0% | L0 sidechain | N/A | 116 | ['wstETH-bb-a-WETH-BPT(0x45C4D1376943Ab28802B995aCfFC04903Eb5223f)', 'wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'bb-a-WETH(0xaD28940024117B442a9EFB6D0f25C8B59e1c950B)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9cebf13bb702f253abf1579294694a1edad00eaa000000000000000000000486 | bbaUSDC/bbaUSDCe | 5000 | 0x90DDAa2A6D192Db2F47195d847626F94E940c7Ac | 0.005% | 100.0% | L0 sidechain | N/A | 117 | ['bb-a-USDCe(0x40af308e3d07ec769D85EB80aFb116525fF4aC99)', 'bbaUSDC/bbaUSDCe(0x9ceBf13BB702F253AbF1579294694A1eDAD00EAA)', 'bb-a-USDC(0xbD724Eb087d4cc0f61a5fED1fFFaF937937E14DE)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xa1ea76c42b2938cfa9abea12357881006c52851300000000000000000000048f | DUSD/bbaUSD | 500 | 0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F | 0.04% | 100.0% | L0 sidechain | N/A | 118 | ['DUSD(0x8EC1877698ACF262Fe8Ad8a295ad94D6ea258988)', 'DUSD/bbaUSD(0xA1ea76C42b2938CfA9abea12357881006c528513)', 'bb-a-USD(0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d000000000000000000000047b | BPT-USD+ | 5000 | 0x175FAb9C7aB502B9E76E7fca0C9Da618387EBAdA | 0.01% | 100.0% | L0 sidechain | N/A | 119 | ['bb-DAI+(0x117a3d474976274B37B7b94aF5DcAde5c90C6e85)', 'bb-USD+(0x284EB68520C8fA83361C1A3a5910aEC7f873C18b)', 'BPT-USD+(0xA8af146d79aC0BB981E4e0d8b788Ec5711b1d5d0)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xbbf9d705b75f408cfcaee91da32966124d2c6f7d00000000000000000000047e | DOLA/bbaUSD-BPT | 200 | 0xBc771929359B1A6386801705e8D185205d8f1CBF | 0.04% | 100.0% | L0 sidechain | N/A | 120 | ['DOLA(0x6A7661795C374c0bFC635934efAddFf3A7Ee23b6)', 'DOLA/bbaUSD-BPT (0xbBF9d705b75F408CFCaEE91dA32966124d2c6F7D)', 'bb-a-USD(0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xbe0f30217be1e981add883848d0773a86d2d2cd4000000000000000000000471 | rETH-bb-a-WETH-BPT | 1500 | 0xb12ADA23eE766bd6b596E2bE556ea2046758b87c | 0.01% | 100.0% | L0 sidechain | N/A | 121 | ['bb-a-WETH(0xaD28940024117B442a9EFB6D0f25C8B59e1c950B)', 'rETH-bb-a-WETH-BPT(0xBe0f30217BE1e981aDD883848D0773A86d2d2CD4)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389000000000000000000000475 | bb-a-USD | 5000 | 0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6 | 0.01% | 100.0% | L0 sidechain | N/A | 122 | ['bb-a-DAI(0x6CB787a419c3e6Ee2e9FF365856c29CD10659113)', 'bb-a-USDC(0xbD724Eb087d4cc0f61a5fED1fFFaF937937E14DE)', 'bb-a-USDT(0xc46be4B8Bb6B5A3d3120660efae9C5416318ED40)', 'bb-a-USD(0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd6d20527c7b0669989ee082b9d3a1c63af742290000000000000000000000483 | BPT-DOLA-USD+ | 570 | 0x2Cb5EB92314bf3BFE7977e059A72A806d353fd21 | 0.01% | 100.0% | L0 sidechain | N/A | 123 | ['bb-USD+(0x284EB68520C8fA83361C1A3a5910aEC7f873C18b)', 'DOLA(0x6A7661795C374c0bFC635934efAddFf3A7Ee23b6)', 'BPT-DOLA-USD+(0xd6d20527C7B0669989ee082b9D3A1c63aF742290)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x098f32d98d0d64dba199fc1923d3bf4192e787190001000000000000000000d2 | bb-rf-SOTRI | N/A | 0xdc08146530DD9910F8ab4D0aD2C184f87e903540 | 0.4% | 100.0% | L0 sidechain | N/A | 124 | ['bb-rf-soWBTC(0x6af3737F6d58Ae8Bcb9f2B597125D37244596E59)', 'bb-rf-soWSTETH(0x7e9250cC13559eB50536859e8C076Ef53e275Fb3)', 'bb-rf-soUSDC(0xEdcfaF390906a8f91fb35B7bAC23f3111dBaEe1C)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x8a2872fd28f42bd9f6559907235e83fbf4167f480001000000000000000000f2 | bb-rf-triple | N/A | 0xAb6b60F389218AFf06DE279BF8c69A246568b5a6 | 0.4% | 100.0% | L0 sidechain | N/A | 125 | ['bb-rfWSTETH(0x48aCE81C09382bfC08eD102e7eadd37e3B049752)', 'bb-rfWBTC(0x8025586aC5fB265A23B9492E7414BecCc2059ec3)', 'bb-rfUSDC(0xF970659221BB9d01B615321b63a26E857ffC030B)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a0000000000000000000000f0 | bb-rf-usd | 100 | 0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2 | 0.01% | 100.0% | L0 sidechain | N/A | 126 | ['bb-rfUSDT(0x20715545C15C76461861Cb0D6ba96929766D05A5)', 'bb-rfDAI(0xA5D4802B4ce6b745B0C9e1b4a79c093D197869c8)', 'bb-rf-usd(0xCd7B2232B7435595bBc7FD7962f1f352fc2cC61a)', 'bb-rfUSDC(0xF970659221BB9d01B615321b63a26E857ffC030B)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9e2d87f904862671eb49cb358e74284762cc9f42000200000000000000000013 | B-wstETH/bboUSD | N/A | 0xc85679E41f1F98E694D9F8983fdD484F98F2eB02 | 0.3% | 100.0% | L0 sidechain | N/A | 127 | ['wstETH(0x5D8cfF95D7A57c0BF50B30b43c7CC0D52825D4a9)', 'bb-o-USD(0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286)'] | ++--------------------------+--------------------------------------------------------------------+--------------------------+------+--------------------------------------------+---------+--------+--------------+-------+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/emergency (0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888) +CHAIN(S): `1` +``` ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++====================+=========================================================================================================+=========+=======================================================================================+==============+============+ +| pause | 0x1bd2F176a812e312077BcA87e37c08432Bb09F3e (Not Found) | 0 | { | N/A | 0 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46 (Not Found) | 0 | { | N/A | 1 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0x4C81255Cc9eD7062180ea99962fE05aC0D57350B (Not Found) | 0 | { | N/A | 2 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0x4CbdE5C4B4B53EBE4aF4adB85404725985406163 (Not Found) | 0 | { | N/A | 3 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0x9B692f571b256140a39a34676BffA30634c586e1 (Not Found) | 0 | { | N/A | 4 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b (Not Found) | 0 | { | N/A | 5 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33 (Not Found) | 0 | { | N/A | 6 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0xc2B021133D1b0cF07dba696fd5DD89338428225B (Not Found) | 0 | { | N/A | 7 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786 (Not Found) | 0 | { | N/A | 8 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6 (Not Found) | 0 | { | N/A | 9 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1 (Not Found) | 0 | { | N/A | 10 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| pause | 0xE8C56405Bc405840154d9b572927F4197D110dE1 (Not Found) | 0 | { | N/A | 11 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x0d05Aac44aC7Dd3c7ba5d50Be93EB884A057d234 (20230409-gearbox-linear-pool-v2/MockGearboxLinearPool) | 0 | { | N/A | 12 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x0DA692Ac0611397027c91E559cFD482C4197e403 (Not Found) | 0 | { | N/A | 13 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x11839D635e2F0270DA37e8ef4324D4d5d5432957 (Not Found) | 0 | { | N/A | 14 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x1bd2F176a812e312077BcA87e37c08432Bb09F3e (Not Found) | 0 | { | N/A | 15 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x26c2B83FC8535DeEaD276f5Cc3ad9c1a2192E027 (Not Found) | 0 | { | N/A | 16 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x2B218683178d029BAB6c9789b1073aA6c96E5176 (Not Found) | 0 | { | N/A | 17 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x2e52c64FD319E380cDbCFC4577eA1Fda558a32e4 (Not Found) | 0 | { | N/A | 18 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x2F4eb100552ef93840d5aDC30560E5513DFfFACb (Not Found) | 0 | { | N/A | 19 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x3035917bE42aF437CBdD774Be26B9EC90a2BD677 (Not Found) | 0 | { | N/A | 20 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x3CdAE4f12A67ba563499e102f309c73213cB241c (Not Found) | 0 | { | N/A | 21 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x3f7a7fd7F214bE45EC26820Fd01aC3bE4fC75aa7 (Not Found) | 0 | { | N/A | 22 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x3fCb7085B8F2F473F80bF6D879cAe99eA4DE9344 (Not Found) | 0 | { | N/A | 23 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46 (Not Found) | 0 | { | N/A | 24 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x4228290eE9cab692938Ff0b4ba303FBCDB68e9F2 (Not Found) | 0 | { | N/A | 25 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x454Ed96955d04D2f5cDD05E0Fd1C77975bFE5307 (Not Found) | 0 | { | N/A | 26 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x4C81255Cc9eD7062180ea99962fE05aC0D57350B (Not Found) | 0 | { | N/A | 27 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x4CbdE5C4B4B53EBE4aF4adB85404725985406163 (Not Found) | 0 | { | N/A | 28 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x4cE277Df0FeB5B4d07a0ca2ADCf5326E4005239d (20230410-aave-linear-pool-v5/MockAaveLinearPool) | 0 | { | N/A | 29 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x639883476960a23b38579acfd7D71561A0f408Cf (Not Found) | 0 | { | N/A | 30 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x6a1eB2e9B45e772F55bd9a34659A04B6F75Da687 (Not Found) | 0 | { | N/A | 31 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x6C56E72c551B5aC4Bf54A620A76077cA768C8FE4 (Not Found) | 0 | { | N/A | 32 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x74CBfAF94A3577c539a9dCEE9870A6349a33b34f (20230410-silo-linear-pool-v2/MockSiloLinearPool) | 0 | { | N/A | 33 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x813E3fE1761f714c502d1d2d3a7CCEB33f37F59D (20221207-aave-rebalanced-linear-pool-v3/MockAaveLinearPool) | 0 | { | N/A | 34 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x82698aeCc9E28e9Bb27608Bd52cF57f704BD1B83 (Not Found) | 0 | { | N/A | 35 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x9516a2d25958EdB8da246a320f2c7d94A0DBe25d (20230409-erc4626-linear-pool-v4/MockERC4626LinearPool) | 0 | { | N/A | 36 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x959216BB492B2efa72b15B7AAcEa5B5C984c3ccA (Not Found) | 0 | { | N/A | 37 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x9B692f571b256140a39a34676BffA30634c586e1 (Not Found) | 0 | { | N/A | 38 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x9d7f992c900FbeA0EC314Bdd71b7cC1becF76A33 (Not Found) | 0 | { | N/A | 39 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xAC5B4EF7eDe2F2843a704E96dcAA637F4BA3Dc3f (20230409-yearn-linear-pool-v2/MockYearnLinearPool) | 0 | { | N/A | 40 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xae37D54Ae477268B9997d4161B96b8200755935c (Not Found) | 0 | { | N/A | 41 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b (Not Found) | 0 | { | N/A | 42 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xB841B062eA8CCf5C4cb78032e91dE4aE87556042 (Not Found) | 0 | { | N/A | 43 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xbB6881874825E60e1160416D6C426eae65f2459E (Not Found) | 0 | { | N/A | 44 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33 (Not Found) | 0 | { | N/A | 45 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xc2B021133D1b0cF07dba696fd5DD89338428225B (Not Found) | 0 | { | N/A | 46 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786 (Not Found) | 0 | { | N/A | 47 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xc50d4347209F285247BDa8A09Fc1C12CE42031c3 (Not Found) | 0 | { | N/A | 48 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xcfAE6E251369467F465f13836Ac8135bd42f8A56 (Not Found) | 0 | { | N/A | 49 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6 (Not Found) | 0 | { | N/A | 50 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1 (Not Found) | 0 | { | N/A | 51 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xE8C56405Bc405840154d9b572927F4197D110dE1 (Not Found) | 0 | { | N/A | 52 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xfa24A90A3F2bBE5FEEA92B95cD0d14Ce709649f9 (Not Found) | 0 | { | N/A | 53 | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 54 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x02d928e68d8f10c0358566152677db51e1e2dc8c (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 55 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x04248aabca09e9a1a3d5129a7ba05b7f17de7684 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 56 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x1bd2f176a812e312077bca87e37c08432bb09f3e (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 57 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x26c2b83fc8535deead276f5cc3ad9c1a2192e027 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 58 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 59 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x41503c9d499ddbd1dcdf818a1b05e9774203bf46 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 60 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 61 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb2 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 62 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x4c81255cc9ed7062180ea99962fe05ac0d57350b (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 63 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x4cbde5c4b4b53ebe4af4adb85404725985406163 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 64 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 65 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": "0x639883476960a23b38579acfd7d71561a0f408cf", | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 66 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 67 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x9001cbbd96f54a658ff4e6e65ab564ded76a5431 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 68 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 69 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xa1697f9af0875b63ddc472d6eebada8c1fab8568 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 70 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xae8535c23afedda9304b03c68a3563b75fc8f92b (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 71 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xbb6881874825e60e1160416d6c426eae65f2459e (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 72 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xc2b021133d1b0cf07dba696fd5dd89338428225b (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 73 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xc443c15033fcb6cf72cc24f1bda0db070ddd9786 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 74 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xc50d4347209f285247bda8a09fc1c12ce42031c3 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 75 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 76 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xcfae6e251369467f465f13836ac8135bd42f8a56 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 77 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xe0fcbf4d98f0ad982db260f86cf28b49845403c5 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 78 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e1 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 79 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xe8c56405bc405840154d9b572927f4197d110de1 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 80 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xeb567dde03f3da7fe185bdacd5ab495ab220769d (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 81 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 82 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xf57c794f42da72b38c8f610ff3b5e8502e48cbde (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 83 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +| emitEvent | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (Not Found) | 0 | { | N/A | 84 | +| | | | "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", | | | +| | | | "message": [ | | | +| | | | "0xfebb0bbf162e64fb9d0dfe186e517d84c395f016 (N/A) " | | | +| | | | ], | | | +| | | | "value": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json new file mode 100644 index 000000000..7998e1856 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json @@ -0,0 +1,214 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x133d241F225750D2c92948E464A5a80111920331]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x133d241F225750D2c92948E464A5a80111920331", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "101", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x50Cf90B954958480b8DF7958A9E965752F627124]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x50Cf90B954958480b8DF7958A9E965752F627124", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x99c88AD7dc566616548adde8ED3eFfa730eB6C34]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.report.txt new file mode 100644 index 000000000..54e608c1c --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/feeManager (0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6) +CHAIN(S): `1` +``` ++-------------+-------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=============+=========================================================================+=========+=========================================================+==============+============+ +| setSwapFees | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B (gauntlet/GauntletFeeSetter) | 0 | { | N/A | 0 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++-------------+-------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..a4a7d212c --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,369 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1405e4b6cd75de6c077cce8e10034aaac128c79249dbc582eb25e65516444573\",\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x45624278c719c9a0d0ef7cd28f5f8f29556927bff3a5854b4edb4d4c5f459545\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\",\"0xc546cdd0e34ec6c7ca0a53f05aab7c8e4e8b9896e1f450d49bd5eb4f90cef6bd\"]", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + }, + { + "to": "0x055A4Cfa8CD9ced1D7Bc9Ae5eb46c404C130E46D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x15873081c0Aa67AD5C5DbA362169d352E2a128a2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x24D9ff56fb09E0F02E74407B12F3264C6e520b5E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3b2ff5888F1bDEDBB45ECe9f1C628356388d22cC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x55b1F937B1335Be355C82e207FD437182c986Ba1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62eC8b26C08Ffe504F22390A65e6E3c1e45E9877", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6af3737F6d58Ae8Bcb9f2B597125D37244596E59", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x75062a04a8CC587c588a6bb50bd0cC009da483DC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7e9250cC13559eB50536859e8C076Ef53e275Fb3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8003eec4aDD35C6D23eB1Ef61b4fA6bbBB23a41a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x888a6195D42a95e80D81e1c506172772a80b80Bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8fE33d737484CA194dedF64AaFa8485327fC5372", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9253d7e1B42fa01eDE2c53f3A21b3B4d13239cD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1a77E5d7D769BFBB790a08EC976dc738bF795B9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA4e597c1bD01859B393b124ce18427Aa4426A871", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB85245929dc65B5EDdb56c4b4E84b20BcE69Db35", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb96C5bAda4Bf6A70E71795a3197BA94751DAE2DB", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xba7834bb3cd2DB888E6A06Fb45E82b4225Cd0C71", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBEF1ccAaDA458a570C37B11A8872988bA1E4FDb9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xC0d7013A05860271a1EDB52415CF74BC85B2AcE7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCE9329f138CD6319FcFBd8704E6AE50B6bb04F31", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd0d334B6CfD77AcC94bAB28C7783982387856449", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd32F78F5aE235269c6d2cABBD26A57fF9FD62967", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD3e47cbdB2A9C1B1DEB857c6415b87fCE63a4bf5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDc2007D9e9A33f50630F26069FAab69c25f7758C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDD89C7cd0613C1557B2DaAC6Ae663282900204f1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEdcfaF390906a8f91fb35B7bAC23f3111dBaEe1C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt new file mode 100644 index 000000000..042d2f690 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.report.txt @@ -0,0 +1,234 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:optimism (10), Multisig: multisigs/dao (0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) +CHAIN(S): `optimism` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x043f9687842771b3dF8852c1E9801DCAeED3f6bc | | "0x1405e4b6cd75de6c077cce8e10034aaac128c79249dbc582eb25e65516444573" | N/A | 0 | +| | | | | "0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d" | | | +| | | | | "0x45624278c719c9a0d0ef7cd28f5f8f29556927bff3a5854b4edb4d4c5f459545" | | | +| | | | | "0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951" | | | +| | | | | "0xc546cdd0e34ec6c7ca0a53f05aab7c8e4e8b9896e1f450d49bd5eb4f90cef6bd" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:optimism (10), Multisig: multisigs/dao (0x043f9687842771b3dF8852c1E9801DCAeED3f6bc) +CHAIN(S): `10` +``` ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++====================+=========================================================================================================+=========+=========================================================+==============+============+ +| enableRecoveryMode | 0x055A4Cfa8CD9ced1D7Bc9Ae5eb46c404C130E46D (Not Found) | 0 | { | N/A | 1 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f (20230206-aave-rebalanced-linear-pool-v4/MockAaveLinearPool) | 0 | { | N/A | 2 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x15873081c0Aa67AD5C5DbA362169d352E2a128a2 (Not Found) | 0 | { | N/A | 3 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x24D9ff56fb09E0F02E74407B12F3264C6e520b5E (Not Found) | 0 | { | N/A | 4 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x3b2ff5888F1bDEDBB45ECe9f1C628356388d22cC (Not Found) | 0 | { | N/A | 5 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x55b1F937B1335Be355C82e207FD437182c986Ba1 (Not Found) | 0 | { | N/A | 6 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x62eC8b26C08Ffe504F22390A65e6E3c1e45E9877 (Not Found) | 0 | { | N/A | 7 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x6af3737F6d58Ae8Bcb9f2B597125D37244596E59 (Not Found) | 0 | { | N/A | 8 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x75062a04a8CC587c588a6bb50bd0cC009da483DC (Not Found) | 0 | { | N/A | 9 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x7e9250cC13559eB50536859e8C076Ef53e275Fb3 (Not Found) | 0 | { | N/A | 10 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x8003eec4aDD35C6D23eB1Ef61b4fA6bbBB23a41a (Not Found) | 0 | { | N/A | 11 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32 (20230213-yearn-linear-pool/MockYearnLinearPool) | 0 | { | N/A | 12 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x888a6195D42a95e80D81e1c506172772a80b80Bc (Not Found) | 0 | { | N/A | 13 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x8fE33d737484CA194dedF64AaFa8485327fC5372 (Not Found) | 0 | { | N/A | 14 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x9253d7e1B42fa01eDE2c53f3A21b3B4d13239cD4 (Not Found) | 0 | { | N/A | 15 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xA1a77E5d7D769BFBB790a08EC976dc738bF795B9 (Not Found) | 0 | { | N/A | 16 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xA4e597c1bD01859B393b124ce18427Aa4426A871 (Not Found) | 0 | { | N/A | 17 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xB85245929dc65B5EDdb56c4b4E84b20BcE69Db35 (Not Found) | 0 | { | N/A | 18 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xb96C5bAda4Bf6A70E71795a3197BA94751DAE2DB (Not Found) | 0 | { | N/A | 19 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xba7834bb3cd2DB888E6A06Fb45E82b4225Cd0C71 (Not Found) | 0 | { | N/A | 20 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xBEF1ccAaDA458a570C37B11A8872988bA1E4FDb9 (Not Found) | 0 | { | N/A | 21 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xC0d7013A05860271a1EDB52415CF74BC85B2AcE7 (Not Found) | 0 | { | N/A | 22 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xCE9329f138CD6319FcFBd8704E6AE50B6bb04F31 (Not Found) | 0 | { | N/A | 23 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xd0d334B6CfD77AcC94bAB28C7783982387856449 (Not Found) | 0 | { | N/A | 24 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xd32F78F5aE235269c6d2cABBD26A57fF9FD62967 (Not Found) | 0 | { | N/A | 25 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xD3e47cbdB2A9C1B1DEB857c6415b87fCE63a4bf5 (Not Found) | 0 | { | N/A | 26 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDc2007D9e9A33f50630F26069FAab69c25f7758C (Not Found) | 0 | { | N/A | 27 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDD89C7cd0613C1557B2DaAC6Ae663282900204f1 (Not Found) | 0 | { | N/A | 28 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xEdcfaF390906a8f91fb35B7bAC23f3111dBaEe1C (Not Found) | 0 | { | N/A | 29 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xf984eb2B8a7eF780245a797A2fCcd82f346409ca (20230206-erc4626-linear-pool-v3/MockERC4626LinearPool) | 0 | { | N/A | 30 | +| | | | "addresses": [ | | | +| | | | "0x133d241F225750D2c92948E464A5a80111920331 (N/A) " | | | +| | | | ], | | | +| | | | "fees": "[100000000000000000]" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x09Df1626110803C7b3b07085Ef1E053494155089.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x09Df1626110803C7b3b07085Ef1E053494155089.json new file mode 100644 index 000000000..b4f2fb58d --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x09Df1626110803C7b3b07085Ef1E053494155089.json @@ -0,0 +1,102 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "501", + "endTime": "1692921600" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "286", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x09Df1626110803C7b3b07085Ef1E053494155089.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x09Df1626110803C7b3b07085Ef1E053494155089.report.txt new file mode 100644 index 000000000..a0426c1e2 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x09Df1626110803C7b3b07085Ef1E053494155089.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0x09Df1626110803C7b3b07085Ef1E053494155089.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:optimism (10), Multisig: multisigs/lm (0x09Df1626110803C7b3b07085Ef1E053494155089) +CHAIN(S): `10` +``` ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++======================+========================================================+=========+=============================================+==============+============+ +| setSwapFeePercentage | 0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929 (Not Found) | 0 | { | N/A | 0 | +| | | | "swapFeePercentage": "100000000000000000" | | | +| | | | } | | | ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json new file mode 100644 index 000000000..954f310c1 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json @@ -0,0 +1,377 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5470F064a19C65263B3033DA3A6124fdf0a9Bab8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62cF35DB540152e94936dE63eFc90d880D4e241B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7FE29a818438Ed2759e30f65c2302295711d66Fc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbec621c9AB4cEDDCc2A157CA9B5C475fAB65f6a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCb89E89d798a4563D1599ea5508282e13B225b52", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCd7B2232B7435595bBc7FD7962f1f352fc2cC61a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd1aF4974fcC995Cf36ba40b189caA92964A9126d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x098f32D98d0D64Dba199FC1923D3BF4192E78719", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x20715545C15C76461861Cb0D6ba96929766D05A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2DA61Ef3Cdcb97efb0f7099c02527fabFe94Dee5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2e2b8b82123789D895fD79913F6dFa51F5b5a0e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x34557eF500Bfc060B8e3f2DA58EF725Bb7D32202", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x362715c164D606682c4Ea7E479633E419d9345Eb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3C74C4eD512050Eb843d89fb9DcD5EBb4668EB6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3e9cBFfd270AE67aBB09D28988e7e785498c7373", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45d37982784F022A9864748b4E8750e1e7019604", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x48aCE81C09382bfC08eD102e7eadd37e3B049752", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5470F064a19C65263B3033DA3A6124fdf0a9Bab8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5936497ffE0dBA0eF272D6301D65c0122862971A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5Bdd8C19b44C3e4a15305601A2C9841bDE9366F0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5D8955a2068EE6d1F7aB17640301219afa4B526f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62cF35DB540152e94936dE63eFc90d880D4e241B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x72D6df381cAC8C2283c0B13fe5262A1F5e8e8d1b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7FE29a818438Ed2759e30f65c2302295711d66Fc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8025586aC5fB265A23B9492E7414BecCc2059ec3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8a2872fd28F42BD9F6559907235E83FbF4167f48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8b6d3aA69c1cF47677281691b1aBf3831BA1329d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA5D4802B4ce6b745B0C9e1b4a79c093D197869c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbec621c9AB4cEDDCc2A157CA9B5C475fAB65f6a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCb89E89d798a4563D1599ea5508282e13B225b52", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCd7B2232B7435595bBc7FD7962f1f352fc2cC61a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd1aF4974fcC995Cf36ba40b189caA92964A9126d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF970659221BB9d01B615321b63a26E857ffC030B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.report.txt new file mode 100644 index 000000000..48da2b3a5 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:optimism (10), Multisig: multisigs/emergency (0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B) +CHAIN(S): `10` +``` ++-----------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+=============================================+==============+============+ +| pause | 0x5470F064a19C65263B3033DA3A6124fdf0a9Bab8 (Not Found) | 0 | { | N/A | 0 | +| | | | "swapFeePercentage": "100000000000000000" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json new file mode 100644 index 000000000..91bcd30ac --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json @@ -0,0 +1,289 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877", + "duration": "0" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb96c5bada4bf6a70e71795a3197ba94751dae2db", + "duration": "0" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c", + "duration": "0" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x88d07558470484c03d3bb44c3ecc36cafcf43253", + "duration": "0" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x888a6195d42a95e80d81e1c506172772a80b80bc", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71", + "duration": "0" + } + }, + { + "to": "0xb1C9aC57594e9B1EC0f3787D9f6744EF4CB0A024", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x88d07558470484c03d3bb44c3ecc36cafcf43253", + "duration": "0" + } + }, + { + "to": "0xb1C9aC57594e9B1EC0f3787D9f6744EF4CB0A024", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809", + "duration": "0" + } + }, + { + "to": "0xde45F101250f2ca1c0f8adFC172576d10c12072D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xdd89c7cd0613c1557b2daac6ae663282900204f1", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.report.txt new file mode 100644 index 000000000..ea0efcad9 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:optimism (10), Multisig: !NOT FOUND (0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513) +CHAIN(S): `10` +``` ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+========================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929 (Not Found) | 0 | { | N/A | 0 | +| | | | "token": [ | | | +| | | | "0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x14969B55a675d13a1700F71A37511bc22D90155a.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x14969B55a675d13a1700F71A37511bc22D90155a.json new file mode 100644 index 000000000..f10c29bf6 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x14969B55a675d13a1700F71A37511bc22D90155a.json @@ -0,0 +1,102 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "11", + "endTime": "1692921600" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt new file mode 100644 index 000000000..d51b84c31 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x14969B55a675d13a1700F71A37511bc22D90155a.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x14969B55a675d13a1700F71A37511bc22D90155a.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/lm (0x14969B55a675d13a1700F71A37511bc22D90155a) +CHAIN(S): `100` +``` ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++======================+========================================================+=========+=============================================+==============+============+ +| setSwapFeePercentage | 0xA611A551b95b205ccD9490657aCf7899daee5DB7 (Not Found) | 0 | { | N/A | 0 | +| | | | "swapFeePercentage": "100000000000000000" | | | +| | | | } | | | ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..24c826ec9 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,252 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x02c2a0f6c6251ab0610c2548b20e0967cc5ae385cd1109cf5f3d9ce72f722ee3\",\"0xa4cf3b6e755d1c52bedde1ca3a92b562e8fec558b3036cd5eeb2c17ce0cc2c6b\"]", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xfedb19ec000d38d92af4b21436870f115db22725", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x41211bba6d37f5a74b22e667533f080c7c7f3f13", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xd16f72b02da5f51231fde542a8b9e2777a478c88", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6", + "duration": "0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e\",\"0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a\"]", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0x225E0047671939A8d78e08EBd692788Abe63f15c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41211BBa6d37F5a74b22e667533F080C7C7f3F13", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x581Ec1f5e7CeD12B186deaE32256AdB53BDd5B08", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbb9Cd48d33033F5EfFBeDec9Dd700C7D7E1dCF50", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd16f72b02dA5f51231fDe542A8B9E2777a478c88", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd4015683b8153666190e0B2bEC352580EBC4CaCa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE7f88d7d4EF2eb18FCF9Dd7216BA7Da1c46f3dD6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFFFf76A3280e95dC855696111C2562Da09db2Ac0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..859aa213d --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,108 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/dao (0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +CHAIN(S): `gnosis` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | | "0x02c2a0f6c6251ab0610c2548b20e0967cc5ae385cd1109cf5f3d9ce72f722ee3" | N/A | 0 | +| | | | | "0xa4cf3b6e755d1c52bedde1ca3a92b562e8fec558b3036cd5eeb2c17ce0cc2c6b" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| Authorizer/grantRoles | multisigs/dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | | "0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e" | N/A | 5 | +| | | | | "0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/dao (0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +CHAIN(S): `100` +``` ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+=========================================================================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0xA611A551b95b205ccD9490657aCf7899daee5DB7 (Not Found) | 0 | { | N/A | 1 | +| | | | "token": [ | | | +| | | | "0xfedb19ec000d38d92af4b21436870f115db22725 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 (Not Found) | 0 | { | N/A | 2 | +| | | | "token": [ | | | +| | | | "0x41211bba6d37f5a74b22e667533f080c7c7f3f13 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 (Not Found) | 0 | { | N/A | 3 | +| | | | "token": [ | | | +| | | | "0xd16f72b02da5f51231fde542a8b9e2777a478c88 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 (Not Found) | 0 | { | N/A | 4 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x225E0047671939A8d78e08EBd692788Abe63f15c (20230206-aave-rebalanced-linear-pool-v4/MockAaveLinearPool) | 0 | { | N/A | 6 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x41211BBa6d37F5a74b22e667533F080C7C7f3F13 (Not Found) | 0 | { | N/A | 7 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x581Ec1f5e7CeD12B186deaE32256AdB53BDd5B08 (20221207-aave-rebalanced-linear-pool-v3/MockAaveLinearPool) | 0 | { | N/A | 8 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xbb9Cd48d33033F5EfFBeDec9Dd700C7D7E1dCF50 (Not Found) | 0 | { | N/A | 9 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xd16f72b02dA5f51231fDe542A8B9E2777a478c88 (Not Found) | 0 | { | N/A | 10 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xd4015683b8153666190e0B2bEC352580EBC4CaCa (Not Found) | 0 | { | N/A | 11 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xE7f88d7d4EF2eb18FCF9Dd7216BA7Da1c46f3dD6 (Not Found) | 0 | { | N/A | 12 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xFFFf76A3280e95dC855696111C2562Da09db2Ac0 (Not Found) | 0 | { | N/A | 13 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json new file mode 100644 index 000000000..f44e99d61 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json @@ -0,0 +1,124 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xB95829AdbaCd8Af89E291DeE78Bc09E24De51d6b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1AC55C31DaC78ca943CB8ebfCa5945ce09e036e2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4De21b365D6543661D0e105E579A34B963862497", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x66F33Ae36dD80327744207a48122F874634B3adA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB95829AdbaCd8Af89E291DeE78Bc09E24De51d6b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB973Ca96a3f0D61045f53255E319AEDb6ED49240", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xba1a5B19D09A79DADA039B1f974015c5A989d5FD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF48f01DCB2CbB3ee1f6AaB0e742c2D3941039d56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.report.txt new file mode 100644 index 000000000..871c32bb3 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/emergency (0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962) +CHAIN(S): `100` +``` ++-----------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+=========================================================+==============+============+ +| pause | 0xB95829AdbaCd8Af89E291DeE78Bc09E24De51d6b (Not Found) | 0 | { | N/A | 0 | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..69857bd4b --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,89 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0xb56db1d3fcc3ae3614e049f605dd7f4d5d9e33d63253ac144e2bcc2521e8fb7d\"]", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x16c9a4d841e88e52b51936106010f27085a529ec", + "duration": "0" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt new file mode 100644 index 000000000..ff08d8793 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt @@ -0,0 +1,34 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/dao (0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +CHAIN(S): `zkevm` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | "0xb56db1d3fcc3ae3614e049f605dd7f4d5d9e33d63253ac144e2bcc2521e8fb7d" | N/A | 0 | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/dao (0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +CHAIN(S): `1101` +``` ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+========================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 (Not Found) | 0 | { | N/A | 1 | +| | | | "token": [ | | | +| | | | "0x16c9a4d841e88e52b51936106010f27085a529ec (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 (Not Found) | 0 | { | N/A | 2 | +| | | | "token": [ | | | +| | | | "0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json new file mode 100644 index 000000000..d39390e9c --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json @@ -0,0 +1,124 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x02c9DCB975262719A61f9B40bDf0987eAD9Add3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x16C9a4D841E88E52b51936106010F27085a529EC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x32BE2d0ddeaF3333501B24a28668cE373BA8E763", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x32f03464FdF909FDf3798f87Ff3712b10c59bd86", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4B718E0E2fEA1dA68b763CD50C446FbA03CEB2Ea", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x68a69c596B3839023C0e08D09682314F582314e5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6F34a44FCe1506352A171232163E7716Dd073ade", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9e2D87f904862671eb49cB358E74284762cC9F42", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xac4b72c01072A52b73ca71105504F1372eFcCE0d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbFD65c6160CFd638A85C645e6e6d8ACac5Dac935", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.report.txt new file mode 100644 index 000000000..2dec3764c --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/emergency (0x79b131498355daa2cC740936fcb9A7dF76A86223) +CHAIN(S): `1101` +``` ++--------------------+------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++====================+================================================================================================+=========+=========================================================+==============+============+ +| enableRecoveryMode | 0x02c9DCB975262719A61f9B40bDf0987eAD9Add3a (20230409-yearn-linear-pool-v2/MockYearnLinearPool) | 0 | { | N/A | 0 | +| | | | "token": [ | | | +| | | | "0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json new file mode 100644 index 000000000..60a787ec7 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json @@ -0,0 +1,58 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1501", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.report.txt new file mode 100644 index 000000000..aca1fd12d --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/1101-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/feesManager (0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09) +CHAIN(S): `1101` +``` ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++======================+========================================================+=========+=============================================+==============+============+ +| setSwapFeePercentage | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 (Not Found) | 0 | { | N/A | 0 | +| | | | "swapFeePercentage": "100000000000000000" | | | +| | | | } | | | ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json new file mode 100644 index 000000000..335f318c8 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json @@ -0,0 +1,1921 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x03090a9811181A2AfE830a3a0B467698CcF3a8b1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2645B13FD2c5295296e94A76280B968bDcbbDfED", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x402cFDb7781fa85d52F425352661128250B79e12", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4ae3661aFa119892f0cc8C43EdaF6A94989Ac171", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9321e2250767D79bAb5aA06DAa8606A2B3B7B4C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8BF1C584519bE0184311C48AdBDc4c15cb2E8C1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAB269164a10faB22BC87c39946da06C870B172D6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC2CaE8D2f78A4a8F92f20dbe74042Cd0a8d5Af3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb266aC3b7C98D7Bcb28731Dac0eF42DbA1b276bE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF42ED61450458eE4620F5eF4f29adB25a6Ef0fb6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x03090a9811181A2AfE830a3a0B467698CcF3a8b1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x04b54ea92D73DE2d62D651Db7d9778F0C49157d8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0889b240A5876aae745Ac19f1771853671dC5d36", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0BC54e914F53f98D16035F4f0D948f3e09C2fac0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0c06e87c7b88D998f645B91c1F53B51294b12Bca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1379b816b9BE611431d693290289C204720Ca56d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x16b98793F3e6a17d15931A2C9F98fE28D1C845A1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x178E029173417b1F9C8bC16DCeC6f697bC323746", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x216d6db0C28204014618482c369d7FBF0A8f3232", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x230eCdB2a7CEE56d6889965A023AA0473D6dA507", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x252Ff6A3A6Fd7B5e8E999DE8e3f5c3b306ED1401", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x25e57F4612912614e6C99616Bd2aBB9b5Ae71E99", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2645B13FD2c5295296e94A76280B968bDcbbDfED", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3dd0843A028C86e0b760b1A76929d1C5Ef93a2dd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3Efb91C4F9B103Ee45885695C67794591916F34E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x402cFDb7781fa85d52F425352661128250B79e12", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4ae3661aFa119892f0cc8C43EdaF6A94989Ac171", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x63cE19cCd39930725b8a3D2733627804718Ab83D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6c8C7fC50247a47038015eb1Fd5dC105D05DAFBA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7F4f4942F2a14B6AB7B08b10ada1AAcede4EE8D4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x89bb15076C9f2D86aa98ec6cFfC1a71e31c38953", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8fd39252d683fDB60BDDD4DF4B53C9380B496D59", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9321e2250767D79bAb5aA06DAa8606A2B3B7B4C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA5a935833F6a5312715F182733EaB088452335d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8BF1C584519bE0184311C48AdBDc4c15cb2E8C1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAB269164a10faB22BC87c39946da06C870B172D6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC2CaE8D2f78A4a8F92f20dbe74042Cd0a8d5Af3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb0C830DCeB4EF55A60192472c20C8bf19dF03488", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb266aC3b7C98D7Bcb28731Dac0eF42DbA1b276bE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBd4e35784c832d0f9049B54cb3609e5907c5b495", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc55eC796A4dEBE625d95436a3531f4950b11bdcf", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc83b55bBD005f1f84906545FcdB145dEE53523E0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD2f3B9E67C69762dd1c88F1D3dADD1649a190761", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd4aCcb350f9CF59fE3cF7A5eE6ED9Ace6A568eA9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xdae301690004946424E41051aCe1791083be42a1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDE0a77aB6689b980C30306B10F9131A007E1AF81", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe2272cDDB2cc408E79e02a73D1Db9acc24a843D5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe6909C2F18A29d97217a6146f045e1780606991F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xED35f28f837E96F81240ebB82e0E3F518C7E8a2F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF0211cCeeBe6fCc45052B4E57Ee95D233F5669D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF28F17be00f8ca3C9b7F66a4Aad5513757fB3341", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF42ED61450458eE4620F5eF4f29adB25a6Ef0fb6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF93579002DBE8046c43FEfE86ec78b1112247BB8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFA2C0bd8327C99db5bdE4c9e9E5cbF30946351bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFf4ce5AAAb5a627bf82f4A571AB1cE94Aa365eA6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x03090a9811181a2afe830a3a0b467698ccf3a8b1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x04b54ea92d73de2d62d651db7d9778f0c49157d8", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x0bc54e914f53f98d16035f4f0d948f3e09c2fac0", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1379b816b9be611431d693290289c204720ca56d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x16b98793f3e6a17d15931a2c9f98fe28d1c845a1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x216690738aac4aa0c4770253ca26a28f0115c595", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x216d6db0c28204014618482c369d7fbf0a8f3232", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x230ecdb2a7cee56d6889965a023aa0473d6da507", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x25e57f4612912614e6c99616bd2abb9b5ae71e99", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x2645b13fd2c5295296e94a76280b968bdcbbdfed", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x3efb91c4f9b103ee45885695c67794591916f34e", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x402cfdb7781fa85d52f425352661128250b79e12", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x63ce19ccd39930725b8a3d2733627804718ab83d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x64efad69f099813021b41f4cac6e749fd55e188f", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6c8c7fc50247a47038015eb1fd5dc105d05dafba", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x89b28a9494589b09dbccb69911c189f74fdadc5a", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x8fd39252d683fdb60bddd4df4b53c9380b496d59", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xab269164a10fab22bc87c39946da06c870b172d6", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb0c830dceb4ef55a60192472c20c8bf19df03488", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb371aa09f5a110ab69b39a84b5469d29f9b22b76", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd4accb350f9cf59fe3cf7a5ee6ed9ace6a568ea9", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xde0a77ab6689b980c30306b10f9131a007e1af81", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe2272cddb2cc408e79e02a73d1db9acc24a843d5", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe78b25c06db117fdf8f98583cdaaa6c92b79e917", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xed35f28f837e96f81240ebb82e0e3f518c7e8a2f", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf28f17be00f8ca3c9b7f66a4aad5513757fb3341", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.report.txt new file mode 100644 index 000000000..ee035dc1f --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:polygon (137), Multisig: multisigs/emergency (0x3c58668054c299bE836a0bBB028Bee3aD4724846) +CHAIN(S): `137` +``` ++-----------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+=============================================+==============+============+ +| pause | 0x03090a9811181A2AfE830a3a0B467698CcF3a8b1 (Not Found) | 0 | { | N/A | 0 | +| | | | "swapFeePercentage": "100000000000000000" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x7c68c42De679ffB0f16216154C996C354cF1161B.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x7c68c42De679ffB0f16216154C996C354cF1161B.json new file mode 100644 index 000000000..a578484e4 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x7c68c42De679ffB0f16216154C996C354cF1161B.json @@ -0,0 +1,58 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x7c68c42De679ffB0f16216154C996C354cF1161B.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x7c68c42De679ffB0f16216154C996C354cF1161B.report.txt new file mode 100644 index 000000000..e1c485c0e --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x7c68c42De679ffB0f16216154C996C354cF1161B.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0x7c68c42De679ffB0f16216154C996C354cF1161B.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:polygon (137), Multisig: multisigs/feeManager (0x7c68c42De679ffB0f16216154C996C354cF1161B) +CHAIN(S): `137` +``` ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++======================+========================================================+=========+=============================================+==============+============+ +| setSwapFeePercentage | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A (Not Found) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": "100000000000000000" | | | +| | | | } | | | ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..fcfbd4d5f --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,692 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0xa8ac31ec9b3ba2ce31c0ddb542ed7e55340831bdb845c17cf097fd61fc7aef25\",\"0xc5be0c5701dc762d9ff25d816978ed0e0ee5e199211676c540ed08b6b4d6a4ff\"]", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x216690738Aac4aa0C4770253CA26a28f0115c595", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x178e029173417b1f9c8bc16dcec6f697bc323746", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xf93579002dbe8046c43fefe86ec78b1112247bb8", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6", + "duration": "0" + } + }, + { + "to": "0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "duration": "0" + } + }, + { + "to": "0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb371aa09f5a110ab69b39a84b5469d29f9b22b76", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x89b28a9494589b09dbccb69911c189f74fdadc5a", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xae646817e458c0be890b81e8d880206710e3c44e", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xB54b2125b711cD183EDD3DD09433439D53961652", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x48e6b98ef6329f8f0a30ebb8c7c960330d648085", + "duration": "0" + } + }, + { + "to": "0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "duration": "0" + } + }, + { + "to": "0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "duration": "0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\",\"0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a\"]", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x0320C1C5B6df19A194D48882aaEC1c72940081D9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x117a3d474976274B37B7b94aF5DcAde5c90C6e85", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x284EB68520C8fA83361C1A3a5910aEC7f873C18b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x43894DE14462B421372bCFe445fA51b1b4A0Ff3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4739E50B59B552D490d3FDc60D200977A38510c0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x52Cc8389C6B93d740325729Cc7c958066CEE4262", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5B77107fCdF2b41903Bab2bc555D4fc14Cf7667D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5BAe72B75CaAb1f260D21BC028c630140607D6e8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x64eFAD69F099813021B41f4CaC6E749FD55e188f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7c82A23B4C48D796dee36A9cA215b641C6a8709d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x894c82800526E0391E709c0983a5AeA3718b7F6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x89B28A9494589b09dbcCb69911c189f74FdAdc5a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9E34631547aDcF2F8cefa0f5f223955C7B137571", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa5fE91dde37D8BF2daCACC0168B115D28eD03f84", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae646817e458C0bE890b81e8d880206710E3c44e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAeF2c171dBE64B0C18977E16e70BFD29d4eE0256", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb59BE8f3C85A9DD6E2899103B6fbF6ea405B99a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDa1CD1711743e57Dd57102E9e61b75f3587703da", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe1Fb90D0d3b47E551d494d7eBe8f209753526B01", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE4885Ed2818Cc9E840A25f94F9b2A28169D1AEA7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEA11645ac7d8f2dEf94C9D8d86Bd766296c9B6b6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt new file mode 100644 index 000000000..3152f2707 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt @@ -0,0 +1,291 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:polygon (137), Multisig: multisigs/dao (0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) +CHAIN(S): `polygon` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 | | "0xa8ac31ec9b3ba2ce31c0ddb542ed7e55340831bdb845c17cf097fd61fc7aef25" | N/A | 0 | +| | | | | "0xc5be0c5701dc762d9ff25d816978ed0e0ee5e199211676c540ed08b6b4d6a4ff" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| Authorizer/grantRoles | multisigs/dao | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 | | "0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d" | N/A | 16 | +| | | | | "0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951" | | | +| | | | | "0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:polygon (137), Multisig: multisigs/dao (0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) +CHAIN(S): `137` +``` ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+=========================================================================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0x216690738Aac4aa0C4770253CA26a28f0115c595 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x48e6B98ef6329f8f0A30eBB8c7C960330d648085 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x178e029173417b1f9c8bc16dcec6f697bc323746 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x48e6B98ef6329f8f0A30eBB8c7C960330d648085 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xf93579002dbe8046c43fefe86ec78b1112247bb8 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x48e6B98ef6329f8f0A30eBB8c7C960330d648085 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x43894de14462b421372bcfe445fa51b1b4a0ff3d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xb371aa09f5a110ab69b39a84b5469d29f9b22b76 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x89b28a9494589b09dbccb69911c189f74fdadc5a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xae646817e458c0be890b81e8d880206710e3c44e (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xda1cd1711743e57dd57102e9e61b75f3587703da (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xB54b2125b711cD183EDD3DD09433439D53961652 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x48e6b98ef6329f8f0a30ebb8c7c960330d648085 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x43894de14462b421372bcfe445fa51b1b4a0ff3d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x0320C1C5B6df19A194D48882aaEC1c72940081D9 (20230213-yearn-linear-pool/MockYearnLinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x117a3d474976274B37B7b94aF5DcAde5c90C6e85 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f (20230206-aave-rebalanced-linear-pool-v4/MockAaveLinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x284EB68520C8fA83361C1A3a5910aEC7f873C18b (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x43894DE14462B421372bCFe445fA51b1b4A0Ff3D (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x4739E50B59B552D490d3FDc60D200977A38510c0 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x52Cc8389C6B93d740325729Cc7c958066CEE4262 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x5B77107fCdF2b41903Bab2bc555D4fc14Cf7667D (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x5BAe72B75CaAb1f260D21BC028c630140607D6e8 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x64eFAD69F099813021B41f4CaC6E749FD55e188f (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x7c82A23B4C48D796dee36A9cA215b641C6a8709d (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x894c82800526E0391E709c0983a5AeA3718b7F6D (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x89B28A9494589b09dbcCb69911c189f74FdAdc5a (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x9E34631547aDcF2F8cefa0f5f223955C7B137571 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xa5fE91dde37D8BF2daCACC0168B115D28eD03f84 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xae646817e458C0bE890b81e8d880206710E3c44e (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xAeF2c171dBE64B0C18977E16e70BFD29d4eE0256 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xb59BE8f3C85A9DD6E2899103B6fbF6ea405B99a4 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDa1CD1711743e57Dd57102E9e61b75f3587703da (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xe1Fb90D0d3b47E551d494d7eBe8f209753526B01 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xE4885Ed2818Cc9E840A25f94F9b2A28169D1AEA7 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xEA11645ac7d8f2dEf94C9D8d86Bd766296c9B6b6 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xf984eb2B8a7eF780245a797A2fCcd82f346409ca (20230206-erc4626-linear-pool-v3/MockERC4626LinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0x7c68c42De679ffB0f16216154C996C354cF1161B.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0x7c68c42De679ffB0f16216154C996C354cF1161B.json new file mode 100644 index 000000000..121dd5480 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0x7c68c42De679ffB0f16216154C996C354cF1161B.json @@ -0,0 +1,102 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "286", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0x7c68c42De679ffB0f16216154C996C354cF1161B.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0x7c68c42De679ffB0f16216154C996C354cF1161B.report.txt new file mode 100644 index 000000000..e11c91f9c --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0x7c68c42De679ffB0f16216154C996C354cF1161B.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0x7c68c42De679ffB0f16216154C996C354cF1161B.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/feeManager (0x7c68c42De679ffB0f16216154C996C354cF1161B) +CHAIN(S): `42161` +``` ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++======================+========================================================+=========+=============================================+==============+============+ +| setSwapFeePercentage | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a (Not Found) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": "100000000000000000" | | | +| | | | } | | | ++----------------------+--------------------------------------------------------+---------+---------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..657992e86 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,504 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x05c66da9aa7f126e8dc8688cfac90477d2313f3e95f1f687a854ebbd04b1c707\",\"0x709836a8faadee3ce9004075ac200f1094b93ca8afdf8642906fbc6712f3e3f0\"]", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x5bae72b75caab1f260d21bc028c630140607d6e8", + "duration": "0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x894c82800526e0391e709c0983a5aea3718b7f6d", + "duration": "0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe1fb90d0d3b47e551d494d7ebe8f209753526b01", + "duration": "0" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x117a3d474976274b37b7b94af5dcade5c90c6e85", + "duration": "0" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x284eb68520c8fa83361c1a3a5910aec7f873c18b", + "duration": "0" + } + }, + { + "to": "0x567ECfCB22205D279BB8Eed3E066989902bF03D5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xee02583596aee94cccb7e8ccd3921d955f17982a", + "duration": "0" + } + }, + { + "to": "0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4739e50b59b552d490d3fdc60d200977a38510c0", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9e34631547adcf2f8cefa0f5f223955c7b137571", + "duration": "0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1405e4b6cd75de6c077cce8e10034aaac128c79249dbc582eb25e65516444573\",\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\"]", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x117a3d474976274B37B7b94aF5DcAde5c90C6e85", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x284EB68520C8fA83361C1A3a5910aEC7f873C18b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4739E50B59B552D490d3FDc60D200977A38510c0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x52Cc8389C6B93d740325729Cc7c958066CEE4262", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5BAe72B75CaAb1f260D21BC028c630140607D6e8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7c82A23B4C48D796dee36A9cA215b641C6a8709d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x894c82800526E0391E709c0983a5AeA3718b7F6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9E34631547aDcF2F8cefa0f5f223955C7B137571", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae646817e458C0bE890b81e8d880206710E3c44e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAeF2c171dBE64B0C18977E16e70BFD29d4eE0256", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDa1CD1711743e57Dd57102E9e61b75f3587703da", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe1Fb90D0d3b47E551d494d7eBe8f209753526B01", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..6e1be1007 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,207 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 | | "0x05c66da9aa7f126e8dc8688cfac90477d2313f3e95f1f687a854ebbd04b1c707" | N/A | 0 | +| | | | | "0x709836a8faadee3ce9004075ac200f1094b93ca8afdf8642906fbc6712f3e3f0" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| Authorizer/grantRoles | multisigs/dao | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 | | "0x1405e4b6cd75de6c077cce8e10034aaac128c79249dbc582eb25e65516444573" | N/A | 12 | +| | | | | "0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d" | | | +| | | | | "0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `42161` +``` ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+=========================================================================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x5bae72b75caab1f260d21bc028c630140607d6e8 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x894c82800526e0391e709c0983a5aea3718b7f6d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe1fb90d0d3b47e551d494d7ebe8f209753526b01 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x117a3d474976274b37b7b94af5dcade5c90c6e85 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x284eb68520c8fa83361c1a3a5910aec7f873c18b (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x567ECfCB22205D279BB8Eed3E066989902bF03D5 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xee02583596aee94cccb7e8ccd3921d955f17982a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xda1cd1711743e57dd57102e9e61b75f3587703da (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xda1cd1711743e57dd57102e9e61b75f3587703da (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x4739e50b59b552d490d3fdc60d200977a38510c0 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x117a3d474976274B37B7b94aF5DcAde5c90C6e85 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f (20230206-aave-rebalanced-linear-pool-v4/MockAaveLinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x284EB68520C8fA83361C1A3a5910aEC7f873C18b (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x4739E50B59B552D490d3FDc60D200977A38510c0 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x52Cc8389C6B93d740325729Cc7c958066CEE4262 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x5BAe72B75CaAb1f260D21BC028c630140607D6e8 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x7c82A23B4C48D796dee36A9cA215b641C6a8709d (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32 (20230213-yearn-linear-pool/MockYearnLinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x894c82800526E0391E709c0983a5AeA3718b7F6D (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x9E34631547aDcF2F8cefa0f5f223955C7B137571 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xae646817e458C0bE890b81e8d880206710E3c44e (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xAeF2c171dBE64B0C18977E16e70BFD29d4eE0256 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDa1CD1711743e57Dd57102E9e61b75f3587703da (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xe1Fb90D0d3b47E551d494d7eBe8f209753526B01 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xf984eb2B8a7eF780245a797A2fCcd82f346409ca (20230206-erc4626-linear-pool-v3/MockERC4626LinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json new file mode 100644 index 000000000..238d61bd4 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json @@ -0,0 +1,1680 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x1d7F0d7c8791210c6F13140939Ad61969562afc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1e550b7764Da9638FDD32c8a701364dE31f45eE8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x418dE00Ae109e6f874D872658767866d680eAA19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45C4D1376943Ab28802B995aCfFC04903Eb5223f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9ceBf13BB702F253AbF1579294694A1eDAD00EAA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1ea76C42b2938CfA9abea12357881006c528513", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA50f89e9f439Fde2a6Fe05883721a00475da3C45", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8af146d79aC0BB981E4e0d8b788Ec5711b1d5d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbBF9d705b75F408CFCaEE91dA32966124d2c6F7D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBe0f30217BE1e981aDD883848D0773A86d2d2CD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCAf7aC72F5866B9558f4547e9c5e366A2C851c9A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd6d20527C7B0669989ee082b9D3A1c63aF742290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x00FCD3d55085e998e291a0005cedeCF58aC14c40", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x19b1C92631405A0a9495ccbA0BeCF4f2e8e908bD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1d7F0d7c8791210c6F13140939Ad61969562afc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1e550b7764Da9638FDD32c8a701364dE31f45eE8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1Fa7F727934226aedaB636D62a084931b97d366b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2A96254Ca32020b20eD3506F8f75318DA24709F9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x36942963e3b6F37eCC45a4e72349558514233F00", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3f53A862919ccFA023CB6AcE91378a79Fb0F6Bf5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x40af308e3d07ec769D85EB80aFb116525fF4aC99", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x418dE00Ae109e6f874D872658767866d680eAA19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45C4D1376943Ab28802B995aCfFC04903Eb5223f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4689122d360C4725D244c5cFeA22861333d862e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x585d95DF0231fA08aEEe35FF0c16b92FD0ECDc33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5eF36da78e4E256D82Bf3723e821104ea3B6A069", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6CB787a419c3e6Ee2e9FF365856c29CD10659113", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x970712708a08e8Fb152be4D81b2dC586923F5369", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9BF7c3b63c77b4B4F2717776F15A4bec1b532a28", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9ceBf13BB702F253AbF1579294694A1eDAD00EAA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1ea76C42b2938CfA9abea12357881006c528513", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA50f89e9f439Fde2a6Fe05883721a00475da3C45", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa612B6AeD2E7ca1A3a4f23FbcA9128461bBB7718", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8af146d79aC0BB981E4e0d8b788Ec5711b1d5d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaD28940024117B442a9EFB6D0f25C8B59e1c950B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbBF9d705b75F408CFCaEE91dA32966124d2c6F7D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbD724Eb087d4cc0f61a5fED1fFFaF937937E14DE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBe0f30217BE1e981aDD883848D0773A86d2d2CD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc46be4B8Bb6B5A3d3120660efae9C5416318ED40", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc69771058481551261709D8DB44977e9afDE6450", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCAf7aC72F5866B9558f4547e9c5e366A2C851c9A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcf8b555B7754556cF2aC2165e77ee23eD8517D79", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD0dC20e6342DB2dE82692B8Dc842301ff9121805", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd6d20527C7B0669989ee082b9D3A1c63aF742290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfF8F84E8C87532Af96aEF5582eE451572233678B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x00fcd3d55085e998e291a0005cedecf58ac14c40", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1d7f0d7c8791210c6f13140939ad61969562afc2", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x36942963e3b6f37ecc45a4e72349558514233f00", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x40af308e3d07ec769d85eb80afb116525ff4ac99", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x418de00ae109e6f874d872658767866d680eaa19", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x45c4d1376943ab28802b995acffc04903eb5223f", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4689122d360c4725d244c5cfea22861333d862e6", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4739e50b59b552d490d3fdc60d200977a38510c0", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x49a0e3334496442a9706e481617724e7e37eaa08", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x567ecfcb22205d279bb8eed3e066989902bf03d5", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x585d95df0231fa08aeee35ff0c16b92fd0ecdc33", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5ef36da78e4e256d82bf3723e821104ea3b6a069", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6cb787a419c3e6ee2e9ff365856c29cd10659113", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x970712708a08e8fb152be4d81b2dc586923f5369", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9cebf13bb702f253abf1579294694a1edad00eaa", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9e34631547adcf2f8cefa0f5f223955c7b137571", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1ea76c42b2938cfa9abea12357881006c528513", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa50f89e9f439fde2a6fe05883721a00475da3c45", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xad28940024117b442a9efb6d0f25c8b59e1c950b", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbbf9d705b75f408cfcaee91da32966124d2c6f7d", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbd724eb087d4cc0f61a5fed1fffaf937937e14de", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbe0f30217be1e981add883848d0773a86d2d2cd4", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc46be4b8bb6b5a3d3120660efae9c5416318ed40", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc69771058481551261709d8db44977e9afde6450", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcba9ff45cfb9ce238afde32b0148eb82cbe63562", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcf8b555b7754556cf2ac2165e77ee23ed8517d79", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd0dc20e6342db2de82692b8dc842301ff9121805", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd3d5d45f4edf82ba0dfaf061d230766032a10e07", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xee02583596aee94cccb7e8ccd3921d955f17982a", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xff8f84e8c87532af96aef5582ee451572233678b", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.report.txt new file mode 100644 index 000000000..5267fca1a --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/emergency (0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D) +CHAIN(S): `42161` +``` ++-----------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+=========================================================+==============+============+ +| pause | 0x1d7F0d7c8791210c6F13140939Ad61969562afc2 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..c9b57e047 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,50 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50\"]", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + }, + { + "to": "0x3f1A2C4a3a751f6626bD90eF16e104f0772d4d6B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt new file mode 100644 index 000000000..16fcdd9dd --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.report.txt @@ -0,0 +1,27 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/dao (0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +CHAIN(S): `avalanche` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | | "0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50" | N/A | 0 | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/dao (0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3) +CHAIN(S): `43114` +``` ++--------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++====================+========================================================+=========+=========================================================+==============+============+ +| enableRecoveryMode | 0x3f1A2C4a3a751f6626bD90eF16e104f0772d4d6B (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json new file mode 100644 index 000000000..a037f8b9e --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json @@ -0,0 +1,405 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x054E7B0c73E1eE5AED6864Fa511658FC2b54BcaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA154009870E9B6431305F19b09F9cfD7284d4E7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa1D14d922a575232066520EDA11E27760946c991", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEcE571847897fD61E764D455DC15cf1cD9dE8d6F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x054E7B0c73E1eE5AED6864Fa511658FC2b54BcaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7275c131b1F67e8B53b4691F92B0E35A4c1C6e22", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA154009870E9B6431305F19b09F9cfD7284d4E7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa1D14d922a575232066520EDA11E27760946c991", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA826a114B0c7dB4d1FF4a4BE845a78998c64564C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xeA67626E1f0b59e0d172a04F5702ef90BcdF440C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEb496161099D45B3ea4892408ef745c6182eB56e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEcE571847897fD61E764D455DC15cf1cD9dE8d6F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEd3E2F496cbCd8e212192fb8D1499842f04A0D19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa154009870e9b6431305f19b09f9cfd7284d4e7a", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1d14d922a575232066520eda11e27760946c991", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xea67626e1f0b59e0d172a04f5702ef90bcdf440c", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xeb496161099d45b3ea4892408ef745c6182eb56e", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xece571847897fd61e764d455dc15cf1cd9de8d6f", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.report.txt new file mode 100644 index 000000000..90e935962 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/batched/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:avalanche (43114), Multisig: multisigs/emergency (0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0) +CHAIN(S): `43114` +``` ++-----------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+=========================================================+==============+============+ +| pause | 0x054E7B0c73E1eE5AED6864Fa511658FC2b54BcaA (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..fe0b41ac4 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,515 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2d8a0dc8170e2251ed6ab59cc43a981d1e05511d06a8c65226eb06278e3ae231\",\"0x950f47d4c7cbd9a3b68b5ab354673981827bd5e9a7b8e5cf4057f8bd547b675f\",\"0xe4814396e9db5314024c424f43d6a129829efad6c545df373b226431cbcadbd3\"]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x02D928E68D8F10C0358566152677Db51E1e2Dc8C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xbc0f2372008005471874e426e86ccfae7b4de79d", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xdba274b4d04097b90a72b62467d828cefd708037", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x804cdb9116a10bb78768d3252355a1b18067bf8f", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9210f1204b5a24742eba12f710636d76240df3d0", + "duration": "0" + } + }, + { + "to": "0x9001cBbD96F54a658FF4e6E65AB564DED76a5431", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4a82b580365cff9b146281ab72500957a849abdc", + "duration": "0" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe03af00fabe8401560c1ff7d242d622a5b601573", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2f4eb100552ef93840d5adc30560e5513dfffacb", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x82698aecc9e28e9bb27608bd52cf57f704bd1b83", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xae37d54ae477268b9997d4161b96b8200755935c", + "duration": "0" + } + }, + { + "to": "0xE0fCBf4d98F0aD982DB260f86cf28b49845403C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xa1697f9af0875b63ddc472d6eebada8c1fab8568", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..b75158586 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,153 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | | "0x2d8a0dc8170e2251ed6ab59cc43a981d1e05511d06a8c65226eb06278e3ae231" | N/A | 0 | +| | | | | "0x950f47d4c7cbd9a3b68b5ab354673981827bd5e9a7b8e5cf4057f8bd547b675f" | | | +| | | | | "0xe4814396e9db5314024c424f43d6a129829efad6c545df373b226431cbcadbd3" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+==============================================================+=========+==========================================================+==============+============+ +| setTokenRateCacheDuration | 0x02D928E68D8F10C0358566152677Db51E1e2Dc8C (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xbc0f2372008005471874e426e86ccfae7b4de79d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xdba274b4d04097b90a72b62467d828cefd708037 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": "0x804cdb9116a10bb78768d3252355a1b18067bf8f", | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9210f1204b5a24742eba12f710636d76240df3d0 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x9001cBbD96F54a658FF4e6E65AB564DED76a5431 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x99c88AD7dc566616548adde8ED3eFfa730eB6C34 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x4a82b580365cff9b146281ab72500957a849abdc (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x99c88AD7dc566616548adde8ED3eFfa730eB6C34 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe03af00fabe8401560c1ff7d242d622a5b601573 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xA13a9247ea42D743238089903570127DdA72fE44 (tokens/bb_a_usd) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x2f4eb100552ef93840d5adc30560e5513dfffacb (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xA13a9247ea42D743238089903570127DdA72fE44 (tokens/bb_a_usd) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x82698aecc9e28e9bb27608bd52cf57f704bd1b83 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xA13a9247ea42D743238089903570127DdA72fE44 (tokens/bb_a_usd) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xae37d54ae477268b9997d4161b96b8200755935c (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xE0fCBf4d98F0aD982DB260f86cf28b49845403C5 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x60d604890feaa0b5460b28a424407c24fe89374a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xa1697f9af0875b63ddc472d6eebada8c1fab8568 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json new file mode 100644 index 000000000..f2b86521c --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json @@ -0,0 +1,290 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513", + "transactions": [ + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877", + "duration": "0" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb96c5bada4bf6a70e71795a3197ba94751dae2db", + "duration": "0" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c", + "duration": "0" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x88d07558470484c03d3bb44c3ecc36cafcf43253", + "duration": "0" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x888a6195d42a95e80d81e1c506172772a80b80bc", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71", + "duration": "0" + } + }, + { + "to": "0xb1C9aC57594e9B1EC0f3787D9f6744EF4CB0A024", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x88d07558470484c03d3bb44c3ecc36cafcf43253", + "duration": "0" + } + }, + { + "to": "0xb1C9aC57594e9B1EC0f3787D9f6744EF4CB0A024", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809", + "duration": "0" + } + }, + { + "to": "0xde45F101250f2ca1c0f8adFC172576d10c12072D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xdd89c7cd0613c1557b2daac6ae663282900204f1", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.report.txt new file mode 100644 index 000000000..b9f73a3eb --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:optimism (10), Multisig: !NOT FOUND (0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513) +CHAIN(S): `10` +``` ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+========================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..ca5c3a9c1 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x02c2a0f6c6251ab0610c2548b20e0967cc5ae385cd1109cf5f3d9ce72f722ee3\",\"0xa4cf3b6e755d1c52bedde1ca3a92b562e8fec558b3036cd5eeb2c17ce0cc2c6b\"]", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xfedb19ec000d38d92af4b21436870f115db22725", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x41211bba6d37f5a74b22e667533f080c7c7f3f13", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xd16f72b02da5f51231fde542a8b9e2777a478c88", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt new file mode 100644 index 000000000..a33a566c1 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.report.txt @@ -0,0 +1,49 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/dao (0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +CHAIN(S): `gnosis` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | | "0x02c2a0f6c6251ab0610c2548b20e0967cc5ae385cd1109cf5f3d9ce72f722ee3" | N/A | 0 | +| | | | | "0xa4cf3b6e755d1c52bedde1ca3a92b562e8fec558b3036cd5eeb2c17ce0cc2c6b" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:gnosis (100), Multisig: multisigs/dao (0x2a5AEcE0bb9EfFD7608213AE1745873385515c18) +CHAIN(S): `100` +``` ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+========================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0xA611A551b95b205ccD9490657aCf7899daee5DB7 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xfedb19ec000d38d92af4b21436870f115db22725 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x41211bba6d37f5a74b22e667533f080c7c7f3f13 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xd16f72b02da5f51231fde542a8b9e2777a478c88 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..742990efb --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0xb56db1d3fcc3ae3614e049f605dd7f4d5d9e33d63253ac144e2bcc2521e8fb7d\"]", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x16c9a4d841e88e52b51936106010f27085a529ec", + "duration": "0" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt new file mode 100644 index 000000000..0a8e234f4 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.report.txt @@ -0,0 +1,34 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/dao (0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +CHAIN(S): `zkevm` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | "0xb56db1d3fcc3ae3614e049f605dd7f4d5d9e33d63253ac144e2bcc2521e8fb7d" | N/A | 0 | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:zkevm (1101), Multisig: multisigs/dao (0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa) +CHAIN(S): `1101` +``` ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+========================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x16c9a4d841e88e52b51936106010f27085a529ec (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..4383fd0f8 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,415 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0xa8ac31ec9b3ba2ce31c0ddb542ed7e55340831bdb845c17cf097fd61fc7aef25\",\"0xc5be0c5701dc762d9ff25d816978ed0e0ee5e199211676c540ed08b6b4d6a4ff\"]", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x216690738Aac4aa0C4770253CA26a28f0115c595", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x178e029173417b1f9c8bc16dcec6f697bc323746", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xf93579002dbe8046c43fefe86ec78b1112247bb8", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6", + "duration": "0" + } + }, + { + "to": "0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "duration": "0" + } + }, + { + "to": "0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb371aa09f5a110ab69b39a84b5469d29f9b22b76", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x89b28a9494589b09dbccb69911c189f74fdadc5a", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xae646817e458c0be890b81e8d880206710e3c44e", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xB54b2125b711cD183EDD3DD09433439D53961652", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x48e6b98ef6329f8f0a30ebb8c7c960330d648085", + "duration": "0" + } + }, + { + "to": "0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "duration": "0" + } + }, + { + "to": "0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt new file mode 100644 index 000000000..abacf99c5 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.report.txt @@ -0,0 +1,126 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:polygon (137), Multisig: multisigs/dao (0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) +CHAIN(S): `polygon` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 | | "0xa8ac31ec9b3ba2ce31c0ddb542ed7e55340831bdb845c17cf097fd61fc7aef25" | N/A | 0 | +| | | | | "0xc5be0c5701dc762d9ff25d816978ed0e0ee5e199211676c540ed08b6b4d6a4ff" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:polygon (137), Multisig: multisigs/dao (0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85) +CHAIN(S): `137` +``` ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+========================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0x216690738Aac4aa0C4770253CA26a28f0115c595 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x48e6B98ef6329f8f0A30eBB8c7C960330d648085 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x178e029173417b1f9c8bc16dcec6f697bc323746 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x48e6B98ef6329f8f0A30eBB8c7C960330d648085 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xf93579002dbe8046c43fefe86ec78b1112247bb8 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x48e6B98ef6329f8f0A30eBB8c7C960330d648085 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x43894de14462b421372bcfe445fa51b1b4a0ff3d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xb371aa09f5a110ab69b39a84b5469d29f9b22b76 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x89b28a9494589b09dbccb69911c189f74fdadc5a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xae646817e458c0be890b81e8d880206710e3c44e (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xda1cd1711743e57dd57102e9e61b75f3587703da (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xB54b2125b711cD183EDD3DD09433439D53961652 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x48e6b98ef6329f8f0a30ebb8c7c960330d648085 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x43894de14462b421372bcfe445fa51b1b4a0ff3d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..13b99995f --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,315 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x05c66da9aa7f126e8dc8688cfac90477d2313f3e95f1f687a854ebbd04b1c707\",\"0x709836a8faadee3ce9004075ac200f1094b93ca8afdf8642906fbc6712f3e3f0\"]", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x5bae72b75caab1f260d21bc028c630140607d6e8", + "duration": "0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x894c82800526e0391e709c0983a5aea3718b7f6d", + "duration": "0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe1fb90d0d3b47e551d494d7ebe8f209753526b01", + "duration": "0" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x117a3d474976274b37b7b94af5dcade5c90c6e85", + "duration": "0" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x284eb68520c8fa83361c1a3a5910aec7f873c18b", + "duration": "0" + } + }, + { + "to": "0x567ECfCB22205D279BB8Eed3E066989902bF03D5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xee02583596aee94cccb7e8ccd3921d955f17982a", + "duration": "0" + } + }, + { + "to": "0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4739e50b59b552d490d3fdc60d200977a38510c0", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9e34631547adcf2f8cefa0f5f223955c7b137571", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt new file mode 100644 index 000000000..a1784b932 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.report.txt @@ -0,0 +1,98 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 | | "0x05c66da9aa7f126e8dc8688cfac90477d2313f3e95f1f687a854ebbd04b1c707" | N/A | 0 | +| | | | | "0x709836a8faadee3ce9004075ac200f1094b93ca8afdf8642906fbc6712f3e3f0" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:arbitrum (42161), Multisig: multisigs/dao (0xaF23DC5983230E9eEAf93280e312e57539D098D0) +CHAIN(S): `42161` +``` ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========================+========================================================+=========+=========================================================+==============+============+ +| setTokenRateCacheDuration | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x5bae72b75caab1f260d21bc028c630140607d6e8 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x894c82800526e0391e709c0983a5aea3718b7f6d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xe1fb90d0d3b47e551d494d7ebe8f209753526b01 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x117a3d474976274b37b7b94af5dcade5c90c6e85 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x284eb68520c8fa83361c1a3a5910aec7f873c18b (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x567ECfCB22205D279BB8Eed3E066989902bF03D5 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xee02583596aee94cccb7e8ccd3921d955f17982a (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xda1cd1711743e57dd57102e9e61b75f3587703da (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xda1cd1711743e57dd57102e9e61b75f3587703da (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x4739e50b59b552d490d3fdc60d200977a38510c0 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setTokenRateCacheDuration | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++---------------------------+--------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..96aa1f2b8 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,370 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a\",\"0x650376aebfe02b35334f3ae96d46b9e5659baa84220d58312d9d2e2920ec9f1d\",\"0xa32a74d0340eda2bd1a7c5ec04d47e7a95f472e66d159ecf6e21d957a5a003a9\",\"0xc4d951f4e2b18951a2744f120e996aed880151f929157b787c7191357e83e8eb\",\"0xd3f06ece971762157e9c58797051a03bb62d731bdf05ea4de799b7223f9463c2\"]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x0A0FB4ff697dE5ac5B6770CD8eE1B72AF80b57CF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0AFBd58bEcA09545e4fb67772faf3858e610bcD0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x126e7643235ec0ab9c103c507642dC3F4cA23C66", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x159cB00338fB63f263fd6f621Df619cEf71DA954", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x246ffB4d928E394a02E45761FecdbA6C2e79B8eB", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2FF1A9Dbdacd55297452cFD8a4d94724Bc22a5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x331d50e0b00fc1C32742F151E56B9B616227E23E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x335d1709D4dA9aca59d16328db5Cd4eA66BFe06b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x395d8A1D9aD82B5ABE558F8AbbFe183B27138af4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3BB22Fc9033b802F2AC47c18885F63476F158aFC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4A82b580365Cff9B146281Ab72500957a849ABDC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x60D604890feaa0b5460B28A424407c24fe89374a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6667c6fa9f2b3Fc1Cc8D85320b62703d938E4385", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7337224D59CB16C2Dc6938CD45A7b2c60C865D6A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8E6eC57A822c2F527F2Df7C7D7D361dF3E7530a1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B1c8407a360443A9E5ECA004713E4088FAB8AC0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1697F9Af0875B63DdC472d6EeBADa8C1fAB8568", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa8b103A10A94f4f2D7Ed2FdCd5545E8075573307", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbc0F2372008005471874e426e86CCFae7B4De79d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbFA413A2ff0F20456d57B643746133F54bFE0cd2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcbFA4532D8B2ade2C261D3DD5ef2A2284f792692", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD6E355036f41dC261B3f1ed3Bbc6003E87AAdB4f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDbA274B4D04097b90A72b62467d828cEFD708037", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDc063deAfcE952160eC112FA382ac206305657e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDEC02e6642e2c999aF429F5cE944653CAd15e093", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe03aF00faBe8401560c1FF7d242d622a5b601573", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF22ff21e17157340575158aD7394E068048dd98B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF71d0774B214c4cf51E33Eb3d30Ef98132e4DBaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFD11CCdBdb7AB91Cb9427A6d6BF570C95876d195", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfeF969638C52899f91781f1Be594aF6f40B99BAd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..913ba3df8 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,234 @@ +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+======================================================================+=======+============+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | | "0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a" | N/A | 0 | +| | | | | "0x650376aebfe02b35334f3ae96d46b9e5659baa84220d58312d9d2e2920ec9f1d" | | | +| | | | | "0xa32a74d0340eda2bd1a7c5ec04d47e7a95f472e66d159ecf6e21d957a5a003a9" | | | +| | | | | "0xc4d951f4e2b18951a2744f120e996aed880151f929157b787c7191357e83e8eb" | | | +| | | | | "0xd3f06ece971762157e9c58797051a03bb62d731bdf05ea4de799b7223f9463c2" | | | ++-----------------------+---------------+--------------------------------------------+------------+----------------------------------------------------------------------+-------+------------+ +``` +File name: BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json +COMMIT: `N/A` +MERGED PAYLOAD: Chain:mainnet (1), Multisig: multisigs/dao (0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f) +CHAIN(S): `1` +``` ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++====================+=========================================================================================================+=========+=========================================================+==============+============+ +| enableRecoveryMode | 0x0A0FB4ff697dE5ac5B6770CD8eE1B72AF80b57CF (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x0AFBd58bEcA09545e4fb67772faf3858e610bcD0 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x126e7643235ec0ab9c103c507642dC3F4cA23C66 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x159cB00338fB63f263fd6f621Df619cEf71DA954 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x246ffB4d928E394a02E45761FecdbA6C2e79B8eB (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x2FF1A9Dbdacd55297452cFD8a4d94724Bc22a5F7 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x331d50e0b00fc1C32742F151E56B9B616227E23E (20230206-aave-rebalanced-linear-pool-v4/MockAaveLinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x335d1709D4dA9aca59d16328db5Cd4eA66BFe06b (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x395d8A1D9aD82B5ABE558F8AbbFe183B27138af4 (20230315-silo-linear-pool/MockSiloLinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x3BB22Fc9033b802F2AC47c18885F63476F158aFC (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x4A82b580365Cff9B146281Ab72500957a849ABDC (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x60D604890feaa0b5460B28A424407c24fe89374a (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x6667c6fa9f2b3Fc1Cc8D85320b62703d938E4385 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x7337224D59CB16C2Dc6938CD45A7b2c60C865D6A (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x8E6eC57A822c2F527F2Df7C7D7D361dF3E7530a1 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0x9B1c8407a360443A9E5ECA004713E4088FAB8AC0 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xA1697F9Af0875B63DdC472d6EeBADa8C1fAB8568 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xa8b103A10A94f4f2D7Ed2FdCd5545E8075573307 (20230213-gearbox-linear-pool/MockGearboxLinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xbc0F2372008005471874e426e86CCFae7B4De79d (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xbFA413A2ff0F20456d57B643746133F54bFE0cd2 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xcbFA4532D8B2ade2C261D3DD5ef2A2284f792692 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xD6E355036f41dC261B3f1ed3Bbc6003E87AAdB4f (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDbA274B4D04097b90A72b62467d828cEFD708037 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDc063deAfcE952160eC112FA382ac206305657e6 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xDEC02e6642e2c999aF429F5cE944653CAd15e093 (20230208-euler-linear-pool/MockEulerLinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xe03aF00faBe8401560c1FF7d242d622a5b601573 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xF22ff21e17157340575158aD7394E068048dd98B (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xF71d0774B214c4cf51E33Eb3d30Ef98132e4DBaA (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xFD11CCdBdb7AB91Cb9427A6d6BF570C95876d195 (Not Found) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| enableRecoveryMode | 0xfeF969638C52899f91781f1Be594aF6f40B99BAd (20230206-erc4626-linear-pool-v3/MockERC4626LinearPool) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x9e34631547adcf2f8cefa0f5f223955c7b137571 (N/A) " | | | +| | | | ], | | | +| | | | "duration": "0" | | | +| | | | } | | | ++--------------------+---------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..02643b055 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,477 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0x0d05Aac44aC7Dd3c7ba5d50Be93EB884A057d234", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0DA692Ac0611397027c91E559cFD482C4197e403", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11839D635e2F0270DA37e8ef4324D4d5d5432957", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1bd2F176a812e312077BcA87e37c08432Bb09F3e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x26c2B83FC8535DeEaD276f5Cc3ad9c1a2192E027", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2B218683178d029BAB6c9789b1073aA6c96E5176", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2e52c64FD319E380cDbCFC4577eA1Fda558a32e4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2F4eb100552ef93840d5aDC30560E5513DFfFACb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3035917bE42aF437CBdD774Be26B9EC90a2BD677", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3CdAE4f12A67ba563499e102f309c73213cB241c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3f7a7fd7F214bE45EC26820Fd01aC3bE4fC75aa7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3fCb7085B8F2F473F80bF6D879cAe99eA4DE9344", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4228290eE9cab692938Ff0b4ba303FBCDB68e9F2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x454Ed96955d04D2f5cDD05E0Fd1C77975bFE5307", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4C81255Cc9eD7062180ea99962fE05aC0D57350B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4CbdE5C4B4B53EBE4aF4adB85404725985406163", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4cE277Df0FeB5B4d07a0ca2ADCf5326E4005239d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x639883476960a23b38579acfd7D71561A0f408Cf", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6a1eB2e9B45e772F55bd9a34659A04B6F75Da687", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6C56E72c551B5aC4Bf54A620A76077cA768C8FE4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x74CBfAF94A3577c539a9dCEE9870A6349a33b34f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x813E3fE1761f714c502d1d2d3a7CCEB33f37F59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x82698aeCc9E28e9Bb27608Bd52cF57f704BD1B83", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9516a2d25958EdB8da246a320f2c7d94A0DBe25d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x959216BB492B2efa72b15B7AAcEa5B5C984c3ccA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B692f571b256140a39a34676BffA30634c586e1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9d7f992c900FbeA0EC314Bdd71b7cC1becF76A33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC5B4EF7eDe2F2843a704E96dcAA637F4BA3Dc3f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae37D54Ae477268B9997d4161B96b8200755935c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB841B062eA8CCf5C4cb78032e91dE4aE87556042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbB6881874825E60e1160416D6C426eae65f2459E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc2B021133D1b0cF07dba696fd5DD89338428225B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc50d4347209F285247BDa8A09Fc1C12CE42031c3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcfAE6E251369467F465f13836Ac8135bd42f8A56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE8C56405Bc405840154d9b572927F4197D110dE1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfa24A90A3F2bBE5FEEA92B95cD0d14Ce709649f9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..77737db12 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,370 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1405e4b6cd75de6c077cce8e10034aaac128c79249dbc582eb25e65516444573\",\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x45624278c719c9a0d0ef7cd28f5f8f29556927bff3a5854b4edb4d4c5f459545\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\",\"0xc546cdd0e34ec6c7ca0a53f05aab7c8e4e8b9896e1f450d49bd5eb4f90cef6bd\"]", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + }, + { + "to": "0x055A4Cfa8CD9ced1D7Bc9Ae5eb46c404C130E46D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x15873081c0Aa67AD5C5DbA362169d352E2a128a2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x24D9ff56fb09E0F02E74407B12F3264C6e520b5E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3b2ff5888F1bDEDBB45ECe9f1C628356388d22cC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x55b1F937B1335Be355C82e207FD437182c986Ba1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62eC8b26C08Ffe504F22390A65e6E3c1e45E9877", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6af3737F6d58Ae8Bcb9f2B597125D37244596E59", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x75062a04a8CC587c588a6bb50bd0cC009da483DC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7e9250cC13559eB50536859e8C076Ef53e275Fb3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8003eec4aDD35C6D23eB1Ef61b4fA6bbBB23a41a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x888a6195D42a95e80D81e1c506172772a80b80Bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8fE33d737484CA194dedF64AaFa8485327fC5372", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9253d7e1B42fa01eDE2c53f3A21b3B4d13239cD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1a77E5d7D769BFBB790a08EC976dc738bF795B9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA4e597c1bD01859B393b124ce18427Aa4426A871", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB85245929dc65B5EDdb56c4b4E84b20BcE69Db35", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb96C5bAda4Bf6A70E71795a3197BA94751DAE2DB", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xba7834bb3cd2DB888E6A06Fb45E82b4225Cd0C71", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBEF1ccAaDA458a570C37B11A8872988bA1E4FDb9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xC0d7013A05860271a1EDB52415CF74BC85B2AcE7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCE9329f138CD6319FcFBd8704E6AE50B6bb04F31", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd0d334B6CfD77AcC94bAB28C7783982387856449", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd32F78F5aE235269c6d2cABBD26A57fF9FD62967", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD3e47cbdB2A9C1B1DEB857c6415b87fCE63a4bf5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDc2007D9e9A33f50630F26069FAab69c25f7758C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDD89C7cd0613C1557B2DaAC6Ae663282900204f1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEdcfaF390906a8f91fb35B7bAC23f3111dBaEe1C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json new file mode 100644 index 000000000..5f53039af --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json @@ -0,0 +1,301 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "transactions": [ + { + "to": "0x098f32D98d0D64Dba199FC1923D3BF4192E78719", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x20715545C15C76461861Cb0D6ba96929766D05A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2DA61Ef3Cdcb97efb0f7099c02527fabFe94Dee5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2e2b8b82123789D895fD79913F6dFa51F5b5a0e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x34557eF500Bfc060B8e3f2DA58EF725Bb7D32202", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x362715c164D606682c4Ea7E479633E419d9345Eb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3C74C4eD512050Eb843d89fb9DcD5EBb4668EB6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3e9cBFfd270AE67aBB09D28988e7e785498c7373", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45d37982784F022A9864748b4E8750e1e7019604", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x48aCE81C09382bfC08eD102e7eadd37e3B049752", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5470F064a19C65263B3033DA3A6124fdf0a9Bab8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5936497ffE0dBA0eF272D6301D65c0122862971A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5Bdd8C19b44C3e4a15305601A2C9841bDE9366F0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5D8955a2068EE6d1F7aB17640301219afa4B526f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62cF35DB540152e94936dE63eFc90d880D4e241B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x72D6df381cAC8C2283c0B13fe5262A1F5e8e8d1b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7FE29a818438Ed2759e30f65c2302295711d66Fc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8025586aC5fB265A23B9492E7414BecCc2059ec3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8a2872fd28F42BD9F6559907235E83FbF4167f48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8b6d3aA69c1cF47677281691b1aBf3831BA1329d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA5D4802B4ce6b745B0C9e1b4a79c093D197869c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbec621c9AB4cEDDCc2A157CA9B5C475fAB65f6a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCb89E89d798a4563D1599ea5508282e13B225b52", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCd7B2232B7435595bBc7FD7962f1f352fc2cC61a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd1aF4974fcC995Cf36ba40b189caA92964A9126d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF970659221BB9d01B615321b63a26E857ffC030B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..9e8180a49 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,128 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e\",\"0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a\"]", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0x225E0047671939A8d78e08EBd692788Abe63f15c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41211BBa6d37F5a74b22e667533F080C7C7f3F13", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x581Ec1f5e7CeD12B186deaE32256AdB53BDd5B08", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbb9Cd48d33033F5EfFBeDec9Dd700C7D7E1dCF50", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd16f72b02dA5f51231fDe542A8B9E2777a478c88", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd4015683b8153666190e0B2bEC352580EBC4CaCa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE7f88d7d4EF2eb18FCF9Dd7216BA7Da1c46f3dD6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFFFf76A3280e95dC855696111C2562Da09db2Ac0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json new file mode 100644 index 000000000..fb784c5b0 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json @@ -0,0 +1,103 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "transactions": [ + { + "to": "0x1AC55C31DaC78ca943CB8ebfCa5945ce09e036e2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4De21b365D6543661D0e105E579A34B963862497", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x66F33Ae36dD80327744207a48122F874634B3adA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB95829AdbaCd8Af89E291DeE78Bc09E24De51d6b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB973Ca96a3f0D61045f53255E319AEDb6ED49240", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xba1a5B19D09A79DADA039B1f974015c5A989d5FD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF48f01DCB2CbB3ee1f6AaB0e742c2D3941039d56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json new file mode 100644 index 000000000..1c86239ff --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json @@ -0,0 +1,125 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "transactions": [ + { + "to": "0x02c9DCB975262719A61f9B40bDf0987eAD9Add3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x16C9a4D841E88E52b51936106010F27085a529EC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x32BE2d0ddeaF3333501B24a28668cE373BA8E763", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x32f03464FdF909FDf3798f87Ff3712b10c59bd86", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4B718E0E2fEA1dA68b763CD50C446FbA03CEB2Ea", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x68a69c596B3839023C0e08D09682314F582314e5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6F34a44FCe1506352A171232163E7716Dd073ade", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9e2D87f904862671eb49cB358E74284762cC9F42", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xac4b72c01072A52b73ca71105504F1372eFcCE0d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbFD65c6160CFd638A85C645e6e6d8ACac5Dac935", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json new file mode 100644 index 000000000..00033e65d --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json @@ -0,0 +1,510 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "transactions": [ + { + "to": "0x03090a9811181A2AfE830a3a0B467698CcF3a8b1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x04b54ea92D73DE2d62D651Db7d9778F0C49157d8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0889b240A5876aae745Ac19f1771853671dC5d36", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0BC54e914F53f98D16035F4f0D948f3e09C2fac0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0c06e87c7b88D998f645B91c1F53B51294b12Bca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1379b816b9BE611431d693290289C204720Ca56d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x16b98793F3e6a17d15931A2C9F98fE28D1C845A1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x178E029173417b1F9C8bC16DCeC6f697bC323746", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x216d6db0C28204014618482c369d7FBF0A8f3232", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x230eCdB2a7CEE56d6889965A023AA0473D6dA507", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x252Ff6A3A6Fd7B5e8E999DE8e3f5c3b306ED1401", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x25e57F4612912614e6C99616Bd2aBB9b5Ae71E99", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2645B13FD2c5295296e94A76280B968bDcbbDfED", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3dd0843A028C86e0b760b1A76929d1C5Ef93a2dd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3Efb91C4F9B103Ee45885695C67794591916F34E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x402cFDb7781fa85d52F425352661128250B79e12", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4ae3661aFa119892f0cc8C43EdaF6A94989Ac171", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x63cE19cCd39930725b8a3D2733627804718Ab83D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6c8C7fC50247a47038015eb1Fd5dC105D05DAFBA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7F4f4942F2a14B6AB7B08b10ada1AAcede4EE8D4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x89bb15076C9f2D86aa98ec6cFfC1a71e31c38953", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8fd39252d683fDB60BDDD4DF4B53C9380B496D59", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9321e2250767D79bAb5aA06DAa8606A2B3B7B4C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA5a935833F6a5312715F182733EaB088452335d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8BF1C584519bE0184311C48AdBDc4c15cb2E8C1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAB269164a10faB22BC87c39946da06C870B172D6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC2CaE8D2f78A4a8F92f20dbe74042Cd0a8d5Af3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb0C830DCeB4EF55A60192472c20C8bf19dF03488", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb266aC3b7C98D7Bcb28731Dac0eF42DbA1b276bE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBd4e35784c832d0f9049B54cb3609e5907c5b495", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc55eC796A4dEBE625d95436a3531f4950b11bdcf", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc83b55bBD005f1f84906545FcdB145dEE53523E0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD2f3B9E67C69762dd1c88F1D3dADD1649a190761", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd4aCcb350f9CF59fE3cF7A5eE6ED9Ace6A568eA9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xdae301690004946424E41051aCe1791083be42a1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDE0a77aB6689b980C30306B10F9131A007E1AF81", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe2272cDDB2cc408E79e02a73D1Db9acc24a843D5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe6909C2F18A29d97217a6146f045e1780606991F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xED35f28f837E96F81240ebB82e0E3F518C7E8a2F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF0211cCeeBe6fCc45052B4E57Ee95D233F5669D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF28F17be00f8ca3C9b7F66a4Aad5513757fB3341", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF42ED61450458eE4620F5eF4f29adB25a6Ef0fb6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF93579002DBE8046c43FEfE86ec78b1112247BB8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFA2C0bd8327C99db5bdE4c9e9E5cbF30946351bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFf4ce5AAAb5a627bf82f4A571AB1cE94Aa365eA6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..88ef5499c --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,293 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\",\"0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a\"]", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x0320C1C5B6df19A194D48882aaEC1c72940081D9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x117a3d474976274B37B7b94aF5DcAde5c90C6e85", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x284EB68520C8fA83361C1A3a5910aEC7f873C18b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x43894DE14462B421372bCFe445fA51b1b4A0Ff3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4739E50B59B552D490d3FDc60D200977A38510c0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x52Cc8389C6B93d740325729Cc7c958066CEE4262", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5B77107fCdF2b41903Bab2bc555D4fc14Cf7667D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5BAe72B75CaAb1f260D21BC028c630140607D6e8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x64eFAD69F099813021B41f4CaC6E749FD55e188f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7c82A23B4C48D796dee36A9cA215b641C6a8709d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x894c82800526E0391E709c0983a5AeA3718b7F6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x89B28A9494589b09dbcCb69911c189f74FdAdc5a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9E34631547aDcF2F8cefa0f5f223955C7B137571", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa5fE91dde37D8BF2daCACC0168B115D28eD03f84", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae646817e458C0bE890b81e8d880206710E3c44e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAeF2c171dBE64B0C18977E16e70BFD29d4eE0256", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb59BE8f3C85A9DD6E2899103B6fbF6ea405B99a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDa1CD1711743e57Dd57102E9e61b75f3587703da", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe1Fb90D0d3b47E551d494d7eBe8f209753526B01", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE4885Ed2818Cc9E840A25f94F9b2A28169D1AEA7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEA11645ac7d8f2dEf94C9D8d86Bd766296c9B6b6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..239522504 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,205 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1405e4b6cd75de6c077cce8e10034aaac128c79249dbc582eb25e65516444573\",\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\"]", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x117a3d474976274B37B7b94aF5DcAde5c90C6e85", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x284EB68520C8fA83361C1A3a5910aEC7f873C18b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4739E50B59B552D490d3FDc60D200977A38510c0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x52Cc8389C6B93d740325729Cc7c958066CEE4262", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5BAe72B75CaAb1f260D21BC028c630140607D6e8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7c82A23B4C48D796dee36A9cA215b641C6a8709d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x894c82800526E0391E709c0983a5AeA3718b7F6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9E34631547aDcF2F8cefa0f5f223955C7B137571", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae646817e458C0bE890b81e8d880206710E3c44e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAeF2c171dBE64B0C18977E16e70BFD29d4eE0256", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDa1CD1711743e57Dd57102E9e61b75f3587703da", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe1Fb90D0d3b47E551d494d7eBe8f209753526B01", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json new file mode 100644 index 000000000..93d57211f --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json @@ -0,0 +1,422 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "transactions": [ + { + "to": "0x00FCD3d55085e998e291a0005cedeCF58aC14c40", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x19b1C92631405A0a9495ccbA0BeCF4f2e8e908bD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1d7F0d7c8791210c6F13140939Ad61969562afc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1e550b7764Da9638FDD32c8a701364dE31f45eE8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1Fa7F727934226aedaB636D62a084931b97d366b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2A96254Ca32020b20eD3506F8f75318DA24709F9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x36942963e3b6F37eCC45a4e72349558514233F00", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3f53A862919ccFA023CB6AcE91378a79Fb0F6Bf5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x40af308e3d07ec769D85EB80aFb116525fF4aC99", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x418dE00Ae109e6f874D872658767866d680eAA19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45C4D1376943Ab28802B995aCfFC04903Eb5223f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4689122d360C4725D244c5cFeA22861333d862e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x585d95DF0231fA08aEEe35FF0c16b92FD0ECDc33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5eF36da78e4E256D82Bf3723e821104ea3B6A069", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6CB787a419c3e6Ee2e9FF365856c29CD10659113", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x970712708a08e8Fb152be4D81b2dC586923F5369", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9BF7c3b63c77b4B4F2717776F15A4bec1b532a28", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9ceBf13BB702F253AbF1579294694A1eDAD00EAA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1ea76C42b2938CfA9abea12357881006c528513", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA50f89e9f439Fde2a6Fe05883721a00475da3C45", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa612B6AeD2E7ca1A3a4f23FbcA9128461bBB7718", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8af146d79aC0BB981E4e0d8b788Ec5711b1d5d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaD28940024117B442a9EFB6D0f25C8B59e1c950B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbBF9d705b75F408CFCaEE91dA32966124d2c6F7D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbD724Eb087d4cc0f61a5fED1fFFaF937937E14DE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBe0f30217BE1e981aDD883848D0773A86d2d2CD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc46be4B8Bb6B5A3d3120660efae9C5416318ED40", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc69771058481551261709D8DB44977e9afDE6450", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCAf7aC72F5866B9558f4547e9c5e366A2C851c9A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcf8b555B7754556cF2aC2165e77ee23eD8517D79", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD0dC20e6342DB2dE82692B8Dc842301ff9121805", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd6d20527C7B0669989ee082b9D3A1c63aF742290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfF8F84E8C87532Af96aEF5582eE451572233678B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..b3776eca5 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,51 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50\"]", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + }, + { + "to": "0x3f1A2C4a3a751f6626bD90eF16e104f0772d4d6B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json new file mode 100644 index 000000000..6a4d699f7 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json @@ -0,0 +1,114 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "transactions": [ + { + "to": "0x054E7B0c73E1eE5AED6864Fa511658FC2b54BcaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7275c131b1F67e8B53b4691F92B0E35A4c1C6e22", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA154009870E9B6431305F19b09F9cfD7284d4E7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa1D14d922a575232066520EDA11E27760946c991", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA826a114B0c7dB4d1FF4a4BE845a78998c64564C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xeA67626E1f0b59e0d172a04F5702ef90BcdF440C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEb496161099D45B3ea4892408ef745c6182eB56e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEcE571847897fD61E764D455DC15cf1cD9dE8d6F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEd3E2F496cbCd8e212192fb8D1499842f04A0D19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/affected_pools_processed.csv b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/affected_pools_processed.csv new file mode 100644 index 000000000..52734b70e --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/enableRecoveryMode/affected_pools_processed.csv @@ -0,0 +1,522 @@ +id,address,symbol,amp,poolType,poolTypeVersion,tokensList,totalLiquidity,owner,isBrickable,isPausable,isPausableOrBrickable,network,comment +0x00c2a4be503869fa751c2dbcb7156cc970b5a8da000000000000000000000477,0x00c2a4be503869fa751c2dbcb7156cc970b5a8da,bb-euler-FRAX-bb-euler-USDC-BPT,1500,ComposableStable,3.0,"['0x00c2a4be503869fa751c2dbcb7156cc970b5a8da', '0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a4399', '0xf71d0774b214c4cf51e33eb3d30ef98132e4dbaa']",9.994476890594661429213042305453581,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x02d928e68d8f10c0358566152677db51e1e2dc8c00000000000000000000051e,0x02d928e68d8f10c0358566152677db51e1e2dc8c,swETH-bb-a-WETH-BPT,500,ComposableStable,3.0,"['0x02d928e68d8f10c0358566152677db51e1e2dc8c', '0x60d604890feaa0b5460b28a424407c24fe89374a', '0xf951e335afb289353dc249e82926178eac7ded78']",4039989.369045729772869280983527723,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0x04248aabca09e9a1a3d5129a7ba05b7f17de768400000000000000000000050e,0x04248aabca09e9a1a3d5129a7ba05b7f17de7684,qETH-bb-a-WETH-BPT,100,ComposableStable,3.0,"['0x04248aabca09e9a1a3d5129a7ba05b7f17de7684', '0x60d604890feaa0b5460b28a424407c24fe89374a', '0x93ef1ea305d11a9b2a3ebb9bb4fcc34695292e7d']",11305.83331478792449414400819447473,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0x05513ca725b6ce035ca2641075474eb469f05f4c00020000000000000000041f,0x05513ca725b6ce035ca2641075474eb469f05f4c,50RBN-50bb-a-USD,,Weighted,1.0,"['0x6123b0049f904d730db3c36a31167d9d4121fa6b', '0xa13a9247ea42d743238089903570127dda72fe44']",0.0000000000002108886209413635610362892193882661,0xdaeada3d210d2f45874724beea03c7d4bbd41674,False,False,False,mainnet,pool doesn't implement recovery mode +0x0a0fb4ff697de5ac5b6770cd8ee1b72af80b57cf000000000000000000000496,0x0a0fb4ff697de5ac5b6770cd8ee1b72af80b57cf,TEST,,YearnLinear,1.0,"['0x0a0fb4ff697de5ac5b6770cd8ee1b72af80b57cf', '0x5c5fcf8fbd4cd563ced27e7d066b88ee20e1867a', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x0afbd58beca09545e4fb67772faf3858e610bcd00000000000000000000004b9,0x0afbd58beca09545e4fb67772faf3858e610bcd0,bb-i-agEUR,,ERC4626Linear,3.0,"['0x0afbd58beca09545e4fb67772faf3858e610bcd0', '0x1a7e4e63778b4f12a199c062f3efdd288afcbce8', '0x6ab3cf01b27e507953365ddf70f97da99471706b']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x0d05aac44ac7dd3c7ba5d50be93eb884a057d23400000000000000000000051c,0x0d05aac44ac7dd3c7ba5d50be93eb884a057d234,TEST,,GearboxLinear,2.0,"['0x0d05aac44ac7dd3c7ba5d50be93eb884a057d234', '0xb7a32b67aadb3866cc5c2fabc6c6ab8a9027c3c1', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x0da692ac0611397027c91e559cfd482c4197e4030002000000000000000005c9,0x0da692ac0611397027c91e559cfd482c4197e403,50bb-s-DAI-50bb-a-USDC,,Weighted,4.0,"['0x2b218683178d029bab6c9789b1073aa6c96e5176', '0x82698aecc9e28e9bb27608bd52cf57f704bd1b83']",47.65060731662154107709179349390953,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x11839d635e2f0270da37e8ef4324d4d5d54329570002000000000000000004d8,0x11839d635e2f0270da37e8ef4324d4d5d5432957,10bb-a-USD-90callFLAIX260323,,Weighted,3.0,"['0xa13a9247ea42d743238089903570127dda72fe44', '0xe752d92aba07902bcbae3e6c89724e40df99b598']",0.02676664304732866175342350282894609,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x126e7643235ec0ab9c103c507642dc3f4ca23c66000000000000000000000468,0x126e7643235ec0ab9c103c507642dc3f4ca23c66,bb-t-stkAPE,,ERC4626Linear,3.0,"['0x126e7643235ec0ab9c103c507642dc3f4ca23c66', '0x4d224452801aced8b2f0aebe155379bb5d594381', '0x7966c5bae631294d7cffcea5430b78c2f76db6fa']",7823.8991358203752723815,,False,False,False,mainnet,to be put in recovery mode by the dao +0x133d241f225750d2c92948e464a5a80111920331000000000000000000000476,0x133d241f225750d2c92948e464a5a80111920331,DOLA-bb-e-USD-BPT,200,ComposableStable,3.0,"['0x133d241f225750d2c92948e464a5a80111920331', '0x50cf90b954958480b8df7958a9e965752f627124', '0x865377367054516e17014ccded1e7d814edc9ce4']",813918.0395984575307755025469696605,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x159cb00338fb63f263fd6f621df619cef71da9540000000000000000000004d5,0x159cb00338fb63f263fd6f621df619cef71da954,bb-ma2-USDC,,ERC4626Linear,3.0,"['0x159cb00338fb63f263fd6f621df619cef71da954', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xa5269a8e31b93ff27b887b56720a25f844db0529']",203.7985399656000582789162046204131,,False,False,False,mainnet,to be put in recovery mode by the dao +0x173063a30e095313eee39411f07e95a8a806014e0002000000000000000003ab,0x173063a30e095313eee39411f07e95a8a806014e,50TEMPLE-50bb-a-USD,,Weighted,2.0,"['0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7', '0xa13a9247ea42d743238089903570127dda72fe44']",51.56317207618868689150241176862429,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x1bd2f176a812e312077bca87e37c08432bb09f3e0000000000000000000005a1,0x1bd2f176a812e312077bca87e37c08432bb09f3e,qETH-bb-a-WETH-BPT,100,ComposableStable,5.0,"['0x1bd2f176a812e312077bca87e37c08432bb09f3e', '0x93ef1ea305d11a9b2a3ebb9bb4fcc34695292e7d', '0xbb6881874825e60e1160416d6c426eae65f2459e']",104371.594983566075855916578569369,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0x20b156776114e8a801e9767d90c6ccccc8adf398000000000000000000000499,0x20b156776114e8a801e9767d90c6ccccc8adf398,bb-yv-USD,2000,ComposableStable,3.0,"['0x20b156776114e8a801e9767d90c6ccccc8adf398', '0x8e6ec57a822c2f527f2df7c7d7d361df3e7530a1', '0x9b1c8407a360443a9e5eca004713e4088fab8ac0', '0xd6e355036f41dc261b3f1ed3bbc6003e87aadb4f']",9.000016318341054943,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x246ffb4d928e394a02e45761fecdba6c2e79b8eb000000000000000000000541,0x246ffb4d928e394a02e45761fecdba6c2e79b8eb,bb-insta-WETH,,ERC4626Linear,3.0,"['0x246ffb4d928e394a02e45761fecdba6c2e79b8eb', '0xa0d3707c569ff8c87fa923d3823ec5d81c98be78', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",18.72384832282189503055060225533911,,False,False,False,mainnet,to be put in recovery mode by the dao +0x25accb7943fd73dda5e23ba6329085a3c24bfb6a000200000000000000000387,0x25accb7943fd73dda5e23ba6329085a3c24bfb6a,50wstETH-50bb-a-USD,,Weighted,2.0,"['0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xa13a9247ea42d743238089903570127dda72fe44']",978252.9839709104824429226164082585,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x26c2b83fc8535deead276f5cc3ad9c1a2192e02700020000000000000000056b,0x26c2b83fc8535deead276f5cc3ad9c1a2192e027,OHM/bbaDAI BPT,,Weighted,4.0,"['0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5', '0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385']",10.070486147842044687637134365168,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x2b218683178d029bab6c9789b1073aa6c96e517600000000000000000000058c,0x2b218683178d029bab6c9789b1073aa6c96e5176,bb-s-DAI,,ERC4626Linear,4.0,"['0x2b218683178d029bab6c9789b1073aa6c96e5176', '0x6b175474e89094c44da98b954eedeac495271d0f', '0x83f20f44975d03b1b09e64809b757c47f942beea']",2208242.130804239302175664300885322,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b00000000000000000000003a3,0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0,TUSD-bbausd,600,ComposableStable,1.0,"['0x0000000000085d4780b73119b644ae5ecd22b376', '0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0', '0xa13a9247ea42d743238089903570127dda72fe44']",0.001177852874707728186576357749251584,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c0000000000000000000000fd,0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c,bb-a-USDT,,AaveLinear,1.0,"['0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c', '0xdac17f958d2ee523a2206206994597c13d831ec7', '0xf8fd466f12e236f4c96f7cce6c79eadb819abf58']",495723.5386376232153227989309675164,,False,False,False,mainnet,pool doesn't implement recovery mode +0x2e52c64fd319e380cdbcfc4577ea1fda558a32e40002000000000000000005ba,0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4,50bb-a-WETH-50YieldETH,,Weighted,4.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0xb5b29320d2dde5ba5bafa1ebcd270052070483ec']",29526.4441015738610789198124822557,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x2f4eb100552ef93840d5adc30560e5513dfffacb000000000000000000000334,0x2f4eb100552ef93840d5adc30560e5513dfffacb,bb-a-USDT,,AaveLinear,2.0,"['0x2f4eb100552ef93840d5adc30560e5513dfffacb', '0xdac17f958d2ee523a2206206994597c13d831ec7', '0xf8fd466f12e236f4c96f7cce6c79eadb819abf58']",882473.1788124422543761217877124336,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7000000000000000000000484,0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7,bb-i-USDT,,ERC4626Linear,3.0,"['0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7', '0x544897a3b944fdeb1f94a0ed973ea31a80ae18e1', '0xdac17f958d2ee523a2206206994597c13d831ec7']",1316700.410883648899030454737051,,False,False,False,mainnet,to be put in recovery mode by the dao +0x3035917be42af437cbdd774be26b9ec90a2bd677000200000000000000000543,0x3035917be42af437cbdd774be26b9ec90a2bd677,80INST-bbWETH20,,Weighted,4.0,"['0x246ffb4d928e394a02e45761fecdba6c2e79b8eb', '0x6f40d4a6237c257fff2db00fa0510deeecd303eb']",18.36178209743325127766370006188739,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x331d50e0b00fc1c32742f151e56b9b616227e23e00000000000000000000047c,0x331d50e0b00fc1c32742f151e56b9b616227e23e,TEST,,AaveLinear,4.0,"['0x331d50e0b00fc1c32742f151e56b9b616227e23e', '0x9805dcfd25e6de36bad8fe9d3fe2c9b44b764102', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x334c96d792e4b26b841d28f53235281cec1be1f200020000000000000000038a,0x334c96d792e4b26b841d28f53235281cec1be1f2,50rETH-50bb-a-USD,,Weighted,2.0,"['0xa13a9247ea42d743238089903570127dda72fe44', '0xae78736cd615f374d3085123a210448e74fc6393']",58.62879114908017767724806642147882,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x335d1709d4da9aca59d16328db5cd4ea66bfe06b0000000000000000000004d6,0x335d1709d4da9aca59d16328db5cd4ea66bfe06b,bb-ma2-DAI,,ERC4626Linear,3.0,"['0x335d1709d4da9aca59d16328db5cd4ea66bfe06b', '0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6', '0x6b175474e89094c44da98b954eedeac495271d0f']",150.0230512569280951322365309980725,,False,False,False,mainnet,to be put in recovery mode by the dao +0x395d8a1d9ad82b5abe558f8abbfe183b27138af40000000000000000000004e5,0x395d8a1d9ad82b5abe558f8abbfe183b27138af4,TEST,,SiloLinear,1.0,"['0x395d8a1d9ad82b5abe558f8abbfe183b27138af4', '0xbc4099300e69ff4e52f3b18728054ef00449b9e5', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x3bb22fc9033b802f2ac47c18885f63476f158afc000000000000000000000483,0x3bb22fc9033b802f2ac47c18885f63476f158afc,bb-a-TUSD,,AaveLinear,4.0,"['0x3bb22fc9033b802f2ac47c18885f63476f158afc', '0x0000000000085d4780b73119b644ae5ecd22b376', '0x236f4a95361e03267329a558bdd224b1f95f1377']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x3c640f0d3036ad85afa2d5a9e32be651657b874f00000000000000000000046b,0x3c640f0d3036ad85afa2d5a9e32be651657b874f,bb-e-USDT,,EulerLinear,1.0,"['0x3c640f0d3036ad85afa2d5a9e32be651657b874f', '0x4d19f33948b99800b6113ff3e83bec9b537c85d2', '0xdac17f958d2ee523a2206206994597c13d831ec7']",487737.2355000752618441448748071484,,False,False,False,mainnet,pool is already in recovery mode +0x3cdae4f12a67ba563499e102f309c73213cb241c000000000000000000000335,0x3cdae4f12a67ba563499e102f309c73213cb241c,bb-a-USDC,,AaveLinear,2.0,"['0x3cdae4f12a67ba563499e102f309c73213cb241c', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd093fa4fb80d09bb30817fdcd442d4d02ed3e5de']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede000000000000000000000470,0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede,zUSD-bb-e-USD-BPT,200,ComposableStable,3.0,"['0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede', '0x50cf90b954958480b8df7958a9e965752f627124', '0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa']",14.99866770434488847690770717653416,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x3f7a7fd7f214be45ec26820fd01ac3be4fc75aa70002000000000000000004c5,0x3f7a7fd7f214be45ec26820fd01ac3be4fc75aa7,50STG 50bb-e-USD,,Weighted,3.0,"['0x326f5834d73a2dc02b3c492e9ef1b24399d430b3', '0x50cf90b954958480b8df7958a9e965752f627124']",0.7514761703072183466503832620397735,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x3fcb7085b8f2f473f80bf6d879cae99ea4de934400000000000000000000056d,0x3fcb7085b8f2f473f80bf6d879cae99ea4de9344,bb-ma3-weth,,ERC4626Linear,4.0,"['0x3fcb7085b8f2f473f80bf6d879cae99ea4de9344', '0x39dd7790e75c6f663731f7e1fdc0f35007d3879b', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",138.9682074173537781347335303778521,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x41503c9d499ddbd1dcdf818a1b05e9774203bf46000000000000000000000594,0x41503c9d499ddbd1dcdf818a1b05e9774203bf46,wstETH-bb-a-WETH-BPT,5000,ComposableStable,5.0,"['0x41503c9d499ddbd1dcdf818a1b05e9774203bf46', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xbb6881874825e60e1160416d6c426eae65f2459e']",44081458.35393109769126035011461743,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0x4228290ee9cab692938ff0b4ba303fbcdb68e9f200020000000000000000057d,0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2,50bb-a-WETH-50ETHx,,Weighted,4.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0xa35b1b31ce002fbf2058d22f30f95d405200a15b']",0.01113974828300175506102657392834337,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x454ed96955d04d2f5cdd05e0fd1c77975bfe5307000000000000000000000410,0x454ed96955d04d2f5cdd05e0fd1c77975bfe5307,bb-a-TUSD,,AaveLinear,3.0,"['0x454ed96955d04d2f5cdd05e0fd1c77975bfe5307', '0x0000000000085d4780b73119b644ae5ecd22b376', '0x236f4a95361e03267329a558bdd224b1f95f1377']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb200000000000000000000056a,0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb2,rETH/bbaWETH BPT,500,ComposableStable,4.0,"['0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb2', '0x60d604890feaa0b5460b28a424407c24fe89374a', '0xae78736cd615f374d3085123a210448e74fc6393']",38.77089774268722181664202264518753,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0x483006684f422a9448023b2382615c57c5ecf18f000000000000000000000488,0x483006684f422a9448023b2382615c57c5ecf18f,TUSD-bb-e-USD,600,ComposableStable,3.0,"['0x3bb22fc9033b802f2ac47c18885f63476f158afc', '0x483006684f422a9448023b2382615c57c5ecf18f', '0x50cf90b954958480b8df7958a9e965752f627124']",12.7426816494463815895460716963262,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x4a82b580365cff9b146281ab72500957a849abdc000000000000000000000494,0x4a82b580365cff9b146281ab72500957a849abdc,bb-g-USDC,,GearboxLinear,1.0,"['0x4a82b580365cff9b146281ab72500957a849abdc', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xc411db5f5eb3f7d552f9b8454b2d74097ccde6e3']",3088127.443882898847496707175441,,False,False,False,mainnet,to be put in recovery mode by the dao +0x4c81255cc9ed7062180ea99962fe05ac0d57350b0000000000000000000005a3,0x4c81255cc9ed7062180ea99962fe05ac0d57350b,cbETH-bb-a-WETH-BPT ,1500,ComposableStable,5.0,"['0x4c81255cc9ed7062180ea99962fe05ac0d57350b', '0xbb6881874825e60e1160416d6c426eae65f2459e', '0xbe9895146f7af43049ca1c1ae358b0541ea49704']",251927.9686532107725980181384900758,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0x4c8d2e60863e8d7e1033eda2b3d84e92a641802000000000000000000000040f,0x4c8d2e60863e8d7e1033eda2b3d84e92a6418020,FBP,1500,ComposableStable,1.0,"['0x4c8d2e60863e8d7e1033eda2b3d84e92a6418020', '0x6a1eb2e9b45e772f55bd9a34659a04b6f75da687', '0x82698aecc9e28e9bb27608bd52cf57f704bd1b83']",18.14649713017088067292419663469236,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x4cbde5c4b4b53ebe4af4adb85404725985406163000000000000000000000595,0x4cbde5c4b4b53ebe4af4adb85404725985406163,B-ETHx/bb-a-WETH ,1500,ComposableStable,5.0,"['0x4cbde5c4b4b53ebe4af4adb85404725985406163', '0xa35b1b31ce002fbf2058d22f30f95d405200a15b', '0xbb6881874825e60e1160416d6c426eae65f2459e']",17643782.14496388071996774458984677,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0x4ce0bd7debf13434d3ae127430e9bd4291bfb61f00020000000000000000038b,0x4ce0bd7debf13434d3ae127430e9bd4291bfb61f,50STG-50bb-a-USD,,Weighted,2.0,"['0xa13a9247ea42d743238089903570127dda72fe44', '0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6']",156.12822357996325409612044265042,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x4ce277df0feb5b4d07a0ca2adcf5326e4005239d000000000000000000000518,0x4ce277df0feb5b4d07a0ca2adcf5326e4005239d,TEST,,AaveLinear,5.0,"['0x4ce277df0feb5b4d07a0ca2adcf5326e4005239d', '0x1f3c910c416ed2340150281c5eb93325c38817a1', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x4fd4687ec38220f805b6363c3c1e52d0df3b5023000200000000000000000473,0x4fd4687ec38220f805b6363c3c1e52d0df3b5023,50wstETH-50bb-euler-USD,,Weighted,3.0,"['0x50cf90b954958480b8df7958a9e965752f627124', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0']",24.41952700869994050478391655297204,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x4fd63966879300cafafbb35d157dc5229278ed230000000000000000000000e9,0x4fd63966879300cafafbb35d157dc5229278ed23,bb-a-USD,100,StablePhantom,1.0,"['0x4fd63966879300cafafbb35d157dc5229278ed23', '0x652d486b80c461c397b0d95612a404da936f3db3', '0xa3823e50f20982656557a4a6a9c06ba5467ae908', '0xe6bcc79f328eec93d4ec8f7ed35534d9ab549faa']",305.7490625781292581081963105935702,0x288c09d17a66a49177d3846372ed318ac16a8f42,False,False,False,mainnet,pool doesn't implement recovery mode +0x50cf90b954958480b8df7958a9e965752f62712400000000000000000000046f,0x50cf90b954958480b8df7958a9e965752f627124,bb-euler-USD-BPT,2000,ComposableStable,3.0,"['0x3c640f0d3036ad85afa2d5a9e32be651657b874f', '0x50cf90b954958480b8df7958a9e965752f627124', '0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a4399', '0xeb486af868aeb3b6e53066abc9623b1041b42bc0']",929363.3585579886621300282434660403,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x53bc3cba3832ebecbfa002c12023f8ab1aa3a3a0000000000000000000000411,0x53bc3cba3832ebecbfa002c12023f8ab1aa3a3a0,TUSD BSP,600,ComposableStable,1.0,"['0x454ed96955d04d2f5cdd05e0fd1c77975bfe5307', '0x53bc3cba3832ebecbfa002c12023f8ab1aa3a3a0', '0xa13a9247ea42d743238089903570127dda72fe44']",10.10615600218632510125599774532362,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x5a6a8cffb4347ff7fc484bf5f0f8a2e234d34255000200000000000000000275,0x5a6a8cffb4347ff7fc484bf5f0f8a2e234d34255,50bb-a-USD-50wstETH,,Weighted,1.0,"['0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0']",0.00000000004278607521597162440035736601097666,0xc38c5f97b34e175ffd35407fc91a937300e33860,False,False,False,mainnet,pool doesn't implement recovery mode +0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e6400000000000000000000037b,0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64,DOLA BSP,2000,ComposableStable,1.0,"['0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64', '0x865377367054516e17014ccded1e7d814edc9ce4', '0xa13a9247ea42d743238089903570127dda72fe44']",22.54425734241852416838216369077696,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa000000000000000000000489,0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa,bb-i-USD,2000,ComposableStable,3.0,"['0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7', '0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa', '0xbc0f2372008005471874e426e86ccfae7b4de79d', '0xdba274b4d04097b90a72b62467d828cefd708037']",2600467.560420514553300478682868458,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x60d604890feaa0b5460b28a424407c24fe89374a0000000000000000000004fc,0x60d604890feaa0b5460b28a424407c24fe89374a,bb-a-WETH,,ERC4626Linear,3.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0x59463bb67ddd04fe58ed291ba36c26d99a39fbc6', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",4535049.078879592662095075988294694,,True,False,True,mainnet,to be put in recovery mode by the dao +0x639883476960a23b38579acfd7d71561a0f408cf000200000000000000000505,0x639883476960a23b38579acfd7d71561a0f408cf,50STG-50bbaUSD,,Weighted,3.0,"['0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6', '0xfebb0bbf162e64fb9d0dfe186e517d84c395f016']",12423742.69151480513969023879945569,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x652d486b80c461c397b0d95612a404da936f3db30000000000000000000000e7,0x652d486b80c461c397b0d95612a404da936f3db3,bb-a-USDC,,AaveLinear,1.0,"['0x652d486b80c461c397b0d95612a404da936f3db3', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd093fa4fb80d09bb30817fdcd442d4d02ed3e5de']",96.75329789710660411784619848845237,,False,False,False,mainnet,pool doesn't implement recovery mode +0x6667c6fa9f2b3fc1cc8d85320b62703d938e43850000000000000000000004fb,0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385,bb-a-DAI,,ERC4626Linear,3.0,"['0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385', '0x098256c06ab24f5655c5506a6488781bd711c14b', '0x6b175474e89094c44da98b954eedeac495271d0f']",2202989.883164282943551178306408969,,True,False,True,mainnet,to be put in recovery mode by the dao +0x6a1eb2e9b45e772f55bd9a34659a04b6f75da68700000000000000000000040d,0x6a1eb2e9b45e772f55bd9a34659a04b6f75da687,bb-a-FRAX,,AaveLinear,3.0,"['0x6a1eb2e9b45e772f55bd9a34659a04b6f75da687', '0x3efceb450fb799f67cd97cdc27a0f4cd7b02b63b', '0x853d955acef822db058eb8505911ed77f175b99e']",5.9962842,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x6c56e72c551b5ac4bf54a620a76077ca768c8fe40002000000000000000004da,0x6c56e72c551b5ac4bf54a620a76077ca768c8fe4,80callFLAIX270323-20bb-a-USD,,Weighted,3.0,"['0x9a48f127174e5d87791bf7c273e8173a559bf209', '0xa13a9247ea42d743238089903570127dda72fe44']",0.00000000000008915673125920398950812799645764109,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x70b7d3b3209a59fb0400e17f67f3ee8c37363f4900020000000000000000018f,0x70b7d3b3209a59fb0400e17f67f3ee8c37363f49,50-WETH-50-bb-a-USD,,Weighted,1.0,"['0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",279.594840126254720095427676603591,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool doesn't implement recovery mode +0x7337224d59cb16c2dc6938cd45a7b2c60c865d6a0000000000000000000004d4,0x7337224d59cb16c2dc6938cd45a7b2c60c865d6a,bb-ma2-USDT,,ERC4626Linear,3.0,"['0x7337224d59cb16c2dc6938cd45a7b2c60c865d6a', '0xafe7131a57e44f832cb2de78ade38cad644aac2f', '0xdac17f958d2ee523a2206206994597c13d831ec7']",94.43740442546950917122316118321964,,False,False,False,mainnet,to be put in recovery mode by the dao +0x74cbfaf94a3577c539a9dcee9870a6349a33b34f000000000000000000000534,0x74cbfaf94a3577c539a9dcee9870a6349a33b34f,TEST,,SiloLinear,2.0,"['0x74cbfaf94a3577c539a9dcee9870a6349a33b34f', '0x192e67544694a7baa2dea94f9b1df58bb3395a12', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x779d01f939d78a918a3de18cc236ee89221dfd4e0000000000000000000004c7,0x779d01f939d78a918a3de18cc236ee89221dfd4e,bb-s-USD,2000,ComposableStable,3.0,"['0x779d01f939d78a918a3de18cc236ee89221dfd4e', '0xbfa413a2ff0f20456d57b643746133f54bfe0cd2', '0xdc063deafce952160ec112fa382ac206305657e6', '0xfd11ccdbdb7ab91cb9427a6d6bf570c95876d195']",9,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb20000000000000000000000fe,0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2,bb-a-USD,1472,StablePhantom,1.0,"['0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c', '0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2', '0x804cdb9116a10bb78768d3252355a1b18067bf8f', '0x9210f1204b5a24742eba12f710636d76240df3d0']",1095670.598235106177916321029094285,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool doesn't implement recovery mode +0x804cdb9116a10bb78768d3252355a1b18067bf8f0000000000000000000000fb,0x804cdb9116a10bb78768d3252355a1b18067bf8f,bb-a-DAI,,AaveLinear,1.0,"['0x02d60b84491589974263d922d9cc7a3152618ef6', '0x6b175474e89094c44da98b954eedeac495271d0f', '0x804cdb9116a10bb78768d3252355a1b18067bf8f']",298836.4591857576712108780178256942,,False,False,False,mainnet,pool doesn't implement recovery mode +0x813e3fe1761f714c502d1d2d3a7cceb33f37f59d00000000000000000000040c,0x813e3fe1761f714c502d1d2d3a7cceb33f37f59d,TEST,,AaveLinear,3.0,"['0x813e3fe1761f714c502d1d2d3a7cceb33f37f59d', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', '0xf9f5e0f3f74f57755a8c8be7b2fedcaa40673080']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x82698aecc9e28e9bb27608bd52cf57f704bd1b83000000000000000000000336,0x82698aecc9e28e9bb27608bd52cf57f704bd1b83,bb-a-USDC,,AaveLinear,2.0,"['0x82698aecc9e28e9bb27608bd52cf57f704bd1b83', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd093fa4fb80d09bb30817fdcd442d4d02ed3e5de']",610394.785019463662019056367561774,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x8a6b25e33b12d1bb6929a8793961076bd1f9d3eb0002000000000000000003e8,0x8a6b25e33b12d1bb6929a8793961076bd1f9d3eb,80XAV-20bb-a-USD,,Weighted,1.0,"['0x40370aed88933021e20cf7c4d67e00417cda2202', '0xa13a9247ea42d743238089903570127dda72fe44']",106283.8155214862748042675268987267,0x01e198818a895f01562e0a087595e5b1c7bb8d5c,False,False,False,mainnet,pool doesn't implement recovery mode +0x8e6ec57a822c2f527f2df7c7d7d361df3e7530a1000000000000000000000498,0x8e6ec57a822c2f527f2df7c7d7d361df3e7530a1,bb-yv-DAI,,YearnLinear,1.0,"['0x8e6ec57a822c2f527f2df7c7d7d361df3e7530a1', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xda816459f1ab5631232fe5e97a05bbbb94970c95']",8.745237728658437563,,False,False,False,mainnet,to be put in recovery mode by the dao +0x8f4063446f5011bc1c9f79a819efe87776f23704000000000000000000000197,0x8f4063446f5011bc1c9f79a819efe87776f23704,bb-f-DAI,,ERC4626Linear,1.0,"['0x6b175474e89094c44da98b954eedeac495271d0f', '0x8f4063446f5011bc1c9f79a819efe87776f23704', '0xba63738c2e476b1a0cfb6b41a7b85d304d032454']",152.150769762942109065,,False,False,False,mainnet,pool doesn't implement recovery mode +0x9001cbbd96f54a658ff4e6e65ab564ded76a543100000000000000000000050a,0x9001cbbd96f54a658ff4e6e65ab564ded76a5431,cbETH-bb-a-WETH-BPT,700,ComposableStable,3.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0x9001cbbd96f54a658ff4e6e65ab564ded76a5431', '0xbe9895146f7af43049ca1c1ae358b0541ea49704']",7246667.619049036069300056501094906,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0x9210f1204b5a24742eba12f710636d76240df3d00000000000000000000000fc,0x9210f1204b5a24742eba12f710636d76240df3d0,bb-a-USDC,,AaveLinear,1.0,"['0x9210f1204b5a24742eba12f710636d76240df3d0', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd093fa4fb80d09bb30817fdcd442d4d02ed3e5de']",301463.4702835245343310250905444396,,False,False,False,mainnet,pool doesn't implement recovery mode +0x9516a2d25958edb8da246a320f2c7d94a0dbe25d000000000000000000000519,0x9516a2d25958edb8da246a320f2c7d94a0dbe25d,TEST,,ERC4626Linear,4.0,"['0x9516a2d25958edb8da246a320f2c7d94a0dbe25d', '0xb99edc4b289b0f2284fcf3f66884191bdce29624', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x959216bb492b2efa72b15b7aacea5b5c984c3cca000200000000000000000472,0x959216bb492b2efa72b15b7aacea5b5c984c3cca,50wstETH-50stk-APE,,Weighted,3.0,"['0x126e7643235ec0ab9c103c507642dc3f4ca23c66', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0']",6976.621551486696532452501246264959,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x968024662b9566b42d78af23a0f441bc8723fa83000200000000000000000418,0x968024662b9566b42d78af23a0f441bc8723fa83,50TRYB-50bb-a-USD,,Weighted,1.0,"['0x2c537e5624e4af88a7ae4060c022609376c8d0eb', '0xa13a9247ea42d743238089903570127dda72fe44']",0.00000005242899665380701869706906461338895,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool doesn't implement recovery mode +0x99c88ad7dc566616548adde8ed3effa730eb6c3400000000000000000000049a,0x99c88ad7dc566616548adde8ed3effa730eb6c34,bb-g-USD,2000,ComposableStable,3.0,"['0x4a82b580365cff9b146281ab72500957a849abdc', '0x99c88ad7dc566616548adde8ed3effa730eb6c34', '0xe03af00fabe8401560c1ff7d242d622a5b601573']",5598504.995048829537352099975658466,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x9b1c8407a360443a9e5eca004713e4088fab8ac0000000000000000000000497,0x9b1c8407a360443a9e5eca004713e4088fab8ac0,bb-yv-USDC,,YearnLinear,1.0,"['0x9b1c8407a360443a9e5eca004713e4088fab8ac0', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xa354f35829ae975e850e23e9615b11da1b3dc4de']",10.196796,,False,False,False,mainnet,to be put in recovery mode by the dao +0x9b692f571b256140a39a34676bffa30634c586e100000000000000000000059d,0x9b692f571b256140a39a34676bffa30634c586e1,bb-i-USD,2000,ComposableStable,5.0,"['0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7', '0x9b692f571b256140a39a34676bffa30634c586e1', '0xbc0f2372008005471874e426e86ccfae7b4de79d', '0xdba274b4d04097b90a72b62467d828cefd708037']",80935.14059430971981730495901115491,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,mainnet,to be put in recovery mode by emergency multisig +0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33000200000000000000000573,0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33,50OHM/50bbaWETH,,Weighted,4.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5']",21.08348769209585941346395843295948,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x9fb771d530b0ceba5160f7bfe2dd1e8b8aa1340300000000000000000000040e,0x9fb771d530b0ceba5160f7bfe2dd1e8b8aa13403,FBP,1500,ComposableStable,1.0,"['0x6a1eb2e9b45e772f55bd9a34659a04b6f75da687', '0x82698aecc9e28e9bb27608bd52cf57f704bd1b83', '0x9fb771d530b0ceba5160f7bfe2dd1e8b8aa13403']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xa13a9247ea42d743238089903570127dda72fe4400000000000000000000035d,0xa13a9247ea42d743238089903570127dda72fe44,bb-a-USD,1472,ComposableStable,1.0,"['0x2f4eb100552ef93840d5adc30560e5513dfffacb', '0x82698aecc9e28e9bb27608bd52cf57f704bd1b83', '0xa13a9247ea42d743238089903570127dda72fe44', '0xae37d54ae477268b9997d4161b96b8200755935c']",2106261.630685883551935804126488191,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xa1697f9af0875b63ddc472d6eebada8c1fab85680000000000000000000004f9,0xa1697f9af0875b63ddc472d6eebada8c1fab8568,bb-a-USDT,,ERC4626Linear,3.0,"['0xa1697f9af0875b63ddc472d6eebada8c1fab8568', '0xa7e0e66f38b8ad8343cff67118c1f33e827d1455', '0xdac17f958d2ee523a2206206994597c13d831ec7']",5324455.826740266712888788519969251,,True,False,True,mainnet,to be put in recovery mode by the dao +0xa3823e50f20982656557a4a6a9c06ba5467ae9080000000000000000000000e6,0xa3823e50f20982656557a4a6a9c06ba5467ae908,bb-a-DAI,,AaveLinear,1.0,"['0x02d60b84491589974263d922d9cc7a3152618ef6', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xa3823e50f20982656557a4a6a9c06ba5467ae908']",105.7832714293916134590173318708545,,False,False,False,mainnet,pool doesn't implement recovery mode +0xa718042e5622099e5f0ace4e7122058ab39e1bbe000200000000000000000475,0xa718042e5622099e5f0ace4e7122058ab39e1bbe,50TEMPLE-50bb-euler-USD,,Weighted,3.0,"['0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7', '0x50cf90b954958480b8df7958a9e965752f627124']",79.62586507627283917587451261017698,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xa8b103a10a94f4f2d7ed2fdcd5545e807557330700000000000000000000048e,0xa8b103a10a94f4f2d7ed2fdcd5545e8075573307,TEST,,GearboxLinear,1.0,"['0xa8b103a10a94f4f2d7ed2fdcd5545e8075573307', '0x4be0e4d6184348c5ba845a4010528cfc779610b8', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0xac5b4ef7ede2f2843a704e96dcaa637f4ba3dc3f00000000000000000000051d,0xac5b4ef7ede2f2843a704e96dcaa637f4ba3dc3f,TEST,,YearnLinear,2.0,"['0xac5b4ef7ede2f2843a704e96dcaa637f4ba3dc3f', '0x806e02dea8d4a0882cad9fa3fa75b212328692de', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0xac976bb42cb0c85635644e8c7c74d0e0286aa61c0000000000000000000003cb,0xac976bb42cb0c85635644e8c7c74d0e0286aa61c,FIAT-bbausd,200,ComposableStable,1.0,"['0x586aa273f262909eef8fa02d90ab65f5015e0516', '0xa13a9247ea42d743238089903570127dda72fe44', '0xac976bb42cb0c85635644e8c7c74d0e0286aa61c']",24.90762722328420138070510248181534,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xae37d54ae477268b9997d4161b96b8200755935c000000000000000000000337,0xae37d54ae477268b9997d4161b96b8200755935c,bb-a-DAI,,AaveLinear,2.0,"['0x02d60b84491589974263d922d9cc7a3152618ef6', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xae37d54ae477268b9997d4161b96b8200755935c']",569130.6009694411086419923632206447,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0xae8535c23afedda9304b03c68a3563b75fc8f92b0000000000000000000005a0,0xae8535c23afedda9304b03c68a3563b75fc8f92b,swETH-bb-a-WETH-BPT,500,ComposableStable,5.0,"['0xae8535c23afedda9304b03c68a3563b75fc8f92b', '0xbb6881874825e60e1160416d6c426eae65f2459e', '0xf951e335afb289353dc249e82926178eac7ded78']",16022957.23055461826459138759700287,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xb0f75e97a114a4eb4a425edc48990e6760726709000000000000000000000198,0xb0f75e97a114a4eb4a425edc48990e6760726709,bb-f-LUSD,,ERC4626Linear,1.0,"['0x5f98805a4e8be255a32880fdec7f6728c6568ba0', '0x83e556baea9b5fa5f131bc89a4c7282ca240b156', '0xb0f75e97a114a4eb4a425edc48990e6760726709']",7.115589632204103665777979812223933,,False,False,False,mainnet,pool doesn't implement recovery mode +0xb5e3de837f869b0248825e0175da73d4e8c3db6b000200000000000000000474,0xb5e3de837f869b0248825e0175da73d4e8c3db6b,50rETH-50bb-euler-USD,,Weighted,3.0,"['0x50cf90b954958480b8df7958a9e965752f627124', '0xae78736cd615f374d3085123a210448e74fc6393']",5.987758659425485478660083659739912,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xb841b062ea8ccf5c4cb78032e91de4ae875560420002000000000000000005b7,0xb841b062ea8ccf5c4cb78032e91de4ae87556042,50bb-s-DAI-50bb-a-USD,,Weighted,4.0,"['0x2b218683178d029bab6c9789b1073aa6c96e5176', '0xa13a9247ea42d743238089903570127dda72fe44']",25.81568865714325724903781635669691,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6000200000000000000000385,0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6,50wstETH-50bb-a-USD,,Weighted,2.0,"['0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xa13a9247ea42d743238089903570127dda72fe44']",5.564746335922267585725703618686631,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xbb6881874825e60e1160416d6c426eae65f2459e000000000000000000000592,0xbb6881874825e60e1160416d6c426eae65f2459e,bb-a-WETH,,ERC4626Linear,4.0,"['0xbb6881874825e60e1160416d6c426eae65f2459e', '0x03928473f25bb2da6bc880b07ecbadc636822264', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",23064967.09937800756779259279222537,,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0xbc0f2372008005471874e426e86ccfae7b4de79d000000000000000000000485,0xbc0f2372008005471874e426e86ccfae7b4de79d,bb-i-USDC,,ERC4626Linear,3.0,"['0xbc0f2372008005471874e426e86ccfae7b4de79d', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xc3da79e0de523eef7ac1e4ca9abfe3aac9973133']",647180.947043406421592572428288,,False,False,False,mainnet,to be put in recovery mode by the dao +0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef3300000000000000000000058d,0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33,R-bb-s-DAI-BLP,120,ComposableStable,5.0,"['0x183015a9ba6ff60230fdeadc3f43b3d788b13e21', '0x2b218683178d029bab6c9789b1073aa6c96e5176', '0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33']",7026913.014283733680603779924870912,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,mainnet,to be put in recovery mode by emergency multisig +0xbfa413a2ff0f20456d57b643746133f54bfe0cd20000000000000000000004c3,0xbfa413a2ff0f20456d57b643746133f54bfe0cd2,bb-s-USDC,,AaveLinear,4.0,"['0xbfa413a2ff0f20456d57b643746133f54bfe0cd2', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd7bc0dcb0b6ee14bdb204172aba01458abe91ac3']",10,,False,False,False,mainnet,to be put in recovery mode by the dao +0xc2b021133d1b0cf07dba696fd5dd89338428225b000000000000000000000598,0xc2b021133d1b0cf07dba696fd5dd89338428225b,GHO/bb-a-USD,100,ComposableStable,5.0,"['0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f', '0xc2b021133d1b0cf07dba696fd5dd89338428225b', '0xc443c15033fcb6cf72cc24f1bda0db070ddd9786']",15166253.05799056562776767120291646,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xc443c15033fcb6cf72cc24f1bda0db070ddd9786000000000000000000000593,0xc443c15033fcb6cf72cc24f1bda0db070ddd9786,bb-a-USD,4000,ComposableStable,5.0,"['0xc443c15033fcb6cf72cc24f1bda0db070ddd9786', '0xc50d4347209f285247bda8a09fc1c12ce42031c3', '0xcfae6e251369467f465f13836ac8135bd42f8a56', '0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9']",3225055.025325651647649160383483328,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xc50d4347209f285247bda8a09fc1c12ce42031c3000000000000000000000590,0xc50d4347209f285247bda8a09fc1c12ce42031c3,bb-a-USDC,,ERC4626Linear,4.0,"['0xc50d4347209f285247bda8a09fc1c12ce42031c3', '0x02c2d189b45ce213a40097b62d311cf0dd16ec92', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48']",568616.382075,,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0xc5dc1316ab670a2eed5716d7f19ced321191f38200000000000000000000056e,0xc5dc1316ab670a2eed5716d7f19ced321191f382,B-wstETH/bb-ma3-weth,1500,ComposableStable,4.0,"['0x3fcb7085b8f2f473f80bf6d879cae99ea4de9344', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xc5dc1316ab670a2eed5716d7f19ced321191f382']",198.1128867553347079279921164403418,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xc8c79fcd0e859e7ec81118e91ce8e4379a481ee6000000000000000000000196,0xc8c79fcd0e859e7ec81118e91ce8e4379a481ee6,bb-f-FEI,,ERC4626Linear,1.0,"['0x956f47f50a910163d8bf957cf5846d573e7f87ca', '0xc8c79fcd0e859e7ec81118e91ce8e4379a481ee6', '0xf486608dbc7dd0eb80e4b9fa0fdb03e40f414030']",295.7731503008694231595202167669809,,False,False,False,mainnet,pool doesn't implement recovery mode +0xcaa052584b462198a5a9356c28bce0634d65f65c0000000000000000000004db,0xcaa052584b462198a5a9356c28bce0634d65f65c,bb-ma2-USD,2000,ComposableStable,3.0,"['0x159cb00338fb63f263fd6f621df619cef71da954', '0x335d1709d4da9aca59d16328db5cd4ea66bfe06b', '0x7337224d59cb16c2dc6938cd45a7b2c60c865d6a', '0xcaa052584b462198a5a9356c28bce0634d65f65c']",433.1792771551143841822095144082127,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xcbfa4532d8b2ade2c261d3dd5ef2a2284f7926920000000000000000000004fa,0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692,bb-a-USDC,,ERC4626Linear,3.0,"['0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692', '0x57d20c946a7a3812a7225b881cdcd8431d23431c', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48']",2318945.397081766375668142964993414,,True,False,True,mainnet,to be put in recovery mode by the dao +0xcfae6e251369467f465f13836ac8135bd42f8a56000000000000000000000591,0xcfae6e251369467f465f13836ac8135bd42f8a56,bb-a-USDT,,ERC4626Linear,4.0,"['0xcfae6e251369467f465f13836ac8135bd42f8a56', '0x65799b9fd4206cdaa4a1db79254fcbc2fd2ffee6', '0xdac17f958d2ee523a2206206994597c13d831ec7']",1900587.454525,,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a439900000000000000000000046a,0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a4399,bb-e-USDC,,EulerLinear,1.0,"['0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a4399', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xeb91861f8a4e1c12333f42dce8fb0ecdc28da716']",460378.0571850930472473145370925815,,False,False,False,mainnet,pool is already in recovery mode +0xd6e355036f41dc261b3f1ed3bbc6003e87aadb4f000000000000000000000495,0xd6e355036f41dc261b3f1ed3bbc6003e87aadb4f,bb-yv-USDT,,YearnLinear,1.0,"['0xd6e355036f41dc261b3f1ed3bbc6003e87aadb4f', '0x3b27f92c0e212c671ea351827edf93db27cc0c65', '0xdac17f958d2ee523a2206206994597c13d831ec7']",10,,False,False,False,mainnet,to be put in recovery mode by the dao +0xd7edb56f63b2a0191742aea32df1f98ca81ed9c600000000000000000000058e,0xd7edb56f63b2a0191742aea32df1f98ca81ed9c6,B-wstETH/bb-ma3-weth,1500,ComposableStable,5.0,"['0x3fcb7085b8f2f473f80bf6d879cae99ea4de9344', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xd7edb56f63b2a0191742aea32df1f98ca81ed9c6']",39.9215844690559739845733838415117,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,mainnet,to be put in recovery mode by emergency multisig +0xd997f35c9b1281b82c8928039d14cddab5e13c2000000000000000000000019c,0xd997f35c9b1281b82c8928039d14cddab5e13c20,bb-f-USD,500,StablePhantom,1.0,"['0x8f4063446f5011bc1c9f79a819efe87776f23704', '0xb0f75e97a114a4eb4a425edc48990e6760726709', '0xc8c79fcd0e859e7ec81118e91ce8e4379a481ee6', '0xd997f35c9b1281b82c8928039d14cddab5e13c20']",454.2773124394136341027747216039839,0x097105c0fc6506420ded8091a358f728e065112a,False,False,False,mainnet,pool doesn't implement recovery mode +0xdba274b4d04097b90a72b62467d828cefd708037000000000000000000000486,0xdba274b4d04097b90a72b62467d828cefd708037,bb-i-DAI,,ERC4626Linear,3.0,"['0xdba274b4d04097b90a72b62467d828cefd708037', '0x0c80f31b840c6564e6c5e18f386fad96b63514ca', '0x6b175474e89094c44da98b954eedeac495271d0f']",717919.4701316501243581194148478196,,False,False,False,mainnet,to be put in recovery mode by the dao +0xdc063deafce952160ec112fa382ac206305657e60000000000000000000004c4,0xdc063deafce952160ec112fa382ac206305657e6,bb-s-USDT,,AaveLinear,4.0,"['0xdc063deafce952160ec112fa382ac206305657e6', '0x822802f970ccd9aeb13d0368a2409804d28e1253', '0xdac17f958d2ee523a2206206994597c13d831ec7']",10,,False,False,False,mainnet,to be put in recovery mode by the dao +0xdec02e6642e2c999af429f5ce944653cad15e093000000000000000000000469,0xdec02e6642e2c999af429f5ce944653cad15e093,TEST,,EulerLinear,1.0,"['0xdec02e6642e2c999af429f5ce944653cad15e093', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', '0xc101dca301a4011c1f925e9622e749e550a1b667']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0xe03af00fabe8401560c1ff7d242d622a5b601573000000000000000000000493,0xe03af00fabe8401560c1ff7d242d622a5b601573,bb-g-DAI,,GearboxLinear,1.0,"['0xe03af00fabe8401560c1ff7d242d622a5b601573', '0x6b175474e89094c44da98b954eedeac495271d0f', '0x6cfaf95457d7688022fc53e7abe052ef8dfbbdba']",2510354.83997445501554227339964276,,False,False,False,mainnet,to be put in recovery mode by the dao +0xe0fcbf4d98f0ad982db260f86cf28b49845403c5000000000000000000000504,0xe0fcbf4d98f0ad982db260f86cf28b49845403c5,wstETH-bb-a-WETH-BPT,700,ComposableStable,3.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xe0fcbf4d98f0ad982db260f86cf28b49845403c5']",201945.5898287336637936619283460765,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e10000000000000000000005a7,0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e1,DUSD/bbaUSD-BPT,500,ComposableStable,5.0,"['0xa48f322f8b3edff967629af79e027628b9dd1298', '0xc443c15033fcb6cf72cc24f1bda0db070ddd9786', '0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e1']",20.00120683372486218898222247087722,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xe4dc3c1998ac693d68f4c77476d7c815694c3e94000200000000000000000416,0xe4dc3c1998ac693d68f4c77476d7c815694c3e94,50TRYB-50bb-a-USD,,Weighted,1.0,"['0x2c537e5624e4af88a7ae4060c022609376c8d0eb', '0xa13a9247ea42d743238089903570127dda72fe44']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool doesn't implement recovery mode +0xe6bcc79f328eec93d4ec8f7ed35534d9ab549faa0000000000000000000000e8,0xe6bcc79f328eec93d4ec8f7ed35534d9ab549faa,bb-a-USDT,,AaveLinear,1.0,"['0xdac17f958d2ee523a2206206994597c13d831ec7', '0xe6bcc79f328eec93d4ec8f7ed35534d9ab549faa', '0xf8fd466f12e236f4c96f7cce6c79eadb819abf58']",103.5837651167742517928185909134505,,False,False,False,mainnet,pool doesn't implement recovery mode +0xe8c56405bc405840154d9b572927f4197d110de10000000000000000000005a4,0xe8c56405bc405840154d9b572927f4197d110de1,rETH/bbaWETH BPT ,1500,ComposableStable,5.0,"['0xae78736cd615f374d3085123a210448e74fc6393', '0xbb6881874825e60e1160416d6c426eae65f2459e', '0xe8c56405bc405840154d9b572927f4197d110de1']",38.1541999102017649172509324349774,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xeb486af868aeb3b6e53066abc9623b1041b42bc000000000000000000000046c,0xeb486af868aeb3b6e53066abc9623b1041b42bc0,bb-e-DAI,,EulerLinear,1.0,"['0xeb486af868aeb3b6e53066abc9623b1041b42bc0', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xe025e3ca2be02316033184551d4d3aa22024d9dc']",415585.6662792400967419737883894163,,False,False,False,mainnet,pool is already in recovery mode +0xeb567dde03f3da7fe185bdacd5ab495ab220769d000000000000000000000548,0xeb567dde03f3da7fe185bdacd5ab495ab220769d,ankrETH-bb-a-WETH-BPT,100,ComposableStable,3.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0xe95a203b1a91a908f9b9ce46459d101078c2c3cb', '0xeb567dde03f3da7fe185bdacd5ab495ab220769d']",1528.350246679844002961013684528319,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xec3626fee40ef95e7c0cbb1d495c8b67b34d398300000000000000000000053d,0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983,B-S-UZD-BB-A-USD,500,ComposableStable,4.0,"['0xb40b6608b2743e691c9b54ddbdee7bf03cd79f1c', '0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983', '0xfebb0bbf162e64fb9d0dfe186e517d84c395f016']",4.037583370400195265987487334688729,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xf22ff21e17157340575158ad7394e068048dd98b0000000000000000000004b8,0xf22ff21e17157340575158ad7394e068048dd98b,bb-ag-EUR,,ERC4626Linear,3.0,"['0xf22ff21e17157340575158ad7394e068048dd98b', '0x1a7e4e63778b4f12a199c062f3efdd288afcbce8', '0x6ab3cf01b27e507953365ddf70f97da99471706b']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0xf57c794f42da72b38c8f610ff3b5e8502e48cbde00000000000000000000055c,0xf57c794f42da72b38c8f610ff3b5e8502e48cbde,DOLA/bb-a-USD,200,ComposableStable,4.0,"['0x865377367054516e17014ccded1e7d814edc9ce4', '0xf57c794f42da72b38c8f610ff3b5e8502e48cbde', '0xfebb0bbf162e64fb9d0dfe186e517d84c395f016']",14.04037214464347815278852011786549,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xf71d0774b214c4cf51e33eb3d30ef98132e4dbaa00000000000000000000046e,0xf71d0774b214c4cf51e33eb3d30ef98132e4dbaa,bb-e-FRAX,,EulerLinear,1.0,"['0xf71d0774b214c4cf51e33eb3d30ef98132e4dbaa', '0x5484451a88a35cd0878a1be177435ca8a0e4054e', '0x853d955acef822db058eb8505911ed77f175b99e']",9.982253281352618534131156578650758,,False,False,False,mainnet,to be put in recovery mode by the dao +0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f900000000000000000000058f,0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9,bb-a-DAI,,ERC4626Linear,4.0,"['0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xeb708639e8e518b86a916db3685f90216b1c1c67']",755888.07091475662752655,,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0xfd11ccdbdb7ab91cb9427a6d6bf570c95876d1950000000000000000000004c2,0xfd11ccdbdb7ab91cb9427a6d6bf570c95876d195,bb-s-DAI,,AaveLinear,4.0,"['0xfd11ccdbdb7ab91cb9427a6d6bf570c95876d195', '0x6b175474e89094c44da98b954eedeac495271d0f', '0x86a42b7a448c1568d21b00c90eab53b8417eeadc']",10.00000000001,,False,False,False,mainnet,to be put in recovery mode by the dao +0xfebb0bbf162e64fb9d0dfe186e517d84c395f016000000000000000000000502,0xfebb0bbf162e64fb9d0dfe186e517d84c395f016,bb-a-USD,2500,ComposableStable,3.0,"['0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385', '0xa1697f9af0875b63ddc472d6eebada8c1fab8568', '0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692', '0xfebb0bbf162e64fb9d0dfe186e517d84c395f016']",9845522.898807223787330570361582815,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xfef969638c52899f91781f1be594af6f40b99bad00000000000000000000047b,0xfef969638c52899f91781f1be594af6f40b99bad,TEST,,ERC4626Linear,3.0,"['0xfef969638c52899f91781f1be594af6f40b99bad', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', '0xe605dbe1ca85dcdb8f43cefa427f3b0fc06f6ba6']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x02e139d53ebf4033bf78ab66c6a1e7f1f204487f0002000000000000000009f9,0x02e139d53ebf4033bf78ab66c6a1e7f1f204487f,50FRAX-50bb-am-USDC,,Weighted,1.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.0000000000007887510149001404793925306813159734,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x03090a9811181a2afe830a3a0b467698ccf3a8b1000000000000000000000bf5,0x03090a9811181a2afe830a3a0b467698ccf3a8b1,bb-am-usd,3000,ComposableStable,5.0,"['0x03090a9811181a2afe830a3a0b467698ccf3a8b1', '0x230ecdb2a7cee56d6889965a023aa0473d6da507', '0x63ce19ccd39930725b8a3d2733627804718ab83d', '0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953']",184.6682244687661414139657254583086,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0x0320c1c5b6df19a194d48882aaec1c72940081d9000000000000000000000a7d,0x0320c1c5b6df19a194d48882aaec1c72940081d9,TEST,,YearnLinear,1.0,"['0x0320c1c5b6df19a194d48882aaec1c72940081d9', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x533a16f90e7d3ca31dbc608e5ec54967710f0d2a']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x04b54ea92d73de2d62d651db7d9778f0c49157d8000200000000000000000ba2,0x04b54ea92d73de2d62d651db7d9778f0c49157d8,50stMATIC-bb-a-WMATIC-BPT-50agEUR,,Weighted,4.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0xe0b52e49357fd4daf2c15e02058dce6bc0057db4']",1.205237223762917402821072041248424,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x0503dd6b2d3dd463c9bef67fb5156870af63393e00000000000000000000042e,0x0503dd6b2d3dd463c9bef67fb5156870af63393e,bb-a-DAI,,AaveLinear,1.0,"['0x0503dd6b2d3dd463c9bef67fb5156870af63393e', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xa84b5b903f62ea61dfaac3f88123cc6b21bb81ab']",1.087565442432398881,,False,False,False,polygon,pool doesn't implement recovery mode +0x0889b240a5876aae745ac19f1771853671dc5d36000000000000000000000b3f,0x0889b240a5876aae745ac19f1771853671dc5d36,TEST,,AaveLinear,5.0,"['0x0889b240a5876aae745ac19f1771853671dc5d36', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0xe72b2780d3c57f781bd4e8572e200cd7e9a447c2']",0,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x0bc54e914f53f98d16035f4f0d948f3e09c2fac0000200000000000000000bac,0x0bc54e914f53f98d16035f4f0d948f3e09c2fac0,50USDC-50wstETH-bb-a-WETH-BPT,,Weighted,4.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a']",1.924701210731067663116238398302998,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x0c06e87c7b88d998f645b91c1f53b51294b12bca000100000000000000000bb9,0x0c06e87c7b88d998f645b91c1f53b51294b12bca,STARv2-SuperPoolv2,,Weighted,4.0,"['0xa0fdcdda62c4c6a0109a702a7efe59b4e8807e3f', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a', '0xd289c01528921b5f6d5b111a50a99456d495bf78']",0.001226841389035492259396242440442302,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x10b040038f87219d9b42e025e3bd9b8095c87dd9000000000000000000000b11,0x10b040038f87219d9b42e025e3bd9b8095c87dd9,bb-t-MATIC,2000,ComposableStable,3.0,"['0x10b040038f87219d9b42e025e3bd9b8095c87dd9', '0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x52cc8389c6b93d740325729cc7c958066cee4262']",3.575904848993965641611861929131039,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x117a3d474976274b37b7b94af5dcade5c90c6e85000000000000000000000aca,0x117a3d474976274b37b7b94af5dcade5c90c6e85,bb-t-USDC,,ERC4626Linear,3.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x113f3d54c31ebc71510fd664c8303b34fbc2b355', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x11884da90fb4221b3aa288a7741c51ec4fc43b2f000000000000000000000a5f,0x11884da90fb4221b3aa288a7741c51ec4fc43b2f,TEST,,AaveLinear,4.0,"['0x11884da90fb4221b3aa288a7741c51ec4fc43b2f', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0xb9f8ab3ed3f3acba64bc6cd2dca74b7f38fd7b88']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x1379b816b9be611431d693290289c204720ca56d000100000000000000000b6f,0x1379b816b9be611431d693290289c204720ca56d,33SUSHI-33stMATIC-bb-a-WMATIC-BPT-33GHST,,Weighted,4.0,"['0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a', '0x216690738aac4aa0c4770253ca26a28f0115c595', '0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x150e7b885bdfce974f2abe88a72fdbd692175c6f0002000000000000000009fd,0x150e7b885bdfce974f2abe88a72fdbd692175c6f,FRAX-bb-am-USDC,1500,Stable,1.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.0000000000008097136331599112654523446606996179,0x1b968e31b442c1bd5d76e2e28648bbe78ba588e3,False,False,False,polygon,pool doesn't implement recovery mode +0x16b98793f3e6a17d15931a2c9f98fe28d1c845a1000100000000000000000c1f,0x16b98793f3e6a17d15931a2c9f98fe28d1c845a1,1stMATIC-bb-a-WMATIC-BPT-0QI-50STARD-0fireEP-1bb-am-USD-1vQi-47STARV2,,Weighted,4.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0x580a84c73811e1839f75d86d75d88cca0c241ff4', '0x62f594339830b90ae4c084ae7d223ffafd9658a7', '0x8f1549718b9ad2632dc426ecc89305a83c1f03c8', '0xa2b205f8c0f0e30b3f73b7716a718c53cb8e5cc3', '0xb424dfdf817faf38ff7acf6f2efd2f2a843d1aca', '0xd289c01528921b5f6d5b111a50a99456d495bf78']",1.379073963981319883017908403623018,0xf60de76791c2f09995df52aa1c6e2e7dcf1e75d7,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x178e029173417b1f9c8bc16dcec6f697bc323746000000000000000000000758,0x178e029173417b1f9c8bc16dcec6f697bc323746,bb-am-DAI,,AaveLinear,2.0,"['0x178e029173417b1f9c8bc16dcec6f697bc323746', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xee029120c72b0607344f35b17cdd90025e647b00']",23691.73163559678195005991646923501,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x1aafc31091d93c3ff003cff5d2d8f7ba2e7284250000000000000000000003b3,0x1aafc31091d93c3ff003cff5d2d8f7ba2e728425,LP-USDC-USD+,,ERC4626Linear,1.0,"['0x1aafc31091d93c3ff003cff5d2d8f7ba2e728425', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x5a5c6aa6164750b530b8f7658b827163b3549a4d']",11.627952,,False,False,False,polygon,pool doesn't implement recovery mode +0x216690738aac4aa0c4770253ca26a28f0115c595000000000000000000000b2c,0x216690738aac4aa0c4770253ca26a28f0115c595,stMATIC-bb-a-WMATIC-BPT,1000,ComposableStable,3.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4', '0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7']",16295300.47942583595549991147101029,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0x216d6db0c28204014618482c369d7fbf0a8f3232000100000000000000000b60,0x216d6db0c28204014618482c369d7fbf0a8f3232,9wstETH-9WBTC-9stMATIC-bb-a-WMATIC-BPT-3USDC-70VINU,,Weighted,4.0,"['0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd', '0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6', '0x216690738aac4aa0c4770253ca26a28f0115c595', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xafcdd4f666c84fed1d8bd825aa762e3714f652c9']",0,0xf94cd9064f8de322bc7cbf7f733862bf5345a9a8,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x230ecdb2a7cee56d6889965a023aa0473d6da507000000000000000000000bf3,0x230ecdb2a7cee56d6889965a023aa0473d6da507,bb-a-USDT,,ERC4626Linear,4.0,"['0x230ecdb2a7cee56d6889965a023aa0473d6da507', '0x31f5ac91804a4c0b54c0243789df5208993235a1', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",77.867783,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x252ff6a3a6fd7b5e8e999de8e3f5c3b306ed1401000200000000000000000bec,0x252ff6a3a6fd7b5e8e999de8e3f5c3b306ed1401,97STARD-3bb-t-USD,,Weighted,4.0,"['0x8f1549718b9ad2632dc426ecc89305a83c1f03c8', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a']",0.0003398322205465907639939886932021992,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x25e57f4612912614e6c99616bd2abb9b5ae71e99000000000000000000000bf0,0x25e57f4612912614e6c99616bd2abb9b5ae71e99,bb-a-WETH,,ERC4626Linear,4.0,"['0x25e57f4612912614e6c99616bd2abb9b5ae71e99', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619', '0xd08b78b11df105d2861568959fca28e30c91cf68']",81.52732484869145450702328762273211,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x2645b13fd2c5295296e94a76280b968bdcbbdfed000000000000000000000c11,0x2645b13fd2c5295296e94a76280b968bdcbbdfed,DUSD/bbaUSD,500,ComposableStable,5.0,"['0x03090a9811181a2afe830a3a0b467698ccf3a8b1', '0x2645b13fd2c5295296e94a76280b968bdcbbdfed', '0xec38621e72d86775a89c7422746de1f52bba5320']",223.8688870972712795402315596459824,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0x284eb68520c8fa83361c1a3a5910aec7f873c18b000000000000000000000ac9,0x284eb68520c8fa83361c1a3a5910aec7f873c18b,bb-t-USDT,,ERC4626Linear,3.0,"['0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0x236975da9f0761e9cf3c2b0f705d705e22829886', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x2c8dbe8eb86135d9f2f26d196748c088d47f73e7000200000000000000000a29,0x2c8dbe8eb86135d9f2f26d196748c088d47f73e7,50bb-am-usd-50bb-am-USDC,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.000000000001001806967461475231672783131038453,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x31bccf9e28b94e5dacebaa67fe8bc1603cecd904000000000000000000000a01,0x31bccf9e28b94e5dacebaa67fe8bc1603cecd904,FRAX-bb-am-USDC,1500,ComposableStable,2.0,"['0x31bccf9e28b94e5dacebaa67fe8bc1603cecd904', '0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0,0x1b968e31b442c1bd5d76e2e28648bbe78ba588e3,False,False,False,polygon,pool is already in recovery mode +0x341068a547c3cde3c09e338714010dd01b32f93f000200000000000000000a34,0x341068a547c3cde3c09e338714010dd01b32f93f,20bb-am-usd-80B-stMATIC-Stable,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x8159462d255c1d24915cb51ec361f700174cd994']",0.0000000000009412736806403079765714766124956349,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x3db543faf7a92052de7860c5c9debabee59ed5bd000000000000000000000a62,0x3db543faf7a92052de7860c5c9debabee59ed5bd,4USD,200,ComposableStable,3.0,"['0x3db543faf7a92052de7860c5c9debabee59ed5bd', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xc948ee9a0687c292ac4d8c1e2557ad652d6baf44']",1.010411306713714365152729411366539,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x3dd0843a028c86e0b760b1a76929d1c5ef93a2dd00000000000000000000070d,0x3dd0843a028c86e0b760b1a76929d1c5ef93a2dd,bb-a-testing,,AaveLinear,2.0,"['0x3dd0843a028c86e0b760b1a76929d1c5ef93a2dd', '0x4b93eb9203db75f19305d94f62773bf0d6b91eb5', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063']",0.01,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x3efb91c4f9b103ee45885695c67794591916f34e000200000000000000000b43,0x3efb91c4f9b103ee45885695c67794591916f34e,2BRL-bbamUSD,,Weighted,3.0,"['0xb371aa09f5a110ab69b39a84b5469d29f9b22b76', '0xe19ed40a47f9b0cea4ca6d372df66107758913ec']",9.735475503243590938586195288422043,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x402cfdb7781fa85d52f425352661128250b79e12000000000000000000000be3,0x402cfdb7781fa85d52f425352661128250b79e12,MaticX-bb-a-WMATIC-BPT,2000,ComposableStable,5.0,"['0x402cfdb7781fa85d52f425352661128250b79e12', '0xb0c830dceb4ef55a60192472c20c8bf19df03488', '0xfa68fb4628dff1028cfec22b4162fccd0d45efb6']",3989846.119129558120067766802038904,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0x43894de14462b421372bcfe445fa51b1b4a0ff3d000000000000000000000b36,0x43894de14462b421372bcfe445fa51b1b4a0ff3d,bb-a-WETH,,ERC4626Linear,3.0,"['0x43894de14462b421372bcfe445fa51b1b4a0ff3d', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619', '0xa5bbf0f46b9dc8a43147862ba35c8134eb45f1f5']",370005.2497095720230990087582195512,,True,False,True,polygon,to be put in recovery mode by the dao +0x4739e50b59b552d490d3fdc60d200977a38510c0000000000000000000000b10,0x4739e50b59b552d490d3fdc60d200977a38510c0,bb-t-stMATIC,,ERC4626Linear,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4', '0xf813a454c975ad418e8db18764a2191d182478f4']",4.39845485434729889643063864338734,,False,False,False,polygon,to be put in recovery mode by the dao +0x48e6b98ef6329f8f0a30ebb8c7c960330d64808500000000000000000000075b,0x48e6b98ef6329f8f0a30ebb8c7c960330d648085,bb-am-usd,1472,ComposableStable,1.0,"['0x178e029173417b1f9c8bc16dcec6f697bc323746', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xf93579002dbe8046c43fefe86ec78b1112247bb8', '0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6']",90777.37075226298129123528961793016,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x4a0b73f0d13ff6d43e304a174697e3d5cfd310a400020000000000000000091c,0x4a0b73f0d13ff6d43e304a174697e3d5cfd310a4,2BRLUSD-boosted,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xe22483774bd8611be2ad2f4194078dac9159f4ba']",59.46874830984377401648034806402051,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a000000000000000000000b38,0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a,wstETH-bb-a-WETH-BPT,1000,ComposableStable,3.0,"['0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd', '0x43894de14462b421372bcfe445fa51b1b4a0ff3d', '0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a']",454331.5134702008468075414172046329,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0x4ae3661afa119892f0cc8c43edaf6a94989ac171000000000000000000000c06,0x4ae3661afa119892f0cc8c43edaf6a94989ac171,STARD-bb-t-USD-wUSDR-BPT,300,ComposableStable,5.0,"['0x4ae3661afa119892f0cc8c43edaf6a94989ac171', '0x8f1549718b9ad2632dc426ecc89305a83c1f03c8', '0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a']",0,0xbdcbd23316aaa2adeca774e107868adce38cc69e,False,True,True,polygon,to be put in recovery mode by emergency multisig +0x4ccb966d8246240afb7a1a24628efb930870b1c40002000000000000000009fc,0x4ccb966d8246240afb7a1a24628efb930870b1c4,FRAX-bb-am-USDC,1500,Stable,1.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.0000000000008097136331599112654523446606996179,0x1b968e31b442c1bd5d76e2e28648bbe78ba588e3,False,False,False,polygon,pool doesn't implement recovery mode +0x52cc8389c6b93d740325729cc7c958066cee4262000000000000000000000b0f,0x52cc8389c6b93d740325729cc7c958066cee4262,bb-t-WMATIC,,ERC4626Linear,3.0,"['0x52cc8389c6b93d740325729cc7c958066cee4262', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x45f376811b00922b06f1498a68a1cfd50122dd71']",13.64724733339970591006960721641641,,False,False,False,polygon,to be put in recovery mode by the dao +0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d000000000000000000000b32,0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d,bb-a-USDT,,ERC4626Linear,3.0,"['0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xac69e38ed4298490906a3f8d84aefe883f3e86b5']",0,,True,False,True,polygon,to be put in recovery mode by the dao +0x5bae72b75caab1f260d21bc028c630140607d6e8000000000000000000000ac6,0x5bae72b75caab1f260d21bc028c630140607d6e8,bb-t-USDT,,ERC4626Linear,3.0,"['0x5bae72b75caab1f260d21bc028c630140607d6e8', '0x236975da9f0761e9cf3c2b0f705d705e22829886', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x600bd01b6526611079e12e1ff93aba7a3e34226f0000000000000000000009e4,0x600bd01b6526611079e12e1ff93aba7a3e34226f,wUSDR BSP,50,ComposableStable,2.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x600bd01b6526611079e12e1ff93aba7a3e34226f', '0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b']",0.0000000001703967490467317056418641432269489,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x63ce19ccd39930725b8a3d2733627804718ab83d000000000000000000000bf2,0x63ce19ccd39930725b8a3d2733627804718ab83d,bb-a-DAI,,ERC4626Linear,4.0,"['0x63ce19ccd39930725b8a3d2733627804718ab83d', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xfcf5d4b313e06bb3628eb4fe73320e94039dc4b7']",37.078796461090890937,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x64efad69f099813021b41f4cac6e749fd55e188f000000000000000000000b39,0x64efad69f099813021b41f4cac6e749fd55e188f,bb-a-USDC,,ERC4626Linear,3.0,"['0x64efad69f099813021b41f4cac6e749fd55e188f', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xac69e38ed4298490906a3f8d84aefe883f3e86b5']",0,,True,False,True,polygon,to be put in recovery mode by the dao +0x6933ec1ca55c06a894107860c92acdfd2dd8512f000000000000000000000428,0x6933ec1ca55c06a894107860c92acdfd2dd8512f,USDC-USD+,,ERC4626Linear,1.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x5d9d8509c522a47d9285b9e4e9ec686e6a580850', '0x6933ec1ca55c06a894107860c92acdfd2dd8512f']",0,,False,False,False,polygon,pool doesn't implement recovery mode +0x6abe4e7a497b8293c258389c1b00d177e4f257ed00010000000000000000080d,0x6abe4e7a497b8293c258389c1b00d177e4f257ed,25WMATIC-15WBTC-35bb-am-usd-25WETH,,Weighted,1.0,"['0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619']",0.0001896095550414531192636016902215009,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x6c8c7fc50247a47038015eb1fd5dc105d05dafba000200000000000000000ba0,0x6c8c7fc50247a47038015eb1fd5dc105d05dafba,50stMATIC-bb-a-WMATIC-BPT-50agEUR,,Weighted,4.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0xe0b52e49357fd4daf2c15e02058dce6bc0057db4']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x7079a25dec33be61bbd81b2fb69b468e80d3e72c0000000000000000000009ff,0x7079a25dec33be61bbd81b2fb69b468e80d3e72c,FRAX-bb-am-USDC,1500,ComposableStable,2.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0x7079a25dec33be61bbd81b2fb69b468e80d3e72c', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0,0x1b968e31b442c1bd5d76e2e28648bbe78ba588e3,False,False,False,polygon,pool is already in recovery mode +0x71bd10c2a590b5858f5576550c163976a48af906000000000000000000000b27,0x71bd10c2a590b5858f5576550c163976a48af906,bb-t-MATIC,50,ComposableStable,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x52cc8389c6b93d740325729cc7c958066cee4262', '0x71bd10c2a590b5858f5576550c163976a48af906']",11.02833522310193410695218484898028,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x7c82a23b4c48d796dee36a9ca215b641c6a8709d000000000000000000000acd,0x7c82a23b4c48d796dee36a9ca215b641c6a8709d,bb-t-USDT,,ERC4626Linear,3.0,"['0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0x236975da9f0761e9cf3c2b0f705d705e22829886', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",965453.849456049884362811638398,,False,False,False,polygon,to be put in recovery mode by the dao +0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4000200000000000000000b44,0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4,50stMATIC-BPT-50bbamUSD,,Weighted,3.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0xb371aa09f5a110ab69b39a84b5469d29f9b22b76']",7.177710514159905992538571957530181,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x86aef31951e0a3a54333bd9e72f9a95587d058c5000200000000000000000912,0x86aef31951e0a3a54333bd9e72f9a95587d058c5,BRLUSD-boosted,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xf2f77fe7b8e66571e0fca7104c4d670bf1c8d722']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x882c7a84231484b3e9f3fd45ac04b1eb5d35b076000200000000000000000a91,0x882c7a84231484b3e9f3fd45ac04b1eb5d35b076,BPT,,FX,,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xdc3326e71d45186f113a2f448984ca0e8d201995']",0,,False,False,False,polygon,pool doesn't implement recovery mode +0x894c82800526e0391e709c0983a5aea3718b7f6d000000000000000000000ac5,0x894c82800526e0391e709c0983a5aea3718b7f6d,bb-t-DAI,,ERC4626Linear,3.0,"['0x894c82800526e0391e709c0983a5aea3718b7f6d', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xace2ac58e1e5a7bfe274916c4d82914d490ed4a5']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x89b28a9494589b09dbccb69911c189f74fdadc5a000000000000000000000b33,0x89b28a9494589b09dbccb69911c189f74fdadc5a,bb-a-USDC,,ERC4626Linear,3.0,"['0x89b28a9494589b09dbccb69911c189f74fdadc5a', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xac69e38ed4298490906a3f8d84aefe883f3e86b5']",344.194494,,True,False,True,polygon,to be put in recovery mode by the dao +0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953000000000000000000000bf1,0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953,bb-a-USDC,,ERC4626Linear,4.0,"['0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xc04296aa4534f5a3bab2d948705bc89317b2f1ed']",69.721646,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x89f1146fee52b5d9166e9c83cc388b6d8f69f1380001000000000000000009e7,0x89f1146fee52b5d9166e9c83cc388b6d8f69f138,17bb-am-DAI-17USDC-30WETH-17DAI-4amDAI-17bb-am-USDC,,Weighted,1.0,"['0x178e029173417b1f9c8bc16dcec6f697bc323746', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xee029120c72b0607344f35b17cdd90025e647b00', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.00000100000623576586262458764034024848,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f00000000000000000000042d,0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f,bb-a-USDT,,AaveLinear,1.0,"['0x548571a302d354b190ae6e9107552ab4f7fd9dc5', '0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",13.488145,,False,False,False,polygon,pool doesn't implement recovery mode +0x8b58a1e7fff52001c22386c2918d45938a6a9be30001000000000000000008d9,0x8b58a1e7fff52001c22386c2918d45938a6a9be3,20bb-am-usd-401337-40WHALE,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b', '0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca']",0.00000000000008935442769836957094103269904281403,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x8b8225bfedebaf1708c55743acb4ad43fd4d0f21000200000000000000000918,0x8b8225bfedebaf1708c55743acb4ad43fd4d0f21,20bb-am-usd-80WHALE,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca']",0.0000000000001480647732901123061097905303200766,0xe4b89789d94c89a95170de22fd4942104f2c89c5,False,False,False,polygon,pool doesn't implement recovery mode +0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7000000000000000000000b5b,0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7,FRAX-bb-am-USD,2000,ComposableStable,3.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7', '0xb371aa09f5a110ab69b39a84b5469d29f9b22b76']",6317.237426576056910452743114347608,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0x8fd39252d683fdb60bddd4df4b53c9380b496d59000200000000000000000b45,0x8fd39252d683fdb60bddd4df4b53c9380b496d59,50wstETH-BPT-50bbamUSD,,Weighted,3.0,"['0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a', '0xb371aa09f5a110ab69b39a84b5469d29f9b22b76']",0.03019446736485682710065982039789832,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5000000000000000000000bf4,0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5,bb-t-USD,2000,ComposableStable,5.0,"['0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5', '0xae646817e458c0be890b81e8d880206710e3c44e', '0xda1cd1711743e57dd57102e9e61b75f3587703da']",3.032468270339514842890655476287862,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,polygon,to be put in recovery mode by emergency multisig +0x949a12b95ec5b80c375b98963a5d6b33b0d0efff0002000000000000000009fe,0x949a12b95ec5b80c375b98963a5d6b33b0d0efff,FRAX-bb-am-USDC,1500,Stable,1.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0,0x48586dbea5a0fded55030240f18ce461b5c12f7d,False,False,False,polygon,pool doesn't implement recovery mode +0x9a020bdc2faff5bd24c6acc2020d01ff9f2c627a000000000000000000000ae2,0x9a020bdc2faff5bd24c6acc2020d01ff9f2c627a,Davos-USD+,570,ComposableStable,3.0,"['0x9a020bdc2faff5bd24c6acc2020d01ff9f2c627a', '0x9e34631547adcf2f8cefa0f5f223955c7b137571', '0xec38621e72d86775a89c7422746de1f52bba5320']",5.863966441119975418113883529148739,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x9cf9358300e34bf9373d30129a1e718d8d058b54000200000000000000000913,0x9cf9358300e34bf9373d30129a1e718d8d058b54,BRLUSD-boosted,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xf2f77fe7b8e66571e0fca7104c4d670bf1c8d722']",0.0000000000002215127931257462607222282537829744,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x9e34631547adcf2f8cefa0f5f223955c7b137571000000000000000000000ad5,0x9e34631547adcf2f8cefa0f5f223955c7b137571,bb-USD+,,ERC4626Linear,3.0,"['0x9e34631547adcf2f8cefa0f5f223955c7b137571', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x4e36d8006416ea1d939a0eeae73afdaca86bd376']",4.327348,,False,False,False,polygon,to be put in recovery mode by the dao +0xa5a935833f6a5312715f182733eab088452335d7000100000000000000000bee,0xa5a935833f6a5312715f182733eab088452335d7,30WBTC-20stMATIC-bb-a-WMATIC-BPT-13bb-am-usd-25wstETH-bb-a-WETH-BPT-13DPI,,Weighted,4.0,"['0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6', '0x216690738aac4aa0c4770253ca26a28f0115c595', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a', '0x85955046df4668e1dd369d2de9f3aeb98dd2a369']",31.83276421734483274999881604530355,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84000000000000000000000b35,0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84,bb-a-DAI,,ERC4626Linear,3.0,"['0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xdb6df721a6e7fdb97363079b01f107860ac156f9']",297.172175648017965572,,True,False,True,polygon,to be put in recovery mode by the dao +0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1000000000000000000000bf6,0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1,FRAX-bb-am-USD,2000,ComposableStable,5.0,"['0x03090a9811181a2afe830a3a0b467698ccf3a8b1', '0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1']",7.030989263010421696432846995940108,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xab269164a10fab22bc87c39946da06c870b172d6000000000000000000000bfc,0xab269164a10fab22bc87c39946da06c870b172d6,wstETH-bb-a-WETH-BPT,1500,ComposableStable,5.0,"['0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd', '0x25e57f4612912614e6c99616bd2abb9b5ae71e99', '0xab269164a10fab22bc87c39946da06c870b172d6']",35.46827377533484917145449927915823,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3000000000000000000000be2,0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3,stMATIC-bb-a-WMATIC-BPT,2000,ComposableStable,5.0,"['0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4', '0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3', '0xb0c830dceb4ef55a60192472c20c8bf19df03488']",3732920.643269523077672268296465033,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xae646817e458c0be890b81e8d880206710e3c44e000000000000000000000acb,0xae646817e458c0be890b81e8d880206710e3c44e,bb-t-USDC,,ERC4626Linear,3.0,"['0xae646817e458c0be890b81e8d880206710e3c44e', '0x113f3d54c31ebc71510fd664c8303b34fbc2b355', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174']",948454.18907083548974958192495,,False,False,False,polygon,to be put in recovery mode by the dao +0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256000000000000000000000ac8,0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256,bb-t-USDT,,ERC4626Linear,3.0,"['0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256', '0x236975da9f0761e9cf3c2b0f705d705e22829886', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0xb0c830dceb4ef55a60192472c20c8bf19df03488000000000000000000000be1,0xb0c830dceb4ef55a60192472c20c8bf19df03488,bb-a-WMATIC,,ERC4626Linear,4.0,"['0xb0c830dceb4ef55a60192472c20c8bf19df03488', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x6f3913333f2d4b7b01d17bedbce1e4c758b94465']",3617781.751496586065154051716366642,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be000000000000000000000be4,0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be,truMATIC-bb-a-WMATIC-BPT,1500,ComposableStable,5.0,"['0xb0c830dceb4ef55a60192472c20c8bf19df03488', '0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be', '0xc1381c17d29a22df5c3015c3d83ebd90abd0e6b3']",0.7379784053760742928391006885343977,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xb371aa09f5a110ab69b39a84b5469d29f9b22b76000000000000000000000b37,0xb371aa09f5a110ab69b39a84b5469d29f9b22b76,bb-am-USD,2000,ComposableStable,3.0,"['0x89b28a9494589b09dbccb69911c189f74fdadc5a', '0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84', '0xb371aa09f5a110ab69b39a84b5469d29f9b22b76', '0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4']",1098.744734182226029576400119660657,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a000000000000000000000ace,0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a,bb-t-USD,2000,ComposableStable,3.0,"['0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0xae646817e458c0be890b81e8d880206710e3c44e', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a', '0xda1cd1711743e57dd57102e9e61b75f3587703da']",2289179.456846382786641185639944487,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xb54b2125b711cd183edd3dd09433439d5396165200000000000000000000075e,0xb54b2125b711cd183edd3dd09433439d53961652,Mai BSP,60,ComposableStable,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xa3fa99a148fa48d14ed51d610c367c61876997f1', '0xb54b2125b711cd183edd3dd09433439d53961652']",1934.232240736717329945114599327948,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4000000000000000000000b34,0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4,bb-a-USDT,,ERC4626Linear,3.0,"['0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4', '0x715d73a88f2f0115d87cfe5e0f25d756b2f9679f', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",472.378088,,True,False,True,polygon,to be put in recovery mode by the dao +0xb878ecce26838fbba4f78cb5b791a0e09152c067000000000000000000000427,0xb878ecce26838fbba4f78cb5b791a0e09152c067,LP-USDC-USD+,,ERC4626Linear,1.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x5d9d8509c522a47d9285b9e4e9ec686e6a580850', '0xb878ecce26838fbba4f78cb5b791a0e09152c067']",0,,False,False,False,polygon,pool doesn't implement recovery mode +0xb973ca96a3f0d61045f53255e319aedb6ed4924000000000000000000000042f,0xb973ca96a3f0d61045f53255e319aedb6ed49240,bb-USD+,570,StablePhantom,1.0,"['0x0503dd6b2d3dd463c9bef67fb5156870af63393e', '0x1aafc31091d93c3ff003cff5d2d8f7ba2e728425', '0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f', '0xb973ca96a3f0d61045f53255e319aedb6ed49240']",21.87454149973833281327513207743944,0xe497285e466227f4e8648209e34b465daa1f90a0,False,False,False,polygon,pool doesn't implement recovery mode +0xbd4e35784c832d0f9049b54cb3609e5907c5b495000100000000000000000b14,0xbd4e35784c832d0f9049b54cb3609e5907c5b495,10wstETH-70PAXG-10bb-am-USDC-10MaticX,,Weighted,3.0,"['0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd', '0x553d3d295e0f695b9228246232edf400ed3560b5', '0xf93579002dbe8046c43fefe86ec78b1112247bb8', '0xfa68fb4628dff1028cfec22b4162fccd0d45efb6']",0.5060741968149999636805287791864388,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xc55ec796a4debe625d95436a3531f4950b11bdcf000000000000000000000b3e,0xc55ec796a4debe625d95436a3531f4950b11bdcf,TEST,,ERC4626Linear,4.0,"['0xc55ec796a4debe625d95436a3531f4950b11bdcf', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x19dfef0a828eec0c85fbb335aa65437417390b85']",0,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xc7e6389e364f4275eb442ef215ed21877028e2af000000000000000000000ac7,0xc7e6389e364f4275eb442ef215ed21877028e2af,bb-t-USD,2000,ComposableStable,3.0,"['0x5bae72b75caab1f260d21bc028c630140607d6e8', '0x894c82800526e0391e709c0983a5aea3718b7f6d', '0xc7e6389e364f4275eb442ef215ed21877028e2af', '0xe1fb90d0d3b47e551d494d7ebe8f209753526b01']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xc83b55bbd005f1f84906545fcdb145dee53523e0000200000000000000000b30,0xc83b55bbd005f1f84906545fcdb145dee53523e0,2BRL-BB-AM-USD,,Weighted,3.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x8ed728a56e4334cc96a449556ebe57653ea563ea']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xcb21a9e647c95127ed784626485b3104cb28d0e7000000000000000000000425,0xcb21a9e647c95127ed784626485b3104cb28d0e7,USDC-USD+,,ERC4626Linear,1.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x5d9d8509c522a47d9285b9e4e9ec686e6a580850', '0xcb21a9e647c95127ed784626485b3104cb28d0e7']",0,,False,False,False,polygon,pool doesn't implement recovery mode +0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5000000000000000000000b42,0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5,frxETH-bb-a-WETH,120,ComposableStable,3.0,"['0x43894de14462b421372bcfe445fa51b1b4a0ff3d', '0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5', '0xee327f889d5947c1dc1934bb208a1e792f953e96']",27558.10621396665095790840819548289,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761000200000000000000000bf7,0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761,2BRLUSD-boosted,,Weighted,4.0,"['0x03090a9811181a2afe830a3a0b467698ccf3a8b1', '0x42942cdec85078cf0e28e9cb5acd40cb53997ed6']",9.552870214519999117524245216739565,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xd4accb350f9cf59fe3cf7a5ee6ed9ace6a568ea9000200000000000000000b75,0xd4accb350f9cf59fe3cf7a5ee6ed9ace6a568ea9,50bb-a-WETH-50FBX,,Weighted,4.0,"['0x43894de14462b421372bcfe445fa51b1b4a0ff3d', '0xd125443f38a69d776177c2b9c041f462936f8218']",1.868289538299398878224436000148799,0x1d4b30ea0a731e092a8cb0079666bf1edfbc5f58,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xda1cd1711743e57dd57102e9e61b75f3587703da000000000000000000000acc,0xda1cd1711743e57dd57102e9e61b75f3587703da,bb-t-DAI,,ERC4626Linear,3.0,"['0xda1cd1711743e57dd57102e9e61b75f3587703da', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xace2ac58e1e5a7bfe274916c4d82914d490ed4a5']",375283.4255729567750924174575828489,,False,False,False,polygon,to be put in recovery mode by the dao +0xdae301690004946424e41051ace1791083be42a1000000000000000000000b40,0xdae301690004946424e41051ace1791083be42a1,TEST,,YearnLinear,2.0,"['0xdae301690004946424e41051ace1791083be42a1', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x28fa1e40011adf98898e8243b2a48bb21ebf0c29']",0,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xde0a77ab6689b980c30306b10f9131a007e1af81000200000000000000000ba1,0xde0a77ab6689b980c30306b10f9131a007e1af81,50stMATIC-bb-a-WMATIC-BPT-50agEUR,,Weighted,4.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0xe0b52e49357fd4daf2c15e02058dce6bc0057db4']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xe051605a83deae38d26a7346b100ef1ac2ef8a0b0000000000000000000003ce,0xe051605a83deae38d26a7346b100ef1ac2ef8a0b,SP-USDT/DAI/LP-USD+,570,StablePhantom,1.0,"['0x1aafc31091d93c3ff003cff5d2d8f7ba2e728425', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f', '0xe051605a83deae38d26a7346b100ef1ac2ef8a0b']",0.4754816309911924271803221050423458,0xe497285e466227f4e8648209e34b465daa1f90a0,False,False,False,polygon,pool doesn't implement recovery mode +0xe1fb90d0d3b47e551d494d7ebe8f209753526b01000000000000000000000ac4,0xe1fb90d0d3b47e551d494d7ebe8f209753526b01,bb-t-USDC,,ERC4626Linear,3.0,"['0xe1fb90d0d3b47e551d494d7ebe8f209753526b01', '0x113f3d54c31ebc71510fd664c8303b34fbc2b355', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0xe2272cddb2cc408e79e02a73d1db9acc24a843d5000200000000000000000ba7,0xe2272cddb2cc408e79e02a73d1db9acc24a843d5,50wstETH-bb-a-WETH-BPT-50WETH,,Weighted,4.0,"['0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619']",2.58827159906087276166963562195429,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xe2dc0e0f2c358d6e31836dee69a558ab8d1390e70000000000000000000009fa,0xe2dc0e0f2c358d6e31836dee69a558ab8d1390e7,4USD,200,ComposableStable,2.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xc948ee9a0687c292ac4d8c1e2557ad652d6baf44', '0xe2dc0e0f2c358d6e31836dee69a558ab8d1390e7']",1.001700532779911575503462565673632,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7000000000000000000000b29,0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7,bb-a-WMATIC,,ERC4626Linear,3.0,"['0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x0d6135b2cfbae3b1c58368a93b855fa54fa5aae1']",8585078.34143627773703512123041421,,True,False,True,polygon,to be put in recovery mode by the dao +0xe6909c2f18a29d97217a6146f045e1780606991f000100000000000000000bfe,0xe6909c2f18a29d97217a6146f045e1780606991f,92STARD-4wUSDR-5bb-t-USD,,Weighted,4.0,"['0x8f1549718b9ad2632dc426ecc89305a83c1f03c8', '0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a']",0.005410142517037314317317717185087336,0xbdcbd23316aaa2adeca774e107868adce38cc69e,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xe78b25c06db117fdf8f98583cdaaa6c92b79e917000000000000000000000b2b,0xe78b25c06db117fdf8f98583cdaaa6c92b79e917,MaticX-bb-a-WMATIC-BPT,1000,ComposableStable,3.0,"['0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7', '0xe78b25c06db117fdf8f98583cdaaa6c92b79e917', '0xfa68fb4628dff1028cfec22b4162fccd0d45efb6']",3231695.628111102203885796858974692,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6000000000000000000000b3a,0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6,bb-a-DAI,,ERC4626Linear,3.0,"['0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xdb6df721a6e7fdb97363079b01f107860ac156f9']",0,,True,False,True,polygon,to be put in recovery mode by the dao +0xeb480dbbdd921cd6c359e4cc4c65ddea6395e2a1000200000000000000000946,0xeb480dbbdd921cd6c359e4cc4c65ddea6395e2a1,50USDC-50bb-am-usd,,Weighted,1.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085']",5.442750060973423061088832069255481,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0xed35f28f837e96f81240ebb82e0e3f518c7e8a2f000100000000000000000bb5,0xed35f28f837e96f81240ebb82e0e3f518c7e8a2f,STARV2-SuperPoolV1,,Weighted,4.0,"['0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a', '0xa0fdcdda62c4c6a0109a702a7efe59b4e8807e3f', '0xd289c01528921b5f6d5b111a50a99456d495bf78']",0.0002544439714888145192473387854658023,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xf0211cceebe6fcc45052b4e57ee95d233f5669d2000100000000000000000c01,0xf0211cceebe6fcc45052b4e57ee95d233f5669d2,20mooMaiQI-MATIC-20mooPearlTNGBL-USDR-30bb-t-USD-30STARV2,,Weighted,4.0,"['0x944a5c12cd4399abc6883ff1ba40a14c23b2fd37', '0x99ab491471fbcb7d9d2b69729462fe223a4ccdab', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a', '0xd289c01528921b5f6d5b111a50a99456d495bf78']",0.0003767985195450274490869033931776553,0xbdcbd23316aaa2adeca774e107868adce38cc69e,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xf22a66046b5307842f21b311ecb4c462c24c0635000000000000000000000b15,0xf22a66046b5307842f21b311ecb4c462c24c0635,bb-t-MATIC,50,ComposableStable,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x52cc8389c6b93d740325729cc7c958066cee4262', '0xf22a66046b5307842f21b311ecb4c462c24c0635']",0.8925367531879208770938227165940718,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xf28f17be00f8ca3c9b7f66a4aad5513757fb3341000200000000000000000b5a,0xf28f17be00f8ca3c9b7f66a4aad5513757fb3341,50FRAX-50bb-a-USDC,,Weighted,4.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0x89b28a9494589b09dbccb69911c189f74fdadc5a']",0.0000000000008091262507730116237237452110804771,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6000000000000000000000bf8,0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6,frxETH-bb-a-WETH,120,ComposableStable,5.0,"['0x25e57f4612912614e6c99616bd2abb9b5ae71e99', '0xee327f889d5947c1dc1934bb208a1e792f953e96', '0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6']",33.51535393546868276016947284184134,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56000000000000000000000445,0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56,bb-USD+,570,StablePhantom,1.0,"['0x0503dd6b2d3dd463c9bef67fb5156870af63393e', '0x6933ec1ca55c06a894107860c92acdfd2dd8512f', '0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f', '0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56']",0,0xe497285e466227f4e8648209e34b465daa1f90a0,False,False,False,polygon,pool doesn't implement recovery mode +0xf93579002dbe8046c43fefe86ec78b1112247bb8000000000000000000000759,0xf93579002dbe8046c43fefe86ec78b1112247bb8,bb-am-USDC,,AaveLinear,2.0,"['0x221836a597948dce8f3568e044ff123108acc42a', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",27048.4114121449393728808697816995,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xf984eb2b8a7ef780245a797a2fccd82f346409ca000000000000000000000a59,0xf984eb2b8a7ef780245a797a2fccd82f346409ca,TEST,,ERC4626Linear,3.0,"['0xf984eb2b8a7ef780245a797a2fccd82f346409ca', '0x040dba12bb3d5c0a73ddfe84c220be3ddba06966', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0xfa2c0bd8327c99db5bde4c9e9e5cbf30946351bb000000000000000000000948,0xfa2c0bd8327c99db5bde4c9e9e5cbf30946351bb,TEST,,AaveLinear,3.0,"['0xfa2c0bd8327c99db5bde4c9e9e5cbf30946351bb', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0xd487eec3ef2be7a3d06d37f406d878dc7c50deef']",0,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea600000000000000000000075a,0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6,bb-am-USDT,,AaveLinear,2.0,"['0x19c60a251e525fa88cd6f3768416a8024e98fc19', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f', '0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6']",40080.37499303237580617700893,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x1ac55c31dac78ca943cb8ebfca5945ce09e036e2000000000000000000000024,0x1ac55c31dac78ca943cb8ebfca5945ce09e036e2,TEST,,AaveLinear,5.0,"['0x1ac55c31dac78ca943cb8ebfca5945ce09e036e2', '0x35d8f4a4c0e95f3d925cb4cbbbf513a0172ed8a4', '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d']",0,,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0x225e0047671939a8d78e08ebd692788abe63f15c000000000000000000000009,0x225e0047671939a8d78e08ebd692788abe63f15c,TEST,,AaveLinear,4.0,"['0x225e0047671939a8d78e08ebd692788abe63f15c', '0xa523f47a933d5020b23629ddf689695aa94612dc', '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d']",0,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0x41211bba6d37f5a74b22e667533f080c7c7f3f1300000000000000000000000b,0x41211bba6d37f5a74b22e667533f080c7c7f3f13,bb-ag-WXDAI,,AaveLinear,4.0,"['0x41211bba6d37f5a74b22e667533f080c7c7f3f13', '0x01ac9005f8446af28b065af87216b85faac5f6e2', '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d']",1017456.984427701888922181505311743,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0x4de21b365d6543661d0e105e579a34b963862497000200000000000000000045,0x4de21b365d6543661d0e105e579a34b963862497,50bbagGNO-50bbagUSD,,Weighted,4.0,"['0xe15cac1df3621e001f76210ab12a7f1a1691481f', '0xffff76a3280e95dc855696111c2562da09db2ac0']",1.242835147104219232712560542451353,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0x581ec1f5e7ced12b186deae32256adb53bdd5b08000000000000000000000001,0x581ec1f5e7ced12b186deae32256adb53bdd5b08,TEST,,AaveLinear,3.0,"['0x581ec1f5e7ced12b186deae32256adb53bdd5b08', '0x5cf4928a3205728bd12830e1840f7db85c62a4b9', '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d']",0,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0x66f33ae36dd80327744207a48122f874634b3ada000100000000000000000013,0x66f33ae36dd80327744207a48122f874634b3ada,agUSD-agWETH-agWBTC,,Weighted,3.0,"['0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50', '0xd4015683b8153666190e0b2bec352580ebc4caca', '0xfedb19ec000d38d92af4b21436870f115db22725']",1495351.572680113283413997930081575,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0xa3ed6f78edc29f69df8a0d16b1d1ccf9871f918c000000000000000000000032,0xa3ed6f78edc29f69df8a0d16b1d1ccf9871f918c,bb-agWETH-wstETH,200,ComposableStable,4.0,"['0x6c76971f98945ae98dd7d4dfca8711ebea946ea6', '0xa3ed6f78edc29f69df8a0d16b1d1ccf9871f918c', '0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,pool is already in recovery mode +0xa611a551b95b205ccd9490657acf7899daee5db700000000000000000000002e,0xa611a551b95b205ccd9490657acf7899daee5db7,EURe-bb-ag-USD,20,ComposableStable,4.0,"['0xa611a551b95b205ccd9490657acf7899daee5db7', '0xcb444e90d8198415266c6a2724b7900fb12fc56e', '0xfedb19ec000d38d92af4b21436870f115db22725']",100760.5625734017362552535110862185,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,pool is already in recovery mode +0xb95829adbacd8af89e291dee78bc09e24de51d6b000000000000000000000043,0xb95829adbacd8af89e291dee78bc09e24de51d6b,bb-ag-USD,2000,ComposableStable,5.0,"['0x41211bba6d37f5a74b22e667533f080c7c7f3f13', '0xb95829adbacd8af89e291dee78bc09e24de51d6b', '0xd16f72b02da5f51231fde542a8b9e2777a478c88', '0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,gnosis-chain,to be put in recovery mode by emergency multisig +0xb973ca96a3f0d61045f53255e319aedb6ed49240000200000000000000000011,0xb973ca96a3f0d61045f53255e319aedb6ed49240,50bbagGNO-50bbagUSD,,Weighted,3.0,"['0xfedb19ec000d38d92af4b21436870f115db22725', '0xffff76a3280e95dc855696111c2562da09db2ac0']",1591892.352001736451752528824506849,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0xba1a5b19d09a79dada039b1f974015c5a989d5fd000100000000000000000046,0xba1a5b19d09a79dada039b1f974015c5a989d5fd,agUSD-agWETH-agWBTC,,Weighted,4.0,"['0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50', '0xd4015683b8153666190e0b2bec352580ebc4caca', '0xe15cac1df3621e001f76210ab12a7f1a1691481f']",8.459244439109160072948286662387411,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf5000000000000000000000000e,0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50,bb-ag-WETH,,AaveLinear,4.0,"['0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50', '0x20e5eb701e8d711d419d444814308f8c2243461f', '0x6a023ccd1ff6f2045c3309768ead9e68f978f6e1']",4956590.612122417437554671428613125,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0xd16f72b02da5f51231fde542a8b9e2777a478c8800000000000000000000000f,0xd16f72b02da5f51231fde542a8b9e2777a478c88,bb-ag-USDT,,AaveLinear,4.0,"['0xd16f72b02da5f51231fde542a8b9e2777a478c88', '0x3d938f90ac251c1bcf6b4e399dd72c8c685a9bbc', '0x4ecaba5870353805a9f068101a40e0f32ed605c6']",2299115.994101036614750776157575,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0xd4015683b8153666190e0b2bec352580ebc4caca00000000000000000000000d,0xd4015683b8153666190e0b2bec352580ebc4caca,bb-ag-WBTC,,AaveLinear,4.0,"['0xd4015683b8153666190e0b2bec352580ebc4caca', '0x110e2d3d4c94596f5698c753d5cd43221d3ec78b', '0x8e5bbbb09ed1ebde8674cda39a0c169401db4252']",500047.1014809538810144042456986701,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0xe15cac1df3621e001f76210ab12a7f1a1691481f000000000000000000000044,0xe15cac1df3621e001f76210ab12a7f1a1691481f,bb-ag-USD,2000,ComposableStable,5.0,"['0x41211bba6d37f5a74b22e667533f080c7c7f3f13', '0xd16f72b02da5f51231fde542a8b9e2777a478c88', '0xe15cac1df3621e001f76210ab12a7f1a1691481f', '0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6']",5.635906728510323846809678037678957,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,gnosis-chain,to be put in recovery mode by emergency multisig +0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd600000000000000000000000a,0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6,bb-ag-USDC,,AaveLinear,4.0,"['0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6', '0x6d9dc1282b9e25a91b266b6b61ef65a38f949f22', '0xddafbb505ad214d7b80b1f830fccc89b60fb7a83']",967650.7494254271748266215743,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56000200000000000000000012,0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56,50bbagGNO-50bbagWETH,,Weighted,3.0,"['0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50', '0xffff76a3280e95dc855696111c2562da09db2ac0']",8277528.658561564303057877472393088,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0xfedb19ec000d38d92af4b21436870f115db22725000000000000000000000010,0xfedb19ec000d38d92af4b21436870f115db22725,bb-ag-USD,2000,ComposableStable,3.0,"['0x41211bba6d37f5a74b22e667533f080c7c7f3f13', '0xd16f72b02da5f51231fde542a8b9e2777a478c88', '0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6', '0xfedb19ec000d38d92af4b21436870f115db22725']",4284787.960841027037201008867492054,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,pool is already in recovery mode +0xffff76a3280e95dc855696111c2562da09db2ac000000000000000000000000c,0xffff76a3280e95dc855696111c2562da09db2ac0,bb-ag-GNO,,AaveLinear,4.0,"['0xffff76a3280e95dc855696111c2562da09db2ac0', '0x9c58bacc331c9aa871afd802db6379a98e80cedb', '0xc1593302979e5e8e16e53c3303bf99ffa319d314']",4927551.385167727194607023009308019,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0x00fcd3d55085e998e291a0005cedecf58ac14c4000020000000000000000047f,0x00fcd3d55085e998e291a0005cedecf58ac14c40,50STG-50bbaUSD ,,Weighted,4.0,"['0x6694340fc020c5e6b96567843da2df01b2ce1eb6', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",19.17457377526334589183893169046762,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352,0x077794c30afeccdf5ad2abc0588e8cee7197b71a,bb-rf-USD-BPT,2000,ComposableStable,3.0,"['0x077794c30afeccdf5ad2abc0588e8cee7197b71a', '0x5bae72b75caab1f260d21bc028c630140607d6e8', '0x894c82800526e0391e709c0983a5aea3718b7f6d', '0xe1fb90d0d3b47e551d494d7ebe8f209753526b01']",1324.416334872347191073189047448714,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,arbitrum,pool is already in recovery mode +0x117a3d474976274b37b7b94af5dcade5c90c6e85000000000000000000000381,0x117a3d474976274b37b7b94af5dcade5c90c6e85,bb-DAI+,,ERC4626Linear,3.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x1b224a294920c8c7c534115d3dcb02dc9fb7c0a6', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",263006.181421291212528485894239956,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x11884da90fb4221b3aa288a7741c51ec4fc43b2f000000000000000000000353,0x11884da90fb4221b3aa288a7741c51ec4fc43b2f,TEST,,AaveLinear,4.0,"['0x11884da90fb4221b3aa288a7741c51ec4fc43b2f', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1', '0xb9f8ab3ed3f3acba64bc6cd2dca74b7f38fd7b88']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x19b1c92631405a0a9495ccba0becf4f2e8e908bd000000000000000000000410,0x19b1c92631405a0a9495ccba0becf4f2e8e908bd,TEST,,AaveLinear,5.0,"['0x19b1c92631405a0a9495ccba0becf4f2e8e908bd', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1', '0x8b7854708c0c54f9d7d1ff351d4f84e6de0e134c']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x1d7f0d7c8791210c6f13140939ad61969562afc2000000000000000000000499,0x1d7f0d7c8791210c6f13140939ad61969562afc2,STAR/bbaUSD-BPT,200,ComposableStable,5.0,"['0x1d7f0d7c8791210c6f13140939ad61969562afc2', '0xc19669a405067927865b40ea045a2baabbbe57f5', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x1e550b7764da9638fdd32c8a701364de31f45ee800000000000000000000047c,0x1e550b7764da9638fdd32c8a701364de31f45ee8,BPT-DOLA-USD+,570,ComposableStable,5.0,"['0x1e550b7764da9638fdd32c8a701364de31f45ee8', '0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x1fa7f727934226aedab636d62a084931b97d366b000000000000000000000411,0x1fa7f727934226aedab636d62a084931b97d366b,TEST,,YearnLinear,2.0,"['0x1fa7f727934226aedab636d62a084931b97d366b', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1', '0xb15608d28eb43378a7e7780add3fe9bc132baf40']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x23ca0306b21ea71552b148cf3c4db4fc85ae19290000000000000000000000c9,0x23ca0306b21ea71552b148cf3c4db4fc85ae1929,bb-a-testing,,AaveLinear,2.0,"['0x23ca0306b21ea71552b148cf3c4db4fc85ae1929', '0x3209be9c5d9deb285c2db49bf14ea27c443c2b0c', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",0.01,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x284eb68520c8fa83361c1a3a5910aec7f873c18b000000000000000000000380,0x284eb68520c8fa83361c1a3a5910aec7f873c18b,bb-USD+,,ERC4626Linear,3.0,"['0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0xb86fb1047a955c0186c77ff6263819b37b32440d', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",286617.6288008900008801890227019556,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x2a96254ca32020b20ed3506f8f75318da24709f9000200000000000000000456,0x2a96254ca32020b20ed3506f8f75318da24709f9,50bb-DAI+-50bb-USD+,,Weighted,4.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x284eb68520c8fa83361c1a3a5910aec7f873c18b']",0.000000000001004010306836927342485988890477367,0x02e0c302380aa679189d9caa349a0da5a6a19108,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x36942963e3b6f37ecc45a4e72349558514233f0000000000000000000000048a,0x36942963e3b6f37ecc45a4e72349558514233f00,bb-a-MAI,,ERC4626Linear,4.0,"['0x36942963e3b6f37ecc45a4e72349558514233f00', '0x3f56e0c36d275367b8c502090edf38289b3dea0d', '0x5f756955fc1a43d658f4291cf69af16077b5326c']",9.384276229154574442988495782736837,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x3f53a862919ccfa023cb6ace91378a79fb0f6bf500000000000000000000040f,0x3f53a862919ccfa023cb6ace91378a79fb0f6bf5,TEST,,ERC4626Linear,4.0,"['0x3f53a862919ccfa023cb6ace91378a79fb0f6bf5', '0x4be0e4d6184348c5ba845a4010528cfc779610b8', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x40af308e3d07ec769d85eb80afb116525ff4ac99000000000000000000000485,0x40af308e3d07ec769d85eb80afb116525ff4ac99,bb-a-USDCe,,ERC4626Linear,4.0,"['0x40af308e3d07ec769d85eb80afb116525ff4ac99', '0x3a301e7917689b8e8a19498b8a28fc912583490c', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",963325.8409275414024283130644743357,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x418de00ae109e6f874d872658767866d680eaa1900000000000000000000047d,0x418de00ae109e6f874d872658767866d680eaa19,DOLA/bbaUSD-BPT ,200,ComposableStable,5.0,"['0x418de00ae109e6f874d872658767866d680eaa19', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",0.0000000000005007317181275024329588628851857754,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x45c4d1376943ab28802b995acffc04903eb5223f000000000000000000000470,0x45c4d1376943ab28802b995acffc04903eb5223f,wstETH-bb-a-WETH-BPT,5000,ComposableStable,5.0,"['0x45c4d1376943ab28802b995acffc04903eb5223f', '0x5979d7b546e38e414f7e9822514be443a4800529', '0xad28940024117b442a9efb6d0f25c8b59e1c950b']",4239022.303462568737016016832400679,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x4689122d360c4725d244c5cfea22861333d862e6000100000000000000000468,0x4689122d360c4725d244c5cfea22861333d862e6,SuperAura,,Weighted,4.0,"['0x1509706a6c66ca549ff0cb464de88231ddbe213b', '0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",6.56334564988341841427403241086481,0xa3f2463bfb45903df1cd74bf6d9998be9128f7b2,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x4739e50b59b552d490d3fdc60d200977a38510c0000000000000000000000409,0x4739e50b59b552d490d3fdc60d200977a38510c0,bb-a-USDT,,ERC4626Linear,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x3c7680dfe7f732ca0279c39ff30fe2eafdae49db', '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9']",112054.049660538541514471958084,,True,False,True,arbitrum,to be put in recovery mode by the dao +0x49a0e3334496442a9706e481617724e7e37eaa080000000000000000000003ff,0x49a0e3334496442a9706e481617724e7e37eaa08,wstETH-bb-a-WETH-BPT,50,ComposableStable,3.0,"['0x49a0e3334496442a9706e481617724e7e37eaa08', '0x5979d7b546e38e414f7e9822514be443a4800529', '0xda1cd1711743e57dd57102e9e61b75f3587703da']",0.000004549712559866097628038763086646393,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0x519cce718fcd11ac09194cff4517f12d263be067000000000000000000000382,0x519cce718fcd11ac09194cff4517f12d263be067,BPT-USD+,570,ComposableStable,3.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0x519cce718fcd11ac09194cff4517f12d263be067']",2457.739462657448860922176381938596,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,arbitrum,pool is already in recovery mode +0x52cc8389c6b93d740325729cc7c958066cee4262000000000000000000000408,0x52cc8389c6b93d740325729cc7c958066cee4262,bb-a-USDT,,ERC4626Linear,3.0,"['0x52cc8389c6b93d740325729cc7c958066cee4262', '0x0d6135b2cfbae3b1c58368a93b855fa54fa5aae1', '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x567ecfcb22205d279bb8eed3e066989902bf03d5000000000000000000000452,0x567ecfcb22205d279bb8eed3e066989902bf03d5,DOLA/bbaUSD-BPT,200,ComposableStable,4.0,"['0x567ecfcb22205d279bb8eed3e066989902bf03d5', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",53513.3830548319905029963054876517,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0x585d95df0231fa08aeee35ff0c16b92fd0ecdc3300020000000000000000045f,0x585d95df0231fa08aeee35ff0c16b92fd0ecdc33,ChadUSD,,Weighted,4.0,"['0xaf88d065e77c8cc2239327c5edb3a432268e5831', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",0.1302769561757609338752960349634844,0x87ba3a22231f93afc81fe09ee287847c077ffabd,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7000000000000000000000400,0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7,wstETH-bb-a-WETH-BPT,1000,ComposableStable,3.0,"['0x5979d7b546e38e414f7e9822514be443a4800529', '0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xda1cd1711743e57dd57102e9e61b75f3587703da']",70855.82279512616630134818326088307,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0x5bae72b75caab1f260d21bc028c630140607d6e8000000000000000000000350,0x5bae72b75caab1f260d21bc028c630140607d6e8,bb-rf-USDC,,ERC4626Linear,3.0,"['0x5bae72b75caab1f260d21bc028c630140607d6e8', '0xaeacf641a0342330ec681b57c0a6af0b71d5cbff', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",470.1405043235798550027696784129436,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x5ef36da78e4e256d82bf3723e821104ea3b6a06900020000000000000000049c,0x5ef36da78e4e256d82bf3723e821104ea3b6a069,70STAR-30bb-a-USD,,Weighted,4.0,"['0xc19669a405067927865b40ea045a2baabbbe57f5', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x6cb787a419c3e6ee2e9ff365856c29cd10659113000000000000000000000474,0x6cb787a419c3e6ee2e9ff365856c29cd10659113,bb-a-DAI,,ERC4626Linear,4.0,"['0x6cb787a419c3e6ee2e9ff365856c29cd10659113', '0x426e8778bf7f54b0e4fc703dcca6f26a4e5b71de', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",1785751.801026520948396431010829532,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x7c82a23b4c48d796dee36a9ca215b641c6a8709d000000000000000000000406,0x7c82a23b4c48d796dee36a9ca215b641c6a8709d,bb-a-USDC,,ERC4626Linear,3.0,"['0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0xe719aef17468c7e10c0c205be62c990754dff7e5', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",78941.715100737419634483435,,True,False,True,arbitrum,to be put in recovery mode by the dao +0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e3200000000000000000000035d,0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e32,TEST,,YearnLinear,1.0,"['0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e32', '0x1b986138a4f2aa538e79fdec222dad93f8d66703', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x894c82800526e0391e709c0983a5aea3718b7f6d00000000000000000000034f,0x894c82800526e0391e709c0983a5aea3718b7f6d,bb-rf-USDT,,ERC4626Linear,3.0,"['0x894c82800526e0391e709c0983a5aea3718b7f6d', '0x0179bac7493a92ac812730a4c64a0b41b7ea0ecf', '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9']",353.63804628279918,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x970712708a08e8fb152be4d81b2dc586923f5369000200000000000000000479,0x970712708a08e8fb152be4d81b2dc586923f5369,50ARB-50bb-a-USD,,Weighted,4.0,"['0x912ce59144191c1204e64559fe8253a0e49e6548', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",0.00000000000106019627973889115364781238188407,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x9bf7c3b63c77b4b4f2717776f15a4bec1b532a280000000000000000000000c8,0x9bf7c3b63c77b4b4f2717776f15a4bec1b532a28,bb-a-testing,,AaveLinear,2.0,"['0x3209be9c5d9deb285c2db49bf14ea27c443c2b0c', '0x9bf7c3b63c77b4b4f2717776f15a4bec1b532a28', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x9cebf13bb702f253abf1579294694a1edad00eaa000000000000000000000486,0x9cebf13bb702f253abf1579294694a1edad00eaa,bbaUSDC/bbaUSDCe,5000,ComposableStable,5.0,"['0x40af308e3d07ec769d85eb80afb116525ff4ac99', '0x9cebf13bb702f253abf1579294694a1edad00eaa', '0xbd724eb087d4cc0f61a5fed1fffaf937937e14de']",1804175.697640855529732364217128503,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x9e34631547adcf2f8cefa0f5f223955c7b137571000000000000000000000407,0x9e34631547adcf2f8cefa0f5f223955c7b137571,bb-a-DAI,,ERC4626Linear,3.0,"['0x9e34631547adcf2f8cefa0f5f223955c7b137571', '0x345a864ac644c82c2d649491c905c71f240700b2', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",118931.2691692035907996609527459407,,True,False,True,arbitrum,to be put in recovery mode by the dao +0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63000200000000000000000412,0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63,50wstETH-BPT-50bbaUSD,,Weighted,3.0,"['0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",3108.685201444772006202467877293022,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xa1ea76c42b2938cfa9abea12357881006c52851300000000000000000000048f,0xa1ea76c42b2938cfa9abea12357881006c528513,DUSD/bbaUSD,500,ComposableStable,5.0,"['0x8ec1877698acf262fe8ad8a295ad94d6ea258988', '0xa1ea76c42b2938cfa9abea12357881006c528513', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",30.12412449564741600528319681603568,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xa50f89e9f439fde2a6fe05883721a00475da3c4500000000000000000000048b,0xa50f89e9f439fde2a6fe05883721a00475da3c45,bb-a-MAI/DOLA,100,ComposableStable,5.0,"['0x36942963e3b6f37ecc45a4e72349558514233f00', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xa50f89e9f439fde2a6fe05883721a00475da3c45']",9.384276229154574442988495782736837,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xa612b6aed2e7ca1a3a4f23fbca9128461bbb7718000000000000000000000274,0xa612b6aed2e7ca1a3a4f23fbca9128461bbb7718,TEST,,AaveLinear,3.0,"['0xa612b6aed2e7ca1a3a4f23fbca9128461bbb7718', '0x16ba924752ef283c7946db8a122a6742aa35c1dc', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d000000000000000000000047b,0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d0,BPT-USD+,5000,ComposableStable,5.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d0']",547160.3787051687582496862770951986,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xad28940024117b442a9efb6d0f25c8b59e1c950b00000000000000000000046f,0xad28940024117b442a9efb6d0f25c8b59e1c950b,bb-a-WETH,,ERC4626Linear,4.0,"['0xad28940024117b442a9efb6d0f25c8b59e1c950b', '0x18468b6eba332285c6d9bb03fe7fb52e108c4596', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",4695966.380469108643436428842446109,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xae646817e458c0be890b81e8d880206710e3c44e00000000000000000000039d,0xae646817e458c0be890b81e8d880206710e3c44e,TEST-bb-f-USDC,,ERC4626Linear,3.0,"['0xae646817e458c0be890b81e8d880206710e3c44e', '0xf08cc15597f091129228982b61928a01ca7cc939', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256000000000000000000000351,0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256,bb-rf-USDC,,ERC4626Linear,3.0,"['0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256', '0xaeacf641a0342330ec681b57c0a6af0b71d5cbff', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0xbbf9d705b75f408cfcaee91da32966124d2c6f7d00000000000000000000047e,0xbbf9d705b75f408cfcaee91da32966124d2c6f7d,DOLA/bbaUSD-BPT ,200,ComposableStable,5.0,"['0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xbbf9d705b75f408cfcaee91da32966124d2c6f7d', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",160683.347210557716963477154619104,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xbd724eb087d4cc0f61a5fed1fffaf937937e14de000000000000000000000473,0xbd724eb087d4cc0f61a5fed1fffaf937937e14de,bb-a-USDC,,ERC4626Linear,4.0,"['0xbd724eb087d4cc0f61a5fed1fffaf937937e14de', '0xaf88d065e77c8cc2239327c5edb3a432268e5831', '0xbde67e089886ec0e615d6f054bc6f746189a3d56']",2269832.112359229452188943934050649,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xbe0f30217be1e981add883848d0773a86d2d2cd4000000000000000000000471,0xbe0f30217be1e981add883848d0773a86d2d2cd4,rETH-bb-a-WETH-BPT,1500,ComposableStable,5.0,"['0xad28940024117b442a9efb6d0f25c8b59e1c950b', '0xbe0f30217be1e981add883848d0773a86d2d2cd4', '0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8']",4153351.895750884815729910172279226,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xc46be4b8bb6b5a3d3120660efae9c5416318ed40000000000000000000000472,0xc46be4b8bb6b5a3d3120660efae9c5416318ed40,bb-a-USDT,,ERC4626Linear,4.0,"['0xc46be4b8bb6b5a3d3120660efae9c5416318ed40', '0x8b5541b773dd781852940490b0c3dc1a8cdb6a87', '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9']",3852578.954516955257519631718695522,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xc69771058481551261709d8db44977e9afde645000010000000000000000042a,0xc69771058481551261709d8db44977e9afde6450,40WBTC-40wstETH-bb-a-WETH-BPT-20bb-a-USD,,Weighted,4.0,"['0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f', '0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",986.8337268187333083001177093268084,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389000000000000000000000475,0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389,bb-a-USD,5000,ComposableStable,5.0,"['0x6cb787a419c3e6ee2e9ff365856c29cd10659113', '0xbd724eb087d4cc0f61a5fed1fffaf937937e14de', '0xc46be4b8bb6b5a3d3120660efae9c5416318ed40', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",7067320.937708409077408462913145178,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a00000000000000000000049a,0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a,STAR/bbaUSD-BPT,200,ComposableStable,5.0,"['0xc19669a405067927865b40ea045a2baabbbe57f5', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389', '0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xcba9ff45cfb9ce238afde32b0148eb82cbe635620000000000000000000003fd,0xcba9ff45cfb9ce238afde32b0148eb82cbe63562,rETH-bb-a-WETH-BPT,600,ComposableStable,3.0,"['0xcba9ff45cfb9ce238afde32b0148eb82cbe63562', '0xda1cd1711743e57dd57102e9e61b75f3587703da', '0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8']",369832.7125360425330749153799539843,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0xcf8b555b7754556cf2ac2165e77ee23ed8517d7900020000000000000000045e,0xcf8b555b7754556cf2ac2165e77ee23ed8517d79,ChadAura,,Weighted,4.0,"['0x1509706a6c66ca549ff0cb464de88231ddbe213b', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",32.00525248466137459260375530138793,0xa3f2463bfb45903df1cd74bf6d9998be9128f7b2,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xd0dc20e6342db2de82692b8dc842301ff9121805000200000000000000000454,0xd0dc20e6342db2de82692b8dc842301ff9121805,80NFTE-20WETH-bb-BPT,,Weighted,4.0,"['0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xb261104a83887ae92392fb5ce5899fcfe5481456']",1018.978642109334428322295314057577,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xd3d5d45f4edf82ba0dfaf061d230766032a10e07000200000000000000000413,0xd3d5d45f4edf82ba0dfaf061d230766032a10e07,50STG-50bbaUSD,,Weighted,3.0,"['0x6694340fc020c5e6b96567843da2df01b2ce1eb6', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",82.61467524212832811102028813517504,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xd6d20527c7b0669989ee082b9d3a1c63af742290000000000000000000000483,0xd6d20527c7b0669989ee082b9d3a1c63af742290,BPT-DOLA-USD+,570,ComposableStable,5.0,"['0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xd6d20527c7b0669989ee082b9d3a1c63af742290']",0.1176084173619242272199728335497353,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xda1cd1711743e57dd57102e9e61b75f3587703da0000000000000000000003fc,0xda1cd1711743e57dd57102e9e61b75f3587703da,bb-a-WETH,,ERC4626Linear,3.0,"['0xda1cd1711743e57dd57102e9e61b75f3587703da', '0x18c100415988bef4354effad1188d1c22041b046', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",384157.552146830689897324568007551,,True,False,True,arbitrum,to be put in recovery mode by the dao +0xe1fb90d0d3b47e551d494d7ebe8f209753526b0100000000000000000000034e,0xe1fb90d0d3b47e551d494d7ebe8f209753526b01,bb-rf-DAI,,ERC4626Linear,3.0,"['0xe1fb90d0d3b47e551d494d7ebe8f209753526b01', '0x12f256109e744081f633a827be80e06d97ff7447', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",520.2452126516800389421468736507229,,False,False,False,arbitrum,to be put in recovery mode by the dao +0xee02583596aee94cccb7e8ccd3921d955f17982a00000000000000000000040a,0xee02583596aee94cccb7e8ccd3921d955f17982a,bb-a-USD,2000,ComposableStable,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0x9e34631547adcf2f8cefa0f5f223955c7b137571', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",309927.0339615491566339885064894121,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0xf984eb2b8a7ef780245a797a2fccd82f346409ca00000000000000000000034d,0xf984eb2b8a7ef780245a797a2fccd82f346409ca,TEST,,ERC4626Linear,3.0,"['0xf984eb2b8a7ef780245a797a2fccd82f346409ca', '0x62aab12865d7281048c337d53a4dde9d770321e6', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0xff8f84e8c87532af96aef5582ee451572233678b000200000000000000000478,0xff8f84e8c87532af96aef5582ee451572233678b,50BAL-50ARB,,Weighted,4.0,"['0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",0.00000000004230624354808827202480513643341265,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x055a4cfa8cd9ced1d7bc9ae5eb46c404c130e46d0000000000000000000000cd,0x055a4cfa8cd9ced1d7bc9ae5eb46c404c130e46d,bb-rf-soWBTC,,ReaperLinear,3.0,"['0x055a4cfa8cd9ced1d7bc9ae5eb46c404c130e46d', '0x68f180fcce6836688e9084f035309e29bf0a2095', '0x73e51b0368ef8bd0070b12dd992c54aa53bcb5f4']",0.9538816409947783450722371307557332,,False,False,False,optimism,to be put in recovery mode by the dao +0x05e7732bf9ae5592e6aa05afe8cd80f7ab0a7bea00020000000000000000005a,0x05e7732bf9ae5592e6aa05afe8cd80f7ab0a7bea,bb-STG-USD,,Weighted,2.0,"['0x296f55f8fb28e498b858d0bcda06d955b2cb3f97', '0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71']",6521.048535949676074696643682145029,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x098f32d98d0d64dba199fc1923d3bf4192e787190001000000000000000000d2,0x098f32d98d0d64dba199fc1923d3bf4192e78719,bb-rf-SOTRI,,Weighted,4.0,"['0x6af3737f6d58ae8bcb9f2b597125d37244596e59', '0x7e9250cc13559eb50536859e8c076ef53e275fb3', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",39230.73030496416579260010817274554,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x11884da90fb4221b3aa288a7741c51ec4fc43b2f00000000000000000000009e,0x11884da90fb4221b3aa288a7741c51ec4fc43b2f,TEST,,AaveLinear,4.0,"['0x11884da90fb4221b3aa288a7741c51ec4fc43b2f', '0x4200000000000000000000000000000000000006', '0xb9f8ab3ed3f3acba64bc6cd2dca74b7f38fd7b88']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0x15873081c0aa67ad5c5dba362169d352e2a128a2000000000000000000000032,0x15873081c0aa67ad5c5dba362169d352e2a128a2,bb-rf-aUSDC,,ReaperLinear,1.0,"['0x15873081c0aa67ad5c5dba362169d352e2a128a2', '0x4f086a048c33f3bf9011dd2265861ce812624f2c', '0x7f5c764cbc14f9669b88837ca1490cca17c31607']",0.290309,,False,False,False,optimism,to be put in recovery mode by the dao +0x1f131ec1175f023ee1534b16fa8ab237c00e238100000000000000000000004a,0x1f131ec1175f023ee1534b16fa8ab237c00e2381,bbrfaUSD-MAI,400,ComposableStable,1.0,"['0x1f131ec1175f023ee1534b16fa8ab237c00e2381', '0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0xdfa46478f9e5ea86d57387849598dbfb2e964b02']",162.6746065483209098126178822809392,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x20715545c15c76461861cb0d6ba96929766d05a50000000000000000000000e8,0x20715545c15c76461861cb0d6ba96929766d05a5,bb-rfUSDT,,ERC4626Linear,4.0,"['0x20715545c15c76461861cb0d6ba96929766d05a5', '0x51868bb8b71fb423b87129908fa039b880c8612d', '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58']",92637.56921897864954054333407113528,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x23ca0306b21ea71552b148cf3c4db4fc85ae19290000000000000000000000ac,0x23ca0306b21ea71552b148cf3c4db4fc85ae1929,bbrfsoUSD,1000,ComposableStable,3.0,"['0x23ca0306b21ea71552b148cf3c4db4fc85ae1929', '0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877', '0xb96c5bada4bf6a70e71795a3197ba94751dae2db', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",355272.8639527863052824894098930154,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x24d9ff56fb09e0f02e74407b12f3264c6e520b5e0000000000000000000000d7,0x24d9ff56fb09e0f02e74407b12f3264c6e520b5e,bb-rfUSDC,,ReaperLinear,3.0,"['0x24d9ff56fb09e0f02e74407b12f3264c6e520b5e', '0x508734b52ba7e04ba068a2d4f67720ac1f63df47', '0x7f5c764cbc14f9669b88837ca1490cca17c31607']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0x2c4a83f98d1cdbeeec825fabacd09c46e2dd3c570002000000000000000000de,0x2c4a83f98d1cdbeeec825fabacd09c46e2dd3c57,ECLP-bb-rf-aWETH-wstETH,,GyroE,1.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0xdd89c7cd0613c1557b2daac6ae663282900204f1']",0.601640207051868241092248350405605,,False,False,False,optimism,pool doesn't implement recovery mode +0x2da61ef3cdcb97efb0f7099c02527fabfe94dee50000000000000000000000c5,0x2da61ef3cdcb97efb0f7099c02527fabfe94dee5,TEST,,ERC4626Linear,4.0,"['0x2da61ef3cdcb97efb0f7099c02527fabfe94dee5', '0x4200000000000000000000000000000000000006', '0x4be0e4d6184348c5ba845a4010528cfc779610b8']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x2e2b8b82123789d895fd79913f6dfa51f5b5a0e60000000000000000000000eb,0x2e2b8b82123789d895fd79913f6dfa51f5b5a0e6,bb-rfWETH,,ERC4626Linear,4.0,"['0x2e2b8b82123789d895fd79913f6dfa51f5b5a0e6', '0x1bad45e92dce078cf68c2141cd34f54a02c92806', '0x4200000000000000000000000000000000000006']",0.944823169436967254518527156686061,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x34557ef500bfc060b8e3f2da58ef725bb7d322020000000000000000000000c7,0x34557ef500bfc060b8e3f2da58ef725bb7d32202,TEST,,YearnLinear,2.0,"['0x34557ef500bfc060b8e3f2da58ef725bb7d32202', '0x4200000000000000000000000000000000000006', '0xb15608d28eb43378a7e7780add3fe9bc132baf40']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x359ea8618c405023fc4b98dab1b01f373792a12600010000000000000000004f,0x359ea8618c405023fc4b98dab1b01f373792a126,bb-WONDER,,Weighted,2.0,"['0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0x97513e975a7fa9072c72c92d8000b0db90b163c5', '0x9bcef72be871e61ed4fbbc7630889bee758eb81d', '0xd0d334b6cfd77acc94bab28c7783982387856449']",620.3837030553627084439465238123416,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x362715c164d606682c4ea7e479633e419d9345eb0001000000000000000000e7,0x362715c164d606682c4ea7e479633e419d9345eb,bb-rf-triyie,,Weighted,4.0,"['0xb85245929dc65b5eddb56c4b4e84b20bce69db35', '0xd32f78f5ae235269c6d2cabbd26a57ff9fd62967', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",0.423712068152036013435468084646347,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x3b2ff5888f1bdedbb45ece9f1c628356388d22cc000000000000000000000045,0x3b2ff5888f1bdedbb45ece9f1c628356388d22cc,bb-rf-aDAI,,ReaperLinear,1.0,"['0x3b2ff5888f1bdedbb45ece9f1c628356388d22cc', '0x75441c125890612f95b5fbf3f73db0c25f5573cd', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0x3c74c4ed512050eb843d89fb9dcd5ebb4668eb6d0002000000000000000000cc,0x3c74c4ed512050eb843d89fb9dcd5ebb4668eb6d,bb-moo-exETHUSDC,,Weighted,4.0,"['0x5bdd8c19b44c3e4a15305601a2c9841bde9366f0', '0x72d6df381cac8c2283c0b13fe5262a1f5e8e8d1b']",3691.479046366278864755059115652561,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x3e9cbffd270ae67abb09d28988e7e785498c73730000000000000000000000ee,0x3e9cbffd270ae67abb09d28988e7e785498c7373,bb-rfOP,,ERC4626Linear,4.0,"['0x3e9cbffd270ae67abb09d28988e7e785498c7373', '0x4200000000000000000000000000000000000042', '0xcecd29559a84e4d4f6467b36bbd4b9c3e6b89771']",1.52103930541825210438361509850148,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x428e1cc3099cf461b87d124957a0d48273f334b100000000000000000000007f,0x428e1cc3099cf461b87d124957a0d48273f334b1,bbrfsoUSD,1000,ComposableStable,1.0,"['0x428e1cc3099cf461b87d124957a0d48273f334b1', '0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877', '0xb96c5bada4bf6a70e71795a3197ba94751dae2db', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",611.4999598584085370328056965988232,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x435272180a4125f3b47c92826f482fc6cc165958000200000000000000000059,0x435272180a4125f3b47c92826f482fc6cc165958,bb-STG-USD,,Weighted,2.0,"['0x15873081c0aa67ad5c5dba362169d352e2a128a2', '0x296f55f8fb28e498b858d0bcda06d955b2cb3f97']",0,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a50000000000000000000000ae,0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a5,BPT-overnight-II,570,ComposableStable,3.0,"['0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a5', '0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809']",36107.14607332570833594808280807417,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x45d37982784f022a9864748b4e8750e1e70196040000000000000000000000c6,0x45d37982784f022a9864748b4e8750e1e7019604,TEST,,AaveLinear,5.0,"['0x45d37982784f022a9864748b4e8750e1e7019604', '0x4200000000000000000000000000000000000006', '0x8b7854708c0c54f9d7d1ff351d4f84e6de0e134c']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337000000000000000000000049,0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337,bb-rf-aUSD-asUSD,400,ComposableStable,1.0,"['0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337', '0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0xc0d7013a05860271a1edb52415cf74bc85b2ace7']",72.46059355189647910405450743321381,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x48ace81c09382bfc08ed102e7eadd37e3b0497520000000000000000000000ec,0x48ace81c09382bfc08ed102e7eadd37e3b049752,bb-rfWSTETH,,ERC4626Linear,4.0,"['0x48ace81c09382bfc08ed102e7eadd37e3b049752', '0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0xb19f4d65882f6c103c332f0bc012354548e9ce0e']",1.070379765362303861428411001768636,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x5470f064a19c65263b3033da3a6124fdf0a9bab80000000000000000000000e6,0x5470f064a19c65263b3033da3a6124fdf0a9bab8,bb-rf-usd,1000,ComposableStable,5.0,"['0x5470f064a19c65263b3033da3a6124fdf0a9bab8', '0x8fe33d737484ca194dedf64aafa8485327fc5372', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",0.03000000688121104974774552910627243,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0x55b1f937b1335be355c82e207fd437182c986ba10000000000000000000000dc,0x55b1f937b1335be355c82e207fd437182c986ba1,bb-rfOP,,ReaperLinear,3.0,"['0x4200000000000000000000000000000000000042', '0x55b1f937b1335be355c82e207fd437182c986ba1', '0xcecd29559a84e4d4f6467b36bbd4b9c3e6b89771']",1.41781260092689730157715033924439,,False,False,False,optimism,to be put in recovery mode by the dao +0x5936497ffe0dba0ef272d6301d65c0122862971a00000000000000000000007a,0x5936497ffe0dba0ef272d6301d65c0122862971a,TEST,,AaveLinear,3.0,"['0x5936497ffe0dba0ef272d6301d65c0122862971a', '0x4200000000000000000000000000000000000006', '0xca96c4f198d343e251b1a01f3eba061ef3da73c1']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x593acbfb1eaf3b6ec86fa60325d816996fdcbc0d000000000000000000000038,0x593acbfb1eaf3b6ec86fa60325d816996fdcbc0d,test-bb-USD-MAI,500,ComposableStable,1.0,"['0x593acbfb1eaf3b6ec86fa60325d816996fdcbc0d', '0x9964b1bd3cc530e5c58ba564e45d45290f677be2', '0xdfa46478f9e5ea86d57387849598dbfb2e964b02']",0,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x5bdd8c19b44c3e4a15305601a2c9841bde9366f00000000000000000000000ca,0x5bdd8c19b44c3e4a15305601a2c9841bde9366f0,bb-moo-exUSDC,,ERC4626Linear,4.0,"['0x5bdd8c19b44c3e4a15305601a2c9841bde9366f0', '0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0xe5e9168b45a90c1e5730da6184cc5901c6e4353f']",1844.060647,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x5d8955a2068ee6d1f7ab17640301219afa4b526f00000000000000000000002d,0x5d8955a2068ee6d1f7ab17640301219afa4b526f,MLP,,AaveLinear,2.0,"['0x5d8955a2068ee6d1f7ab17640301219afa4b526f', '0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0xf4dec519630b2379c191c4d2f3892e3726ba07ff']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd000000000000000000000046,0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd,bb-rf-aUSD,2000,ComposableStable,1.0,"['0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0x888a6195d42a95e80d81e1c506172772a80b80bc', '0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4', '0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71']",4679.897582919654935785870238098938,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x62cf35db540152e94936de63efc90d880d4e241b0000000000000000000000ef,0x62cf35db540152e94936de63efc90d880d4e241b,bb-dolbil,40,ComposableStable,5.0,"['0x20715545c15c76461861cb0d6ba96929766d05a5', '0x62cf35db540152e94936de63efc90d880d4e241b', '0xc5b001dc33727f8f26880b184090d3e252470d45', '0xf970659221bb9d01b615321b63a26e857ffc030b']",224889.5735935707487821381739458952,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0x62de5ca16a618e22f6dfe5315ebd31acb10c44b6000000000000000000000037,0x62de5ca16a618e22f6dfe5315ebd31acb10c44b6,test-bb-WETH,500,ComposableStable,1.0,"['0x62de5ca16a618e22f6dfe5315ebd31acb10c44b6', '0x75062a04a8cc587c588a6bb50bd0cc009da483dc', '0x9bcef72be871e61ed4fbbc7630889bee758eb81d']",3.719974780434756340432291380902083,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x62ec8b26c08ffe504f22390a65e6e3c1e45e987700000000000000000000007e,0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877,bb-rf-soDAI,,ReaperLinear,3.0,"['0x19ca00d242e96a30a1cad12f08c375caa989628f', '0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",145885.6908805564841206669054550522,,False,False,False,optimism,to be put in recovery mode by the dao +0x64cee2338369aa9b36fc756ea231eb9bc242926f0000000000000000000000df,0x64cee2338369aa9b36fc756ea231eb9bc242926f,bb-rf-USD,1000,ComposableStable,4.0,"['0x64cee2338369aa9b36fc756ea231eb9bc242926f', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",1.020003264347709837483775513831405,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x6af3737f6d58ae8bcb9f2b597125d37244596e590000000000000000000000d1,0x6af3737f6d58ae8bcb9f2b597125d37244596e59,bb-rf-soWBTC,,ReaperLinear,3.0,"['0x68f180fcce6836688e9084f035309e29bf0a2095', '0x6af3737f6d58ae8bcb9f2b597125d37244596e59', '0x73e51b0368ef8bd0070b12dd992c54aa53bcb5f4']",9729.055065021491530859555145748988,,False,False,False,optimism,to be put in recovery mode by the dao +0x72d6df381cac8c2283c0b13fe5262a1f5e8e8d1b0000000000000000000000cb,0x72d6df381cac8c2283c0b13fe5262a1f5e8e8d1b,bb-moo-exWETH,,ERC4626Linear,4.0,"['0x72d6df381cac8c2283c0b13fe5262a1f5e8e8d1b', '0x4200000000000000000000000000000000000006', '0x44b1cea4f597f493e2fd0833a9c04dfb1e479ef0']",1848.507650396296080385908141391251,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x75062a04a8cc587c588a6bb50bd0cc009da483dc000000000000000000000035,0x75062a04a8cc587c588a6bb50bd0cc009da483dc,bb-rf-aWETH,,ReaperLinear,1.0,"['0x4200000000000000000000000000000000000006', '0x75062a04a8cc587c588a6bb50bd0cc009da483dc', '0xaa3b2f7c6ffad072ab65d144b349ed44558f1d80']",3.26153419479255177499103781095401,,False,False,False,optimism,to be put in recovery mode by the dao +0x7d6bff131b359da66d92f215fd4e186003bfaa42000000000000000000000058,0x7d6bff131b359da66d92f215fd4e186003bfaa42,BPT-USD+,570,ComposableStable,1.0,"['0x7d6bff131b359da66d92f215fd4e186003bfaa42', '0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xfbf87d2c22d1d298298ab5b0ec957583a2731d15']",0.01843540405694858886102669492248702,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x7e9250cc13559eb50536859e8c076ef53e275fb30000000000000000000000ce,0x7e9250cc13559eb50536859e8c076ef53e275fb3,bb-rf-soWSTETH,,ReaperLinear,3.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0x3573de618ae4a740fb24215d93f4483436fbb2b6', '0x7e9250cc13559eb50536859e8c076ef53e275fb3']",19913.86092509790750914518993054507,,False,False,False,optimism,to be put in recovery mode by the dao +0x7fe29a818438ed2759e30f65c2302295711d66fc0000000000000000000000e5,0x7fe29a818438ed2759e30f65c2302295711d66fc,bb-doldol,40,ComposableStable,5.0,"['0x7fe29a818438ed2759e30f65c2302295711d66fc', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9', '0xc5b001dc33727f8f26880b184090d3e252470d45', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",379.4675066512246567163584912671976,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0x8003eec4add35c6d23eb1ef61b4fa6bbbb23a41a0000000000000000000000d9,0x8003eec4add35c6d23eb1ef61b4fa6bbbb23a41a,bb-rfWETH,,ReaperLinear,3.0,"['0x1bad45e92dce078cf68c2141cd34f54a02c92806', '0x4200000000000000000000000000000000000006', '0x8003eec4add35c6d23eb1ef61b4fa6bbbb23a41a']",0.5632241245022348908214623934104509,,False,False,False,optimism,to be put in recovery mode by the dao +0x8025586ac5fb265a23b9492e7414beccc2059ec30000000000000000000000ed,0x8025586ac5fb265a23b9492e7414beccc2059ec3,bb-rfWBTC,,ERC4626Linear,4.0,"['0x8025586ac5fb265a23b9492e7414beccc2059ec3', '0x68f180fcce6836688e9084f035309e29bf0a2095', '0xf6533b6fcb3f42d2fc91da7c379858ae6ebc7448']",0.8776426804381546269815035015146555,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e320000000000000000000000a6,0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e32,TEST,,YearnLinear,1.0,"['0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e32', '0x1b986138a4f2aa538e79fdec222dad93f8d66703', '0x4200000000000000000000000000000000000006']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0x888a6195d42a95e80d81e1c506172772a80b80bc000000000000000000000044,0x888a6195d42a95e80d81e1c506172772a80b80bc,bb-rf-aDAI,,ReaperLinear,1.0,"['0x75441c125890612f95b5fbf3f73db0c25f5573cd', '0x888a6195d42a95e80d81e1c506172772a80b80bc', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",2141.737602047720332519234083155565,,False,False,False,optimism,to be put in recovery mode by the dao +0x88d07558470484c03d3bb44c3ecc36cafcf43253000000000000000000000051,0x88d07558470484c03d3bb44c3ecc36cafcf43253,bb-USD+,,ERC4626Linear,1.0,"['0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xa348700745d249c3b49d2c2acac9a5ae8155f826']",21237.2918286070846973567796872812,,False,False,False,optimism,pool doesn't implement recovery mode +0x8a2872fd28f42bd9f6559907235e83fbf4167f480001000000000000000000f2,0x8a2872fd28f42bd9f6559907235e83fbf4167f48,bb-rf-triple,,Weighted,4.0,"['0x48ace81c09382bfc08ed102e7eadd37e3b049752', '0x8025586ac5fb265a23b9492e7414beccc2059ec3', '0xf970659221bb9d01b615321b63a26e857ffc030b']",0.4245389414578219031326568825584438,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x8b6d3aa69c1cf47677281691b1abf3831ba1329d0001000000000000000000d0,0x8b6d3aa69c1cf47677281691b1abf3831ba1329d,bb-rf-SOTRI,,Weighted,4.0,"['0x055a4cfa8cd9ced1d7bc9ae5eb46c404c130e46d', '0x7e9250cc13559eb50536859e8c076ef53e275fb3', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",0.4879681537607284258744977186139354,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x8fe33d737484ca194dedf64aafa8485327fc53720000000000000000000000d8,0x8fe33d737484ca194dedf64aafa8485327fc5372,bb-rfDAI,,ReaperLinear,3.0,"['0x8fe33d737484ca194dedf64aafa8485327fc5372', '0xc0f5da4fb484ce6d8a6832819299f7cd0d15726e', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",1,,False,False,False,optimism,to be put in recovery mode by the dao +0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4000000000000000000000042,0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4,bb-rf-aUSDT,,ReaperLinear,1.0,"['0x61cbcb4278d737471ee54dc689de50e4455978d8', '0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4', '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58']",1597.347450392781939663660548,,False,False,False,optimism,to be put in recovery mode by the dao +0x96a78983932b8739d1117b16d30c15607926b0c500000000000000000000006d,0x96a78983932b8739d1117b16d30c15607926b0c5,BPT-USD+,570,ComposableStable,1.0,"['0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0x96a78983932b8739d1117b16d30c15607926b0c5', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809']",0,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x981fb05b738e981ac532a99e77170ecb4bc27aef00010000000000000000004b,0x981fb05b738e981ac532a99e77170ecb4bc27aef,bb-YELLOW,,Weighted,2.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0xa1a77e5d7d769bfbb790a08ec976dc738bf795b9']",6082.852931880304207359187871066891,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x9964b1bd3cc530e5c58ba564e45d45290f677be2000000000000000000000036,0x9964b1bd3cc530e5c58ba564e45d45290f677be2,test-bb-rf-a-USD,500,ComposableStable,1.0,"['0x15873081c0aa67ad5c5dba362169d352e2a128a2', '0x9964b1bd3cc530e5c58ba564e45d45290f677be2', '0xce9329f138cd6319fcfbd8704e6ae50b6bb04f31']",0.7150200811932676457952634090549335,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xa1a77e5d7d769bfbb790a08ec976dc738bf795b9000000000000000000000047,0xa1a77e5d7d769bfbb790a08ec976dc738bf795b9,bb-rf-aWBTC,,ReaperLinear,1.0,"['0x43cb769d5647cc56f5c1e8df72ab9097dab59cce', '0x68f180fcce6836688e9084f035309e29bf0a2095', '0xa1a77e5d7d769bfbb790a08ec976dc738bf795b9']",1515.844686674411909063853485068007,,False,False,False,optimism,to be put in recovery mode by the dao +0xa4e597c1bd01859b393b124ce18427aa4426a87100000000000000000000004c,0xa4e597c1bd01859b393b124ce18427aa4426a871,bb-rf-grOP,,ReaperLinear,1.0,"['0x229ecbb1d76463e761535dd0e591c34317396131', '0x4200000000000000000000000000000000000042', '0xa4e597c1bd01859b393b124ce18427aa4426a871']",173.8483752477507576727341638223561,,False,False,False,optimism,to be put in recovery mode by the dao +0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c80000000000000000000000ea,0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c8,bb-rfDAI,,ERC4626Linear,4.0,"['0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c8', '0xc0f5da4fb484ce6d8a6832819299f7cd0d15726e', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",1,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0xb0de49429fbb80c635432bbad0b3965b2856017700010000000000000000004e,0xb0de49429fbb80c635432bbad0b3965b28560177,bb-HAPPY,,Weighted,2.0,"['0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0x9bcef72be871e61ed4fbbc7630889bee758eb81d', '0xa4e597c1bd01859b393b124ce18427aa4426a871']",691.2614593266530586617022295747626,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xb1c9ac57594e9b1ec0f3787d9f6744ef4cb0a02400000000000000000000006e,0xb1c9ac57594e9b1ec0f3787d9f6744ef4cb0a024,BPT-USD+,1000,ComposableStable,1.0,"['0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xb1c9ac57594e9b1ec0f3787d9f6744ef4cb0a024', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809']",15714.0948104480709499360440953042,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xb5ad7d6d6f92a77f47f98c28c84893fbccc9480900000000000000000000006c,0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809,bb-DAI+,,ERC4626Linear,1.0,"['0x0b8f31480249cc717081928b8af733f45f6915bb', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",30620.1307745355921191389764874584,,False,False,False,optimism,pool doesn't implement recovery mode +0xb85245929dc65b5eddb56c4b4e84b20bce69db350000000000000000000000da,0xb85245929dc65b5eddb56c4b4e84b20bce69db35,bb-rfWSTETH,,ReaperLinear,3.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0xb19f4d65882f6c103c332f0bc012354548e9ce0e', '0xb85245929dc65b5eddb56c4b4e84b20bce69db35']",1.067366000529732111616219844439903,,False,False,False,optimism,to be put in recovery mode by the dao +0xb96c5bada4bf6a70e71795a3197ba94751dae2db00000000000000000000007d,0xb96c5bada4bf6a70e71795a3197ba94751dae2db,bb-rf-soUSDT,,ReaperLinear,3.0,"['0x1e1bf73db9b278a95c9fe9205759956edea8b6ae', '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58', '0xb96c5bada4bf6a70e71795a3197ba94751dae2db']",122633.1698246080656708498429815258,,False,False,False,optimism,to be put in recovery mode by the dao +0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71000000000000000000000043,0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71,bb-rf-aUSDC,,ReaperLinear,1.0,"['0x7ecc9d0ee071c7b86d0ae2101231a3615564009e', '0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71']",7462.569247570169399255226520171214,,False,False,False,optimism,to be put in recovery mode by the dao +0xbec621c9ab4ceddcc2a157ca9b5c475fab65f6a40000000000000000000000f3,0xbec621c9ab4ceddcc2a157ca9b5c475fab65f6a4,bpt-onsteady,500,ComposableStable,5.0,"['0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809', '0xbec621c9ab4ceddcc2a157ca9b5c475fab65f6a4']",0.2059186743708370309875113810129671,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0xbef1ccaada458a570c37b11a8872988ba1e4fdb90000000000000000000000dd,0xbef1ccaada458a570c37b11a8872988ba1e4fdb9,bb-rfUSDT,,ReaperLinear,3.0,"['0x51868bb8b71fb423b87129908fa039b880c8612d', '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9']",1.479276,,False,False,False,optimism,to be put in recovery mode by the dao +0xc0d7013a05860271a1edb52415cf74bc85b2ace7000000000000000000000048,0xc0d7013a05860271a1edb52415cf74bc85b2ace7,bb-rf-asUSD,,ReaperLinear,1.0,"['0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9', '0xc0d7013a05860271a1edb52415cf74bc85b2ace7', '0xc83c23dba4a008d7df46cd50ad144ae856b6b1be']",26.83255203612018835794222727547169,,False,False,False,optimism,to be put in recovery mode by the dao +0xcb89e89d798a4563d1599ea5508282e13b225b520000000000000000000000e4,0xcb89e89d798a4563d1599ea5508282e13b225b52,bb-rf-usd,1000,ComposableStable,5.0,"['0x8fe33d737484ca194dedf64aafa8485327fc5372', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9', '0xcb89e89d798a4563d1599ea5508282e13b225b52', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",0.03000000688121104974399464852402405,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a0000000000000000000000f0,0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a,bb-rf-usd,100,ComposableStable,5.0,"['0x20715545c15c76461861cb0d6ba96929766d05a5', '0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c8', '0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a', '0xf970659221bb9d01b615321b63a26e857ffc030b']",0.3000001087324431059423575210994221,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0xce9329f138cd6319fcfbd8704e6ae50b6bb04f31000000000000000000000033,0xce9329f138cd6319fcfbd8704e6ae50b6bb04f31,bb-rf-aDAI,,ReaperLinear,1.0,"['0xce9329f138cd6319fcfbd8704e6ae50b6bb04f31', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1', '0xefcbf2bd622ce716d3344c09e77e7a74071e6ce2']",0.431023610279128434,,False,False,False,optimism,to be put in recovery mode by the dao +0xd0d334b6cfd77acc94bab28c778398238785644900000000000000000000004d,0xd0d334b6cfd77acc94bab28c7783982387856449,bb-rf-grBAL,,ReaperLinear,1.0,"['0x21f95cff4aa2e1dd8f43c6b581f246e5aa67fc9c', '0xd0d334b6cfd77acc94bab28c7783982387856449', '0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921']",162.94910430874289026101728381068,,False,False,False,optimism,to be put in recovery mode by the dao +0xd1af4974fcc995cf36ba40b189caa92964a9126d0000000000000000000000f1,0xd1af4974fcc995cf36ba40b189caa92964a9126d,bb-rf-usd,100,ComposableStable,5.0,"['0x20715545c15c76461861cb0d6ba96929766d05a5', '0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c8', '0xd1af4974fcc995cf36ba40b189caa92964a9126d', '0xf970659221bb9d01b615321b63a26e857ffc030b']",0,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0xd32f78f5ae235269c6d2cabbd26a57ff9fd629670000000000000000000000db,0xd32f78f5ae235269c6d2cabbd26a57ff9fd62967,bb-rfWBTC,,ReaperLinear,3.0,"['0x68f180fcce6836688e9084f035309e29bf0a2095', '0xd32f78f5ae235269c6d2cabbd26a57ff9fd62967', '0xf6533b6fcb3f42d2fc91da7c379858ae6ebc7448']",0.9925657759032457720149223052463098,,False,False,False,optimism,to be put in recovery mode by the dao +0xd3e47cbdb2a9c1b1deb857c6415b87fce63a4bf5000000000000000000000034,0xd3e47cbdb2a9c1b1deb857c6415b87fce63a4bf5,bb-rf-aWBTC,,ReaperLinear,1.0,"['0x68f180fcce6836688e9084f035309e29bf0a2095', '0x6fed42d8bf5010e5710927fe0de15f91f916204d', '0xd3e47cbdb2a9c1b1deb857c6415b87fce63a4bf5']",0.1088296865140333417082747518709748,,False,False,False,optimism,to be put in recovery mode by the dao +0xdc2007d9e9a33f50630f26069faab69c25f7758c0000000000000000000000d6,0xdc2007d9e9a33f50630f26069faab69c25f7758c,bb-rfUSDC,,ReaperLinear,3.0,"['0x508734b52ba7e04ba068a2d4f67720ac1f63df47', '0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",379.444856870654573355188212249002,,False,False,False,optimism,to be put in recovery mode by the dao +0xdd89c7cd0613c1557b2daac6ae663282900204f100000000000000000000003e,0xdd89c7cd0613c1557b2daac6ae663282900204f1,bb-rf-aWETH,,ReaperLinear,1.0,"['0x4200000000000000000000000000000000000006', '0xdd89c7cd0613c1557b2daac6ae663282900204f1', '0xdf2d2c477078d2cd563648abbb913da3db247c00']",4401.512245434445057958773288644363,,False,False,False,optimism,to be put in recovery mode by the dao +0xde45f101250f2ca1c0f8adfc172576d10c12072d00000000000000000000003f,0xde45f101250f2ca1c0f8adfc172576d10c12072d,bb-wstETH,100,ComposableStable,1.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0xdd89c7cd0613c1557b2daac6ae663282900204f1', '0xde45f101250f2ca1c0f8adfc172576d10c12072d']",8843.346640338622615751207662415963,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xe0b50b0635b90f7021d2618f76ab9a31b92d009400010000000000000000003a,0xe0b50b0635b90f7021d2618f76ab9a31b92d0094,test-bb-TRI,,Weighted,2.0,"['0x9964b1bd3cc530e5c58ba564e45d45290f677be2', '0x9bcef72be871e61ed4fbbc7630889bee758eb81d', '0xd3e47cbdb2a9c1b1deb857c6415b87fce63a4bf5']",0.436758160227846309416041870174395,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xe94c45de980f914904fdcfa9fbbe7c4a0ffe6ac70000000000000000000000e0,0xe94c45de980f914904fdcfa9fbbe7c4a0ffe6ac7,bb-ern-usd,40,ComposableStable,4.0,"['0x64cee2338369aa9b36fc756ea231eb9bc242926f', '0xc5b001dc33727f8f26880b184090d3e252470d45', '0xe94c45de980f914904fdcfa9fbbe7c4a0ffe6ac7']",0.02044740274053691702290945944414894,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c00000000000000000000007c,0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c,bb-rf-soUSDC,,ReaperLinear,3.0,"['0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0x875456b73cbc58aa1be98dfe3b0459e0c0bf7b0e', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",97065.02075392672028196522585107572,,False,False,False,optimism,to be put in recovery mode by the dao +0xf572649606db4743d217a2fa6e8b8eb79742c24a000000000000000000000039,0xf572649606db4743d217a2fa6e8b8eb79742c24a,test-bb-USD-MAI,500,ComposableStable,1.0,"['0x9964b1bd3cc530e5c58ba564e45d45290f677be2', '0xdfa46478f9e5ea86d57387849598dbfb2e964b02', '0xf572649606db4743d217a2fa6e8b8eb79742c24a']",0.2764284847378814252500217071725279,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xf970659221bb9d01b615321b63a26e857ffc030b0000000000000000000000e9,0xf970659221bb9d01b615321b63a26e857ffc030b,bb-rfUSDC,,ERC4626Linear,4.0,"['0xf970659221bb9d01b615321b63a26e857ffc030b', '0x508734b52ba7e04ba068a2d4f67720ac1f63df47', '0x7f5c764cbc14f9669b88837ca1490cca17c31607']",91101.62145076537941908909424398577,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0xf984eb2b8a7ef780245a797a2fccd82f346409ca00000000000000000000009d,0xf984eb2b8a7ef780245a797a2fccd82f346409ca,TEST,,ERC4626Linear,3.0,"['0xf984eb2b8a7ef780245a797a2fccd82f346409ca', '0x4200000000000000000000000000000000000006', '0x62aab12865d7281048c337d53a4dde9d770321e6']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0xfbf87d2c22d1d298298ab5b0ec957583a2731d15000000000000000000000052,0xfbf87d2c22d1d298298ab5b0ec957583a2731d15,bb-DAI+,,ERC4626Linear,1.0,"['0x9e88f7cf6c9fc2895dfaa1b7c21d446ec1749f89', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1', '0xfbf87d2c22d1d298298ab5b0ec957583a2731d15']",0.013181840768287914,,False,False,False,optimism,pool doesn't implement recovery mode +0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa000000000000000000000015,0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa,ggAVAX-bb-a-WAVAX-BPT,1500,ComposableStable,5.0,"['0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa', '0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22', '0xa25eaf2906fa1a3a13edac9b9657108af7b703e3']",2680147.114681451718866688955837083,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,avalanche,to be put in recovery mode by emergency multisig +0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b00020000000000000000001b,0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b,50BTC.b-50bb-a-USD,,Weighted,4.0,"['0x152b9d0fdc40c096757f570a51e494bd4b943e50', '0xa1d14d922a575232066520eda11e27760946c991']",182610.2154041585727953757508359713,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,avalanche,to be put in recovery mode by the dao +0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22000000000000000000000010,0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22,bb-a-WAVAX,,ERC4626Linear,4.0,"['0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22', '0xa291ae608d8854cdbf9838e28e9badcf10181669', '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7']",3012799.172208745867582573229231357,,True,False,True,avalanche,to be put in recovery mode by emergency multisig +0xa154009870e9b6431305f19b09f9cfd7284d4e7a000000000000000000000013,0xa154009870e9b6431305f19b09f9cfd7284d4e7a,sAVAX-bb-a-WAVAX-BPT,1500,ComposableStable,5.0,"['0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be', '0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22', '0xa154009870e9b6431305f19b09f9cfd7284d4e7a']",3641028.842060200947640589788244428,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,avalanche,to be put in recovery mode by emergency multisig +0xa1d14d922a575232066520eda11e27760946c991000000000000000000000012,0xa1d14d922a575232066520eda11e27760946c991,bb-a-USD,4000,ComposableStable,5.0,"['0xa1d14d922a575232066520eda11e27760946c991', '0xea67626e1f0b59e0d172a04f5702ef90bcdf440c', '0xeb496161099d45b3ea4892408ef745c6182eb56e']",2186807.52460408538674056929299091,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,avalanche,to be put in recovery mode by emergency multisig +0xa826a114b0c7db4d1ff4a4be845a78998c64564c000000000000000000000008,0xa826a114b0c7db4d1ff4a4be845a78998c64564c,TEST,,AaveLinear,5.0,"['0xa826a114b0c7db4d1ff4a4be845a78998c64564c', '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', '0xd8b6b96c88ad626eb6209c4876e3b14f45f8803a']",0,,False,False,False,avalanche,to be put in recovery mode by emergency multisig +0xea67626e1f0b59e0d172a04f5702ef90bcdf440c00000000000000000000000f,0xea67626e1f0b59e0d172a04f5702ef90bcdf440c,bb-a-USDT,,ERC4626Linear,4.0,"['0xea67626e1f0b59e0d172a04f5702ef90bcdf440c', '0x759a2e28d4c3ad394d3125d5ab75a6a5d6782fd9', '0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7']",1489115.286600010909416627299975993,,True,False,True,avalanche,to be put in recovery mode by emergency multisig +0xeb496161099d45b3ea4892408ef745c6182eb56e00000000000000000000000e,0xeb496161099d45b3ea4892408ef745c6182eb56e,bb-a-USDC,,ERC4626Linear,4.0,"['0xeb496161099d45b3ea4892408ef745c6182eb56e', '0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e', '0xe7839ea8ea8543c7f5d9c9d7269c661904729fe7']",697637.7177248869650749011695902328,,True,False,True,avalanche,to be put in recovery mode by emergency multisig +0xece571847897fd61e764d455dc15cf1cd9de8d6f000000000000000000000014,0xece571847897fd61e764d455dc15cf1cd9de8d6f,yyAVAX-bb-a-WAVAX-BPT,1500,ComposableStable,5.0,"['0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22', '0xece571847897fd61e764d455dc15cf1cd9de8d6f', '0xf7d9281e8e363584973f946201b82ba72c965d27']",1114787.75433379875301943271756366,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,avalanche,to be put in recovery mode by emergency multisig +0xed3e2f496cbcd8e212192fb8d1499842f04a0d19000000000000000000000009,0xed3e2f496cbcd8e212192fb8d1499842f04a0d19,TEST,,ERC4626Linear,4.0,"['0xed3e2f496cbcd8e212192fb8d1499842f04a0d19', '0x2ebe41e1aa44d61c206a94474932dadc7d3fd9e3', '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7']",0,,False,False,False,avalanche,to be put in recovery mode by emergency multisig +0x015f34e47ca0a88675098c4d6601817403f07a32000200000000000000000723,0x015f34e47ca0a88675098c4d6601817403f07a32,BPT-ATTN,,Weighted,4.0,"['0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0xd4500f270880488a481de1b3256a19b3d9c8fd7e']",0.5437340352314003297900036280548791,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0x0392ebb4aea38233e5b89acfabf7b418cdea8e4300010000000000000000073f,0x0392ebb4aea38233e5b89acfabf7b418cdea8e43,bb-rf-amazing,,Weighted,4.0,"['0x0615dbba33fe61a31c7ed131bda6655ed76748b1', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",19.19995954301038062874652902620302,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x10441785a928040b456a179691141c48356eb3a50001000000000000000002fa,0x10441785a928040b456a179691141c48356eb3a5,bb-yv-QUARTET,,Weighted,1.0,"['0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",8601.225040005865566662196704862038,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x1352fd97a1828093bf375f62e088bc196facd1ee000000000000000000000404,0x1352fd97a1828093bf375f62e088bc196facd1ee,BPT-Metronome,500,StablePhantom,1.0,"['0x1352fd97a1828093bf375f62e088bc196facd1ee', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xb85a3fc39993b2e7e6874b8700b436c212a00516']",44.63988014513437395756137651493463,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x174d2608b1d794e9078ae2a4861684a38d4e7ae200020000000000000000065b,0x174d2608b1d794e9078ae2a4861684a38d4e7ae2,BPT-YC,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0xb715f8dce2f0e9b894c753711bd55ee3c04dca4e']",0.000000000000001183580249045920990696607215645005,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x198a22e73aadd2d0ea8e2963799d38ae26adee2e000000000000000000000577,0x198a22e73aadd2d0ea8e2963799d38ae26adee2e,test-bb-yv-USD,500,ComposableStable,1.0,"['0x198a22e73aadd2d0ea8e2963799d38ae26adee2e', '0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561']",0,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x1e2576344d49779bdbb71b1b76193d27e6f996b700020000000000000000032d,0x1e2576344d49779bdbb71b1b76193d27e6f996b7,BPT-YPANIC,,Weighted,1.0,"['0xa882ceac81b22fc2bef8e1a82e823e3e9603310b', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",2018.821747212716701993214403094168,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x230112fa4b07234769fc92bd616c8c77f4fe0e5300000000000000000000042a,0x230112fa4b07234769fc92bd616c8c77f4fe0e53,bb-MAI,,Linear,1.0,"['0x230112fa4b07234769fc92bd616c8c77f4fe0e53', '0x80d7413331afb37b30bc0ef6ae9d11a40bcf014b', '0xfb98b335551a418cd0737375a2ea0ded62ea213b']",0.09253469862937990765156413645955055,,False,False,False,fantom,fantom not processed +0x2b4af4bb149cc06f5de580be013e86f81e4d2b30000100000000000000000373,0x2b4af4bb149cc06f5de580be013e86f81e4d2b30,BPT-ETUDE10,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.009617929144862934631687038470568886,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x2e0d46d884af4053787e1838793bf98dcb87488e00020000000000000000072c,0x2e0d46d884af4053787e1838793bf98dcb87488e,bb-rf-FTMUSDC,,Weighted,4.0,"['0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",371.602918748924004578041212717337,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x2ff1552dd09f87d6774229ee5eca60cf570ae291000000000000000000000186,0x2ff1552dd09f87d6774229ee5eca60cf570ae291,bb-yv-DAI,,Linear,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x637ec617c86d24e421328e6caea1d92114892439', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e']",60411.97932575119214184178274808899,,False,False,False,fantom,fantom not processed +0x302b8b64795b064cadc32f74993a6372498608070001000000000000000003e0,0x302b8b64795b064cadc32f74993a637249860807,BPT-BOOOOST,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x71959b131426fdb7af01de8d7d4149ccaf09f8cc', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",61892.37613553919458777771285224356,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x30c016f5cf1d34c1bce4c8c9c302f66a268847fd0001000000000000000003f6,0x30c016f5cf1d34c1bce4c8c9c302f66a268847fd,BPT-XYZ,,Weighted,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x82f0b8b456c1a451378467398982d4834b6829c1', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0x9879abdea01a879644185341f7af7d8343556b7a', '0xde12c7959e1a72bbe8a5f7a1dc8f8eef9ab011b3', '0xfb98b335551a418cd0737375a2ea0ded62ea213b']",3.467384907049128137224876153494702,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x31adc46737ebb8e0e4a391ec6c26438badaee8ca000000000000000000000306,0x31adc46737ebb8e0e4a391ec6c26438badaee8ca,bb-USD-TUSD,570,StablePhantom,1.0,"['0x31adc46737ebb8e0e4a391ec6c26438badaee8ca', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x9879abdea01a879644185341f7af7d8343556b7a']",8.509899709184274290842631497353787,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x3b998ba87b11a1c5bc1770de9793b17a0da61561000000000000000000000185,0x3b998ba87b11a1c5bc1770de9793b17a0da61561,bb-yv-USDC,,Linear,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0xef0210eb96c7eb36af8ed1c20306462764935607']",3358.306091261345240968327003294002,,False,False,False,fantom,fantom not processed +0x3c1420df122ac809b9d1ba77906f833764d6450100000000000000000000071b,0x3c1420df122ac809b9d1ba77906f833764d64501,bb-rfWBTC,,ERC4626Linear,3.0,"['0x3c1420df122ac809b9d1ba77906f833764d64501', '0x321162cd933e2be498cd2267a90534a804051b11', '0xfa985463b7fa975d06cde703ec72efccf293c605']",44.55384356569413214064155184064452,,False,False,False,fantom,fantom not processed +0x3ee7a82c1ecf54a375da1e3452b21ac986f348db00000000000000000000076e,0x3ee7a82c1ecf54a375da1e3452b21ac986f348db,bb-rfDAI,,ERC4626Linear,3.0,"['0x3ee7a82c1ecf54a375da1e3452b21ac986f348db', '0x5427f192137405e6a4143d1c3321359bab2dbd87', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e']",0,,False,False,False,fantom,fantom not processed +0x42538ce99111ea34dc2987b141bd6e9b594752d60000000000000000000002f9,0x42538ce99111ea34dc2987b141bd6e9b594752d6,bb-yv-WBTC,,Linear,1.0,"['0x321162cd933e2be498cd2267a90534a804051b11', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0xd817a100ab8a29fe3dbd925c2eb489d67f758da9']",4108.038501051252920904605016444705,,False,False,False,fantom,fantom not processed +0x44165fad0b7ea0d54d8856765d936d7026f9e2f20000000000000000000002f8,0x44165fad0b7ea0d54d8856765d936d7026f9e2f2,bb-yv-WETH,,Linear,1.0,"['0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x74b23882a30290451a17c44f4f05243b6b58c76d', '0xce2fc0bdc18bd6a4d9a725791a3dee33f3a23bb7']",675.6488544352908418105105162824241,,False,False,False,fantom,fantom not processed +0x442988091cdc18acb8912cd3fe062cda9233f9dc00000000000000000000071d,0x442988091cdc18acb8912cd3fe062cda9233f9dc,bb-rfFUSDT,,ERC4626Linear,3.0,"['0x442988091cdc18acb8912cd3fe062cda9233f9dc', '0x049d68029688eabf473097a2fc38ef61633a3c7a', '0xaea55c0e84af6e5ef8c9b7042fb6ab682516214a']",313.5665705474906023189621768571119,,False,False,False,fantom,fantom not processed +0x49769fe4c796b2775d2e44982cca8cdae36f6671000000000000000000000428,0x49769fe4c796b2775d2e44982cca8cdae36f6671,bb-tinSPIRIT,,Linear,1.0,"['0x49769fe4c796b2775d2e44982cca8cdae36f6671', '0x6caa3e5feba1f83ec1d80ea2eaca37c3421c33a8', '0x80fe671e580cd1d95b2dcd8ea09233df06c81c7b']",0,,False,False,False,fantom,fantom not processed +0x4b18597d3f7c9786a133827572e6a318d55c9fd200020000000000000000028b,0x4b18597d3f7c9786a133827572e6a318d55c9fd2,BPT-BEBIS,,Weighted,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.000001000000122120015723506574147164882,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x4c36a9a52ca3baf1069e3531d57d96c171a66a230002000000000000000001e9,0x4c36a9a52ca3baf1069e3531d57d96c171a66a23,BPT-DFTM,,Weighted,1.0,"['0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x2ff1552dd09f87d6774229ee5eca60cf570ae291']",0.000000000001488769917370168033516163155526826,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x50fd4d5d60d6df38f5e29721bc241b537e182bf40002000000000000000005f9,0x50fd4d5d60d6df38f5e29721bc241b537e182bf4,BPT-CRE8R60,,Weighted,1.0,"['0x2ad402655243203fcfa7dcb62f8a08cc2ba88ae0', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757']",0.00000000000003162465472804611164598704683737794,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x53dd233c2af0147846579010b7c80bf9440afff4000200000000000000000602,0x53dd233c2af0147846579010b7c80bf9440afff4,BPT-EQ,,Weighted,1.0,"['0x3fd3a0c85b70754efc07ac9ac0cbbdce664865a6', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757']",0.000000000000711970704560714404267569472839733,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x547e9ad4b824f09e9cf1c6d163cf308d4cf998120001000000000000000003c9,0x547e9ad4b824f09e9cf1c6d163cf308d4cf99812,BPT-STABLES,,Weighted,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x2b9d3f168905067d88d93f094c938bacee02b0cb', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2', '0xdc301622e621166bd8e82f2ca0a26c13ad0be355']",0.000002956640536221327362491022774355796,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x559d2ac340216e3a6630741147cda6a2cdbc2be10001000000000000000005de,0x559d2ac340216e3a6630741147cda6a2cdbc2be1,BPT-WCB,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x911d1feae99e112b5014cfa60038325d863352f1', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.00000000000009441775120564916539029309260989226,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x55e0499d268858a5e804d7864dc2a6b4ef194c630000000000000000000005b1,0x55e0499d268858a5e804d7864dc2a6b4ef194c63,bb-rf-grFTM,,Linear,2.0,"['0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x55e0499d268858a5e804d7864dc2a6b4ef194c63', '0xc5b29d59d0b4717aa0dd8d11597d9fd3a05d86bb']",0.675469881421458030285384832944569,,False,False,False,fantom,fantom not processed +0x56897add6dc6abccf0ada1eb83d936818bc6ca4d0002000000000000000002e8,0x56897add6dc6abccf0ada1eb83d936818bc6ca4d,bb-BOO-FTM,,Weighted,1.0,"['0x71959b131426fdb7af01de8d7d4149ccaf09f8cc', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",884.2408216402791651732149640732014,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x57793d39e8787ee6295f6a27a81b6cca68e85cdf000000000000000000000397,0x57793d39e8787ee6295f6a27a81b6cca68e85cdf,bb-yv-FRAX-UST-USD,500,StablePhantom,1.0,"['0x57793d39e8787ee6295f6a27a81b6cca68e85cdf', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b']",0.4245860653142808882549165820866066,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x592fa9f9d58065096f2b7838709c116957d7b5cf00020000000000000000043c,0x592fa9f9d58065096f2b7838709c116957d7b5cf,BPT-FTMXUSD,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",17127.50302686574254795272178572229,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x59cfc2307e8b218c242ba61407a07cade73bd6d7000100000000000000000585,0x59cfc2307e8b218c242ba61407a07cade73bd6d7,BPT-YOY,,Weighted,1.0,"['0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",0.000000000005424705336345945593385682633429936,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x5ddb92a5340fd0ead3987d3661afcd6104c3b757000000000000000000000187,0x5ddb92a5340fd0ead3987d3661afcd6104c3b757,bb-yv-USD,2250,StablePhantom,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757']",60570.06772474346501590818031178466,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x624601b34e64a48ef91a6bf888e74ef3eceb1bf9000100000000000000000419,0x624601b34e64a48ef91a6bf888e74ef3eceb1bf9,BPT-GEL,,Weighted,1.0,"['0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x74b23882a30290451a17c44f4f05243b6b58c76d', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",11.64116630044806008994181721941406,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x64b301e21d640f9bef90458b0987d81fb4cf1b9e00020000000000000000022e,0x64b301e21d640f9bef90458b0987d81fb4cf1b9e,bb-yv-FTMUSD,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",8844.928520833000468597006542448603,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x64dea772866476c9f88fbe95ee83664d6c909c1800000000000000000000022c,0x64dea772866476c9f88fbe95ee83664d6c909c18,bb-yv-USD,570,StablePhantom,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x64dea772866476c9f88fbe95ee83664d6c909c18']",0,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x654def39262548cc958d07c82622e23c52411c820000000000000000000006ec,0x654def39262548cc958d07c82622e23c52411c82,bb-rfUSDC,,ERC4626Linear,3.0,"['0x654def39262548cc958d07c82622e23c52411c82', '0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x4455aef4b5d8ffe3436184e8a1ec99607f9a4340']",0.90276,,False,False,False,fantom,fantom not processed +0x685056d3a4e574b163d0fa05a78f1b0b3aa04a8000000000000000000000071a,0x685056d3a4e574b163d0fa05a78f1b0b3aa04a80,bb-rfDAI,,ERC4626Linear,3.0,"['0x685056d3a4e574b163d0fa05a78f1b0b3aa04a80', '0x16e4399fa9ba6e58f12bf2d2bc35f8bde8a9a4ab', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e']",9650.624166849746703660776143589468,,False,False,False,fantom,fantom not processed +0x6da14f5acd58dd5c8e486cfa1dc1c550f5c61c1c0000000000000000000003cf,0x6da14f5acd58dd5c8e486cfa1dc1c550f5c61c1c,bb-yv-4pool,1100,StablePhantom,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x6da14f5acd58dd5c8e486cfa1dc1c550f5c61c1c', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac']",32743.8967994618195529455452557192,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x6e6dc948ce85c62125ff7a1e543d761a88f0a4cb000000000000000000000743,0x6e6dc948ce85c62125ff7a1e543d761a88f0a4cb,bb-rf-sftmxftm,20,ComposableStable,4.0,"['0x6e6dc948ce85c62125ff7a1e543d761a88f0a4cb', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",165081.7233138630449462077022905258,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x71959b131426fdb7af01de8d7d4149ccaf09f8cc0000000000000000000002e7,0x71959b131426fdb7af01de8d7d4149ccaf09f8cc,bb-BOO,,Linear,1.0,"['0x71959b131426fdb7af01de8d7d4149ccaf09f8cc', '0x841fad6eae12c286d1fd18d1d525dffa75c7effe', '0xa48d959ae2e88f1daa7d5f611e01908106de7598']",40484.14862131472987610915504197715,,False,False,False,fantom,fantom not processed +0x7449f09c8f0ed490472d7c14b4eef235620d027000010000000000000000072d,0x7449f09c8f0ed490472d7c14b4eef235620d0270,bb-rf-QUARTET,,Weighted,4.0,"['0x3c1420df122ac809b9d1ba77906f833764d64501', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",217.6654068350619354855637234242664,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x7839210cd48356bdd6fd400e30cfc7140e1e5ad6000100000000000000000449,0x7839210cd48356bdd6fd400e30cfc7140e1e5ad6,BPT-BC,,Weighted,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x814c66594a22404e101fecfecac1012d8d75c156', '0xde5ed76e7c05ec5e4572cfc88d1acea165109e44']",0.000000000007693362539048174570794838730141042,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x78ab08bf98f90f29a09c9b1d85b3b549369b03a3000100000000000000000354,0x78ab08bf98f90f29a09c9b1d85b3b549369b03a3,BPT-FANGYE,,Weighted,1.0,"['0x49894fcc07233957c35462cfc3418ef0cc26129f', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",75813.27123285217655873560366000506,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x7cf76bccfa5d3340d42f08351552f5a59dc6089c000000000000000000000396,0x7cf76bccfa5d3340d42f08351552f5a59dc6089c,bb-yv-FRAX,,Linear,1.0,"['0x357ca46da26e1eefc195287ce9d838a6d5023ef3', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0xdc301622e621166bd8e82f2ca0a26c13ad0be355']",7995.415625498043822567168273441873,,False,False,False,fantom,fantom not processed +0x88e2a551655daadd7e4e67d14cf48bfb413d72680001000000000000000005d2,0x88e2a551655daadd7e4e67d14cf48bfb413d7268,BPT-WV,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x911d1feae99e112b5014cfa60038325d863352f1', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.00000000000005471023501807091058283452573579525,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x8c63702d4d4a521a6a8ecec8ab8f7ce9d1d6299e000200000000000000000443,0x8c63702d4d4a521a6a8ecec8ab8f7ce9d1d6299e,BPT-CRE8RUS,,Weighted,1.0,"['0x2ad402655243203fcfa7dcb62f8a08cc2ba88ae0', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757']",109.5877818548522233113647378268556,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x8d13d878e44e8005efc0db4a831b95f84cb4b1540000000000000000000003c6,0x8d13d878e44e8005efc0db4a831b95f84cb4b154,bb-yv-4pool,500,StablePhantom,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0x8d13d878e44e8005efc0db4a831b95f84cb4b154', '0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac']",8.378022248860810356072697441294318,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x8d7ca68d9a33148daf3ad1a495ed290f4eee013e0001000000000000000003b9,0x8d7ca68d9a33148daf3ad1a495ed290f4eee013e,BPT-YVGMI,,Weighted,1.0,"['0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.0000000001116739044369099338319566033653243,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x8e58191cb73b283af2d7a8ef3f9ce1544db2b8280000000000000000000005ee,0x8e58191cb73b283af2d7a8ef3f9ce1544db2b828,bb-yv-USDC-v2,,Linear,2.0,"['0x8e58191cb73b283af2d7a8ef3f9ce1544db2b828', '0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0xef0210eb96c7eb36af8ed1c20306462764935607']",1,,False,False,False,fantom,fantom not processed +0x904018c54b2382929b15abaae55136a392af4294000100000000000000000729,0x904018c54b2382929b15abaae55136a392af4294,BPT-BBQ,,Weighted,4.0,"['0x3c1420df122ac809b9d1ba77906f833764d64501', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0xc46066ff87b3861ffc5c26ad2e9705190c22aa56']",0.01875605940407762205662589054843574,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0x91e96deddca930669feb699d16cc3416289ec7aa000100000000000000000748,0x91e96deddca930669feb699d16cc3416289ec7aa,bpt-juku1,,Weighted,4.0,"['0x3c1420df122ac809b9d1ba77906f833764d64501', '0x40df1ae6074c35047bff66675488aa2f9f6384f3', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",0.1002809585496682814118569929759765,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f000000000000000000000718,0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f,bb-rfWFTM,,ERC4626Linear,3.0,"['0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x963ffcd14d471e279245ee1570ad64ca78d8e67e']",80301.05979466568521890375450741269,,False,False,False,fantom,fantom not processed +0x93c7defe51d787010babfdb19504d5a72166e11200020000000000000000041c,0x93c7defe51d787010babfdb19504d5a72166e112,BPT-PILLFTM,,Weighted,1.0,"['0xb66b5d38e183de42f21e92abcaf3c712dd5d6286', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",4.114468663228352860835438310924412,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x980dfa8bd5c4a96e1b762fe8154b8a2045dab2d70002000000000000000003ef,0x980dfa8bd5c4a96e1b762fe8154b8a2045dab2d7,BPT-STABLOR,,Weighted,1.0,"['0x6da14f5acd58dd5c8e486cfa1dc1c550f5c61c1c', '0x8b858eaf095a7337de6f9bc212993338773ca34e']",0.000000000001009745085353984958135478072247005,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a300000000000000000000071c,0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3,bb-rfWETH,,ERC4626Linear,3.0,"['0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0x74b23882a30290451a17c44f4f05243b6b58c76d', '0xc052627bc73117d2cb3569f133419550156bdfa1']",148.5651788903864594748931517196873,,False,False,False,fantom,fantom not processed +0xa02c23525f12c677156d076268f4b44e12e38e4d00000000000000000000076d,0xa02c23525f12c677156d076268f4b44e12e38e4d,bb-rfWFTM,,ERC4626Linear,3.0,"['0xa02c23525f12c677156d076268f4b44e12e38e4d', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x963ffcd14d471e279245ee1570ad64ca78d8e67e']",0,,False,False,False,fantom,fantom not processed +0xa10285f445bcb521f1d623300dc4998b02f11c8f00000000000000000000043b,0xa10285f445bcb521f1d623300dc4998b02f11c8f,BPT-alUSD,800,StablePhantom,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xa10285f445bcb521f1d623300dc4998b02f11c8f', '0xb67fa6defce4042070eb1ae1511dcd6dcc6a532e']",1554.195266204432198372808334676126,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xa55318e5d8b7584b8c0e5d3636545310bf9eeb8f000000000000000000000337,0xa55318e5d8b7584b8c0e5d3636545310bf9eeb8f,bb-yv-MOR-USD,1000,StablePhantom,1.0,"['0x22a6ac883b2f5007486c0d0ebc520747c0702ad5', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xa55318e5d8b7584b8c0e5d3636545310bf9eeb8f']",10.259998428015982388583133688632,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xa5eb9166679a85bdb3eaa2941ed35c8d909484db00020000000000000000052b,0xa5eb9166679a85bdb3eaa2941ed35c8d909484db,BPT-MISO,,Weighted,1.0,"['0xb85a3fc39993b2e7e6874b8700b436c212a00516', '0xff042a6f2d50f00413f9f1ee8f55b2bb7e0cab2c']",0.000000000000002832230821166365765327859100996632,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xa8bcdca345e61bad9bb539933a4009f7a6f4b7ea0000000000000000000006eb,0xa8bcdca345e61bad9bb539933a4009f7a6f4b7ea,bb-rfWFTM,,ERC4626Linear,3.0,"['0xa8bcdca345e61bad9bb539933a4009f7a6f4b7ea', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0xe4a54b6a175cf3f6d7a5e8ab7544c3e6e364dbf9']",0,,False,False,False,fantom,fantom not processed +0xa9a1f2f7407ce27bcef35d04c47e079e7d6d399e0000000000000000000005b6,0xa9a1f2f7407ce27bcef35d04c47e079e7d6d399e,bb-rf-grSFTMx,,Linear,2.0,"['0xa9a1f2f7407ce27bcef35d04c47e079e7d6d399e', '0xab30a4956c7d838234e24f1c3e50082c0607f35f', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",0.5056335460978310953483442092855297,,False,False,False,fantom,fantom not processed +0xa9cb51abfbbf2ca877b290e988b453f8bf4ab630000000000000000000000430,0xa9cb51abfbbf2ca877b290e988b453f8bf4ab630,BPT-tMAI,500,StablePhantom,1.0,"['0x230112fa4b07234769fc92bd616c8c77f4fe0e53', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xa9cb51abfbbf2ca877b290e988b453f8bf4ab630']",0.6845253951829936947548743731885914,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xac6286126044e2ee2589d394a102cb54b7ab15a7000200000000000000000629,0xac6286126044e2ee2589d394a102cb54b7ab15a7,BPT-EQUAL,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x3fd3a0c85b70754efc07ac9ac0cbbdce664865a6']",0.4126241419872408539543574435783497,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xb4aae62a3f10717b9c649ed5ce099d981e5dca8c00000000000000000000042b,0xb4aae62a3f10717b9c649ed5ce099d981e5dca8c,bb-t-TAROT,,Linear,1.0,"['0x74d1d2a851e339b8cb953716445be7e8abdf92f4', '0xb4aae62a3f10717b9c649ed5ce099d981e5dca8c', '0xc5e2b037d30a390e62180970b3aa4e91868764cd']",0.275112880064595541279288835564317,,False,False,False,fantom,fantom not processed +0xb85a3fc39993b2e7e6874b8700b436c212a005160000000000000000000003d0,0xb85a3fc39993b2e7e6874b8700b436c212a00516,bb-rf-TUSD,,Linear,1.0,"['0x9879abdea01a879644185341f7af7d8343556b7a', '0xb85a3fc39993b2e7e6874b8700b436c212a00516', '0xbd81110596651c1b00b6a7d9d93e8831e227eae9']",46.76983629121307384072618258774682,,False,False,False,fantom,fantom not processed +0xb8b0e5e9f8b740b557e7c26fcbc753523a718a870000000000000000000006ee,0xb8b0e5e9f8b740b557e7c26fcbc753523a718a87,bb-rfWETH,,ERC4626Linear,3.0,"['0xb8b0e5e9f8b740b557e7c26fcbc753523a718a87', '0x152d62dccc2c7c7930c4483cc2a24fefd23c24c2', '0x74b23882a30290451a17c44f4f05243b6b58c76d']",1.185886390321433440520993439937484,,False,False,False,fantom,fantom not processed +0xba0e9aea8a7fa1daab4edf244191f2387a4e472b000100000000000000000737,0xba0e9aea8a7fa1daab4edf244191f2387a4e472b,bb-rf-ppara,,Weighted,4.0,"['0x10b620b2dbac4faa7d7ffd71da486f5d44cd86f9', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",5125.241979898354220271631919343969,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xc0064b291bd3d4ba0e44ccfc81bf8e7f7a579cd200000000000000000000042c,0xc0064b291bd3d4ba0e44ccfc81bf8e7f7a579cd2,BPT-sFTMx,100,StablePhantom,1.0,"['0xc0064b291bd3d4ba0e44ccfc81bf8e7f7a579cd2', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",1032391.344594829577302115043454816,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xc385e76e575b2d71eb877c27dcc1608f77fada99000000000000000000000719,0xc385e76e575b2d71eb877c27dcc1608f77fada99,bb-rfUSDC,,ERC4626Linear,3.0,"['0xc385e76e575b2d71eb877c27dcc1608f77fada99', '0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0xd55c59da5872de866e39b1e3af2065330ea8acd6']",1122.257706315793657810382431521254,,False,False,False,fantom,fantom not processed +0xc3bf643799237588b7a6b407b3fc028dd4e037d200000000000000000000022d,0xc3bf643799237588b7a6b407b3fc028dd4e037d2,bb-yv-FTM,,Linear,1.0,"['0x0dec85e74a92c52b7f708c4b10207d9560cefaf0', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",448320.7672832157108983498116820765,,False,False,False,fantom,fantom not processed +0xc46066ff87b3861ffc5c26ad2e9705190c22aa56000000000000000000000727,0xc46066ff87b3861ffc5c26ad2e9705190c22aa56,BPT-STEADY4,2000,ComposableStable,4.0,"['0x442988091cdc18acb8912cd3fe062cda9233f9dc', '0x685056d3a4e574b163d0fa05a78f1b0b3aa04a80', '0xc385e76e575b2d71eb877c27dcc1608f77fada99', '0xc46066ff87b3861ffc5c26ad2e9705190c22aa56']",0.05966920423357909585482419642457366,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0xcf87708ea94916d7ccd13b86ce56006472d806fe000100000000000000000378,0xcf87708ea94916d7ccd13b86ce56006472d806fe,BPT-TP,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.000001004476532502308511187319064719594,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xd20547850f3f80204439eafc942ec4780d32f2bd000000000000000000000667,0xd20547850f3f80204439eafc942ec4780d32f2bd,TEST,,ERC4626Linear,3.0,"['0xd20547850f3f80204439eafc942ec4780d32f2bd', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0xe50300f038c1ce260eafb63a40842416f977d10f']",0,,False,False,False,fantom,fantom not processed +0xd3f155d7f421414dc4177e54e4308274dfa8b9680000000000000000000006ed,0xd3f155d7f421414dc4177e54e4308274dfa8b968,bb-rfDAI,,ERC4626Linear,3.0,"['0xd3f155d7f421414dc4177e54e4308274dfa8b968', '0x5427f192137405e6a4143d1c3321359bab2dbd87', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e']",0.1086343510714746843366920141547636,,False,False,False,fantom,fantom not processed +0xd4500f270880488a481de1b3256a19b3d9c8fd7e000000000000000000000710,0xd4500f270880488a481de1b3256a19b3d9c8fd7e,BPT-STEADY,2000,ComposableStable,4.0,"['0x654def39262548cc958d07c82622e23c52411c82', '0xd3f155d7f421414dc4177e54e4308274dfa8b968', '0xd4500f270880488a481de1b3256a19b3d9c8fd7e']",0.3881926594277127067575794775179034,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0xd69959fa7910ceb3a2d359ed33cb8297670b69370000000000000000000005b2,0xd69959fa7910ceb3a2d359ed33cb8297670b6937,bb-rf-sFTMx,500,ComposableStable,1.0,"['0x55e0499d268858a5e804d7864dc2a6b4ef194c63', '0xd69959fa7910ceb3a2d359ed33cb8297670b6937', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",0.7556995262987707968837950065920855,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xd90dc295d571adc7575563d892aa96ac3811d21c000200000000000000000402,0xd90dc295d571adc7575563d892aa96ac3811d21c,BPT-FXSUSDC,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x7d016eec9c25232b01f23ef992d98ca97fc2af5a']",1.600681791553114625908841273801706,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xdb455199d96d5513d831f0029bd819597bc9d158000200000000000000000728,0xdb455199d96d5513d831f0029bd819597bc9d158,BPT-ESoM,,Weighted,4.0,"['0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc46066ff87b3861ffc5c26ad2e9705190c22aa56']",0.1000458368552571824407555882782067,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0xdc910e2647caae5f63a760b70a2308e1c90d88860000000000000000000006ef,0xdc910e2647caae5f63a760b70a2308e1c90d8886,bb-rfWBTC,,ERC4626Linear,3.0,"['0xdc910e2647caae5f63a760b70a2308e1c90d8886', '0x321162cd933e2be498cd2267a90534a804051b11', '0x660c6ec76bd83f53263681f83cbeb35042dcd1cc']",1.245113421289765362724335602644005,,False,False,False,fantom,fantom not processed +0xdfc65c1f15ad3507754ef0fd4ba67060c108db7e000000000000000000000406,0xdfc65c1f15ad3507754ef0fd4ba67060c108db7e,bb-yv-deiusd,350,StablePhantom,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xde12c7959e1a72bbe8a5f7a1dc8f8eef9ab011b3', '0xdfc65c1f15ad3507754ef0fd4ba67060c108db7e']",33134.89551418729830939529408459287,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xe0042e7ee284ff355622b7660ccb34be114936fa000100000000000000000400,0xe0042e7ee284ff355622b7660ccb34be114936fa,BPT-LUNATIK,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x593ae1d34c8bd7587c11d539e4f42bff242c82af', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.00009064633762770934524814839377923367,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xe191504f9127deb015910768c8a6ac71d185bf91000200000000000000000603,0xe191504f9127deb015910768c8a6ac71d185bf91,BPT-FINE-EQ,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x3fd3a0c85b70754efc07ac9ac0cbbdce664865a6']",0.2379773444018681431622298993011586,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xe1c86d3908dc524aa3555e56adf973de7d3acdba000100000000000000000267,0xe1c86d3908dc524aa3555e56adf973de7d3acdba,BPT-STAB,,Weighted,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x82f0b8b456c1a451378467398982d4834b6829c1', '0x888ef71766ca594ded1f0fa3ae64ed2941740a20', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e', '0xfb98b335551a418cd0737375a2ea0ded62ea213b']",11.78435729731193903206002050604066,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xea256adb68dffd067d27e95f4ad14eba12e86079000100000000000000000586,0xea256adb68dffd067d27e95f4ad14eba12e86079,BPT-YOY-FBE,,Weighted,1.0,"['0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1', '0xfcef8a994209d6916eb2c86cdd2afd60aa6f54b1']",0.000000000003691744572375067477621922222750666,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xea52e5eb660ba64b9ba10ad9ae55a8156aa4d29a0002000000000000000003a2,0xea52e5eb660ba64b9ba10ad9ae55a8156aa4d29a,BPT-DEHCHO,,Weighted,1.0,"['0x2b9d3f168905067d88d93f094c938bacee02b0cb', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561']",0.000000920696699179437910986462467935042,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xeb38aa08bc00ba68237543d2daa1476b4dfd37f800000000000000000000073a,0xeb38aa08bc00ba68237543d2daa1476b4dfd37f8,bb-rf-ankrEth,5,ComposableStable,4.0,"['0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c', '0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0xeb38aa08bc00ba68237543d2daa1476b4dfd37f8']",0.0009823427523356811589424184259452076,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xecc53ac812123d471360ea3d90023318868b56a5000000000000000000000429,0xecc53ac812123d471360ea3d90023318868b56a5,bb-t-spirit,100,StablePhantom,1.0,"['0x49769fe4c796b2775d2e44982cca8cdae36f6671', '0x5cc61a78f164885776aa610fb0fe1257df78e59b', '0xecc53ac812123d471360ea3d90023318868b56a5']",0.2149858588169862091578602325281395,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xefc1bb0b97780cf7c22059aa7c7e7e88a049d21100020000000000000000041b,0xefc1bb0b97780cf7c22059aa7c7e7e88a049d211,BPT-PILLFTM,,Weighted,1.0,"['0xb66b5d38e183de42f21e92abcaf3c712dd5d6286', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf227486361252907cb768142a2f4caed08a3d7cb0001000000000000000005dd,0xf227486361252907cb768142a2f4caed08a3d7cb,BPT-WVB,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x911d1feae99e112b5014cfa60038325d863352f1', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.00000000000003928359688138897685281784415217606,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf47f4d59c863c02cbfa3eefe6771b9c9fbe7b97800000000000000000000072b,0xf47f4d59c863c02cbfa3eefe6771b9c9fbe7b978,bb-rf-usd,2000,ComposableStable,4.0,"['0x442988091cdc18acb8912cd3fe062cda9233f9dc', '0x685056d3a4e574b163d0fa05a78f1b0b3aa04a80', '0xc385e76e575b2d71eb877c27dcc1608f77fada99', '0xf47f4d59c863c02cbfa3eefe6771b9c9fbe7b978']",10114.57797581660348997382470557489,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf51776b52dfb5bf9a7f3ed150c20e78d4dff6e640002000000000000000004e9,0xf51776b52dfb5bf9a7f3ed150c20e78d4dff6e64,BPT-BDAI,,Weighted,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x321162cd933e2be498cd2267a90534a804051b11']",0.0002212283399208543389113880833623284,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf52fc9d5aa16c782c9ba51be0da10f1ccf05c702000100000000000000000394,0xf52fc9d5aa16c782c9ba51be0da10f1ccf05c702,BPT-DZ,,Weighted,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.000000111946579775348056656356975728721,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf7705cd188a8ac806d28f85bdb13a38313e985ff0000000000000000000005b7,0xf7705cd188a8ac806d28f85bdb13a38313e985ff,bb-rf-FTM-sFTMx,500,ComposableStable,1.0,"['0x55e0499d268858a5e804d7864dc2a6b4ef194c63', '0xa9a1f2f7407ce27bcef35d04c47e079e7d6d399e', '0xf7705cd188a8ac806d28f85bdb13a38313e985ff']",0.629160546844217176788537803958752,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf86785fe1cefd5069e6df1b4b54b72b1992003110000000000000000000005b3,0xf86785fe1cefd5069e6df1b4b54b72b199200311,bb-rf-sFTMx,500,ComposableStable,1.0,"['0x55e0499d268858a5e804d7864dc2a6b4ef194c63', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1', '0xf86785fe1cefd5069e6df1b4b54b72b199200311']",0.6783193400786713560423116997402185,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac0000000000000000000003c5,0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac,bb-yv-fUSDT,,Linear,1.0,"['0x049d68029688eabf473097a2fc38ef61633a3c7a', '0x148c05caf1bb09b5670f00d511718f733c54bc4c', '0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac']",4281.784320878540683666651705157868,,False,False,False,fantom,fantom not processed +0xfe48fefea11cceb3bdeb328428f1b25446edad700001000000000000000003d2,0xfe48fefea11cceb3bdeb328428f1b25446edad70,BPT-GOLDRO2,,Weighted,1.0,"['0x2b9d3f168905067d88d93f094c938bacee02b0cb', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xe2d27f06f63d98b8e11b38b5b08a75d0c8dd62b9']",0.000002953629438484890887694036375897862,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xff09914bf3d1f61ff3468cfcc4529665b908afa3000100000000000000000741,0xff09914bf3d1f61ff3468cfcc4529665b908afa3,bpt-grainTrac,,Weighted,4.0,"['0x02838746d9e1413e07ee064fcbada57055417f21', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",24.38611214356228919567821620817303,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xff2753aaba51c9f84689b9bd0a21b3cf380a1cff00000000000000000000072e,0xff2753aaba51c9f84689b9bd0a21b3cf380a1cff,bb-rf-alusd,80,ComposableStable,4.0,"['0xb67fa6defce4042070eb1ae1511dcd6dcc6a532e', '0xf47f4d59c863c02cbfa3eefe6771b9c9fbe7b978', '0xff2753aaba51c9f84689b9bd0a21b3cf380a1cff']",10130.25718856942096734478353279705,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xff600724d670727872a1f7483049326c111d993d000100000000000000000448,0xff600724d670727872a1f7483049326c111d993d,BPT-BRIAN,,Weighted,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x8b858eaf095a7337de6f9bc212993338773ca34e', '0xcde5a11a4acb4ee4c805352cec57e236bdbc3837']",0.000000000008921721361221702400566047607278537,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xffecea216f0d0d08bfe2cf572e03f217f8a2bf1300020000000000000000041a,0xffecea216f0d0d08bfe2cf572e03f217f8a2bf13,BPT-PILLFTM,,Weighted,1.0,"['0xb66b5d38e183de42f21e92abcaf3c712dd5d6286', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x02c9dcb975262719a61f9b40bdf0987ead9add3a000000000000000000000006,0x02c9dcb975262719a61f9b40bdf0987ead9add3a,TEST,,YearnLinear,2.0,"['0x02c9dcb975262719a61f9b40bdf0987ead9add3a', '0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9', '0xdbf7b9f1d2bfba14e42709f84dda3187ee410e38']",0,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x16c9a4d841e88e52b51936106010f27085a529ec00000000000000000000000c,0x16c9a4d841e88e52b51936106010f27085a529ec,bb-o-USDC,,ERC4626Linear,4.0,"['0x16c9a4d841e88e52b51936106010f27085a529ec', '0x3a6789fc7c05a83cfdff5d2f9428ad9868b4ff85', '0xa8ce8aee21bc2a48a5ef670afcc9274c7bbbc035']",1107.358942,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x32be2d0ddeaf3333501b24a28668ce373ba8e763000200000000000000000014,0x32be2d0ddeaf3333501b24a28668ce373ba8e763,B-wstETH BPT/bb-o-USDC,,Weighted,4.0,"['0x16c9a4d841e88e52b51936106010f27085a529ec', '0xe1f2c039a68a216de6dd427be6c60decf405762a']",0.0000000000154660000019235780438078961989982,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x32f03464fdf909fdf3798f87ff3712b10c59bd86000000000000000000000005,0x32f03464fdf909fdf3798f87ff3712b10c59bd86,TEST,,GearboxLinear,2.0,"['0x32f03464fdf909fdf3798f87ff3712b10c59bd86', '0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9', '0x698caed853be9cea96c268f565e2b61d3b2bcda4']",0,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea00000000000000000000000b,0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea,bb-o-USDT,,ERC4626Linear,4.0,"['0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea', '0x1e4a5963abfd975d8c9021ce480b42188849d41d', '0x550d3bb1f77f97e4debb45d4f817d7b9f9a1affb']",3493.655629,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x68a69c596b3839023c0e08d09682314f582314e5000200000000000000000011,0x68a69c596b3839023c0e08d09682314f582314e5,50wstETH-BPT-50-bboUSD,,Weighted,4.0,"['0xe1f2c039a68a216de6dd427be6c60decf405762a', '0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286']",49.22987231117013273341691790555525,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x6f34a44fce1506352a171232163e7716dd073ade000200000000000000000015,0x6f34a44fce1506352a171232163e7716dd073ade,B-rETH-bboUSD,,Weighted,4.0,"['0xb23c20efce6e24acca0cef9b7b7aa196b84ec942', '0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286']",6352.996543535139735960828378394971,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x9e2d87f904862671eb49cb358e74284762cc9f42000200000000000000000013,0x9e2d87f904862671eb49cb358e74284762cc9f42,B-wstETH/bboUSD,,Weighted,4.0,"['0x5d8cff95d7a57c0bf50b30b43c7cc0d52825d4a9', '0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286']",0.00000000004635474427543447746555803128454482,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0xac4b72c01072a52b73ca71105504f1372efcce0d000000000000000000000003,0xac4b72c01072a52b73ca71105504f1372efcce0d,TEST,,ERC4626Linear,4.0,"['0xac4b72c01072a52b73ca71105504f1372efcce0d', '0x0c6052254551eae3ecac77b01dfcf1025418828f', '0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9']",0,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0xbfd65c6160cfd638a85c645e6e6d8acac5dac935000000000000000000000004,0xbfd65c6160cfd638a85c645e6e6d8acac5dac935,TEST,,AaveLinear,5.0,"['0xbfd65c6160cfd638a85c645e6e6d8acac5dac935', '0x4638ab64022927c9bd5947607459d13f57f1551c', '0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9']",0,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb28600000000000000000000000d,0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286,bb-o-USD,3000,ComposableStable,4.0,"['0x16c9a4d841e88e52b51936106010f27085a529ec', '0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea', '0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286']",4576.256689732391188863888902474363,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,pool is already in recovery mode diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/1-CSP3.0-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/1-CSP3.0-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json new file mode 100644 index 000000000..d88ace634 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/1-CSP3.0-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json @@ -0,0 +1,215 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6", + "transactions": [ + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x133d241F225750D2c92948E464A5a80111920331]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x133d241F225750D2c92948E464A5a80111920331", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "101", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x50Cf90B954958480b8DF7958A9E965752F627124]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x50Cf90B954958480b8DF7958A9E965752F627124", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x99c88AD7dc566616548adde8ED3eFfa730eB6C34]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/10-CSP3.0-0x09Df1626110803C7b3b07085Ef1E053494155089.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/10-CSP3.0-0x09Df1626110803C7b3b07085Ef1E053494155089.json new file mode 100644 index 000000000..11f3dd638 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/10-CSP3.0-0x09Df1626110803C7b3b07085Ef1E053494155089.json @@ -0,0 +1,103 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "transactions": [ + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "501", + "endTime": "1692921600" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "286", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/100-CSP3.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/100-CSP3.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json new file mode 100644 index 000000000..a4cbab3a4 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/100-CSP3.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "transactions": [ + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/100-CSP4.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/100-CSP4.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json new file mode 100644 index 000000000..e907c1328 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/100-CSP4.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "transactions": [ + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "11", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/1101-CSP4.0-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/1101-CSP4.0-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json new file mode 100644 index 000000000..7b6a258c1 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/1101-CSP4.0-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "transactions": [ + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1501", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/137-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/137-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json new file mode 100644 index 000000000..b50b97cef --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/137-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "transactions": [ + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/42161-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/42161-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json new file mode 100644 index 000000000..651985dad --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/fee_amp/42161-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json @@ -0,0 +1,103 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "transactions": [ + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "286", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/killGauges/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/killGauges/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..e7f63e04a --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/killGauges/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,1090 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "killGauge for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x06d27c0FE5AbF6020bf56E47c72Ca002dD5d9f54", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x29488df9253171AcD0a0598FDdA92C5F6E767a38", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9e3f4FB69058244066801404e50889592d33cA11", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x454eb2f12242397688DbfdA241487e67ed80507a", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x19A13793af96f534F0027b4b6a3eB699647368e7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE35f0152f0d49fE8E386E5c42B656321ffB0d477", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x39dF6e857bdf7387273C43eBb373b9D74F467d35", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5669736FD1dF3572f9D519FcCf7536A750CFAc62", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x882f961Def46deadAcf31798B295834a5b6d0c86", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21eC388000B5BA5D9e3DF3848EA0c1f58e054Af7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3eFd3E18504dC213188Ed2b694F886A305a6e5ed", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x639F4583E505e9E0A16C5D90E1AF61b47415A3A9", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe9E6E9597123034Fa3fc73D482852e18EdF9c282", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x224989bC31286f0E6Dd6F32C0E475BbD4579A976", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5c0e6d132C53DA7F6e958EdF13db0FA02C5b2eC6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb7b9B9D35e7F9E324C762235FB69848175C03A19", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x735B275a567F6c921c82F83D4515beC1F72038D3", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdb218DC1394BbD787bb059dBd9F7E41063e16374", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x95Ee4c90aC8AaFbAe0DfE18F08a290b59eacbc1b", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6f06b425e1bc11FC486C308c22e503d188525F06", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1EcB261dc3496675c54514e44deA2a5115aEcb38", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xEE3cc827EF3e7a00a728Fd52199cd5A6e336361D", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7a4e71a8A33d3b385279079c503ca93905dd553e", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3A7Ed8916Ebb9131966b9b3af3cd8B9adcc53559", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x774D0F67DcFA5568cA435c70fbA272C64352d859", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE41736b4e78be41Bd03EbAf8F86EA493C6e9EA96", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xCe3a024bAF36C91d315722B093928020a4F56622", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x80aed5C5C683FEC86817C98da334DD72424E7297", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x90DDAa2A6D192Db2F47195d847626F94E940c7Ac", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x175FAb9C7aB502B9E76E7fca0C9Da618387EBAdA", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBc771929359B1A6386801705e8D185205d8f1CBF", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb12ADA23eE766bd6b596E2bE556ea2046758b87c", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2Cb5EB92314bf3BFE7977e059A72A806d353fd21", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc85679E41f1F98E694D9F8983fdD484F98F2eB02", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..5c0e203c0 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,147 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0x1bd2F176a812e312077BcA87e37c08432Bb09F3e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4C81255Cc9eD7062180ea99962fE05aC0D57350B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4CbdE5C4B4B53EBE4aF4adB85404725985406163", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B692f571b256140a39a34676BffA30634c586e1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc2B021133D1b0cF07dba696fd5DD89338428225B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE8C56405Bc405840154d9b572927F4197D110dE1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json new file mode 100644 index 000000000..0ee62cd74 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json @@ -0,0 +1,92 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "transactions": [ + { + "to": "0x5470F064a19C65263B3033DA3A6124fdf0a9Bab8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62cF35DB540152e94936dE63eFc90d880D4e241B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7FE29a818438Ed2759e30f65c2302295711d66Fc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbec621c9AB4cEDDCc2A157CA9B5C475fAB65f6a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCb89E89d798a4563D1599ea5508282e13B225b52", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCd7B2232B7435595bBc7FD7962f1f352fc2cC61a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd1aF4974fcC995Cf36ba40b189caA92964A9126d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json new file mode 100644 index 000000000..435d9aae3 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json @@ -0,0 +1,37 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "transactions": [ + { + "to": "0xB95829AdbaCd8Af89E291DeE78Bc09E24De51d6b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json new file mode 100644 index 000000000..d6991af9b --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json @@ -0,0 +1,125 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "transactions": [ + { + "to": "0x03090a9811181A2AfE830a3a0B467698CcF3a8b1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2645B13FD2c5295296e94A76280B968bDcbbDfED", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x402cFDb7781fa85d52F425352661128250B79e12", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4ae3661aFa119892f0cc8C43EdaF6A94989Ac171", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9321e2250767D79bAb5aA06DAa8606A2B3B7B4C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8BF1C584519bE0184311C48AdBDc4c15cb2E8C1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAB269164a10faB22BC87c39946da06C870B172D6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC2CaE8D2f78A4a8F92f20dbe74042Cd0a8d5Af3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb266aC3b7C98D7Bcb28731Dac0eF42DbA1b276bE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF42ED61450458eE4620F5eF4f29adB25a6Ef0fb6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json new file mode 100644 index 000000000..f7c84ba23 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json @@ -0,0 +1,158 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "transactions": [ + { + "to": "0x1d7F0d7c8791210c6F13140939Ad61969562afc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1e550b7764Da9638FDD32c8a701364dE31f45eE8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x418dE00Ae109e6f874D872658767866d680eAA19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45C4D1376943Ab28802B995aCfFC04903Eb5223f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9ceBf13BB702F253AbF1579294694A1eDAD00EAA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1ea76C42b2938CfA9abea12357881006c528513", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA50f89e9f439Fde2a6Fe05883721a00475da3C45", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8af146d79aC0BB981E4e0d8b788Ec5711b1d5d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbBF9d705b75F408CFCaEE91dA32966124d2c6F7D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBe0f30217BE1e981aDD883848D0773A86d2d2CD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCAf7aC72F5866B9558f4547e9c5e366A2C851c9A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd6d20527C7B0669989ee082b9D3A1c63aF742290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json new file mode 100644 index 000000000..755fdbf71 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/pausePools/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "transactions": [ + { + "to": "0x054E7B0c73E1eE5AED6864Fa511658FC2b54BcaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA154009870E9B6431305F19b09F9cfD7284d4E7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa1D14d922a575232066520EDA11E27760946c991", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEcE571847897fD61E764D455DC15cf1cD9dE8d6F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..15ee1b39e --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,976 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "set swap enabled to false on the subgraph for bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x02d928e68d8f10c0358566152677db51e1e2dc8c", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x04248aabca09e9a1a3d5129a7ba05b7f17de7684", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1bd2f176a812e312077bca87e37c08432bb09f3e", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x26c2b83fc8535deead276f5cc3ad9c1a2192e027", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x41503c9d499ddbd1dcdf818a1b05e9774203bf46", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb2", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4c81255cc9ed7062180ea99962fe05ac0d57350b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4cbde5c4b4b53ebe4af4adb85404725985406163", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x639883476960a23b38579acfd7d71561a0f408cf", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9001cbbd96f54a658ff4e6e65ab564ded76a5431", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1697f9af0875b63ddc472d6eebada8c1fab8568", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xae8535c23afedda9304b03c68a3563b75fc8f92b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbb6881874825e60e1160416d6c426eae65f2459e", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc2b021133d1b0cf07dba696fd5dd89338428225b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc443c15033fcb6cf72cc24f1bda0db070ddd9786", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc50d4347209f285247bda8a09fc1c12ce42031c3", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcfae6e251369467f465f13836ac8135bd42f8a56", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe0fcbf4d98f0ad982db260f86cf28b49845403c5", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e1", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe8c56405bc405840154d9b572927f4197d110de1", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xeb567dde03f3da7fe185bdacd5ab495ab220769d", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf57c794f42da72b38c8f610ff3b5e8502e48cbde", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json new file mode 100644 index 000000000..3e28c4f1b --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json @@ -0,0 +1,1317 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "set swap enabled to false on the subgraph for bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "transactions": [ + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x03090a9811181a2afe830a3a0b467698ccf3a8b1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x04b54ea92d73de2d62d651db7d9778f0c49157d8", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x0bc54e914f53f98d16035f4f0d948f3e09c2fac0", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1379b816b9be611431d693290289c204720ca56d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x16b98793f3e6a17d15931a2c9f98fe28d1c845a1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x216690738aac4aa0c4770253ca26a28f0115c595", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x216d6db0c28204014618482c369d7fbf0a8f3232", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x230ecdb2a7cee56d6889965a023aa0473d6da507", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x25e57f4612912614e6c99616bd2abb9b5ae71e99", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x2645b13fd2c5295296e94a76280b968bdcbbdfed", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x3efb91c4f9b103ee45885695c67794591916f34e", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x402cfdb7781fa85d52f425352661128250b79e12", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x63ce19ccd39930725b8a3d2733627804718ab83d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x64efad69f099813021b41f4cac6e749fd55e188f", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6c8c7fc50247a47038015eb1fd5dc105d05dafba", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x89b28a9494589b09dbccb69911c189f74fdadc5a", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x8fd39252d683fdb60bddd4df4b53c9380b496d59", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xab269164a10fab22bc87c39946da06c870b172d6", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb0c830dceb4ef55a60192472c20c8bf19df03488", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb371aa09f5a110ab69b39a84b5469d29f9b22b76", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd4accb350f9cf59fe3cf7a5ee6ed9ace6a568ea9", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xde0a77ab6689b980c30306b10f9131a007e1af81", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe2272cddb2cc408e79e02a73d1db9acc24a843d5", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe78b25c06db117fdf8f98583cdaaa6c92b79e917", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xed35f28f837e96f81240ebb82e0e3f518c7e8a2f", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf28f17be00f8ca3c9b7f66a4aad5513757fb3341", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json new file mode 100644 index 000000000..652003076 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json @@ -0,0 +1,1131 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "set swap enabled to false on the subgraph for bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "transactions": [ + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x00fcd3d55085e998e291a0005cedecf58ac14c40", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1d7f0d7c8791210c6f13140939ad61969562afc2", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x36942963e3b6f37ecc45a4e72349558514233f00", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x40af308e3d07ec769d85eb80afb116525ff4ac99", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x418de00ae109e6f874d872658767866d680eaa19", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x45c4d1376943ab28802b995acffc04903eb5223f", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4689122d360c4725d244c5cfea22861333d862e6", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4739e50b59b552d490d3fdc60d200977a38510c0", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x49a0e3334496442a9706e481617724e7e37eaa08", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x567ecfcb22205d279bb8eed3e066989902bf03d5", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x585d95df0231fa08aeee35ff0c16b92fd0ecdc33", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5ef36da78e4e256d82bf3723e821104ea3b6a069", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6cb787a419c3e6ee2e9ff365856c29cd10659113", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x970712708a08e8fb152be4d81b2dc586923f5369", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9cebf13bb702f253abf1579294694a1edad00eaa", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9e34631547adcf2f8cefa0f5f223955c7b137571", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1ea76c42b2938cfa9abea12357881006c528513", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa50f89e9f439fde2a6fe05883721a00475da3c45", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xad28940024117b442a9efb6d0f25c8b59e1c950b", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbbf9d705b75f408cfcaee91da32966124d2c6f7d", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbd724eb087d4cc0f61a5fed1fffaf937937e14de", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbe0f30217be1e981add883848d0773a86d2d2cd4", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc46be4b8bb6b5a3d3120660efae9c5416318ed40", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc69771058481551261709d8db44977e9afde6450", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcba9ff45cfb9ce238afde32b0148eb82cbe63562", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcf8b555b7754556cf2ac2165e77ee23ed8517d79", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd0dc20e6342db2de82692b8dc842301ff9121805", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd3d5d45f4edf82ba0dfaf061d230766032a10e07", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xee02583596aee94cccb7e8ccd3921d955f17982a", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xff8f84e8c87532af96aef5582ee451572233678b", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json new file mode 100644 index 000000000..3deb02538 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/subgraphSwapEnabled/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json @@ -0,0 +1,263 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "set swap enabled to false on the subgraph for bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "transactions": [ + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa154009870e9b6431305f19b09f9cfd7284d4e7a", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1d14d922a575232066520eda11e27760946c991", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xea67626e1f0b59e0d172a04f5702ef90bcdf440c", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xeb496161099d45b3ea4892408ef745c6182eb56e", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xece571847897fd61e764d455dc15cf1cd9de8d6f", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..eab83596d --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,167 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692662334173, + "meta": { + "name": "Wrapper implementation upgrade - Mainnet", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x59463bb67ddd04fe58ed291ba36c26d99a39fbc6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xc9D27bed539E8B631E31EAff830EC5413DC5740e" + } + }, + { + "to": "0x098256c06ab24f5655c5506a6488781bd711c14b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x6cCAB5e9F715d75C61c84d30A3C8bF86F38F6c46" + } + }, + { + "to": "0xa7e0e66f38b8ad8343cff67118c1f33e827d1455", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x344061d3d999025546CFDb0D34A20bb47cC8A94c" + } + }, + { + "to": "0x57d20c946a7a3812a7225b881cdcd8431d23431c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x9766880FA6b1B8cB919d12072b2B3f54BE575993" + } + }, + { + "to": "0x03928473f25bb2da6bc880b07ecbadc636822264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xbdc8719b6Db95fd4ba1036d3491ed2175D681F22" + } + }, + { + "to": "0x02c2d189b45ce213a40097b62d311cf0dd16ec92", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xbdc8719b6Db95fd4ba1036d3491ed2175D681F22" + } + }, + { + "to": "0x65799b9fd4206cdaa4a1db79254fcbc2fd2ffee6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xbdc8719b6Db95fd4ba1036d3491ed2175D681F22" + } + }, + { + "to": "0xeb708639e8e518b86a916db3685f90216b1c1c67", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xbdc8719b6Db95fd4ba1036d3491ed2175D681F22" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..ef1bbfc8d --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/137-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,110 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1692662334173, + "meta": { + "name": "Wrapper implementation upgrade - Polygon (Maxis)", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xa5bbf0f46b9dc8a43147862ba35c8134eb45f1f5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x95585bF2AB752b95e5D19408beDF41495906589A" + } + }, + { + "to": "0xac69e38ed4298490906a3f8d84aefe883f3e86b5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x77A2b7529f03FDc256ba45F9D8d9BF4bc5B80699" + } + }, + { + "to": "0xdb6df721a6e7fdb97363079b01f107860ac156f9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x813d0146fBd44063195C110e64cf337525Fb549b" + } + }, + { + "to": "0x715d73a88f2f0115d87cfe5e0f25d756b2f9679f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x6B5c2ecC6c4447C9BCfBf52298e67cF0B2ecC44F" + } + }, + { + "to": "0x0d6135b2cfbae3b1c58368a93b855fa54fa5aae1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x318eCbd94D6E4d27A0eD88F641D26B7BEa304747" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..98d59b2ef --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,110 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1692662334173, + "meta": { + "name": "Wrapper implementation upgrade - Polygon (Balancer Governance)", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x31f5ac91804a4c0b54c0243789df5208993235a1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x289C8B513f70e4e925c723eb8F446A3d3DE28abb" + } + }, + { + "to": "0xd08b78b11df105d2861568959fca28e30c91cf68", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x289C8B513f70e4e925c723eb8F446A3d3DE28abb" + } + }, + { + "to": "0xfcf5d4b313e06bb3628eb4fe73320e94039dc4b7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x289C8B513f70e4e925c723eb8F446A3d3DE28abb" + } + }, + { + "to": "0xc04296aa4534f5a3bab2d948705bc89317b2f1ed", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x289C8B513f70e4e925c723eb8F446A3d3DE28abb" + } + }, + { + "to": "0x6f3913333f2d4b7b01d17bedbce1e4c758b94465", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x289C8B513f70e4e925c723eb8F446A3d3DE28abb" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..2f1dfb8b4 --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,129 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1692662334173, + "meta": { + "name": "Wrapper implementation upgrade - Arbitrum (Balancer Governance)", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5f756955fc1a43d658f4291cf69af16077b5326c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xae6096d2561fb0b8d7ff3baab21ba7daa31f15b1" + } + }, + { + "to": "0x3a301e7917689b8e8a19498b8a28fc912583490c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xae6096d2561fb0b8d7ff3baab21ba7daa31f15b1" + } + }, + { + "to": "0x426e8778bf7f54b0e4fc703dcca6f26a4e5b71de", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xae6096d2561fb0b8d7ff3baab21ba7daa31f15b1" + } + }, + { + "to": "0x18468b6eba332285c6d9bb03fe7fb52e108c4596", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xae6096d2561fb0b8d7ff3baab21ba7daa31f15b1" + } + }, + { + "to": "0xbde67e089886ec0e615d6f054bc6f746189a3d56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xae6096d2561fb0b8d7ff3baab21ba7daa31f15b1" + } + }, + { + "to": "0x8b5541b773dd781852940490b0c3dc1a8cdb6a87", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xae6096d2561fb0b8d7ff3baab21ba7daa31f15b1" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..71076704d --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/42161-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1692662334173, + "meta": { + "name": "Wrapper implementation upgrade - Arbitrum", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x3c7680dfe7f732ca0279c39ff30fe2eafdae49db", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x3B01AAcE58EB701ca217850734A967799772C1E4" + } + }, + { + "to": "0xe719aef17468c7e10c0c205be62c990754dff7e5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x247642e1a4c14C3023cDb7941564B17a714D7b17" + } + }, + { + "to": "0x345a864ac644c82c2d649491c905c71f240700b2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xF8Bba6e12e150Cc8d97433A7f0300a08Dbb8EDb0" + } + }, + { + "to": "0x18c100415988bef4354effad1188d1c22041b046", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0xE1a7e0385e6E292A7c5576BecF85f5B7929E70e8" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..e44910b3c --- /dev/null +++ b/BIPs/00notGov/08-2023-linear-pools-vulnerability/wrapperUpgrades/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,72 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1692662334173, + "meta": { + "name": "Wrapper implementation upgrade - Avalanche", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xa291ae608d8854cdbf9838e28e9badcf10181669", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x1dB0d1d7B4e8CAB3873fb32B6D3c2FC78134F99C" + } + }, + { + "to": "0x759a2e28d4c3ad394d3125d5ab75a6a5d6782fd9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x1dB0d1d7B4e8CAB3873fb32B6D3c2FC78134F99C" + } + }, + { + "to": "0xe7839ea8ea8543c7f5d9c9d7269c661904729fe7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "0x1dB0d1d7B4e8CAB3873fb32B6D3c2FC78134F99C" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00notGov/08-2023-mitigation/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..fe0b41ac4 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/cacheDuration/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,515 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2d8a0dc8170e2251ed6ab59cc43a981d1e05511d06a8c65226eb06278e3ae231\",\"0x950f47d4c7cbd9a3b68b5ab354673981827bd5e9a7b8e5cf4057f8bd547b675f\",\"0xe4814396e9db5314024c424f43d6a129829efad6c545df373b226431cbcadbd3\"]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x02D928E68D8F10C0358566152677Db51E1e2Dc8C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xbc0f2372008005471874e426e86ccfae7b4de79d", + "duration": "0" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xdba274b4d04097b90a72b62467d828cefd708037", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x804cdb9116a10bb78768d3252355a1b18067bf8f", + "duration": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9210f1204b5a24742eba12f710636d76240df3d0", + "duration": "0" + } + }, + { + "to": "0x9001cBbD96F54a658FF4e6E65AB564DED76a5431", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4a82b580365cff9b146281ab72500957a849abdc", + "duration": "0" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe03af00fabe8401560c1ff7d242d622a5b601573", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x2f4eb100552ef93840d5adc30560e5513dfffacb", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x82698aecc9e28e9bb27608bd52cf57f704bd1b83", + "duration": "0" + } + }, + { + "to": "0xA13a9247ea42D743238089903570127DdA72fE44", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xae37d54ae477268b9997d4161b96b8200755935c", + "duration": "0" + } + }, + { + "to": "0xE0fCBf4d98F0aD982DB260f86cf28b49845403C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xa1697f9af0875b63ddc472d6eebada8c1fab8568", + "duration": "0" + } + }, + { + "to": "0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json b/BIPs/00notGov/08-2023-mitigation/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json new file mode 100644 index 000000000..f2b86521c --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/cacheDuration/10-0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513.json @@ -0,0 +1,290 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513", + "transactions": [ + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877", + "duration": "0" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb96c5bada4bf6a70e71795a3197ba94751dae2db", + "duration": "0" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c", + "duration": "0" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x88d07558470484c03d3bb44c3ecc36cafcf43253", + "duration": "0" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x888a6195d42a95e80d81e1c506172772a80b80bc", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4", + "duration": "0" + } + }, + { + "to": "0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71", + "duration": "0" + } + }, + { + "to": "0xb1C9aC57594e9B1EC0f3787D9f6744EF4CB0A024", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x88d07558470484c03d3bb44c3ecc36cafcf43253", + "duration": "0" + } + }, + { + "to": "0xb1C9aC57594e9B1EC0f3787D9f6744EF4CB0A024", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809", + "duration": "0" + } + }, + { + "to": "0xde45F101250f2ca1c0f8adFC172576d10c12072D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xdd89c7cd0613c1557b2daac6ae663282900204f1", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00notGov/08-2023-mitigation/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..ca5c3a9c1 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/cacheDuration/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x02c2a0f6c6251ab0610c2548b20e0967cc5ae385cd1109cf5f3d9ce72f722ee3\",\"0xa4cf3b6e755d1c52bedde1ca3a92b562e8fec558b3036cd5eeb2c17ce0cc2c6b\"]", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xfedb19ec000d38d92af4b21436870f115db22725", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x41211bba6d37f5a74b22e667533f080c7c7f3f13", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xd16f72b02da5f51231fde542a8b9e2777a478c88", + "duration": "0" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json b/BIPs/00notGov/08-2023-mitigation/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json new file mode 100644 index 000000000..742990efb --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/cacheDuration/1101-0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0xb56db1d3fcc3ae3614e049f605dd7f4d5d9e33d63253ac144e2bcc2521e8fb7d\"]", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x16c9a4d841e88e52b51936106010f27085a529ec", + "duration": "0" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00notGov/08-2023-mitigation/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..4383fd0f8 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/cacheDuration/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,415 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0xa8ac31ec9b3ba2ce31c0ddb542ed7e55340831bdb845c17cf097fd61fc7aef25\",\"0xc5be0c5701dc762d9ff25d816978ed0e0ee5e199211676c540ed08b6b4d6a4ff\"]", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x216690738Aac4aa0C4770253CA26a28f0115c595", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x178e029173417b1f9c8bc16dcec6f697bc323746", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xf93579002dbe8046c43fefe86ec78b1112247bb8", + "duration": "0" + } + }, + { + "to": "0x48e6B98ef6329f8f0A30eBB8c7C960330d648085", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6", + "duration": "0" + } + }, + { + "to": "0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "duration": "0" + } + }, + { + "to": "0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb371aa09f5a110ab69b39a84b5469d29f9b22b76", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x89b28a9494589b09dbccb69911c189f74fdadc5a", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84", + "duration": "0" + } + }, + { + "to": "0xb371aA09F5a110AB69b39A84B5469d29f9b22B76", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xae646817e458c0be890b81e8d880206710e3c44e", + "duration": "0" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xB54b2125b711cD183EDD3DD09433439D53961652", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x48e6b98ef6329f8f0a30ebb8c7c960330d648085", + "duration": "0" + } + }, + { + "to": "0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "duration": "0" + } + }, + { + "to": "0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00notGov/08-2023-mitigation/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..13b99995f --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/cacheDuration/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,315 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "setTokenRateCacheDuration for affected meta stable pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x05c66da9aa7f126e8dc8688cfac90477d2313f3e95f1f687a854ebbd04b1c707\",\"0x709836a8faadee3ce9004075ac200f1094b93ca8afdf8642906fbc6712f3e3f0\"]", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x5bae72b75caab1f260d21bc028c630140607d6e8", + "duration": "0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x894c82800526e0391e709c0983a5aea3718b7f6d", + "duration": "0" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xe1fb90d0d3b47e551d494d7ebe8f209753526b01", + "duration": "0" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x117a3d474976274b37b7b94af5dcade5c90c6e85", + "duration": "0" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x284eb68520c8fa83361c1a3a5910aec7f873c18b", + "duration": "0" + } + }, + { + "to": "0x567ECfCB22205D279BB8Eed3E066989902bF03D5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xee02583596aee94cccb7e8ccd3921d955f17982a", + "duration": "0" + } + }, + { + "to": "0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x4739e50b59b552d490d3fdc60d200977a38510c0", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "duration": "0" + } + }, + { + "to": "0xEE02583596AEE94ccCB7e8ccd3921d955f17982A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0x9e34631547adcf2f8cefa0f5f223955c7b137571", + "duration": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..96aa1f2b8 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,370 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a\",\"0x650376aebfe02b35334f3ae96d46b9e5659baa84220d58312d9d2e2920ec9f1d\",\"0xa32a74d0340eda2bd1a7c5ec04d47e7a95f472e66d159ecf6e21d957a5a003a9\",\"0xc4d951f4e2b18951a2744f120e996aed880151f929157b787c7191357e83e8eb\",\"0xd3f06ece971762157e9c58797051a03bb62d731bdf05ea4de799b7223f9463c2\"]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x0A0FB4ff697dE5ac5B6770CD8eE1B72AF80b57CF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0AFBd58bEcA09545e4fb67772faf3858e610bcD0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x126e7643235ec0ab9c103c507642dC3F4cA23C66", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x159cB00338fB63f263fd6f621Df619cEf71DA954", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x246ffB4d928E394a02E45761FecdbA6C2e79B8eB", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2FF1A9Dbdacd55297452cFD8a4d94724Bc22a5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x331d50e0b00fc1C32742F151E56B9B616227E23E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x335d1709D4dA9aca59d16328db5Cd4eA66BFe06b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x395d8A1D9aD82B5ABE558F8AbbFe183B27138af4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3BB22Fc9033b802F2AC47c18885F63476F158aFC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4A82b580365Cff9B146281Ab72500957a849ABDC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x60D604890feaa0b5460B28A424407c24fe89374a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6667c6fa9f2b3Fc1Cc8D85320b62703d938E4385", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7337224D59CB16C2Dc6938CD45A7b2c60C865D6A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8E6eC57A822c2F527F2Df7C7D7D361dF3E7530a1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B1c8407a360443A9E5ECA004713E4088FAB8AC0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1697F9Af0875B63DdC472d6EeBADa8C1fAB8568", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa8b103A10A94f4f2D7Ed2FdCd5545E8075573307", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbc0F2372008005471874e426e86CCFae7B4De79d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbFA413A2ff0F20456d57B643746133F54bFE0cd2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcbFA4532D8B2ade2C261D3DD5ef2A2284f792692", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD6E355036f41dC261B3f1ed3Bbc6003E87AAdB4f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDbA274B4D04097b90A72b62467d828cEFD708037", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDc063deAfcE952160eC112FA382ac206305657e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDEC02e6642e2c999aF429F5cE944653CAd15e093", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe03aF00faBe8401560c1FF7d242d622a5b601573", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF22ff21e17157340575158aD7394E068048dd98B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF71d0774B214c4cf51E33Eb3d30Ef98132e4DBaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFD11CCdBdb7AB91Cb9427A6d6BF570C95876d195", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfeF969638C52899f91781f1Be594aF6f40B99BAd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..02643b055 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,477 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0x0d05Aac44aC7Dd3c7ba5d50Be93EB884A057d234", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0DA692Ac0611397027c91E559cFD482C4197e403", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11839D635e2F0270DA37e8ef4324D4d5d5432957", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1bd2F176a812e312077BcA87e37c08432Bb09F3e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x26c2B83FC8535DeEaD276f5Cc3ad9c1a2192E027", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2B218683178d029BAB6c9789b1073aA6c96E5176", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2e52c64FD319E380cDbCFC4577eA1Fda558a32e4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2F4eb100552ef93840d5aDC30560E5513DFfFACb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3035917bE42aF437CBdD774Be26B9EC90a2BD677", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3CdAE4f12A67ba563499e102f309c73213cB241c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3f7a7fd7F214bE45EC26820Fd01aC3bE4fC75aa7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3fCb7085B8F2F473F80bF6D879cAe99eA4DE9344", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4228290eE9cab692938Ff0b4ba303FBCDB68e9F2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x454Ed96955d04D2f5cDD05E0Fd1C77975bFE5307", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4C81255Cc9eD7062180ea99962fE05aC0D57350B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4CbdE5C4B4B53EBE4aF4adB85404725985406163", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4cE277Df0FeB5B4d07a0ca2ADCf5326E4005239d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x639883476960a23b38579acfd7D71561A0f408Cf", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6a1eB2e9B45e772F55bd9a34659A04B6F75Da687", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6C56E72c551B5aC4Bf54A620A76077cA768C8FE4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x74CBfAF94A3577c539a9dCEE9870A6349a33b34f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x813E3fE1761f714c502d1d2d3a7CCEB33f37F59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x82698aeCc9E28e9Bb27608Bd52cF57f704BD1B83", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9516a2d25958EdB8da246a320f2c7d94A0DBe25d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x959216BB492B2efa72b15B7AAcEa5B5C984c3ccA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B692f571b256140a39a34676BffA30634c586e1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9d7f992c900FbeA0EC314Bdd71b7cC1becF76A33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC5B4EF7eDe2F2843a704E96dcAA637F4BA3Dc3f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae37D54Ae477268B9997d4161B96b8200755935c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB841B062eA8CCf5C4cb78032e91dE4aE87556042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbB6881874825E60e1160416D6C426eae65f2459E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc2B021133D1b0cF07dba696fd5DD89338428225B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc50d4347209F285247BDa8A09Fc1C12CE42031c3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcfAE6E251369467F465f13836Ac8135bd42f8A56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE8C56405Bc405840154d9b572927F4197D110dE1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfa24A90A3F2bBE5FEEA92B95cD0d14Ce709649f9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json new file mode 100644 index 000000000..77737db12 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/10-0x043f9687842771b3dF8852c1E9801DCAeED3f6bc.json @@ -0,0 +1,370 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1405e4b6cd75de6c077cce8e10034aaac128c79249dbc582eb25e65516444573\",\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x45624278c719c9a0d0ef7cd28f5f8f29556927bff3a5854b4edb4d4c5f459545\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\",\"0xc546cdd0e34ec6c7ca0a53f05aab7c8e4e8b9896e1f450d49bd5eb4f90cef6bd\"]", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + }, + { + "to": "0x055A4Cfa8CD9ced1D7Bc9Ae5eb46c404C130E46D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x15873081c0Aa67AD5C5DbA362169d352E2a128a2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x24D9ff56fb09E0F02E74407B12F3264C6e520b5E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3b2ff5888F1bDEDBB45ECe9f1C628356388d22cC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x55b1F937B1335Be355C82e207FD437182c986Ba1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62eC8b26C08Ffe504F22390A65e6E3c1e45E9877", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6af3737F6d58Ae8Bcb9f2B597125D37244596E59", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x75062a04a8CC587c588a6bb50bd0cC009da483DC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7e9250cC13559eB50536859e8C076Ef53e275Fb3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8003eec4aDD35C6D23eB1Ef61b4fA6bbBB23a41a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x888a6195D42a95e80D81e1c506172772a80b80Bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8fE33d737484CA194dedF64AaFa8485327fC5372", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9253d7e1B42fa01eDE2c53f3A21b3B4d13239cD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1a77E5d7D769BFBB790a08EC976dc738bF795B9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA4e597c1bD01859B393b124ce18427Aa4426A871", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB85245929dc65B5EDdb56c4b4E84b20BcE69Db35", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb96C5bAda4Bf6A70E71795a3197BA94751DAE2DB", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xba7834bb3cd2DB888E6A06Fb45E82b4225Cd0C71", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBEF1ccAaDA458a570C37B11A8872988bA1E4FDb9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xC0d7013A05860271a1EDB52415CF74BC85B2AcE7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCE9329f138CD6319FcFBd8704E6AE50B6bb04F31", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd0d334B6CfD77AcC94bAB28C7783982387856449", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd32F78F5aE235269c6d2cABBD26A57fF9FD62967", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD3e47cbdB2A9C1B1DEB857c6415b87fCE63a4bf5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDc2007D9e9A33f50630F26069FAab69c25f7758C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDD89C7cd0613C1557B2DaAC6Ae663282900204f1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEdcfaF390906a8f91fb35B7bAC23f3111dBaEe1C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json new file mode 100644 index 000000000..5f53039af --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json @@ -0,0 +1,301 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "transactions": [ + { + "to": "0x098f32D98d0D64Dba199FC1923D3BF4192E78719", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x20715545C15C76461861Cb0D6ba96929766D05A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2DA61Ef3Cdcb97efb0f7099c02527fabFe94Dee5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2e2b8b82123789D895fD79913F6dFa51F5b5a0e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x34557eF500Bfc060B8e3f2DA58EF725Bb7D32202", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x362715c164D606682c4Ea7E479633E419d9345Eb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3C74C4eD512050Eb843d89fb9DcD5EBb4668EB6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3e9cBFfd270AE67aBB09D28988e7e785498c7373", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45d37982784F022A9864748b4E8750e1e7019604", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x48aCE81C09382bfC08eD102e7eadd37e3B049752", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5470F064a19C65263B3033DA3A6124fdf0a9Bab8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5936497ffE0dBA0eF272D6301D65c0122862971A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5Bdd8C19b44C3e4a15305601A2C9841bDE9366F0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5D8955a2068EE6d1F7aB17640301219afa4B526f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62cF35DB540152e94936dE63eFc90d880D4e241B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x72D6df381cAC8C2283c0B13fe5262A1F5e8e8d1b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7FE29a818438Ed2759e30f65c2302295711d66Fc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8025586aC5fB265A23B9492E7414BecCc2059ec3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8a2872fd28F42BD9F6559907235E83FbF4167f48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8b6d3aA69c1cF47677281691b1aBf3831BA1329d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA5D4802B4ce6b745B0C9e1b4a79c093D197869c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbec621c9AB4cEDDCc2A157CA9B5C475fAB65f6a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCb89E89d798a4563D1599ea5508282e13B225b52", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCd7B2232B7435595bBc7FD7962f1f352fc2cC61a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd1aF4974fcC995Cf36ba40b189caA92964A9126d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF970659221BB9d01B615321b63a26E857ffC030B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json new file mode 100644 index 000000000..9e8180a49 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/100-0x2a5AEcE0bb9EfFD7608213AE1745873385515c18.json @@ -0,0 +1,128 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e\",\"0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a\"]", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0x225E0047671939A8d78e08EBd692788Abe63f15c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41211BBa6d37F5a74b22e667533F080C7C7f3F13", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x581Ec1f5e7CeD12B186deaE32256AdB53BDd5B08", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbb9Cd48d33033F5EfFBeDec9Dd700C7D7E1dCF50", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd16f72b02dA5f51231fDe542A8B9E2777a478c88", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd4015683b8153666190e0B2bEC352580EBC4CaCa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE7f88d7d4EF2eb18FCF9Dd7216BA7Da1c46f3dD6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFFFf76A3280e95dC855696111C2562Da09db2Ac0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json new file mode 100644 index 000000000..fb784c5b0 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json @@ -0,0 +1,103 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "transactions": [ + { + "to": "0x1AC55C31DaC78ca943CB8ebfCa5945ce09e036e2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4De21b365D6543661D0e105E579A34B963862497", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x66F33Ae36dD80327744207a48122F874634B3adA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB95829AdbaCd8Af89E291DeE78Bc09E24De51d6b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xB973Ca96a3f0D61045f53255E319AEDb6ED49240", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xba1a5B19D09A79DADA039B1f974015c5A989d5FD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF48f01DCB2CbB3ee1f6AaB0e742c2D3941039d56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json new file mode 100644 index 000000000..1c86239ff --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/1101-0x79b131498355daa2cC740936fcb9A7dF76A86223.json @@ -0,0 +1,125 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "transactions": [ + { + "to": "0x02c9DCB975262719A61f9B40bDf0987eAD9Add3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x16C9a4D841E88E52b51936106010F27085a529EC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x32BE2d0ddeaF3333501B24a28668cE373BA8E763", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x32f03464FdF909FDf3798f87Ff3712b10c59bd86", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4B718E0E2fEA1dA68b763CD50C446FbA03CEB2Ea", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x68a69c596B3839023C0e08D09682314F582314e5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6F34a44FCe1506352A171232163E7716Dd073ade", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9e2D87f904862671eb49cB358E74284762cC9F42", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xac4b72c01072A52b73ca71105504F1372eFcCE0d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbFD65c6160CFd638A85C645e6e6d8ACac5Dac935", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json new file mode 100644 index 000000000..00033e65d --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json @@ -0,0 +1,510 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "transactions": [ + { + "to": "0x03090a9811181A2AfE830a3a0B467698CcF3a8b1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x04b54ea92D73DE2d62D651Db7d9778F0C49157d8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0889b240A5876aae745Ac19f1771853671dC5d36", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0BC54e914F53f98D16035F4f0D948f3e09C2fac0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x0c06e87c7b88D998f645B91c1F53B51294b12Bca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1379b816b9BE611431d693290289C204720Ca56d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x16b98793F3e6a17d15931A2C9F98fE28D1C845A1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x178E029173417b1F9C8bC16DCeC6f697bC323746", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x216d6db0C28204014618482c369d7FBF0A8f3232", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x230eCdB2a7CEE56d6889965A023AA0473D6dA507", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x252Ff6A3A6Fd7B5e8E999DE8e3f5c3b306ED1401", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x25e57F4612912614e6C99616Bd2aBB9b5Ae71E99", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2645B13FD2c5295296e94A76280B968bDcbbDfED", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3dd0843A028C86e0b760b1A76929d1C5Ef93a2dd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3Efb91C4F9B103Ee45885695C67794591916F34E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x402cFDb7781fa85d52F425352661128250B79e12", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4ae3661aFa119892f0cc8C43EdaF6A94989Ac171", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x63cE19cCd39930725b8a3D2733627804718Ab83D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6c8C7fC50247a47038015eb1Fd5dC105D05DAFBA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7F4f4942F2a14B6AB7B08b10ada1AAcede4EE8D4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x89bb15076C9f2D86aa98ec6cFfC1a71e31c38953", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8fd39252d683fDB60BDDD4DF4B53C9380B496D59", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9321e2250767D79bAb5aA06DAa8606A2B3B7B4C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA5a935833F6a5312715F182733EaB088452335d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8BF1C584519bE0184311C48AdBDc4c15cb2E8C1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAB269164a10faB22BC87c39946da06C870B172D6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC2CaE8D2f78A4a8F92f20dbe74042Cd0a8d5Af3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb0C830DCeB4EF55A60192472c20C8bf19dF03488", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb266aC3b7C98D7Bcb28731Dac0eF42DbA1b276bE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBd4e35784c832d0f9049B54cb3609e5907c5b495", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc55eC796A4dEBE625d95436a3531f4950b11bdcf", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc83b55bBD005f1f84906545FcdB145dEE53523E0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD2f3B9E67C69762dd1c88F1D3dADD1649a190761", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd4aCcb350f9CF59fE3cF7A5eE6ED9Ace6A568eA9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xdae301690004946424E41051aCe1791083be42a1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDE0a77aB6689b980C30306B10F9131A007E1AF81", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe2272cDDB2cc408E79e02a73D1Db9acc24a843D5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe6909C2F18A29d97217a6146f045e1780606991F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xED35f28f837E96F81240ebB82e0E3F518C7E8a2F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF0211cCeeBe6fCc45052B4E57Ee95D233F5669D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF28F17be00f8ca3C9b7F66a4Aad5513757fB3341", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF42ED61450458eE4620F5eF4f29adB25a6Ef0fb6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF93579002DBE8046c43FEfE86ec78b1112247BB8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFA2C0bd8327C99db5bdE4c9e9E5cbF30946351bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xFf4ce5AAAb5a627bf82f4A571AB1cE94Aa365eA6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json new file mode 100644 index 000000000..88ef5499c --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/137-0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85.json @@ -0,0 +1,293 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\",\"0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a\"]", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x0320C1C5B6df19A194D48882aaEC1c72940081D9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x117a3d474976274B37B7b94aF5DcAde5c90C6e85", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x284EB68520C8fA83361C1A3a5910aEC7f873C18b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x43894DE14462B421372bCFe445fA51b1b4A0Ff3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4739E50B59B552D490d3FDc60D200977A38510c0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x52Cc8389C6B93d740325729Cc7c958066CEE4262", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5B77107fCdF2b41903Bab2bc555D4fc14Cf7667D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5BAe72B75CaAb1f260D21BC028c630140607D6e8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x64eFAD69F099813021B41f4CaC6E749FD55e188f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7c82A23B4C48D796dee36A9cA215b641C6a8709d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x894c82800526E0391E709c0983a5AeA3718b7F6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x89B28A9494589b09dbcCb69911c189f74FdAdc5a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9E34631547aDcF2F8cefa0f5f223955C7B137571", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa5fE91dde37D8BF2daCACC0168B115D28eD03f84", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae646817e458C0bE890b81e8d880206710E3c44e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAeF2c171dBE64B0C18977E16e70BFD29d4eE0256", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb59BE8f3C85A9DD6E2899103B6fbF6ea405B99a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDa1CD1711743e57Dd57102E9e61b75f3587703da", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe1Fb90D0d3b47E551d494d7eBe8f209753526B01", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE4885Ed2818Cc9E840A25f94F9b2A28169D1AEA7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEA11645ac7d8f2dEf94C9D8d86Bd766296c9B6b6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json new file mode 100644 index 000000000..239522504 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/42161-0xaF23DC5983230E9eEAf93280e312e57539D098D0.json @@ -0,0 +1,205 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x1405e4b6cd75de6c077cce8e10034aaac128c79249dbc582eb25e65516444573\",\"0x1af047704bcfd3e1466e6f18e52a32f872a6efd426a13675bc2513e447b0238d\",\"0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951\"]", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x117a3d474976274B37B7b94aF5DcAde5c90C6e85", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x284EB68520C8fA83361C1A3a5910aEC7f873C18b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4739E50B59B552D490d3FDc60D200977A38510c0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x52Cc8389C6B93d740325729Cc7c958066CEE4262", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5BAe72B75CaAb1f260D21BC028c630140607D6e8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7c82A23B4C48D796dee36A9cA215b641C6a8709d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x894c82800526E0391E709c0983a5AeA3718b7F6D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9E34631547aDcF2F8cefa0f5f223955C7B137571", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xae646817e458C0bE890b81e8d880206710E3c44e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAeF2c171dBE64B0C18977E16e70BFD29d4eE0256", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xDa1CD1711743e57Dd57102E9e61b75f3587703da", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe1Fb90D0d3b47E551d494d7eBe8f209753526B01", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json new file mode 100644 index 000000000..93d57211f --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json @@ -0,0 +1,422 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "transactions": [ + { + "to": "0x00FCD3d55085e998e291a0005cedeCF58aC14c40", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x19b1C92631405A0a9495ccbA0BeCF4f2e8e908bD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1d7F0d7c8791210c6F13140939Ad61969562afc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1e550b7764Da9638FDD32c8a701364dE31f45eE8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1Fa7F727934226aedaB636D62a084931b97d366b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2A96254Ca32020b20eD3506F8f75318DA24709F9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x36942963e3b6F37eCC45a4e72349558514233F00", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x3f53A862919ccFA023CB6AcE91378a79Fb0F6Bf5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x40af308e3d07ec769D85EB80aFb116525fF4aC99", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x418dE00Ae109e6f874D872658767866d680eAA19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45C4D1376943Ab28802B995aCfFC04903Eb5223f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4689122d360C4725D244c5cFeA22861333d862e6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x585d95DF0231fA08aEEe35FF0c16b92FD0ECDc33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x5eF36da78e4E256D82Bf3723e821104ea3B6A069", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x6CB787a419c3e6Ee2e9FF365856c29CD10659113", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x970712708a08e8Fb152be4D81b2dC586923F5369", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9BF7c3b63c77b4B4F2717776F15A4bec1b532a28", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9ceBf13BB702F253AbF1579294694A1eDAD00EAA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1ea76C42b2938CfA9abea12357881006c528513", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA50f89e9f439Fde2a6Fe05883721a00475da3C45", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa612B6AeD2E7ca1A3a4f23FbcA9128461bBB7718", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8af146d79aC0BB981E4e0d8b788Ec5711b1d5d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaD28940024117B442a9EFB6D0f25C8B59e1c950B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbBF9d705b75F408CFCaEE91dA32966124d2c6F7D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbD724Eb087d4cc0f61a5fED1fFFaF937937E14DE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBe0f30217BE1e981aDD883848D0773A86d2d2CD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc46be4B8Bb6B5A3d3120660efae9C5416318ED40", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc69771058481551261709D8DB44977e9afDE6450", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCAf7aC72F5866B9558f4547e9c5e366A2C851c9A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xcf8b555B7754556cF2aC2165e77ee23eD8517D79", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD0dC20e6342DB2dE82692B8Dc842301ff9121805", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd6d20527C7B0669989ee082b9D3A1c63aF742290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xfF8F84E8C87532Af96aEF5582eE451572233678B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json new file mode 100644 index 000000000..b3776eca5 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/43114-0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3.json @@ -0,0 +1,51 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50\"]", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + }, + { + "to": "0x3f1A2C4a3a751f6626bD90eF16e104f0772d4d6B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json new file mode 100644 index 000000000..6a4d699f7 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json @@ -0,0 +1,114 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "enableRecoveryMode for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "transactions": [ + { + "to": "0x054E7B0c73E1eE5AED6864Fa511658FC2b54BcaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7275c131b1F67e8B53b4691F92B0E35A4c1C6e22", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA154009870E9B6431305F19b09F9cfD7284d4E7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa1D14d922a575232066520EDA11E27760946c991", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA826a114B0c7dB4d1FF4a4BE845a78998c64564C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xeA67626E1f0b59e0d172a04F5702ef90BcdF440C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEb496161099D45B3ea4892408ef745c6182eB56e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEcE571847897fD61E764D455DC15cf1cD9dE8d6F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEd3E2F496cbCd8e212192fb8D1499842f04A0D19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/affected_pools_processed.csv b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/affected_pools_processed.csv new file mode 100644 index 000000000..52734b70e --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/enableRecoveryMode/affected_pools_processed.csv @@ -0,0 +1,522 @@ +id,address,symbol,amp,poolType,poolTypeVersion,tokensList,totalLiquidity,owner,isBrickable,isPausable,isPausableOrBrickable,network,comment +0x00c2a4be503869fa751c2dbcb7156cc970b5a8da000000000000000000000477,0x00c2a4be503869fa751c2dbcb7156cc970b5a8da,bb-euler-FRAX-bb-euler-USDC-BPT,1500,ComposableStable,3.0,"['0x00c2a4be503869fa751c2dbcb7156cc970b5a8da', '0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a4399', '0xf71d0774b214c4cf51e33eb3d30ef98132e4dbaa']",9.994476890594661429213042305453581,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x02d928e68d8f10c0358566152677db51e1e2dc8c00000000000000000000051e,0x02d928e68d8f10c0358566152677db51e1e2dc8c,swETH-bb-a-WETH-BPT,500,ComposableStable,3.0,"['0x02d928e68d8f10c0358566152677db51e1e2dc8c', '0x60d604890feaa0b5460b28a424407c24fe89374a', '0xf951e335afb289353dc249e82926178eac7ded78']",4039989.369045729772869280983527723,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0x04248aabca09e9a1a3d5129a7ba05b7f17de768400000000000000000000050e,0x04248aabca09e9a1a3d5129a7ba05b7f17de7684,qETH-bb-a-WETH-BPT,100,ComposableStable,3.0,"['0x04248aabca09e9a1a3d5129a7ba05b7f17de7684', '0x60d604890feaa0b5460b28a424407c24fe89374a', '0x93ef1ea305d11a9b2a3ebb9bb4fcc34695292e7d']",11305.83331478792449414400819447473,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0x05513ca725b6ce035ca2641075474eb469f05f4c00020000000000000000041f,0x05513ca725b6ce035ca2641075474eb469f05f4c,50RBN-50bb-a-USD,,Weighted,1.0,"['0x6123b0049f904d730db3c36a31167d9d4121fa6b', '0xa13a9247ea42d743238089903570127dda72fe44']",0.0000000000002108886209413635610362892193882661,0xdaeada3d210d2f45874724beea03c7d4bbd41674,False,False,False,mainnet,pool doesn't implement recovery mode +0x0a0fb4ff697de5ac5b6770cd8ee1b72af80b57cf000000000000000000000496,0x0a0fb4ff697de5ac5b6770cd8ee1b72af80b57cf,TEST,,YearnLinear,1.0,"['0x0a0fb4ff697de5ac5b6770cd8ee1b72af80b57cf', '0x5c5fcf8fbd4cd563ced27e7d066b88ee20e1867a', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x0afbd58beca09545e4fb67772faf3858e610bcd00000000000000000000004b9,0x0afbd58beca09545e4fb67772faf3858e610bcd0,bb-i-agEUR,,ERC4626Linear,3.0,"['0x0afbd58beca09545e4fb67772faf3858e610bcd0', '0x1a7e4e63778b4f12a199c062f3efdd288afcbce8', '0x6ab3cf01b27e507953365ddf70f97da99471706b']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x0d05aac44ac7dd3c7ba5d50be93eb884a057d23400000000000000000000051c,0x0d05aac44ac7dd3c7ba5d50be93eb884a057d234,TEST,,GearboxLinear,2.0,"['0x0d05aac44ac7dd3c7ba5d50be93eb884a057d234', '0xb7a32b67aadb3866cc5c2fabc6c6ab8a9027c3c1', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x0da692ac0611397027c91e559cfd482c4197e4030002000000000000000005c9,0x0da692ac0611397027c91e559cfd482c4197e403,50bb-s-DAI-50bb-a-USDC,,Weighted,4.0,"['0x2b218683178d029bab6c9789b1073aa6c96e5176', '0x82698aecc9e28e9bb27608bd52cf57f704bd1b83']",47.65060731662154107709179349390953,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x11839d635e2f0270da37e8ef4324d4d5d54329570002000000000000000004d8,0x11839d635e2f0270da37e8ef4324d4d5d5432957,10bb-a-USD-90callFLAIX260323,,Weighted,3.0,"['0xa13a9247ea42d743238089903570127dda72fe44', '0xe752d92aba07902bcbae3e6c89724e40df99b598']",0.02676664304732866175342350282894609,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x126e7643235ec0ab9c103c507642dc3f4ca23c66000000000000000000000468,0x126e7643235ec0ab9c103c507642dc3f4ca23c66,bb-t-stkAPE,,ERC4626Linear,3.0,"['0x126e7643235ec0ab9c103c507642dc3f4ca23c66', '0x4d224452801aced8b2f0aebe155379bb5d594381', '0x7966c5bae631294d7cffcea5430b78c2f76db6fa']",7823.8991358203752723815,,False,False,False,mainnet,to be put in recovery mode by the dao +0x133d241f225750d2c92948e464a5a80111920331000000000000000000000476,0x133d241f225750d2c92948e464a5a80111920331,DOLA-bb-e-USD-BPT,200,ComposableStable,3.0,"['0x133d241f225750d2c92948e464a5a80111920331', '0x50cf90b954958480b8df7958a9e965752f627124', '0x865377367054516e17014ccded1e7d814edc9ce4']",813918.0395984575307755025469696605,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x159cb00338fb63f263fd6f621df619cef71da9540000000000000000000004d5,0x159cb00338fb63f263fd6f621df619cef71da954,bb-ma2-USDC,,ERC4626Linear,3.0,"['0x159cb00338fb63f263fd6f621df619cef71da954', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xa5269a8e31b93ff27b887b56720a25f844db0529']",203.7985399656000582789162046204131,,False,False,False,mainnet,to be put in recovery mode by the dao +0x173063a30e095313eee39411f07e95a8a806014e0002000000000000000003ab,0x173063a30e095313eee39411f07e95a8a806014e,50TEMPLE-50bb-a-USD,,Weighted,2.0,"['0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7', '0xa13a9247ea42d743238089903570127dda72fe44']",51.56317207618868689150241176862429,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x1bd2f176a812e312077bca87e37c08432bb09f3e0000000000000000000005a1,0x1bd2f176a812e312077bca87e37c08432bb09f3e,qETH-bb-a-WETH-BPT,100,ComposableStable,5.0,"['0x1bd2f176a812e312077bca87e37c08432bb09f3e', '0x93ef1ea305d11a9b2a3ebb9bb4fcc34695292e7d', '0xbb6881874825e60e1160416d6c426eae65f2459e']",104371.594983566075855916578569369,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0x20b156776114e8a801e9767d90c6ccccc8adf398000000000000000000000499,0x20b156776114e8a801e9767d90c6ccccc8adf398,bb-yv-USD,2000,ComposableStable,3.0,"['0x20b156776114e8a801e9767d90c6ccccc8adf398', '0x8e6ec57a822c2f527f2df7c7d7d361df3e7530a1', '0x9b1c8407a360443a9e5eca004713e4088fab8ac0', '0xd6e355036f41dc261b3f1ed3bbc6003e87aadb4f']",9.000016318341054943,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x246ffb4d928e394a02e45761fecdba6c2e79b8eb000000000000000000000541,0x246ffb4d928e394a02e45761fecdba6c2e79b8eb,bb-insta-WETH,,ERC4626Linear,3.0,"['0x246ffb4d928e394a02e45761fecdba6c2e79b8eb', '0xa0d3707c569ff8c87fa923d3823ec5d81c98be78', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",18.72384832282189503055060225533911,,False,False,False,mainnet,to be put in recovery mode by the dao +0x25accb7943fd73dda5e23ba6329085a3c24bfb6a000200000000000000000387,0x25accb7943fd73dda5e23ba6329085a3c24bfb6a,50wstETH-50bb-a-USD,,Weighted,2.0,"['0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xa13a9247ea42d743238089903570127dda72fe44']",978252.9839709104824429226164082585,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x26c2b83fc8535deead276f5cc3ad9c1a2192e02700020000000000000000056b,0x26c2b83fc8535deead276f5cc3ad9c1a2192e027,OHM/bbaDAI BPT,,Weighted,4.0,"['0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5', '0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385']",10.070486147842044687637134365168,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x2b218683178d029bab6c9789b1073aa6c96e517600000000000000000000058c,0x2b218683178d029bab6c9789b1073aa6c96e5176,bb-s-DAI,,ERC4626Linear,4.0,"['0x2b218683178d029bab6c9789b1073aa6c96e5176', '0x6b175474e89094c44da98b954eedeac495271d0f', '0x83f20f44975d03b1b09e64809b757c47f942beea']",2208242.130804239302175664300885322,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b00000000000000000000003a3,0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0,TUSD-bbausd,600,ComposableStable,1.0,"['0x0000000000085d4780b73119b644ae5ecd22b376', '0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0', '0xa13a9247ea42d743238089903570127dda72fe44']",0.001177852874707728186576357749251584,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c0000000000000000000000fd,0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c,bb-a-USDT,,AaveLinear,1.0,"['0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c', '0xdac17f958d2ee523a2206206994597c13d831ec7', '0xf8fd466f12e236f4c96f7cce6c79eadb819abf58']",495723.5386376232153227989309675164,,False,False,False,mainnet,pool doesn't implement recovery mode +0x2e52c64fd319e380cdbcfc4577ea1fda558a32e40002000000000000000005ba,0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4,50bb-a-WETH-50YieldETH,,Weighted,4.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0xb5b29320d2dde5ba5bafa1ebcd270052070483ec']",29526.4441015738610789198124822557,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x2f4eb100552ef93840d5adc30560e5513dfffacb000000000000000000000334,0x2f4eb100552ef93840d5adc30560e5513dfffacb,bb-a-USDT,,AaveLinear,2.0,"['0x2f4eb100552ef93840d5adc30560e5513dfffacb', '0xdac17f958d2ee523a2206206994597c13d831ec7', '0xf8fd466f12e236f4c96f7cce6c79eadb819abf58']",882473.1788124422543761217877124336,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7000000000000000000000484,0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7,bb-i-USDT,,ERC4626Linear,3.0,"['0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7', '0x544897a3b944fdeb1f94a0ed973ea31a80ae18e1', '0xdac17f958d2ee523a2206206994597c13d831ec7']",1316700.410883648899030454737051,,False,False,False,mainnet,to be put in recovery mode by the dao +0x3035917be42af437cbdd774be26b9ec90a2bd677000200000000000000000543,0x3035917be42af437cbdd774be26b9ec90a2bd677,80INST-bbWETH20,,Weighted,4.0,"['0x246ffb4d928e394a02e45761fecdba6c2e79b8eb', '0x6f40d4a6237c257fff2db00fa0510deeecd303eb']",18.36178209743325127766370006188739,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x331d50e0b00fc1c32742f151e56b9b616227e23e00000000000000000000047c,0x331d50e0b00fc1c32742f151e56b9b616227e23e,TEST,,AaveLinear,4.0,"['0x331d50e0b00fc1c32742f151e56b9b616227e23e', '0x9805dcfd25e6de36bad8fe9d3fe2c9b44b764102', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x334c96d792e4b26b841d28f53235281cec1be1f200020000000000000000038a,0x334c96d792e4b26b841d28f53235281cec1be1f2,50rETH-50bb-a-USD,,Weighted,2.0,"['0xa13a9247ea42d743238089903570127dda72fe44', '0xae78736cd615f374d3085123a210448e74fc6393']",58.62879114908017767724806642147882,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x335d1709d4da9aca59d16328db5cd4ea66bfe06b0000000000000000000004d6,0x335d1709d4da9aca59d16328db5cd4ea66bfe06b,bb-ma2-DAI,,ERC4626Linear,3.0,"['0x335d1709d4da9aca59d16328db5cd4ea66bfe06b', '0x36f8d0d0573ae92326827c4a82fe4ce4c244cab6', '0x6b175474e89094c44da98b954eedeac495271d0f']",150.0230512569280951322365309980725,,False,False,False,mainnet,to be put in recovery mode by the dao +0x395d8a1d9ad82b5abe558f8abbfe183b27138af40000000000000000000004e5,0x395d8a1d9ad82b5abe558f8abbfe183b27138af4,TEST,,SiloLinear,1.0,"['0x395d8a1d9ad82b5abe558f8abbfe183b27138af4', '0xbc4099300e69ff4e52f3b18728054ef00449b9e5', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x3bb22fc9033b802f2ac47c18885f63476f158afc000000000000000000000483,0x3bb22fc9033b802f2ac47c18885f63476f158afc,bb-a-TUSD,,AaveLinear,4.0,"['0x3bb22fc9033b802f2ac47c18885f63476f158afc', '0x0000000000085d4780b73119b644ae5ecd22b376', '0x236f4a95361e03267329a558bdd224b1f95f1377']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x3c640f0d3036ad85afa2d5a9e32be651657b874f00000000000000000000046b,0x3c640f0d3036ad85afa2d5a9e32be651657b874f,bb-e-USDT,,EulerLinear,1.0,"['0x3c640f0d3036ad85afa2d5a9e32be651657b874f', '0x4d19f33948b99800b6113ff3e83bec9b537c85d2', '0xdac17f958d2ee523a2206206994597c13d831ec7']",487737.2355000752618441448748071484,,False,False,False,mainnet,pool is already in recovery mode +0x3cdae4f12a67ba563499e102f309c73213cb241c000000000000000000000335,0x3cdae4f12a67ba563499e102f309c73213cb241c,bb-a-USDC,,AaveLinear,2.0,"['0x3cdae4f12a67ba563499e102f309c73213cb241c', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd093fa4fb80d09bb30817fdcd442d4d02ed3e5de']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede000000000000000000000470,0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede,zUSD-bb-e-USD-BPT,200,ComposableStable,3.0,"['0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede', '0x50cf90b954958480b8df7958a9e965752f627124', '0xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa']",14.99866770434488847690770717653416,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x3f7a7fd7f214be45ec26820fd01ac3be4fc75aa70002000000000000000004c5,0x3f7a7fd7f214be45ec26820fd01ac3be4fc75aa7,50STG 50bb-e-USD,,Weighted,3.0,"['0x326f5834d73a2dc02b3c492e9ef1b24399d430b3', '0x50cf90b954958480b8df7958a9e965752f627124']",0.7514761703072183466503832620397735,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x3fcb7085b8f2f473f80bf6d879cae99ea4de934400000000000000000000056d,0x3fcb7085b8f2f473f80bf6d879cae99ea4de9344,bb-ma3-weth,,ERC4626Linear,4.0,"['0x3fcb7085b8f2f473f80bf6d879cae99ea4de9344', '0x39dd7790e75c6f663731f7e1fdc0f35007d3879b', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",138.9682074173537781347335303778521,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x41503c9d499ddbd1dcdf818a1b05e9774203bf46000000000000000000000594,0x41503c9d499ddbd1dcdf818a1b05e9774203bf46,wstETH-bb-a-WETH-BPT,5000,ComposableStable,5.0,"['0x41503c9d499ddbd1dcdf818a1b05e9774203bf46', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xbb6881874825e60e1160416d6c426eae65f2459e']",44081458.35393109769126035011461743,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0x4228290ee9cab692938ff0b4ba303fbcdb68e9f200020000000000000000057d,0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2,50bb-a-WETH-50ETHx,,Weighted,4.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0xa35b1b31ce002fbf2058d22f30f95d405200a15b']",0.01113974828300175506102657392834337,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x454ed96955d04d2f5cdd05e0fd1c77975bfe5307000000000000000000000410,0x454ed96955d04d2f5cdd05e0fd1c77975bfe5307,bb-a-TUSD,,AaveLinear,3.0,"['0x454ed96955d04d2f5cdd05e0fd1c77975bfe5307', '0x0000000000085d4780b73119b644ae5ecd22b376', '0x236f4a95361e03267329a558bdd224b1f95f1377']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb200000000000000000000056a,0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb2,rETH/bbaWETH BPT,500,ComposableStable,4.0,"['0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb2', '0x60d604890feaa0b5460b28a424407c24fe89374a', '0xae78736cd615f374d3085123a210448e74fc6393']",38.77089774268722181664202264518753,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0x483006684f422a9448023b2382615c57c5ecf18f000000000000000000000488,0x483006684f422a9448023b2382615c57c5ecf18f,TUSD-bb-e-USD,600,ComposableStable,3.0,"['0x3bb22fc9033b802f2ac47c18885f63476f158afc', '0x483006684f422a9448023b2382615c57c5ecf18f', '0x50cf90b954958480b8df7958a9e965752f627124']",12.7426816494463815895460716963262,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x4a82b580365cff9b146281ab72500957a849abdc000000000000000000000494,0x4a82b580365cff9b146281ab72500957a849abdc,bb-g-USDC,,GearboxLinear,1.0,"['0x4a82b580365cff9b146281ab72500957a849abdc', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xc411db5f5eb3f7d552f9b8454b2d74097ccde6e3']",3088127.443882898847496707175441,,False,False,False,mainnet,to be put in recovery mode by the dao +0x4c81255cc9ed7062180ea99962fe05ac0d57350b0000000000000000000005a3,0x4c81255cc9ed7062180ea99962fe05ac0d57350b,cbETH-bb-a-WETH-BPT ,1500,ComposableStable,5.0,"['0x4c81255cc9ed7062180ea99962fe05ac0d57350b', '0xbb6881874825e60e1160416d6c426eae65f2459e', '0xbe9895146f7af43049ca1c1ae358b0541ea49704']",251927.9686532107725980181384900758,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0x4c8d2e60863e8d7e1033eda2b3d84e92a641802000000000000000000000040f,0x4c8d2e60863e8d7e1033eda2b3d84e92a6418020,FBP,1500,ComposableStable,1.0,"['0x4c8d2e60863e8d7e1033eda2b3d84e92a6418020', '0x6a1eb2e9b45e772f55bd9a34659a04b6f75da687', '0x82698aecc9e28e9bb27608bd52cf57f704bd1b83']",18.14649713017088067292419663469236,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x4cbde5c4b4b53ebe4af4adb85404725985406163000000000000000000000595,0x4cbde5c4b4b53ebe4af4adb85404725985406163,B-ETHx/bb-a-WETH ,1500,ComposableStable,5.0,"['0x4cbde5c4b4b53ebe4af4adb85404725985406163', '0xa35b1b31ce002fbf2058d22f30f95d405200a15b', '0xbb6881874825e60e1160416d6c426eae65f2459e']",17643782.14496388071996774458984677,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0x4ce0bd7debf13434d3ae127430e9bd4291bfb61f00020000000000000000038b,0x4ce0bd7debf13434d3ae127430e9bd4291bfb61f,50STG-50bb-a-USD,,Weighted,2.0,"['0xa13a9247ea42d743238089903570127dda72fe44', '0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6']",156.12822357996325409612044265042,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x4ce277df0feb5b4d07a0ca2adcf5326e4005239d000000000000000000000518,0x4ce277df0feb5b4d07a0ca2adcf5326e4005239d,TEST,,AaveLinear,5.0,"['0x4ce277df0feb5b4d07a0ca2adcf5326e4005239d', '0x1f3c910c416ed2340150281c5eb93325c38817a1', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x4fd4687ec38220f805b6363c3c1e52d0df3b5023000200000000000000000473,0x4fd4687ec38220f805b6363c3c1e52d0df3b5023,50wstETH-50bb-euler-USD,,Weighted,3.0,"['0x50cf90b954958480b8df7958a9e965752f627124', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0']",24.41952700869994050478391655297204,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x4fd63966879300cafafbb35d157dc5229278ed230000000000000000000000e9,0x4fd63966879300cafafbb35d157dc5229278ed23,bb-a-USD,100,StablePhantom,1.0,"['0x4fd63966879300cafafbb35d157dc5229278ed23', '0x652d486b80c461c397b0d95612a404da936f3db3', '0xa3823e50f20982656557a4a6a9c06ba5467ae908', '0xe6bcc79f328eec93d4ec8f7ed35534d9ab549faa']",305.7490625781292581081963105935702,0x288c09d17a66a49177d3846372ed318ac16a8f42,False,False,False,mainnet,pool doesn't implement recovery mode +0x50cf90b954958480b8df7958a9e965752f62712400000000000000000000046f,0x50cf90b954958480b8df7958a9e965752f627124,bb-euler-USD-BPT,2000,ComposableStable,3.0,"['0x3c640f0d3036ad85afa2d5a9e32be651657b874f', '0x50cf90b954958480b8df7958a9e965752f627124', '0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a4399', '0xeb486af868aeb3b6e53066abc9623b1041b42bc0']",929363.3585579886621300282434660403,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x53bc3cba3832ebecbfa002c12023f8ab1aa3a3a0000000000000000000000411,0x53bc3cba3832ebecbfa002c12023f8ab1aa3a3a0,TUSD BSP,600,ComposableStable,1.0,"['0x454ed96955d04d2f5cdd05e0fd1c77975bfe5307', '0x53bc3cba3832ebecbfa002c12023f8ab1aa3a3a0', '0xa13a9247ea42d743238089903570127dda72fe44']",10.10615600218632510125599774532362,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x5a6a8cffb4347ff7fc484bf5f0f8a2e234d34255000200000000000000000275,0x5a6a8cffb4347ff7fc484bf5f0f8a2e234d34255,50bb-a-USD-50wstETH,,Weighted,1.0,"['0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0']",0.00000000004278607521597162440035736601097666,0xc38c5f97b34e175ffd35407fc91a937300e33860,False,False,False,mainnet,pool doesn't implement recovery mode +0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e6400000000000000000000037b,0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64,DOLA BSP,2000,ComposableStable,1.0,"['0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64', '0x865377367054516e17014ccded1e7d814edc9ce4', '0xa13a9247ea42d743238089903570127dda72fe44']",22.54425734241852416838216369077696,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa000000000000000000000489,0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa,bb-i-USD,2000,ComposableStable,3.0,"['0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7', '0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa', '0xbc0f2372008005471874e426e86ccfae7b4de79d', '0xdba274b4d04097b90a72b62467d828cefd708037']",2600467.560420514553300478682868458,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x60d604890feaa0b5460b28a424407c24fe89374a0000000000000000000004fc,0x60d604890feaa0b5460b28a424407c24fe89374a,bb-a-WETH,,ERC4626Linear,3.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0x59463bb67ddd04fe58ed291ba36c26d99a39fbc6', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",4535049.078879592662095075988294694,,True,False,True,mainnet,to be put in recovery mode by the dao +0x639883476960a23b38579acfd7d71561a0f408cf000200000000000000000505,0x639883476960a23b38579acfd7d71561a0f408cf,50STG-50bbaUSD,,Weighted,3.0,"['0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6', '0xfebb0bbf162e64fb9d0dfe186e517d84c395f016']",12423742.69151480513969023879945569,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x652d486b80c461c397b0d95612a404da936f3db30000000000000000000000e7,0x652d486b80c461c397b0d95612a404da936f3db3,bb-a-USDC,,AaveLinear,1.0,"['0x652d486b80c461c397b0d95612a404da936f3db3', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd093fa4fb80d09bb30817fdcd442d4d02ed3e5de']",96.75329789710660411784619848845237,,False,False,False,mainnet,pool doesn't implement recovery mode +0x6667c6fa9f2b3fc1cc8d85320b62703d938e43850000000000000000000004fb,0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385,bb-a-DAI,,ERC4626Linear,3.0,"['0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385', '0x098256c06ab24f5655c5506a6488781bd711c14b', '0x6b175474e89094c44da98b954eedeac495271d0f']",2202989.883164282943551178306408969,,True,False,True,mainnet,to be put in recovery mode by the dao +0x6a1eb2e9b45e772f55bd9a34659a04b6f75da68700000000000000000000040d,0x6a1eb2e9b45e772f55bd9a34659a04b6f75da687,bb-a-FRAX,,AaveLinear,3.0,"['0x6a1eb2e9b45e772f55bd9a34659a04b6f75da687', '0x3efceb450fb799f67cd97cdc27a0f4cd7b02b63b', '0x853d955acef822db058eb8505911ed77f175b99e']",5.9962842,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x6c56e72c551b5ac4bf54a620a76077ca768c8fe40002000000000000000004da,0x6c56e72c551b5ac4bf54a620a76077ca768c8fe4,80callFLAIX270323-20bb-a-USD,,Weighted,3.0,"['0x9a48f127174e5d87791bf7c273e8173a559bf209', '0xa13a9247ea42d743238089903570127dda72fe44']",0.00000000000008915673125920398950812799645764109,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x70b7d3b3209a59fb0400e17f67f3ee8c37363f4900020000000000000000018f,0x70b7d3b3209a59fb0400e17f67f3ee8c37363f49,50-WETH-50-bb-a-USD,,Weighted,1.0,"['0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",279.594840126254720095427676603591,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool doesn't implement recovery mode +0x7337224d59cb16c2dc6938cd45a7b2c60c865d6a0000000000000000000004d4,0x7337224d59cb16c2dc6938cd45a7b2c60c865d6a,bb-ma2-USDT,,ERC4626Linear,3.0,"['0x7337224d59cb16c2dc6938cd45a7b2c60c865d6a', '0xafe7131a57e44f832cb2de78ade38cad644aac2f', '0xdac17f958d2ee523a2206206994597c13d831ec7']",94.43740442546950917122316118321964,,False,False,False,mainnet,to be put in recovery mode by the dao +0x74cbfaf94a3577c539a9dcee9870a6349a33b34f000000000000000000000534,0x74cbfaf94a3577c539a9dcee9870a6349a33b34f,TEST,,SiloLinear,2.0,"['0x74cbfaf94a3577c539a9dcee9870a6349a33b34f', '0x192e67544694a7baa2dea94f9b1df58bb3395a12', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x779d01f939d78a918a3de18cc236ee89221dfd4e0000000000000000000004c7,0x779d01f939d78a918a3de18cc236ee89221dfd4e,bb-s-USD,2000,ComposableStable,3.0,"['0x779d01f939d78a918a3de18cc236ee89221dfd4e', '0xbfa413a2ff0f20456d57b643746133f54bfe0cd2', '0xdc063deafce952160ec112fa382ac206305657e6', '0xfd11ccdbdb7ab91cb9427a6d6bf570c95876d195']",9,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb20000000000000000000000fe,0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2,bb-a-USD,1472,StablePhantom,1.0,"['0x2bbf681cc4eb09218bee85ea2a5d3d13fa40fc0c', '0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2', '0x804cdb9116a10bb78768d3252355a1b18067bf8f', '0x9210f1204b5a24742eba12f710636d76240df3d0']",1095670.598235106177916321029094285,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool doesn't implement recovery mode +0x804cdb9116a10bb78768d3252355a1b18067bf8f0000000000000000000000fb,0x804cdb9116a10bb78768d3252355a1b18067bf8f,bb-a-DAI,,AaveLinear,1.0,"['0x02d60b84491589974263d922d9cc7a3152618ef6', '0x6b175474e89094c44da98b954eedeac495271d0f', '0x804cdb9116a10bb78768d3252355a1b18067bf8f']",298836.4591857576712108780178256942,,False,False,False,mainnet,pool doesn't implement recovery mode +0x813e3fe1761f714c502d1d2d3a7cceb33f37f59d00000000000000000000040c,0x813e3fe1761f714c502d1d2d3a7cceb33f37f59d,TEST,,AaveLinear,3.0,"['0x813e3fe1761f714c502d1d2d3a7cceb33f37f59d', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', '0xf9f5e0f3f74f57755a8c8be7b2fedcaa40673080']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x82698aecc9e28e9bb27608bd52cf57f704bd1b83000000000000000000000336,0x82698aecc9e28e9bb27608bd52cf57f704bd1b83,bb-a-USDC,,AaveLinear,2.0,"['0x82698aecc9e28e9bb27608bd52cf57f704bd1b83', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd093fa4fb80d09bb30817fdcd442d4d02ed3e5de']",610394.785019463662019056367561774,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x8a6b25e33b12d1bb6929a8793961076bd1f9d3eb0002000000000000000003e8,0x8a6b25e33b12d1bb6929a8793961076bd1f9d3eb,80XAV-20bb-a-USD,,Weighted,1.0,"['0x40370aed88933021e20cf7c4d67e00417cda2202', '0xa13a9247ea42d743238089903570127dda72fe44']",106283.8155214862748042675268987267,0x01e198818a895f01562e0a087595e5b1c7bb8d5c,False,False,False,mainnet,pool doesn't implement recovery mode +0x8e6ec57a822c2f527f2df7c7d7d361df3e7530a1000000000000000000000498,0x8e6ec57a822c2f527f2df7c7d7d361df3e7530a1,bb-yv-DAI,,YearnLinear,1.0,"['0x8e6ec57a822c2f527f2df7c7d7d361df3e7530a1', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xda816459f1ab5631232fe5e97a05bbbb94970c95']",8.745237728658437563,,False,False,False,mainnet,to be put in recovery mode by the dao +0x8f4063446f5011bc1c9f79a819efe87776f23704000000000000000000000197,0x8f4063446f5011bc1c9f79a819efe87776f23704,bb-f-DAI,,ERC4626Linear,1.0,"['0x6b175474e89094c44da98b954eedeac495271d0f', '0x8f4063446f5011bc1c9f79a819efe87776f23704', '0xba63738c2e476b1a0cfb6b41a7b85d304d032454']",152.150769762942109065,,False,False,False,mainnet,pool doesn't implement recovery mode +0x9001cbbd96f54a658ff4e6e65ab564ded76a543100000000000000000000050a,0x9001cbbd96f54a658ff4e6e65ab564ded76a5431,cbETH-bb-a-WETH-BPT,700,ComposableStable,3.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0x9001cbbd96f54a658ff4e6e65ab564ded76a5431', '0xbe9895146f7af43049ca1c1ae358b0541ea49704']",7246667.619049036069300056501094906,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0x9210f1204b5a24742eba12f710636d76240df3d00000000000000000000000fc,0x9210f1204b5a24742eba12f710636d76240df3d0,bb-a-USDC,,AaveLinear,1.0,"['0x9210f1204b5a24742eba12f710636d76240df3d0', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd093fa4fb80d09bb30817fdcd442d4d02ed3e5de']",301463.4702835245343310250905444396,,False,False,False,mainnet,pool doesn't implement recovery mode +0x9516a2d25958edb8da246a320f2c7d94a0dbe25d000000000000000000000519,0x9516a2d25958edb8da246a320f2c7d94a0dbe25d,TEST,,ERC4626Linear,4.0,"['0x9516a2d25958edb8da246a320f2c7d94a0dbe25d', '0xb99edc4b289b0f2284fcf3f66884191bdce29624', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x959216bb492b2efa72b15b7aacea5b5c984c3cca000200000000000000000472,0x959216bb492b2efa72b15b7aacea5b5c984c3cca,50wstETH-50stk-APE,,Weighted,3.0,"['0x126e7643235ec0ab9c103c507642dc3f4ca23c66', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0']",6976.621551486696532452501246264959,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0x968024662b9566b42d78af23a0f441bc8723fa83000200000000000000000418,0x968024662b9566b42d78af23a0f441bc8723fa83,50TRYB-50bb-a-USD,,Weighted,1.0,"['0x2c537e5624e4af88a7ae4060c022609376c8d0eb', '0xa13a9247ea42d743238089903570127dda72fe44']",0.00000005242899665380701869706906461338895,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool doesn't implement recovery mode +0x99c88ad7dc566616548adde8ed3effa730eb6c3400000000000000000000049a,0x99c88ad7dc566616548adde8ed3effa730eb6c34,bb-g-USD,2000,ComposableStable,3.0,"['0x4a82b580365cff9b146281ab72500957a849abdc', '0x99c88ad7dc566616548adde8ed3effa730eb6c34', '0xe03af00fabe8401560c1ff7d242d622a5b601573']",5598504.995048829537352099975658466,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0x9b1c8407a360443a9e5eca004713e4088fab8ac0000000000000000000000497,0x9b1c8407a360443a9e5eca004713e4088fab8ac0,bb-yv-USDC,,YearnLinear,1.0,"['0x9b1c8407a360443a9e5eca004713e4088fab8ac0', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xa354f35829ae975e850e23e9615b11da1b3dc4de']",10.196796,,False,False,False,mainnet,to be put in recovery mode by the dao +0x9b692f571b256140a39a34676bffa30634c586e100000000000000000000059d,0x9b692f571b256140a39a34676bffa30634c586e1,bb-i-USD,2000,ComposableStable,5.0,"['0x2ff1a9dbdacd55297452cfd8a4d94724bc22a5f7', '0x9b692f571b256140a39a34676bffa30634c586e1', '0xbc0f2372008005471874e426e86ccfae7b4de79d', '0xdba274b4d04097b90a72b62467d828cefd708037']",80935.14059430971981730495901115491,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,mainnet,to be put in recovery mode by emergency multisig +0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33000200000000000000000573,0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33,50OHM/50bbaWETH,,Weighted,4.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5']",21.08348769209585941346395843295948,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0x9fb771d530b0ceba5160f7bfe2dd1e8b8aa1340300000000000000000000040e,0x9fb771d530b0ceba5160f7bfe2dd1e8b8aa13403,FBP,1500,ComposableStable,1.0,"['0x6a1eb2e9b45e772f55bd9a34659a04b6f75da687', '0x82698aecc9e28e9bb27608bd52cf57f704bd1b83', '0x9fb771d530b0ceba5160f7bfe2dd1e8b8aa13403']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xa13a9247ea42d743238089903570127dda72fe4400000000000000000000035d,0xa13a9247ea42d743238089903570127dda72fe44,bb-a-USD,1472,ComposableStable,1.0,"['0x2f4eb100552ef93840d5adc30560e5513dfffacb', '0x82698aecc9e28e9bb27608bd52cf57f704bd1b83', '0xa13a9247ea42d743238089903570127dda72fe44', '0xae37d54ae477268b9997d4161b96b8200755935c']",2106261.630685883551935804126488191,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xa1697f9af0875b63ddc472d6eebada8c1fab85680000000000000000000004f9,0xa1697f9af0875b63ddc472d6eebada8c1fab8568,bb-a-USDT,,ERC4626Linear,3.0,"['0xa1697f9af0875b63ddc472d6eebada8c1fab8568', '0xa7e0e66f38b8ad8343cff67118c1f33e827d1455', '0xdac17f958d2ee523a2206206994597c13d831ec7']",5324455.826740266712888788519969251,,True,False,True,mainnet,to be put in recovery mode by the dao +0xa3823e50f20982656557a4a6a9c06ba5467ae9080000000000000000000000e6,0xa3823e50f20982656557a4a6a9c06ba5467ae908,bb-a-DAI,,AaveLinear,1.0,"['0x02d60b84491589974263d922d9cc7a3152618ef6', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xa3823e50f20982656557a4a6a9c06ba5467ae908']",105.7832714293916134590173318708545,,False,False,False,mainnet,pool doesn't implement recovery mode +0xa718042e5622099e5f0ace4e7122058ab39e1bbe000200000000000000000475,0xa718042e5622099e5f0ace4e7122058ab39e1bbe,50TEMPLE-50bb-euler-USD,,Weighted,3.0,"['0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7', '0x50cf90b954958480b8df7958a9e965752f627124']",79.62586507627283917587451261017698,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xa8b103a10a94f4f2d7ed2fdcd5545e807557330700000000000000000000048e,0xa8b103a10a94f4f2d7ed2fdcd5545e8075573307,TEST,,GearboxLinear,1.0,"['0xa8b103a10a94f4f2d7ed2fdcd5545e8075573307', '0x4be0e4d6184348c5ba845a4010528cfc779610b8', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0xac5b4ef7ede2f2843a704e96dcaa637f4ba3dc3f00000000000000000000051d,0xac5b4ef7ede2f2843a704e96dcaa637f4ba3dc3f,TEST,,YearnLinear,2.0,"['0xac5b4ef7ede2f2843a704e96dcaa637f4ba3dc3f', '0x806e02dea8d4a0882cad9fa3fa75b212328692de', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",0,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0xac976bb42cb0c85635644e8c7c74d0e0286aa61c0000000000000000000003cb,0xac976bb42cb0c85635644e8c7c74d0e0286aa61c,FIAT-bbausd,200,ComposableStable,1.0,"['0x586aa273f262909eef8fa02d90ab65f5015e0516', '0xa13a9247ea42d743238089903570127dda72fe44', '0xac976bb42cb0c85635644e8c7c74d0e0286aa61c']",24.90762722328420138070510248181534,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xae37d54ae477268b9997d4161b96b8200755935c000000000000000000000337,0xae37d54ae477268b9997d4161b96b8200755935c,bb-a-DAI,,AaveLinear,2.0,"['0x02d60b84491589974263d922d9cc7a3152618ef6', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xae37d54ae477268b9997d4161b96b8200755935c']",569130.6009694411086419923632206447,,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0xae8535c23afedda9304b03c68a3563b75fc8f92b0000000000000000000005a0,0xae8535c23afedda9304b03c68a3563b75fc8f92b,swETH-bb-a-WETH-BPT,500,ComposableStable,5.0,"['0xae8535c23afedda9304b03c68a3563b75fc8f92b', '0xbb6881874825e60e1160416d6c426eae65f2459e', '0xf951e335afb289353dc249e82926178eac7ded78']",16022957.23055461826459138759700287,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xb0f75e97a114a4eb4a425edc48990e6760726709000000000000000000000198,0xb0f75e97a114a4eb4a425edc48990e6760726709,bb-f-LUSD,,ERC4626Linear,1.0,"['0x5f98805a4e8be255a32880fdec7f6728c6568ba0', '0x83e556baea9b5fa5f131bc89a4c7282ca240b156', '0xb0f75e97a114a4eb4a425edc48990e6760726709']",7.115589632204103665777979812223933,,False,False,False,mainnet,pool doesn't implement recovery mode +0xb5e3de837f869b0248825e0175da73d4e8c3db6b000200000000000000000474,0xb5e3de837f869b0248825e0175da73d4e8c3db6b,50rETH-50bb-euler-USD,,Weighted,3.0,"['0x50cf90b954958480b8df7958a9e965752f627124', '0xae78736cd615f374d3085123a210448e74fc6393']",5.987758659425485478660083659739912,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xb841b062ea8ccf5c4cb78032e91de4ae875560420002000000000000000005b7,0xb841b062ea8ccf5c4cb78032e91de4ae87556042,50bb-s-DAI-50bb-a-USD,,Weighted,4.0,"['0x2b218683178d029bab6c9789b1073aa6c96e5176', '0xa13a9247ea42d743238089903570127dda72fe44']",25.81568865714325724903781635669691,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,to be put in recovery mode by emergency multisig +0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6000200000000000000000385,0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6,50wstETH-50bb-a-USD,,Weighted,2.0,"['0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xa13a9247ea42d743238089903570127dda72fe44']",5.564746335922267585725703618686631,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xbb6881874825e60e1160416d6c426eae65f2459e000000000000000000000592,0xbb6881874825e60e1160416d6c426eae65f2459e,bb-a-WETH,,ERC4626Linear,4.0,"['0xbb6881874825e60e1160416d6c426eae65f2459e', '0x03928473f25bb2da6bc880b07ecbadc636822264', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2']",23064967.09937800756779259279222537,,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0xbc0f2372008005471874e426e86ccfae7b4de79d000000000000000000000485,0xbc0f2372008005471874e426e86ccfae7b4de79d,bb-i-USDC,,ERC4626Linear,3.0,"['0xbc0f2372008005471874e426e86ccfae7b4de79d', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xc3da79e0de523eef7ac1e4ca9abfe3aac9973133']",647180.947043406421592572428288,,False,False,False,mainnet,to be put in recovery mode by the dao +0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef3300000000000000000000058d,0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33,R-bb-s-DAI-BLP,120,ComposableStable,5.0,"['0x183015a9ba6ff60230fdeadc3f43b3d788b13e21', '0x2b218683178d029bab6c9789b1073aa6c96e5176', '0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33']",7026913.014283733680603779924870912,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,mainnet,to be put in recovery mode by emergency multisig +0xbfa413a2ff0f20456d57b643746133f54bfe0cd20000000000000000000004c3,0xbfa413a2ff0f20456d57b643746133f54bfe0cd2,bb-s-USDC,,AaveLinear,4.0,"['0xbfa413a2ff0f20456d57b643746133f54bfe0cd2', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xd7bc0dcb0b6ee14bdb204172aba01458abe91ac3']",10,,False,False,False,mainnet,to be put in recovery mode by the dao +0xc2b021133d1b0cf07dba696fd5dd89338428225b000000000000000000000598,0xc2b021133d1b0cf07dba696fd5dd89338428225b,GHO/bb-a-USD,100,ComposableStable,5.0,"['0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f', '0xc2b021133d1b0cf07dba696fd5dd89338428225b', '0xc443c15033fcb6cf72cc24f1bda0db070ddd9786']",15166253.05799056562776767120291646,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xc443c15033fcb6cf72cc24f1bda0db070ddd9786000000000000000000000593,0xc443c15033fcb6cf72cc24f1bda0db070ddd9786,bb-a-USD,4000,ComposableStable,5.0,"['0xc443c15033fcb6cf72cc24f1bda0db070ddd9786', '0xc50d4347209f285247bda8a09fc1c12ce42031c3', '0xcfae6e251369467f465f13836ac8135bd42f8a56', '0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9']",3225055.025325651647649160383483328,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xc50d4347209f285247bda8a09fc1c12ce42031c3000000000000000000000590,0xc50d4347209f285247bda8a09fc1c12ce42031c3,bb-a-USDC,,ERC4626Linear,4.0,"['0xc50d4347209f285247bda8a09fc1c12ce42031c3', '0x02c2d189b45ce213a40097b62d311cf0dd16ec92', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48']",568616.382075,,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0xc5dc1316ab670a2eed5716d7f19ced321191f38200000000000000000000056e,0xc5dc1316ab670a2eed5716d7f19ced321191f382,B-wstETH/bb-ma3-weth,1500,ComposableStable,4.0,"['0x3fcb7085b8f2f473f80bf6d879cae99ea4de9344', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xc5dc1316ab670a2eed5716d7f19ced321191f382']",198.1128867553347079279921164403418,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xc8c79fcd0e859e7ec81118e91ce8e4379a481ee6000000000000000000000196,0xc8c79fcd0e859e7ec81118e91ce8e4379a481ee6,bb-f-FEI,,ERC4626Linear,1.0,"['0x956f47f50a910163d8bf957cf5846d573e7f87ca', '0xc8c79fcd0e859e7ec81118e91ce8e4379a481ee6', '0xf486608dbc7dd0eb80e4b9fa0fdb03e40f414030']",295.7731503008694231595202167669809,,False,False,False,mainnet,pool doesn't implement recovery mode +0xcaa052584b462198a5a9356c28bce0634d65f65c0000000000000000000004db,0xcaa052584b462198a5a9356c28bce0634d65f65c,bb-ma2-USD,2000,ComposableStable,3.0,"['0x159cb00338fb63f263fd6f621df619cef71da954', '0x335d1709d4da9aca59d16328db5cd4ea66bfe06b', '0x7337224d59cb16c2dc6938cd45a7b2c60c865d6a', '0xcaa052584b462198a5a9356c28bce0634d65f65c']",433.1792771551143841822095144082127,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool is already in recovery mode +0xcbfa4532d8b2ade2c261d3dd5ef2a2284f7926920000000000000000000004fa,0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692,bb-a-USDC,,ERC4626Linear,3.0,"['0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692', '0x57d20c946a7a3812a7225b881cdcd8431d23431c', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48']",2318945.397081766375668142964993414,,True,False,True,mainnet,to be put in recovery mode by the dao +0xcfae6e251369467f465f13836ac8135bd42f8a56000000000000000000000591,0xcfae6e251369467f465f13836ac8135bd42f8a56,bb-a-USDT,,ERC4626Linear,4.0,"['0xcfae6e251369467f465f13836ac8135bd42f8a56', '0x65799b9fd4206cdaa4a1db79254fcbc2fd2ffee6', '0xdac17f958d2ee523a2206206994597c13d831ec7']",1900587.454525,,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a439900000000000000000000046a,0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a4399,bb-e-USDC,,EulerLinear,1.0,"['0xd4e7c1f3da1144c9e2cfd1b015eda7652b4a4399', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xeb91861f8a4e1c12333f42dce8fb0ecdc28da716']",460378.0571850930472473145370925815,,False,False,False,mainnet,pool is already in recovery mode +0xd6e355036f41dc261b3f1ed3bbc6003e87aadb4f000000000000000000000495,0xd6e355036f41dc261b3f1ed3bbc6003e87aadb4f,bb-yv-USDT,,YearnLinear,1.0,"['0xd6e355036f41dc261b3f1ed3bbc6003e87aadb4f', '0x3b27f92c0e212c671ea351827edf93db27cc0c65', '0xdac17f958d2ee523a2206206994597c13d831ec7']",10,,False,False,False,mainnet,to be put in recovery mode by the dao +0xd7edb56f63b2a0191742aea32df1f98ca81ed9c600000000000000000000058e,0xd7edb56f63b2a0191742aea32df1f98ca81ed9c6,B-wstETH/bb-ma3-weth,1500,ComposableStable,5.0,"['0x3fcb7085b8f2f473f80bf6d879cae99ea4de9344', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xd7edb56f63b2a0191742aea32df1f98ca81ed9c6']",39.9215844690559739845733838415117,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,mainnet,to be put in recovery mode by emergency multisig +0xd997f35c9b1281b82c8928039d14cddab5e13c2000000000000000000000019c,0xd997f35c9b1281b82c8928039d14cddab5e13c20,bb-f-USD,500,StablePhantom,1.0,"['0x8f4063446f5011bc1c9f79a819efe87776f23704', '0xb0f75e97a114a4eb4a425edc48990e6760726709', '0xc8c79fcd0e859e7ec81118e91ce8e4379a481ee6', '0xd997f35c9b1281b82c8928039d14cddab5e13c20']",454.2773124394136341027747216039839,0x097105c0fc6506420ded8091a358f728e065112a,False,False,False,mainnet,pool doesn't implement recovery mode +0xdba274b4d04097b90a72b62467d828cefd708037000000000000000000000486,0xdba274b4d04097b90a72b62467d828cefd708037,bb-i-DAI,,ERC4626Linear,3.0,"['0xdba274b4d04097b90a72b62467d828cefd708037', '0x0c80f31b840c6564e6c5e18f386fad96b63514ca', '0x6b175474e89094c44da98b954eedeac495271d0f']",717919.4701316501243581194148478196,,False,False,False,mainnet,to be put in recovery mode by the dao +0xdc063deafce952160ec112fa382ac206305657e60000000000000000000004c4,0xdc063deafce952160ec112fa382ac206305657e6,bb-s-USDT,,AaveLinear,4.0,"['0xdc063deafce952160ec112fa382ac206305657e6', '0x822802f970ccd9aeb13d0368a2409804d28e1253', '0xdac17f958d2ee523a2206206994597c13d831ec7']",10,,False,False,False,mainnet,to be put in recovery mode by the dao +0xdec02e6642e2c999af429f5ce944653cad15e093000000000000000000000469,0xdec02e6642e2c999af429f5ce944653cad15e093,TEST,,EulerLinear,1.0,"['0xdec02e6642e2c999af429f5ce944653cad15e093', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', '0xc101dca301a4011c1f925e9622e749e550a1b667']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0xe03af00fabe8401560c1ff7d242d622a5b601573000000000000000000000493,0xe03af00fabe8401560c1ff7d242d622a5b601573,bb-g-DAI,,GearboxLinear,1.0,"['0xe03af00fabe8401560c1ff7d242d622a5b601573', '0x6b175474e89094c44da98b954eedeac495271d0f', '0x6cfaf95457d7688022fc53e7abe052ef8dfbbdba']",2510354.83997445501554227339964276,,False,False,False,mainnet,to be put in recovery mode by the dao +0xe0fcbf4d98f0ad982db260f86cf28b49845403c5000000000000000000000504,0xe0fcbf4d98f0ad982db260f86cf28b49845403c5,wstETH-bb-a-WETH-BPT,700,ComposableStable,3.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', '0xe0fcbf4d98f0ad982db260f86cf28b49845403c5']",201945.5898287336637936619283460765,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e10000000000000000000005a7,0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e1,DUSD/bbaUSD-BPT,500,ComposableStable,5.0,"['0xa48f322f8b3edff967629af79e027628b9dd1298', '0xc443c15033fcb6cf72cc24f1bda0db070ddd9786', '0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e1']",20.00120683372486218898222247087722,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xe4dc3c1998ac693d68f4c77476d7c815694c3e94000200000000000000000416,0xe4dc3c1998ac693d68f4c77476d7c815694c3e94,50TRYB-50bb-a-USD,,Weighted,1.0,"['0x2c537e5624e4af88a7ae4060c022609376c8d0eb', '0xa13a9247ea42d743238089903570127dda72fe44']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,mainnet,pool doesn't implement recovery mode +0xe6bcc79f328eec93d4ec8f7ed35534d9ab549faa0000000000000000000000e8,0xe6bcc79f328eec93d4ec8f7ed35534d9ab549faa,bb-a-USDT,,AaveLinear,1.0,"['0xdac17f958d2ee523a2206206994597c13d831ec7', '0xe6bcc79f328eec93d4ec8f7ed35534d9ab549faa', '0xf8fd466f12e236f4c96f7cce6c79eadb819abf58']",103.5837651167742517928185909134505,,False,False,False,mainnet,pool doesn't implement recovery mode +0xe8c56405bc405840154d9b572927f4197d110de10000000000000000000005a4,0xe8c56405bc405840154d9b572927f4197d110de1,rETH/bbaWETH BPT ,1500,ComposableStable,5.0,"['0xae78736cd615f374d3085123a210448e74fc6393', '0xbb6881874825e60e1160416d6c426eae65f2459e', '0xe8c56405bc405840154d9b572927f4197d110de1']",38.1541999102017649172509324349774,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,mainnet,to be put in recovery mode by emergency multisig +0xeb486af868aeb3b6e53066abc9623b1041b42bc000000000000000000000046c,0xeb486af868aeb3b6e53066abc9623b1041b42bc0,bb-e-DAI,,EulerLinear,1.0,"['0xeb486af868aeb3b6e53066abc9623b1041b42bc0', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xe025e3ca2be02316033184551d4d3aa22024d9dc']",415585.6662792400967419737883894163,,False,False,False,mainnet,pool is already in recovery mode +0xeb567dde03f3da7fe185bdacd5ab495ab220769d000000000000000000000548,0xeb567dde03f3da7fe185bdacd5ab495ab220769d,ankrETH-bb-a-WETH-BPT,100,ComposableStable,3.0,"['0x60d604890feaa0b5460b28a424407c24fe89374a', '0xe95a203b1a91a908f9b9ce46459d101078c2c3cb', '0xeb567dde03f3da7fe185bdacd5ab495ab220769d']",1528.350246679844002961013684528319,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xec3626fee40ef95e7c0cbb1d495c8b67b34d398300000000000000000000053d,0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983,B-S-UZD-BB-A-USD,500,ComposableStable,4.0,"['0xb40b6608b2743e691c9b54ddbdee7bf03cd79f1c', '0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983', '0xfebb0bbf162e64fb9d0dfe186e517d84c395f016']",4.037583370400195265987487334688729,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xf22ff21e17157340575158ad7394e068048dd98b0000000000000000000004b8,0xf22ff21e17157340575158ad7394e068048dd98b,bb-ag-EUR,,ERC4626Linear,3.0,"['0xf22ff21e17157340575158ad7394e068048dd98b', '0x1a7e4e63778b4f12a199c062f3efdd288afcbce8', '0x6ab3cf01b27e507953365ddf70f97da99471706b']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0xf57c794f42da72b38c8f610ff3b5e8502e48cbde00000000000000000000055c,0xf57c794f42da72b38c8f610ff3b5e8502e48cbde,DOLA/bb-a-USD,200,ComposableStable,4.0,"['0x865377367054516e17014ccded1e7d814edc9ce4', '0xf57c794f42da72b38c8f610ff3b5e8502e48cbde', '0xfebb0bbf162e64fb9d0dfe186e517d84c395f016']",14.04037214464347815278852011786549,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xf71d0774b214c4cf51e33eb3d30ef98132e4dbaa00000000000000000000046e,0xf71d0774b214c4cf51e33eb3d30ef98132e4dbaa,bb-e-FRAX,,EulerLinear,1.0,"['0xf71d0774b214c4cf51e33eb3d30ef98132e4dbaa', '0x5484451a88a35cd0878a1be177435ca8a0e4054e', '0x853d955acef822db058eb8505911ed77f175b99e']",9.982253281352618534131156578650758,,False,False,False,mainnet,to be put in recovery mode by the dao +0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f900000000000000000000058f,0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9,bb-a-DAI,,ERC4626Linear,4.0,"['0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9', '0x6b175474e89094c44da98b954eedeac495271d0f', '0xeb708639e8e518b86a916db3685f90216b1c1c67']",755888.07091475662752655,,True,False,True,mainnet,to be put in recovery mode by emergency multisig +0xfd11ccdbdb7ab91cb9427a6d6bf570c95876d1950000000000000000000004c2,0xfd11ccdbdb7ab91cb9427a6d6bf570c95876d195,bb-s-DAI,,AaveLinear,4.0,"['0xfd11ccdbdb7ab91cb9427a6d6bf570c95876d195', '0x6b175474e89094c44da98b954eedeac495271d0f', '0x86a42b7a448c1568d21b00c90eab53b8417eeadc']",10.00000000001,,False,False,False,mainnet,to be put in recovery mode by the dao +0xfebb0bbf162e64fb9d0dfe186e517d84c395f016000000000000000000000502,0xfebb0bbf162e64fb9d0dfe186e517d84c395f016,bb-a-USD,2500,ComposableStable,3.0,"['0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385', '0xa1697f9af0875b63ddc472d6eebada8c1fab8568', '0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692', '0xfebb0bbf162e64fb9d0dfe186e517d84c395f016']",9845522.898807223787330570361582815,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,mainnet,pool is already in recovery mode +0xfef969638c52899f91781f1be594af6f40b99bad00000000000000000000047b,0xfef969638c52899f91781f1be594af6f40b99bad,TEST,,ERC4626Linear,3.0,"['0xfef969638c52899f91781f1be594af6f40b99bad', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', '0xe605dbe1ca85dcdb8f43cefa427f3b0fc06f6ba6']",0,,False,False,False,mainnet,to be put in recovery mode by the dao +0x02e139d53ebf4033bf78ab66c6a1e7f1f204487f0002000000000000000009f9,0x02e139d53ebf4033bf78ab66c6a1e7f1f204487f,50FRAX-50bb-am-USDC,,Weighted,1.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.0000000000007887510149001404793925306813159734,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x03090a9811181a2afe830a3a0b467698ccf3a8b1000000000000000000000bf5,0x03090a9811181a2afe830a3a0b467698ccf3a8b1,bb-am-usd,3000,ComposableStable,5.0,"['0x03090a9811181a2afe830a3a0b467698ccf3a8b1', '0x230ecdb2a7cee56d6889965a023aa0473d6da507', '0x63ce19ccd39930725b8a3d2733627804718ab83d', '0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953']",184.6682244687661414139657254583086,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0x0320c1c5b6df19a194d48882aaec1c72940081d9000000000000000000000a7d,0x0320c1c5b6df19a194d48882aaec1c72940081d9,TEST,,YearnLinear,1.0,"['0x0320c1c5b6df19a194d48882aaec1c72940081d9', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x533a16f90e7d3ca31dbc608e5ec54967710f0d2a']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x04b54ea92d73de2d62d651db7d9778f0c49157d8000200000000000000000ba2,0x04b54ea92d73de2d62d651db7d9778f0c49157d8,50stMATIC-bb-a-WMATIC-BPT-50agEUR,,Weighted,4.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0xe0b52e49357fd4daf2c15e02058dce6bc0057db4']",1.205237223762917402821072041248424,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x0503dd6b2d3dd463c9bef67fb5156870af63393e00000000000000000000042e,0x0503dd6b2d3dd463c9bef67fb5156870af63393e,bb-a-DAI,,AaveLinear,1.0,"['0x0503dd6b2d3dd463c9bef67fb5156870af63393e', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xa84b5b903f62ea61dfaac3f88123cc6b21bb81ab']",1.087565442432398881,,False,False,False,polygon,pool doesn't implement recovery mode +0x0889b240a5876aae745ac19f1771853671dc5d36000000000000000000000b3f,0x0889b240a5876aae745ac19f1771853671dc5d36,TEST,,AaveLinear,5.0,"['0x0889b240a5876aae745ac19f1771853671dc5d36', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0xe72b2780d3c57f781bd4e8572e200cd7e9a447c2']",0,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x0bc54e914f53f98d16035f4f0d948f3e09c2fac0000200000000000000000bac,0x0bc54e914f53f98d16035f4f0d948f3e09c2fac0,50USDC-50wstETH-bb-a-WETH-BPT,,Weighted,4.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a']",1.924701210731067663116238398302998,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x0c06e87c7b88d998f645b91c1f53b51294b12bca000100000000000000000bb9,0x0c06e87c7b88d998f645b91c1f53b51294b12bca,STARv2-SuperPoolv2,,Weighted,4.0,"['0xa0fdcdda62c4c6a0109a702a7efe59b4e8807e3f', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a', '0xd289c01528921b5f6d5b111a50a99456d495bf78']",0.001226841389035492259396242440442302,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x10b040038f87219d9b42e025e3bd9b8095c87dd9000000000000000000000b11,0x10b040038f87219d9b42e025e3bd9b8095c87dd9,bb-t-MATIC,2000,ComposableStable,3.0,"['0x10b040038f87219d9b42e025e3bd9b8095c87dd9', '0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x52cc8389c6b93d740325729cc7c958066cee4262']",3.575904848993965641611861929131039,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x117a3d474976274b37b7b94af5dcade5c90c6e85000000000000000000000aca,0x117a3d474976274b37b7b94af5dcade5c90c6e85,bb-t-USDC,,ERC4626Linear,3.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x113f3d54c31ebc71510fd664c8303b34fbc2b355', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x11884da90fb4221b3aa288a7741c51ec4fc43b2f000000000000000000000a5f,0x11884da90fb4221b3aa288a7741c51ec4fc43b2f,TEST,,AaveLinear,4.0,"['0x11884da90fb4221b3aa288a7741c51ec4fc43b2f', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0xb9f8ab3ed3f3acba64bc6cd2dca74b7f38fd7b88']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x1379b816b9be611431d693290289c204720ca56d000100000000000000000b6f,0x1379b816b9be611431d693290289c204720ca56d,33SUSHI-33stMATIC-bb-a-WMATIC-BPT-33GHST,,Weighted,4.0,"['0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a', '0x216690738aac4aa0c4770253ca26a28f0115c595', '0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x150e7b885bdfce974f2abe88a72fdbd692175c6f0002000000000000000009fd,0x150e7b885bdfce974f2abe88a72fdbd692175c6f,FRAX-bb-am-USDC,1500,Stable,1.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.0000000000008097136331599112654523446606996179,0x1b968e31b442c1bd5d76e2e28648bbe78ba588e3,False,False,False,polygon,pool doesn't implement recovery mode +0x16b98793f3e6a17d15931a2c9f98fe28d1c845a1000100000000000000000c1f,0x16b98793f3e6a17d15931a2c9f98fe28d1c845a1,1stMATIC-bb-a-WMATIC-BPT-0QI-50STARD-0fireEP-1bb-am-USD-1vQi-47STARV2,,Weighted,4.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0x580a84c73811e1839f75d86d75d88cca0c241ff4', '0x62f594339830b90ae4c084ae7d223ffafd9658a7', '0x8f1549718b9ad2632dc426ecc89305a83c1f03c8', '0xa2b205f8c0f0e30b3f73b7716a718c53cb8e5cc3', '0xb424dfdf817faf38ff7acf6f2efd2f2a843d1aca', '0xd289c01528921b5f6d5b111a50a99456d495bf78']",1.379073963981319883017908403623018,0xf60de76791c2f09995df52aa1c6e2e7dcf1e75d7,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x178e029173417b1f9c8bc16dcec6f697bc323746000000000000000000000758,0x178e029173417b1f9c8bc16dcec6f697bc323746,bb-am-DAI,,AaveLinear,2.0,"['0x178e029173417b1f9c8bc16dcec6f697bc323746', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xee029120c72b0607344f35b17cdd90025e647b00']",23691.73163559678195005991646923501,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x1aafc31091d93c3ff003cff5d2d8f7ba2e7284250000000000000000000003b3,0x1aafc31091d93c3ff003cff5d2d8f7ba2e728425,LP-USDC-USD+,,ERC4626Linear,1.0,"['0x1aafc31091d93c3ff003cff5d2d8f7ba2e728425', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x5a5c6aa6164750b530b8f7658b827163b3549a4d']",11.627952,,False,False,False,polygon,pool doesn't implement recovery mode +0x216690738aac4aa0c4770253ca26a28f0115c595000000000000000000000b2c,0x216690738aac4aa0c4770253ca26a28f0115c595,stMATIC-bb-a-WMATIC-BPT,1000,ComposableStable,3.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4', '0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7']",16295300.47942583595549991147101029,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0x216d6db0c28204014618482c369d7fbf0a8f3232000100000000000000000b60,0x216d6db0c28204014618482c369d7fbf0a8f3232,9wstETH-9WBTC-9stMATIC-bb-a-WMATIC-BPT-3USDC-70VINU,,Weighted,4.0,"['0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd', '0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6', '0x216690738aac4aa0c4770253ca26a28f0115c595', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xafcdd4f666c84fed1d8bd825aa762e3714f652c9']",0,0xf94cd9064f8de322bc7cbf7f733862bf5345a9a8,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x230ecdb2a7cee56d6889965a023aa0473d6da507000000000000000000000bf3,0x230ecdb2a7cee56d6889965a023aa0473d6da507,bb-a-USDT,,ERC4626Linear,4.0,"['0x230ecdb2a7cee56d6889965a023aa0473d6da507', '0x31f5ac91804a4c0b54c0243789df5208993235a1', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",77.867783,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x252ff6a3a6fd7b5e8e999de8e3f5c3b306ed1401000200000000000000000bec,0x252ff6a3a6fd7b5e8e999de8e3f5c3b306ed1401,97STARD-3bb-t-USD,,Weighted,4.0,"['0x8f1549718b9ad2632dc426ecc89305a83c1f03c8', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a']",0.0003398322205465907639939886932021992,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x25e57f4612912614e6c99616bd2abb9b5ae71e99000000000000000000000bf0,0x25e57f4612912614e6c99616bd2abb9b5ae71e99,bb-a-WETH,,ERC4626Linear,4.0,"['0x25e57f4612912614e6c99616bd2abb9b5ae71e99', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619', '0xd08b78b11df105d2861568959fca28e30c91cf68']",81.52732484869145450702328762273211,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x2645b13fd2c5295296e94a76280b968bdcbbdfed000000000000000000000c11,0x2645b13fd2c5295296e94a76280b968bdcbbdfed,DUSD/bbaUSD,500,ComposableStable,5.0,"['0x03090a9811181a2afe830a3a0b467698ccf3a8b1', '0x2645b13fd2c5295296e94a76280b968bdcbbdfed', '0xec38621e72d86775a89c7422746de1f52bba5320']",223.8688870972712795402315596459824,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0x284eb68520c8fa83361c1a3a5910aec7f873c18b000000000000000000000ac9,0x284eb68520c8fa83361c1a3a5910aec7f873c18b,bb-t-USDT,,ERC4626Linear,3.0,"['0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0x236975da9f0761e9cf3c2b0f705d705e22829886', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x2c8dbe8eb86135d9f2f26d196748c088d47f73e7000200000000000000000a29,0x2c8dbe8eb86135d9f2f26d196748c088d47f73e7,50bb-am-usd-50bb-am-USDC,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.000000000001001806967461475231672783131038453,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x31bccf9e28b94e5dacebaa67fe8bc1603cecd904000000000000000000000a01,0x31bccf9e28b94e5dacebaa67fe8bc1603cecd904,FRAX-bb-am-USDC,1500,ComposableStable,2.0,"['0x31bccf9e28b94e5dacebaa67fe8bc1603cecd904', '0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0,0x1b968e31b442c1bd5d76e2e28648bbe78ba588e3,False,False,False,polygon,pool is already in recovery mode +0x341068a547c3cde3c09e338714010dd01b32f93f000200000000000000000a34,0x341068a547c3cde3c09e338714010dd01b32f93f,20bb-am-usd-80B-stMATIC-Stable,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x8159462d255c1d24915cb51ec361f700174cd994']",0.0000000000009412736806403079765714766124956349,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x3db543faf7a92052de7860c5c9debabee59ed5bd000000000000000000000a62,0x3db543faf7a92052de7860c5c9debabee59ed5bd,4USD,200,ComposableStable,3.0,"['0x3db543faf7a92052de7860c5c9debabee59ed5bd', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xc948ee9a0687c292ac4d8c1e2557ad652d6baf44']",1.010411306713714365152729411366539,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x3dd0843a028c86e0b760b1a76929d1c5ef93a2dd00000000000000000000070d,0x3dd0843a028c86e0b760b1a76929d1c5ef93a2dd,bb-a-testing,,AaveLinear,2.0,"['0x3dd0843a028c86e0b760b1a76929d1c5ef93a2dd', '0x4b93eb9203db75f19305d94f62773bf0d6b91eb5', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063']",0.01,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x3efb91c4f9b103ee45885695c67794591916f34e000200000000000000000b43,0x3efb91c4f9b103ee45885695c67794591916f34e,2BRL-bbamUSD,,Weighted,3.0,"['0xb371aa09f5a110ab69b39a84b5469d29f9b22b76', '0xe19ed40a47f9b0cea4ca6d372df66107758913ec']",9.735475503243590938586195288422043,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x402cfdb7781fa85d52f425352661128250b79e12000000000000000000000be3,0x402cfdb7781fa85d52f425352661128250b79e12,MaticX-bb-a-WMATIC-BPT,2000,ComposableStable,5.0,"['0x402cfdb7781fa85d52f425352661128250b79e12', '0xb0c830dceb4ef55a60192472c20c8bf19df03488', '0xfa68fb4628dff1028cfec22b4162fccd0d45efb6']",3989846.119129558120067766802038904,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0x43894de14462b421372bcfe445fa51b1b4a0ff3d000000000000000000000b36,0x43894de14462b421372bcfe445fa51b1b4a0ff3d,bb-a-WETH,,ERC4626Linear,3.0,"['0x43894de14462b421372bcfe445fa51b1b4a0ff3d', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619', '0xa5bbf0f46b9dc8a43147862ba35c8134eb45f1f5']",370005.2497095720230990087582195512,,True,False,True,polygon,to be put in recovery mode by the dao +0x4739e50b59b552d490d3fdc60d200977a38510c0000000000000000000000b10,0x4739e50b59b552d490d3fdc60d200977a38510c0,bb-t-stMATIC,,ERC4626Linear,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4', '0xf813a454c975ad418e8db18764a2191d182478f4']",4.39845485434729889643063864338734,,False,False,False,polygon,to be put in recovery mode by the dao +0x48e6b98ef6329f8f0a30ebb8c7c960330d64808500000000000000000000075b,0x48e6b98ef6329f8f0a30ebb8c7c960330d648085,bb-am-usd,1472,ComposableStable,1.0,"['0x178e029173417b1f9c8bc16dcec6f697bc323746', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xf93579002dbe8046c43fefe86ec78b1112247bb8', '0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6']",90777.37075226298129123528961793016,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x4a0b73f0d13ff6d43e304a174697e3d5cfd310a400020000000000000000091c,0x4a0b73f0d13ff6d43e304a174697e3d5cfd310a4,2BRLUSD-boosted,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xe22483774bd8611be2ad2f4194078dac9159f4ba']",59.46874830984377401648034806402051,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a000000000000000000000b38,0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a,wstETH-bb-a-WETH-BPT,1000,ComposableStable,3.0,"['0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd', '0x43894de14462b421372bcfe445fa51b1b4a0ff3d', '0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a']",454331.5134702008468075414172046329,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0x4ae3661afa119892f0cc8c43edaf6a94989ac171000000000000000000000c06,0x4ae3661afa119892f0cc8c43edaf6a94989ac171,STARD-bb-t-USD-wUSDR-BPT,300,ComposableStable,5.0,"['0x4ae3661afa119892f0cc8c43edaf6a94989ac171', '0x8f1549718b9ad2632dc426ecc89305a83c1f03c8', '0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a']",0,0xbdcbd23316aaa2adeca774e107868adce38cc69e,False,True,True,polygon,to be put in recovery mode by emergency multisig +0x4ccb966d8246240afb7a1a24628efb930870b1c40002000000000000000009fc,0x4ccb966d8246240afb7a1a24628efb930870b1c4,FRAX-bb-am-USDC,1500,Stable,1.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.0000000000008097136331599112654523446606996179,0x1b968e31b442c1bd5d76e2e28648bbe78ba588e3,False,False,False,polygon,pool doesn't implement recovery mode +0x52cc8389c6b93d740325729cc7c958066cee4262000000000000000000000b0f,0x52cc8389c6b93d740325729cc7c958066cee4262,bb-t-WMATIC,,ERC4626Linear,3.0,"['0x52cc8389c6b93d740325729cc7c958066cee4262', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x45f376811b00922b06f1498a68a1cfd50122dd71']",13.64724733339970591006960721641641,,False,False,False,polygon,to be put in recovery mode by the dao +0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d000000000000000000000b32,0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d,bb-a-USDT,,ERC4626Linear,3.0,"['0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xac69e38ed4298490906a3f8d84aefe883f3e86b5']",0,,True,False,True,polygon,to be put in recovery mode by the dao +0x5bae72b75caab1f260d21bc028c630140607d6e8000000000000000000000ac6,0x5bae72b75caab1f260d21bc028c630140607d6e8,bb-t-USDT,,ERC4626Linear,3.0,"['0x5bae72b75caab1f260d21bc028c630140607d6e8', '0x236975da9f0761e9cf3c2b0f705d705e22829886', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x600bd01b6526611079e12e1ff93aba7a3e34226f0000000000000000000009e4,0x600bd01b6526611079e12e1ff93aba7a3e34226f,wUSDR BSP,50,ComposableStable,2.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x600bd01b6526611079e12e1ff93aba7a3e34226f', '0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b']",0.0000000001703967490467317056418641432269489,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x63ce19ccd39930725b8a3d2733627804718ab83d000000000000000000000bf2,0x63ce19ccd39930725b8a3d2733627804718ab83d,bb-a-DAI,,ERC4626Linear,4.0,"['0x63ce19ccd39930725b8a3d2733627804718ab83d', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xfcf5d4b313e06bb3628eb4fe73320e94039dc4b7']",37.078796461090890937,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x64efad69f099813021b41f4cac6e749fd55e188f000000000000000000000b39,0x64efad69f099813021b41f4cac6e749fd55e188f,bb-a-USDC,,ERC4626Linear,3.0,"['0x64efad69f099813021b41f4cac6e749fd55e188f', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xac69e38ed4298490906a3f8d84aefe883f3e86b5']",0,,True,False,True,polygon,to be put in recovery mode by the dao +0x6933ec1ca55c06a894107860c92acdfd2dd8512f000000000000000000000428,0x6933ec1ca55c06a894107860c92acdfd2dd8512f,USDC-USD+,,ERC4626Linear,1.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x5d9d8509c522a47d9285b9e4e9ec686e6a580850', '0x6933ec1ca55c06a894107860c92acdfd2dd8512f']",0,,False,False,False,polygon,pool doesn't implement recovery mode +0x6abe4e7a497b8293c258389c1b00d177e4f257ed00010000000000000000080d,0x6abe4e7a497b8293c258389c1b00d177e4f257ed,25WMATIC-15WBTC-35bb-am-usd-25WETH,,Weighted,1.0,"['0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619']",0.0001896095550414531192636016902215009,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x6c8c7fc50247a47038015eb1fd5dc105d05dafba000200000000000000000ba0,0x6c8c7fc50247a47038015eb1fd5dc105d05dafba,50stMATIC-bb-a-WMATIC-BPT-50agEUR,,Weighted,4.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0xe0b52e49357fd4daf2c15e02058dce6bc0057db4']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x7079a25dec33be61bbd81b2fb69b468e80d3e72c0000000000000000000009ff,0x7079a25dec33be61bbd81b2fb69b468e80d3e72c,FRAX-bb-am-USDC,1500,ComposableStable,2.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0x7079a25dec33be61bbd81b2fb69b468e80d3e72c', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0,0x1b968e31b442c1bd5d76e2e28648bbe78ba588e3,False,False,False,polygon,pool is already in recovery mode +0x71bd10c2a590b5858f5576550c163976a48af906000000000000000000000b27,0x71bd10c2a590b5858f5576550c163976a48af906,bb-t-MATIC,50,ComposableStable,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x52cc8389c6b93d740325729cc7c958066cee4262', '0x71bd10c2a590b5858f5576550c163976a48af906']",11.02833522310193410695218484898028,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x7c82a23b4c48d796dee36a9ca215b641c6a8709d000000000000000000000acd,0x7c82a23b4c48d796dee36a9ca215b641c6a8709d,bb-t-USDT,,ERC4626Linear,3.0,"['0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0x236975da9f0761e9cf3c2b0f705d705e22829886', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",965453.849456049884362811638398,,False,False,False,polygon,to be put in recovery mode by the dao +0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4000200000000000000000b44,0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4,50stMATIC-BPT-50bbamUSD,,Weighted,3.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0xb371aa09f5a110ab69b39a84b5469d29f9b22b76']",7.177710514159905992538571957530181,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x86aef31951e0a3a54333bd9e72f9a95587d058c5000200000000000000000912,0x86aef31951e0a3a54333bd9e72f9a95587d058c5,BRLUSD-boosted,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xf2f77fe7b8e66571e0fca7104c4d670bf1c8d722']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x882c7a84231484b3e9f3fd45ac04b1eb5d35b076000200000000000000000a91,0x882c7a84231484b3e9f3fd45ac04b1eb5d35b076,BPT,,FX,,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xdc3326e71d45186f113a2f448984ca0e8d201995']",0,,False,False,False,polygon,pool doesn't implement recovery mode +0x894c82800526e0391e709c0983a5aea3718b7f6d000000000000000000000ac5,0x894c82800526e0391e709c0983a5aea3718b7f6d,bb-t-DAI,,ERC4626Linear,3.0,"['0x894c82800526e0391e709c0983a5aea3718b7f6d', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xace2ac58e1e5a7bfe274916c4d82914d490ed4a5']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0x89b28a9494589b09dbccb69911c189f74fdadc5a000000000000000000000b33,0x89b28a9494589b09dbccb69911c189f74fdadc5a,bb-a-USDC,,ERC4626Linear,3.0,"['0x89b28a9494589b09dbccb69911c189f74fdadc5a', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xac69e38ed4298490906a3f8d84aefe883f3e86b5']",344.194494,,True,False,True,polygon,to be put in recovery mode by the dao +0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953000000000000000000000bf1,0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953,bb-a-USDC,,ERC4626Linear,4.0,"['0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xc04296aa4534f5a3bab2d948705bc89317b2f1ed']",69.721646,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x89f1146fee52b5d9166e9c83cc388b6d8f69f1380001000000000000000009e7,0x89f1146fee52b5d9166e9c83cc388b6d8f69f138,17bb-am-DAI-17USDC-30WETH-17DAI-4amDAI-17bb-am-USDC,,Weighted,1.0,"['0x178e029173417b1f9c8bc16dcec6f697bc323746', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xee029120c72b0607344f35b17cdd90025e647b00', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0.00000100000623576586262458764034024848,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f00000000000000000000042d,0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f,bb-a-USDT,,AaveLinear,1.0,"['0x548571a302d354b190ae6e9107552ab4f7fd9dc5', '0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",13.488145,,False,False,False,polygon,pool doesn't implement recovery mode +0x8b58a1e7fff52001c22386c2918d45938a6a9be30001000000000000000008d9,0x8b58a1e7fff52001c22386c2918d45938a6a9be3,20bb-am-usd-401337-40WHALE,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b', '0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca']",0.00000000000008935442769836957094103269904281403,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x8b8225bfedebaf1708c55743acb4ad43fd4d0f21000200000000000000000918,0x8b8225bfedebaf1708c55743acb4ad43fd4d0f21,20bb-am-usd-80WHALE,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xb9585ec9d4c97ad9ded7250bb9a199fe8eed0eca']",0.0000000000001480647732901123061097905303200766,0xe4b89789d94c89a95170de22fd4942104f2c89c5,False,False,False,polygon,pool doesn't implement recovery mode +0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7000000000000000000000b5b,0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7,FRAX-bb-am-USD,2000,ComposableStable,3.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7', '0xb371aa09f5a110ab69b39a84b5469d29f9b22b76']",6317.237426576056910452743114347608,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0x8fd39252d683fdb60bddd4df4b53c9380b496d59000200000000000000000b45,0x8fd39252d683fdb60bddd4df4b53c9380b496d59,50wstETH-BPT-50bbamUSD,,Weighted,3.0,"['0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a', '0xb371aa09f5a110ab69b39a84b5469d29f9b22b76']",0.03019446736485682710065982039789832,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5000000000000000000000bf4,0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5,bb-t-USD,2000,ComposableStable,5.0,"['0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5', '0xae646817e458c0be890b81e8d880206710e3c44e', '0xda1cd1711743e57dd57102e9e61b75f3587703da']",3.032468270339514842890655476287862,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,polygon,to be put in recovery mode by emergency multisig +0x949a12b95ec5b80c375b98963a5d6b33b0d0efff0002000000000000000009fe,0x949a12b95ec5b80c375b98963a5d6b33b0d0efff,FRAX-bb-am-USDC,1500,Stable,1.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",0,0x48586dbea5a0fded55030240f18ce461b5c12f7d,False,False,False,polygon,pool doesn't implement recovery mode +0x9a020bdc2faff5bd24c6acc2020d01ff9f2c627a000000000000000000000ae2,0x9a020bdc2faff5bd24c6acc2020d01ff9f2c627a,Davos-USD+,570,ComposableStable,3.0,"['0x9a020bdc2faff5bd24c6acc2020d01ff9f2c627a', '0x9e34631547adcf2f8cefa0f5f223955c7b137571', '0xec38621e72d86775a89c7422746de1f52bba5320']",5.863966441119975418113883529148739,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0x9cf9358300e34bf9373d30129a1e718d8d058b54000200000000000000000913,0x9cf9358300e34bf9373d30129a1e718d8d058b54,BRLUSD-boosted,,Weighted,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xf2f77fe7b8e66571e0fca7104c4d670bf1c8d722']",0.0000000000002215127931257462607222282537829744,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0x9e34631547adcf2f8cefa0f5f223955c7b137571000000000000000000000ad5,0x9e34631547adcf2f8cefa0f5f223955c7b137571,bb-USD+,,ERC4626Linear,3.0,"['0x9e34631547adcf2f8cefa0f5f223955c7b137571', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x4e36d8006416ea1d939a0eeae73afdaca86bd376']",4.327348,,False,False,False,polygon,to be put in recovery mode by the dao +0xa5a935833f6a5312715f182733eab088452335d7000100000000000000000bee,0xa5a935833f6a5312715f182733eab088452335d7,30WBTC-20stMATIC-bb-a-WMATIC-BPT-13bb-am-usd-25wstETH-bb-a-WETH-BPT-13DPI,,Weighted,4.0,"['0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6', '0x216690738aac4aa0c4770253ca26a28f0115c595', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a', '0x85955046df4668e1dd369d2de9f3aeb98dd2a369']",31.83276421734483274999881604530355,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84000000000000000000000b35,0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84,bb-a-DAI,,ERC4626Linear,3.0,"['0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xdb6df721a6e7fdb97363079b01f107860ac156f9']",297.172175648017965572,,True,False,True,polygon,to be put in recovery mode by the dao +0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1000000000000000000000bf6,0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1,FRAX-bb-am-USD,2000,ComposableStable,5.0,"['0x03090a9811181a2afe830a3a0b467698ccf3a8b1', '0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1']",7.030989263010421696432846995940108,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xab269164a10fab22bc87c39946da06c870b172d6000000000000000000000bfc,0xab269164a10fab22bc87c39946da06c870b172d6,wstETH-bb-a-WETH-BPT,1500,ComposableStable,5.0,"['0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd', '0x25e57f4612912614e6c99616bd2abb9b5ae71e99', '0xab269164a10fab22bc87c39946da06c870b172d6']",35.46827377533484917145449927915823,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3000000000000000000000be2,0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3,stMATIC-bb-a-WMATIC-BPT,2000,ComposableStable,5.0,"['0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4', '0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3', '0xb0c830dceb4ef55a60192472c20c8bf19df03488']",3732920.643269523077672268296465033,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xae646817e458c0be890b81e8d880206710e3c44e000000000000000000000acb,0xae646817e458c0be890b81e8d880206710e3c44e,bb-t-USDC,,ERC4626Linear,3.0,"['0xae646817e458c0be890b81e8d880206710e3c44e', '0x113f3d54c31ebc71510fd664c8303b34fbc2b355', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174']",948454.18907083548974958192495,,False,False,False,polygon,to be put in recovery mode by the dao +0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256000000000000000000000ac8,0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256,bb-t-USDT,,ERC4626Linear,3.0,"['0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256', '0x236975da9f0761e9cf3c2b0f705d705e22829886', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0xb0c830dceb4ef55a60192472c20c8bf19df03488000000000000000000000be1,0xb0c830dceb4ef55a60192472c20c8bf19df03488,bb-a-WMATIC,,ERC4626Linear,4.0,"['0xb0c830dceb4ef55a60192472c20c8bf19df03488', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x6f3913333f2d4b7b01d17bedbce1e4c758b94465']",3617781.751496586065154051716366642,,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be000000000000000000000be4,0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be,truMATIC-bb-a-WMATIC-BPT,1500,ComposableStable,5.0,"['0xb0c830dceb4ef55a60192472c20c8bf19df03488', '0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be', '0xc1381c17d29a22df5c3015c3d83ebd90abd0e6b3']",0.7379784053760742928391006885343977,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xb371aa09f5a110ab69b39a84b5469d29f9b22b76000000000000000000000b37,0xb371aa09f5a110ab69b39a84b5469d29f9b22b76,bb-am-USD,2000,ComposableStable,3.0,"['0x89b28a9494589b09dbccb69911c189f74fdadc5a', '0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84', '0xb371aa09f5a110ab69b39a84b5469d29f9b22b76', '0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4']",1098.744734182226029576400119660657,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a000000000000000000000ace,0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a,bb-t-USD,2000,ComposableStable,3.0,"['0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0xae646817e458c0be890b81e8d880206710e3c44e', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a', '0xda1cd1711743e57dd57102e9e61b75f3587703da']",2289179.456846382786641185639944487,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xb54b2125b711cd183edd3dd09433439d5396165200000000000000000000075e,0xb54b2125b711cd183edd3dd09433439d53961652,Mai BSP,60,ComposableStable,1.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xa3fa99a148fa48d14ed51d610c367c61876997f1', '0xb54b2125b711cd183edd3dd09433439d53961652']",1934.232240736717329945114599327948,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4000000000000000000000b34,0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4,bb-a-USDT,,ERC4626Linear,3.0,"['0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4', '0x715d73a88f2f0115d87cfe5e0f25d756b2f9679f', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f']",472.378088,,True,False,True,polygon,to be put in recovery mode by the dao +0xb878ecce26838fbba4f78cb5b791a0e09152c067000000000000000000000427,0xb878ecce26838fbba4f78cb5b791a0e09152c067,LP-USDC-USD+,,ERC4626Linear,1.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x5d9d8509c522a47d9285b9e4e9ec686e6a580850', '0xb878ecce26838fbba4f78cb5b791a0e09152c067']",0,,False,False,False,polygon,pool doesn't implement recovery mode +0xb973ca96a3f0d61045f53255e319aedb6ed4924000000000000000000000042f,0xb973ca96a3f0d61045f53255e319aedb6ed49240,bb-USD+,570,StablePhantom,1.0,"['0x0503dd6b2d3dd463c9bef67fb5156870af63393e', '0x1aafc31091d93c3ff003cff5d2d8f7ba2e728425', '0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f', '0xb973ca96a3f0d61045f53255e319aedb6ed49240']",21.87454149973833281327513207743944,0xe497285e466227f4e8648209e34b465daa1f90a0,False,False,False,polygon,pool doesn't implement recovery mode +0xbd4e35784c832d0f9049b54cb3609e5907c5b495000100000000000000000b14,0xbd4e35784c832d0f9049b54cb3609e5907c5b495,10wstETH-70PAXG-10bb-am-USDC-10MaticX,,Weighted,3.0,"['0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd', '0x553d3d295e0f695b9228246232edf400ed3560b5', '0xf93579002dbe8046c43fefe86ec78b1112247bb8', '0xfa68fb4628dff1028cfec22b4162fccd0d45efb6']",0.5060741968149999636805287791864388,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xc55ec796a4debe625d95436a3531f4950b11bdcf000000000000000000000b3e,0xc55ec796a4debe625d95436a3531f4950b11bdcf,TEST,,ERC4626Linear,4.0,"['0xc55ec796a4debe625d95436a3531f4950b11bdcf', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x19dfef0a828eec0c85fbb335aa65437417390b85']",0,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xc7e6389e364f4275eb442ef215ed21877028e2af000000000000000000000ac7,0xc7e6389e364f4275eb442ef215ed21877028e2af,bb-t-USD,2000,ComposableStable,3.0,"['0x5bae72b75caab1f260d21bc028c630140607d6e8', '0x894c82800526e0391e709c0983a5aea3718b7f6d', '0xc7e6389e364f4275eb442ef215ed21877028e2af', '0xe1fb90d0d3b47e551d494d7ebe8f209753526b01']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xc83b55bbd005f1f84906545fcdb145dee53523e0000200000000000000000b30,0xc83b55bbd005f1f84906545fcdb145dee53523e0,2BRL-BB-AM-USD,,Weighted,3.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0x8ed728a56e4334cc96a449556ebe57653ea563ea']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xcb21a9e647c95127ed784626485b3104cb28d0e7000000000000000000000425,0xcb21a9e647c95127ed784626485b3104cb28d0e7,USDC-USD+,,ERC4626Linear,1.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x5d9d8509c522a47d9285b9e4e9ec686e6a580850', '0xcb21a9e647c95127ed784626485b3104cb28d0e7']",0,,False,False,False,polygon,pool doesn't implement recovery mode +0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5000000000000000000000b42,0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5,frxETH-bb-a-WETH,120,ComposableStable,3.0,"['0x43894de14462b421372bcfe445fa51b1b4a0ff3d', '0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5', '0xee327f889d5947c1dc1934bb208a1e792f953e96']",27558.10621396665095790840819548289,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761000200000000000000000bf7,0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761,2BRLUSD-boosted,,Weighted,4.0,"['0x03090a9811181a2afe830a3a0b467698ccf3a8b1', '0x42942cdec85078cf0e28e9cb5acd40cb53997ed6']",9.552870214519999117524245216739565,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xd4accb350f9cf59fe3cf7a5ee6ed9ace6a568ea9000200000000000000000b75,0xd4accb350f9cf59fe3cf7a5ee6ed9ace6a568ea9,50bb-a-WETH-50FBX,,Weighted,4.0,"['0x43894de14462b421372bcfe445fa51b1b4a0ff3d', '0xd125443f38a69d776177c2b9c041f462936f8218']",1.868289538299398878224436000148799,0x1d4b30ea0a731e092a8cb0079666bf1edfbc5f58,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xda1cd1711743e57dd57102e9e61b75f3587703da000000000000000000000acc,0xda1cd1711743e57dd57102e9e61b75f3587703da,bb-t-DAI,,ERC4626Linear,3.0,"['0xda1cd1711743e57dd57102e9e61b75f3587703da', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xace2ac58e1e5a7bfe274916c4d82914d490ed4a5']",375283.4255729567750924174575828489,,False,False,False,polygon,to be put in recovery mode by the dao +0xdae301690004946424e41051ace1791083be42a1000000000000000000000b40,0xdae301690004946424e41051ace1791083be42a1,TEST,,YearnLinear,2.0,"['0xdae301690004946424e41051ace1791083be42a1', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x28fa1e40011adf98898e8243b2a48bb21ebf0c29']",0,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xde0a77ab6689b980c30306b10f9131a007e1af81000200000000000000000ba1,0xde0a77ab6689b980c30306b10f9131a007e1af81,50stMATIC-bb-a-WMATIC-BPT-50agEUR,,Weighted,4.0,"['0x216690738aac4aa0c4770253ca26a28f0115c595', '0xe0b52e49357fd4daf2c15e02058dce6bc0057db4']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xe051605a83deae38d26a7346b100ef1ac2ef8a0b0000000000000000000003ce,0xe051605a83deae38d26a7346b100ef1ac2ef8a0b,SP-USDT/DAI/LP-USD+,570,StablePhantom,1.0,"['0x1aafc31091d93c3ff003cff5d2d8f7ba2e728425', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f', '0xe051605a83deae38d26a7346b100ef1ac2ef8a0b']",0.4754816309911924271803221050423458,0xe497285e466227f4e8648209e34b465daa1f90a0,False,False,False,polygon,pool doesn't implement recovery mode +0xe1fb90d0d3b47e551d494d7ebe8f209753526b01000000000000000000000ac4,0xe1fb90d0d3b47e551d494d7ebe8f209753526b01,bb-t-USDC,,ERC4626Linear,3.0,"['0xe1fb90d0d3b47e551d494d7ebe8f209753526b01', '0x113f3d54c31ebc71510fd664c8303b34fbc2b355', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0xe2272cddb2cc408e79e02a73d1db9acc24a843d5000200000000000000000ba7,0xe2272cddb2cc408e79e02a73d1db9acc24a843d5,50wstETH-bb-a-WETH-BPT-50WETH,,Weighted,4.0,"['0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a', '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619']",2.58827159906087276166963562195429,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xe2dc0e0f2c358d6e31836dee69a558ab8d1390e70000000000000000000009fa,0xe2dc0e0f2c358d6e31836dee69a558ab8d1390e7,4USD,200,ComposableStable,2.0,"['0x48e6b98ef6329f8f0a30ebb8c7c960330d648085', '0xc948ee9a0687c292ac4d8c1e2557ad652d6baf44', '0xe2dc0e0f2c358d6e31836dee69a558ab8d1390e7']",1.001700532779911575503462565673632,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7000000000000000000000b29,0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7,bb-a-WMATIC,,ERC4626Linear,3.0,"['0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0x0d6135b2cfbae3b1c58368a93b855fa54fa5aae1']",8585078.34143627773703512123041421,,True,False,True,polygon,to be put in recovery mode by the dao +0xe6909c2f18a29d97217a6146f045e1780606991f000100000000000000000bfe,0xe6909c2f18a29d97217a6146f045e1780606991f,92STARD-4wUSDR-5bb-t-USD,,Weighted,4.0,"['0x8f1549718b9ad2632dc426ecc89305a83c1f03c8', '0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a']",0.005410142517037314317317717185087336,0xbdcbd23316aaa2adeca774e107868adce38cc69e,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xe78b25c06db117fdf8f98583cdaaa6c92b79e917000000000000000000000b2b,0xe78b25c06db117fdf8f98583cdaaa6c92b79e917,MaticX-bb-a-WMATIC-BPT,1000,ComposableStable,3.0,"['0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7', '0xe78b25c06db117fdf8f98583cdaaa6c92b79e917', '0xfa68fb4628dff1028cfec22b4162fccd0d45efb6']",3231695.628111102203885796858974692,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,pool is already in recovery mode +0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6000000000000000000000b3a,0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6,bb-a-DAI,,ERC4626Linear,3.0,"['0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6', '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063', '0xdb6df721a6e7fdb97363079b01f107860ac156f9']",0,,True,False,True,polygon,to be put in recovery mode by the dao +0xeb480dbbdd921cd6c359e4cc4c65ddea6395e2a1000200000000000000000946,0xeb480dbbdd921cd6c359e4cc4c65ddea6395e2a1,50USDC-50bb-am-usd,,Weighted,1.0,"['0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0x48e6b98ef6329f8f0a30ebb8c7c960330d648085']",5.442750060973423061088832069255481,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool doesn't implement recovery mode +0xed35f28f837e96f81240ebb82e0e3f518c7e8a2f000100000000000000000bb5,0xed35f28f837e96f81240ebb82e0e3f518c7e8a2f,STARV2-SuperPoolV1,,Weighted,4.0,"['0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a', '0xa0fdcdda62c4c6a0109a702a7efe59b4e8807e3f', '0xd289c01528921b5f6d5b111a50a99456d495bf78']",0.0002544439714888145192473387854658023,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xf0211cceebe6fcc45052b4e57ee95d233f5669d2000100000000000000000c01,0xf0211cceebe6fcc45052b4e57ee95d233f5669d2,20mooMaiQI-MATIC-20mooPearlTNGBL-USDR-30bb-t-USD-30STARV2,,Weighted,4.0,"['0x944a5c12cd4399abc6883ff1ba40a14c23b2fd37', '0x99ab491471fbcb7d9d2b69729462fe223a4ccdab', '0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a', '0xd289c01528921b5f6d5b111a50a99456d495bf78']",0.0003767985195450274490869033931776553,0xbdcbd23316aaa2adeca774e107868adce38cc69e,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xf22a66046b5307842f21b311ecb4c462c24c0635000000000000000000000b15,0xf22a66046b5307842f21b311ecb4c462c24c0635,bb-t-MATIC,50,ComposableStable,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x52cc8389c6b93d740325729cc7c958066cee4262', '0xf22a66046b5307842f21b311ecb4c462c24c0635']",0.8925367531879208770938227165940718,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,polygon,pool is already in recovery mode +0xf28f17be00f8ca3c9b7f66a4aad5513757fb3341000200000000000000000b5a,0xf28f17be00f8ca3c9b7f66a4aad5513757fb3341,50FRAX-50bb-a-USDC,,Weighted,4.0,"['0x45c32fa6df82ead1e2ef74d17b76547eddfaff89', '0x89b28a9494589b09dbccb69911c189f74fdadc5a']",0.0000000000008091262507730116237237452110804771,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,polygon,to be put in recovery mode by emergency multisig +0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6000000000000000000000bf8,0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6,frxETH-bb-a-WETH,120,ComposableStable,5.0,"['0x25e57f4612912614e6c99616bd2abb9b5ae71e99', '0xee327f889d5947c1dc1934bb208a1e792f953e96', '0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6']",33.51535393546868276016947284184134,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,polygon,to be put in recovery mode by emergency multisig +0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56000000000000000000000445,0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56,bb-USD+,570,StablePhantom,1.0,"['0x0503dd6b2d3dd463c9bef67fb5156870af63393e', '0x6933ec1ca55c06a894107860c92acdfd2dd8512f', '0x8a819a4cabd6efcb4e5504fe8679a1abd831dd8f', '0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56']",0,0xe497285e466227f4e8648209e34b465daa1f90a0,False,False,False,polygon,pool doesn't implement recovery mode +0xf93579002dbe8046c43fefe86ec78b1112247bb8000000000000000000000759,0xf93579002dbe8046c43fefe86ec78b1112247bb8,bb-am-USDC,,AaveLinear,2.0,"['0x221836a597948dce8f3568e044ff123108acc42a', '0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xf93579002dbe8046c43fefe86ec78b1112247bb8']",27048.4114121449393728808697816995,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xf984eb2b8a7ef780245a797a2fccd82f346409ca000000000000000000000a59,0xf984eb2b8a7ef780245a797a2fccd82f346409ca,TEST,,ERC4626Linear,3.0,"['0xf984eb2b8a7ef780245a797a2fccd82f346409ca', '0x040dba12bb3d5c0a73ddfe84c220be3ddba06966', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270']",0,,False,False,False,polygon,to be put in recovery mode by the dao +0xfa2c0bd8327c99db5bde4c9e9e5cbf30946351bb000000000000000000000948,0xfa2c0bd8327c99db5bde4c9e9e5cbf30946351bb,TEST,,AaveLinear,3.0,"['0xfa2c0bd8327c99db5bde4c9e9e5cbf30946351bb', '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', '0xd487eec3ef2be7a3d06d37f406d878dc7c50deef']",0,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea600000000000000000000075a,0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6,bb-am-USDT,,AaveLinear,2.0,"['0x19c60a251e525fa88cd6f3768416a8024e98fc19', '0xc2132d05d31c914a87c6611c10748aeb04b58e8f', '0xff4ce5aaab5a627bf82f4a571ab1ce94aa365ea6']",40080.37499303237580617700893,,False,False,False,polygon,to be put in recovery mode by emergency multisig +0x1ac55c31dac78ca943cb8ebfca5945ce09e036e2000000000000000000000024,0x1ac55c31dac78ca943cb8ebfca5945ce09e036e2,TEST,,AaveLinear,5.0,"['0x1ac55c31dac78ca943cb8ebfca5945ce09e036e2', '0x35d8f4a4c0e95f3d925cb4cbbbf513a0172ed8a4', '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d']",0,,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0x225e0047671939a8d78e08ebd692788abe63f15c000000000000000000000009,0x225e0047671939a8d78e08ebd692788abe63f15c,TEST,,AaveLinear,4.0,"['0x225e0047671939a8d78e08ebd692788abe63f15c', '0xa523f47a933d5020b23629ddf689695aa94612dc', '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d']",0,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0x41211bba6d37f5a74b22e667533f080c7c7f3f1300000000000000000000000b,0x41211bba6d37f5a74b22e667533f080c7c7f3f13,bb-ag-WXDAI,,AaveLinear,4.0,"['0x41211bba6d37f5a74b22e667533f080c7c7f3f13', '0x01ac9005f8446af28b065af87216b85faac5f6e2', '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d']",1017456.984427701888922181505311743,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0x4de21b365d6543661d0e105e579a34b963862497000200000000000000000045,0x4de21b365d6543661d0e105e579a34b963862497,50bbagGNO-50bbagUSD,,Weighted,4.0,"['0xe15cac1df3621e001f76210ab12a7f1a1691481f', '0xffff76a3280e95dc855696111c2562da09db2ac0']",1.242835147104219232712560542451353,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0x581ec1f5e7ced12b186deae32256adb53bdd5b08000000000000000000000001,0x581ec1f5e7ced12b186deae32256adb53bdd5b08,TEST,,AaveLinear,3.0,"['0x581ec1f5e7ced12b186deae32256adb53bdd5b08', '0x5cf4928a3205728bd12830e1840f7db85c62a4b9', '0xe91d153e0b41518a2ce8dd3d7944fa863463a97d']",0,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0x66f33ae36dd80327744207a48122f874634b3ada000100000000000000000013,0x66f33ae36dd80327744207a48122f874634b3ada,agUSD-agWETH-agWBTC,,Weighted,3.0,"['0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50', '0xd4015683b8153666190e0b2bec352580ebc4caca', '0xfedb19ec000d38d92af4b21436870f115db22725']",1495351.572680113283413997930081575,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0xa3ed6f78edc29f69df8a0d16b1d1ccf9871f918c000000000000000000000032,0xa3ed6f78edc29f69df8a0d16b1d1ccf9871f918c,bb-agWETH-wstETH,200,ComposableStable,4.0,"['0x6c76971f98945ae98dd7d4dfca8711ebea946ea6', '0xa3ed6f78edc29f69df8a0d16b1d1ccf9871f918c', '0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,pool is already in recovery mode +0xa611a551b95b205ccd9490657acf7899daee5db700000000000000000000002e,0xa611a551b95b205ccd9490657acf7899daee5db7,EURe-bb-ag-USD,20,ComposableStable,4.0,"['0xa611a551b95b205ccd9490657acf7899daee5db7', '0xcb444e90d8198415266c6a2724b7900fb12fc56e', '0xfedb19ec000d38d92af4b21436870f115db22725']",100760.5625734017362552535110862185,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,pool is already in recovery mode +0xb95829adbacd8af89e291dee78bc09e24de51d6b000000000000000000000043,0xb95829adbacd8af89e291dee78bc09e24de51d6b,bb-ag-USD,2000,ComposableStable,5.0,"['0x41211bba6d37f5a74b22e667533f080c7c7f3f13', '0xb95829adbacd8af89e291dee78bc09e24de51d6b', '0xd16f72b02da5f51231fde542a8b9e2777a478c88', '0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,gnosis-chain,to be put in recovery mode by emergency multisig +0xb973ca96a3f0d61045f53255e319aedb6ed49240000200000000000000000011,0xb973ca96a3f0d61045f53255e319aedb6ed49240,50bbagGNO-50bbagUSD,,Weighted,3.0,"['0xfedb19ec000d38d92af4b21436870f115db22725', '0xffff76a3280e95dc855696111c2562da09db2ac0']",1591892.352001736451752528824506849,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0xba1a5b19d09a79dada039b1f974015c5a989d5fd000100000000000000000046,0xba1a5b19d09a79dada039b1f974015c5a989d5fd,agUSD-agWETH-agWBTC,,Weighted,4.0,"['0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50', '0xd4015683b8153666190e0b2bec352580ebc4caca', '0xe15cac1df3621e001f76210ab12a7f1a1691481f']",8.459244439109160072948286662387411,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf5000000000000000000000000e,0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50,bb-ag-WETH,,AaveLinear,4.0,"['0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50', '0x20e5eb701e8d711d419d444814308f8c2243461f', '0x6a023ccd1ff6f2045c3309768ead9e68f978f6e1']",4956590.612122417437554671428613125,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0xd16f72b02da5f51231fde542a8b9e2777a478c8800000000000000000000000f,0xd16f72b02da5f51231fde542a8b9e2777a478c88,bb-ag-USDT,,AaveLinear,4.0,"['0xd16f72b02da5f51231fde542a8b9e2777a478c88', '0x3d938f90ac251c1bcf6b4e399dd72c8c685a9bbc', '0x4ecaba5870353805a9f068101a40e0f32ed605c6']",2299115.994101036614750776157575,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0xd4015683b8153666190e0b2bec352580ebc4caca00000000000000000000000d,0xd4015683b8153666190e0b2bec352580ebc4caca,bb-ag-WBTC,,AaveLinear,4.0,"['0xd4015683b8153666190e0b2bec352580ebc4caca', '0x110e2d3d4c94596f5698c753d5cd43221d3ec78b', '0x8e5bbbb09ed1ebde8674cda39a0c169401db4252']",500047.1014809538810144042456986701,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0xe15cac1df3621e001f76210ab12a7f1a1691481f000000000000000000000044,0xe15cac1df3621e001f76210ab12a7f1a1691481f,bb-ag-USD,2000,ComposableStable,5.0,"['0x41211bba6d37f5a74b22e667533f080c7c7f3f13', '0xd16f72b02da5f51231fde542a8b9e2777a478c88', '0xe15cac1df3621e001f76210ab12a7f1a1691481f', '0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6']",5.635906728510323846809678037678957,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,gnosis-chain,to be put in recovery mode by emergency multisig +0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd600000000000000000000000a,0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6,bb-ag-USDC,,AaveLinear,4.0,"['0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6', '0x6d9dc1282b9e25a91b266b6b61ef65a38f949f22', '0xddafbb505ad214d7b80b1f830fccc89b60fb7a83']",967650.7494254271748266215743,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56000200000000000000000012,0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56,50bbagGNO-50bbagWETH,,Weighted,3.0,"['0xbb9cd48d33033f5effbedec9dd700c7d7e1dcf50', '0xffff76a3280e95dc855696111c2562da09db2ac0']",8277528.658561564303057877472393088,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,to be put in recovery mode by emergency multisig +0xfedb19ec000d38d92af4b21436870f115db22725000000000000000000000010,0xfedb19ec000d38d92af4b21436870f115db22725,bb-ag-USD,2000,ComposableStable,3.0,"['0x41211bba6d37f5a74b22e667533f080c7c7f3f13', '0xd16f72b02da5f51231fde542a8b9e2777a478c88', '0xe7f88d7d4ef2eb18fcf9dd7216ba7da1c46f3dd6', '0xfedb19ec000d38d92af4b21436870f115db22725']",4284787.960841027037201008867492054,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,gnosis-chain,pool is already in recovery mode +0xffff76a3280e95dc855696111c2562da09db2ac000000000000000000000000c,0xffff76a3280e95dc855696111c2562da09db2ac0,bb-ag-GNO,,AaveLinear,4.0,"['0xffff76a3280e95dc855696111c2562da09db2ac0', '0x9c58bacc331c9aa871afd802db6379a98e80cedb', '0xc1593302979e5e8e16e53c3303bf99ffa319d314']",4927551.385167727194607023009308019,,False,False,False,gnosis-chain,to be put in recovery mode by the dao +0x00fcd3d55085e998e291a0005cedecf58ac14c4000020000000000000000047f,0x00fcd3d55085e998e291a0005cedecf58ac14c40,50STG-50bbaUSD ,,Weighted,4.0,"['0x6694340fc020c5e6b96567843da2df01b2ce1eb6', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",19.17457377526334589183893169046762,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352,0x077794c30afeccdf5ad2abc0588e8cee7197b71a,bb-rf-USD-BPT,2000,ComposableStable,3.0,"['0x077794c30afeccdf5ad2abc0588e8cee7197b71a', '0x5bae72b75caab1f260d21bc028c630140607d6e8', '0x894c82800526e0391e709c0983a5aea3718b7f6d', '0xe1fb90d0d3b47e551d494d7ebe8f209753526b01']",1324.416334872347191073189047448714,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,arbitrum,pool is already in recovery mode +0x117a3d474976274b37b7b94af5dcade5c90c6e85000000000000000000000381,0x117a3d474976274b37b7b94af5dcade5c90c6e85,bb-DAI+,,ERC4626Linear,3.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x1b224a294920c8c7c534115d3dcb02dc9fb7c0a6', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",263006.181421291212528485894239956,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x11884da90fb4221b3aa288a7741c51ec4fc43b2f000000000000000000000353,0x11884da90fb4221b3aa288a7741c51ec4fc43b2f,TEST,,AaveLinear,4.0,"['0x11884da90fb4221b3aa288a7741c51ec4fc43b2f', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1', '0xb9f8ab3ed3f3acba64bc6cd2dca74b7f38fd7b88']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x19b1c92631405a0a9495ccba0becf4f2e8e908bd000000000000000000000410,0x19b1c92631405a0a9495ccba0becf4f2e8e908bd,TEST,,AaveLinear,5.0,"['0x19b1c92631405a0a9495ccba0becf4f2e8e908bd', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1', '0x8b7854708c0c54f9d7d1ff351d4f84e6de0e134c']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x1d7f0d7c8791210c6f13140939ad61969562afc2000000000000000000000499,0x1d7f0d7c8791210c6f13140939ad61969562afc2,STAR/bbaUSD-BPT,200,ComposableStable,5.0,"['0x1d7f0d7c8791210c6f13140939ad61969562afc2', '0xc19669a405067927865b40ea045a2baabbbe57f5', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x1e550b7764da9638fdd32c8a701364de31f45ee800000000000000000000047c,0x1e550b7764da9638fdd32c8a701364de31f45ee8,BPT-DOLA-USD+,570,ComposableStable,5.0,"['0x1e550b7764da9638fdd32c8a701364de31f45ee8', '0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x1fa7f727934226aedab636d62a084931b97d366b000000000000000000000411,0x1fa7f727934226aedab636d62a084931b97d366b,TEST,,YearnLinear,2.0,"['0x1fa7f727934226aedab636d62a084931b97d366b', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1', '0xb15608d28eb43378a7e7780add3fe9bc132baf40']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x23ca0306b21ea71552b148cf3c4db4fc85ae19290000000000000000000000c9,0x23ca0306b21ea71552b148cf3c4db4fc85ae1929,bb-a-testing,,AaveLinear,2.0,"['0x23ca0306b21ea71552b148cf3c4db4fc85ae1929', '0x3209be9c5d9deb285c2db49bf14ea27c443c2b0c', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",0.01,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x284eb68520c8fa83361c1a3a5910aec7f873c18b000000000000000000000380,0x284eb68520c8fa83361c1a3a5910aec7f873c18b,bb-USD+,,ERC4626Linear,3.0,"['0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0xb86fb1047a955c0186c77ff6263819b37b32440d', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",286617.6288008900008801890227019556,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x2a96254ca32020b20ed3506f8f75318da24709f9000200000000000000000456,0x2a96254ca32020b20ed3506f8f75318da24709f9,50bb-DAI+-50bb-USD+,,Weighted,4.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x284eb68520c8fa83361c1a3a5910aec7f873c18b']",0.000000000001004010306836927342485988890477367,0x02e0c302380aa679189d9caa349a0da5a6a19108,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x36942963e3b6f37ecc45a4e72349558514233f0000000000000000000000048a,0x36942963e3b6f37ecc45a4e72349558514233f00,bb-a-MAI,,ERC4626Linear,4.0,"['0x36942963e3b6f37ecc45a4e72349558514233f00', '0x3f56e0c36d275367b8c502090edf38289b3dea0d', '0x5f756955fc1a43d658f4291cf69af16077b5326c']",9.384276229154574442988495782736837,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x3f53a862919ccfa023cb6ace91378a79fb0f6bf500000000000000000000040f,0x3f53a862919ccfa023cb6ace91378a79fb0f6bf5,TEST,,ERC4626Linear,4.0,"['0x3f53a862919ccfa023cb6ace91378a79fb0f6bf5', '0x4be0e4d6184348c5ba845a4010528cfc779610b8', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x40af308e3d07ec769d85eb80afb116525ff4ac99000000000000000000000485,0x40af308e3d07ec769d85eb80afb116525ff4ac99,bb-a-USDCe,,ERC4626Linear,4.0,"['0x40af308e3d07ec769d85eb80afb116525ff4ac99', '0x3a301e7917689b8e8a19498b8a28fc912583490c', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",963325.8409275414024283130644743357,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x418de00ae109e6f874d872658767866d680eaa1900000000000000000000047d,0x418de00ae109e6f874d872658767866d680eaa19,DOLA/bbaUSD-BPT ,200,ComposableStable,5.0,"['0x418de00ae109e6f874d872658767866d680eaa19', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",0.0000000000005007317181275024329588628851857754,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x45c4d1376943ab28802b995acffc04903eb5223f000000000000000000000470,0x45c4d1376943ab28802b995acffc04903eb5223f,wstETH-bb-a-WETH-BPT,5000,ComposableStable,5.0,"['0x45c4d1376943ab28802b995acffc04903eb5223f', '0x5979d7b546e38e414f7e9822514be443a4800529', '0xad28940024117b442a9efb6d0f25c8b59e1c950b']",4239022.303462568737016016832400679,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x4689122d360c4725d244c5cfea22861333d862e6000100000000000000000468,0x4689122d360c4725d244c5cfea22861333d862e6,SuperAura,,Weighted,4.0,"['0x1509706a6c66ca549ff0cb464de88231ddbe213b', '0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",6.56334564988341841427403241086481,0xa3f2463bfb45903df1cd74bf6d9998be9128f7b2,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x4739e50b59b552d490d3fdc60d200977a38510c0000000000000000000000409,0x4739e50b59b552d490d3fdc60d200977a38510c0,bb-a-USDT,,ERC4626Linear,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x3c7680dfe7f732ca0279c39ff30fe2eafdae49db', '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9']",112054.049660538541514471958084,,True,False,True,arbitrum,to be put in recovery mode by the dao +0x49a0e3334496442a9706e481617724e7e37eaa080000000000000000000003ff,0x49a0e3334496442a9706e481617724e7e37eaa08,wstETH-bb-a-WETH-BPT,50,ComposableStable,3.0,"['0x49a0e3334496442a9706e481617724e7e37eaa08', '0x5979d7b546e38e414f7e9822514be443a4800529', '0xda1cd1711743e57dd57102e9e61b75f3587703da']",0.000004549712559866097628038763086646393,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0x519cce718fcd11ac09194cff4517f12d263be067000000000000000000000382,0x519cce718fcd11ac09194cff4517f12d263be067,BPT-USD+,570,ComposableStable,3.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0x519cce718fcd11ac09194cff4517f12d263be067']",2457.739462657448860922176381938596,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,arbitrum,pool is already in recovery mode +0x52cc8389c6b93d740325729cc7c958066cee4262000000000000000000000408,0x52cc8389c6b93d740325729cc7c958066cee4262,bb-a-USDT,,ERC4626Linear,3.0,"['0x52cc8389c6b93d740325729cc7c958066cee4262', '0x0d6135b2cfbae3b1c58368a93b855fa54fa5aae1', '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x567ecfcb22205d279bb8eed3e066989902bf03d5000000000000000000000452,0x567ecfcb22205d279bb8eed3e066989902bf03d5,DOLA/bbaUSD-BPT,200,ComposableStable,4.0,"['0x567ecfcb22205d279bb8eed3e066989902bf03d5', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",53513.3830548319905029963054876517,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0x585d95df0231fa08aeee35ff0c16b92fd0ecdc3300020000000000000000045f,0x585d95df0231fa08aeee35ff0c16b92fd0ecdc33,ChadUSD,,Weighted,4.0,"['0xaf88d065e77c8cc2239327c5edb3a432268e5831', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",0.1302769561757609338752960349634844,0x87ba3a22231f93afc81fe09ee287847c077ffabd,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7000000000000000000000400,0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7,wstETH-bb-a-WETH-BPT,1000,ComposableStable,3.0,"['0x5979d7b546e38e414f7e9822514be443a4800529', '0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xda1cd1711743e57dd57102e9e61b75f3587703da']",70855.82279512616630134818326088307,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0x5bae72b75caab1f260d21bc028c630140607d6e8000000000000000000000350,0x5bae72b75caab1f260d21bc028c630140607d6e8,bb-rf-USDC,,ERC4626Linear,3.0,"['0x5bae72b75caab1f260d21bc028c630140607d6e8', '0xaeacf641a0342330ec681b57c0a6af0b71d5cbff', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",470.1405043235798550027696784129436,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x5ef36da78e4e256d82bf3723e821104ea3b6a06900020000000000000000049c,0x5ef36da78e4e256d82bf3723e821104ea3b6a069,70STAR-30bb-a-USD,,Weighted,4.0,"['0xc19669a405067927865b40ea045a2baabbbe57f5', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x6cb787a419c3e6ee2e9ff365856c29cd10659113000000000000000000000474,0x6cb787a419c3e6ee2e9ff365856c29cd10659113,bb-a-DAI,,ERC4626Linear,4.0,"['0x6cb787a419c3e6ee2e9ff365856c29cd10659113', '0x426e8778bf7f54b0e4fc703dcca6f26a4e5b71de', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",1785751.801026520948396431010829532,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x7c82a23b4c48d796dee36a9ca215b641c6a8709d000000000000000000000406,0x7c82a23b4c48d796dee36a9ca215b641c6a8709d,bb-a-USDC,,ERC4626Linear,3.0,"['0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0xe719aef17468c7e10c0c205be62c990754dff7e5', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",78941.715100737419634483435,,True,False,True,arbitrum,to be put in recovery mode by the dao +0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e3200000000000000000000035d,0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e32,TEST,,YearnLinear,1.0,"['0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e32', '0x1b986138a4f2aa538e79fdec222dad93f8d66703', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x894c82800526e0391e709c0983a5aea3718b7f6d00000000000000000000034f,0x894c82800526e0391e709c0983a5aea3718b7f6d,bb-rf-USDT,,ERC4626Linear,3.0,"['0x894c82800526e0391e709c0983a5aea3718b7f6d', '0x0179bac7493a92ac812730a4c64a0b41b7ea0ecf', '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9']",353.63804628279918,,False,False,False,arbitrum,to be put in recovery mode by the dao +0x970712708a08e8fb152be4d81b2dc586923f5369000200000000000000000479,0x970712708a08e8fb152be4d81b2dc586923f5369,50ARB-50bb-a-USD,,Weighted,4.0,"['0x912ce59144191c1204e64559fe8253a0e49e6548', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",0.00000000000106019627973889115364781238188407,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x9bf7c3b63c77b4b4f2717776f15a4bec1b532a280000000000000000000000c8,0x9bf7c3b63c77b4b4f2717776f15a4bec1b532a28,bb-a-testing,,AaveLinear,2.0,"['0x3209be9c5d9deb285c2db49bf14ea27c443c2b0c', '0x9bf7c3b63c77b4b4f2717776f15a4bec1b532a28', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0x9cebf13bb702f253abf1579294694a1edad00eaa000000000000000000000486,0x9cebf13bb702f253abf1579294694a1edad00eaa,bbaUSDC/bbaUSDCe,5000,ComposableStable,5.0,"['0x40af308e3d07ec769d85eb80afb116525ff4ac99', '0x9cebf13bb702f253abf1579294694a1edad00eaa', '0xbd724eb087d4cc0f61a5fed1fffaf937937e14de']",1804175.697640855529732364217128503,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0x9e34631547adcf2f8cefa0f5f223955c7b137571000000000000000000000407,0x9e34631547adcf2f8cefa0f5f223955c7b137571,bb-a-DAI,,ERC4626Linear,3.0,"['0x9e34631547adcf2f8cefa0f5f223955c7b137571', '0x345a864ac644c82c2d649491c905c71f240700b2', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",118931.2691692035907996609527459407,,True,False,True,arbitrum,to be put in recovery mode by the dao +0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63000200000000000000000412,0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63,50wstETH-BPT-50bbaUSD,,Weighted,3.0,"['0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",3108.685201444772006202467877293022,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xa1ea76c42b2938cfa9abea12357881006c52851300000000000000000000048f,0xa1ea76c42b2938cfa9abea12357881006c528513,DUSD/bbaUSD,500,ComposableStable,5.0,"['0x8ec1877698acf262fe8ad8a295ad94d6ea258988', '0xa1ea76c42b2938cfa9abea12357881006c528513', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",30.12412449564741600528319681603568,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xa50f89e9f439fde2a6fe05883721a00475da3c4500000000000000000000048b,0xa50f89e9f439fde2a6fe05883721a00475da3c45,bb-a-MAI/DOLA,100,ComposableStable,5.0,"['0x36942963e3b6f37ecc45a4e72349558514233f00', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xa50f89e9f439fde2a6fe05883721a00475da3c45']",9.384276229154574442988495782736837,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xa612b6aed2e7ca1a3a4f23fbca9128461bbb7718000000000000000000000274,0xa612b6aed2e7ca1a3a4f23fbca9128461bbb7718,TEST,,AaveLinear,3.0,"['0xa612b6aed2e7ca1a3a4f23fbca9128461bbb7718', '0x16ba924752ef283c7946db8a122a6742aa35c1dc', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",0,,False,False,False,arbitrum,to be put in recovery mode by emergency multisig +0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d000000000000000000000047b,0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d0,BPT-USD+,5000,ComposableStable,5.0,"['0x117a3d474976274b37b7b94af5dcade5c90c6e85', '0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d0']",547160.3787051687582496862770951986,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xad28940024117b442a9efb6d0f25c8b59e1c950b00000000000000000000046f,0xad28940024117b442a9efb6d0f25c8b59e1c950b,bb-a-WETH,,ERC4626Linear,4.0,"['0xad28940024117b442a9efb6d0f25c8b59e1c950b', '0x18468b6eba332285c6d9bb03fe7fb52e108c4596', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",4695966.380469108643436428842446109,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xae646817e458c0be890b81e8d880206710e3c44e00000000000000000000039d,0xae646817e458c0be890b81e8d880206710e3c44e,TEST-bb-f-USDC,,ERC4626Linear,3.0,"['0xae646817e458c0be890b81e8d880206710e3c44e', '0xf08cc15597f091129228982b61928a01ca7cc939', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256000000000000000000000351,0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256,bb-rf-USDC,,ERC4626Linear,3.0,"['0xaef2c171dbe64b0c18977e16e70bfd29d4ee0256', '0xaeacf641a0342330ec681b57c0a6af0b71d5cbff', '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0xbbf9d705b75f408cfcaee91da32966124d2c6f7d00000000000000000000047e,0xbbf9d705b75f408cfcaee91da32966124d2c6f7d,DOLA/bbaUSD-BPT ,200,ComposableStable,5.0,"['0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xbbf9d705b75f408cfcaee91da32966124d2c6f7d', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",160683.347210557716963477154619104,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xbd724eb087d4cc0f61a5fed1fffaf937937e14de000000000000000000000473,0xbd724eb087d4cc0f61a5fed1fffaf937937e14de,bb-a-USDC,,ERC4626Linear,4.0,"['0xbd724eb087d4cc0f61a5fed1fffaf937937e14de', '0xaf88d065e77c8cc2239327c5edb3a432268e5831', '0xbde67e089886ec0e615d6f054bc6f746189a3d56']",2269832.112359229452188943934050649,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xbe0f30217be1e981add883848d0773a86d2d2cd4000000000000000000000471,0xbe0f30217be1e981add883848d0773a86d2d2cd4,rETH-bb-a-WETH-BPT,1500,ComposableStable,5.0,"['0xad28940024117b442a9efb6d0f25c8b59e1c950b', '0xbe0f30217be1e981add883848d0773a86d2d2cd4', '0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8']",4153351.895750884815729910172279226,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xc46be4b8bb6b5a3d3120660efae9c5416318ed40000000000000000000000472,0xc46be4b8bb6b5a3d3120660efae9c5416318ed40,bb-a-USDT,,ERC4626Linear,4.0,"['0xc46be4b8bb6b5a3d3120660efae9c5416318ed40', '0x8b5541b773dd781852940490b0c3dc1a8cdb6a87', '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9']",3852578.954516955257519631718695522,,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xc69771058481551261709d8db44977e9afde645000010000000000000000042a,0xc69771058481551261709d8db44977e9afde6450,40WBTC-40wstETH-bb-a-WETH-BPT-20bb-a-USD,,Weighted,4.0,"['0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f', '0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",986.8337268187333083001177093268084,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389000000000000000000000475,0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389,bb-a-USD,5000,ComposableStable,5.0,"['0x6cb787a419c3e6ee2e9ff365856c29cd10659113', '0xbd724eb087d4cc0f61a5fed1fffaf937937e14de', '0xc46be4b8bb6b5a3d3120660efae9c5416318ed40', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389']",7067320.937708409077408462913145178,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a00000000000000000000049a,0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a,STAR/bbaUSD-BPT,200,ComposableStable,5.0,"['0xc19669a405067927865b40ea045a2baabbbe57f5', '0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389', '0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a']",0,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xcba9ff45cfb9ce238afde32b0148eb82cbe635620000000000000000000003fd,0xcba9ff45cfb9ce238afde32b0148eb82cbe63562,rETH-bb-a-WETH-BPT,600,ComposableStable,3.0,"['0xcba9ff45cfb9ce238afde32b0148eb82cbe63562', '0xda1cd1711743e57dd57102e9e61b75f3587703da', '0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8']",369832.7125360425330749153799539843,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0xcf8b555b7754556cf2ac2165e77ee23ed8517d7900020000000000000000045e,0xcf8b555b7754556cf2ac2165e77ee23ed8517d79,ChadAura,,Weighted,4.0,"['0x1509706a6c66ca549ff0cb464de88231ddbe213b', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",32.00525248466137459260375530138793,0xa3f2463bfb45903df1cd74bf6d9998be9128f7b2,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xd0dc20e6342db2de82692b8dc842301ff9121805000200000000000000000454,0xd0dc20e6342db2de82692b8dc842301ff9121805,80NFTE-20WETH-bb-BPT,,Weighted,4.0,"['0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xb261104a83887ae92392fb5ce5899fcfe5481456']",1018.978642109334428322295314057577,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xd3d5d45f4edf82ba0dfaf061d230766032a10e07000200000000000000000413,0xd3d5d45f4edf82ba0dfaf061d230766032a10e07,50STG-50bbaUSD,,Weighted,3.0,"['0x6694340fc020c5e6b96567843da2df01b2ce1eb6', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",82.61467524212832811102028813517504,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0xd6d20527c7b0669989ee082b9d3a1c63af742290000000000000000000000483,0xd6d20527c7b0669989ee082b9d3a1c63af742290,BPT-DOLA-USD+,570,ComposableStable,5.0,"['0x284eb68520c8fa83361c1a3a5910aec7f873c18b', '0x6a7661795c374c0bfc635934efaddff3a7ee23b6', '0xd6d20527c7b0669989ee082b9d3a1c63af742290']",0.1176084173619242272199728335497353,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,True,True,arbitrum,to be put in recovery mode by emergency multisig +0xda1cd1711743e57dd57102e9e61b75f3587703da0000000000000000000003fc,0xda1cd1711743e57dd57102e9e61b75f3587703da,bb-a-WETH,,ERC4626Linear,3.0,"['0xda1cd1711743e57dd57102e9e61b75f3587703da', '0x18c100415988bef4354effad1188d1c22041b046', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",384157.552146830689897324568007551,,True,False,True,arbitrum,to be put in recovery mode by the dao +0xe1fb90d0d3b47e551d494d7ebe8f209753526b0100000000000000000000034e,0xe1fb90d0d3b47e551d494d7ebe8f209753526b01,bb-rf-DAI,,ERC4626Linear,3.0,"['0xe1fb90d0d3b47e551d494d7ebe8f209753526b01', '0x12f256109e744081f633a827be80e06d97ff7447', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",520.2452126516800389421468736507229,,False,False,False,arbitrum,to be put in recovery mode by the dao +0xee02583596aee94cccb7e8ccd3921d955f17982a00000000000000000000040a,0xee02583596aee94cccb7e8ccd3921d955f17982a,bb-a-USD,2000,ComposableStable,3.0,"['0x4739e50b59b552d490d3fdc60d200977a38510c0', '0x7c82a23b4c48d796dee36a9ca215b641c6a8709d', '0x9e34631547adcf2f8cefa0f5f223955c7b137571', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",309927.0339615491566339885064894121,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,pool is already in recovery mode +0xf984eb2b8a7ef780245a797a2fccd82f346409ca00000000000000000000034d,0xf984eb2b8a7ef780245a797a2fccd82f346409ca,TEST,,ERC4626Linear,3.0,"['0xf984eb2b8a7ef780245a797a2fccd82f346409ca', '0x62aab12865d7281048c337d53a4dde9d770321e6', '0x82af49447d8a07e3bd95bd0d56f35241523fbab1']",0,,False,False,False,arbitrum,to be put in recovery mode by the dao +0xff8f84e8c87532af96aef5582ee451572233678b000200000000000000000478,0xff8f84e8c87532af96aef5582ee451572233678b,50BAL-50ARB,,Weighted,4.0,"['0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7', '0xee02583596aee94cccb7e8ccd3921d955f17982a']",0.00000000004230624354808827202480513643341265,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,arbitrum,to be put in recovery mode by emergency multisig +0x055a4cfa8cd9ced1d7bc9ae5eb46c404c130e46d0000000000000000000000cd,0x055a4cfa8cd9ced1d7bc9ae5eb46c404c130e46d,bb-rf-soWBTC,,ReaperLinear,3.0,"['0x055a4cfa8cd9ced1d7bc9ae5eb46c404c130e46d', '0x68f180fcce6836688e9084f035309e29bf0a2095', '0x73e51b0368ef8bd0070b12dd992c54aa53bcb5f4']",0.9538816409947783450722371307557332,,False,False,False,optimism,to be put in recovery mode by the dao +0x05e7732bf9ae5592e6aa05afe8cd80f7ab0a7bea00020000000000000000005a,0x05e7732bf9ae5592e6aa05afe8cd80f7ab0a7bea,bb-STG-USD,,Weighted,2.0,"['0x296f55f8fb28e498b858d0bcda06d955b2cb3f97', '0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71']",6521.048535949676074696643682145029,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x098f32d98d0d64dba199fc1923d3bf4192e787190001000000000000000000d2,0x098f32d98d0d64dba199fc1923d3bf4192e78719,bb-rf-SOTRI,,Weighted,4.0,"['0x6af3737f6d58ae8bcb9f2b597125d37244596e59', '0x7e9250cc13559eb50536859e8c076ef53e275fb3', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",39230.73030496416579260010817274554,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x11884da90fb4221b3aa288a7741c51ec4fc43b2f00000000000000000000009e,0x11884da90fb4221b3aa288a7741c51ec4fc43b2f,TEST,,AaveLinear,4.0,"['0x11884da90fb4221b3aa288a7741c51ec4fc43b2f', '0x4200000000000000000000000000000000000006', '0xb9f8ab3ed3f3acba64bc6cd2dca74b7f38fd7b88']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0x15873081c0aa67ad5c5dba362169d352e2a128a2000000000000000000000032,0x15873081c0aa67ad5c5dba362169d352e2a128a2,bb-rf-aUSDC,,ReaperLinear,1.0,"['0x15873081c0aa67ad5c5dba362169d352e2a128a2', '0x4f086a048c33f3bf9011dd2265861ce812624f2c', '0x7f5c764cbc14f9669b88837ca1490cca17c31607']",0.290309,,False,False,False,optimism,to be put in recovery mode by the dao +0x1f131ec1175f023ee1534b16fa8ab237c00e238100000000000000000000004a,0x1f131ec1175f023ee1534b16fa8ab237c00e2381,bbrfaUSD-MAI,400,ComposableStable,1.0,"['0x1f131ec1175f023ee1534b16fa8ab237c00e2381', '0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0xdfa46478f9e5ea86d57387849598dbfb2e964b02']",162.6746065483209098126178822809392,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x20715545c15c76461861cb0d6ba96929766d05a50000000000000000000000e8,0x20715545c15c76461861cb0d6ba96929766d05a5,bb-rfUSDT,,ERC4626Linear,4.0,"['0x20715545c15c76461861cb0d6ba96929766d05a5', '0x51868bb8b71fb423b87129908fa039b880c8612d', '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58']",92637.56921897864954054333407113528,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x23ca0306b21ea71552b148cf3c4db4fc85ae19290000000000000000000000ac,0x23ca0306b21ea71552b148cf3c4db4fc85ae1929,bbrfsoUSD,1000,ComposableStable,3.0,"['0x23ca0306b21ea71552b148cf3c4db4fc85ae1929', '0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877', '0xb96c5bada4bf6a70e71795a3197ba94751dae2db', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",355272.8639527863052824894098930154,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x24d9ff56fb09e0f02e74407b12f3264c6e520b5e0000000000000000000000d7,0x24d9ff56fb09e0f02e74407b12f3264c6e520b5e,bb-rfUSDC,,ReaperLinear,3.0,"['0x24d9ff56fb09e0f02e74407b12f3264c6e520b5e', '0x508734b52ba7e04ba068a2d4f67720ac1f63df47', '0x7f5c764cbc14f9669b88837ca1490cca17c31607']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0x2c4a83f98d1cdbeeec825fabacd09c46e2dd3c570002000000000000000000de,0x2c4a83f98d1cdbeeec825fabacd09c46e2dd3c57,ECLP-bb-rf-aWETH-wstETH,,GyroE,1.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0xdd89c7cd0613c1557b2daac6ae663282900204f1']",0.601640207051868241092248350405605,,False,False,False,optimism,pool doesn't implement recovery mode +0x2da61ef3cdcb97efb0f7099c02527fabfe94dee50000000000000000000000c5,0x2da61ef3cdcb97efb0f7099c02527fabfe94dee5,TEST,,ERC4626Linear,4.0,"['0x2da61ef3cdcb97efb0f7099c02527fabfe94dee5', '0x4200000000000000000000000000000000000006', '0x4be0e4d6184348c5ba845a4010528cfc779610b8']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x2e2b8b82123789d895fd79913f6dfa51f5b5a0e60000000000000000000000eb,0x2e2b8b82123789d895fd79913f6dfa51f5b5a0e6,bb-rfWETH,,ERC4626Linear,4.0,"['0x2e2b8b82123789d895fd79913f6dfa51f5b5a0e6', '0x1bad45e92dce078cf68c2141cd34f54a02c92806', '0x4200000000000000000000000000000000000006']",0.944823169436967254518527156686061,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x34557ef500bfc060b8e3f2da58ef725bb7d322020000000000000000000000c7,0x34557ef500bfc060b8e3f2da58ef725bb7d32202,TEST,,YearnLinear,2.0,"['0x34557ef500bfc060b8e3f2da58ef725bb7d32202', '0x4200000000000000000000000000000000000006', '0xb15608d28eb43378a7e7780add3fe9bc132baf40']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x359ea8618c405023fc4b98dab1b01f373792a12600010000000000000000004f,0x359ea8618c405023fc4b98dab1b01f373792a126,bb-WONDER,,Weighted,2.0,"['0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0x97513e975a7fa9072c72c92d8000b0db90b163c5', '0x9bcef72be871e61ed4fbbc7630889bee758eb81d', '0xd0d334b6cfd77acc94bab28c7783982387856449']",620.3837030553627084439465238123416,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x362715c164d606682c4ea7e479633e419d9345eb0001000000000000000000e7,0x362715c164d606682c4ea7e479633e419d9345eb,bb-rf-triyie,,Weighted,4.0,"['0xb85245929dc65b5eddb56c4b4e84b20bce69db35', '0xd32f78f5ae235269c6d2cabbd26a57ff9fd62967', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",0.423712068152036013435468084646347,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x3b2ff5888f1bdedbb45ece9f1c628356388d22cc000000000000000000000045,0x3b2ff5888f1bdedbb45ece9f1c628356388d22cc,bb-rf-aDAI,,ReaperLinear,1.0,"['0x3b2ff5888f1bdedbb45ece9f1c628356388d22cc', '0x75441c125890612f95b5fbf3f73db0c25f5573cd', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0x3c74c4ed512050eb843d89fb9dcd5ebb4668eb6d0002000000000000000000cc,0x3c74c4ed512050eb843d89fb9dcd5ebb4668eb6d,bb-moo-exETHUSDC,,Weighted,4.0,"['0x5bdd8c19b44c3e4a15305601a2c9841bde9366f0', '0x72d6df381cac8c2283c0b13fe5262a1f5e8e8d1b']",3691.479046366278864755059115652561,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x3e9cbffd270ae67abb09d28988e7e785498c73730000000000000000000000ee,0x3e9cbffd270ae67abb09d28988e7e785498c7373,bb-rfOP,,ERC4626Linear,4.0,"['0x3e9cbffd270ae67abb09d28988e7e785498c7373', '0x4200000000000000000000000000000000000042', '0xcecd29559a84e4d4f6467b36bbd4b9c3e6b89771']",1.52103930541825210438361509850148,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x428e1cc3099cf461b87d124957a0d48273f334b100000000000000000000007f,0x428e1cc3099cf461b87d124957a0d48273f334b1,bbrfsoUSD,1000,ComposableStable,1.0,"['0x428e1cc3099cf461b87d124957a0d48273f334b1', '0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877', '0xb96c5bada4bf6a70e71795a3197ba94751dae2db', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",611.4999598584085370328056965988232,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x435272180a4125f3b47c92826f482fc6cc165958000200000000000000000059,0x435272180a4125f3b47c92826f482fc6cc165958,bb-STG-USD,,Weighted,2.0,"['0x15873081c0aa67ad5c5dba362169d352e2a128a2', '0x296f55f8fb28e498b858d0bcda06d955b2cb3f97']",0,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a50000000000000000000000ae,0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a5,BPT-overnight-II,570,ComposableStable,3.0,"['0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a5', '0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809']",36107.14607332570833594808280807417,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x45d37982784f022a9864748b4e8750e1e70196040000000000000000000000c6,0x45d37982784f022a9864748b4e8750e1e7019604,TEST,,AaveLinear,5.0,"['0x45d37982784f022a9864748b4e8750e1e7019604', '0x4200000000000000000000000000000000000006', '0x8b7854708c0c54f9d7d1ff351d4f84e6de0e134c']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337000000000000000000000049,0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337,bb-rf-aUSD-asUSD,400,ComposableStable,1.0,"['0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337', '0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0xc0d7013a05860271a1edb52415cf74bc85b2ace7']",72.46059355189647910405450743321381,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x48ace81c09382bfc08ed102e7eadd37e3b0497520000000000000000000000ec,0x48ace81c09382bfc08ed102e7eadd37e3b049752,bb-rfWSTETH,,ERC4626Linear,4.0,"['0x48ace81c09382bfc08ed102e7eadd37e3b049752', '0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0xb19f4d65882f6c103c332f0bc012354548e9ce0e']",1.070379765362303861428411001768636,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x5470f064a19c65263b3033da3a6124fdf0a9bab80000000000000000000000e6,0x5470f064a19c65263b3033da3a6124fdf0a9bab8,bb-rf-usd,1000,ComposableStable,5.0,"['0x5470f064a19c65263b3033da3a6124fdf0a9bab8', '0x8fe33d737484ca194dedf64aafa8485327fc5372', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",0.03000000688121104974774552910627243,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0x55b1f937b1335be355c82e207fd437182c986ba10000000000000000000000dc,0x55b1f937b1335be355c82e207fd437182c986ba1,bb-rfOP,,ReaperLinear,3.0,"['0x4200000000000000000000000000000000000042', '0x55b1f937b1335be355c82e207fd437182c986ba1', '0xcecd29559a84e4d4f6467b36bbd4b9c3e6b89771']",1.41781260092689730157715033924439,,False,False,False,optimism,to be put in recovery mode by the dao +0x5936497ffe0dba0ef272d6301d65c0122862971a00000000000000000000007a,0x5936497ffe0dba0ef272d6301d65c0122862971a,TEST,,AaveLinear,3.0,"['0x5936497ffe0dba0ef272d6301d65c0122862971a', '0x4200000000000000000000000000000000000006', '0xca96c4f198d343e251b1a01f3eba061ef3da73c1']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x593acbfb1eaf3b6ec86fa60325d816996fdcbc0d000000000000000000000038,0x593acbfb1eaf3b6ec86fa60325d816996fdcbc0d,test-bb-USD-MAI,500,ComposableStable,1.0,"['0x593acbfb1eaf3b6ec86fa60325d816996fdcbc0d', '0x9964b1bd3cc530e5c58ba564e45d45290f677be2', '0xdfa46478f9e5ea86d57387849598dbfb2e964b02']",0,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x5bdd8c19b44c3e4a15305601a2c9841bde9366f00000000000000000000000ca,0x5bdd8c19b44c3e4a15305601a2c9841bde9366f0,bb-moo-exUSDC,,ERC4626Linear,4.0,"['0x5bdd8c19b44c3e4a15305601a2c9841bde9366f0', '0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0xe5e9168b45a90c1e5730da6184cc5901c6e4353f']",1844.060647,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x5d8955a2068ee6d1f7ab17640301219afa4b526f00000000000000000000002d,0x5d8955a2068ee6d1f7ab17640301219afa4b526f,MLP,,AaveLinear,2.0,"['0x5d8955a2068ee6d1f7ab17640301219afa4b526f', '0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0xf4dec519630b2379c191c4d2f3892e3726ba07ff']",0,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd000000000000000000000046,0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd,bb-rf-aUSD,2000,ComposableStable,1.0,"['0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0x888a6195d42a95e80d81e1c506172772a80b80bc', '0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4', '0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71']",4679.897582919654935785870238098938,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x62cf35db540152e94936de63efc90d880d4e241b0000000000000000000000ef,0x62cf35db540152e94936de63efc90d880d4e241b,bb-dolbil,40,ComposableStable,5.0,"['0x20715545c15c76461861cb0d6ba96929766d05a5', '0x62cf35db540152e94936de63efc90d880d4e241b', '0xc5b001dc33727f8f26880b184090d3e252470d45', '0xf970659221bb9d01b615321b63a26e857ffc030b']",224889.5735935707487821381739458952,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0x62de5ca16a618e22f6dfe5315ebd31acb10c44b6000000000000000000000037,0x62de5ca16a618e22f6dfe5315ebd31acb10c44b6,test-bb-WETH,500,ComposableStable,1.0,"['0x62de5ca16a618e22f6dfe5315ebd31acb10c44b6', '0x75062a04a8cc587c588a6bb50bd0cc009da483dc', '0x9bcef72be871e61ed4fbbc7630889bee758eb81d']",3.719974780434756340432291380902083,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x62ec8b26c08ffe504f22390a65e6e3c1e45e987700000000000000000000007e,0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877,bb-rf-soDAI,,ReaperLinear,3.0,"['0x19ca00d242e96a30a1cad12f08c375caa989628f', '0x62ec8b26c08ffe504f22390a65e6e3c1e45e9877', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",145885.6908805564841206669054550522,,False,False,False,optimism,to be put in recovery mode by the dao +0x64cee2338369aa9b36fc756ea231eb9bc242926f0000000000000000000000df,0x64cee2338369aa9b36fc756ea231eb9bc242926f,bb-rf-USD,1000,ComposableStable,4.0,"['0x64cee2338369aa9b36fc756ea231eb9bc242926f', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",1.020003264347709837483775513831405,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x6af3737f6d58ae8bcb9f2b597125d37244596e590000000000000000000000d1,0x6af3737f6d58ae8bcb9f2b597125d37244596e59,bb-rf-soWBTC,,ReaperLinear,3.0,"['0x68f180fcce6836688e9084f035309e29bf0a2095', '0x6af3737f6d58ae8bcb9f2b597125d37244596e59', '0x73e51b0368ef8bd0070b12dd992c54aa53bcb5f4']",9729.055065021491530859555145748988,,False,False,False,optimism,to be put in recovery mode by the dao +0x72d6df381cac8c2283c0b13fe5262a1f5e8e8d1b0000000000000000000000cb,0x72d6df381cac8c2283c0b13fe5262a1f5e8e8d1b,bb-moo-exWETH,,ERC4626Linear,4.0,"['0x72d6df381cac8c2283c0b13fe5262a1f5e8e8d1b', '0x4200000000000000000000000000000000000006', '0x44b1cea4f597f493e2fd0833a9c04dfb1e479ef0']",1848.507650396296080385908141391251,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x75062a04a8cc587c588a6bb50bd0cc009da483dc000000000000000000000035,0x75062a04a8cc587c588a6bb50bd0cc009da483dc,bb-rf-aWETH,,ReaperLinear,1.0,"['0x4200000000000000000000000000000000000006', '0x75062a04a8cc587c588a6bb50bd0cc009da483dc', '0xaa3b2f7c6ffad072ab65d144b349ed44558f1d80']",3.26153419479255177499103781095401,,False,False,False,optimism,to be put in recovery mode by the dao +0x7d6bff131b359da66d92f215fd4e186003bfaa42000000000000000000000058,0x7d6bff131b359da66d92f215fd4e186003bfaa42,BPT-USD+,570,ComposableStable,1.0,"['0x7d6bff131b359da66d92f215fd4e186003bfaa42', '0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xfbf87d2c22d1d298298ab5b0ec957583a2731d15']",0.01843540405694858886102669492248702,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x7e9250cc13559eb50536859e8c076ef53e275fb30000000000000000000000ce,0x7e9250cc13559eb50536859e8c076ef53e275fb3,bb-rf-soWSTETH,,ReaperLinear,3.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0x3573de618ae4a740fb24215d93f4483436fbb2b6', '0x7e9250cc13559eb50536859e8c076ef53e275fb3']",19913.86092509790750914518993054507,,False,False,False,optimism,to be put in recovery mode by the dao +0x7fe29a818438ed2759e30f65c2302295711d66fc0000000000000000000000e5,0x7fe29a818438ed2759e30f65c2302295711d66fc,bb-doldol,40,ComposableStable,5.0,"['0x7fe29a818438ed2759e30f65c2302295711d66fc', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9', '0xc5b001dc33727f8f26880b184090d3e252470d45', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",379.4675066512246567163584912671976,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0x8003eec4add35c6d23eb1ef61b4fa6bbbb23a41a0000000000000000000000d9,0x8003eec4add35c6d23eb1ef61b4fa6bbbb23a41a,bb-rfWETH,,ReaperLinear,3.0,"['0x1bad45e92dce078cf68c2141cd34f54a02c92806', '0x4200000000000000000000000000000000000006', '0x8003eec4add35c6d23eb1ef61b4fa6bbbb23a41a']",0.5632241245022348908214623934104509,,False,False,False,optimism,to be put in recovery mode by the dao +0x8025586ac5fb265a23b9492e7414beccc2059ec30000000000000000000000ed,0x8025586ac5fb265a23b9492e7414beccc2059ec3,bb-rfWBTC,,ERC4626Linear,4.0,"['0x8025586ac5fb265a23b9492e7414beccc2059ec3', '0x68f180fcce6836688e9084f035309e29bf0a2095', '0xf6533b6fcb3f42d2fc91da7c379858ae6ebc7448']",0.8776426804381546269815035015146555,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e320000000000000000000000a6,0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e32,TEST,,YearnLinear,1.0,"['0x81fc12c60ee5b753cf5fd0adc342dfb5f3817e32', '0x1b986138a4f2aa538e79fdec222dad93f8d66703', '0x4200000000000000000000000000000000000006']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0x888a6195d42a95e80d81e1c506172772a80b80bc000000000000000000000044,0x888a6195d42a95e80d81e1c506172772a80b80bc,bb-rf-aDAI,,ReaperLinear,1.0,"['0x75441c125890612f95b5fbf3f73db0c25f5573cd', '0x888a6195d42a95e80d81e1c506172772a80b80bc', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",2141.737602047720332519234083155565,,False,False,False,optimism,to be put in recovery mode by the dao +0x88d07558470484c03d3bb44c3ecc36cafcf43253000000000000000000000051,0x88d07558470484c03d3bb44c3ecc36cafcf43253,bb-USD+,,ERC4626Linear,1.0,"['0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xa348700745d249c3b49d2c2acac9a5ae8155f826']",21237.2918286070846973567796872812,,False,False,False,optimism,pool doesn't implement recovery mode +0x8a2872fd28f42bd9f6559907235e83fbf4167f480001000000000000000000f2,0x8a2872fd28f42bd9f6559907235e83fbf4167f48,bb-rf-triple,,Weighted,4.0,"['0x48ace81c09382bfc08ed102e7eadd37e3b049752', '0x8025586ac5fb265a23b9492e7414beccc2059ec3', '0xf970659221bb9d01b615321b63a26e857ffc030b']",0.4245389414578219031326568825584438,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x8b6d3aa69c1cf47677281691b1abf3831ba1329d0001000000000000000000d0,0x8b6d3aa69c1cf47677281691b1abf3831ba1329d,bb-rf-SOTRI,,Weighted,4.0,"['0x055a4cfa8cd9ced1d7bc9ae5eb46c404c130e46d', '0x7e9250cc13559eb50536859e8c076ef53e275fb3', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",0.4879681537607284258744977186139354,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,to be put in recovery mode by emergency multisig +0x8fe33d737484ca194dedf64aafa8485327fc53720000000000000000000000d8,0x8fe33d737484ca194dedf64aafa8485327fc5372,bb-rfDAI,,ReaperLinear,3.0,"['0x8fe33d737484ca194dedf64aafa8485327fc5372', '0xc0f5da4fb484ce6d8a6832819299f7cd0d15726e', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",1,,False,False,False,optimism,to be put in recovery mode by the dao +0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4000000000000000000000042,0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4,bb-rf-aUSDT,,ReaperLinear,1.0,"['0x61cbcb4278d737471ee54dc689de50e4455978d8', '0x9253d7e1b42fa01ede2c53f3a21b3b4d13239cd4', '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58']",1597.347450392781939663660548,,False,False,False,optimism,to be put in recovery mode by the dao +0x96a78983932b8739d1117b16d30c15607926b0c500000000000000000000006d,0x96a78983932b8739d1117b16d30c15607926b0c5,BPT-USD+,570,ComposableStable,1.0,"['0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0x96a78983932b8739d1117b16d30c15607926b0c5', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809']",0,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x981fb05b738e981ac532a99e77170ecb4bc27aef00010000000000000000004b,0x981fb05b738e981ac532a99e77170ecb4bc27aef,bb-YELLOW,,Weighted,2.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0xa1a77e5d7d769bfbb790a08ec976dc738bf795b9']",6082.852931880304207359187871066891,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0x9964b1bd3cc530e5c58ba564e45d45290f677be2000000000000000000000036,0x9964b1bd3cc530e5c58ba564e45d45290f677be2,test-bb-rf-a-USD,500,ComposableStable,1.0,"['0x15873081c0aa67ad5c5dba362169d352e2a128a2', '0x9964b1bd3cc530e5c58ba564e45d45290f677be2', '0xce9329f138cd6319fcfbd8704e6ae50b6bb04f31']",0.7150200811932676457952634090549335,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xa1a77e5d7d769bfbb790a08ec976dc738bf795b9000000000000000000000047,0xa1a77e5d7d769bfbb790a08ec976dc738bf795b9,bb-rf-aWBTC,,ReaperLinear,1.0,"['0x43cb769d5647cc56f5c1e8df72ab9097dab59cce', '0x68f180fcce6836688e9084f035309e29bf0a2095', '0xa1a77e5d7d769bfbb790a08ec976dc738bf795b9']",1515.844686674411909063853485068007,,False,False,False,optimism,to be put in recovery mode by the dao +0xa4e597c1bd01859b393b124ce18427aa4426a87100000000000000000000004c,0xa4e597c1bd01859b393b124ce18427aa4426a871,bb-rf-grOP,,ReaperLinear,1.0,"['0x229ecbb1d76463e761535dd0e591c34317396131', '0x4200000000000000000000000000000000000042', '0xa4e597c1bd01859b393b124ce18427aa4426a871']",173.8483752477507576727341638223561,,False,False,False,optimism,to be put in recovery mode by the dao +0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c80000000000000000000000ea,0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c8,bb-rfDAI,,ERC4626Linear,4.0,"['0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c8', '0xc0f5da4fb484ce6d8a6832819299f7cd0d15726e', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",1,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0xb0de49429fbb80c635432bbad0b3965b2856017700010000000000000000004e,0xb0de49429fbb80c635432bbad0b3965b28560177,bb-HAPPY,,Weighted,2.0,"['0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd', '0x9bcef72be871e61ed4fbbc7630889bee758eb81d', '0xa4e597c1bd01859b393b124ce18427aa4426a871']",691.2614593266530586617022295747626,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xb1c9ac57594e9b1ec0f3787d9f6744ef4cb0a02400000000000000000000006e,0xb1c9ac57594e9b1ec0f3787d9f6744ef4cb0a024,BPT-USD+,1000,ComposableStable,1.0,"['0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xb1c9ac57594e9b1ec0f3787d9f6744ef4cb0a024', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809']",15714.0948104480709499360440953042,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xb5ad7d6d6f92a77f47f98c28c84893fbccc9480900000000000000000000006c,0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809,bb-DAI+,,ERC4626Linear,1.0,"['0x0b8f31480249cc717081928b8af733f45f6915bb', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1']",30620.1307745355921191389764874584,,False,False,False,optimism,pool doesn't implement recovery mode +0xb85245929dc65b5eddb56c4b4e84b20bce69db350000000000000000000000da,0xb85245929dc65b5eddb56c4b4e84b20bce69db35,bb-rfWSTETH,,ReaperLinear,3.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0xb19f4d65882f6c103c332f0bc012354548e9ce0e', '0xb85245929dc65b5eddb56c4b4e84b20bce69db35']",1.067366000529732111616219844439903,,False,False,False,optimism,to be put in recovery mode by the dao +0xb96c5bada4bf6a70e71795a3197ba94751dae2db00000000000000000000007d,0xb96c5bada4bf6a70e71795a3197ba94751dae2db,bb-rf-soUSDT,,ReaperLinear,3.0,"['0x1e1bf73db9b278a95c9fe9205759956edea8b6ae', '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58', '0xb96c5bada4bf6a70e71795a3197ba94751dae2db']",122633.1698246080656708498429815258,,False,False,False,optimism,to be put in recovery mode by the dao +0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71000000000000000000000043,0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71,bb-rf-aUSDC,,ReaperLinear,1.0,"['0x7ecc9d0ee071c7b86d0ae2101231a3615564009e', '0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0xba7834bb3cd2db888e6a06fb45e82b4225cd0c71']",7462.569247570169399255226520171214,,False,False,False,optimism,to be put in recovery mode by the dao +0xbec621c9ab4ceddcc2a157ca9b5c475fab65f6a40000000000000000000000f3,0xbec621c9ab4ceddcc2a157ca9b5c475fab65f6a4,bpt-onsteady,500,ComposableStable,5.0,"['0x88d07558470484c03d3bb44c3ecc36cafcf43253', '0xb5ad7d6d6f92a77f47f98c28c84893fbccc94809', '0xbec621c9ab4ceddcc2a157ca9b5c475fab65f6a4']",0.2059186743708370309875113810129671,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0xbef1ccaada458a570c37b11a8872988ba1e4fdb90000000000000000000000dd,0xbef1ccaada458a570c37b11a8872988ba1e4fdb9,bb-rfUSDT,,ReaperLinear,3.0,"['0x51868bb8b71fb423b87129908fa039b880c8612d', '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9']",1.479276,,False,False,False,optimism,to be put in recovery mode by the dao +0xc0d7013a05860271a1edb52415cf74bc85b2ace7000000000000000000000048,0xc0d7013a05860271a1edb52415cf74bc85b2ace7,bb-rf-asUSD,,ReaperLinear,1.0,"['0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9', '0xc0d7013a05860271a1edb52415cf74bc85b2ace7', '0xc83c23dba4a008d7df46cd50ad144ae856b6b1be']",26.83255203612018835794222727547169,,False,False,False,optimism,to be put in recovery mode by the dao +0xcb89e89d798a4563d1599ea5508282e13b225b520000000000000000000000e4,0xcb89e89d798a4563d1599ea5508282e13b225b52,bb-rf-usd,1000,ComposableStable,5.0,"['0x8fe33d737484ca194dedf64aafa8485327fc5372', '0xbef1ccaada458a570c37b11a8872988ba1e4fdb9', '0xcb89e89d798a4563d1599ea5508282e13b225b52', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",0.03000000688121104974399464852402405,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a0000000000000000000000f0,0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a,bb-rf-usd,100,ComposableStable,5.0,"['0x20715545c15c76461861cb0d6ba96929766d05a5', '0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c8', '0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a', '0xf970659221bb9d01b615321b63a26e857ffc030b']",0.3000001087324431059423575210994221,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0xce9329f138cd6319fcfbd8704e6ae50b6bb04f31000000000000000000000033,0xce9329f138cd6319fcfbd8704e6ae50b6bb04f31,bb-rf-aDAI,,ReaperLinear,1.0,"['0xce9329f138cd6319fcfbd8704e6ae50b6bb04f31', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1', '0xefcbf2bd622ce716d3344c09e77e7a74071e6ce2']",0.431023610279128434,,False,False,False,optimism,to be put in recovery mode by the dao +0xd0d334b6cfd77acc94bab28c778398238785644900000000000000000000004d,0xd0d334b6cfd77acc94bab28c7783982387856449,bb-rf-grBAL,,ReaperLinear,1.0,"['0x21f95cff4aa2e1dd8f43c6b581f246e5aa67fc9c', '0xd0d334b6cfd77acc94bab28c7783982387856449', '0xfe8b128ba8c78aabc59d4c64cee7ff28e9379921']",162.94910430874289026101728381068,,False,False,False,optimism,to be put in recovery mode by the dao +0xd1af4974fcc995cf36ba40b189caa92964a9126d0000000000000000000000f1,0xd1af4974fcc995cf36ba40b189caa92964a9126d,bb-rf-usd,100,ComposableStable,5.0,"['0x20715545c15c76461861cb0d6ba96929766d05a5', '0xa5d4802b4ce6b745b0c9e1b4a79c093d197869c8', '0xd1af4974fcc995cf36ba40b189caa92964a9126d', '0xf970659221bb9d01b615321b63a26e857ffc030b']",0,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,True,True,optimism,to be put in recovery mode by emergency multisig +0xd32f78f5ae235269c6d2cabbd26a57ff9fd629670000000000000000000000db,0xd32f78f5ae235269c6d2cabbd26a57ff9fd62967,bb-rfWBTC,,ReaperLinear,3.0,"['0x68f180fcce6836688e9084f035309e29bf0a2095', '0xd32f78f5ae235269c6d2cabbd26a57ff9fd62967', '0xf6533b6fcb3f42d2fc91da7c379858ae6ebc7448']",0.9925657759032457720149223052463098,,False,False,False,optimism,to be put in recovery mode by the dao +0xd3e47cbdb2a9c1b1deb857c6415b87fce63a4bf5000000000000000000000034,0xd3e47cbdb2a9c1b1deb857c6415b87fce63a4bf5,bb-rf-aWBTC,,ReaperLinear,1.0,"['0x68f180fcce6836688e9084f035309e29bf0a2095', '0x6fed42d8bf5010e5710927fe0de15f91f916204d', '0xd3e47cbdb2a9c1b1deb857c6415b87fce63a4bf5']",0.1088296865140333417082747518709748,,False,False,False,optimism,to be put in recovery mode by the dao +0xdc2007d9e9a33f50630f26069faab69c25f7758c0000000000000000000000d6,0xdc2007d9e9a33f50630f26069faab69c25f7758c,bb-rfUSDC,,ReaperLinear,3.0,"['0x508734b52ba7e04ba068a2d4f67720ac1f63df47', '0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0xdc2007d9e9a33f50630f26069faab69c25f7758c']",379.444856870654573355188212249002,,False,False,False,optimism,to be put in recovery mode by the dao +0xdd89c7cd0613c1557b2daac6ae663282900204f100000000000000000000003e,0xdd89c7cd0613c1557b2daac6ae663282900204f1,bb-rf-aWETH,,ReaperLinear,1.0,"['0x4200000000000000000000000000000000000006', '0xdd89c7cd0613c1557b2daac6ae663282900204f1', '0xdf2d2c477078d2cd563648abbb913da3db247c00']",4401.512245434445057958773288644363,,False,False,False,optimism,to be put in recovery mode by the dao +0xde45f101250f2ca1c0f8adfc172576d10c12072d00000000000000000000003f,0xde45f101250f2ca1c0f8adfc172576d10c12072d,bb-wstETH,100,ComposableStable,1.0,"['0x1f32b1c2345538c0c6f582fcb022739c4a194ebb', '0xdd89c7cd0613c1557b2daac6ae663282900204f1', '0xde45f101250f2ca1c0f8adfc172576d10c12072d']",8843.346640338622615751207662415963,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xe0b50b0635b90f7021d2618f76ab9a31b92d009400010000000000000000003a,0xe0b50b0635b90f7021d2618f76ab9a31b92d0094,test-bb-TRI,,Weighted,2.0,"['0x9964b1bd3cc530e5c58ba564e45d45290f677be2', '0x9bcef72be871e61ed4fbbc7630889bee758eb81d', '0xd3e47cbdb2a9c1b1deb857c6415b87fce63a4bf5']",0.436758160227846309416041870174395,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xe94c45de980f914904fdcfa9fbbe7c4a0ffe6ac70000000000000000000000e0,0xe94c45de980f914904fdcfa9fbbe7c4a0ffe6ac7,bb-ern-usd,40,ComposableStable,4.0,"['0x64cee2338369aa9b36fc756ea231eb9bc242926f', '0xc5b001dc33727f8f26880b184090d3e252470d45', '0xe94c45de980f914904fdcfa9fbbe7c4a0ffe6ac7']",0.02044740274053691702290945944414894,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c00000000000000000000007c,0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c,bb-rf-soUSDC,,ReaperLinear,3.0,"['0x7f5c764cbc14f9669b88837ca1490cca17c31607', '0x875456b73cbc58aa1be98dfe3b0459e0c0bf7b0e', '0xedcfaf390906a8f91fb35b7bac23f3111dbaee1c']",97065.02075392672028196522585107572,,False,False,False,optimism,to be put in recovery mode by the dao +0xf572649606db4743d217a2fa6e8b8eb79742c24a000000000000000000000039,0xf572649606db4743d217a2fa6e8b8eb79742c24a,test-bb-USD-MAI,500,ComposableStable,1.0,"['0x9964b1bd3cc530e5c58ba564e45d45290f677be2', '0xdfa46478f9e5ea86d57387849598dbfb2e964b02', '0xf572649606db4743d217a2fa6e8b8eb79742c24a']",0.2764284847378814252500217071725279,0xd9e2889ac8c6fff8e94c7c1beeade1352df1a513,False,False,False,optimism,pool is already in recovery mode +0xf970659221bb9d01b615321b63a26e857ffc030b0000000000000000000000e9,0xf970659221bb9d01b615321b63a26e857ffc030b,bb-rfUSDC,,ERC4626Linear,4.0,"['0xf970659221bb9d01b615321b63a26e857ffc030b', '0x508734b52ba7e04ba068a2d4f67720ac1f63df47', '0x7f5c764cbc14f9669b88837ca1490cca17c31607']",91101.62145076537941908909424398577,,False,False,False,optimism,to be put in recovery mode by emergency multisig +0xf984eb2b8a7ef780245a797a2fccd82f346409ca00000000000000000000009d,0xf984eb2b8a7ef780245a797a2fccd82f346409ca,TEST,,ERC4626Linear,3.0,"['0xf984eb2b8a7ef780245a797a2fccd82f346409ca', '0x4200000000000000000000000000000000000006', '0x62aab12865d7281048c337d53a4dde9d770321e6']",0,,False,False,False,optimism,to be put in recovery mode by the dao +0xfbf87d2c22d1d298298ab5b0ec957583a2731d15000000000000000000000052,0xfbf87d2c22d1d298298ab5b0ec957583a2731d15,bb-DAI+,,ERC4626Linear,1.0,"['0x9e88f7cf6c9fc2895dfaa1b7c21d446ec1749f89', '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1', '0xfbf87d2c22d1d298298ab5b0ec957583a2731d15']",0.013181840768287914,,False,False,False,optimism,pool doesn't implement recovery mode +0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa000000000000000000000015,0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa,ggAVAX-bb-a-WAVAX-BPT,1500,ComposableStable,5.0,"['0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa', '0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22', '0xa25eaf2906fa1a3a13edac9b9657108af7b703e3']",2680147.114681451718866688955837083,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,avalanche,to be put in recovery mode by emergency multisig +0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b00020000000000000000001b,0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b,50BTC.b-50bb-a-USD,,Weighted,4.0,"['0x152b9d0fdc40c096757f570a51e494bd4b943e50', '0xa1d14d922a575232066520eda11e27760946c991']",182610.2154041585727953757508359713,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,False,True,avalanche,to be put in recovery mode by the dao +0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22000000000000000000000010,0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22,bb-a-WAVAX,,ERC4626Linear,4.0,"['0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22', '0xa291ae608d8854cdbf9838e28e9badcf10181669', '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7']",3012799.172208745867582573229231357,,True,False,True,avalanche,to be put in recovery mode by emergency multisig +0xa154009870e9b6431305f19b09f9cfd7284d4e7a000000000000000000000013,0xa154009870e9b6431305f19b09f9cfd7284d4e7a,sAVAX-bb-a-WAVAX-BPT,1500,ComposableStable,5.0,"['0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be', '0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22', '0xa154009870e9b6431305f19b09f9cfd7284d4e7a']",3641028.842060200947640589788244428,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,avalanche,to be put in recovery mode by emergency multisig +0xa1d14d922a575232066520eda11e27760946c991000000000000000000000012,0xa1d14d922a575232066520eda11e27760946c991,bb-a-USD,4000,ComposableStable,5.0,"['0xa1d14d922a575232066520eda11e27760946c991', '0xea67626e1f0b59e0d172a04f5702ef90bcdf440c', '0xeb496161099d45b3ea4892408ef745c6182eb56e']",2186807.52460408538674056929299091,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,avalanche,to be put in recovery mode by emergency multisig +0xa826a114b0c7db4d1ff4a4be845a78998c64564c000000000000000000000008,0xa826a114b0c7db4d1ff4a4be845a78998c64564c,TEST,,AaveLinear,5.0,"['0xa826a114b0c7db4d1ff4a4be845a78998c64564c', '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', '0xd8b6b96c88ad626eb6209c4876e3b14f45f8803a']",0,,False,False,False,avalanche,to be put in recovery mode by emergency multisig +0xea67626e1f0b59e0d172a04f5702ef90bcdf440c00000000000000000000000f,0xea67626e1f0b59e0d172a04f5702ef90bcdf440c,bb-a-USDT,,ERC4626Linear,4.0,"['0xea67626e1f0b59e0d172a04f5702ef90bcdf440c', '0x759a2e28d4c3ad394d3125d5ab75a6a5d6782fd9', '0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7']",1489115.286600010909416627299975993,,True,False,True,avalanche,to be put in recovery mode by emergency multisig +0xeb496161099d45b3ea4892408ef745c6182eb56e00000000000000000000000e,0xeb496161099d45b3ea4892408ef745c6182eb56e,bb-a-USDC,,ERC4626Linear,4.0,"['0xeb496161099d45b3ea4892408ef745c6182eb56e', '0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e', '0xe7839ea8ea8543c7f5d9c9d7269c661904729fe7']",697637.7177248869650749011695902328,,True,False,True,avalanche,to be put in recovery mode by emergency multisig +0xece571847897fd61e764d455dc15cf1cd9de8d6f000000000000000000000014,0xece571847897fd61e764d455dc15cf1cd9de8d6f,yyAVAX-bb-a-WAVAX-BPT,1500,ComposableStable,5.0,"['0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22', '0xece571847897fd61e764d455dc15cf1cd9de8d6f', '0xf7d9281e8e363584973f946201b82ba72c965d27']",1114787.75433379875301943271756366,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,True,True,True,avalanche,to be put in recovery mode by emergency multisig +0xed3e2f496cbcd8e212192fb8d1499842f04a0d19000000000000000000000009,0xed3e2f496cbcd8e212192fb8d1499842f04a0d19,TEST,,ERC4626Linear,4.0,"['0xed3e2f496cbcd8e212192fb8d1499842f04a0d19', '0x2ebe41e1aa44d61c206a94474932dadc7d3fd9e3', '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7']",0,,False,False,False,avalanche,to be put in recovery mode by emergency multisig +0x015f34e47ca0a88675098c4d6601817403f07a32000200000000000000000723,0x015f34e47ca0a88675098c4d6601817403f07a32,BPT-ATTN,,Weighted,4.0,"['0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0xd4500f270880488a481de1b3256a19b3d9c8fd7e']",0.5437340352314003297900036280548791,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0x0392ebb4aea38233e5b89acfabf7b418cdea8e4300010000000000000000073f,0x0392ebb4aea38233e5b89acfabf7b418cdea8e43,bb-rf-amazing,,Weighted,4.0,"['0x0615dbba33fe61a31c7ed131bda6655ed76748b1', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",19.19995954301038062874652902620302,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x10441785a928040b456a179691141c48356eb3a50001000000000000000002fa,0x10441785a928040b456a179691141c48356eb3a5,bb-yv-QUARTET,,Weighted,1.0,"['0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",8601.225040005865566662196704862038,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x1352fd97a1828093bf375f62e088bc196facd1ee000000000000000000000404,0x1352fd97a1828093bf375f62e088bc196facd1ee,BPT-Metronome,500,StablePhantom,1.0,"['0x1352fd97a1828093bf375f62e088bc196facd1ee', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xb85a3fc39993b2e7e6874b8700b436c212a00516']",44.63988014513437395756137651493463,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x174d2608b1d794e9078ae2a4861684a38d4e7ae200020000000000000000065b,0x174d2608b1d794e9078ae2a4861684a38d4e7ae2,BPT-YC,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0xb715f8dce2f0e9b894c753711bd55ee3c04dca4e']",0.000000000000001183580249045920990696607215645005,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x198a22e73aadd2d0ea8e2963799d38ae26adee2e000000000000000000000577,0x198a22e73aadd2d0ea8e2963799d38ae26adee2e,test-bb-yv-USD,500,ComposableStable,1.0,"['0x198a22e73aadd2d0ea8e2963799d38ae26adee2e', '0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561']",0,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x1e2576344d49779bdbb71b1b76193d27e6f996b700020000000000000000032d,0x1e2576344d49779bdbb71b1b76193d27e6f996b7,BPT-YPANIC,,Weighted,1.0,"['0xa882ceac81b22fc2bef8e1a82e823e3e9603310b', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",2018.821747212716701993214403094168,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x230112fa4b07234769fc92bd616c8c77f4fe0e5300000000000000000000042a,0x230112fa4b07234769fc92bd616c8c77f4fe0e53,bb-MAI,,Linear,1.0,"['0x230112fa4b07234769fc92bd616c8c77f4fe0e53', '0x80d7413331afb37b30bc0ef6ae9d11a40bcf014b', '0xfb98b335551a418cd0737375a2ea0ded62ea213b']",0.09253469862937990765156413645955055,,False,False,False,fantom,fantom not processed +0x2b4af4bb149cc06f5de580be013e86f81e4d2b30000100000000000000000373,0x2b4af4bb149cc06f5de580be013e86f81e4d2b30,BPT-ETUDE10,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.009617929144862934631687038470568886,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x2e0d46d884af4053787e1838793bf98dcb87488e00020000000000000000072c,0x2e0d46d884af4053787e1838793bf98dcb87488e,bb-rf-FTMUSDC,,Weighted,4.0,"['0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",371.602918748924004578041212717337,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x2ff1552dd09f87d6774229ee5eca60cf570ae291000000000000000000000186,0x2ff1552dd09f87d6774229ee5eca60cf570ae291,bb-yv-DAI,,Linear,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x637ec617c86d24e421328e6caea1d92114892439', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e']",60411.97932575119214184178274808899,,False,False,False,fantom,fantom not processed +0x302b8b64795b064cadc32f74993a6372498608070001000000000000000003e0,0x302b8b64795b064cadc32f74993a637249860807,BPT-BOOOOST,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x71959b131426fdb7af01de8d7d4149ccaf09f8cc', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",61892.37613553919458777771285224356,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x30c016f5cf1d34c1bce4c8c9c302f66a268847fd0001000000000000000003f6,0x30c016f5cf1d34c1bce4c8c9c302f66a268847fd,BPT-XYZ,,Weighted,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x82f0b8b456c1a451378467398982d4834b6829c1', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0x9879abdea01a879644185341f7af7d8343556b7a', '0xde12c7959e1a72bbe8a5f7a1dc8f8eef9ab011b3', '0xfb98b335551a418cd0737375a2ea0ded62ea213b']",3.467384907049128137224876153494702,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x31adc46737ebb8e0e4a391ec6c26438badaee8ca000000000000000000000306,0x31adc46737ebb8e0e4a391ec6c26438badaee8ca,bb-USD-TUSD,570,StablePhantom,1.0,"['0x31adc46737ebb8e0e4a391ec6c26438badaee8ca', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x9879abdea01a879644185341f7af7d8343556b7a']",8.509899709184274290842631497353787,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x3b998ba87b11a1c5bc1770de9793b17a0da61561000000000000000000000185,0x3b998ba87b11a1c5bc1770de9793b17a0da61561,bb-yv-USDC,,Linear,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0xef0210eb96c7eb36af8ed1c20306462764935607']",3358.306091261345240968327003294002,,False,False,False,fantom,fantom not processed +0x3c1420df122ac809b9d1ba77906f833764d6450100000000000000000000071b,0x3c1420df122ac809b9d1ba77906f833764d64501,bb-rfWBTC,,ERC4626Linear,3.0,"['0x3c1420df122ac809b9d1ba77906f833764d64501', '0x321162cd933e2be498cd2267a90534a804051b11', '0xfa985463b7fa975d06cde703ec72efccf293c605']",44.55384356569413214064155184064452,,False,False,False,fantom,fantom not processed +0x3ee7a82c1ecf54a375da1e3452b21ac986f348db00000000000000000000076e,0x3ee7a82c1ecf54a375da1e3452b21ac986f348db,bb-rfDAI,,ERC4626Linear,3.0,"['0x3ee7a82c1ecf54a375da1e3452b21ac986f348db', '0x5427f192137405e6a4143d1c3321359bab2dbd87', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e']",0,,False,False,False,fantom,fantom not processed +0x42538ce99111ea34dc2987b141bd6e9b594752d60000000000000000000002f9,0x42538ce99111ea34dc2987b141bd6e9b594752d6,bb-yv-WBTC,,Linear,1.0,"['0x321162cd933e2be498cd2267a90534a804051b11', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0xd817a100ab8a29fe3dbd925c2eb489d67f758da9']",4108.038501051252920904605016444705,,False,False,False,fantom,fantom not processed +0x44165fad0b7ea0d54d8856765d936d7026f9e2f20000000000000000000002f8,0x44165fad0b7ea0d54d8856765d936d7026f9e2f2,bb-yv-WETH,,Linear,1.0,"['0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x74b23882a30290451a17c44f4f05243b6b58c76d', '0xce2fc0bdc18bd6a4d9a725791a3dee33f3a23bb7']",675.6488544352908418105105162824241,,False,False,False,fantom,fantom not processed +0x442988091cdc18acb8912cd3fe062cda9233f9dc00000000000000000000071d,0x442988091cdc18acb8912cd3fe062cda9233f9dc,bb-rfFUSDT,,ERC4626Linear,3.0,"['0x442988091cdc18acb8912cd3fe062cda9233f9dc', '0x049d68029688eabf473097a2fc38ef61633a3c7a', '0xaea55c0e84af6e5ef8c9b7042fb6ab682516214a']",313.5665705474906023189621768571119,,False,False,False,fantom,fantom not processed +0x49769fe4c796b2775d2e44982cca8cdae36f6671000000000000000000000428,0x49769fe4c796b2775d2e44982cca8cdae36f6671,bb-tinSPIRIT,,Linear,1.0,"['0x49769fe4c796b2775d2e44982cca8cdae36f6671', '0x6caa3e5feba1f83ec1d80ea2eaca37c3421c33a8', '0x80fe671e580cd1d95b2dcd8ea09233df06c81c7b']",0,,False,False,False,fantom,fantom not processed +0x4b18597d3f7c9786a133827572e6a318d55c9fd200020000000000000000028b,0x4b18597d3f7c9786a133827572e6a318d55c9fd2,BPT-BEBIS,,Weighted,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.000001000000122120015723506574147164882,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x4c36a9a52ca3baf1069e3531d57d96c171a66a230002000000000000000001e9,0x4c36a9a52ca3baf1069e3531d57d96c171a66a23,BPT-DFTM,,Weighted,1.0,"['0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x2ff1552dd09f87d6774229ee5eca60cf570ae291']",0.000000000001488769917370168033516163155526826,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x50fd4d5d60d6df38f5e29721bc241b537e182bf40002000000000000000005f9,0x50fd4d5d60d6df38f5e29721bc241b537e182bf4,BPT-CRE8R60,,Weighted,1.0,"['0x2ad402655243203fcfa7dcb62f8a08cc2ba88ae0', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757']",0.00000000000003162465472804611164598704683737794,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x53dd233c2af0147846579010b7c80bf9440afff4000200000000000000000602,0x53dd233c2af0147846579010b7c80bf9440afff4,BPT-EQ,,Weighted,1.0,"['0x3fd3a0c85b70754efc07ac9ac0cbbdce664865a6', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757']",0.000000000000711970704560714404267569472839733,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x547e9ad4b824f09e9cf1c6d163cf308d4cf998120001000000000000000003c9,0x547e9ad4b824f09e9cf1c6d163cf308d4cf99812,BPT-STABLES,,Weighted,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x2b9d3f168905067d88d93f094c938bacee02b0cb', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2', '0xdc301622e621166bd8e82f2ca0a26c13ad0be355']",0.000002956640536221327362491022774355796,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x559d2ac340216e3a6630741147cda6a2cdbc2be10001000000000000000005de,0x559d2ac340216e3a6630741147cda6a2cdbc2be1,BPT-WCB,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x911d1feae99e112b5014cfa60038325d863352f1', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.00000000000009441775120564916539029309260989226,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x55e0499d268858a5e804d7864dc2a6b4ef194c630000000000000000000005b1,0x55e0499d268858a5e804d7864dc2a6b4ef194c63,bb-rf-grFTM,,Linear,2.0,"['0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x55e0499d268858a5e804d7864dc2a6b4ef194c63', '0xc5b29d59d0b4717aa0dd8d11597d9fd3a05d86bb']",0.675469881421458030285384832944569,,False,False,False,fantom,fantom not processed +0x56897add6dc6abccf0ada1eb83d936818bc6ca4d0002000000000000000002e8,0x56897add6dc6abccf0ada1eb83d936818bc6ca4d,bb-BOO-FTM,,Weighted,1.0,"['0x71959b131426fdb7af01de8d7d4149ccaf09f8cc', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",884.2408216402791651732149640732014,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x57793d39e8787ee6295f6a27a81b6cca68e85cdf000000000000000000000397,0x57793d39e8787ee6295f6a27a81b6cca68e85cdf,bb-yv-FRAX-UST-USD,500,StablePhantom,1.0,"['0x57793d39e8787ee6295f6a27a81b6cca68e85cdf', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b']",0.4245860653142808882549165820866066,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x592fa9f9d58065096f2b7838709c116957d7b5cf00020000000000000000043c,0x592fa9f9d58065096f2b7838709c116957d7b5cf,BPT-FTMXUSD,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",17127.50302686574254795272178572229,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x59cfc2307e8b218c242ba61407a07cade73bd6d7000100000000000000000585,0x59cfc2307e8b218c242ba61407a07cade73bd6d7,BPT-YOY,,Weighted,1.0,"['0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",0.000000000005424705336345945593385682633429936,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x5ddb92a5340fd0ead3987d3661afcd6104c3b757000000000000000000000187,0x5ddb92a5340fd0ead3987d3661afcd6104c3b757,bb-yv-USD,2250,StablePhantom,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757']",60570.06772474346501590818031178466,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x624601b34e64a48ef91a6bf888e74ef3eceb1bf9000100000000000000000419,0x624601b34e64a48ef91a6bf888e74ef3eceb1bf9,BPT-GEL,,Weighted,1.0,"['0x15b7c0c907e4c6b9adaaaabc300c08991d6cea05', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x74b23882a30290451a17c44f4f05243b6b58c76d', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",11.64116630044806008994181721941406,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x64b301e21d640f9bef90458b0987d81fb4cf1b9e00020000000000000000022e,0x64b301e21d640f9bef90458b0987d81fb4cf1b9e,bb-yv-FTMUSD,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",8844.928520833000468597006542448603,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x64dea772866476c9f88fbe95ee83664d6c909c1800000000000000000000022c,0x64dea772866476c9f88fbe95ee83664d6c909c18,bb-yv-USD,570,StablePhantom,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x64dea772866476c9f88fbe95ee83664d6c909c18']",0,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x654def39262548cc958d07c82622e23c52411c820000000000000000000006ec,0x654def39262548cc958d07c82622e23c52411c82,bb-rfUSDC,,ERC4626Linear,3.0,"['0x654def39262548cc958d07c82622e23c52411c82', '0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x4455aef4b5d8ffe3436184e8a1ec99607f9a4340']",0.90276,,False,False,False,fantom,fantom not processed +0x685056d3a4e574b163d0fa05a78f1b0b3aa04a8000000000000000000000071a,0x685056d3a4e574b163d0fa05a78f1b0b3aa04a80,bb-rfDAI,,ERC4626Linear,3.0,"['0x685056d3a4e574b163d0fa05a78f1b0b3aa04a80', '0x16e4399fa9ba6e58f12bf2d2bc35f8bde8a9a4ab', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e']",9650.624166849746703660776143589468,,False,False,False,fantom,fantom not processed +0x6da14f5acd58dd5c8e486cfa1dc1c550f5c61c1c0000000000000000000003cf,0x6da14f5acd58dd5c8e486cfa1dc1c550f5c61c1c,bb-yv-4pool,1100,StablePhantom,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x6da14f5acd58dd5c8e486cfa1dc1c550f5c61c1c', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac']",32743.8967994618195529455452557192,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x6e6dc948ce85c62125ff7a1e543d761a88f0a4cb000000000000000000000743,0x6e6dc948ce85c62125ff7a1e543d761a88f0a4cb,bb-rf-sftmxftm,20,ComposableStable,4.0,"['0x6e6dc948ce85c62125ff7a1e543d761a88f0a4cb', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",165081.7233138630449462077022905258,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x71959b131426fdb7af01de8d7d4149ccaf09f8cc0000000000000000000002e7,0x71959b131426fdb7af01de8d7d4149ccaf09f8cc,bb-BOO,,Linear,1.0,"['0x71959b131426fdb7af01de8d7d4149ccaf09f8cc', '0x841fad6eae12c286d1fd18d1d525dffa75c7effe', '0xa48d959ae2e88f1daa7d5f611e01908106de7598']",40484.14862131472987610915504197715,,False,False,False,fantom,fantom not processed +0x7449f09c8f0ed490472d7c14b4eef235620d027000010000000000000000072d,0x7449f09c8f0ed490472d7c14b4eef235620d0270,bb-rf-QUARTET,,Weighted,4.0,"['0x3c1420df122ac809b9d1ba77906f833764d64501', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",217.6654068350619354855637234242664,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x7839210cd48356bdd6fd400e30cfc7140e1e5ad6000100000000000000000449,0x7839210cd48356bdd6fd400e30cfc7140e1e5ad6,BPT-BC,,Weighted,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x814c66594a22404e101fecfecac1012d8d75c156', '0xde5ed76e7c05ec5e4572cfc88d1acea165109e44']",0.000000000007693362539048174570794838730141042,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x78ab08bf98f90f29a09c9b1d85b3b549369b03a3000100000000000000000354,0x78ab08bf98f90f29a09c9b1d85b3b549369b03a3,BPT-FANGYE,,Weighted,1.0,"['0x49894fcc07233957c35462cfc3418ef0cc26129f', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",75813.27123285217655873560366000506,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x7cf76bccfa5d3340d42f08351552f5a59dc6089c000000000000000000000396,0x7cf76bccfa5d3340d42f08351552f5a59dc6089c,bb-yv-FRAX,,Linear,1.0,"['0x357ca46da26e1eefc195287ce9d838a6d5023ef3', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0xdc301622e621166bd8e82f2ca0a26c13ad0be355']",7995.415625498043822567168273441873,,False,False,False,fantom,fantom not processed +0x88e2a551655daadd7e4e67d14cf48bfb413d72680001000000000000000005d2,0x88e2a551655daadd7e4e67d14cf48bfb413d7268,BPT-WV,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x911d1feae99e112b5014cfa60038325d863352f1', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.00000000000005471023501807091058283452573579525,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x8c63702d4d4a521a6a8ecec8ab8f7ce9d1d6299e000200000000000000000443,0x8c63702d4d4a521a6a8ecec8ab8f7ce9d1d6299e,BPT-CRE8RUS,,Weighted,1.0,"['0x2ad402655243203fcfa7dcb62f8a08cc2ba88ae0', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757']",109.5877818548522233113647378268556,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x8d13d878e44e8005efc0db4a831b95f84cb4b1540000000000000000000003c6,0x8d13d878e44e8005efc0db4a831b95f84cb4b154,bb-yv-4pool,500,StablePhantom,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0x8d13d878e44e8005efc0db4a831b95f84cb4b154', '0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac']",8.378022248860810356072697441294318,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x8d7ca68d9a33148daf3ad1a495ed290f4eee013e0001000000000000000003b9,0x8d7ca68d9a33148daf3ad1a495ed290f4eee013e,BPT-YVGMI,,Weighted,1.0,"['0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.0000000001116739044369099338319566033653243,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x8e58191cb73b283af2d7a8ef3f9ce1544db2b8280000000000000000000005ee,0x8e58191cb73b283af2d7a8ef3f9ce1544db2b828,bb-yv-USDC-v2,,Linear,2.0,"['0x8e58191cb73b283af2d7a8ef3f9ce1544db2b828', '0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0xef0210eb96c7eb36af8ed1c20306462764935607']",1,,False,False,False,fantom,fantom not processed +0x904018c54b2382929b15abaae55136a392af4294000100000000000000000729,0x904018c54b2382929b15abaae55136a392af4294,BPT-BBQ,,Weighted,4.0,"['0x3c1420df122ac809b9d1ba77906f833764d64501', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0xc46066ff87b3861ffc5c26ad2e9705190c22aa56']",0.01875605940407762205662589054843574,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0x91e96deddca930669feb699d16cc3416289ec7aa000100000000000000000748,0x91e96deddca930669feb699d16cc3416289ec7aa,bpt-juku1,,Weighted,4.0,"['0x3c1420df122ac809b9d1ba77906f833764d64501', '0x40df1ae6074c35047bff66675488aa2f9f6384f3', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",0.1002809585496682814118569929759765,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f000000000000000000000718,0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f,bb-rfWFTM,,ERC4626Linear,3.0,"['0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x963ffcd14d471e279245ee1570ad64ca78d8e67e']",80301.05979466568521890375450741269,,False,False,False,fantom,fantom not processed +0x93c7defe51d787010babfdb19504d5a72166e11200020000000000000000041c,0x93c7defe51d787010babfdb19504d5a72166e112,BPT-PILLFTM,,Weighted,1.0,"['0xb66b5d38e183de42f21e92abcaf3c712dd5d6286', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",4.114468663228352860835438310924412,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x980dfa8bd5c4a96e1b762fe8154b8a2045dab2d70002000000000000000003ef,0x980dfa8bd5c4a96e1b762fe8154b8a2045dab2d7,BPT-STABLOR,,Weighted,1.0,"['0x6da14f5acd58dd5c8e486cfa1dc1c550f5c61c1c', '0x8b858eaf095a7337de6f9bc212993338773ca34e']",0.000000000001009745085353984958135478072247005,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a300000000000000000000071c,0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3,bb-rfWETH,,ERC4626Linear,3.0,"['0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0x74b23882a30290451a17c44f4f05243b6b58c76d', '0xc052627bc73117d2cb3569f133419550156bdfa1']",148.5651788903864594748931517196873,,False,False,False,fantom,fantom not processed +0xa02c23525f12c677156d076268f4b44e12e38e4d00000000000000000000076d,0xa02c23525f12c677156d076268f4b44e12e38e4d,bb-rfWFTM,,ERC4626Linear,3.0,"['0xa02c23525f12c677156d076268f4b44e12e38e4d', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x963ffcd14d471e279245ee1570ad64ca78d8e67e']",0,,False,False,False,fantom,fantom not processed +0xa10285f445bcb521f1d623300dc4998b02f11c8f00000000000000000000043b,0xa10285f445bcb521f1d623300dc4998b02f11c8f,BPT-alUSD,800,StablePhantom,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xa10285f445bcb521f1d623300dc4998b02f11c8f', '0xb67fa6defce4042070eb1ae1511dcd6dcc6a532e']",1554.195266204432198372808334676126,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xa55318e5d8b7584b8c0e5d3636545310bf9eeb8f000000000000000000000337,0xa55318e5d8b7584b8c0e5d3636545310bf9eeb8f,bb-yv-MOR-USD,1000,StablePhantom,1.0,"['0x22a6ac883b2f5007486c0d0ebc520747c0702ad5', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xa55318e5d8b7584b8c0e5d3636545310bf9eeb8f']",10.259998428015982388583133688632,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xa5eb9166679a85bdb3eaa2941ed35c8d909484db00020000000000000000052b,0xa5eb9166679a85bdb3eaa2941ed35c8d909484db,BPT-MISO,,Weighted,1.0,"['0xb85a3fc39993b2e7e6874b8700b436c212a00516', '0xff042a6f2d50f00413f9f1ee8f55b2bb7e0cab2c']",0.000000000000002832230821166365765327859100996632,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xa8bcdca345e61bad9bb539933a4009f7a6f4b7ea0000000000000000000006eb,0xa8bcdca345e61bad9bb539933a4009f7a6f4b7ea,bb-rfWFTM,,ERC4626Linear,3.0,"['0xa8bcdca345e61bad9bb539933a4009f7a6f4b7ea', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0xe4a54b6a175cf3f6d7a5e8ab7544c3e6e364dbf9']",0,,False,False,False,fantom,fantom not processed +0xa9a1f2f7407ce27bcef35d04c47e079e7d6d399e0000000000000000000005b6,0xa9a1f2f7407ce27bcef35d04c47e079e7d6d399e,bb-rf-grSFTMx,,Linear,2.0,"['0xa9a1f2f7407ce27bcef35d04c47e079e7d6d399e', '0xab30a4956c7d838234e24f1c3e50082c0607f35f', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",0.5056335460978310953483442092855297,,False,False,False,fantom,fantom not processed +0xa9cb51abfbbf2ca877b290e988b453f8bf4ab630000000000000000000000430,0xa9cb51abfbbf2ca877b290e988b453f8bf4ab630,BPT-tMAI,500,StablePhantom,1.0,"['0x230112fa4b07234769fc92bd616c8c77f4fe0e53', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xa9cb51abfbbf2ca877b290e988b453f8bf4ab630']",0.6845253951829936947548743731885914,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xac6286126044e2ee2589d394a102cb54b7ab15a7000200000000000000000629,0xac6286126044e2ee2589d394a102cb54b7ab15a7,BPT-EQUAL,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x3fd3a0c85b70754efc07ac9ac0cbbdce664865a6']",0.4126241419872408539543574435783497,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xb4aae62a3f10717b9c649ed5ce099d981e5dca8c00000000000000000000042b,0xb4aae62a3f10717b9c649ed5ce099d981e5dca8c,bb-t-TAROT,,Linear,1.0,"['0x74d1d2a851e339b8cb953716445be7e8abdf92f4', '0xb4aae62a3f10717b9c649ed5ce099d981e5dca8c', '0xc5e2b037d30a390e62180970b3aa4e91868764cd']",0.275112880064595541279288835564317,,False,False,False,fantom,fantom not processed +0xb85a3fc39993b2e7e6874b8700b436c212a005160000000000000000000003d0,0xb85a3fc39993b2e7e6874b8700b436c212a00516,bb-rf-TUSD,,Linear,1.0,"['0x9879abdea01a879644185341f7af7d8343556b7a', '0xb85a3fc39993b2e7e6874b8700b436c212a00516', '0xbd81110596651c1b00b6a7d9d93e8831e227eae9']",46.76983629121307384072618258774682,,False,False,False,fantom,fantom not processed +0xb8b0e5e9f8b740b557e7c26fcbc753523a718a870000000000000000000006ee,0xb8b0e5e9f8b740b557e7c26fcbc753523a718a87,bb-rfWETH,,ERC4626Linear,3.0,"['0xb8b0e5e9f8b740b557e7c26fcbc753523a718a87', '0x152d62dccc2c7c7930c4483cc2a24fefd23c24c2', '0x74b23882a30290451a17c44f4f05243b6b58c76d']",1.185886390321433440520993439937484,,False,False,False,fantom,fantom not processed +0xba0e9aea8a7fa1daab4edf244191f2387a4e472b000100000000000000000737,0xba0e9aea8a7fa1daab4edf244191f2387a4e472b,bb-rf-ppara,,Weighted,4.0,"['0x10b620b2dbac4faa7d7ffd71da486f5d44cd86f9', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",5125.241979898354220271631919343969,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xc0064b291bd3d4ba0e44ccfc81bf8e7f7a579cd200000000000000000000042c,0xc0064b291bd3d4ba0e44ccfc81bf8e7f7a579cd2,BPT-sFTMx,100,StablePhantom,1.0,"['0xc0064b291bd3d4ba0e44ccfc81bf8e7f7a579cd2', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",1032391.344594829577302115043454816,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xc385e76e575b2d71eb877c27dcc1608f77fada99000000000000000000000719,0xc385e76e575b2d71eb877c27dcc1608f77fada99,bb-rfUSDC,,ERC4626Linear,3.0,"['0xc385e76e575b2d71eb877c27dcc1608f77fada99', '0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0xd55c59da5872de866e39b1e3af2065330ea8acd6']",1122.257706315793657810382431521254,,False,False,False,fantom,fantom not processed +0xc3bf643799237588b7a6b407b3fc028dd4e037d200000000000000000000022d,0xc3bf643799237588b7a6b407b3fc028dd4e037d2,bb-yv-FTM,,Linear,1.0,"['0x0dec85e74a92c52b7f708c4b10207d9560cefaf0', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",448320.7672832157108983498116820765,,False,False,False,fantom,fantom not processed +0xc46066ff87b3861ffc5c26ad2e9705190c22aa56000000000000000000000727,0xc46066ff87b3861ffc5c26ad2e9705190c22aa56,BPT-STEADY4,2000,ComposableStable,4.0,"['0x442988091cdc18acb8912cd3fe062cda9233f9dc', '0x685056d3a4e574b163d0fa05a78f1b0b3aa04a80', '0xc385e76e575b2d71eb877c27dcc1608f77fada99', '0xc46066ff87b3861ffc5c26ad2e9705190c22aa56']",0.05966920423357909585482419642457366,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0xcf87708ea94916d7ccd13b86ce56006472d806fe000100000000000000000378,0xcf87708ea94916d7ccd13b86ce56006472d806fe,BPT-TP,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.000001004476532502308511187319064719594,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xd20547850f3f80204439eafc942ec4780d32f2bd000000000000000000000667,0xd20547850f3f80204439eafc942ec4780d32f2bd,TEST,,ERC4626Linear,3.0,"['0xd20547850f3f80204439eafc942ec4780d32f2bd', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0xe50300f038c1ce260eafb63a40842416f977d10f']",0,,False,False,False,fantom,fantom not processed +0xd3f155d7f421414dc4177e54e4308274dfa8b9680000000000000000000006ed,0xd3f155d7f421414dc4177e54e4308274dfa8b968,bb-rfDAI,,ERC4626Linear,3.0,"['0xd3f155d7f421414dc4177e54e4308274dfa8b968', '0x5427f192137405e6a4143d1c3321359bab2dbd87', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e']",0.1086343510714746843366920141547636,,False,False,False,fantom,fantom not processed +0xd4500f270880488a481de1b3256a19b3d9c8fd7e000000000000000000000710,0xd4500f270880488a481de1b3256a19b3d9c8fd7e,BPT-STEADY,2000,ComposableStable,4.0,"['0x654def39262548cc958d07c82622e23c52411c82', '0xd3f155d7f421414dc4177e54e4308274dfa8b968', '0xd4500f270880488a481de1b3256a19b3d9c8fd7e']",0.3881926594277127067575794775179034,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0xd69959fa7910ceb3a2d359ed33cb8297670b69370000000000000000000005b2,0xd69959fa7910ceb3a2d359ed33cb8297670b6937,bb-rf-sFTMx,500,ComposableStable,1.0,"['0x55e0499d268858a5e804d7864dc2a6b4ef194c63', '0xd69959fa7910ceb3a2d359ed33cb8297670b6937', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1']",0.7556995262987707968837950065920855,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xd90dc295d571adc7575563d892aa96ac3811d21c000200000000000000000402,0xd90dc295d571adc7575563d892aa96ac3811d21c,BPT-FXSUSDC,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x7d016eec9c25232b01f23ef992d98ca97fc2af5a']",1.600681791553114625908841273801706,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xdb455199d96d5513d831f0029bd819597bc9d158000200000000000000000728,0xdb455199d96d5513d831f0029bd819597bc9d158,BPT-ESoM,,Weighted,4.0,"['0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc46066ff87b3861ffc5c26ad2e9705190c22aa56']",0.1000458368552571824407555882782067,0xd80b7da84ed8bc3a8f0a9658096b2587bba9c882,False,False,False,fantom,fantom not processed +0xdc910e2647caae5f63a760b70a2308e1c90d88860000000000000000000006ef,0xdc910e2647caae5f63a760b70a2308e1c90d8886,bb-rfWBTC,,ERC4626Linear,3.0,"['0xdc910e2647caae5f63a760b70a2308e1c90d8886', '0x321162cd933e2be498cd2267a90534a804051b11', '0x660c6ec76bd83f53263681f83cbeb35042dcd1cc']",1.245113421289765362724335602644005,,False,False,False,fantom,fantom not processed +0xdfc65c1f15ad3507754ef0fd4ba67060c108db7e000000000000000000000406,0xdfc65c1f15ad3507754ef0fd4ba67060c108db7e,bb-yv-deiusd,350,StablePhantom,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xde12c7959e1a72bbe8a5f7a1dc8f8eef9ab011b3', '0xdfc65c1f15ad3507754ef0fd4ba67060c108db7e']",33134.89551418729830939529408459287,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xe0042e7ee284ff355622b7660ccb34be114936fa000100000000000000000400,0xe0042e7ee284ff355622b7660ccb34be114936fa,BPT-LUNATIK,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x593ae1d34c8bd7587c11d539e4f42bff242c82af', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.00009064633762770934524814839377923367,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xe191504f9127deb015910768c8a6ac71d185bf91000200000000000000000603,0xe191504f9127deb015910768c8a6ac71d185bf91,BPT-FINE-EQ,,Weighted,1.0,"['0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x3fd3a0c85b70754efc07ac9ac0cbbdce664865a6']",0.2379773444018681431622298993011586,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xe1c86d3908dc524aa3555e56adf973de7d3acdba000100000000000000000267,0xe1c86d3908dc524aa3555e56adf973de7d3acdba,BPT-STAB,,Weighted,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x82f0b8b456c1a451378467398982d4834b6829c1', '0x888ef71766ca594ded1f0fa3ae64ed2941740a20', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e', '0xfb98b335551a418cd0737375a2ea0ded62ea213b']",11.78435729731193903206002050604066,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xea256adb68dffd067d27e95f4ad14eba12e86079000100000000000000000586,0xea256adb68dffd067d27e95f4ad14eba12e86079,BPT-YOY-FBE,,Weighted,1.0,"['0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1', '0xfcef8a994209d6916eb2c86cdd2afd60aa6f54b1']",0.000000000003691744572375067477621922222750666,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xea52e5eb660ba64b9ba10ad9ae55a8156aa4d29a0002000000000000000003a2,0xea52e5eb660ba64b9ba10ad9ae55a8156aa4d29a,BPT-DEHCHO,,Weighted,1.0,"['0x2b9d3f168905067d88d93f094c938bacee02b0cb', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561']",0.000000920696699179437910986462467935042,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xeb38aa08bc00ba68237543d2daa1476b4dfd37f800000000000000000000073a,0xeb38aa08bc00ba68237543d2daa1476b4dfd37f8,bb-rf-ankrEth,5,ComposableStable,4.0,"['0x12d8ce035c5de3ce39b1fdd4c1d5a745eaba3b8c', '0xa0051ab2c3eb7f17758428b02a07cf72eb0ef1a3', '0xeb38aa08bc00ba68237543d2daa1476b4dfd37f8']",0.0009823427523356811589424184259452076,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xecc53ac812123d471360ea3d90023318868b56a5000000000000000000000429,0xecc53ac812123d471360ea3d90023318868b56a5,bb-t-spirit,100,StablePhantom,1.0,"['0x49769fe4c796b2775d2e44982cca8cdae36f6671', '0x5cc61a78f164885776aa610fb0fe1257df78e59b', '0xecc53ac812123d471360ea3d90023318868b56a5']",0.2149858588169862091578602325281395,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xefc1bb0b97780cf7c22059aa7c7e7e88a049d21100020000000000000000041b,0xefc1bb0b97780cf7c22059aa7c7e7e88a049d211,BPT-PILLFTM,,Weighted,1.0,"['0xb66b5d38e183de42f21e92abcaf3c712dd5d6286', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf227486361252907cb768142a2f4caed08a3d7cb0001000000000000000005dd,0xf227486361252907cb768142a2f4caed08a3d7cb,BPT-WVB,,Weighted,1.0,"['0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x911d1feae99e112b5014cfa60038325d863352f1', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.00000000000003928359688138897685281784415217606,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf47f4d59c863c02cbfa3eefe6771b9c9fbe7b97800000000000000000000072b,0xf47f4d59c863c02cbfa3eefe6771b9c9fbe7b978,bb-rf-usd,2000,ComposableStable,4.0,"['0x442988091cdc18acb8912cd3fe062cda9233f9dc', '0x685056d3a4e574b163d0fa05a78f1b0b3aa04a80', '0xc385e76e575b2d71eb877c27dcc1608f77fada99', '0xf47f4d59c863c02cbfa3eefe6771b9c9fbe7b978']",10114.57797581660348997382470557489,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf51776b52dfb5bf9a7f3ed150c20e78d4dff6e640002000000000000000004e9,0xf51776b52dfb5bf9a7f3ed150c20e78d4dff6e64,BPT-BDAI,,Weighted,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x321162cd933e2be498cd2267a90534a804051b11']",0.0002212283399208543389113880833623284,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf52fc9d5aa16c782c9ba51be0da10f1ccf05c702000100000000000000000394,0xf52fc9d5aa16c782c9ba51be0da10f1ccf05c702,BPT-DZ,,Weighted,1.0,"['0x04068da6c83afcfa0e13ba15a6696662335d5b75', '0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83', '0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x3b998ba87b11a1c5bc1770de9793b17a0da61561', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0.000000111946579775348056656356975728721,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf7705cd188a8ac806d28f85bdb13a38313e985ff0000000000000000000005b7,0xf7705cd188a8ac806d28f85bdb13a38313e985ff,bb-rf-FTM-sFTMx,500,ComposableStable,1.0,"['0x55e0499d268858a5e804d7864dc2a6b4ef194c63', '0xa9a1f2f7407ce27bcef35d04c47e079e7d6d399e', '0xf7705cd188a8ac806d28f85bdb13a38313e985ff']",0.629160546844217176788537803958752,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xf86785fe1cefd5069e6df1b4b54b72b1992003110000000000000000000005b3,0xf86785fe1cefd5069e6df1b4b54b72b199200311,bb-rf-sFTMx,500,ComposableStable,1.0,"['0x55e0499d268858a5e804d7864dc2a6b4ef194c63', '0xd7028092c830b5c8fce061af2e593413ebbc1fc1', '0xf86785fe1cefd5069e6df1b4b54b72b199200311']",0.6783193400786713560423116997402185,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac0000000000000000000003c5,0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac,bb-yv-fUSDT,,Linear,1.0,"['0x049d68029688eabf473097a2fc38ef61633a3c7a', '0x148c05caf1bb09b5670f00d511718f733c54bc4c', '0xfe0004ca84bac1d9cf24a3270bf70be7e68e43ac']",4281.784320878540683666651705157868,,False,False,False,fantom,fantom not processed +0xfe48fefea11cceb3bdeb328428f1b25446edad700001000000000000000003d2,0xfe48fefea11cceb3bdeb328428f1b25446edad70,BPT-GOLDRO2,,Weighted,1.0,"['0x2b9d3f168905067d88d93f094c938bacee02b0cb', '0x5ddb92a5340fd0ead3987d3661afcd6104c3b757', '0x846e4d51d7e2043c1a87e0ab7490b93fb940357b', '0xe2d27f06f63d98b8e11b38b5b08a75d0c8dd62b9']",0.000002953629438484890887694036375897862,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xff09914bf3d1f61ff3468cfcc4529665b908afa3000100000000000000000741,0xff09914bf3d1f61ff3468cfcc4529665b908afa3,bpt-grainTrac,,Weighted,4.0,"['0x02838746d9e1413e07ee064fcbada57055417f21', '0x92502cd8e00f5b8e737b2ba203fdd7cd27b23c8f', '0xc385e76e575b2d71eb877c27dcc1608f77fada99']",24.38611214356228919567821620817303,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xff2753aaba51c9f84689b9bd0a21b3cf380a1cff00000000000000000000072e,0xff2753aaba51c9f84689b9bd0a21b3cf380a1cff,bb-rf-alusd,80,ComposableStable,4.0,"['0xb67fa6defce4042070eb1ae1511dcd6dcc6a532e', '0xf47f4d59c863c02cbfa3eefe6771b9c9fbe7b978', '0xff2753aaba51c9f84689b9bd0a21b3cf380a1cff']",10130.25718856942096734478353279705,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xff600724d670727872a1f7483049326c111d993d000100000000000000000448,0xff600724d670727872a1f7483049326c111d993d,BPT-BRIAN,,Weighted,1.0,"['0x2ff1552dd09f87d6774229ee5eca60cf570ae291', '0x42538ce99111ea34dc2987b141bd6e9b594752d6', '0x44165fad0b7ea0d54d8856765d936d7026f9e2f2', '0x7cf76bccfa5d3340d42f08351552f5a59dc6089c', '0x8b858eaf095a7337de6f9bc212993338773ca34e', '0xcde5a11a4acb4ee4c805352cec57e236bdbc3837']",0.000000000008921721361221702400566047607278537,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0xffecea216f0d0d08bfe2cf572e03f217f8a2bf1300020000000000000000041a,0xffecea216f0d0d08bfe2cf572e03f217f8a2bf13,BPT-PILLFTM,,Weighted,1.0,"['0xb66b5d38e183de42f21e92abcaf3c712dd5d6286', '0xc3bf643799237588b7a6b407b3fc028dd4e037d2']",0,0xcd983793adb846dce4830c22f30c7ef0c864a776,False,False,False,fantom,fantom not processed +0x02c9dcb975262719a61f9b40bdf0987ead9add3a000000000000000000000006,0x02c9dcb975262719a61f9b40bdf0987ead9add3a,TEST,,YearnLinear,2.0,"['0x02c9dcb975262719a61f9b40bdf0987ead9add3a', '0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9', '0xdbf7b9f1d2bfba14e42709f84dda3187ee410e38']",0,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x16c9a4d841e88e52b51936106010f27085a529ec00000000000000000000000c,0x16c9a4d841e88e52b51936106010f27085a529ec,bb-o-USDC,,ERC4626Linear,4.0,"['0x16c9a4d841e88e52b51936106010f27085a529ec', '0x3a6789fc7c05a83cfdff5d2f9428ad9868b4ff85', '0xa8ce8aee21bc2a48a5ef670afcc9274c7bbbc035']",1107.358942,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x32be2d0ddeaf3333501b24a28668ce373ba8e763000200000000000000000014,0x32be2d0ddeaf3333501b24a28668ce373ba8e763,B-wstETH BPT/bb-o-USDC,,Weighted,4.0,"['0x16c9a4d841e88e52b51936106010f27085a529ec', '0xe1f2c039a68a216de6dd427be6c60decf405762a']",0.0000000000154660000019235780438078961989982,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x32f03464fdf909fdf3798f87ff3712b10c59bd86000000000000000000000005,0x32f03464fdf909fdf3798f87ff3712b10c59bd86,TEST,,GearboxLinear,2.0,"['0x32f03464fdf909fdf3798f87ff3712b10c59bd86', '0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9', '0x698caed853be9cea96c268f565e2b61d3b2bcda4']",0,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea00000000000000000000000b,0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea,bb-o-USDT,,ERC4626Linear,4.0,"['0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea', '0x1e4a5963abfd975d8c9021ce480b42188849d41d', '0x550d3bb1f77f97e4debb45d4f817d7b9f9a1affb']",3493.655629,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x68a69c596b3839023c0e08d09682314f582314e5000200000000000000000011,0x68a69c596b3839023c0e08d09682314f582314e5,50wstETH-BPT-50-bboUSD,,Weighted,4.0,"['0xe1f2c039a68a216de6dd427be6c60decf405762a', '0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286']",49.22987231117013273341691790555525,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x6f34a44fce1506352a171232163e7716dd073ade000200000000000000000015,0x6f34a44fce1506352a171232163e7716dd073ade,B-rETH-bboUSD,,Weighted,4.0,"['0xb23c20efce6e24acca0cef9b7b7aa196b84ec942', '0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286']",6352.996543535139735960828378394971,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0x9e2d87f904862671eb49cb358e74284762cc9f42000200000000000000000013,0x9e2d87f904862671eb49cb358e74284762cc9f42,B-wstETH/bboUSD,,Weighted,4.0,"['0x5d8cff95d7a57c0bf50b30b43c7cc0d52825d4a9', '0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286']",0.00000000004635474427543447746555803128454482,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0xac4b72c01072a52b73ca71105504f1372efcce0d000000000000000000000003,0xac4b72c01072a52b73ca71105504f1372efcce0d,TEST,,ERC4626Linear,4.0,"['0xac4b72c01072a52b73ca71105504f1372efcce0d', '0x0c6052254551eae3ecac77b01dfcf1025418828f', '0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9']",0,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0xbfd65c6160cfd638a85c645e6e6d8acac5dac935000000000000000000000004,0xbfd65c6160cfd638a85c645e6e6d8acac5dac935,TEST,,AaveLinear,5.0,"['0xbfd65c6160cfd638a85c645e6e6d8acac5dac935', '0x4638ab64022927c9bd5947607459d13f57f1551c', '0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9']",0,,False,False,False,zkevm,to be put in recovery mode by emergency multisig +0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb28600000000000000000000000d,0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286,bb-o-USD,3000,ComposableStable,4.0,"['0x16c9a4d841e88e52b51936106010f27085a529ec', '0x4b718e0e2fea1da68b763cd50c446fba03ceb2ea', '0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286']",4576.256689732391188863888902474363,0xba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1ba1b,False,False,False,zkevm,pool is already in recovery mode diff --git a/BIPs/00notGov/08-2023-mitigation/fee_amp/1-CSP3.0-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json b/BIPs/00notGov/08-2023-mitigation/fee_amp/1-CSP3.0-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json new file mode 100644 index 000000000..d88ace634 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/fee_amp/1-CSP3.0-0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6.json @@ -0,0 +1,215 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6", + "transactions": [ + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x133d241F225750D2c92948E464A5a80111920331]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x133d241F225750D2c92948E464A5a80111920331", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "101", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x50Cf90B954958480b8DF7958A9E965752F627124]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x50Cf90B954958480b8DF7958A9E965752F627124", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "fees", + "type": "uint256[]" + } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x99c88AD7dc566616548adde8ED3eFfa730eB6C34]", + "fees": "[100000000000000000]" + } + }, + { + "to": "0x99c88AD7dc566616548adde8ED3eFfa730eB6C34", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/fee_amp/10-CSP3.0-0x09Df1626110803C7b3b07085Ef1E053494155089.json b/BIPs/00notGov/08-2023-mitigation/fee_amp/10-CSP3.0-0x09Df1626110803C7b3b07085Ef1E053494155089.json new file mode 100644 index 000000000..11f3dd638 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/fee_amp/10-CSP3.0-0x09Df1626110803C7b3b07085Ef1E053494155089.json @@ -0,0 +1,103 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "transactions": [ + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x23Ca0306B21ea71552B148cf3c4db4Fc85AE1929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "501", + "endTime": "1692921600" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x43da214fab3315aA6c02e0B8f2BfB7Ef2E3C60A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "286", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/fee_amp/100-CSP3.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json b/BIPs/00notGov/08-2023-mitigation/fee_amp/100-CSP3.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json new file mode 100644 index 000000000..a4cbab3a4 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/fee_amp/100-CSP3.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "transactions": [ + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xFEdb19Ec000d38d92Af4B21436870F115db22725", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/fee_amp/100-CSP4.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json b/BIPs/00notGov/08-2023-mitigation/fee_amp/100-CSP4.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json new file mode 100644 index 000000000..e907c1328 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/fee_amp/100-CSP4.0-0x14969B55a675d13a1700F71A37511bc22D90155a.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "transactions": [ + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xA611A551b95b205ccD9490657aCf7899daee5DB7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "11", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/fee_amp/1101-CSP4.0-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json b/BIPs/00notGov/08-2023-mitigation/fee_amp/1101-CSP4.0-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json new file mode 100644 index 000000000..7b6a258c1 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/fee_amp/1101-CSP4.0-0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "transactions": [ + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1501", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/fee_amp/137-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json b/BIPs/00notGov/08-2023-mitigation/fee_amp/137-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json new file mode 100644 index 000000000..b50b97cef --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/fee_amp/137-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "transactions": [ + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/fee_amp/42161-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json b/BIPs/00notGov/08-2023-mitigation/fee_amp/42161-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json new file mode 100644 index 000000000..651985dad --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/fee_amp/42161-CSP3.0-0x7c68c42De679ffB0f16216154C996C354cF1161B.json @@ -0,0 +1,103 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "increase swap fee and reduce amp for non-linear, non-bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "transactions": [ + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "1001", + "endTime": "1692921600" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "100000000000000000" + } + }, + { + "to": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { + "rawEndValue": "286", + "endTime": "1692921600" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/killGauges/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-mitigation/killGauges/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..e7f63e04a --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/killGauges/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,1090 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "killGauge for affected Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x06d27c0FE5AbF6020bf56E47c72Ca002dD5d9f54", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x29488df9253171AcD0a0598FDdA92C5F6E767a38", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9e3f4FB69058244066801404e50889592d33cA11", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x454eb2f12242397688DbfdA241487e67ed80507a", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x19A13793af96f534F0027b4b6a3eB699647368e7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE35f0152f0d49fE8E386E5c42B656321ffB0d477", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x39dF6e857bdf7387273C43eBb373b9D74F467d35", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5669736FD1dF3572f9D519FcCf7536A750CFAc62", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x882f961Def46deadAcf31798B295834a5b6d0c86", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21eC388000B5BA5D9e3DF3848EA0c1f58e054Af7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3eFd3E18504dC213188Ed2b694F886A305a6e5ed", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x639F4583E505e9E0A16C5D90E1AF61b47415A3A9", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe9E6E9597123034Fa3fc73D482852e18EdF9c282", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x224989bC31286f0E6Dd6F32C0E475BbD4579A976", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5c0e6d132C53DA7F6e958EdF13db0FA02C5b2eC6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb7b9B9D35e7F9E324C762235FB69848175C03A19", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x735B275a567F6c921c82F83D4515beC1F72038D3", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdb218DC1394BbD787bb059dBd9F7E41063e16374", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x95Ee4c90aC8AaFbAe0DfE18F08a290b59eacbc1b", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6f06b425e1bc11FC486C308c22e503d188525F06", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1EcB261dc3496675c54514e44deA2a5115aEcb38", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xEE3cc827EF3e7a00a728Fd52199cd5A6e336361D", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7a4e71a8A33d3b385279079c503ca93905dd553e", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3A7Ed8916Ebb9131966b9b3af3cd8B9adcc53559", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x774D0F67DcFA5568cA435c70fbA272C64352d859", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE41736b4e78be41Bd03EbAf8F86EA493C6e9EA96", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xCe3a024bAF36C91d315722B093928020a4F56622", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x80aed5C5C683FEC86817C98da334DD72424E7297", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x90DDAa2A6D192Db2F47195d847626F94E940c7Ac", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x175FAb9C7aB502B9E76E7fca0C9Da618387EBAdA", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBc771929359B1A6386801705e8D185205d8f1CBF", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb12ADA23eE766bd6b596E2bE556ea2046758b87c", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2Cb5EB92314bf3BFE7977e059A72A806d353fd21", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc85679E41f1F98E694D9F8983fdD484F98F2eB02", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/pausePools/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-mitigation/pausePools/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..5c0e203c0 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/pausePools/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,147 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0x1bd2F176a812e312077BcA87e37c08432Bb09F3e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4C81255Cc9eD7062180ea99962fE05aC0D57350B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4CbdE5C4B4B53EBE4aF4adB85404725985406163", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9B692f571b256140a39a34676BffA30634c586e1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc2B021133D1b0cF07dba696fd5DD89338428225B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE2D16b0A39F3FBb4389a0E8F1efCBecFB3d1E6E1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xE8C56405Bc405840154d9b572927F4197D110dE1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/pausePools/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json b/BIPs/00notGov/08-2023-mitigation/pausePools/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json new file mode 100644 index 000000000..0ee62cd74 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/pausePools/10-0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B.json @@ -0,0 +1,92 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "transactions": [ + { + "to": "0x5470F064a19C65263B3033DA3A6124fdf0a9Bab8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x62cF35DB540152e94936dE63eFc90d880D4e241B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7FE29a818438Ed2759e30f65c2302295711d66Fc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbec621c9AB4cEDDCc2A157CA9B5C475fAB65f6a4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCb89E89d798a4563D1599ea5508282e13B225b52", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCd7B2232B7435595bBc7FD7962f1f352fc2cC61a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd1aF4974fcC995Cf36ba40b189caA92964A9126d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/pausePools/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json b/BIPs/00notGov/08-2023-mitigation/pausePools/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json new file mode 100644 index 000000000..435d9aae3 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/pausePools/100-0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962.json @@ -0,0 +1,37 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "transactions": [ + { + "to": "0xB95829AdbaCd8Af89E291DeE78Bc09E24De51d6b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xe15CaC1DF3621e001f76210Ab12A7f1A1691481f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/pausePools/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json b/BIPs/00notGov/08-2023-mitigation/pausePools/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json new file mode 100644 index 000000000..d6991af9b --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/pausePools/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json @@ -0,0 +1,125 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "transactions": [ + { + "to": "0x03090a9811181A2AfE830a3a0B467698CcF3a8b1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x2645B13FD2c5295296e94A76280B968bDcbbDfED", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x402cFDb7781fa85d52F425352661128250B79e12", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x4ae3661aFa119892f0cc8C43EdaF6A94989Ac171", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9321e2250767D79bAb5aA06DAa8606A2B3B7B4C5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8BF1C584519bE0184311C48AdBDc4c15cb2E8C1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAB269164a10faB22BC87c39946da06C870B172D6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAC2CaE8D2f78A4a8F92f20dbe74042Cd0a8d5Af3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xb266aC3b7C98D7Bcb28731Dac0eF42DbA1b276bE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF42ED61450458eE4620F5eF4f29adB25a6Ef0fb6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/pausePools/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json b/BIPs/00notGov/08-2023-mitigation/pausePools/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json new file mode 100644 index 000000000..f7c84ba23 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/pausePools/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json @@ -0,0 +1,158 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "transactions": [ + { + "to": "0x1d7F0d7c8791210c6F13140939Ad61969562afc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x1e550b7764Da9638FDD32c8a701364dE31f45eE8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x418dE00Ae109e6f874D872658767866d680eAA19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x45C4D1376943Ab28802B995aCfFC04903Eb5223f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x9ceBf13BB702F253AbF1579294694A1eDAD00EAA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA1ea76C42b2938CfA9abea12357881006c528513", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA50f89e9f439Fde2a6Fe05883721a00475da3C45", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA8af146d79aC0BB981E4e0d8b788Ec5711b1d5d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xbBF9d705b75F408CFCaEE91dA32966124d2c6F7D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBe0f30217BE1e981aDD883848D0773A86d2d2CD4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xCAf7aC72F5866B9558f4547e9c5e366A2C851c9A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xd6d20527C7B0669989ee082b9D3A1c63aF742290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/pausePools/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json b/BIPs/00notGov/08-2023-mitigation/pausePools/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json new file mode 100644 index 000000000..755fdbf71 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/pausePools/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "pause affected pools where applicable", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "transactions": [ + { + "to": "0x054E7B0c73E1eE5AED6864Fa511658FC2b54BcaA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xA154009870E9B6431305F19b09F9cfD7284d4E7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xa1D14d922a575232066520EDA11E27760946c991", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xEcE571847897fD61E764D455DC15cf1cD9dE8d6F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "pause", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json b/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json new file mode 100644 index 000000000..15ee1b39e --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/1-0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888.json @@ -0,0 +1,976 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "set swap enabled to false on the subgraph for bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "transactions": [ + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x02d928e68d8f10c0358566152677db51e1e2dc8c", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x04248aabca09e9a1a3d5129a7ba05b7f17de7684", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1bd2f176a812e312077bca87e37c08432bb09f3e", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x26c2b83fc8535deead276f5cc3ad9c1a2192e027", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x41503c9d499ddbd1dcdf818a1b05e9774203bf46", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb2", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4c81255cc9ed7062180ea99962fe05ac0d57350b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4cbde5c4b4b53ebe4af4adb85404725985406163", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x60d604890feaa0b5460b28a424407c24fe89374a", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x639883476960a23b38579acfd7d71561a0f408cf", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6667c6fa9f2b3fc1cc8d85320b62703d938e4385", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9001cbbd96f54a658ff4e6e65ab564ded76a5431", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1697f9af0875b63ddc472d6eebada8c1fab8568", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xae8535c23afedda9304b03c68a3563b75fc8f92b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbb6881874825e60e1160416d6c426eae65f2459e", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc2b021133d1b0cf07dba696fd5dd89338428225b", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc443c15033fcb6cf72cc24f1bda0db070ddd9786", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc50d4347209f285247bda8a09fc1c12ce42031c3", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcbfa4532d8b2ade2c261d3dd5ef2a2284f792692", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcfae6e251369467f465f13836ac8135bd42f8a56", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe0fcbf4d98f0ad982db260f86cf28b49845403c5", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e1", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe8c56405bc405840154d9b572927f4197d110de1", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xeb567dde03f3da7fe185bdacd5ab495ab220769d", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf57c794f42da72b38c8f610ff3b5e8502e48cbde", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xfa24a90a3f2bbe5feea92b95cd0d14ce709649f9", + "value": "0" + } + }, + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json b/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json new file mode 100644 index 000000000..3e28c4f1b --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/137-0x3c58668054c299bE836a0bBB028Bee3aD4724846.json @@ -0,0 +1,1317 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "set swap enabled to false on the subgraph for bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "transactions": [ + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x03090a9811181a2afe830a3a0b467698ccf3a8b1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x04b54ea92d73de2d62d651db7d9778f0c49157d8", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x0bc54e914f53f98d16035f4f0d948f3e09c2fac0", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1379b816b9be611431d693290289c204720ca56d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x16b98793f3e6a17d15931a2c9f98fe28d1c845a1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x216690738aac4aa0c4770253ca26a28f0115c595", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x216d6db0c28204014618482c369d7fbf0a8f3232", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x230ecdb2a7cee56d6889965a023aa0473d6da507", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x25e57f4612912614e6c99616bd2abb9b5ae71e99", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x2645b13fd2c5295296e94a76280b968bdcbbdfed", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x3efb91c4f9b103ee45885695c67794591916f34e", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x402cfdb7781fa85d52f425352661128250b79e12", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x43894de14462b421372bcfe445fa51b1b4a0ff3d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5b77107fcdf2b41903bab2bc555d4fc14cf7667d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x63ce19ccd39930725b8a3d2733627804718ab83d", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x64efad69f099813021b41f4cac6e749fd55e188f", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6c8c7fc50247a47038015eb1fd5dc105d05dafba", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x89b28a9494589b09dbccb69911c189f74fdadc5a", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x89bb15076c9f2d86aa98ec6cffc1a71e31c38953", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x8fd39252d683fdb60bddd4df4b53c9380b496d59", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa5fe91dde37d8bf2dacacc0168b115d28ed03f84", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xab269164a10fab22bc87c39946da06c870b172d6", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb0c830dceb4ef55a60192472c20c8bf19df03488", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb371aa09f5a110ab69b39a84b5469d29f9b22b76", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xb59be8f3c85a9dd6e2899103b6fbf6ea405b99a4", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd4accb350f9cf59fe3cf7a5ee6ed9ace6a568ea9", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xde0a77ab6689b980c30306b10f9131a007e1af81", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe2272cddb2cc408e79e02a73d1db9acc24a843d5", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe4885ed2818cc9e840a25f94f9b2a28169d1aea7", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xe78b25c06db117fdf8f98583cdaaa6c92b79e917", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xea11645ac7d8f2def94c9d8d86bd766296c9b6b6", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xed35f28f837e96f81240ebb82e0e3f518c7e8a2f", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf28f17be00f8ca3c9b7f66a4aad5513757fb3341", + "value": "0" + } + }, + { + "to": "0xcdcECFa416EE3022030E707dC3EA13a8997D74c8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json b/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json new file mode 100644 index 000000000..652003076 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/42161-0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D.json @@ -0,0 +1,1131 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "set swap enabled to false on the subgraph for bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "transactions": [ + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x00fcd3d55085e998e291a0005cedecf58ac14c40", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x1d7f0d7c8791210c6f13140939ad61969562afc2", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x36942963e3b6f37ecc45a4e72349558514233f00", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x40af308e3d07ec769d85eb80afb116525ff4ac99", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x418de00ae109e6f874d872658767866d680eaa19", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x45c4d1376943ab28802b995acffc04903eb5223f", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4689122d360c4725d244c5cfea22861333d862e6", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x4739e50b59b552d490d3fdc60d200977a38510c0", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x49a0e3334496442a9706e481617724e7e37eaa08", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x567ecfcb22205d279bb8eed3e066989902bf03d5", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x585d95df0231fa08aeee35ff0c16b92fd0ecdc33", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x5ef36da78e4e256d82bf3723e821104ea3b6a069", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x6cb787a419c3e6ee2e9ff365856c29cd10659113", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7c82a23b4c48d796dee36a9ca215b641c6a8709d", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x970712708a08e8fb152be4d81b2dc586923f5369", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9cebf13bb702f253abf1579294694a1edad00eaa", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9e34631547adcf2f8cefa0f5f223955c7b137571", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1ea76c42b2938cfa9abea12357881006c528513", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa50f89e9f439fde2a6fe05883721a00475da3c45", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xad28940024117b442a9efb6d0f25c8b59e1c950b", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbbf9d705b75f408cfcaee91da32966124d2c6f7d", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbd724eb087d4cc0f61a5fed1fffaf937937e14de", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xbe0f30217be1e981add883848d0773a86d2d2cd4", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc46be4b8bb6b5a3d3120660efae9c5416318ed40", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc69771058481551261709d8db44977e9afde6450", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcaf7ac72f5866b9558f4547e9c5e366a2c851c9a", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcba9ff45cfb9ce238afde32b0148eb82cbe63562", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xcf8b555b7754556cf2ac2165e77ee23ed8517d79", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd0dc20e6342db2de82692b8dc842301ff9121805", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xd3d5d45f4edf82ba0dfaf061d230766032a10e07", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xda1cd1711743e57dd57102e9e61b75f3587703da", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xee02583596aee94cccb7e8ccd3921d955f17982a", + "value": "0" + } + }, + { + "to": "0x8f32D631093B5418d0546f77442c5fa66187E59D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xff8f84e8c87532af96aef5582ee451572233678b", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json b/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json new file mode 100644 index 000000000..3deb02538 --- /dev/null +++ b/BIPs/00notGov/08-2023-mitigation/subgraphSwapEnabled/43114-0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0.json @@ -0,0 +1,263 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "set swap enabled to false on the subgraph for bricked pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "createdFromSafeAddress": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "transactions": [ + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0x7275c131b1f67e8b53b4691f92b0e35a4c1c6e22", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa154009870e9b6431305f19b09f9cfd7284d4e7a", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xa1d14d922a575232066520eda11e27760946c991", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xea67626e1f0b59e0d172a04f5702ef90bcdf440c", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xeb496161099d45b3ea4892408ef745c6182eb56e", + "value": "0" + } + }, + { + "to": "0xf04378a3ff97b3f979a46f91f9b2d5A1D2394773", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "message", + "type": "bytes" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "emitEvent", + "payable": false + }, + "contractInputsValues": { + "identifier": "0xe84220e19c54dd2a96deb4cb59ea58e10e36ae2e5c0887f3af0a1ac8e04b0e29", + "message": "0xece571847897fd61e764d455dc15cf1cd9de8d6f", + "value": "0" + } + } + ] +} diff --git a/BIPs/00notGov/10-2023-zkevn-injectors/fund1week.json b/BIPs/00notGov/10-2023-zkevn-injectors/fund1week.json new file mode 100644 index 000000000..0c974767a --- /dev/null +++ b/BIPs/00notGov/10-2023-zkevn-injectors/fund1week.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1696892599288, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "", + "checksum": "0x592b2f195628d853e8614557eac6a16bbf2a4e9d91d0ec45553adab62fa8d65a" + }, + "transactions": [ + { + "to": "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A", + "amount": "4000000000" + } + }, + { + "to": "0xa2036f0538221a77A3937F1379699f44945018d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02", + "amount": "4000000000000000000000" + } + } + ] +} diff --git a/BIPs/00notGov/10-2023-zkevn-injectors/fund1week.report.txt b/BIPs/00notGov/10-2023-zkevn-injectors/fund1week.report.txt new file mode 100644 index 000000000..0d92349ee --- /dev/null +++ b/BIPs/00notGov/10-2023-zkevn-injectors/fund1week.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/00notGov/10-2023-zkevn-injectors/fund1week.json +COMMIT: `16b0a76590f164404d898f0c2ebc9406e44bb7e0` +CHAIN(S): `zkevm` +``` ++------------+--------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+==================================================+======================================================================+======================================+=======+============+ +| transfer | USDC:0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035 | maxiKeepers/oldGasStation:0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A | 4000.0 (RAW: 4000000000) | N/A | 0 | ++------------+--------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+-------+------------+ +| transfer | MATIC:0xa2036f0538221a77A3937F1379699f44945018d0 | N/A:0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02 | 4000.0 (RAW: 4000000000000000000000) | N/A | 1 | ++------------+--------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+-------+------------+ +``` diff --git a/BIPs/00notGov/10-2023-zkevn-injectors/makeInjectorsDistributors.json b/BIPs/00notGov/10-2023-zkevn-injectors/makeInjectorsDistributors.json new file mode 100644 index 000000000..dc8de724c --- /dev/null +++ b/BIPs/00notGov/10-2023-zkevn-injectors/makeInjectorsDistributors.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1696940219100, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "", + "checksum": "0x609551a404a1811d27ae899a6afb25ea83e12e63530cd78bca076e0af372a8f9" + }, + "transactions": [ + { + "to": "0x7733650c7aaF2074FD1fCf98f70cbC09138E1Ea5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035", + "_distributor": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A" + } + }, + { + "to": "0x544BDCE27174EA8Ba829939bd3568efc6A6c9c53", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035", + "_distributor": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A" + } + }, + { + "to": "0x544BDCE27174EA8Ba829939bd3568efc6A6c9c53", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xa2036f0538221a77A3937F1379699f44945018d0", + "_distributor": "0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02" + } + }, + { + "to": "0x05257970368Efd323aeFfeC95F7e28C806c2e37F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xa2036f0538221a77A3937F1379699f44945018d0", + "_distributor": "0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02" + } + } + ] +} diff --git a/BIPs/00notGov/10-2023-zkevn-injectors/makeInjectorsDistributors.report.txt b/BIPs/00notGov/10-2023-zkevn-injectors/makeInjectorsDistributors.report.txt new file mode 100644 index 000000000..f52ddc019 --- /dev/null +++ b/BIPs/00notGov/10-2023-zkevn-injectors/makeInjectorsDistributors.report.txt @@ -0,0 +1,44 @@ +File name: BIPs/00notGov/10-2023-zkevn-injectors/makeInjectorsDistributors.json +COMMIT: `16b0a76590f164404d898f0c2ebc9406e44bb7e0` +CHAIN(S): `1101` +``` ++------------------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++========================+========================================================+=========+==============================================================================================================+==============+============+ +| set_reward_distributor | 0x7733650c7aaF2074FD1fCf98f70cbC09138E1Ea5 (Not Found) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035 (N/A) " | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) " | | | +| | | | ] | | | +| | | | } | | | ++------------------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------+--------------+------------+ +| set_reward_distributor | 0x544BDCE27174EA8Ba829939bd3568efc6A6c9c53 (Not Found) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035 (N/A) " | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) " | | | +| | | | ] | | | +| | | | } | | | ++------------------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------+--------------+------------+ +| set_reward_distributor | 0x544BDCE27174EA8Ba829939bd3568efc6A6c9c53 (Not Found) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xa2036f0538221a77A3937F1379699f44945018d0 (N/A) " | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02 (maxiKeepers/gaugeRewardsInjectors/matic_rewards_injector) " | | | +| | | | ] | | | +| | | | } | | | ++------------------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------+--------------+------------+ +| set_reward_distributor | 0x05257970368Efd323aeFfeC95F7e28C806c2e37F (Not Found) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xa2036f0538221a77A3937F1379699f44945018d0 (N/A) " | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02 (maxiKeepers/gaugeRewardsInjectors/matic_rewards_injector) " | | | +| | | | ] | | | +| | | | } | | | ++------------------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/10-2023-zkevn-injectors/swapshakowner.json b/BIPs/00notGov/10-2023-zkevn-injectors/swapshakowner.json new file mode 100644 index 000000000..7f4d49fc1 --- /dev/null +++ b/BIPs/00notGov/10-2023-zkevn-injectors/swapshakowner.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1696892599288, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "", + "checksum": "0x592b2f195628d853e8614557eac6a16bbf2a4e9d91d0ec45553adab62fa8d65a" + }, + "transactions": [ + { + "to": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x8053484489b110181a6dba0b59dda887e433f470" + } + } + ] +} diff --git a/BIPs/00notGov/10-2023-zkevn-injectors/swapshakowner.report.txt b/BIPs/00notGov/10-2023-zkevn-injectors/swapshakowner.report.txt new file mode 100644 index 000000000..418c2021b --- /dev/null +++ b/BIPs/00notGov/10-2023-zkevn-injectors/swapshakowner.report.txt @@ -0,0 +1,20 @@ +File name: BIPs/00notGov/10-2023-zkevn-injectors/swapshakowner.json +COMMIT: `16b0a76590f164404d898f0c2ebc9406e44bb7e0` +CHAIN(S): `1101` +``` ++-----------+--------------------------------------------------------------------+---------+------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+====================================================================+=========+====================================================================================+==============+============+ +| swapOwner | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 (multisigs/feesManager) | 0 | { | N/A | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A) " | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer) " | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x8053484489b110181a6dba0b59dda887e433f470 (EOA/maxis/shakotan) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------------------+---------+------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00notGov/2023-08-mitigation.md b/BIPs/00notGov/2023-08-mitigation.md new file mode 100644 index 000000000..d7b0a441a --- /dev/null +++ b/BIPs/00notGov/2023-08-mitigation.md @@ -0,0 +1,3 @@ +Here is the full list of pools, for reference. Go to the withdrawal page and connect your wallet to see whether you are affected. + +
mainnet (at risk)
  • R-bb-s-DAI-BLP
  • bb-g-USD
  • bb-i-USD
  • bb-a-USD
  • bb-a-USD
  • 50wstETH-50bb-a-USD
  • bb-euler-USD-BPT
  • DOLA-bb-e-USD-BPT
  • 80XAV-20bb-a-USD
  • 50wstETH-50stk-APE
  • bb-i-USD
  • Low Liquidity
  • bb-f-USD
  • bb-ma2-USD
  • bb-a-USD
  • 50-WETH-50-bb-a-USD
  • B-wstETH/bb-ma3-weth
  • 50STG-50bb-a-USD
  • 50TEMPLE-50bb-euler-USD
  • 50rETH-50bb-a-USD
  • 50TEMPLE-50bb-a-USD
  • B-wstETH/bb-ma3-weth
  • 50bb-s-DAI-50bb-a-USD
  • FIAT-bbausd
  • 50wstETH-50bb-euler-USD
  • DOLA BSP
  • 80INST-bbWETH20
  • FBP
  • zUSD-bb-e-USD-BPT
  • TUSD-bb-e-USD
  • TUSD BSP
  • bb-euler-FRAX-bb-euler-USDC-BPT
  • bb-yv-USD
  • bb-s-USD
  • 50rETH-50bb-euler-USD
  • 50wstETH-50bb-a-USD
  • 50STG 50bb-e-USD
  • 10bb-a-USD-90callFLAIX260323
  • TUSD-bbausd
  • 50TRYB-50bb-a-USD
  • 50bb-a-USD-50wstETH
  • 50RBN-50bb-a-USD
  • 80callFLAIX270323-20bb-a-USD
  • FBP
  • 50TRYB-50bb-a-USD
  • (mitigated)
  • wstETH-bb-a-WETH-BPT
  • swETH-bb-a-WETH-BPT
  • GHO/bb-a-USD
  • 50STG-50bbaUSD
  • bb-a-USD
  • cbETH-bb-a-WETH-BPT
  • B-ETHx/bb-a-WETH
  • swETH-bb-a-WETH-BPT
  • bb-a-USD
  • wstETH-bb-a-WETH-BPT
  • 50bb-a-WETH-50YieldETH
  • qETH-bb-a-WETH-BPT
  • cbETH-bb-a-WETH-BPT
  • ankrETH-bb-a-WETH-BPT
  • Low Liquidity
  • rETH/bbaWETH BPT
  • rETH/bbaWETH BPT
  • qETH-bb-a-WETH-BPT
  • 50OHM/50bbaWETH
  • DOLA/bb-a-USD
  • OHM/bbaDAI BPT
  • DUSD/bbaUSD-BPT
  • B-S-UZD-BB-A-USD
  • 50bb-a-WETH-50ETHx

  • polygon (at risk)
  • bb-t-USD
  • bb-am-usd
  • Mai BSP
  • Low Liquidity
  • 2BRLUSD-boosted
  • 30WBTC-20stMATIC-bb-a-WMATIC-BPT-13bb-am-usd-25wstETH-bb-a-WETH-BPT-13DPI
  • bb-USD+
  • bb-t-MATIC
  • Davos-USD+
  • 50USDC-50bb-am-usd
  • bb-t-MATIC
  • bb-t-USD
  • 4USD
  • 4USD
  • bb-t-MATIC
  • 10wstETH-70PAXG-10bb-am-USDC-10MaticX
  • SP-USDT/DAI/LP-USD+
  • 92STARD-4wUSDR-5bb-t-USD
  • STARv2-SuperPoolv2
  • 20mooMaiQI-MATIC-20mooPearlTNGBL-USDR-30bb-t-USD-30STARV2
  • 97STARD-3bb-t-USD
  • 25WMATIC-15WBTC-35bb-am-usd-25WETH
  • 17bb-am-DAI-17USDC-30WETH-17DAI-4amDAI-17bb-am-USDC
  • wUSDR BSP
  • 50bb-am-usd-50bb-am-USDC
  • 20bb-am-usd-80B-stMATIC-Stable
  • FRAX-bb-am-USDC
  • FRAX-bb-am-USDC
  • 50FRAX-50bb-am-USDC
  • BRLUSD-boosted
  • 20bb-am-usd-80WHALE
  • 20bb-am-usd-401337-40WHALE
  • FRAX-bb-am-USDC
  • STARD-bb-t-USD-wUSDR-BPT
  • FRAX-bb-am-USDC
  • BRLUSD-boosted
  • BPT
  • FRAX-bb-am-USDC
  • bb-t-USD
  • 2BRL-BB-AM-USD
  • bb-USD+
  • (mitigated)
  • stMATIC-bb-a-WMATIC-BPT
  • MaticX-bb-a-WMATIC-BPT
  • stMATIC-bb-a-WMATIC-BPT
  • MaticX-bb-a-WMATIC-BPT
  • wstETH-bb-a-WETH-BPT
  • frxETH-bb-a-WETH
  • FRAX-bb-am-USD
  • bb-am-USD
  • Low Liquidity
  • 1stMATIC-bb-a-WMATIC-BPT-0QI-50STARD-0fireEP-1bb-am-USD-1vQi-47STARV2
  • wstETH-bb-a-WETH-BPT
  • frxETH-bb-a-WETH
  • bb-am-usd
  • DUSD/bbaUSD
  • 2BRL-bbamUSD
  • 2BRLUSD-boosted
  • FRAX-bb-am-USD
  • 50stMATIC-BPT-50bbamUSD
  • 50wstETH-bb-a-WETH-BPT-50WETH
  • 50USDC-50wstETH-bb-a-WETH-BPT
  • 50bb-a-WETH-50FBX
  • 50stMATIC-bb-a-WMATIC-BPT-50agEUR
  • truMATIC-bb-a-WMATIC-BPT
  • 50wstETH-BPT-50bbamUSD
  • STARV2-SuperPoolV1
  • 50FRAX-50bb-a-USDC
  • 33SUSHI-33stMATIC-bb-a-WMATIC-BPT-33GHST
  • 9wstETH-9WBTC-9stMATIC-bb-a-WMATIC-BPT-3USDC-70VINU
  • 50stMATIC-bb-a-WMATIC-BPT-50agEUR
  • 50stMATIC-bb-a-WMATIC-BPT-50agEUR

  • arbitrum (at risk)
  • BPT-USD+
  • bb-rf-USD-BPT
  • BPT-USD+
  • Low Liquidity
  • BPT-DOLA-USD+
  • 50bb-DAI+-50bb-USD+
  • BPT-DOLA-USD+
  • (mitigated)
  • bb-a-USD
  • rETH-bb-a-WETH-BPT
  • wstETH-bb-a-WETH-BPT
  • bbaUSDC/bbaUSDCe
  • bb-a-USD
  • rETH-bb-a-WETH-BPT
  • DOLA/bbaUSD-BPT
  • wstETH-bb-a-WETH-BPT
  • DOLA/bbaUSD-BPT
  • 50wstETH-BPT-50bbaUSD
  • 40WBTC-40wstETH-bb-a-WETH-BPT-20bb-a-USD
  • 80NFTE-20WETH-bb-BPT
  • Low Liquidity
  • 50STG-50bbaUSD
  • ChadAura
  • 50STG-50bbaUSD
  • DUSD/bbaUSD
  • bb-a-MAI/DOLA
  • SuperAura
  • ChadUSD
  • wstETH-bb-a-WETH-BPT
  • 50BAL-50ARB
  • 50ARB-50bb-a-USD
  • DOLA/bbaUSD-BPT

  • optimism (at risk)
  • bbrfsoUSD
  • bb-dolbil
  • bb-rf-SOTRI
  • BPT-overnight-II
  • BPT-USD+
  • bb-wstETH
  • bb-STG-USD
  • bb-YELLOW
  • bb-rf-aUSD
  • bb-moo-exETHUSDC
  • Low Liquidity
  • bb-HAPPY
  • bbrfsoUSD
  • bb-WONDER
  • bb-doldol
  • bbrfaUSD-MAI
  • bb-rf-aUSD-asUSD
  • test-bb-WETH
  • bb-rf-USD
  • test-bb-rf-a-USD
  • ECLP-bb-rf-aWETH-wstETH
  • bb-rf-SOTRI
  • test-bb-TRI
  • bb-rf-triple
  • bb-rf-triyie
  • bb-rf-usd
  • test-bb-USD-MAI
  • bpt-onsteady
  • bb-rf-usd
  • bb-rf-usd
  • bb-ern-usd
  • BPT-USD+
  • bb-STG-USD
  • test-bb-USD-MAI
  • BPT-USD+
  • bb-rf-usd

  • avalanche (mitigated)
  • sAVAX-bb-a-WAVAX-BPT
  • ggAVAX-bb-a-WAVAX-BPT
  • bb-a-USD
  • yyAVAX-bb-a-WAVAX-BPT
  • 50BTC.b-50bb-a-USD

  • gnosis (at risk)
  • 50bbagGNO-50bbagWETH
  • bb-ag-USD
  • 50bbagGNO-50bbagUSD
  • agUSD-agWETH-agWBTC
  • EURe-bb-ag-USD
  • Low Liquidity
  • agUSD-agWETH-agWBTC
  • bb-ag-USD
  • 50bbagGNO-50bbagUSD
  • bb-agWETH-wstETH
  • bb-ag-USD

  • fantom (at risk)
  • BPT-sFTMx
  • bb-rf-sftmxftm
  • BPT-FANGYE
  • BPT-BOOOOST
  • bb-yv-USD
  • bb-yv-deiusd
  • bb-yv-4pool
  • BPT-FTMXUSD
  • bb-rf-usd
  • bb-rf-alusd
  • bb-yv-QUARTET
  • bb-yv-FTMUSD
  • bb-rf-ppara
  • BPT-YPANIC
  • BPT-alUSD
  • Low Liquidity
  • bb-BOO-FTM
  • bb-rf-FTMUSDC
  • bb-rf-QUARTET
  • BPT-CRE8RUS
  • BPT-Metronome
  • bpt-grainTrac
  • bb-rf-amazing
  • BPT-STAB
  • BPT-GEL
  • bb-USD-TUSD
  • bb-yv-MOR-USD
  • bb-yv-4pool
  • BPT-PILLFTM
  • BPT-XYZ
  • BPT-FXSUSDC
  • bb-rf-sFTMx
  • BPT-tMAI
  • bb-rf-sFTMx
  • bb-rf-FTM-sFTMx
  • BPT-ATTN
  • bb-yv-FRAX-UST-USD
  • BPT-EQUAL
  • BPT-STEADY
  • BPT-FINE-EQ
  • bb-t-spirit
  • bpt-juku1
  • BPT-ESoM
  • BPT-STEADY4
  • BPT-BBQ
  • BPT-ETUDE10
  • bb-rf-ankrEth
  • BPT-BDAI
  • BPT-LUNATIK
  • BPT-STABLES
  • BPT-GOLDRO2
  • BPT-TP
  • BPT-BEBIS
  • BPT-DEHCHO
  • BPT-DZ
  • BPT-YVGMI
  • BPT-BRIAN
  • BPT-BC
  • BPT-YOY
  • BPT-YOY-FBE
  • BPT-DFTM
  • BPT-STABLOR
  • BPT-EQ
  • BPT-WCB
  • BPT-WV
  • BPT-WVB
  • BPT-CRE8R60
  • BPT-MISO
  • BPT-YC
  • test-bb-yv-USD
  • bb-yv-USD
  • BPT-PILLFTM
  • BPT-PILLFTM

  • zkevm (at risk)
  • B-rETH-bboUSD
  • bb-o-USD
  • Low Liquidity
  • 50wstETH-BPT-50-bboUSD
  • B-wstETH/bboUSD
  • B-wstETH BPT/bb-o-USDC
  • \ No newline at end of file diff --git a/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest.json b/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest.json new file mode 100644 index 000000000..fc2133607 --- /dev/null +++ b/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726150233651, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x4a6f40b5360dc8deaafddd667ae684583df22fa8badbe7a35d03cf691493d009" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf720e9137baa9C7612e6CA59149a5057ab320cFa", + "data": "0xe8de0d4d00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6EE63656BbF5BE3fdF9Be4982BF9466F6a921b83", + "data": "0xe8de0d4d00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + } + } + ] +} diff --git a/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest.report.txt b/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest.report.txt new file mode 100644 index 000000000..31c0e3cf3 --- /dev/null +++ b/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e3670c5d4596fbd2c6babfc67c208e3d9f8b2b6c` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c724b4cc-228d-4370-9b78-9cf9fc1dbacd) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xf720e9137baa9C7612e6CA59149a5057ab320cFa (gauges/GHO/USDT/USDC-gauge-f720) | add_reward(address,address) | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f: GHO | N/A | 0 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x6EE63656BbF5BE3fdF9Be4982BF9466F6a921b83 (gauges/80wstETH/20GHO-gauge-6ee6) | add_reward(address,address) | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f: GHO | N/A | 1 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +``` diff --git a/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest_Arbi.json b/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest_Arbi.json new file mode 100644 index 000000000..8146c2698 --- /dev/null +++ b/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest_Arbi.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726174600598, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x50c6e6ceeb29a6be0a79cc4f92ad26bee0c81210877639b2cc9f34866cc579e5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2", + "data": "0xe8de0d4d0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b330000000000000000000000008edcfe9bc7d2a735117b94c16456d8303777abbb" + } + } + ] +} diff --git a/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest_Arbi.report.txt b/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest_Arbi.report.txt new file mode 100644 index 000000000..e44afc574 --- /dev/null +++ b/BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest_Arbi.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/00proposed/BIP-XXX-Gauges_LM_GHO_Quest_Arbi.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e3670c5d4596fbd2c6babfc67c208e3d9f8b2b6c` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4deb531e-7c6d-417b-9d5d-f9173492ae35) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2 (gauges/GHO/USDC/USDT-gauge-7d90) | add_reward(address,address) | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | N/A | 0 | +| | | | | 0x8EdcFE9Bc7d2a735117B94C16456D8303777abbb: None | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +``` diff --git a/BIPs/00proposed/BIP-XXX-Quest_Gauge_Distribution_Migration.json b/BIPs/00proposed/BIP-XXX-Quest_Gauge_Distribution_Migration.json new file mode 100644 index 000000000..fdcad462c --- /dev/null +++ b/BIPs/00proposed/BIP-XXX-Quest_Gauge_Distribution_Migration.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1730220096751, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa49169e43a162d60ad152d02b68c6de79910fede3c3d08179a2864711b3dc9c4" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3", + "data": "0x058a3a240000000000000000000000000945cae3ae47cb384b2d47bc448dc6a9dec21f55000000000000000000000000997523ef97e0b0a5625ed2c197e61250acf4e5f1" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcfab2efeF3aFfdd158568DC896115Eac26B3C498", + "data": "0x058a3a240000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33000000000000000000000000997523ef97e0b0a5625ed2c197e61250acf4e5f1" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A", + "data": "0x058a3a240000000000000000000000000945cae3ae47cb384b2d47bc448dc6a9dec21f55000000000000000000000000997523ef97e0b0a5625ed2c197e61250acf4e5f1" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6e654787251ae77Fe1873f93A5f220E00afa90E8", + "data": "0x058a3a240000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33000000000000000000000000997523ef97e0b0a5625ed2c197e61250acf4e5f1" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2", + "data": "0x058a3a240000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33000000000000000000000000997523ef97e0b0a5625ed2c197e61250acf4e5f1" + } + } + ] +} diff --git a/BIPs/00proposed/BIP-XXX-Quest_Gauge_Distribution_Migration.report.txt b/BIPs/00proposed/BIP-XXX-Quest_Gauge_Distribution_Migration.report.txt new file mode 100644 index 000000000..480695fc9 --- /dev/null +++ b/BIPs/00proposed/BIP-XXX-Quest_Gauge_Distribution_Migration.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/00proposed/BIP-XXX-Quest_Gauge_Distribution_Migration.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6a4be45a654a414286726279afcbfe7bd7c5860c` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/eb85047f-f867-4f9c-a51c-65bfb305eede) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+---------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+---------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3 (gauges/50tBTC-50WETH-gauge-0114) | set_reward_distributor(address,address) | 0x0945Cae3ae47cb384b2d47BC448Dc6A9dEC21F55: T | N/A | 0 | +| | | | | 0x997523eF97E0b0a5625Ed2C197e61250acF4e5F1: paladin/QuestBoardV2Sidechain | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xcfab2efeF3aFfdd158568DC896115Eac26B3C498 (gauges/ECLP-GHO-USDe-rh-gauge-cfab) | set_reward_distributor(address,address) | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | N/A | 1 | +| | | | | 0x997523eF97E0b0a5625Ed2C197e61250acF4e5F1: paladin/QuestBoardV2Sidechain | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A (gauges/2BTC-gauge-b438) | set_reward_distributor(address,address) | 0x0945Cae3ae47cb384b2d47BC448Dc6A9dEC21F55: T | N/A | 2 | +| | | | | 0x997523eF97E0b0a5625Ed2C197e61250acF4e5F1: paladin/QuestBoardV2Sidechain | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x6e654787251ae77Fe1873f93A5f220E00afa90E8 (gauges/ECLP-GHO-AUSDC-gauge-6e65) | set_reward_distributor(address,address) | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | N/A | 3 | +| | | | | 0x997523eF97E0b0a5625Ed2C197e61250acF4e5F1: paladin/QuestBoardV2Sidechain | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2 (gauges/GHO/USDC/USDT-gauge-7d90) | set_reward_distributor(address,address) | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | N/A | 4 | +| | | | | 0x997523eF97E0b0a5625Ed2C197e61250acF4e5F1: paladin/QuestBoardV2Sidechain | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+---------------------------------------------------------------------------+-----+----------+ +``` diff --git a/BIPs/00proposed/LinearPoolRegistry/2023-03-03_address_sorted.md b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_address_sorted.md new file mode 100644 index 000000000..9c96a5a63 --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_address_sorted.md @@ -0,0 +1,14 @@ +| deployment | chain | function | role | target | target_address | +|:------------------------------|:---------|:-----------------------------------|:-------------------------------------------------------------------|:---------|:-------------------------------------------| +| 20230223-protocol-id-registry | arbitrum | registerProtocolId(uint256,string) | 0xfed0eb6041728fc141bad70d04446ff0e9c8289a4f53cc060addc832c914b44f | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | arbitrum | renameProtocolId(uint256,string) | 0xdc8681b640b547e98ee6f4d708df559b807526d976644c3aca24bc12c4f839c3 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | gnosis | registerProtocolId(uint256,string) | 0x0ed00e8835e2d2867dcdf863354062a805ff3fe1dabf44c0b68378c84c52616e | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230223-protocol-id-registry | gnosis | renameProtocolId(uint256,string) | 0xfb760772d39ec169b9e7cd49bccd8858c635114d103dea72a7a694d094e8930c | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230223-protocol-id-registry | goerli | registerProtocolId(uint256,string) | 0xdfc349d88d311b76af85f0bdc6a81be0e30485d488472e3813359f8e26fc1c95 | lm | 0x040E995520F92F96142d1a76c16D4af21A2eFDE7 | +| 20230223-protocol-id-registry | goerli | renameProtocolId(uint256,string) | 0x397a10db2c15733cdb7c0fad6226786d83e216ed46c740257186765f4018bec5 | lm | 0x040E995520F92F96142d1a76c16D4af21A2eFDE7 | +| 20230223-protocol-id-registry | mainnet | registerProtocolId(uint256,string) | 0x09a880cf3d54a213316bf4d92d60e72ba0ab61a639fce84378eefb9a63d6abd5 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | mainnet | renameProtocolId(uint256,string) | 0x4f3dee5b767f91b4faa9979f01808dd2490fde931a9eb355d5f8e0187826dade | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | optimism | registerProtocolId(uint256,string) | 0x176a1b54ac0ba4509b1a508223c85146627bbe203b18b2beaa28b6992b3b021d | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230223-protocol-id-registry | optimism | renameProtocolId(uint256,string) | 0x8630bf555a7a5baabd493fc2afc07b7baa6ea598eaea016acd0d926a6a6962fa | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230223-protocol-id-registry | polygon | registerProtocolId(uint256,string) | 0x8f64bed4b4e908316d1d51abae6d2ca2c0f6ac132d219882be578341027b587b | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | polygon | renameProtocolId(uint256,string) | 0x5dd6754fa5d8d56f6177c0265c35ab00ee57aa8a190975f1fba56a18796f0aeb | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/00proposed/LinearPoolRegistry/2023-03-03_arbitrum.json b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_arbitrum.json new file mode 100644 index 000000000..670608f11 --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_arbitrum.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xfed0eb6041728fc141bad70d04446ff0e9c8289a4f53cc060addc832c914b44f, 0xdc8681b640b547e98ee6f4d708df559b807526d976644c3aca24bc12c4f839c3]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/00proposed/LinearPoolRegistry/2023-03-03_deployment_sorted.md b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_deployment_sorted.md new file mode 100644 index 000000000..9c96a5a63 --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_deployment_sorted.md @@ -0,0 +1,14 @@ +| deployment | chain | function | role | target | target_address | +|:------------------------------|:---------|:-----------------------------------|:-------------------------------------------------------------------|:---------|:-------------------------------------------| +| 20230223-protocol-id-registry | arbitrum | registerProtocolId(uint256,string) | 0xfed0eb6041728fc141bad70d04446ff0e9c8289a4f53cc060addc832c914b44f | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | arbitrum | renameProtocolId(uint256,string) | 0xdc8681b640b547e98ee6f4d708df559b807526d976644c3aca24bc12c4f839c3 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | gnosis | registerProtocolId(uint256,string) | 0x0ed00e8835e2d2867dcdf863354062a805ff3fe1dabf44c0b68378c84c52616e | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230223-protocol-id-registry | gnosis | renameProtocolId(uint256,string) | 0xfb760772d39ec169b9e7cd49bccd8858c635114d103dea72a7a694d094e8930c | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230223-protocol-id-registry | goerli | registerProtocolId(uint256,string) | 0xdfc349d88d311b76af85f0bdc6a81be0e30485d488472e3813359f8e26fc1c95 | lm | 0x040E995520F92F96142d1a76c16D4af21A2eFDE7 | +| 20230223-protocol-id-registry | goerli | renameProtocolId(uint256,string) | 0x397a10db2c15733cdb7c0fad6226786d83e216ed46c740257186765f4018bec5 | lm | 0x040E995520F92F96142d1a76c16D4af21A2eFDE7 | +| 20230223-protocol-id-registry | mainnet | registerProtocolId(uint256,string) | 0x09a880cf3d54a213316bf4d92d60e72ba0ab61a639fce84378eefb9a63d6abd5 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | mainnet | renameProtocolId(uint256,string) | 0x4f3dee5b767f91b4faa9979f01808dd2490fde931a9eb355d5f8e0187826dade | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | optimism | registerProtocolId(uint256,string) | 0x176a1b54ac0ba4509b1a508223c85146627bbe203b18b2beaa28b6992b3b021d | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230223-protocol-id-registry | optimism | renameProtocolId(uint256,string) | 0x8630bf555a7a5baabd493fc2afc07b7baa6ea598eaea016acd0d926a6a6962fa | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230223-protocol-id-registry | polygon | registerProtocolId(uint256,string) | 0x8f64bed4b4e908316d1d51abae6d2ca2c0f6ac132d219882be578341027b587b | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230223-protocol-id-registry | polygon | renameProtocolId(uint256,string) | 0x5dd6754fa5d8d56f6177c0265c35ab00ee57aa8a190975f1fba56a18796f0aeb | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/00proposed/LinearPoolRegistry/2023-03-03_function_descriptions.md b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_function_descriptions.md new file mode 100644 index 000000000..d594de112 --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_function_descriptions.md @@ -0,0 +1,4 @@ +| function | description | +|:-----------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| registerProtocolId(uint256,string) | Register a new DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | +| renameProtocolId(uint256,string) | Change the name of a DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | \ No newline at end of file diff --git a/BIPs/00proposed/LinearPoolRegistry/2023-03-03_gnosis.json b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_gnosis.json new file mode 100644 index 000000000..a306ca16d --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_gnosis.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0ed00e8835e2d2867dcdf863354062a805ff3fe1dabf44c0b68378c84c52616e, 0xfb760772d39ec169b9e7cd49bccd8858c635114d103dea72a7a694d094e8930c]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/00proposed/LinearPoolRegistry/2023-03-03_mainnet.json b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_mainnet.json new file mode 100644 index 000000000..03ae180c3 --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_mainnet.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x09a880cf3d54a213316bf4d92d60e72ba0ab61a639fce84378eefb9a63d6abd5, 0x4f3dee5b767f91b4faa9979f01808dd2490fde931a9eb355d5f8e0187826dade]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/00proposed/LinearPoolRegistry/2023-03-03_optimism.json b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_optimism.json new file mode 100644 index 000000000..000f96f5c --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_optimism.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x176a1b54ac0ba4509b1a508223c85146627bbe203b18b2beaa28b6992b3b021d, 0x8630bf555a7a5baabd493fc2afc07b7baa6ea598eaea016acd0d926a6a6962fa]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/00proposed/LinearPoolRegistry/2023-03-03_polygon.json b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_polygon.json new file mode 100644 index 000000000..1d9c6d55f --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/2023-03-03_polygon.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x8f64bed4b4e908316d1d51abae6d2ca2c0f6ac132d219882be578341027b587b, 0x5dd6754fa5d8d56f6177c0265c35ab00ee57aa8a190975f1fba56a18796f0aeb]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/00proposed/LinearPoolRegistry/input.json b/BIPs/00proposed/LinearPoolRegistry/input.json new file mode 100644 index 000000000..d39ac4a8e --- /dev/null +++ b/BIPs/00proposed/LinearPoolRegistry/input.json @@ -0,0 +1,17 @@ +[ + { + "deployments": ["20230223-protocol-id-registry"], + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "goerli": 5 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": "lm", + "renameProtocolId(uint256,string)": "lm" + } + } +] diff --git a/BIPs/00proposed/placeholder b/BIPs/00proposed/placeholder new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/00rebateRecycling/2023-12-22.json b/BIPs/00rebateRecycling/2023-12-22.json new file mode 100644 index 000000000..0d5a3bb2a --- /dev/null +++ b/BIPs/00rebateRecycling/2023-12-22.json @@ -0,0 +1,169 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "9634710001" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2408680000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4721010000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2505020000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + } + ] +} diff --git a/BIPs/00rebateRecycling/2023-12-22.report.txt b/BIPs/00rebateRecycling/2023-12-22.report.txt new file mode 100644 index 000000000..3de0bc585 --- /dev/null +++ b/BIPs/00rebateRecycling/2023-12-22.report.txt @@ -0,0 +1,46 @@ +FILENAME: `BIPs/00rebateRecycling/2023-12-22.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `d1c2704ac166900f181f3e6a4b5d0847fce6fc32` +CHAIN(S): `mainnet` +``` ++--------------+-----------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+=======================================================================+=========+======================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "9634710001" | | | +| | | | } | | | ++--------------+-----------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2408680000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+-----------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "4721010000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "2" | | | +| | | | } | | | ++--------------+-----------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| depositBribe | 0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A (hidden_hand2/aura_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", | | | +| | | | "_token": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ], | | | +| | | | "_amount": "2505020000", | | | +| | | | "_maxTokensPerVote": "0", | | | +| | | | "_periods": "1" | | | +| | | | } | | | ++--------------+-----------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00rejected/BIP-214/BIP-214.md b/BIPs/00rejected/BIP-214/BIP-214.md new file mode 100644 index 000000000..666e56ba9 --- /dev/null +++ b/BIPs/00rejected/BIP-214/BIP-214.md @@ -0,0 +1,65 @@ +## [Payload PR - BIP-214](https://github.com/BalancerMaxis/multisig-ops/pull/110) + +## Background +A new version of the primary relayer, [BatchRelayer 5.0](https://github.com/balancer/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230314-batch-relayer-v5). +Deployment of the fifth BalancerRelayer using BatchRelayerLibrary, for combining multiple operations (swaps, joins, etc.) in a single transaction. + +This new version provides full support for all versions of Stable Pools: in particular, V2 and higher, which support proportional joins and exits. It also adds support for many new protocol wrappers: CompoundV2 (Midas), Euler, Gearbox, Silo, Tetu, and Yearn as well as other new protocols that use a similar wrapper wrapper. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-214) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-214/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-214/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-214/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-214/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-214/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-214/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | target | target_address | +|:---------------|:---------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:----------------|:-------------------------------------------| +| 20210418-vault | arbitrum | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | mainnet | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | optimism | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | polygon | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +## Risk Assessment +This BIP is routine operation for provisioning a contract deployment/Batch Relayer. Users must also approve BatchRelayers before they have access. More details can be found in the [Special Vault Permissions Context doc](../../../docs/Authorizer/vault_permissions.md). + +## References + +[Directory of Addresses used by script which generated the table and multsig payloads](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/brownie/helpers/addresses.py) + diff --git a/BIPs/00rejected/BIP-214/README.md b/BIPs/00rejected/BIP-214/README.md new file mode 100644 index 000000000..8314f76d2 --- /dev/null +++ b/BIPs/00rejected/BIP-214/README.md @@ -0,0 +1,4 @@ +[See Here](BIP-214.md) for the governance contents. + + +Rejected as the BIP was about relayer v5, but the addresses specified were v4. \ No newline at end of file diff --git a/BIPs/00rejected/BIP-214/arbitrum.json b/BIPs/00rejected/BIP-214/arbitrum.json new file mode 100644 index 000000000..f8997ace2 --- /dev/null +++ b/BIPs/00rejected/BIP-214/arbitrum.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-214/function_descriptions.md b/BIPs/00rejected/BIP-214/function_descriptions.md new file mode 100644 index 000000000..fd8d55217 --- /dev/null +++ b/BIPs/00rejected/BIP-214/function_descriptions.md @@ -0,0 +1,8 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | diff --git a/BIPs/00rejected/BIP-214/inputs.json b/BIPs/00rejected/BIP-214/inputs.json new file mode 100644 index 000000000..d59354ba6 --- /dev/null +++ b/BIPs/00rejected/BIP-214/inputs.json @@ -0,0 +1,20 @@ +[ + { + "deployments": ["20210418-vault"], + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "BalancerRelayer", + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "BalancerRelayer", + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": "BalancerRelayer", + "manageUserBalance((uint8,address,uint256,address,address)[])": "BalancerRelayer", + "setRelayerApproval(address,address,bool)": "BalancerRelayer", + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": "BalancerRelayer" + } + } +] diff --git a/BIPs/00rejected/BIP-214/mainnet.json b/BIPs/00rejected/BIP-214/mainnet.json new file mode 100644 index 000000000..718bc9918 --- /dev/null +++ b/BIPs/00rejected/BIP-214/mainnet.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-214/optimism.json b/BIPs/00rejected/BIP-214/optimism.json new file mode 100644 index 000000000..cf0955eb1 --- /dev/null +++ b/BIPs/00rejected/BIP-214/optimism.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x1a58897Ab366082028ced3740900ecBD765Af738" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-214/polygon.json b/BIPs/00rejected/BIP-214/polygon.json new file mode 100644 index 000000000..db2a9d7d0 --- /dev/null +++ b/BIPs/00rejected/BIP-214/polygon.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-214/results_address_sorted.md b/BIPs/00rejected/BIP-214/results_address_sorted.md new file mode 100644 index 000000000..928c12079 --- /dev/null +++ b/BIPs/00rejected/BIP-214/results_address_sorted.md @@ -0,0 +1,26 @@ +| deployment | chain | function | role | target | target_address | +|:---------------|:---------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:----------------|:-------------------------------------------| +| 20210418-vault | arbitrum | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | mainnet | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | optimism | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | polygon | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | \ No newline at end of file diff --git a/BIPs/00rejected/BIP-214/results_deployment_sorted.md b/BIPs/00rejected/BIP-214/results_deployment_sorted.md new file mode 100644 index 000000000..928c12079 --- /dev/null +++ b/BIPs/00rejected/BIP-214/results_deployment_sorted.md @@ -0,0 +1,26 @@ +| deployment | chain | function | role | target | target_address | +|:---------------|:---------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:----------------|:-------------------------------------------| +| 20210418-vault | arbitrum | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | arbitrum | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5 | +| 20210418-vault | mainnet | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | mainnet | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA | +| 20210418-vault | optimism | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | optimism | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x1a58897Ab366082028ced3740900ecBD765Af738 | +| 20210418-vault | polygon | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | +| 20210418-vault | polygon | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b | \ No newline at end of file diff --git a/BIPs/00rejected/BIP-242-vote-failed-not-execed.json b/BIPs/00rejected/BIP-242-vote-failed-not-execed.json new file mode 100644 index 000000000..c8690eff2 --- /dev/null +++ b/BIPs/00rejected/BIP-242-vote-failed-not-execed.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1680821518783, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x0b42c16ea30d70bba9833a6d3dbae1c5a4bc936b7d14a4d6e1870643f5ac25db" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000696b883ecba8b23d6c7fe7b54823b0c30d0232a00000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-242-vote-failed-not-execed.report.txt b/BIPs/00rejected/BIP-242-vote-failed-not-execed.report.txt new file mode 100644 index 000000000..1ce760205 --- /dev/null +++ b/BIPs/00rejected/BIP-242-vote-failed-not-execed.report.txt @@ -0,0 +1,9 @@ +BIPs/00rejected/BIP-242-vote-failed-not-execed.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| add_gauge(address,int128) | 0x924ec7ed38080e40396c46f6206a6d77d0b9f72d00020000000000000000072a | 20WMATIC-80LUCHA | 0x924EC7ed38080E40396c46F6206A6d77D0B9f72d | N/A | 0x696B883EcBa8B23D6c7fE7b54823b0c30d0232A0 | 3 | 2.0% | ChildChainStreamer | ++---------------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +``` diff --git a/BIPs/00rejected/BIP-385.json b/BIPs/00rejected/BIP-385.json new file mode 100644 index 000000000..4d63aae39 --- /dev/null +++ b/BIPs/00rejected/BIP-385.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690394677426, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2e1fe85703500135c9de9a0d0495004fc0d82275b4b7e0363a98c5e32cac9612" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa06893ee34F65039a7153A824A1eF399933cBB72", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-385.report.txt b/BIPs/00rejected/BIP-385.report.txt new file mode 100644 index 000000000..1b643aa9e --- /dev/null +++ b/BIPs/00rejected/BIP-385.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/00rejected/BIP-385.json +COMMIT: `N/A` +CHAIN(S): `arbitrum` +``` ++------------+--------------------------------------------------------------------+---------------+-----------+--------------------------------------------+-------+--------+--------------+---------+------------+ +| function | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++============+====================================================================+===============+===========+============================================+=======+========+==============+=========+============+ +| addGauge | 0xa50f89e9f439fde2a6fe05883721a00475da3c4500000000000000000000048b | bb-a-MAI/DOLA | 100 | 0xa06893ee34F65039a7153A824A1eF399933cBB72 | 0.1% | 100.0% | L0 sidechain | BIP-385 | 0 | ++------------+--------------------------------------------------------------------+---------------+-----------+--------------------------------------------+-------+--------+--------------+---------+------------+ +``` diff --git a/BIPs/00rejected/BIP-395A.json b/BIPs/00rejected/BIP-395A.json new file mode 100644 index 000000000..8c6c8f3c1 --- /dev/null +++ b/BIPs/00rejected/BIP-395A.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1691004843240, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x9abeb5c10c633c53bf8f71bea4d1c4379856c2f144d66106b84c4c315a77ce51" + }, + "transactions": [ + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "value": "0", + "data": "0xdc937e1c0000000000000000000000002cc1ade245020fc5aae66ad443e1f66e01c54df10000000000000000000000000000000000000000000000000000000000000000", + "contractMethod": { + "inputs": [], + "name": "fallback", + "payable": true + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00rejected/BIP-395A.report.txt b/BIPs/00rejected/BIP-395A.report.txt new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/00rejected/BIP-395B.json b/BIPs/00rejected/BIP-395B.json new file mode 100644 index 000000000..39596060b --- /dev/null +++ b/BIPs/00rejected/BIP-395B.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1691004843240, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x9abeb5c10c633c53bf8f71bea4d1c4379856c2f144d66106b84c4c315a77ce51" + }, + "transactions": [ + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "value": "0", + "data": "0xdc937e1c0000000000000000000000002cc1ade245020fc5aae66ad443e1f66e01c54df10000000000000000000000000000000000000000000000000000000000000001", + "contractMethod": { + "inputs": [], + "name": "fallback", + "payable": true + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/00rejected/BIP-395B.report.txt b/BIPs/00rejected/BIP-395B.report.txt new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/00rejected/BIP-442-permission-preset2.json b/BIPs/00rejected/BIP-442-permission-preset2.json new file mode 100644 index 000000000..3578389ef --- /dev/null +++ b/BIPs/00rejected/BIP-442-permission-preset2.json @@ -0,0 +1,264 @@ +{ + "version": "1.0", + "chainId": "1", + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.8.0", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "" + }, + "createdAt": 1694020575854, + "transactions": [ + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x20BC832ca081b91433ff6c17f85701B6e92486c5", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xFe2e637202056d30016725477c5da089Ab0A043A", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x48e5413b73add2434e47504E2a22d14940dBFe78", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1d6681042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b119aa6257000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1e3afe0a3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f2b9fdb80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f3fef3a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40b7034f7e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb3b4da69f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbef693bed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbeb0dff660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8d0e30db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc639342966c68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c55362f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1ca824ae8b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020bc832ca081b91433ff6c17f85701b6e92486c50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc63930000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe840000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "value": "0" + } + ] +} diff --git a/BIPs/00rejected/BIP-442-permission-preset2.report.txt b/BIPs/00rejected/BIP-442-permission-preset2.report.txt new file mode 100644 index 000000000..0f092521c --- /dev/null +++ b/BIPs/00rejected/BIP-442-permission-preset2.report.txt @@ -0,0 +1,108 @@ +File name: BIPs/00rejected/BIP-442-permission-preset2.json +COMMIT: `a1b26a8457e26283b6371a3eba915109e52bf2a3` +CHAIN(S): `1` +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (Not Found) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x20BC832ca081b91433ff6c17f85701B6e92486c5 (Not Found) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xFe2e637202056d30016725477c5da089Ab0A043A (Not Found) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x48e5413b73add2434e47504E2a22d14940dBFe78 (Not Found) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 (tokens/WBTC) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (Not Found) | 0 | "0x095ea7b3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1d6681042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b119aa6257000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1e3afe0a3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f2b9fdb80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f3fef3a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40b7034f7e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb3b4da69f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbef693bed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbeb0dff660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8d0e30db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc639342966c68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c55362f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1ca824ae8b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020bc832ca081b91433ff6c17f85701b6e92486c50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000deb83d81d4a9758a7baec5749da863c409ea6c6b83afcefd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc63930000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe840000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" | BIP-442 | N/A | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00rejected/BIP-444-OVN-Gauges.json b/BIPs/00rejected/BIP-444-OVN-Gauges.json new file mode 100644 index 000000000..b1598eb0a --- /dev/null +++ b/BIPs/00rejected/BIP-444-OVN-Gauges.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695306940017, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2f7d75a1dd26b4da8f000b160c5c9771eaa9953320bd453c7156247639c80763" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x882168aAADCD18069Eeb6d76fc7541BB394043A9", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x099E0C611394809099A91c93783De47c80057efb", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd31342887B2EbeEc5e91D1dF07D93250D55E9ca1", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-444-OVN-Gauges.report.txt b/BIPs/00rejected/BIP-444-OVN-Gauges.report.txt new file mode 100644 index 000000000..7f948de30 --- /dev/null +++ b/BIPs/00rejected/BIP-444-OVN-Gauges.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/2023-W39/BIP-444-OVN-Gauges.json +COMMIT: `bf1bb570e44e2b07de61ed5091c394ab0fc9adad` +CHAIN(S): `optimism, base, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x00b82bc5edea6e5e6c77635e31a1a25aad99f881000200000000000000000105 | 80OVN/20wUSD+ | 0x882168aAADCD18069Eeb6d76fc7541BB394043A9 | "OVN(0x3b08fcd15280e7B5A6e404c4abb87F7C774D1B2e)", | "0x0000000000000000000000000000000000000000", | BIP-444 | 0 | +| | pool_address: 0x00b82bc5EdEa6E5E6c77635e31a1A25Aad99f881 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 5.0% | "wUSD+(0xA348700745D249c3b49D2c2AcAC9A5AE8155F826)" | "0xe561451322a5efC51E6f8ffa558C7482c892Bc1A" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x85ec6ae01624ae0d2a04d0ffaad3a25884c7d0f30002000000000000000004b6 | 80OVN/20wUSD+ | 0x099E0C611394809099A91c93783De47c80057efb | "OVN(0xA3d1a8DEB97B111454B294E2324EfAD13a9d8396)", | "0x0000000000000000000000000000000000000000", | BIP-444 | 1 | +| | pool_address: 0x85Ec6ae01624aE0d2a04D0Ffaad3A25884C7d0f3 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 5.0% | "wUSD+(0xB86fb1047A955C0186c77ff6263819b37B32440D)" | "0x2bA447d4B823338435057571bF70907F8224BB47" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xa036553ad30f077bd46c37b1e8ac28e010d7b39e000200000000000000000056 | 80OVN/20wUSD+ | 0xd31342887B2EbeEc5e91D1dF07D93250D55E9ca1 | "OVN(0xA3d1a8DEB97B111454B294E2324EfAD13a9d8396)", | "0x0000000000000000000000000000000000000000", | BIP-444 | 2 | +| | pool_address: 0xA036553Ad30f077bd46c37B1E8AC28E010D7B39e | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 5.0% | "wUSD+(0xd95ca61CE9aAF2143E81Ef5462C0c2325172E028)" | "0xe1b1e024f4Bc01Bdde23e891E081b76a1A914ddd" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/00rejected/BIP-591-myso/BIP-591-dao-multisig.json b/BIPs/00rejected/BIP-591-myso/BIP-591-dao-multisig.json new file mode 100644 index 000000000..3788c1e46 --- /dev/null +++ b/BIPs/00rejected/BIP-591-myso/BIP-591-dao-multisig.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713438117014, + "meta": { + "name": "Transactions Batch", + "description": "Transfer 25000 BAL to LM Multi-sig", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "25000000000000000000000" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-591-myso/BIP-591-dao-multisig.report.txt b/BIPs/00rejected/BIP-591-myso/BIP-591-dao-multisig.report.txt new file mode 100644 index 000000000..901c38a47 --- /dev/null +++ b/BIPs/00rejected/BIP-591-myso/BIP-591-dao-multisig.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00rejected/BIP-591-myso/BIP-591-dao-multisig.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `4f7aeb89197d90e710a028a499825bd6f5815fef` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1a02afa2-20f9-4917-b534-2b71e187f81e) +``` ++------------+------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 25000.0 (RAW: 25000000000000000000000) | BIP-591 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591A-createVault.json b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591A-createVault.json new file mode 100644 index 000000000..583dd56c6 --- /dev/null +++ b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591A-createVault.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713438338041, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x5842da3b3e9ab2f10e53c89fa7631156b0e8cec156220d5ea36e952b36a20aea" + }, + "transactions": [ + { + "to": "0x1874a08F7975b25944FEb989BbAaA464f61aB3bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "createVault", + "payable": false + }, + "contractInputsValues": { + "salt": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591A-createVault.report.txt b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591A-createVault.report.txt new file mode 100644 index 000000000..f3ce02cf6 --- /dev/null +++ b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591A-createVault.report.txt @@ -0,0 +1,18 @@ +FILENAME: `BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591A-createVault.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4f7aeb89197d90e710a028a499825bd6f5815fef` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f4d79421-39bc-4aa1-8612-fdb839ba5d0c) +``` ++-------------+----------------------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=============+======================================================================+=========+============================================================================+==============+============+ +| createVault | 0x1874a08F7975b25944FEb989BbAaA464f61aB3bc (myso/LenderVaultFactory) | 0 | { | BIP-591 | N/A | +| | | | "salt": [ | | | +| | | | [ | | | +| | | | "0x0000000000000000000000000000000000000000000000000000000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-------------+----------------------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591B-transfer-BAL-to-vault.json b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591B-transfer-BAL-to-vault.json new file mode 100644 index 000000000..ab237bd54 --- /dev/null +++ b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591B-transfer-BAL-to-vault.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713438117014, + "meta": { + "name": "Transactions Batch", + "description": "Transfer 25000 BAL to Myso Vault", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54", + "value": "25000000000000000000000" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591B-transfer-BAL-to-vault.report.txt b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591B-transfer-BAL-to-vault.report.txt new file mode 100644 index 000000000..2ddd0bb59 --- /dev/null +++ b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591B-transfer-BAL-to-vault.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591B-transfer-BAL-to-vault.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4f7aeb89197d90e710a028a499825bd6f5815fef` +CHAIN(S): `mainnet` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/a0adc829-5732-4011-aa20-f5fc8e65d9de) +``` ++------------+------------------------------------------------+------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54 | 25000.0 (RAW: 25000000000000000000000) | BIP-591 | 0 | ++------------+------------------------------------------------+------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591C-addOnChainQuoteTemplate.json b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591C-addOnChainQuoteTemplate.json new file mode 100644 index 000000000..94a42e7cc --- /dev/null +++ b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591C-addOnChainQuoteTemplate.json @@ -0,0 +1,136 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713444950634, + "meta": { + "name": "Template for on-chain quote. Adjust to market conditions at execution time!", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x96f46915400642e686202014de0b6814bff18c37ae23050f5c1c2e9898e56e31" + }, + "transactions": [ + { + "to": "0x71E1cc2F7574C798ED893Ef04D55D1E573bE95B1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "lenderVault", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "collToken", + "type": "address" + }, + { + "internalType": "address", + "name": "loanToken", + "type": "address" + }, + { + "internalType": "address", + "name": "oracleAddr", + "type": "address" + }, + { + "internalType": "uint256", + "name": "minLoan", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "maxLoan", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "validUntil", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "earliestRepayTenor", + "type": "uint256" + }, + { + "internalType": "address", + "name": "borrowerCompartmentImplementation", + "type": "address" + }, + { + "internalType": "bool", + "name": "isSingleUse", + "type": "bool" + }, + { + "internalType": "address", + "name": "whitelistAddr", + "type": "address" + }, + { + "internalType": "bool", + "name": "isWhitelistAddrSingleBorrower", + "type": "bool" + } + ], + "internalType": "struct DataTypesPeerToPeer.GeneralQuoteInfo", + "name": "generalQuoteInfo", + "type": "tuple" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "loanPerCollUnitOrLtv", + "type": "uint256" + }, + { + "internalType": "int256", + "name": "interestRatePctInBase", + "type": "int256" + }, + { + "internalType": "uint256", + "name": "upfrontFeePctInBase", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "tenor", + "type": "uint256" + } + ], + "internalType": "struct DataTypesPeerToPeer.QuoteTuple[]", + "name": "quoteTuples", + "type": "tuple[]" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "internalType": "struct DataTypesPeerToPeer.OnChainQuote", + "name": "onChainQuote", + "type": "tuple" + } + ], + "name": "addOnChainQuote", + "payable": false + }, + "contractInputsValues": { + "lenderVault": "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54", + "onChainQuote": "[[\"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\"0xba100000625a3754423978a60c9317c58a424e3D\",\"0x90B9eA01b1c0E2A1b95B03DFBb8E2A4b3F903bfC\",\"20000000000000000000000\",\"100000000000000000000000\",\"1735779846\",\"0\",\"0x0000000000000000000000000000000000000000\",\"true\",\"0x0000000000000000000000000000000000000000\",\"false\"], [[\"800000000000000000\",\"0\",\"40000000000000000\",\"2592000\"]],\"0x0000000000000000000000000000000000000000000000000000000000000000\"]" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591C-addOnChainQuoteTemplate.report.txt b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591C-addOnChainQuoteTemplate.report.txt new file mode 100644 index 000000000..e6fc01828 --- /dev/null +++ b/BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591C-addOnChainQuoteTemplate.report.txt @@ -0,0 +1,66 @@ +FILENAME: `BIPs/00rejected/BIP-591-myso/LM-Multi-BIP-591C-addOnChainQuoteTemplate.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4f7aeb89197d90e710a028a499825bd6f5815fef` +CHAIN(S): `mainnet` +TENDERLY: [SKIPPED] +``` ++-----------------+----------------------------------------------------------------+---------+--------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+================================================================+=========+================================================================================+==============+============+ +| addOnChainQuote | 0x71E1cc2F7574C798ED893Ef04D55D1E573bE95B1 (myso/QuoteHandler) | 0 | { | BIP-591 | N/A | +| | | | "lenderVault": [ | | | +| | | | "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54 (N/A) " | | | +| | | | ], | | | +| | | | "onChainQuote": [ | | | +| | | | [ | | | +| | | | "\"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0xba100000625a3754423978a60c9317c58a424e3D\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x90B9eA01b1c0E2A1b95B03DFBb8E2A4b3F903bfC\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"20000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"100000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"1735779846\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"true\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"false\"]" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "[[\"800000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"40000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"2592000\"]]" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000000000000000000000000000\"" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------------+----------------------------------------------------------------+---------+--------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/00rejected/BIP-591.json b/BIPs/00rejected/BIP-591.json new file mode 100644 index 000000000..3788c1e46 --- /dev/null +++ b/BIPs/00rejected/BIP-591.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713438117014, + "meta": { + "name": "Transactions Batch", + "description": "Transfer 25000 BAL to LM Multi-sig", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "25000000000000000000000" + } + } + ] +} diff --git a/BIPs/00rejected/BIP-591.report.txt b/BIPs/00rejected/BIP-591.report.txt new file mode 100644 index 000000000..182962cc6 --- /dev/null +++ b/BIPs/00rejected/BIP-591.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/00rejected/BIP-591.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `4f7aeb89197d90e710a028a499825bd6f5815fef` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/711eb3ad-bc97-4634-ab5b-54e12295e38c) +``` ++------------+------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 25000.0 (RAW: 25000000000000000000000) | BIP-591 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/BIP-147.json b/BIPs/2023/00before_weekly/BIP-147.json similarity index 100% rename from BIPs/BIP-147.json rename to BIPs/2023/00before_weekly/BIP-147.json diff --git a/BIPs/BIP-148.json b/BIPs/2023/00before_weekly/BIP-148.json similarity index 100% rename from BIPs/BIP-148.json rename to BIPs/2023/00before_weekly/BIP-148.json diff --git a/BIPs/BIP-150.json b/BIPs/2023/00before_weekly/BIP-150.json similarity index 100% rename from BIPs/BIP-150.json rename to BIPs/2023/00before_weekly/BIP-150.json diff --git a/BIPs/BIP-151.json b/BIPs/2023/00before_weekly/BIP-151.json similarity index 100% rename from BIPs/BIP-151.json rename to BIPs/2023/00before_weekly/BIP-151.json diff --git a/BIPs/2023/00before_weekly/BIP-151.report.txt b/BIPs/2023/00before_weekly/BIP-151.report.txt new file mode 100644 index 000000000..3fe35fbea --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-151.report.txt @@ -0,0 +1,11 @@ +BIPs/BIP-151.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| killGauge() | 0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e6400000000000000000000037b | DOLA BSP | 0x5b3240B6BE3E7487d61cd1AFdFC7Fe4Fa1D81e64 | 2000 | 0x610f1569045041Af6212be048Bc43e8DC6a07b55 | NA | N/A% | mainnet | +| killGauge() | 0xb54b2125b711cd183edd3dd09433439d5396165200000000000000000000075e | Mai BSP | 0xB54b2125b711cD183EDD3DD09433439D53961652 | 60 | 0xa9c6045636EAaA81836A874964Dd3Aa6486b0913 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337000000000000000000000049 | bb-rf-aUSD-asUSD | 0x479A7d1fcDD71ce0C2ED3184bfbe9d23B92E8337 | 400 | 0x8F5F5b412dA3cB958c4d26444D9FA7ED11fD3F27 | NA | N/A% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +``` diff --git a/BIPs/BIP-153.json b/BIPs/2023/00before_weekly/BIP-153.json similarity index 100% rename from BIPs/BIP-153.json rename to BIPs/2023/00before_weekly/BIP-153.json diff --git a/BIPs/BIP-154.json b/BIPs/2023/00before_weekly/BIP-154.json similarity index 100% rename from BIPs/BIP-154.json rename to BIPs/2023/00before_weekly/BIP-154.json diff --git a/BIPs/BIP-155.json b/BIPs/2023/00before_weekly/BIP-155.json similarity index 100% rename from BIPs/BIP-155.json rename to BIPs/2023/00before_weekly/BIP-155.json diff --git a/BIPs/BIP-156.json b/BIPs/2023/00before_weekly/BIP-156.json similarity index 100% rename from BIPs/BIP-156.json rename to BIPs/2023/00before_weekly/BIP-156.json diff --git a/BIPs/BIP-157/mainnetDaoMultisig.json b/BIPs/2023/00before_weekly/BIP-157/mainnetDaoMultisig.json similarity index 100% rename from BIPs/BIP-157/mainnetDaoMultisig.json rename to BIPs/2023/00before_weekly/BIP-157/mainnetDaoMultisig.json diff --git a/BIPs/2023/00before_weekly/BIP-157/mainnetDaoMultisig.report.txt b/BIPs/2023/00before_weekly/BIP-157/mainnetDaoMultisig.report.txt new file mode 100644 index 000000000..3e9b8e2d1 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-157/mainnetDaoMultisig.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-157/mainnetDaoMultisig.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| killGauge() | 0x4edcb2b46377530bc18bb4d2c7fe46a992c73e100000000000000000000003ec | cbETH-wstETH-BPT | 0x4EdcB2B46377530Bc18BB4D2c7Fe46a992c73e10 | 50 | 0xe624E9E85A5728072313c4F4720cDF8fD4FFdAFC | NA | N/A% | mainnet | ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +``` diff --git a/BIPs/BIP-157/mainnetGaugeMultisig.json b/BIPs/2023/00before_weekly/BIP-157/mainnetGaugeMultisig.json similarity index 100% rename from BIPs/BIP-157/mainnetGaugeMultisig.json rename to BIPs/2023/00before_weekly/BIP-157/mainnetGaugeMultisig.json diff --git a/BIPs/BIP-158/mainnetDAOMultisig.json b/BIPs/2023/00before_weekly/BIP-158/mainnetDAOMultisig.json similarity index 100% rename from BIPs/BIP-158/mainnetDAOMultisig.json rename to BIPs/2023/00before_weekly/BIP-158/mainnetDAOMultisig.json diff --git a/BIPs/2023/00before_weekly/BIP-158/mainnetDAOMultisig.report.txt b/BIPs/2023/00before_weekly/BIP-158/mainnetDAOMultisig.report.txt new file mode 100644 index 000000000..0a2db1156 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-158/mainnetDAOMultisig.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-158/mainnetDAOMultisig.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| killGauge() | 0xfb5e6d0c1dfed2ba000fbc040ab8df3615ac329c000000000000000000000159 | B-stETH-Stable | 0xFB5e6d0c1DfeD2BA000fBC040Ab8DF3615AC329c | 200 | 0x6f825C8bbf67eBb6bc35cf2071daCD2864C3258E | NA | N/A% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +``` diff --git a/BIPs/BIP-158/mainnetGaugeMultisig.json b/BIPs/2023/00before_weekly/BIP-158/mainnetGaugeMultisig.json similarity index 100% rename from BIPs/BIP-158/mainnetGaugeMultisig.json rename to BIPs/2023/00before_weekly/BIP-158/mainnetGaugeMultisig.json diff --git a/BIPs/BIP-162/arbitrumTreasury.json b/BIPs/2023/00before_weekly/BIP-162/arbitrumTreasury.json similarity index 100% rename from BIPs/BIP-162/arbitrumTreasury.json rename to BIPs/2023/00before_weekly/BIP-162/arbitrumTreasury.json diff --git a/BIPs/BIP-162/ethereumTreasury.json b/BIPs/2023/00before_weekly/BIP-162/ethereumTreasury.json similarity index 100% rename from BIPs/BIP-162/ethereumTreasury.json rename to BIPs/2023/00before_weekly/BIP-162/ethereumTreasury.json diff --git a/BIPs/BIP-162/polygonTreasury.json b/BIPs/2023/00before_weekly/BIP-162/polygonTreasury.json similarity index 100% rename from BIPs/BIP-162/polygonTreasury.json rename to BIPs/2023/00before_weekly/BIP-162/polygonTreasury.json diff --git a/BIPs/BIP-162/swapPolygonTreasuryOwners.json b/BIPs/2023/00before_weekly/BIP-162/swapPolygonTreasuryOwners.json similarity index 100% rename from BIPs/BIP-162/swapPolygonTreasuryOwners.json rename to BIPs/2023/00before_weekly/BIP-162/swapPolygonTreasuryOwners.json diff --git a/BIPs/BIP-164.json b/BIPs/2023/00before_weekly/BIP-164.json similarity index 100% rename from BIPs/BIP-164.json rename to BIPs/2023/00before_weekly/BIP-164.json diff --git a/BIPs/BIP-165.json b/BIPs/2023/00before_weekly/BIP-165.json similarity index 100% rename from BIPs/BIP-165.json rename to BIPs/2023/00before_weekly/BIP-165.json diff --git a/BIPs/2023/00before_weekly/BIP-165.report.txt b/BIPs/2023/00before_weekly/BIP-165.report.txt new file mode 100644 index 000000000..d6f12b9d5 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-165.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-165.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0x8a34b5ad76f528bfec06c80d85ef3b53da7fc30000020000000000000000043e | B-ankrETH-WETH-Stable | 0x8A34b5ad76F528bfEc06c80D85EF3b53dA7FC300 | 50 | 0x21D8dB8a46393FEdE4e91eAfBc0cCf092faCb469 | 2 | 100.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-166.json b/BIPs/2023/00before_weekly/BIP-166.json new file mode 100644 index 000000000..aa39aee10 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-166.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675214713644, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xfee3d16d2b26790ec569d9ee19be4f6384af68f4274a5cb8848bbd1c63641cef" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000010a361766e64d7983a97202ac3a0f4cee06eb7170000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-166.report.txt b/BIPs/2023/00before_weekly/BIP-166.report.txt new file mode 100644 index 000000000..86127ace9 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-166.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-166.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445 | B-staFiETH-WETH-Stable | 0xB08885e6026bab4333A80024Ec25a1a3e1FF2b8A | 50 | 0x10a361766e64D7983a97202ac3a0F4cee06Eb717 | 2 | 100.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-167.json b/BIPs/2023/00before_weekly/BIP-167.json new file mode 100644 index 000000000..a2644b53b --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-167.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675214796687, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xd7b1e0270e528c60bca10e4d2e9a69deac5017a802a996db3d964ab3da2864a4" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000e629c43bcad1029e12ed51432b9dd3432b656cc90000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000004dc35ec8562596dda6aee8ecee59a76d4d72b83e0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000037eca8daab052e722e3bf8ca861aa4e1c047143b0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-167.report.txt b/BIPs/2023/00before_weekly/BIP-167.report.txt new file mode 100644 index 000000000..e61963268 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-167.report.txt @@ -0,0 +1,11 @@ +BIPs/BIP-167.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| add_gauge(address,int128) | 0xad0e5e0778cac28f1ff459602b31351871b5754a0002000000000000000003ce | BPT | 0xAd0e5e0778cAC28f1ff459602b31351871B5754a | N/A | 0xE629c43BCad1029E12ED51432B9dd3432b656cc9 | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0xdb0cbcf1b8282dedc90e8c2cefe11041d6d1e9f0000200000000000000000431 | 50SD-50USDC | 0xDb0cBcF1b8282dedc90e8c2CEFe11041d6d1e9f0 | N/A | 0x4dC35eC8562596ddA6aEe8EceE59a76D4d72b83E | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0xe4010ef5e37dc23154680f23c4a0d48bfca91687000200000000000000000432 | 80SD-20WETH | 0xE4010EF5E37dc23154680f23c4A0d48BFca91687 | N/A | 0x37eCa8DaaB052E722e3bf8ca861aa4e1C047143b | 2 | 2.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-168.json b/BIPs/2023/00before_weekly/BIP-168.json new file mode 100644 index 000000000..8b57e78c8 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-168.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675214876462, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ba43c1e4422c7ab20dfffcad5d726e98aadb8c326c4f57ec63baedc74c6b9b1" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000fc4541437265945f13368f9f61c19da427d41a020000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-168.report.txt b/BIPs/2023/00before_weekly/BIP-168.report.txt new file mode 100644 index 000000000..a705074ac --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-168.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-168.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0x384f67aa430376efc4f8987eabf7f3f84eb9ea5d00020000000000000000043d | DOLA-CUSD BSP | 0x384F67aA430376efc4f8987eaBf7F3f84eB9EA5d | 100 | 0xFc4541437265945F13368F9F61c19dA427D41A02 | 2 | 100.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-169.json b/BIPs/2023/00before_weekly/BIP-169.json new file mode 100644 index 000000000..9e5173550 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-169.json @@ -0,0 +1,36 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675214943898, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xb04b5bdb6ac65fb00302199a8de1d8cad162439eddde01177ed940d294b177e3" + }, + "transactions": [ + { + "to": "0x9E3cD0606Db55ac68845bB60121847823712ae05", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "actionId", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" }, + { "internalType": "address", "name": "where", "type": "address" }, + { "internalType": "bool", "name": "allowed", "type": "bool" } + ], + "name": "manageGranter", + "payable": false + }, + "contractInputsValues": { + "actionId": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "account": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "where": "0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF", + "allowed": "true" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-170-171-172-174-176-178-179-181-182.json b/BIPs/2023/00before_weekly/BIP-170-171-172-174-176-178-179-181-182.json new file mode 100644 index 000000000..728825354 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-170-171-172-174-176-178-179-181-182.json @@ -0,0 +1,290 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675970230321, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x27ee66d69887d158bfda54321d6df24ab602588ae42a9af3b8341d91ec90b0bb" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000190ae1f6ee5c0b7bc193fa9cd9bbe9b335f69c650000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000ef3b68d9b6f44eef2f6ea3d47d6e97707bf141890000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000090437a1d2f6c0935dd6056f07f05c068f2a507f90000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000e9866b9dc2c1213433f614cbb22edaa0faff9a660000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000f53f2fee2a34f7f8d1bfe1b774a95cc79c121b340000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000004532fba326d853a03644758b8b7438374f6780dc0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000d973e86547e810117db131b94708f429a463535e0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000d65979f15cfb52e9a6a4f8dea34c69c1568ea4a80000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000005b0c1b84566708dd391ae0fece1a32e33682ee3d0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-170-171-172-174-176-178-179-181-182.report.txt b/BIPs/2023/00before_weekly/BIP-170-171-172-174-176-178-179-181-182.report.txt new file mode 100644 index 000000000..2e1ae603a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-170-171-172-174-176-178-179-181-182.report.txt @@ -0,0 +1,17 @@ +BIPs/BIP-170-171-172-174-176-178-179-181-182.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+---------------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+---------------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| add_gauge(address,int128) | 0xfd1cf6fd41f229ca86ada0584c63c49c3d66bbc9000200000000000000000438 | 50PENDLE-50WETH | 0xFD1Cf6FD41F229Ca86ada0584c63C49C3d66BbC9 | N/A | 0x190AE1f6EE5c0B7bc193fA9CD9bBe9b335F69C65 | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0x5dee84ffa2dc27419ba7b3419d7146e53e4f7ded000200000000000000000a4e | frxETH-WETH | 0x5DEe84FfA2DC27419Ba7b3419d7146E53e4F7dEd | 120 | 0xEF3B68D9B6f44EeF2F6ea3d47D6e97707BF14189 | 3 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0xf3312968c7d768c19107731100ece7d4780b47b2000200000000000000000a50 | 20WMATIC-80SPHERE | 0xf3312968c7D768C19107731100Ece7d4780b47B2 | N/A | 0x90437a1D2F6C0935Dd6056f07f05C068f2A507F9 | 3 | 2.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x831261f44931b7da8ba0dcc547223c60bb75b47f000200000000000000000460 | B-wUSDR-STABLE | 0x831261f44931B7dA8ba0DcC547223c60BB75B47F | 100 | 0xe9866B9dc2c1213433f614CbB22EdAA0FAFF9a66 | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0x50cf90b954958480b8df7958a9e965752f62712400000000000000000000046f | bb-euler-USD-BPT | 0x50Cf90B954958480b8DF7958A9E965752F627124 | 2000 | 0xf53f2fEE2A34f7f8d1BFe1B774A95Cc79C121B34 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0xa3c500969accb3d8df08cba313c120818fe0ed9d000200000000000000000471 | 50SYN-50WETH | 0xa3C500969accb3D8DF08CBa313C120818fE0ed9D | N/A | 0x4532fBa326D853A03644758B8B7438374F6780dC | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x959216bb492b2efa72b15b7aacea5b5c984c3cca000200000000000000000472 | 50wstETH-50stk-APE | 0x959216BB492B2efa72b15B7AAcEa5B5C984c3ccA | N/A | 0xD973e86547e810117Db131B94708F429A463535E | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x00c2a4be503869fa751c2dbcb7156cc970b5a8da000000000000000000000477 | bb-euler-FRAX-bb-euler-USDC-BPT | 0x00C2A4be503869Fa751c2DbcB7156cc970b5a8dA | 1500 | 0xD65979f15cfB52E9a6a4f8DEA34c69c1568EA4A8 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352 | bb-rf-USD-BPT | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a | 2000 | 0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d | 4 | 100.0% | ChildChainStreamer | ++---------------------------+--------------------------------------------------------------------+---------------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-175/change_list_address_sorted.md b/BIPs/2023/00before_weekly/BIP-175/change_list_address_sorted.md new file mode 100644 index 000000000..d1cee0f5b --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-175/change_list_address_sorted.md @@ -0,0 +1,42 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:------------------|:-------------------------------------------| +| 20230206-weighted-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0x92253d002d63e0211f775527924e2891f18bb060ff2ab3be19c6b242bafa5fec | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0xc383be2c6e87a9b18ae919e677f011279a8d98346dbcd5cb326053f5f873b753 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x79f0094a409615c52fb7491ca130145e7ec31efb578af4019db59e6636c07ebf | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | stopAmplificationParameterUpdate() | 0xfaede3ef05348eea541571b87b87560ae56292ed04fd5e08fcced4d41916dfb1 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-weighted-pool-v3 | arbitrum | disable() | 0x3f476d79932a277fc0be18747fc314f1db33802d38a900d529db018c01de81a4 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | enableRecoveryMode() | 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | pause() | 0xbbb29600025604666f66b68dff00546068c5be9c0a5a0fbe825550f6c3519c27 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | disable() | 0xa23cd4468cbe8403f6163d16350699bab6b407aee02d6a29755b0cffa52dd023 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | enableRecoveryMode() | 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | pause() | 0xcf96d782d1bc8dd12869fb51374544f9c037fd559b8811972f35756f204c6012 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | mainnet | disable() | 0x0df3339673f8356288d97461676bb443e5def15e6d6e8321add702ef77075160 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | enableRecoveryMode() | 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | pause() | 0x33b06cb79113c1c80d5db0ad41675a5368e7ec0ba8a2fd4d6328524a984d465b | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | disable() | 0x3fad985e82b2b68120f2bbe4c05b3bcbb41b29519eaa63fb25cb25833043f1e8 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | enableRecoveryMode() | 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | pause() | 0xa4d7ff702c3f830a7ce937a195bfb05c081c0c36a462ed72bfbf721bc5a3f462 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-composable-stable-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-composable-stable-pool-v3 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0xe560c24a44460de963ea8e6716dd635144e8c4991c131b63dd9e956b1f1415b8 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-composable-stable-pool-v3 | mainnet | stopAmplificationParameterUpdate() | 0x36e63b457adcc8834537417d275eec404708707f4fbe63097f15e865dc3e2847 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-weighted-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0x0173d9c9c500f721f528e83cd89297298d530857b46dc4adb8fe329905f4f773 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0xe9d4a41f6bb25c8862c0c2c860268861488f862a3702115587343e3c3d6ea29a | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0xe0788d96bd3d5c93d8ca894a720bf55835562c15aea8eba5cfb15c2c73bd5652 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | stopAmplificationParameterUpdate() | 0x063ab569eba76f955edb79b6f9d647bf9772872dc688a6449689ad4d2d5b5ca3 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-weighted-pool-v3 | optimism | disable() | 0x3e97e0a2e6079577d465a9e3898ed6097ed0c661cb291f58991b80599b0e5558 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | enableRecoveryMode() | 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | pause() | 0xae409b1e306416a87e8d92b1a08f860798e5e882c8785f185db2e2a310793aa1 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | disable() | 0xe59ccea4d4a98c33b7c0b3c05a3d65ff930273fa5ee03855a3104befc6d1d362 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | enableRecoveryMode() | 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | pause() | 0x25ec546c5f4dfc2fe31ba04f5cf65a8098b35111075a5fd114ea3475e4254ac6 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | polygon | disable() | 0x18be448c0c01ad4576befd4f6bce2abf1214dc50697f946a487657e3c3c66947 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | enableRecoveryMode() | 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | pause() | 0xb251963ecd27d2fe81c17cdd47c025b03bdc56bd9138b8556a747d1112d8c01b | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | disable() | 0x9592bbf1ef6b5256ed5698e4cf4610375a5e984fa05ddb8a9c6f2e411f2d0d1e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | enableRecoveryMode() | 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | pause() | 0xf3018734e770ecf7082ee926a91cef5bd218b62d081217bf47f5a67ea7a1e80e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0x22f3e304ab030be776b205711d7ba79f146b07726b10c5e9d29c24dacc09c140 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0xf6c13c09ddba8f114fe2b23ff442766dca7a9bf303adfde386f20ac38c749733 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x1eeda74ac7741bce16788e080c79c907c79419e41281fa442cc39f8d148a8773 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | stopAmplificationParameterUpdate() | 0xe202c405a4ff60ae0c38dea8bbb722ee570a1c89487598e7fc4ede5248a527c7 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-175/change_list_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-175/change_list_deployment_sorted.md new file mode 100644 index 000000000..bdcdcf55e --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-175/change_list_deployment_sorted.md @@ -0,0 +1,42 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:------------------|:-------------------------------------------| +| 20230206-composable-stable-pool-v3 | arbitrum | disable() | 0xa23cd4468cbe8403f6163d16350699bab6b407aee02d6a29755b0cffa52dd023 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | enableRecoveryMode() | 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | pause() | 0xcf96d782d1bc8dd12869fb51374544f9c037fd559b8811972f35756f204c6012 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0xc383be2c6e87a9b18ae919e677f011279a8d98346dbcd5cb326053f5f873b753 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x79f0094a409615c52fb7491ca130145e7ec31efb578af4019db59e6636c07ebf | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | arbitrum | stopAmplificationParameterUpdate() | 0xfaede3ef05348eea541571b87b87560ae56292ed04fd5e08fcced4d41916dfb1 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-weighted-pool-v3 | arbitrum | disable() | 0x3f476d79932a277fc0be18747fc314f1db33802d38a900d529db018c01de81a4 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | enableRecoveryMode() | 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | pause() | 0xbbb29600025604666f66b68dff00546068c5be9c0a5a0fbe825550f6c3519c27 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0x92253d002d63e0211f775527924e2891f18bb060ff2ab3be19c6b242bafa5fec | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | mainnet | disable() | 0x3fad985e82b2b68120f2bbe4c05b3bcbb41b29519eaa63fb25cb25833043f1e8 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | enableRecoveryMode() | 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | pause() | 0xa4d7ff702c3f830a7ce937a195bfb05c081c0c36a462ed72bfbf721bc5a3f462 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-composable-stable-pool-v3 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0xe560c24a44460de963ea8e6716dd635144e8c4991c131b63dd9e956b1f1415b8 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-composable-stable-pool-v3 | mainnet | stopAmplificationParameterUpdate() | 0x36e63b457adcc8834537417d275eec404708707f4fbe63097f15e865dc3e2847 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-weighted-pool-v3 | mainnet | disable() | 0x0df3339673f8356288d97461676bb443e5def15e6d6e8321add702ef77075160 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | enableRecoveryMode() | 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | pause() | 0x33b06cb79113c1c80d5db0ad41675a5368e7ec0ba8a2fd4d6328524a984d465b | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-composable-stable-pool-v3 | optimism | disable() | 0xe59ccea4d4a98c33b7c0b3c05a3d65ff930273fa5ee03855a3104befc6d1d362 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | enableRecoveryMode() | 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | pause() | 0x25ec546c5f4dfc2fe31ba04f5cf65a8098b35111075a5fd114ea3475e4254ac6 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0xe9d4a41f6bb25c8862c0c2c860268861488f862a3702115587343e3c3d6ea29a | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0xe0788d96bd3d5c93d8ca894a720bf55835562c15aea8eba5cfb15c2c73bd5652 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | optimism | stopAmplificationParameterUpdate() | 0x063ab569eba76f955edb79b6f9d647bf9772872dc688a6449689ad4d2d5b5ca3 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-weighted-pool-v3 | optimism | disable() | 0x3e97e0a2e6079577d465a9e3898ed6097ed0c661cb291f58991b80599b0e5558 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | enableRecoveryMode() | 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | pause() | 0xae409b1e306416a87e8d92b1a08f860798e5e882c8785f185db2e2a310793aa1 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0x0173d9c9c500f721f528e83cd89297298d530857b46dc4adb8fe329905f4f773 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-composable-stable-pool-v3 | polygon | disable() | 0x9592bbf1ef6b5256ed5698e4cf4610375a5e984fa05ddb8a9c6f2e411f2d0d1e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | enableRecoveryMode() | 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | pause() | 0xf3018734e770ecf7082ee926a91cef5bd218b62d081217bf47f5a67ea7a1e80e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0xf6c13c09ddba8f114fe2b23ff442766dca7a9bf303adfde386f20ac38c749733 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x1eeda74ac7741bce16788e080c79c907c79419e41281fa442cc39f8d148a8773 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-composable-stable-pool-v3 | polygon | stopAmplificationParameterUpdate() | 0xe202c405a4ff60ae0c38dea8bbb722ee570a1c89487598e7fc4ede5248a527c7 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-weighted-pool-v3 | polygon | disable() | 0x18be448c0c01ad4576befd4f6bce2abf1214dc50697f946a487657e3c3c66947 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | enableRecoveryMode() | 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | pause() | 0xb251963ecd27d2fe81c17cdd47c025b03bdc56bd9138b8556a747d1112d8c01b | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0x22f3e304ab030be776b205711d7ba79f146b07726b10c5e9d29c24dacc09c140 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-175/dao_arbitrum.json b/BIPs/2023/00before_weekly/BIP-175/dao_arbitrum.json new file mode 100644 index 000000000..a76640dd0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-175/dao_arbitrum.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f476d79932a277fc0be18747fc314f1db33802d38a900d529db018c01de81a4, 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c, 0xbbb29600025604666f66b68dff00546068c5be9c0a5a0fbe825550f6c3519c27, 0xa23cd4468cbe8403f6163d16350699bab6b407aee02d6a29755b0cffa52dd023, 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e, 0xcf96d782d1bc8dd12869fb51374544f9c037fd559b8811972f35756f204c6012]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x92253d002d63e0211f775527924e2891f18bb060ff2ab3be19c6b242bafa5fec, 0xc383be2c6e87a9b18ae919e677f011279a8d98346dbcd5cb326053f5f873b753, 0x79f0094a409615c52fb7491ca130145e7ec31efb578af4019db59e6636c07ebf, 0xfaede3ef05348eea541571b87b87560ae56292ed04fd5e08fcced4d41916dfb1]", + "account": "0x7c68c42De679ffB0f16216154C996C354cF1161B" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-175/dao_mainnet.json b/BIPs/2023/00before_weekly/BIP-175/dao_mainnet.json new file mode 100644 index 000000000..7ec77799c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-175/dao_mainnet.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0df3339673f8356288d97461676bb443e5def15e6d6e8321add702ef77075160, 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7, 0x33b06cb79113c1c80d5db0ad41675a5368e7ec0ba8a2fd4d6328524a984d465b, 0x3fad985e82b2b68120f2bbe4c05b3bcbb41b29519eaa63fb25cb25833043f1e8, 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f, 0xa4d7ff702c3f830a7ce937a195bfb05c081c0c36a462ed72bfbf721bc5a3f462]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831, 0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae]", + "account": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe560c24a44460de963ea8e6716dd635144e8c4991c131b63dd9e956b1f1415b8, 0x36e63b457adcc8834537417d275eec404708707f4fbe63097f15e865dc3e2847]", + "account": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-175/dao_optimism.json b/BIPs/2023/00before_weekly/BIP-175/dao_optimism.json new file mode 100644 index 000000000..2795feadd --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-175/dao_optimism.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3e97e0a2e6079577d465a9e3898ed6097ed0c661cb291f58991b80599b0e5558, 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748, 0xae409b1e306416a87e8d92b1a08f860798e5e882c8785f185db2e2a310793aa1, 0xe59ccea4d4a98c33b7c0b3c05a3d65ff930273fa5ee03855a3104befc6d1d362, 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec, 0x25ec546c5f4dfc2fe31ba04f5cf65a8098b35111075a5fd114ea3475e4254ac6]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0173d9c9c500f721f528e83cd89297298d530857b46dc4adb8fe329905f4f773, 0xe9d4a41f6bb25c8862c0c2c860268861488f862a3702115587343e3c3d6ea29a, 0xe0788d96bd3d5c93d8ca894a720bf55835562c15aea8eba5cfb15c2c73bd5652, 0x063ab569eba76f955edb79b6f9d647bf9772872dc688a6449689ad4d2d5b5ca3]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-175/dao_polygon.json b/BIPs/2023/00before_weekly/BIP-175/dao_polygon.json new file mode 100644 index 000000000..bb8af38fa --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-175/dao_polygon.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x18be448c0c01ad4576befd4f6bce2abf1214dc50697f946a487657e3c3c66947, 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9, 0xb251963ecd27d2fe81c17cdd47c025b03bdc56bd9138b8556a747d1112d8c01b, 0x9592bbf1ef6b5256ed5698e4cf4610375a5e984fa05ddb8a9c6f2e411f2d0d1e, 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d, 0xf3018734e770ecf7082ee926a91cef5bd218b62d081217bf47f5a67ea7a1e80e]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x22f3e304ab030be776b205711d7ba79f146b07726b10c5e9d29c24dacc09c140, 0xf6c13c09ddba8f114fe2b23ff442766dca7a9bf303adfde386f20ac38c749733, 0x1eeda74ac7741bce16788e080c79c907c79419e41281fa442cc39f8d148a8773, 0xe202c405a4ff60ae0c38dea8bbb722ee570a1c89487598e7fc4ede5248a527c7]", + "account": "0x7c68c42De679ffB0f16216154C996C354cF1161B" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-177/BIP-177A.json b/BIPs/2023/00before_weekly/BIP-177/BIP-177A.json new file mode 100644 index 000000000..6b0b610a2 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-177/BIP-177A.json @@ -0,0 +1,290 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964183483, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x404d83c03f32734e9342a0ae8a55a141feb6f1cd8faa4176ed26b3ab963d88f7" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000a2a9ebd6f4dea4802083f2c8d08066a4e695e64b0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000002c2179abce3413e27bda6917f60ae37f96d018260000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000087012b0c3257423fd74a5986f81a0f1954c17a1d0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000095201b61ef19c867da0d093df20021e1a559452c0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000f7b0751fea697cf1a541a5f57d11058a8fb794ee0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000623f3dbc761b46f64ae7951700dd7724cb7d60750000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000038727b907046818135c9a865d5c40be6cd1c05140000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000e96924d293b9e2961f9763ca058e389d27341d3d0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000005fbeaa96c9d8d0e839780433aa0b3b4d35b049d80000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-177/BIP-177A.report.txt b/BIPs/2023/00before_weekly/BIP-177/BIP-177A.report.txt new file mode 100644 index 000000000..9636dbbf0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-177/BIP-177A.report.txt @@ -0,0 +1,17 @@ +BIPs/BIP-177/BIP-177A.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0x5aee1e99fe86960377de9f88689616916d5dcabe000000000000000000000467 | wstETH-rETH-sfrxETH-BPT | 0x5aEe1e99fE86960377DE9f88689616916D5DcaBe | 199 | 0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 50rETH-50RPL | 0x9F9d900462492D4C21e9523ca95A7CD86142F298 | N/A | 0x2C2179abce3413E27BDA6917f60ae37F96D01826 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464 | 50rETH-50BADGER | 0x1ee442b5326009Bb18F2F472d3e0061513d1A0fF | N/A | 0x87012b0C3257423fD74a5986F81a0f1954C17a1d | 2 | 10.0% | mainnet | +| add_gauge(address,int128) | 0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465 | 50wstETH-50LDO | 0x5f1f4E50ba51D723F12385a8a9606afc3A0555f5 | N/A | 0x95201B61EF19C867dA0D093DF20021e1a559452c | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 50wstETH-50ACX | 0x36Be1E97eA98AB43b4dEBf92742517266F5731a3 | N/A | 0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0x4fd4687ec38220f805b6363c3c1e52d0df3b5023000200000000000000000473 | 50wstETH-50bb-euler-USD | 0x4fD4687ec38220F805b6363C3c1E52D0dF3B5023 | N/A | 0x623F3Dbc761B46F64aE7951700Dd7724cB7d6075 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0xa718042e5622099e5f0ace4e7122058ab39e1bbe000200000000000000000475 | 50TEMPLE-50bb-euler-USD | 0xa718042E5622099E5F0aCe4E7122058ab39e1bbe | N/A | 0x38727B907046818135c9a865D5C40BE6cd1c0514 | 2 | 10.0% | mainnet | +| add_gauge(address,int128) | 0xb5e3de837f869b0248825e0175da73d4e8c3db6b000200000000000000000474 | 50rETH-50bb-euler-USD | 0xB5E3de837F869B0248825e0175DA73d4E8c3db6B | N/A | 0xE96924D293b9e2961f9763cA058E389D27341D3d | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x133d241f225750d2c92948e464a5a80111920331000000000000000000000476 | DOLA-bb-e-USD-BPT | 0x133d241F225750D2c92948E464A5a80111920331 | 200 | 0x5FbEAa96c9D8d0e839780433aA0B3B4d35b049d8 | 2 | 100.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-177/BIP-177A.txt b/BIPs/2023/00before_weekly/BIP-177/BIP-177A.txt new file mode 100644 index 000000000..2bb19b175 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-177/BIP-177A.txt @@ -0,0 +1,13 @@ ++---------------------------+--------------------------------------------+------------+------------------------------------------------+--------------------------------------------+ +| function: | gauge_address | gauge_type | pool_name | lp_token | ++---------------------------+--------------------------------------------+------------+------------------------------------------------+--------------------------------------------+ +| add_gauge(address,int128) | 0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B | 2 | Balancer wstETH-rETH-sfrxETH-BPT Gauge Deposit | 0x5aEe1e99fE86960377DE9f88689616916D5DcaBe | +| add_gauge(address,int128) | 0x2C2179abce3413E27BDA6917f60ae37F96D01826 | 2 | Balancer 50rETH-50RPL Gauge Deposit | 0x9F9d900462492D4C21e9523ca95A7CD86142F298 | +| add_gauge(address,int128) | 0x87012b0C3257423fD74a5986F81a0f1954C17a1d | 2 | Balancer 50rETH-50BADGER Gauge Deposit | 0x1ee442b5326009Bb18F2F472d3e0061513d1A0fF | +| add_gauge(address,int128) | 0x95201B61EF19C867dA0D093DF20021e1a559452c | 2 | Balancer 50wstETH-50LDO Gauge Deposit | 0x5f1f4E50ba51D723F12385a8a9606afc3A0555f5 | +| add_gauge(address,int128) | 0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee | 2 | Balancer 50wstETH-50ACX Gauge Deposit | 0x36Be1E97eA98AB43b4dEBf92742517266F5731a3 | +| add_gauge(address,int128) | 0x623F3Dbc761B46F64aE7951700Dd7724cB7d6075 | 2 | Balancer 50wstETH-50bb-euler-USD Gauge Deposit | 0x4fD4687ec38220F805b6363C3c1E52D0dF3B5023 | +| add_gauge(address,int128) | 0x38727B907046818135c9a865D5C40BE6cd1c0514 | 2 | Balancer 50TEMPLE-50bb-euler-USD Gauge Deposit | 0xa718042E5622099E5F0aCe4E7122058ab39e1bbe | +| add_gauge(address,int128) | 0xE96924D293b9e2961f9763cA058E389D27341D3d | 2 | Balancer 50rETH-50bb-euler-USD Gauge Deposit | 0xB5E3de837F869B0248825e0175DA73d4E8c3db6B | +| add_gauge(address,int128) | 0x5FbEAa96c9D8d0e839780433aA0B3B4d35b049d8 | 2 | Balancer DOLA-bb-e-USD-BPT Gauge Deposit | 0x133d241F225750D2c92948E464A5a80111920331 | ++---------------------------+--------------------------------------------+------------+------------------------------------------------+--------------------------------------------+ \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-177/BIP-177B.json b/BIPs/2023/00before_weekly/BIP-177/BIP-177B.json new file mode 100644 index 000000000..6f368a1cd --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-177/BIP-177B.json @@ -0,0 +1,290 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964532776, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x8dfb4f1fe0a52869780a5452bbcc7f32ade66e930f0d516ab53e00d8a14f6f57" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb0FB3e031224bd449974AB02cae369E81db58Fa6", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9C0f4144D037688e0AdA74B22a9aAb7c14c58e6C", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x79C14b9655e1C4AB42836768b8938357cD8Fc5d3", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3F0FB52648Eb3981EA598716b7320081d1c8Ba1a", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6Eb7CdCd15417ABF120FfE404B9b88141Ca952B7", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb32Ae42524d38be7E7eD9E02b5F9330fCEf07f3F", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc2c2304E163e1aB53De2eEB08820a0B592bec20B", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x651361a042e0573295dd7f6A84dBD1DA56DAc9D5", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x973fb174Cdf9b1652e4213125a186f66684D899c", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF60B8DAF6825c9fBE5eC073D623B9d47cDa592E8", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x89F65570Ac019f86E145c501023e2ef7010D155B", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-177/BIP-177B.report.txt b/BIPs/2023/00before_weekly/BIP-177/BIP-177B.report.txt new file mode 100644 index 000000000..76280c980 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-177/BIP-177B.report.txt @@ -0,0 +1,19 @@ +BIPs/BIP-177/BIP-177B.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------------+ +| killGauge() | 0x1b65fe4881800b91d4277ba738b567cbb200a60d0002000000000000000002cc | 80TEMPLE-20DAI | 0x1b65fe4881800B91d4277ba738b567CbB200A60d | N/A | 0xb0FB3e031224bd449974AB02cae369E81db58Fa6 | NA | 2.0% | mainnet | +| killGauge() | 0x496ff26b76b8d23bbc6cf1df1eee4a48795490f7000200000000000000000377 | 50COMP-50WSTETH | 0x496ff26B76b8d23bbc6cF1Df1eeE4a48795490F7 | N/A | 0x9C0f4144D037688e0AdA74B22a9aAb7c14c58e6C | NA | N/A% | mainnet | +| killGauge() | 0x13f2f70a951fb99d48ede6e25b0bdf06914db33f00020000000000000000016b | 50wstETH-50LDO | 0x13F2f70A951FB99d48ede6E25B0bdF06914db33F | N/A | 0x79C14b9655e1C4AB42836768b8938357cD8Fc5d3 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x8e85e97ed19c0fa13b2549309965291fbbc0048b0000000000000000000003ba | sfrxETH-stETH-rETH-BPT | 0x8e85e97ed19C0fa13B2549309965291fbbc0048b | 50 | 0x3F0FB52648Eb3981EA598716b7320081d1c8Ba1a | NA | N/A% | mainnet | +| killGauge() | 0x0fd5663d4893ae0d579d580584806aadd2dd0b8b000200000000000000000367 | 50rETH-50RPL | 0x0fd5663D4893AE0D579D580584806AAdd2dD0B8b | N/A | 0x6Eb7CdCd15417ABF120FfE404B9b88141Ca952B7 | NA | N/A% | mainnet | +| killGauge() | 0xe340ebfcaa544da8bb1ee9005f1a346d50ec422e000200000000000000000396 | 50BADGER-50rETH | 0xe340EBfcAA544da8bB1Ee9005F1a346D50Ec422e | N/A | 0xb32Ae42524d38be7E7eD9E02b5F9330fCEf07f3F | NA | 10.0% | mainnet | +| killGauge() | 0x6a5ead5433a50472642cd268e584dafa5a394490000200000000000000000366 | 50WSTETH-50LDO | 0x6a5EaD5433a50472642Cd268E584dafa5a394490 | N/A | 0xc2c2304E163e1aB53De2eEB08820a0B592bec20B | NA | N/A% | mainnet | +| killGauge() | 0x25accb7943fd73dda5e23ba6329085a3c24bfb6a000200000000000000000387 | 50wstETH-50bb-a-USD | 0x25Accb7943Fd73Dda5E23bA6329085a3C24bfb6a | N/A | 0x651361a042e0573295dd7f6A84dBD1DA56DAc9D5 | NA | N/A% | mainnet | +| killGauge() | 0x173063a30e095313eee39411f07e95a8a806014e0002000000000000000003ab | 50TEMPLE-50bb-a-USD | 0x173063A30E095313eEe39411f07E95A8a806014e | N/A | 0x973fb174Cdf9b1652e4213125a186f66684D899c | NA | 10.0% | mainnet | +| killGauge() | 0x334c96d792e4b26b841d28f53235281cec1be1f200020000000000000000038a | 50rETH-50bb-a-USD | 0x334C96d792e4b26B841d28f53235281cec1be1F2 | N/A | 0xF60B8DAF6825c9fBE5eC073D623B9d47cDa592E8 | NA | N/A% | mainnet | +| killGauge() | 0x798b112420ad6391a4129ac25ef59663a44c88bb0002000000000000000003f4 | wstETH-ACX | 0x798b112420AD6391A4129Ac25eF59663a44C88bB | N/A | 0x89F65570Ac019f86E145c501023e2ef7010D155B | NA | N/A% | mainnet | ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-177/BIP-177B.txt b/BIPs/2023/00before_weekly/BIP-177/BIP-177B.txt new file mode 100644 index 000000000..accb04f9f --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-177/BIP-177B.txt @@ -0,0 +1,15 @@ ++-------------+--------------------------------------------+------------+-----------------------------------------------+-------------------------------------------------------+ +| function | gauge_address | gauge_type | pool_name | lp_token | ++-------------+--------------------------------------------+------------+-----------------------------------------------+-------------------------------------------------------+ +| killGauge() | 0xb0FB3e031224bd449974AB02cae369E81db58Fa6 | NA | Balancer 80TEMPLE-20DAI Gauge Deposit | 0x1b65fe4881800B91d4277ba738b567CbB200A60d | +| killGauge() | 0x9C0f4144D037688e0AdA74B22a9aAb7c14c58e6C | NA | Balancer 50COMP-50WSTETH Gauge Deposit | 0x496ff26B76b8d23bbc6cF1Df1eeE4a48795490F7 | +| killGauge() | 0x79C14b9655e1C4AB42836768b8938357cD8Fc5d3 | NA | Sidechain Gauge | Recipient: 0xFdAE71Fd9d19932B2ecC71aF9d874c33fA9ddc4f | +| killGauge() | 0x3F0FB52648Eb3981EA598716b7320081d1c8Ba1a | NA | Balancer sfrxETH-stETH-rETH-BPT Gauge Deposit | 0x8e85e97ed19C0fa13B2549309965291fbbc0048b | +| killGauge() | 0x6Eb7CdCd15417ABF120FfE404B9b88141Ca952B7 | NA | Balancer 50rETH-50RPL Gauge Deposit | 0x0fd5663D4893AE0D579D580584806AAdd2dD0B8b | +| killGauge() | 0xb32Ae42524d38be7E7eD9E02b5F9330fCEf07f3F | NA | Balancer 50BADGER-50rETH Gauge Deposit | 0xe340EBfcAA544da8bB1Ee9005F1a346D50Ec422e | +| killGauge() | 0xc2c2304E163e1aB53De2eEB08820a0B592bec20B | NA | Balancer 50WSTETH-50LDO Gauge Deposit | 0x6a5EaD5433a50472642Cd268E584dafa5a394490 | +| killGauge() | 0x651361a042e0573295dd7f6A84dBD1DA56DAc9D5 | NA | Balancer 50wstETH-50bb-a-USD Gauge Deposit | 0x25Accb7943Fd73Dda5E23bA6329085a3C24bfb6a | +| killGauge() | 0x973fb174Cdf9b1652e4213125a186f66684D899c | NA | Balancer 50TEMPLE-50bb-a-USD Gauge Deposit | 0x173063A30E095313eEe39411f07E95A8a806014e | +| killGauge() | 0xF60B8DAF6825c9fBE5eC073D623B9d47cDa592E8 | NA | Balancer 50rETH-50bb-a-USD Gauge Deposit | 0x334C96d792e4b26B841d28f53235281cec1be1F2 | +| killGauge() | 0x89F65570Ac019f86E145c501023e2ef7010D155B | NA | Balancer wstETH-ACX Gauge Deposit | 0x798b112420AD6391A4129Ac25eF59663a44C88bB | ++-------------+--------------------------------------------+------------+-----------------------------------------------+-------------------------------------------------------+ diff --git a/BIPs/2023/00before_weekly/BIP-183/README.md b/BIPs/2023/00before_weekly/BIP-183/README.md new file mode 100644 index 000000000..56e7dcec2 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-183/README.md @@ -0,0 +1,66 @@ +## [Payload PR - BIP-183](https://github.com/BalancerMaxis/multisig-ops/pull/57) + + +## Background +Balancer is getting ready to double-down on gnosis-chain. In doing so, we want to ensure that all of our recent updates, described in [BIP-175](https://forum.balancer.fi/t/bip-175-grant-permissions-for-v3-pool-factories/4360) are applied to the gnosis chain. + +This involves granting the Emergency DAO access and the mandate to disable the V2 pool factories, and granting the proper permissions as defined by prior governance around pools and factories to the parties as specified below. + +The [v3 Weighted Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230206-weighted-pool-v3) and the [v3 Composable Stable Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks//20230206-composable-stable-pool-v3) where deployed to fix reentrancy issue described [here](https://forum.balancer.fi/t/reentrancy-vulnerability-scope-expanded/4345). + + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|----------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-183/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-183/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-183/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-183/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +In the tables above: + +The "emergency" caller group: + - maps to the Balancer Emergency DAO Multisig as defined in [this vote](https://forum.balancer.fi/t/form-the-emergency-subdao/3197). + +The "feeManager" caller group: + - maps to the feeManager multisig controlled by the Balancer Maxis on all chains except mainnet. + - On mainnet a special feeSetter multisig exists to manage a-factors and a gautletFeeSetter contract that allows bulk changing of fees. + - The maxi's functionally control all contracts that make up the feeManager target group. + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-183/results_address_sorted.md) are printed here: + + +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:--------|:---------------------------------------------------|:-------------------------------------------------------------------|:-----------|:-------------------------------------------| +| 20230206-weighted-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0xec5cf9ce37bce68429403f673d6dfd0a89d33d4af5960016f9a1bbd07c71be88 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0x49832d9b75ad868dbf821cf6ee67ab240ff87c62516d7ce788883fdb8845b215 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x8b804839ef6ccdd1c81145961370ad18658e0bf277e9541fcac3915a5608b94d | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | stopAmplificationParameterUpdate() | 0xe0b032f405d9019d046250109c96eb24cf9ff8ed4694d761a65f6153000193c3 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220908-weighted-pool-v2 | gnosis | disable() | 0x0a7c328c61ac04bc0e79818b5fa98658f18c222d04e7433de4d87fcbfa15e08e | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | disable() | 0xa676b10c0a312087e255fee5692d8b31aec2a0839a91e715a43860c3e62437e3 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | disable() | 0xbe826ebecfd64701333db6557b090b44c6155461ce9aaf6efce57ad8dc12bd2e | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | pause() | 0xbfd04f562f5ffcabe925c3bca0e8c47adfc4018a6ddeea8baaeccc502815f86d | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | disable() | 0x9f637c196de3124bc0febbb78f206994fdb68c3f8fe8070b42230a76e14ece0b | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | pause() | 0xf5a74fe74a42c6fe47ddc84feffff02db467d464946b66b317ef6ceeb66bda38 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Directory of Addresses used by script which generated the table and multsig payloads](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/brownie/helpers/addresses.py) \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-183/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-183/function_descriptions.md new file mode 100644 index 000000000..1260e076d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-183/function_descriptions.md @@ -0,0 +1,8 @@ +| function | description | +|:---------------------------------------------------|:------------------------------------------------------------------------------------------------------------| +| disable() | Disables a new creation of pools on a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| pause() | Stops trading on a pool. Proportinal withdraws are still possible. | +| setSwapFeePercentage(uint256) | Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool. | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value. | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-183/gnosis.json b/BIPs/2023/00before_weekly/BIP-183/gnosis.json new file mode 100644 index 000000000..67e971086 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-183/gnosis.json @@ -0,0 +1,50 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": {}, + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0a7c328c61ac04bc0e79818b5fa98658f18c222d04e7433de4d87fcbfa15e08e, 0xa676b10c0a312087e255fee5692d8b31aec2a0839a91e715a43860c3e62437e3, 0xbe826ebecfd64701333db6557b090b44c6155461ce9aaf6efce57ad8dc12bd2e, 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87, 0xbfd04f562f5ffcabe925c3bca0e8c47adfc4018a6ddeea8baaeccc502815f86d, 0x9f637c196de3124bc0febbb78f206994fdb68c3f8fe8070b42230a76e14ece0b, 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f, 0xf5a74fe74a42c6fe47ddc84feffff02db467d464946b66b317ef6ceeb66bda38]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + }, + { + "to": {}, + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xec5cf9ce37bce68429403f673d6dfd0a89d33d4af5960016f9a1bbd07c71be88, 0x49832d9b75ad868dbf821cf6ee67ab240ff87c62516d7ce788883fdb8845b215, 0x8b804839ef6ccdd1c81145961370ad18658e0bf277e9541fcac3915a5608b94d, 0xe0b032f405d9019d046250109c96eb24cf9ff8ed4694d761a65f6153000193c3]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-183/inputs.json b/BIPs/2023/00before_weekly/BIP-183/inputs.json new file mode 100644 index 000000000..7926d6f7f --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-183/inputs.json @@ -0,0 +1,31 @@ +[ + { + "deployments": [ + "20220908-weighted-pool-v2", + "20221122-composable-stable-pool-v2" + ], + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "disable()": "emergency" + } + }, + { + "deployments": [ + "20230206-weighted-pool-v3", + "20230206-composable-stable-pool-v3" + ], + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": "feeManager", + "startAmplificationParameterUpdate(uint256,uint256)": "feeManager", + "stopAmplificationParameterUpdate()": "feeManager", + "pause()": "emergency", + "disable()": "emergency", + "enableRecoveryMode()": "emergency" + } + } +] diff --git a/BIPs/2023/00before_weekly/BIP-183/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-183/results_address_sorted.md new file mode 100644 index 000000000..6d06f6058 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-183/results_address_sorted.md @@ -0,0 +1,14 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:--------|:---------------------------------------------------|:-------------------------------------------------------------------|:-----------|:-------------------------------------------| +| 20230206-weighted-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0xec5cf9ce37bce68429403f673d6dfd0a89d33d4af5960016f9a1bbd07c71be88 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0x49832d9b75ad868dbf821cf6ee67ab240ff87c62516d7ce788883fdb8845b215 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x8b804839ef6ccdd1c81145961370ad18658e0bf277e9541fcac3915a5608b94d | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | stopAmplificationParameterUpdate() | 0xe0b032f405d9019d046250109c96eb24cf9ff8ed4694d761a65f6153000193c3 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220908-weighted-pool-v2 | gnosis | disable() | 0x0a7c328c61ac04bc0e79818b5fa98658f18c222d04e7433de4d87fcbfa15e08e | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | disable() | 0xa676b10c0a312087e255fee5692d8b31aec2a0839a91e715a43860c3e62437e3 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | disable() | 0xbe826ebecfd64701333db6557b090b44c6155461ce9aaf6efce57ad8dc12bd2e | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | pause() | 0xbfd04f562f5ffcabe925c3bca0e8c47adfc4018a6ddeea8baaeccc502815f86d | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | disable() | 0x9f637c196de3124bc0febbb78f206994fdb68c3f8fe8070b42230a76e14ece0b | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | pause() | 0xf5a74fe74a42c6fe47ddc84feffff02db467d464946b66b317ef6ceeb66bda38 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-183/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-183/results_deployment_sorted.md new file mode 100644 index 000000000..41a3d5c6a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-183/results_deployment_sorted.md @@ -0,0 +1,14 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:--------|:---------------------------------------------------|:-------------------------------------------------------------------|:-----------|:-------------------------------------------| +| 20220908-weighted-pool-v2 | gnosis | disable() | 0x0a7c328c61ac04bc0e79818b5fa98658f18c222d04e7433de4d87fcbfa15e08e | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | disable() | 0xa676b10c0a312087e255fee5692d8b31aec2a0839a91e715a43860c3e62437e3 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | disable() | 0x9f637c196de3124bc0febbb78f206994fdb68c3f8fe8070b42230a76e14ece0b | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | pause() | 0xf5a74fe74a42c6fe47ddc84feffff02db467d464946b66b317ef6ceeb66bda38 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0x49832d9b75ad868dbf821cf6ee67ab240ff87c62516d7ce788883fdb8845b215 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x8b804839ef6ccdd1c81145961370ad18658e0bf277e9541fcac3915a5608b94d | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | stopAmplificationParameterUpdate() | 0xe0b032f405d9019d046250109c96eb24cf9ff8ed4694d761a65f6153000193c3 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-weighted-pool-v3 | gnosis | disable() | 0xbe826ebecfd64701333db6557b090b44c6155461ce9aaf6efce57ad8dc12bd2e | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | pause() | 0xbfd04f562f5ffcabe925c3bca0e8c47adfc4018a6ddeea8baaeccc502815f86d | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0xec5cf9ce37bce68429403f673d6dfd0a89d33d4af5960016f9a1bbd07c71be88 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-184-185-186-187-193-194.json b/BIPs/2023/00before_weekly/BIP-184-185-186-187-193-194.json new file mode 100644 index 000000000..7f47827e3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-184-185-186-187-193-194.json @@ -0,0 +1,151 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1676468105687, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x0ecfd2a37aa9ea7ef7a670fb4ad30d67688d0a83cc64dbfaaf457b867615bd4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000e879f17910e77c01952b97e4a098b0ed15b6295c0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000033bcaa8a390e6dcf2f18ae5fdd9e38fd248219eb0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000a9a63971c55c132af0e6b39a081e604f07f4e2340000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000036365da262db3965ba2e1c4411409bf22508e0a10000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000029c6361af40fc1b6585ce0885319511df4450a8e0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000019a13793af96f534f0027b4b6a3eb699647368e70000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-184-185-186-187-193-194.report.txt b/BIPs/2023/00before_weekly/BIP-184-185-186-187-193-194.report.txt new file mode 100644 index 000000000..a926e3580 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-184-185-186-187-193-194.report.txt @@ -0,0 +1,14 @@ +BIPs/BIP-184-185-186-187-193-194.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0xd4f79ca0ac83192693bce4699d0c10c66aa6cf0f00020000000000000000047e | OHM-wstETH | 0xd4f79CA0Ac83192693bce4699d0c10C66Aa6Cf0F | N/A | 0xE879f17910E77c01952b97E4A098B0ED15B6295c | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa000000000000000000000489 | bb-i-USD | 0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa | 2000 | 0x33BcAa8A390e6DcF2f18AE5fDd9e38fD248219eB | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x483006684f422a9448023b2382615c57c5ecf18f000000000000000000000488 | TUSD-bb-e-USD | 0x483006684f422a9448023b2382615C57c5ecF18f | 600 | 0xA9A63971c55c132aF0e6B39a081e604F07f4e234 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x15c1cdacd3da1e1c1304200b1beb080d50bbbc0f00020000000000000000045f | 50TRYB-50USDC | 0x15C1cDAcd3dA1E1C1304200b1bEb080D50BbBc0F | N/A | 0x36365dA262dB3965Ba2E1C4411409Bf22508e0A1 | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0x20b156776114e8a801e9767d90c6ccccc8adf398000000000000000000000499 | bb-yv-USD | 0x20b156776114E8a801e9767D90c6ccCCc8Adf398 | 2000 | 0x29C6361Af40fc1B6585ce0885319511dF4450a8E | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x99c88ad7dc566616548adde8ed3effa730eb6c3400000000000000000000049a | bb-g-USD | 0x99c88AD7dc566616548adde8ED3eFfa730eB6C34 | 2000 | 0x19A13793af96f534F0027b4b6a3eB699647368e7 | 2 | 100.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-189/BIP-189A.json b/BIPs/2023/00before_weekly/BIP-189/BIP-189A.json new file mode 100644 index 000000000..77c744195 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-189/BIP-189A.json @@ -0,0 +1,190 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964183483, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x404d83c03f32734e9342a0ae8a55a141feb6f1cd8faa4176ed26b3ab963d88f7" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000ed510769ccf53ea14388fc9d6e98eda5b1a5bac80000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000009649d14f2b3300edf690c96fbcb25edc4b52ea050000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000003beeb803124bf0553b1d54301ba18368c74483c60000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000000db3f34d07682b7c61b0b72d02a26cd3cbdbbdd00000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000d762f3c30a17222c0b8d25afe1f1dcec9816f15b0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-189/BIP-189A.report.txt b/BIPs/2023/00before_weekly/BIP-189/BIP-189A.report.txt new file mode 100644 index 000000000..3848a4014 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-189/BIP-189A.report.txt @@ -0,0 +1,13 @@ +BIPs/BIP-189/BIP-189A.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| add_gauge(address,int128) | 0xeab6455f8a99390b941a33bbdaf615abdf93455e000200000000000000000a66 | 50THX-50stMATIC | 0xeaB6455f8A99390B941A33BBDAf615abdf93455e | N/A | 0xEd510769CCf53eA14388Fc9d6E98EDa5b1a5BAC8 | 3 | 2.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x577f6076e558818a5df21ce4acde9a9623ec0b4c000200000000000000000a64 | 80SD-20maticX | 0x577f6076E558818A5dF21Ce4acdE9A9623eC0b4c | N/A | 0x9649d14f2b3300Edf690C96fbCb25eDC4B52Ea05 | 3 | 2.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a | 2eur (agEUR) | 0x77e97D4908Be63394bc5DFf72C8C7Bddf1699882 | 200 | 0x3bEEB803124bf0553B1d54301BA18368c74483c6 | 3 | 2.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x513cdee00251f39de280d9e5f771a6eafebcc88e000000000000000000000a6b | 2eur (PAR) | 0x513CdEE00251F39DE280d9E5f771A6eaFebCc88E | 200 | 0x0DB3F34d07682B7C61B0B72D02a26CD3cBDBBdd0 | 3 | 2.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0xd80ef9fabfdc3b52e17f74c383cf88ee2efbf0b6000000000000000000000a65 | B-tetuQi-Stable | 0xD80Ef9FabfdC3B52e17f74c383Cf88ee2efBf0b6 | 50 | 0xD762F3C30A17222C0b8d25aFE1F1dCEC9816F15B | 3 | 2.0% | ChildChainStreamer | ++---------------------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-189/BIP-189B.json b/BIPs/2023/00before_weekly/BIP-189/BIP-189B.json new file mode 100644 index 000000000..d05896b2b --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-189/BIP-189B.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964532776, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x8dfb4f1fe0a52869780a5452bbcc7f32ade66e930f0d516ab53e00d8a14f6f57" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb34d43Ada4105Ff71e89b8B22a8B9562E78f01E3", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x285cBA395e3Acb82A42758638fA85da9936016a4", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3d5F0520267FE92FFf52B847FAC3204554552f99", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xD9Ea099D62526e670aef2BD680599FC48c409f3c", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC9Cd2B2D8744eB1E5F224612Bd7DBe7BB7d99b5A", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-189/BIP-189B.report.txt b/BIPs/2023/00before_weekly/BIP-189/BIP-189B.report.txt new file mode 100644 index 000000000..59090ff9b --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-189/BIP-189B.report.txt @@ -0,0 +1,13 @@ +BIPs/BIP-189/BIP-189B.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| killGauge() | 0x8ac5fafe2e52e52f5352aec64b64ff8b305e1d4a0002000000000000000007ab | B-50THX-50stMATIC | 0x8aC5FAfE2E52e52f5352Aec64B64FF8B305E1D4A | N/A | 0xb34d43Ada4105Ff71e89b8B22a8B9562E78f01E3 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x4973f591784d9c94052a6c3ebd553fcd37bb0e5500020000000000000000087f | 80SD-20maticX | 0x4973f591784D9c94052a6c3EBd553FCD37Bb0E55 | N/A | 0x285cBA395e3Acb82A42758638fA85da9936016a4 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0xa48d164f6eb0edc68bd03b56fa59e12f24499ad10000000000000000000007c4 | 2eur (agEUR) | 0xa48D164F6eB0EDC68bd03B56fa59E12F24499aD1 | 200 | 0x3d5F0520267FE92FFf52B847FAC3204554552f99 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x7d60a4cb5ca92e2da965637025122296ea6854f900000000000000000000085e | 2EUR (PAR) | 0x7d60a4Cb5cA92E2Da965637025122296ea6854f9 | 200 | 0xD9Ea099D62526e670aef2BD680599FC48c409f3c | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x05f21bacc4fd8590d1eaca9830a64b66a733316c00000000000000000000087e | B-tetuQi-Stable | 0x05F21bAcc4Fd8590D1eaCa9830a64B66a733316C | 50 | 0xC9Cd2B2D8744eB1E5F224612Bd7DBe7BB7d99b5A | NA | 2.0% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-190arbitrum.json b/BIPs/2023/00before_weekly/BIP-190arbitrum.json new file mode 100644 index 000000000..bf8a81e50 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-190arbitrum.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1676469658629, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x08b22e135d8e9e8da9d5632f8d47f86b72505988369e1bee3ceff3410f641ee9" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0000000000000000000000000000000000000000000000000000000000000000", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0000000000000000000000000000000000000000000000000000000000000000", + "account": "0x6207ed574152496c9B072C24FD87cE9cd9E17320" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-190polygon.json b/BIPs/2023/00before_weekly/BIP-190polygon.json new file mode 100644 index 000000000..bb2c427cc --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-190polygon.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1676469595854, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0xfd2ba8f66546d8fc165f692215de809acd0c9903df8554f87f86eee378e83394" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0000000000000000000000000000000000000000000000000000000000000000", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0000000000000000000000000000000000000000000000000000000000000000", + "account": "0xd2bD536ADB0198f74D5f4f2Bd4Fe68Bae1e1Ba80" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-192/BIP-192.md b/BIPs/2023/00before_weekly/BIP-192/BIP-192.md new file mode 100644 index 000000000..b4e0faae5 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/BIP-192.md @@ -0,0 +1,92 @@ +## [Payload PR - BIP-192](https://github.com/BalancerMaxis/multisig-ops/pull/75) + +## Background +Following [BIP-175](https://forum.balancer.fi/t/bip-175-grant-permissions-for-v3-pool-factories/4360) amd [BIP-183](https://forum.balancer.fi/t/bip-183-grant-v2-factory-disable-and-v3-standard-permissions-on-gnosis-chain/4385) the a number of new linear pool factories and pools have been deployed to provide base tokens for LPs wishing to build on the [Core Pools concept](https://docs.balancer.fi/concepts/governance/protocol-fees.html#core-pool-fees). This BIP seeks to grant the standard administrative permissions for these new factories and the pools they spawn. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-192) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-192/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-192/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-192/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-192/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-192/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +In the tables above: + +The "emergency" caller group: + - maps to the Balancer Emergency DAO Multisig as defined in [this vote](https://forum.balancer.fi/t/form-the-emergency-subdao/3197). + +The "feeManager" caller group: + - maps to the feeManager multisig controlled by the Balancer Maxis on all chains except mainnet. + - On mainnet a special feeSetter multisig exists to manage a-factors and a gautletFeeSetter contract that allows bulk changing of fees. + - The maxi's functionally control all contracts that make up the feeManager target group. + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-192/results_address_sorted.md) are printed here: + + +| deployment | chain | function | role | target | target_address | +|:----------------------------------------|:---------|:------------------------------|:-------------------------------------------------------------------|:------------------|:-------------------------------------------| +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | arbitrum | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | arbitrum | setSwapFeePercentage(uint256) | 0x3e6c904353f81ad8c8ed1a0e926cebf468aeaba4c280147e2d32030a359746f5 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | arbitrum | setTargets(uint256,uint256) | 0x4cc8eb383f0521484d9a2bc36774c7eb2c8fcc5a9170f797b9509164f5e449fc | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-erc4626-linear-pool-v3 | arbitrum | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230213-yearn-linear-pool | arbitrum | disable() | 0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | setTargets(uint256,uint256) | 0xc4f7c40d1a1c9c1b1f2c156f3cff7d927a45ed28ae5b64d1fb81ea8ca888ee95 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-erc4626-linear-pool-v3 | mainnet | disable() | 0xb1bb0315049487d8b225a40fc17d5a02647e84002cfa5b11eda57b967629f72c | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230213-yearn-linear-pool | mainnet | disable() | 0xc6d41c26426784c7fab7298da04eab2259046b3c7c8351286ee364e4e0a3bd1e | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230208-euler-linear-pool | mainnet | disable() | 0xdf42af2dd96057a6f29e617c9d6c389e3ac79347b2e4d0b06b8d33cd7e15c40b | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230213-gearbox-linear-pool | mainnet | disable() | 0xa29d20c33a203d4663b49d6135fd5876558c9bf107a898f7a0e95357ec2e42b1 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-erc4626-linear-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0xf0498ccb15b689c1257a638831837f9a1a6e21c1530e7b0c4f9e0fa6af0651c9 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230213-yearn-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0xafb360e583a4ccc8e9935d214a3031628a34797c2f2a1d2f52505137a54c5796 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230208-euler-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0xb6bd869a6825ba2f1c9eba4c1d907dd5791b335cebd7f401b5f5efb9340a4450 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230213-gearbox-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0x69f726d607e0cfd6af767f629799bd33e396b1bad79f46a94a8d88a1ab08abbe | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | setTargets(uint256,uint256) | 0xc5fa0b5a00f4912a6fcf5435bcb7507106a6a5b7923a95a167496a6de8a7b658 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-erc4626-linear-pool-v3 | mainnet | setTargets(uint256,uint256) | 0x98ac729537b2c4aea25f652542bb7769f700500018ca6a9f9879466f75194838 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230213-yearn-linear-pool | mainnet | setTargets(uint256,uint256) | 0x44c2c324db39782f28032ff6aa4234a8ed6d95a11e194006e5b63213abdd209f | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230208-euler-linear-pool | mainnet | setTargets(uint256,uint256) | 0x3c41e27d020ed56c209b202d47efeb4484e52537c3e6ec646e8ba1c123ea16cf | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230213-gearbox-linear-pool | mainnet | setTargets(uint256,uint256) | 0x48860201a4ce2338c9b0cd0a11ef9bffea1ee89bf1f610a71e12a2817be310ec | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-erc4626-linear-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-erc4626-linear-pool-v3 | optimism | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230213-yearn-linear-pool | optimism | setSwapFeePercentage(uint256) | 0x3e6c904353f81ad8c8ed1a0e926cebf468aeaba4c280147e2d32030a359746f5 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230213-yearn-linear-pool | optimism | setTargets(uint256,uint256) | 0x4cc8eb383f0521484d9a2bc36774c7eb2c8fcc5a9170f797b9509164f5e449fc | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-erc4626-linear-pool-v3 | optimism | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230213-yearn-linear-pool | optimism | disable() | 0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-erc4626-linear-pool-v3 | polygon | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230213-yearn-linear-pool | polygon | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | polygon | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | polygon | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | polygon | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Directory of Addresses used by script which generated the table and multsig payloads](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/brownie/helpers/addresses.py) + diff --git a/BIPs/2023/00before_weekly/BIP-192/README.md b/BIPs/2023/00before_weekly/BIP-192/README.md new file mode 100644 index 000000000..755fbcab4 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/README.md @@ -0,0 +1 @@ +[See Here](BIP-192.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-192/arbitrum.json b/BIPs/2023/00before_weekly/BIP-192/arbitrum.json new file mode 100644 index 000000000..be346dc75 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/arbitrum.json @@ -0,0 +1,50 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154, 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e, 0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660, 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91, 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f, 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd, 0x3e6c904353f81ad8c8ed1a0e926cebf468aeaba4c280147e2d32030a359746f5, 0x4cc8eb383f0521484d9a2bc36774c7eb2c8fcc5a9170f797b9509164f5e449fc]", + "account": "0x7c68c42De679ffB0f16216154C996C354cF1161B" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-192/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-192/function_descriptions.md new file mode 100644 index 000000000..47b2dfe93 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/function_descriptions.md @@ -0,0 +1,5 @@ +| function | description | +|:------------------------------|:--------------------------------------------------------------------------------------------------------------------------| +| disable() | Disables a new creation of pools on a pool factory. | +| setSwapFeePercentage(uint256) | Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| setTargets(uint256,uint256) | Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens vs wrapped tokens. | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-192/gnosis.json b/BIPs/2023/00before_weekly/BIP-192/gnosis.json new file mode 100644 index 000000000..11c4ef5a0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/gnosis.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9, 0xc4f7c40d1a1c9c1b1f2c156f3cff7d927a45ed28ae5b64d1fb81ea8ca888ee95]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-192/inputs.json b/BIPs/2023/00before_weekly/BIP-192/inputs.json new file mode 100644 index 000000000..62d4c2e35 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/inputs.json @@ -0,0 +1,48 @@ +[ + { + "deployments": ["20230206-aave-rebalanced-linear-pool-v4"], + "chain_map": { + "gnosis": 100, + "mainnet": 1, + "arbitrum": 42161, + "optimism": 10, + "polygon": 137 + }, + "function_caller_map": { + "disable()": "emergency", + "setSwapFeePercentage(uint256)": "feeManager", + "setTargets(uint256,uint256)": "feeManager" + } + }, + { + "deployments": [ + "20230206-erc4626-linear-pool-v3", + "20230213-yearn-linear-pool" + ], + "chain_map": { + "mainnet": 1, + "arbitrum": 42161, + "optimism": 10, + "polygon": 137 + }, + "function_caller_map": { + "disable()": "emergency", + "setSwapFeePercentage(uint256)": "feeManager", + "setTargets(uint256,uint256)": "feeManager" + } + }, + { + "deployments": [ + "20230208-euler-linear-pool", + "20230213-gearbox-linear-pool" + ], + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "disable()": "emergency", + "setSwapFeePercentage(uint256)": "feeManager", + "setTargets(uint256,uint256)": "feeManager" + } + } +] diff --git a/BIPs/2023/00before_weekly/BIP-192/mainnet.json b/BIPs/2023/00before_weekly/BIP-192/mainnet.json new file mode 100644 index 000000000..aeb9dc281 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/mainnet.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0, 0xb1bb0315049487d8b225a40fc17d5a02647e84002cfa5b11eda57b967629f72c, 0xc6d41c26426784c7fab7298da04eab2259046b3c7c8351286ee364e4e0a3bd1e, 0xdf42af2dd96057a6f29e617c9d6c389e3ac79347b2e4d0b06b8d33cd7e15c40b, 0xa29d20c33a203d4663b49d6135fd5876558c9bf107a898f7a0e95357ec2e42b1]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6, 0xf0498ccb15b689c1257a638831837f9a1a6e21c1530e7b0c4f9e0fa6af0651c9, 0xafb360e583a4ccc8e9935d214a3031628a34797c2f2a1d2f52505137a54c5796, 0xb6bd869a6825ba2f1c9eba4c1d907dd5791b335cebd7f401b5f5efb9340a4450, 0x69f726d607e0cfd6af767f629799bd33e396b1bad79f46a94a8d88a1ab08abbe]", + "account": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xc5fa0b5a00f4912a6fcf5435bcb7507106a6a5b7923a95a167496a6de8a7b658, 0x98ac729537b2c4aea25f652542bb7769f700500018ca6a9f9879466f75194838, 0x44c2c324db39782f28032ff6aa4234a8ed6d95a11e194006e5b63213abdd209f, 0x3c41e27d020ed56c209b202d47efeb4484e52537c3e6ec646e8ba1c123ea16cf, 0x48860201a4ce2338c9b0cd0a11ef9bffea1ee89bf1f610a71e12a2817be310ec]", + "account": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-192/optimism.json b/BIPs/2023/00before_weekly/BIP-192/optimism.json new file mode 100644 index 000000000..54296738f --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/optimism.json @@ -0,0 +1,50 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154, 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e, 0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660, 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91, 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f, 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd, 0x3e6c904353f81ad8c8ed1a0e926cebf468aeaba4c280147e2d32030a359746f5, 0x4cc8eb383f0521484d9a2bc36774c7eb2c8fcc5a9170f797b9509164f5e449fc]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-192/polygon.json b/BIPs/2023/00before_weekly/BIP-192/polygon.json new file mode 100644 index 000000000..e2fead681 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/polygon.json @@ -0,0 +1,50 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154, 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e, 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660, 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91, 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f, 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd, 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73, 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3]", + "account": "0x7c68c42De679ffB0f16216154C996C354cF1161B" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-192/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-192/results_address_sorted.md new file mode 100644 index 000000000..b2c9d24d3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/results_address_sorted.md @@ -0,0 +1,47 @@ +| deployment | chain | function | role | target | target_address | +|:----------------------------------------|:---------|:------------------------------|:-------------------------------------------------------------------|:------------------|:-------------------------------------------| +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | arbitrum | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | arbitrum | setSwapFeePercentage(uint256) | 0x3e6c904353f81ad8c8ed1a0e926cebf468aeaba4c280147e2d32030a359746f5 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | arbitrum | setTargets(uint256,uint256) | 0x4cc8eb383f0521484d9a2bc36774c7eb2c8fcc5a9170f797b9509164f5e449fc | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-erc4626-linear-pool-v3 | arbitrum | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230213-yearn-linear-pool | arbitrum | disable() | 0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | setTargets(uint256,uint256) | 0xc4f7c40d1a1c9c1b1f2c156f3cff7d927a45ed28ae5b64d1fb81ea8ca888ee95 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-erc4626-linear-pool-v3 | mainnet | disable() | 0xb1bb0315049487d8b225a40fc17d5a02647e84002cfa5b11eda57b967629f72c | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230213-yearn-linear-pool | mainnet | disable() | 0xc6d41c26426784c7fab7298da04eab2259046b3c7c8351286ee364e4e0a3bd1e | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230208-euler-linear-pool | mainnet | disable() | 0xdf42af2dd96057a6f29e617c9d6c389e3ac79347b2e4d0b06b8d33cd7e15c40b | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230213-gearbox-linear-pool | mainnet | disable() | 0xa29d20c33a203d4663b49d6135fd5876558c9bf107a898f7a0e95357ec2e42b1 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-erc4626-linear-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0xf0498ccb15b689c1257a638831837f9a1a6e21c1530e7b0c4f9e0fa6af0651c9 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230213-yearn-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0xafb360e583a4ccc8e9935d214a3031628a34797c2f2a1d2f52505137a54c5796 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230208-euler-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0xb6bd869a6825ba2f1c9eba4c1d907dd5791b335cebd7f401b5f5efb9340a4450 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230213-gearbox-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0x69f726d607e0cfd6af767f629799bd33e396b1bad79f46a94a8d88a1ab08abbe | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | setTargets(uint256,uint256) | 0xc5fa0b5a00f4912a6fcf5435bcb7507106a6a5b7923a95a167496a6de8a7b658 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-erc4626-linear-pool-v3 | mainnet | setTargets(uint256,uint256) | 0x98ac729537b2c4aea25f652542bb7769f700500018ca6a9f9879466f75194838 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230213-yearn-linear-pool | mainnet | setTargets(uint256,uint256) | 0x44c2c324db39782f28032ff6aa4234a8ed6d95a11e194006e5b63213abdd209f | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230208-euler-linear-pool | mainnet | setTargets(uint256,uint256) | 0x3c41e27d020ed56c209b202d47efeb4484e52537c3e6ec646e8ba1c123ea16cf | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230213-gearbox-linear-pool | mainnet | setTargets(uint256,uint256) | 0x48860201a4ce2338c9b0cd0a11ef9bffea1ee89bf1f610a71e12a2817be310ec | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-erc4626-linear-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-erc4626-linear-pool-v3 | optimism | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230213-yearn-linear-pool | optimism | setSwapFeePercentage(uint256) | 0x3e6c904353f81ad8c8ed1a0e926cebf468aeaba4c280147e2d32030a359746f5 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230213-yearn-linear-pool | optimism | setTargets(uint256,uint256) | 0x4cc8eb383f0521484d9a2bc36774c7eb2c8fcc5a9170f797b9509164f5e449fc | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-erc4626-linear-pool-v3 | optimism | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230213-yearn-linear-pool | optimism | disable() | 0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-erc4626-linear-pool-v3 | polygon | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230213-yearn-linear-pool | polygon | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | polygon | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | polygon | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | polygon | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-192/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-192/results_deployment_sorted.md new file mode 100644 index 000000000..55c24416f --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-192/results_deployment_sorted.md @@ -0,0 +1,47 @@ +| deployment | chain | function | role | target | target_address | +|:----------------------------------------|:---------|:------------------------------|:-------------------------------------------------------------------|:------------------|:-------------------------------------------| +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | arbitrum | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | arbitrum | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-erc4626-linear-pool-v3 | arbitrum | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | arbitrum | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | arbitrum | disable() | 0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230213-yearn-linear-pool | arbitrum | setSwapFeePercentage(uint256) | 0x3e6c904353f81ad8c8ed1a0e926cebf468aeaba4c280147e2d32030a359746f5 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | arbitrum | setTargets(uint256,uint256) | 0x4cc8eb383f0521484d9a2bc36774c7eb2c8fcc5a9170f797b9509164f5e449fc | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | setTargets(uint256,uint256) | 0xc4f7c40d1a1c9c1b1f2c156f3cff7d927a45ed28ae5b64d1fb81ea8ca888ee95 | feeManager | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-aave-rebalanced-linear-pool-v4 | mainnet | setTargets(uint256,uint256) | 0xc5fa0b5a00f4912a6fcf5435bcb7507106a6a5b7923a95a167496a6de8a7b658 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-erc4626-linear-pool-v3 | mainnet | disable() | 0xb1bb0315049487d8b225a40fc17d5a02647e84002cfa5b11eda57b967629f72c | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-erc4626-linear-pool-v3 | mainnet | setSwapFeePercentage(uint256) | 0xf0498ccb15b689c1257a638831837f9a1a6e21c1530e7b0c4f9e0fa6af0651c9 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230206-erc4626-linear-pool-v3 | mainnet | setTargets(uint256,uint256) | 0x98ac729537b2c4aea25f652542bb7769f700500018ca6a9f9879466f75194838 | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230208-euler-linear-pool | mainnet | disable() | 0xdf42af2dd96057a6f29e617c9d6c389e3ac79347b2e4d0b06b8d33cd7e15c40b | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230208-euler-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0xb6bd869a6825ba2f1c9eba4c1d907dd5791b335cebd7f401b5f5efb9340a4450 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230208-euler-linear-pool | mainnet | setTargets(uint256,uint256) | 0x3c41e27d020ed56c209b202d47efeb4484e52537c3e6ec646e8ba1c123ea16cf | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230213-gearbox-linear-pool | mainnet | disable() | 0xa29d20c33a203d4663b49d6135fd5876558c9bf107a898f7a0e95357ec2e42b1 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230213-gearbox-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0x69f726d607e0cfd6af767f629799bd33e396b1bad79f46a94a8d88a1ab08abbe | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230213-gearbox-linear-pool | mainnet | setTargets(uint256,uint256) | 0x48860201a4ce2338c9b0cd0a11ef9bffea1ee89bf1f610a71e12a2817be310ec | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230213-yearn-linear-pool | mainnet | disable() | 0xc6d41c26426784c7fab7298da04eab2259046b3c7c8351286ee364e4e0a3bd1e | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230213-yearn-linear-pool | mainnet | setSwapFeePercentage(uint256) | 0xafb360e583a4ccc8e9935d214a3031628a34797c2f2a1d2f52505137a54c5796 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230213-yearn-linear-pool | mainnet | setTargets(uint256,uint256) | 0x44c2c324db39782f28032ff6aa4234a8ed6d95a11e194006e5b63213abdd209f | feeManager | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-aave-rebalanced-linear-pool-v4 | optimism | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-erc4626-linear-pool-v3 | optimism | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-erc4626-linear-pool-v3 | optimism | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-erc4626-linear-pool-v3 | optimism | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230213-yearn-linear-pool | optimism | disable() | 0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230213-yearn-linear-pool | optimism | setSwapFeePercentage(uint256) | 0x3e6c904353f81ad8c8ed1a0e926cebf468aeaba4c280147e2d32030a359746f5 | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230213-yearn-linear-pool | optimism | setTargets(uint256,uint256) | 0x4cc8eb383f0521484d9a2bc36774c7eb2c8fcc5a9170f797b9509164f5e449fc | feeManager | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-aave-rebalanced-linear-pool-v4 | polygon | setTargets(uint256,uint256) | 0xb78893595b75c70259cbe387580b752c333e0a52d40fb98d6bcdf4b54b0cef91 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | polygon | disable() | 0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-erc4626-linear-pool-v3 | polygon | setSwapFeePercentage(uint256) | 0x4e369965828f3a76cdcb37d24a69a3ddf1f0bbfa9110f9978e25d804504b279f | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230206-erc4626-linear-pool-v3 | polygon | setTargets(uint256,uint256) | 0x342f10e709ad2a053a4e5035c4b3b703fea94c19f458d3887a6323472f0e42cd | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | polygon | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230213-yearn-linear-pool | polygon | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | +| 20230213-yearn-linear-pool | polygon | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | feeManager | 0x7c68c42De679ffB0f16216154C996C354cF1161B | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-195.json b/BIPs/2023/00before_weekly/BIP-195.json new file mode 100644 index 000000000..d5e25c167 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-195.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1677103514316, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xfd22559117dce8496e5757f7bd8e97870d19c3f05d72603e901c5ce8c682d9c5" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xFBf87D2C22d1d298298ab5b0Ec957583a2731d15", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF0ea3559Cf098455921d74173dA83fF2f6979495", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-195.report.txt b/BIPs/2023/00before_weekly/BIP-195.report.txt new file mode 100644 index 000000000..ab4a2438d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-195.report.txt @@ -0,0 +1,10 @@ +BIPs/BIP-195.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+---------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+---------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| killGauge() | 0x06df3b2bbb68adc8b0e302443692037ed9f91b42000000000000000000000012 | BPSP | 0x06Df3b2bbB68adc8B0e302443692037ED9f91b42 | 60 | 0xFBf87D2C22d1d298298ab5b0Ec957583a2731d15 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x0510ccf9eb3ab03c1508d3b9769e8ee2cfd6fdcf00000000000000000000005d | MAI-BSP | 0x0510cCF9eB3AB03C1508d3b9769E8Ee2CFd6FDcF | 50 | 0xF0ea3559Cf098455921d74173dA83fF2f6979495 | NA | N/A% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+---------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Arbitrum.json b/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Arbitrum.json new file mode 100644 index 000000000..1aef7a0be --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Arbitrum.json @@ -0,0 +1,139 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1676481906332, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x4ecea263abaefe6d9ce1a92d718ed2abed34f382529ed056efcaac41fae36968" + }, + "transactions": [ + { + "to": "0x965772e0e9c84b6f359c8597c891108dcf1c5b1a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "rawAmount": "2265859407080000000000" + } + }, + { + "to": "0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "rawAmount": "17864433032306076000000" + } + }, + { + "to": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x965772e0e9c84b6f359c8597c891108dcf1c5b1a", + "merkleRoot": "0x7217539306f1cf1102c8d4c3d2c7097dd5ac2ebdca24b67f1d41a67a7e9059e3", + "amount": "2265859407080000000000", + "distributionId": "1" + } + }, + { + "to": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8", + "merkleRoot": "0xb026d0ae7f810786a5b22b955c37390d7fa9cfbd93a350cc06f9f01a3cd5e7f9", + "amount": "17864433032306076000000", + "distributionId": "1" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Mainnet.json b/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Mainnet.json new file mode 100644 index 000000000..9b3f37fc7 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Mainnet.json @@ -0,0 +1,437 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1676481906332, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x4ecea263abaefe6d9ce1a92d718ed2abed34f382529ed056efcaac41fae36968" + }, + "transactions": [ + { + "to": "0x226f7b842E0F0120b7E194D05432b3fd14773a9D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "rawAmount": "1190799413990000000000000" + } + }, + { + "to": "0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "rawAmount": "267578138379630000000000" + } + }, + { + "to": "0x43D4A3cd90ddD2F8f4f693170C9c8098163502ad", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "rawAmount": "14891487650000000000000" + } + }, + { + "to": "0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "rawAmount": "287507813570000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "rawAmount": "296749181330000000000000" + } + }, + { + "to": "0xCFEAead4947f0705A14ec42aC3D44129E1Ef3eD5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "rawAmount": "5328196362000" + } + }, + { + "to": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x226f7b842E0F0120b7E194D05432b3fd14773a9D", + "merkleRoot": "0xc3e895f785a829d1c3ff819111a8c6fbdff08ba32e49817454e54d925ecf5a74", + "amount": "1190799413990000000000000", + "distributionId": "1" + } + }, + { + "to": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198", + "merkleRoot": "0x82e07939d716cd331213f2d6506e96a379293b25464280937a02b927b152fab7", + "amount": "267578138379630000000000", + "distributionId": "1" + } + }, + { + "to": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad", + "merkleRoot": "0x2e2926997bdbcaf411b875c14ffc00f9b67e2bdc7ca3d620ddaa4ac1c675e593", + "amount": "14891487650000000000000", + "distributionId": "1" + } + }, + { + "to": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", + "merkleRoot": "0x748ae6b1a5704a0711f56bd6b109627ab0d39ae6c0eee11d85450fba7979c8ec", + "amount": "287507813570000000000000", + "distributionId": "1" + } + }, + { + "to": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0xba100000625a3754423978a60c9317c58a424e3d", + "merkleRoot": "0xd188d61d933cc2f802ddc8dab28268c5adb725a321da8037d01dfba433bf5098", + "amount": "296749181330000000000000", + "distributionId": "1" + } + }, + { + "to": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5", + "merkleRoot": "0xb93a2780fabf6d29c91361e417c21be8452d3877caa3908a2f8c4319fe69ea51", + "amount": "5328196362000", + "distributionId": "1" + } + }, + { + "to": "0x43D4A3cd90ddD2F8f4f693170C9c8098163502ad", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x567d220B0169836cBF351DF70A9c517096ec9De7", + "amount": "3428570000000000000000" + } + }, + { + "to": "0x226f7b842E0F0120b7E194D05432b3fd14773a9D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xBfbd6e720ffdF0497f69C95E5C03a4861C65A6E7", + "amount": "2250000000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Polygon.json b/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Polygon.json new file mode 100644 index 000000000..20fc7dd87 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-196/Merkle-Redist-Polygon.json @@ -0,0 +1,350 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1676481906332, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0x4ecea263abaefe6d9ce1a92d718ed2abed34f382529ed056efcaac41fae36968" + }, + "transactions": [ + { + "to": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "rawAmount": "23488534846990000000000" + } + }, + { + "to": "0x2e1ad108ff1d8c782fcbbb89aad783ac49586756", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "rawAmount": "43359515980000000000000" + } + }, + { + "to": "0x580a84c73811e1839f75d86d75d88cca0c241ff4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "rawAmount": "9067620180000000000000" + } + }, + { + "to": "0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "rawAmount": "33852289635193570000000" + } + }, + { + "to": "0xc3c7d422809852031b44ab29eec9f1eff2a58756", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "rawAmount": "462474566260000000000" + } + }, + { + "to": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", + "merkleRoot": "0xd60e1930f3795b7fc476e4c208faa01424b9254be9891fdbd54448bc83b8960b", + "amount": "23488534846990000000000", + "distributionId": "1" + } + }, + { + "to": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x2e1ad108ff1d8c782fcbbb89aad783ac49586756", + "merkleRoot": "0x39412861e4b6e6d3df1e53b99caa8c8e98cb54ce324634362c13699d60856933", + "amount": "43359515980000000000000", + "distributionId": "1" + } + }, + { + "to": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x580a84c73811e1839f75d86d75d88cca0c241ff4", + "merkleRoot": "0xad7281e455aa81082448fbce871ead5307f1d3dfb604997c587722ebb6dc0cd6", + "amount": "9067620180000000000000", + "distributionId": "1" + } + }, + { + "to": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3", + "merkleRoot": "0x1e394156c9e78abdaf43c04381f4022b37f10a518f8b45fe535543d70edb5cc1", + "amount": "33852289635193570000000", + "distributionId": "1" + } + }, + { + "to": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "distributionId", + "type": "uint256" + } + ], + "name": "createDistribution", + "payable": false + }, + "contractInputsValues": { + "token": "0xc3c7d422809852031b44ab29eec9f1eff2a58756", + "merkleRoot": "0x1971ead7b0839e6de2503528b498ca729a1d3547399f35394d4a0b0788686af3", + "amount": "462474566260000000000", + "distributionId": "1" + } + }, + { + "to": "0xc3c7d422809852031b44ab29eec9f1eff2a58756", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x87d93d9b2c672bf9c9642d853a8682546a5012b5", + "amount": "5000000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-199/BIP-199.md b/BIPs/2023/00before_weekly/BIP-199/BIP-199.md new file mode 100644 index 000000000..882562419 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/BIP-199.md @@ -0,0 +1,60 @@ +## [Payload PR - BIP-199](https://github.com/BalancerMaxis/multisig-ops/pull/82) + +## Background +The [v3 Weighted Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230206-weighted-pool-v3) and the [v3 Composable Stable Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks//20230206-composable-stable-pool-v3) where deployed to fix reentrancy issue described [here](https://forum.balancer.fi/t/reentrancy-vulnerability-scope-expanded/4345). Some initial "wire-up" of permissions is required to bring them into standard function. This BIP lays out these changes and requests permission to apply them. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-199) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-199/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-199/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-199/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-199/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-199/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +In the tables above: + +The "emergency" caller group: + - maps to the Balancer Emergency DAO Multisig as defined in [this vote](https://forum.balancer.fi/t/form-the-emergency-subdao/3197). + +The "feeManager" caller group: + - maps to the feeManager multisig controlled by the Balancer Maxis on all chains except mainnet. + - On mainnet a special feeSetter multisig exists to manage a-factors and a gautletFeeSetter contract that allows bulk changing of fees. + - The maxi's functionally control all contracts that make up the feeManager target group. + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-199/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------|:-------------------------------------------------------------------|:-------------------|:-------------------------------------------| +| 20230206-weighted-pool-v3 | arbitrum | enableRecoveryMode() | 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c | poolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230206-composable-stable-pool-v3 | arbitrum | enableRecoveryMode() | 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e | poolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | poolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | poolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-weighted-pool-v3 | mainnet | enableRecoveryMode() | 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7 | poolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230206-composable-stable-pool-v3 | mainnet | enableRecoveryMode() | 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f | poolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230206-weighted-pool-v3 | optimism | enableRecoveryMode() | 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748 | poolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230206-composable-stable-pool-v3 | optimism | enableRecoveryMode() | 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec | poolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230206-weighted-pool-v3 | polygon | enableRecoveryMode() | 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9 | poolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230206-composable-stable-pool-v3 | polygon | enableRecoveryMode() | 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d | poolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Directory of Addresses used by script which generated the table and multsig payloads](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/brownie/helpers/addresses.py) + diff --git a/BIPs/2023/00before_weekly/BIP-199/README.md b/BIPs/2023/00before_weekly/BIP-199/README.md new file mode 100644 index 000000000..f8dfd21b6 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/README.md @@ -0,0 +1 @@ +[See Here](BIP-199.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-199/arbitrum.json b/BIPs/2023/00before_weekly/BIP-199/arbitrum.json new file mode 100644 index 000000000..a8e4881a9 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/arbitrum.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c, 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e]", + "account": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-199/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-199/function_descriptions.md new file mode 100644 index 000000000..fa71cf184 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/function_descriptions.md @@ -0,0 +1,3 @@ +| function | description | +|:---------------------|:------------------------------------------------------------------------------------------------------------| +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-199/gnosis.json b/BIPs/2023/00before_weekly/BIP-199/gnosis.json new file mode 100644 index 000000000..f488e67d2 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/gnosis.json @@ -0,0 +1,41 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87, 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f]", + "account": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-199/inputs.json b/BIPs/2023/00before_weekly/BIP-199/inputs.json new file mode 100644 index 000000000..413d7caae --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/inputs.json @@ -0,0 +1,18 @@ +[ + { + "deployments": [ + "20230206-weighted-pool-v3", + "20230206-composable-stable-pool-v3" + ], + "chain_map": { + "gnosis": 100, + "mainnet": 1, + "arbitrum": 42161, + "optimism": 10, + "polygon": 137 + }, + "function_caller_map": { + "enableRecoveryMode()": "poolRecoveryHelper" + } + } +] diff --git a/BIPs/2023/00before_weekly/BIP-199/mainnet.json b/BIPs/2023/00before_weekly/BIP-199/mainnet.json new file mode 100644 index 000000000..fca514311 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/mainnet.json @@ -0,0 +1,41 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7, 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f]", + "account": "0x1b300C86980a5195bCF49bD419A068D98dC133Db" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-199/optimism.json b/BIPs/2023/00before_weekly/BIP-199/optimism.json new file mode 100644 index 000000000..41f1afb26 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/optimism.json @@ -0,0 +1,41 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748, 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec]", + "account": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-199/polygon.json b/BIPs/2023/00before_weekly/BIP-199/polygon.json new file mode 100644 index 000000000..fdec90b16 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/polygon.json @@ -0,0 +1,41 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9, 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d]", + "account": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-199/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-199/results_address_sorted.md new file mode 100644 index 000000000..a7f1550bc --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/results_address_sorted.md @@ -0,0 +1,12 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------|:-------------------------------------------------------------------|:-------------------|:-------------------------------------------| +| 20230206-weighted-pool-v3 | arbitrum | enableRecoveryMode() | 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c | poolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230206-composable-stable-pool-v3 | arbitrum | enableRecoveryMode() | 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e | poolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | poolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | poolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-weighted-pool-v3 | mainnet | enableRecoveryMode() | 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7 | poolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230206-composable-stable-pool-v3 | mainnet | enableRecoveryMode() | 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f | poolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230206-weighted-pool-v3 | optimism | enableRecoveryMode() | 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748 | poolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230206-composable-stable-pool-v3 | optimism | enableRecoveryMode() | 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec | poolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230206-weighted-pool-v3 | polygon | enableRecoveryMode() | 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9 | poolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230206-composable-stable-pool-v3 | polygon | enableRecoveryMode() | 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d | poolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-199/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-199/results_deployment_sorted.md new file mode 100644 index 000000000..9a7cce454 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-199/results_deployment_sorted.md @@ -0,0 +1,12 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------|:-------------------------------------------------------------------|:-------------------|:-------------------------------------------| +| 20230206-composable-stable-pool-v3 | arbitrum | enableRecoveryMode() | 0xe6321aecff7f0051958627890aa2a16d7221f860dfa3359a1cea6f4a3f87933e | poolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230206-weighted-pool-v3 | arbitrum | enableRecoveryMode() | 0x1e3379f440ccd8ad4fbacfa446ce3de718eda1a091b271c9053bdedff90cdf1c | poolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | poolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | poolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-composable-stable-pool-v3 | mainnet | enableRecoveryMode() | 0x8c91ddec262ae544d56464e260d0b840239949d86149c139510d5e399a30099f | poolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230206-weighted-pool-v3 | mainnet | enableRecoveryMode() | 0xa53ffba9aa2195cd7646f9cbaca0985f432bded3dd5319916afc5ec395f280d7 | poolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230206-composable-stable-pool-v3 | optimism | enableRecoveryMode() | 0xa7508bde3c3d65fa21321ca35b2d1da564bc4a772cff9947de3c3e1a467e9dec | poolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230206-weighted-pool-v3 | optimism | enableRecoveryMode() | 0x076ec7596fb2fd56057ab4b4ab843852ee914ca3095f9cdf46a79085b266a748 | poolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230206-composable-stable-pool-v3 | polygon | enableRecoveryMode() | 0x4645b2fd612d1e3d4f7cbd5f68df6511f4dedfcba83090853604d4fbf33f467d | poolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230206-weighted-pool-v3 | polygon | enableRecoveryMode() | 0x8e751c9d2a2e4de88b6c71094d5a2b18be451801333ea94579761179bc9b9ef9 | poolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-200-to-204.json b/BIPs/2023/00before_weekly/BIP-200-to-204.json new file mode 100644 index 000000000..4fb022335 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-200-to-204.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1676468105687, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x0ecfd2a37aa9ea7ef7a670fb4ad30d67688d0a83cc64dbfaaf457b867615bd4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000056124eb16441a1ef12a4ccaeabdd3421281b795a0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000025d6f29429bcccc129d1a3e2a5642c8b929bcc070000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000d27671f057e9e72751106fbfbbbb33827d9865460000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000003fb2975e00b3dbb97e8315a5acbff6b38026fdf30000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000056a65cc666bfe538c5a031942369f6f63eb422400000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-200-to-204.report.txt b/BIPs/2023/00before_weekly/BIP-200-to-204.report.txt new file mode 100644 index 000000000..926aba0aa --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-200-to-204.report.txt @@ -0,0 +1,13 @@ +BIPs/BIP-200-to-204.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------------------------------------------------+------+--------+-------------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------------------------------------------------+------+--------+-------------------------+ +| add_gauge(address,int128) | 0x9232a548dd9e81bac65500b5e0d918f8ba93675c000200000000000000000423 | BAL-20WETH-80LIT | 0x9232a548DD9E81BaC65500b5e0d918F8Ba93675C | N/A | ERROR, N/A doesnt match BAL-20WETH-80LIT: 0x56124eb16441A1eF12A4CCAeAbDD3421281b795A | 2 | 2.0% | ve8020 Single Recipient | +| add_gauge(address,int128) | 0xfedb19ec000d38d92af4b21436870f115db22725000000000000000000000010 | bb-ag-USD | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 | 2000 | 0x25D6F29429bccCc129d1A3e2a5642C8B929BCC07 | 2 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0xb973ca96a3f0d61045f53255e319aedb6ed49240000200000000000000000011 | 50bbagGNO-50bbagUSD | 0xB973Ca96a3f0D61045f53255E319AEDb6ED49240 | N/A | 0xd27671f057e9e72751106fBfbBBB33827D986546 | 2 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56000200000000000000000012 | 50bbagGNO-50bbagWETH | 0xF48f01DCB2CbB3ee1f6AaB0e742c2D3941039d56 | N/A | 0x3FB2975E00B3dbB97E8315a5ACbFF6B38026FDf3 | 2 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x66f33ae36dd80327744207a48122f874634b3ada000100000000000000000013 | agUSD-agWETH-agWBTC | 0x66F33Ae36dD80327744207a48122F874634B3adA | N/A | 0x56A65cC666bfe538c5a031942369F6F63eb42240 | 2 | 100.0% | ChildChainStreamer | ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------------------------------------------------+------+--------+-------------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-205/BIP-205.md b/BIPs/2023/00before_weekly/BIP-205/BIP-205.md new file mode 100644 index 000000000..41e3d6c6d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-205/BIP-205.md @@ -0,0 +1,105 @@ +## [Payload PR - BIP-205](https://github.com/BalancerMaxis/multisig-ops/pull/93) + +## Background +Gnosis Chain is the first chain provisioned by the Maxis in quite a while. In the process of bringing this chain online, we have already passed governance to enable 4 gauges, as wel as [granting EmergencyDAO permissions](https://forum.balancer.fi/t/bip-183-grant-v2-factory-disable-and-v3-standard-permissions-on-gnosis-chain/4385). As Gnosis was working to move some initial capital into the vaults, they discovered that it was not possible to deposit base assets like USDC into these nested pools. + +We learned in the last days that the set of deployed smart contracts from blabs do are handed over without any configuration, and it is (as it should be) the responsibility of Balancer Governance to provision a new chain. + +## The full chain permissions template + +Recent BIPs to enable permisisons have been generated by a [script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) maintained by the Maxis, which puts together all the tables you look at, the json payload, and even writes a lot of this text. This script has been extended to check if any permissions are already set and ignore them. + +A few days were spent researching all of the permissions Balancer Governance has set in the past in order to build a complete new chain template. Additional time was spent to speak to blabs and dig a bit into the vault code in order to come up with simple descriptions of how what these permissions are for and grant. + +The template is described as this [input configuration](https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/authorizer/new-chain-template.json) which can be fed into the auth generator after updating it with any new deployments and changing it to match the desired chain(s). A modified run of the script dumped out this [more human readbale version](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/default_chain_permissions.md). More information about all of the functions involved in the template can found [here](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/permissioned_function_descriptions.md) + + + + +## English Specification + +The authorization payload script outlined above was modified to allow it to: + +- Check each permission to see if it is already granted. +- Skip any permissions that are already in place with the exact same actionId and caller. +- Halt and throw an error if any of the roles already have a caller assigned other than the one specified in the template. + +This script was run, no errors were found and the following the transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-205). These transaction details make up the delta of permissions that sitll need to be added to bring the gnosis-chain into line with our new template, and into a state of full function. + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-205/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-205/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-205/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-205/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-205/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +In the tables above: + +The "emergency" caller group: + - maps to the Balancer Emergency DAO Multisig as defined in [this vote](https://forum.balancer.fi/t/form-the-emergency-subdao/3197). + +The "feeManager" caller group: + - maps to the feeManager multisig controlled by the Balancer Maxis on all chains except mainnet. + - On mainnet a special feeSetter multisig exists to manage a-factors and a gautletFeeSetter contract that allows bulk changing of fees. + - The maxi's functionally control all contracts that make up the feeManager target group. + +the "lm" caller group: + - Maps to a multisig managed by the maxis that is used for operational changes that, for the most part, do not require governance as they have been governed to happen in perpetuity. For example, fee handling. + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-205/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | target | target_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------|:-------------------------------------------| +| 20221122-composable-stable-pool-v2 | gnosis | setSwapFeePercentage(uint256) | 0x60b21b2ae5a82434b74afd79abbbafb941197b06237922de3a54d36aaa9c4ea2 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221122-composable-stable-pool-v2 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0xd82b3ab66c70adebd687f4d69dae8b0abd33cacede07deb0c948dc2383f4aeb7 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221122-composable-stable-pool-v2 | gnosis | stopAmplificationParameterUpdate() | 0x8ab1e42805feb8214d075b216e36ee38c5f3064d5c2ada1d99aa9f63367a029d | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0x528c3020f2bd77511812b0aacb3cb91170124524cfdf0d4941db79d4ebf6ff72 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220527-child-chain-gauge-token-adder | gnosis | addTokenToGauge(address,address,address) | 0x1ff8dca7a9af725b8fde69703b657ae58c04e9a7153ef1025379deb0dda4f926 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220517-protocol-fee-withdrawer | gnosis | withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220725-protocol-fee-percentages-provider | gnosis | setFeeTypePercentage(uint256,uint256) | 0x77b2549a67e235e7bd37726ed4ebd404701323182a0028ea067bb8337e6e15a3 | dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | +| 20210418-vault | gnosis | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | ProtocolFeePercentagesProvider | 0x41B953164995c11C81DA73D212ED8Af25741b7Ac | +| 20210418-vault | gnosis | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | ProtocolFeePercentagesProvider | 0x41B953164995c11C81DA73D212ED8Af25741b7Ac | +| 20220413-child-chain-gauge-factory | gnosis | notify_reward_amount(address) | 0xf139842955587e7816c90b6d72792f2b7e6014d560464517094450df28164bc8 | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20221123-pool-recovery-helper | gnosis | addPoolFactory(address) | 0x27f2737d0304362f4d515085adcfa1319a27436bb556d75e8ce5216c8ad601be | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20221123-pool-recovery-helper | gnosis | removePoolFactory(address) | 0xf73432698cd2e092161276906856b882c56056a85b0a0792733cc87cc6d49e57 | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20221122-composable-stable-pool-v2 | gnosis | enableRecoveryMode() | 0x793ca26aa62caae6b2fb946bce982e9d0448354abd818cabb58abd0d04a3ef03 | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | enableRecoveryMode() | 0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20220609-stable-pool-v2 | gnosis | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | pause() | 0x21e53d020b912764bb3a437d64ccad86ad4b36334ab4933c92b4f7e20ec74c34 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | disable() | 0x12068567376f5214f735cd6e477a885e135c8964f6771112086ce1fda7cc475d | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | pause() | 0xd919e97356fc5c0cb30e2fdb110ca94a297b955b06db82ee8d9d603c7f9d1989 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20210418-vault | gnosis | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20220517-protocol-fee-withdrawer | gnosis | denylistToken(address) | 0x6843b94f991c5dbdf5c0bd1ce79ce0de10b8e72ed8b70dbe019e3eda4079802a | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20210418-vault | gnosis | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | ProtocolFeesWithdrawer | 0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca | +| 20210418-vault | gnosis | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Directory of Addresses used by script which generated the table and multsig payloads](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/brownie/helpers/addresses.py) + diff --git a/BIPs/2023/00before_weekly/BIP-205/README.md b/BIPs/2023/00before_weekly/BIP-205/README.md new file mode 100644 index 000000000..6f6ec101a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-205/README.md @@ -0,0 +1 @@ +[See Here](BIP-205.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-205/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-205/function_descriptions.md new file mode 100644 index 000000000..8aaab9212 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-205/function_descriptions.md @@ -0,0 +1,24 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setPaused(bool) | Stops all trading activity involving the vault | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setFlashLoanFeePercentage(uint256) | Sets the protocol fee charged on flash loans for this deployment | +| withdrawCollectedFees(address[],uint256[],address) | Allows the withdrawal of collected protocol fees | +| setFeeTypePercentage(uint256,uint256) | Sets the protocol fee for a particular fee type for this deployment | +| addTokenToGauge(address,address,address) | Whitelists a new token to be used as a reward token for a particular gauge | +| notify_reward_amount(address) | Begins a seven day distribution of token rewards | +| denylistToken(address) | Adds a token to the ProtocolFeeWithdrawer deny list which prevents the withdrawal of that token from the ProtocolFeeCollector | +| addPoolFactory(address) | Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| removePoolFactory(address) | Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | diff --git a/BIPs/2023/00before_weekly/BIP-205/gnosis.json b/BIPs/2023/00before_weekly/BIP-205/gnosis.json new file mode 100644 index 000000000..633c9e36e --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-205/gnosis.json @@ -0,0 +1,152 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87, 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f, 0x793ca26aa62caae6b2fb946bce982e9d0448354abd818cabb58abd0d04a3ef03, 0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e, 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a]", + "account": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154, 0x21e53d020b912764bb3a437d64ccad86ad4b36334ab4933c92b4f7e20ec74c34, 0x12068567376f5214f735cd6e477a885e135c8964f6771112086ce1fda7cc475d, 0xd919e97356fc5c0cb30e2fdb110ca94a297b955b06db82ee8d9d603c7f9d1989, 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x6843b94f991c5dbdf5c0bd1ce79ce0de10b8e72ed8b70dbe019e3eda4079802a]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x60b21b2ae5a82434b74afd79abbbafb941197b06237922de3a54d36aaa9c4ea2, 0xd82b3ab66c70adebd687f4d69dae8b0abd33cacede07deb0c948dc2383f4aeb7, 0x8ab1e42805feb8214d075b216e36ee38c5f3064d5c2ada1d99aa9f63367a029d, 0x528c3020f2bd77511812b0aacb3cb91170124524cfdf0d4941db79d4ebf6ff72, 0x1ff8dca7a9af725b8fde69703b657ae58c04e9a7153ef1025379deb0dda4f926, 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x77b2549a67e235e7bd37726ed4ebd404701323182a0028ea067bb8337e6e15a3]", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xf139842955587e7816c90b6d72792f2b7e6014d560464517094450df28164bc8, 0x27f2737d0304362f4d515085adcfa1319a27436bb556d75e8ce5216c8ad601be, 0xf73432698cd2e092161276906856b882c56056a85b0a0792733cc87cc6d49e57]", + "account": "0x955556b002d05c7B31a9394c10897c1DA19eAEab" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-205/inputs.json b/BIPs/2023/00before_weekly/BIP-205/inputs.json new file mode 100644 index 000000000..7fa54542d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-205/inputs.json @@ -0,0 +1,93 @@ +[ + { + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": "lm", + "startAmplificationParameterUpdate(uint256,uint256)": "lm", + "stopAmplificationParameterUpdate()": "lm", + "pause()": "emergency", + "disable()": "emergency", + "enableRecoveryMode()": ["emergency", "PoolRecoveryHelper"], + "setTargets": "lm" + }, + "deployments": [ + "20230206-weighted-pool-v3", + "20230206-composable-stable-pool-v3", + "20220404-erc4626-linear-pool-v2", + "20220908-weighted-pool-v2", + "20220609-stable-pool-v2", + "20221122-composable-stable-pool-v2", + "20221207-aave-rebalanced-linear-pool-v3", + "20220425-unbutton-aave-linear-pool", + "20230206-aave-rebalanced-linear-pool-v4" + ] + }, + { + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "BalancerRelayer", + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "BalancerRelayer", + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": "BalancerRelayer", + "manageUserBalance((uint8,address,uint256,address,address)[])": "BalancerRelayer", + "setRelayerApproval(address,address,bool)": "BalancerRelayer", + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": "BalancerRelayer", + "withdrawCollectedFees(address[],uint256[],address)": "ProtocolFeesWithdrawer", + "setSwapFeePercentage(uint256)": "ProtocolFeePercentagesProvider", + "setFlashLoanFeePercentage(uint256)": "ProtocolFeePercentagesProvider", + "setPaused(bool)": "emergency" + }, + "deployments": ["20210418-vault"] + }, + + { + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": "dao" + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "addTokenToGauge(address,address,address)": "lm" + }, + "deployments": ["20220527-child-chain-gauge-token-adder"] + }, + { + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "notify_reward_amount(address)": "blabs_ops" + }, + "deployments": ["20220413-child-chain-gauge-factory"] + }, + { + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "denylistToken(address)": "emergency", + "withdrawCollectedFees(address[],uint256[],address)": "lm" + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "gnosis": 100 + }, + "function_caller_map": { + "removePoolFactory(address)": "blabs_ops", + "addPoolFactory(address)": "blabs_ops" + }, + "deployments": ["20221123-pool-recovery-helper"] + } +] diff --git a/BIPs/2023/00before_weekly/BIP-205/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-205/results_address_sorted.md new file mode 100644 index 000000000..ac1502faa --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-205/results_address_sorted.md @@ -0,0 +1,33 @@ +| deployment | chain | function | role | target | target_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------|:-------------------------------------------| +| 20221122-composable-stable-pool-v2 | gnosis | setSwapFeePercentage(uint256) | 0x60b21b2ae5a82434b74afd79abbbafb941197b06237922de3a54d36aaa9c4ea2 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221122-composable-stable-pool-v2 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0xd82b3ab66c70adebd687f4d69dae8b0abd33cacede07deb0c948dc2383f4aeb7 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221122-composable-stable-pool-v2 | gnosis | stopAmplificationParameterUpdate() | 0x8ab1e42805feb8214d075b216e36ee38c5f3064d5c2ada1d99aa9f63367a029d | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0x528c3020f2bd77511812b0aacb3cb91170124524cfdf0d4941db79d4ebf6ff72 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220527-child-chain-gauge-token-adder | gnosis | addTokenToGauge(address,address,address) | 0x1ff8dca7a9af725b8fde69703b657ae58c04e9a7153ef1025379deb0dda4f926 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220517-protocol-fee-withdrawer | gnosis | withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220725-protocol-fee-percentages-provider | gnosis | setFeeTypePercentage(uint256,uint256) | 0x77b2549a67e235e7bd37726ed4ebd404701323182a0028ea067bb8337e6e15a3 | dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | +| 20210418-vault | gnosis | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | ProtocolFeePercentagesProvider | 0x41B953164995c11C81DA73D212ED8Af25741b7Ac | +| 20210418-vault | gnosis | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | ProtocolFeePercentagesProvider | 0x41B953164995c11C81DA73D212ED8Af25741b7Ac | +| 20220413-child-chain-gauge-factory | gnosis | notify_reward_amount(address) | 0xf139842955587e7816c90b6d72792f2b7e6014d560464517094450df28164bc8 | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20221123-pool-recovery-helper | gnosis | addPoolFactory(address) | 0x27f2737d0304362f4d515085adcfa1319a27436bb556d75e8ce5216c8ad601be | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20221123-pool-recovery-helper | gnosis | removePoolFactory(address) | 0xf73432698cd2e092161276906856b882c56056a85b0a0792733cc87cc6d49e57 | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20221122-composable-stable-pool-v2 | gnosis | enableRecoveryMode() | 0x793ca26aa62caae6b2fb946bce982e9d0448354abd818cabb58abd0d04a3ef03 | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | enableRecoveryMode() | 0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20220609-stable-pool-v2 | gnosis | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | pause() | 0x21e53d020b912764bb3a437d64ccad86ad4b36334ab4933c92b4f7e20ec74c34 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | disable() | 0x12068567376f5214f735cd6e477a885e135c8964f6771112086ce1fda7cc475d | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | pause() | 0xd919e97356fc5c0cb30e2fdb110ca94a297b955b06db82ee8d9d603c7f9d1989 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20210418-vault | gnosis | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20220517-protocol-fee-withdrawer | gnosis | denylistToken(address) | 0x6843b94f991c5dbdf5c0bd1ce79ce0de10b8e72ed8b70dbe019e3eda4079802a | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20210418-vault | gnosis | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | ProtocolFeesWithdrawer | 0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca | +| 20210418-vault | gnosis | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-205/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-205/results_deployment_sorted.md new file mode 100644 index 000000000..cb34f5561 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-205/results_deployment_sorted.md @@ -0,0 +1,45 @@ +| deployment | chain | function | role | target | target_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------|:-------------------------------------------| +| 20210418-vault | gnosis | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | ProtocolFeePercentagesProvider | 0x41B953164995c11C81DA73D212ED8Af25741b7Ac | +| 20210418-vault | gnosis | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20210418-vault | gnosis | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | ProtocolFeePercentagesProvider | 0x41B953164995c11C81DA73D212ED8Af25741b7Ac | +| 20210418-vault | gnosis | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | BalancerRelayer | 0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3 | +| 20210418-vault | gnosis | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | ProtocolFeesWithdrawer | 0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca | +| 20220413-child-chain-gauge-factory | gnosis | notify_reward_amount(address) | 0xf139842955587e7816c90b6d72792f2b7e6014d560464517094450df28164bc8 | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20220517-protocol-fee-withdrawer | gnosis | denylistToken(address) | 0x6843b94f991c5dbdf5c0bd1ce79ce0de10b8e72ed8b70dbe019e3eda4079802a | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20220517-protocol-fee-withdrawer | gnosis | withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220527-child-chain-gauge-token-adder | gnosis | addTokenToGauge(address,address,address) | 0x1ff8dca7a9af725b8fde69703b657ae58c04e9a7153ef1025379deb0dda4f926 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20220609-stable-pool-v2 | gnosis | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20220725-protocol-fee-percentages-provider | gnosis | setFeeTypePercentage(uint256,uint256) | 0x77b2549a67e235e7bd37726ed4ebd404701323182a0028ea067bb8337e6e15a3 | dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | +| 20220908-weighted-pool-v2 | gnosis | disable() | 0x0a7c328c61ac04bc0e79818b5fa98658f18c222d04e7433de4d87fcbfa15e08e | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | disable() | 0xa676b10c0a312087e255fee5692d8b31aec2a0839a91e715a43860c3e62437e3 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | enableRecoveryMode() | 0x793ca26aa62caae6b2fb946bce982e9d0448354abd818cabb58abd0d04a3ef03 | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20221122-composable-stable-pool-v2 | gnosis | pause() | 0x21e53d020b912764bb3a437d64ccad86ad4b36334ab4933c92b4f7e20ec74c34 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | setSwapFeePercentage(uint256) | 0x60b21b2ae5a82434b74afd79abbbafb941197b06237922de3a54d36aaa9c4ea2 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221122-composable-stable-pool-v2 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0xd82b3ab66c70adebd687f4d69dae8b0abd33cacede07deb0c948dc2383f4aeb7 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221122-composable-stable-pool-v2 | gnosis | stopAmplificationParameterUpdate() | 0x8ab1e42805feb8214d075b216e36ee38c5f3064d5c2ada1d99aa9f63367a029d | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20221123-pool-recovery-helper | gnosis | addPoolFactory(address) | 0x27f2737d0304362f4d515085adcfa1319a27436bb556d75e8ce5216c8ad601be | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20221123-pool-recovery-helper | gnosis | removePoolFactory(address) | 0xf73432698cd2e092161276906856b882c56056a85b0a0792733cc87cc6d49e57 | blabs_ops | 0x955556b002d05c7B31a9394c10897c1DA19eAEab | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | disable() | 0x12068567376f5214f735cd6e477a885e135c8964f6771112086ce1fda7cc475d | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | enableRecoveryMode() | 0x2b9e0eea2297118ae92c9c5b6b9ca813c821186c7eb196bd9893a4113354ec4e | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | pause() | 0xd919e97356fc5c0cb30e2fdb110ca94a297b955b06db82ee8d9d603c7f9d1989 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221207-aave-rebalanced-linear-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0x528c3020f2bd77511812b0aacb3cb91170124524cfdf0d4941db79d4ebf6ff72 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-aave-rebalanced-linear-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | disable() | 0x9f637c196de3124bc0febbb78f206994fdb68c3f8fe8070b42230a76e14ece0b | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | enableRecoveryMode() | 0xd6f4df0a512a29fa4cf2fcfbe4a0b5ea1266a4bbb1ab6fb5761205dbb038441f | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-composable-stable-pool-v3 | gnosis | pause() | 0xf5a74fe74a42c6fe47ddc84feffff02db467d464946b66b317ef6ceeb66bda38 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0x49832d9b75ad868dbf821cf6ee67ab240ff87c62516d7ce788883fdb8845b215 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x8b804839ef6ccdd1c81145961370ad18658e0bf277e9541fcac3915a5608b94d | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-composable-stable-pool-v3 | gnosis | stopAmplificationParameterUpdate() | 0xe0b032f405d9019d046250109c96eb24cf9ff8ed4694d761a65f6153000193c3 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230206-weighted-pool-v3 | gnosis | disable() | 0xbe826ebecfd64701333db6557b090b44c6155461ce9aaf6efce57ad8dc12bd2e | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | enableRecoveryMode() | 0x2e31b466b15801536da90012c6e9916b3e0587c2d0b7c63328971c531b6ccf87 | PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230206-weighted-pool-v3 | gnosis | pause() | 0xbfd04f562f5ffcabe925c3bca0e8c47adfc4018a6ddeea8baaeccc502815f86d | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | setSwapFeePercentage(uint256) | 0xec5cf9ce37bce68429403f673d6dfd0a89d33d4af5960016f9a1bbd07c71be88 | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-208-209-210.json b/BIPs/2023/00before_weekly/BIP-208-209-210.json new file mode 100644 index 000000000..e114b528a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-208-209-210.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964183483, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x404d83c03f32734e9342a0ae8a55a141feb6f1cd8faa4176ed26b3ab963d88f7" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000005a7f39435fd9c381e4932fa2047c9a5136a5e3e70000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000183d73da7adc5011ec3c46e33bb50271e59ec9760000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-208-209-210.report.txt b/BIPs/2023/00before_weekly/BIP-208-209-210.report.txt new file mode 100644 index 000000000..ffd7a9174 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-208-209-210.report.txt @@ -0,0 +1,10 @@ +BIPs/BIP-208-209-210.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| add_gauge(address,int128) | 0x519cce718fcd11ac09194cff4517f12d263be067000000000000000000000382 | BPT-USD+ | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 | 570 | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 | 4 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 20WETH-80ALCX | 0xf16aEe6a71aF1A9Bc8F56975A4c2705ca7A782Bc | N/A | 0x183D73dA7adC5011EC3C46e33BB50271e59EC976 | 2 | 2.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-211.json b/BIPs/2023/00before_weekly/BIP-211.json new file mode 100644 index 000000000..41932a318 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-211.json @@ -0,0 +1,190 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964532776, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x8dfb4f1fe0a52869780a5452bbcc7f32ade66e930f0d516ab53e00d8a14f6f57" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf53f2fEE2A34f7f8d1BFe1B774A95Cc79C121B34", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x623F3Dbc761B46F64aE7951700Dd7724cB7d6075", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE96924D293b9e2961f9763cA058E389D27341D3d", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x38727B907046818135c9a865D5C40BE6cd1c0514", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5FbEAa96c9D8d0e839780433aA0B3B4d35b049d8", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xD65979f15cfB52E9a6a4f8DEA34c69c1568EA4A8", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xA9A63971c55c132aF0e6B39a081e604F07f4e234", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-211.report.txt b/BIPs/2023/00before_weekly/BIP-211.report.txt new file mode 100644 index 000000000..51fb6346e --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-211.report.txt @@ -0,0 +1,15 @@ +BIPs/BIP-211.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+---------------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+---------------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| killGauge() | 0x50cf90b954958480b8df7958a9e965752f62712400000000000000000000046f | bb-euler-USD-BPT | 0x50Cf90B954958480b8DF7958A9E965752F627124 | 2000 | 0xf53f2fEE2A34f7f8d1BFe1B774A95Cc79C121B34 | NA | 100.0% | mainnet | +| killGauge() | 0x4fd4687ec38220f805b6363c3c1e52d0df3b5023000200000000000000000473 | 50wstETH-50bb-euler-USD | 0x4fD4687ec38220F805b6363C3c1E52D0dF3B5023 | N/A | 0x623F3Dbc761B46F64aE7951700Dd7724cB7d6075 | NA | 100.0% | mainnet | +| killGauge() | 0xb5e3de837f869b0248825e0175da73d4e8c3db6b000200000000000000000474 | 50rETH-50bb-euler-USD | 0xB5E3de837F869B0248825e0175DA73d4E8c3db6B | N/A | 0xE96924D293b9e2961f9763cA058E389D27341D3d | NA | 100.0% | mainnet | +| killGauge() | 0xa718042e5622099e5f0ace4e7122058ab39e1bbe000200000000000000000475 | 50TEMPLE-50bb-euler-USD | 0xa718042E5622099E5F0aCe4E7122058ab39e1bbe | N/A | 0x38727B907046818135c9a865D5C40BE6cd1c0514 | NA | 10.0% | mainnet | +| killGauge() | 0x133d241f225750d2c92948e464a5a80111920331000000000000000000000476 | DOLA-bb-e-USD-BPT | 0x133d241F225750D2c92948E464A5a80111920331 | 200 | 0x5FbEAa96c9D8d0e839780433aA0B3B4d35b049d8 | NA | 100.0% | mainnet | +| killGauge() | 0x00c2a4be503869fa751c2dbcb7156cc970b5a8da000000000000000000000477 | bb-euler-FRAX-bb-euler-USDC-BPT | 0x00C2A4be503869Fa751c2DbcB7156cc970b5a8dA | 1500 | 0xD65979f15cfB52E9a6a4f8DEA34c69c1568EA4A8 | NA | 100.0% | mainnet | +| killGauge() | 0x483006684f422a9448023b2382615c57c5ecf18f000000000000000000000488 | TUSD-bb-e-USD | 0x483006684f422a9448023b2382615C57c5ecF18f | 600 | 0xA9A63971c55c132aF0e6B39a081e604F07f4e234 | NA | 100.0% | mainnet | ++-------------+--------------------------------------------------------------------+---------------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-213.json b/BIPs/2023/00before_weekly/BIP-213.json new file mode 100644 index 000000000..78ee669c0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-213.json @@ -0,0 +1,70 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1678805794131, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x388f6d71a610f5f3466fa248f484a7e9731ba02e708a32549b0775713f00b85a" + }, + "transactions": [ + { + "to": "0x7869296Efd0a76872fEE62A058C8fBca5c1c826C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "contractAddress", + "type": "address" + } + ], + "name": "allowlistAddress", + "payable": false + }, + "contractInputsValues": { + "contractAddress": "0x9a8FEe232DCF73060Af348a1B62Cdb0a19852d13" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9a8FEe232DCF73060Af348a1B62Cdb0a19852d13", + "amount": "50000000000000000000000" + } + }, + { + "to": "0x7869296Efd0a76872fEE62A058C8fBca5c1c826C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "contractAddress", + "type": "address" + } + ], + "name": "allowlistAddress", + "payable": false + }, + "contractInputsValues": { + "contractAddress": "0xBA11E7024cbEB1dd2B401C70A83E0d964144686C" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-216/BIP-216.md b/BIPs/2023/00before_weekly/BIP-216/BIP-216.md new file mode 100644 index 000000000..9429a4cbd --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/BIP-216.md @@ -0,0 +1,91 @@ +## [Payload PR - BIP-216](https://github.com/BalancerMaxis/multisig-ops/pull/113) + +## Background on repeat governance +[BIP-214](https://forum.balancer.fi/t/bip-214-enable-permissions-for-batchrelayer-v5/4498) was approved by governance, but upon review, which occurred after the snapshot, was found to specify the old V4 version of the relayer in both the BIP text and the payloads. +The problem resulted the fact that there are many batch relayers with the same contract name. The script used found the most recent address of a given contract by looking through a reverse lookup table in the monorepo that was not up-to-date. The BIP-214 text specified the BalancerRelayer as the target to receive permissions, but did not include details about which deployment was listed. + +The script that generates these BIPs [has been updated](https://github.com/BalancerMaxis/multisig-ops/pull/112) to allow for targets to be specified as task/deployment (specified a specific version) and to print that information back out in the tables. The revised script was used to regenerate the BIP output and payloads defined below. +## Background on the change +A new version of the primary relayer, [BatchRelayer 5.0 deployed by task 20230314-batch-relayer-v5](https://github.com/balancer/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230314-batch-relayer-v5). +Deployment of the fifth BalancerRelayer using BatchRelayerLibrary, for combining multiple operations (swaps, joins, etc.) in a single transaction. + +This new version provides full support for all versions of Stable Pools: in particular, V2 and higher, which support proportional joins and exits. It also adds support for many new protocol wrappers: CompoundV2 (Midas), Euler, Gearbox, Silo, Tetu, and Yearn as well as other new protocols that use a similar wrapper wrapper. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-214) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-216/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-216/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-216/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-216/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-216/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +In the tables above: + +The "emergency" caller group: + - maps to the Balancer Emergency DAO Multisig as defined in [this vote](https://forum.balancer.fi/t/form-the-emergency-subdao/3197). + +The "feeManager" caller group: + - maps to the feeManager multisig controlled by the Balancer Maxis on all chains except mainnet. + - On mainnet a special feeSetter multisig exists to manage a-factors and a gautletFeeSetter contract that allows bulk changing of fees. + - The maxi's functionally control all contracts that make up the feeManager target group. + +_More information about the various Balancer multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +Target addresses can be verified by checking the outputs of the v5 Vault deployments [here](https://github.com/balancer/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230314-batch-relayer-v5/output) + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-216/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | target | target_address | +|:---------------|:---------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:------------------------------------------|:-------------------------------------------| +| 20210418-vault | arbitrum | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | gnosis | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | mainnet | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | optimism | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | polygon | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +## Risk Assessment +This BIP is routine operation for provisioning a contract deployment/Batch Relayer. Users must also approve BatchRelayers before they have access. More details can be found in the [Special Vault Permissions Context doc](../../docs/Authorizer/vault_permissions.md). + + + +## References + +[Directory of Addresses used by script which generated the table and multsig payloads](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/brownie/helpers/addresses.py) + diff --git a/BIPs/2023/00before_weekly/BIP-216/README.md b/BIPs/2023/00before_weekly/BIP-216/README.md new file mode 100644 index 000000000..5ede2fb5c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/README.md @@ -0,0 +1 @@ +[See Here](BIP-216.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-216/arbitrum.json b/BIPs/2023/00before_weekly/BIP-216/arbitrum.json new file mode 100644 index 000000000..85ad3c667 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/arbitrum.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x598ce0f1ab64B27256759ef99d883EE51138b9bd" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-216/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-216/function_descriptions.md new file mode 100644 index 000000000..fd8d55217 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/function_descriptions.md @@ -0,0 +1,8 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | diff --git a/BIPs/2023/00before_weekly/BIP-216/gnosis.json b/BIPs/2023/00before_weekly/BIP-216/gnosis.json new file mode 100644 index 000000000..83a9790a8 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/gnosis.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x3536fD480CA495Ac91E698A703248A8915c137a3" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-216/inputs.json b/BIPs/2023/00before_weekly/BIP-216/inputs.json new file mode 100644 index 000000000..855f7e6b0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/inputs.json @@ -0,0 +1,20 @@ +[ + { + "deployments": ["20210418-vault"], + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "20230314-batch-relayer-v5/BalancerRelayer", + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "20230314-batch-relayer-v5/BalancerRelayer", + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": "20230314-batch-relayer-v5/BalancerRelayer", + "manageUserBalance((uint8,address,uint256,address,address)[])": "20230314-batch-relayer-v5/BalancerRelayer", + "setRelayerApproval(address,address,bool)": "20230314-batch-relayer-v5/BalancerRelayer", + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": "20230314-batch-relayer-v5/BalancerRelayer" + } + } +] diff --git a/BIPs/2023/00before_weekly/BIP-216/mainnet.json b/BIPs/2023/00before_weekly/BIP-216/mainnet.json new file mode 100644 index 000000000..d97ba93b9 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/mainnet.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0xfeA793Aa415061C483D2390414275AD314B3F621" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-216/optimism.json b/BIPs/2023/00before_weekly/BIP-216/optimism.json new file mode 100644 index 000000000..d7d8316cc --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/optimism.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-216/polygon.json b/BIPs/2023/00before_weekly/BIP-216/polygon.json new file mode 100644 index 000000000..58b307c5d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/polygon.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0xd18d5D377eb23362e54Fa496597d7E962d56C554" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-216/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-216/results_address_sorted.md new file mode 100644 index 000000000..1a1ba570e --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/results_address_sorted.md @@ -0,0 +1,32 @@ +| deployment | chain | function | role | target | target_address | +|:---------------|:---------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:------------------------------------------|:-------------------------------------------| +| 20210418-vault | arbitrum | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | gnosis | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | mainnet | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | optimism | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | polygon | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-216/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-216/results_deployment_sorted.md new file mode 100644 index 000000000..1a1ba570e --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-216/results_deployment_sorted.md @@ -0,0 +1,32 @@ +| deployment | chain | function | role | target | target_address | +|:---------------|:---------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:------------------------------------------|:-------------------------------------------| +| 20210418-vault | arbitrum | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | arbitrum | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x598ce0f1ab64B27256759ef99d883EE51138b9bd | +| 20210418-vault | gnosis | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | gnosis | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x3536fD480CA495Ac91E698A703248A8915c137a3 | +| 20210418-vault | mainnet | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | mainnet | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0xfeA793Aa415061C483D2390414275AD314B3F621 | +| 20210418-vault | optimism | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | optimism | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | polygon | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | +| 20210418-vault | polygon | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0xd18d5D377eb23362e54Fa496597d7E962d56C554 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-217.json b/BIPs/2023/00before_weekly/BIP-217.json new file mode 100644 index 000000000..8e0a30d81 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-217.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675214876462, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ba43c1e4422c7ab20dfffcad5d726e98aadb8c326c4f57ec63baedc74c6b9b1" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000019ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-217.report.txt b/BIPs/2023/00before_weekly/BIP-217.report.txt new file mode 100644 index 000000000..8e4d2433f --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-217.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-217.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+-----------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+-----------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------------+ +| add_gauge(address,int128) | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | RDNT-WETH | 0x32dF62dc3aEd2cD6224193052Ce665DC18165841 | N/A | 0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B | 4 | 10.0% | ChildChainStreamer | ++---------------------------+--------------------------------------------------------------------+-----------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-218.json b/BIPs/2023/00before_weekly/BIP-218.json new file mode 100644 index 000000000..0424e3862 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-218.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675214876462, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ba43c1e4422c7ab20dfffcad5d726e98aadb8c326c4f57ec63baedc74c6b9b1" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000fd29298041ea355cf7e15652689f2865443c31440000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-218.report.txt b/BIPs/2023/00before_weekly/BIP-218.report.txt new file mode 100644 index 000000000..8e44f4aea --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-218.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-218.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0x779d01f939d78a918a3de18cc236ee89221dfd4e0000000000000000000004c7 | bb-s-USD | 0x779d01F939D78a918A3de18cC236ee89221dfd4E | 2000 | 0xFd29298041eA355cF7e15652689F2865443C3144 | 2 | 100.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-219.json b/BIPs/2023/00before_weekly/BIP-219.json new file mode 100644 index 000000000..d1ab58b88 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-219.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675214876462, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ba43c1e4422c7ab20dfffcad5d726e98aadb8c326c4f57ec63baedc74c6b9b1" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000028D4FE67c68d340fe66CfbCBe8e2cd279d8AA6dD0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-219.report.txt b/BIPs/2023/00before_weekly/BIP-219.report.txt new file mode 100644 index 000000000..949a3e44c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-219.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-219.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| add_gauge(address,int128) | 0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a000000000000000000000ace | bb-t-USD | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A | 2000 | 0x28D4FE67c68d340fe66CfbCBe8e2cd279d8AA6dD | 3 | 100.0% | ChildChainStreamer | ++---------------------------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-220.json b/BIPs/2023/00before_weekly/BIP-220.json new file mode 100644 index 000000000..9a86a1d22 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-220.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675214876462, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ba43c1e4422c7ab20dfffcad5d726e98aadb8c326c4f57ec63baedc74c6b9b1" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000254f3a52Ba9e0cac4E32B648d129529622D1A46c0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-220.report.txt b/BIPs/2023/00before_weekly/BIP-220.report.txt new file mode 100644 index 000000000..fb64c4d34 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-220.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-220.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0xcaa052584b462198a5a9356c28bce0634d65f65c0000000000000000000004db | bb-ma2-USD | 0xCAa052584b462198A5a9356c28bcE0634D65f65C | 2000 | 0x254f3a52Ba9e0cac4E32B648d129529622D1A46c | 2 | 100.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-221.json b/BIPs/2023/00before_weekly/BIP-221.json new file mode 100644 index 000000000..b5874c7f3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-221.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1679498513754, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0x1a23dbb53e11f82685361892b5bb0c33ea140531b76648a42bf4439e0846d98b" + }, + "transactions": [ + { + "to": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-222-226.json b/BIPs/2023/00before_weekly/BIP-222-226.json new file mode 100644 index 000000000..8e3dedc14 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-222-226.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1680183073899, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x76c78ea264a710741e24edd6a3d0939e07c751ac4b739acb6e63064bcf8cde6e" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000005612876e6F6cA370d93873FE28c874e89E741fB90000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000006661136537dfdca26eea05c8500502d7d5796e5e0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-222-226.report.txt b/BIPs/2023/00before_weekly/BIP-222-226.report.txt new file mode 100644 index 000000000..204ca1230 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-222-226.report.txt @@ -0,0 +1,10 @@ +BIPs/BIP-222-226.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0x79c58f70905f734641735bc61e45c19dd9ad60bc0000000000000000000004e7 | USDC-DAI-USDT | 0x79c58f70905F734641735BC61e45c19dD9Ad60bC | 2000 | 0x5612876e6F6cA370d93873FE28c874e89E741fB9 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd0002000000000000000004c1 | 80Silo-20WETH | 0x9CC64EE4CB672Bc04C54B00a37E1Ed75b2Cc19Dd | N/A | 0x6661136537dfDCA26EEA05c8500502d7D5796E5E | 2 | 2.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-229-230.csv b/BIPs/2023/00before_weekly/BIP-229-230.csv new file mode 100644 index 000000000..eea3b2861 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-229-230.csv @@ -0,0 +1,3 @@ +token_type,token_address,receiver,amount,id +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x166f54F44F271407f24AA1BE415a730035637325,42150, +native,,0x166f54F44F271407f24AA1BE415a730035637325,5, \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-231-241A.json b/BIPs/2023/00before_weekly/BIP-231-241A.json new file mode 100644 index 000000000..c6056179a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-231-241A.json @@ -0,0 +1,340 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1680183073899, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000043E4bE3A89985c4f1fCB4c2D3bd7e6E0C5df42D30000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000006a08FD22bd3B10a8EB322938FCaa0A1B025BF3b30000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000087F678f4F84e5665e1A85A22392fF5A84adC22cD0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000BD734b38F2dc864fe00DF51fc4F17d310eD7dA4D0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000F17F1E67bc384E43b4acf69cc032AD086f15f2620000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000D9cde95eFeD2d426F2741E2c44De9573116B8F070000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000Cd8bB8cEBc794842967849255C234e7b7619A5180000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000005f838591A5A8048F0E4C4c7fCca8fD9A25BF05900000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000000052688295413b32626D226a205b95cDB337DE860000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000ad2632513bfd805a63ad3e38d24ee10835877d410000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000454eb2f12242397688DbfdA241487e67ed80507a00000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-231-241A.report.txt b/BIPs/2023/00before_weekly/BIP-231-241A.report.txt new file mode 100644 index 000000000..6f53c7aea --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-231-241A.report.txt @@ -0,0 +1,19 @@ +BIPs/BIP-231-241A.json +COMMIT: custom +``` ++---------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| add_gauge(address,int128) | 0x9f9f548354b7c66dc9a9f3373077d86aaaccf8f2000200000000000000000a4a | 20USDC-80TNGBL | 0x9F9F548354B7C66Dc9a9f3373077D86AAACCF8F2 | N/A | 0x43E4bE3A89985c4f1fCB4c2D3bd7e6E0C5df42D3 | 3 | 2.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x36a0ee903841584f47e3c774b59e0cbfba46080f000000000000000000000b0a | B-ankrMATIC-MATIC-Stable | 0x36A0ee903841584f47E3c774B59E0CbFBA46080F | 50 | 0x6a08FD22bd3B10a8EB322938FCaa0A1B025BF3b3 | 3 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0xe78b25c06db117fdf8f98583cdaaa6c92b79e917000000000000000000000b2b | MaticX-bb-a-WMATIC-BPT | 0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917 | 500 | 0x87F678f4F84e5665e1A85A22392fF5A84adC22cD | 3 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x216690738aac4aa0c4770253ca26a28f0115c595000000000000000000000b2c | stMATIC-bb-a-WMATIC-BPT | 0x216690738Aac4aa0C4770253CA26a28f0115c595 | 500 | 0xBD734b38F2dc864fe00DF51fc4F17d310eD7dA4D | 3 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba00002000000000000000004ed | 50TEMPLE-50DAI | 0x8Bd4A1E74A27182D23B98c10Fd21D4FbB0eD4BA0 | N/A | 0xF17F1E67bc384E43b4acf69cc032AD086f15f262 | 2 | 10.0% | mainnet | +| add_gauge(address,int128) | 0x08775ccb6674d6bdceb0797c364c2653ed84f3840002000000000000000004f0 | 50WETH-50-3pool | 0x08775ccb6674d6bDCeB0797C364C2653ED84F384 | N/A | 0xD9cde95eFeD2d426F2741E2c44De9573116B8F07 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0xd278166dabaf26707362f7cfdd204b277fd2a4600002000000000000000004f6 | 50USH-50WETH | 0xD278166DAbaf26707362f7CfDd204b277FD2a460 | N/A | 0xCd8bB8cEBc794842967849255C234e7b7619A518 | 2 | 10.0% | mainnet | +| add_gauge(address,int128) | 0xe0fcbf4d98f0ad982db260f86cf28b49845403c5000000000000000000000504 | wstETH-bb-a-WETH-BPT | 0xE0fCBf4d98F0aD982DB260f86cf28b49845403C5 | 73 | 0x5f838591A5A8048F0E4C4c7fCca8fD9A25BF0590 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0xfebb0bbf162e64fb9d0dfe186e517d84c395f016000000000000000000000502 | bb-a-USD | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 | 2000 | 0x0052688295413b32626D226a205b95cDB337DE86 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0xcba9ff45cfb9ce238afde32b0148eb82cbe635620000000000000000000003fd | rETH-bb-a-WETH-BPT | 0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562 | 500 | 0xad2632513bFd805A63aD3e38D24EE10835877d41 | 4 | 100.0% | ChildChainStreamer | +| Bad Call Data | 0x3a04f900000000000000000000000000454eb2f12242397688DbfdA241487e67ed80507a00000000000000000000000000000000000000000000000000000000000000002 | !!! | !!! | !!! | !!! | !!! | !!! | !!! | ++---------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-241B.json b/BIPs/2023/00before_weekly/BIP-241B.json new file mode 100644 index 000000000..242316cb1 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-241B.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1680783389649, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ab8c9548b52f0a2fda11aee9a7b16cda8b5ba6a7a51a27672a74b7ae249232b" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xa6325e799d266632D347e41265a69aF111b05403", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9703C0144e8b68280b97d9e30aC6f979Dd6A38d7", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x34f33CDaED8ba0E1CEECE80e5f4a73bcf234cfac", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2C967D6611C60274db45E0BB34c64fb5F504eDE7", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf7C3B4e1EdcB00f0230BFe03D937e26A5e654fD4", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-241B.report.txt b/BIPs/2023/00before_weekly/BIP-241B.report.txt new file mode 100644 index 000000000..7b38e27c3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-241B.report.txt @@ -0,0 +1,13 @@ +BIPs/BIP-241B.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| killGauge() | 0xa13a9247ea42d743238089903570127dda72fe4400000000000000000000035d | bb-a-USD | 0xA13a9247ea42D743238089903570127DdA72fE44 | 1472 | 0xa6325e799d266632D347e41265a69aF111b05403 | NA | N/A% | mainnet | +| killGauge() | 0x4ce0bd7debf13434d3ae127430e9bd4291bfb61f00020000000000000000038b | 50STG-50bb-a-USD | 0x4ce0BD7deBf13434d3ae127430e9BD4291bfB61f | N/A | 0x9703C0144e8b68280b97d9e30aC6f979Dd6A38d7 | NA | N/A% | mainnet | +| killGauge() | 0x06df3b2bbb68adc8b0e302443692037ed9f91b42000000000000000000000063 | staBAL3 | 0x06Df3b2bbB68adc8B0e302443692037ED9f91b42 | 1390 | 0x34f33CDaED8ba0E1CEECE80e5f4a73bcf234cfac | NA | N/A% | mainnet | +| killGauge() | 0xb20fc01d21a50d2c734c4a1262b4404d41fa7bf000000000000000000000075c | B-MaticX-Stable | 0xb20fC01D21A50d2C734C4a1262B4404d41fA7BF0 | 50 | 0x2C967D6611C60274db45E0BB34c64fb5F504eDE7 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x8159462d255c1d24915cb51ec361f700174cd99400000000000000000000075d | B-stMATIC-Stable | 0x8159462d255C1D24915CB51ec361F700174cD994 | 50 | 0xf7C3B4e1EdcB00f0230BFe03D937e26A5e654fD4 | NA | N/A% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-242 thru 250.json b/BIPs/2023/00before_weekly/BIP-242 thru 250.json new file mode 100644 index 000000000..6c82e15d3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-242 thru 250.json @@ -0,0 +1,265 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964183483, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000070c6a653e273523fadfb4df99558737906c230c60000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000b2102335ea09e0476f886ef7a4e77170235c408e0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000008d7d227746ee06d2532903d6ef1f69d80647c0e70000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000074d3aa5f9a2863dc22f6cf9c5faaca4e1fc86f750000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000304a75f78c96767a814c36aaa74d622ecf875d360000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000002fc4506354166e8b9183fbb6a68cd9c5f3fb9bc50000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000c764b55852f8849ae69923e45ce077a576bf9a8d0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000002d42910d826e5500579d121596e98a6eb33c0a1b0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-242 thru 250.report.txt b/BIPs/2023/00before_weekly/BIP-242 thru 250.report.txt new file mode 100644 index 000000000..77c8f1b71 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-242 thru 250.report.txt @@ -0,0 +1,16 @@ +BIPs/BIP-242 thru 250.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| add_gauge(address,int128) | 0x9001cbbd96f54a658ff4e6e65ab564ded76a543100000000000000000000050a | cbETH-bb-a-WETH-BPT | 0x9001cBbD96F54a658FF4e6E65AB564DED76a5431 | 50 | 0x70c6A653e273523FADfB4dF99558737906c230c6 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0xee02583596aee94cccb7e8ccd3921d955f17982a00000000000000000000040a | bb-a-USD | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A | 2000 | 0xb2102335Ea09E0476F886Ef7a4e77170235c408E | 4 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0xb371aa09f5a110ab69b39a84b5469d29f9b22b76000000000000000000000b37 | bb-am-USD | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 | 2000 | 0x8D7d227746eE06D2532903D6EF1F69D80647C0E7 | 3 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7000000000000000000000400 | wstETH-bb-a-WETH-BPT | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 | 500 | 0x74d3aa5F9A2863DC22f6cF9c5faaca4E1fc86F75 | 4 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a000000000000000000000b38 | wstETH-bb-a-WETH-BPT | 0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A | 500 | 0x304a75f78C96767a814c36Aaa74d622ECf875d36 | 3 | 100.0% | ChildChainStreamer | +| add_gauge(address,int128) | 0x87a867f5d240a782d43d90b6b06dea470f3f8f22000200000000000000000516 | B-50COMP-50wstETH | 0x87a867f5D240a782d43D90b6B06DEa470F3f8F22 | N/A | 0x2fC4506354166e8B9183FBB6A68cd9C5F3Fb9Bc5 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | 0x04248aabca09e9a1a3d5129a7ba05b7f17de768400000000000000000000050e | qETH-bb-a-WETH-BPT | 0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684 | 100 | 0xC764B55852F8849Ae69923e45ce077A576bF9a8d | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0x68e3266c9c8bbd44ad9dca5afbfe629022aee9fe000200000000000000000512 | B-wjAura-wETH | 0x68e3266C9C8bbD44ad9Dca5AFBfe629022AeE9fE | N/A | 0x2D42910D826e5500579D121596E98A6eb33C0a1b | 2 | 10.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-245B & 249B.json b/BIPs/2023/00before_weekly/BIP-245B & 249B.json new file mode 100644 index 000000000..16879575d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-245B & 249B.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1680783389649, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ab8c9548b52f0a2fda11aee9a7b16cda8b5ba6a7a51a27672a74b7ae249232b" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xbbCd2045ac43F79E8494600e72cA8AF455E309Dd", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE7ec5216ff485abffd9d390B82A5D742155f3A6f", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-245B & 249B.report.txt b/BIPs/2023/00before_weekly/BIP-245B & 249B.report.txt new file mode 100644 index 000000000..e37bbfcc1 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-245B & 249B.report.txt @@ -0,0 +1,10 @@ +BIPs/BIP-245B & 249B.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+-----------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+-----------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +| killGauge() | 0x48e6b98ef6329f8f0a30ebb8c7c960330d64808500000000000000000000075b | bb-am-usd | 0x48e6B98ef6329f8f0A30eBB8c7C960330d648085 | 1472 | 0xbbCd2045ac43F79E8494600e72cA8AF455E309Dd | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xc9c5ff67bb2fae526ae2467c359609d6bcb4c5320000000000000000000003cc | qETH-BPT | 0xC9C5Ff67bB2Fae526aE2467C359609D6BCb4c532 | 100 | 0xE7ec5216ff485abffd9d390B82A5D742155f3A6f | NA | 2.0% | mainnet | ++-------------+--------------------------------------------------------------------+-----------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-251.json b/BIPs/2023/00before_weekly/BIP-251.json new file mode 100644 index 000000000..7c87cce2f --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-251.json @@ -0,0 +1,76 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1681336676078, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x5b268aef3965bdec916852a85c5da9e6783bb0c7264bd62a983e597da5d05f56" + }, + "transactions": [ + { + "to": "0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "asset", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" }, + { "internalType": "address", "name": "to", "type": "address" } + ], + "name": "withdraw", + "payable": false + }, + "contractInputsValues": { + "asset": "0xba100000625a3754423978a60c9317c58a424e3D", + "amount": "102947018282743658528243", + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2", + "amount": "150000000000000000000000" + } + }, + { + "to": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "asset", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" }, + { + "internalType": "address", + "name": "onBehalfOf", + "type": "address" + }, + { "internalType": "uint16", "name": "referralCode", "type": "uint16" } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "asset": "0xba100000625a3754423978a60c9317c58a424e3D", + "amount": "150000000000000000000000", + "onBehalfOf": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "referralCode": "0" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-252A.json b/BIPs/2023/00before_weekly/BIP-252A.json new file mode 100644 index 000000000..8ff52346f --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-252A.json @@ -0,0 +1,51 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1681337071060, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe0e739a0fe5e7ad5042cdc80a4e681ac5135fac96993b2a3d0b412eb4e9f19ac" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x89f67f3054bFD662971854190Dbc18dcaBb416f6", + "amount": "50000000000000000000000" + } + }, + { + "to": "0x7869296Efd0a76872fEE62A058C8fBca5c1c826C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "contractAddress", + "type": "address" + } + ], + "name": "allowlistAddress", + "payable": false + }, + "contractInputsValues": { + "contractAddress": "0x89f67f3054bFD662971854190Dbc18dcaBb416f6" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-252B.json b/BIPs/2023/00before_weekly/BIP-252B.json new file mode 100644 index 000000000..33000ac01 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-252B.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1681337103733, + "meta": { + "name": "timeless B", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x41223d2681430f383148a3d31619e8b0526f185e3f40092f5aaea65cd61390f7" + }, + "transactions": [ + { + "to": "0x89f67f3054bFD662971854190Dbc18dcaBb416f6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "_unlockTime", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_minAmountOut", + "type": "uint256" + } + ], + "name": "createLock", + "payable": false + }, + "contractInputsValues": { + "_unlockTime": "1712959367", + "_minAmountOut": "0" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-253/BIP-253.md b/BIPs/2023/00before_weekly/BIP-253/BIP-253.md new file mode 100644 index 000000000..296e63f66 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/BIP-253.md @@ -0,0 +1,130 @@ +## [Payload PR - BIP-253](https://github.com/BalancerMaxis/multisig-ops/pull/142) + +## Background +The [v3 Weighted Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230206-weighted-pool-v3) and the [v3 Composable Stable Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks//20230206-composable-stable-pool-v3) where deployed to fix reentrancy issue described [here](https://forum.balancer.fi/t/reentrancy-vulnerability-scope-expanded/4345). Some initial "wire-up" of permissions is required to bring them into standard function. This BIP lays out these changes and requests permission to apply them. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-253) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-253/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-253/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-253/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-253/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-253/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +In the tables above: + +The "emergency" caller group: + - maps to the Balancer Emergency DAO Multisig as defined in [this vote](https://forum.balancer.fi/t/form-the-emergency-subdao/3197). + +The "feeManager" caller group: + - maps to the feeManager multisig controlled by the Balancer Maxis on all chains except mainnet. + - On mainnet a special feeSetter multisig exists to manage a-factors and a gautletFeeSetter contract that allows bulk changing of fees. + - The maxi's functionally control all contracts that make up the feeManager target group. + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-253/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230411-managed-pool-v2 | arbitrum | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230320-composable-stable-pool-v4 | arbitrum | enableRecoveryMode() | 0xa7152bc948bf07e3c3fff4953f5f4962d845ee3261d784e6e9b31f160d99da54 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230320-weighted-pool-v4 | arbitrum | enableRecoveryMode() | 0xe184fa0d5bfa8981c4a008826c1302ad4a0235d114bd82980681f620c748abc1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230320-composable-stable-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x50ccb689033ea83f58a1b54b091916255bb56c2334a12ed908ecb06f72d2a688 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x197a2915652227e96ce9367b8488b59f12fa838f0ae2381b1437dcf3992b8349 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | arbitrum | stopAmplificationParameterUpdate() | 0x76fe94a15b02391aba1fbac69e9d2f37f355fe1e5031c218535568ee6bb98219 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x70368640683195889d0f146ab060210f43fbb1c317a87bdf17a4dca8d8feed86 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230411-managed-pool-v2 | arbitrum | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230411-managed-pool-v2 | arbitrum | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230411-managed-pool-v2 | arbitrum | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | disable() | 0x2459196cb4ed0fe6ae2ab5497be53008d92acf640cb0174ce413b1e613d56e35 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | enableRecoveryMode() | 0xa7152bc948bf07e3c3fff4953f5f4962d845ee3261d784e6e9b31f160d99da54 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | pause() | 0x4af83a29926fe55935b85568f0f0cab066e294993eaba067cdef68541ccf0195 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | disable() | 0x06cafebf5a6142d1acfc442d8a4f2b4d40a7cdfa6c1311679adc8fd679a559a7 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | enableRecoveryMode() | 0xe184fa0d5bfa8981c4a008826c1302ad4a0235d114bd82980681f620c748abc1 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | pause() | 0xd98740b6136649627930e4de42dd9232af00b3ded6023d9d9202b47f0356ff43 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0xceef6cf4faeffc4260dea255a7815f36c153816232b663a816c08b761ad73cbc | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-composable-stable-pool-v4 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x144167e496476037f70eaed5c87faa423fb69e52609d0b4ee48a8284784a800d | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-composable-stable-pool-v4 | gnosis | stopAmplificationParameterUpdate() | 0x6470d89bfdcc75143ff276dba3b9742eb1e31ae77d9c6e1330743a621d33e755 | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-weighted-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0x0e439756a3aff035984c3a9be923d228a560b708849149e6384abd264011962a | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230411-managed-pool-v2 | gnosis | enableRecoveryMode() | 0x46efbab063c0b0398c10c3e97d24a5263780379231f3ead5ac0eaf2e9cf8a318 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230320-composable-stable-pool-v4 | gnosis | enableRecoveryMode() | 0xb35863a581c2826e59cfa027d5228768a0fcc02c7497f27c05e435870fa4e34b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230320-weighted-pool-v4 | gnosis | enableRecoveryMode() | 0x1d8c9dcce0bb3a303ff9556ace00e75eb744769eeeac8c5beb115a1d697378bd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230411-managed-pool-v2 | gnosis | disable() | 0xad5264d61ee90db6d19d6e36a2c93f6d23112459b8a494e489fa1b8f0b9fac38 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230411-managed-pool-v2 | gnosis | enableRecoveryMode() | 0x46efbab063c0b0398c10c3e97d24a5263780379231f3ead5ac0eaf2e9cf8a318 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230411-managed-pool-v2 | gnosis | pause() | 0x376ffebf3f39d793f8453bbf54f031a0b93c0455a242f89dc6c534b14016e7c5 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | disable() | 0x51d0341d2686f3ed15bf4f4b5745540b32c4723280e3eefa8dabcb4a366ab0d2 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | enableRecoveryMode() | 0xb35863a581c2826e59cfa027d5228768a0fcc02c7497f27c05e435870fa4e34b | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | pause() | 0x21ea7ba7282a115973d24d0598646f2b24b98bfd5ed4811eafc19282ada7063c | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | disable() | 0xee4957b205e6db89fef568d9e8aa4fce4a9a8de50ccf9bf7bd611d8c9fa20a07 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | enableRecoveryMode() | 0x1d8c9dcce0bb3a303ff9556ace00e75eb744769eeeac8c5beb115a1d697378bd | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | pause() | 0x424af7587d00b5e073c5d47ad47b564a6510fa9fb35fb0393c6e83f928227270 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230411-managed-pool-v2 | mainnet | enableRecoveryMode() | 0xfab707b8c3c30c3593808e391f0e18aad40b6e8621b45494988ca0a31a55aff5 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230320-composable-stable-pool-v4 | mainnet | enableRecoveryMode() | 0x97b984f4d02757894d110e636f8e8fcdb03099f5c473e4f494496f3eff253cde | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230320-weighted-pool-v4 | mainnet | enableRecoveryMode() | 0xa311a2d0d64a462699773489c804dc8760412f0ab9958da8d266a409200a8947 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230411-managed-pool-v2 | mainnet | disable() | 0x3a8726e9b397a00fc6ba5b2cb40716b9844deceaeb064d72a63d4d2f149d9e2a | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230411-managed-pool-v2 | mainnet | enableRecoveryMode() | 0xfab707b8c3c30c3593808e391f0e18aad40b6e8621b45494988ca0a31a55aff5 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230411-managed-pool-v2 | mainnet | pause() | 0x93d028247647bd545d7dfbf7369348eca5dc45b20bf8bdb759610f808016af1b | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | disable() | 0xe31225bb7818ffa444c35f1c3b7dd416438415dcdd675d609ea6343c1a1111ad | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | enableRecoveryMode() | 0x97b984f4d02757894d110e636f8e8fcdb03099f5c473e4f494496f3eff253cde | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | pause() | 0x409c04f28f6c508db18cec1f9381aa1dced3dc1f8fa8113485974bcb9664c57b | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | disable() | 0x493661c8d8cc29f86981a64d4fbc5cec0d83e973a00ccf48867d9d565577cc43 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | enableRecoveryMode() | 0xa311a2d0d64a462699773489c804dc8760412f0ab9958da8d266a409200a8947 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | pause() | 0xf027a6de0f5fcff0e202ce375789440fe96671a3d602f11b72666eb3b3e0835f | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0x0acc45f3ac7c04369514ee383aad82d5c1eef484fbf9ca5f6d87ad5c5859da40 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0xa67ca78c7311cd47624917626fa335f80b4bd4290a39d66dbe5fa4e9c75e09c4 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | mainnet | stopAmplificationParameterUpdate() | 0x682fca1bedeeef7829d348be1ad1b4374173ca952cf181baff30e5249425ce8b | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xa5547190e3d59f2bfeb4174ca3454b2f2acaeed644bc7ad7018014516f73f2bd | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0xe92c5e92fd07c923b506e4ef7eb29972642a073312f496c812148a15bb6b8967 | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-composable-stable-pool-v4 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0x3d1105ece259c9620b4c0b8c8a01554fdbf4efacfe00c648fa8f99a98c7c26bd | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-composable-stable-pool-v4 | optimism | stopAmplificationParameterUpdate() | 0x39e75d95add118410df221d6d408e602d372ebc0e6657e596e87ab948b093408 | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-weighted-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230411-managed-pool-v2 | optimism | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230320-composable-stable-pool-v4 | optimism | enableRecoveryMode() | 0xf7c36607b85de415dd5d9b2e4c47d42f2093d7338fc8af38b88070683da54da1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230320-weighted-pool-v4 | optimism | enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230411-managed-pool-v2 | optimism | disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230411-managed-pool-v2 | optimism | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230411-managed-pool-v2 | optimism | pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | disable() | 0xdb0e2ca147bb165fcfd2631fb8cb87ab34aa8fb9d2a81e95334a207f753f0302 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | enableRecoveryMode() | 0xf7c36607b85de415dd5d9b2e4c47d42f2093d7338fc8af38b88070683da54da1 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | pause() | 0x6464a19f906714393234821d14f9899d08c3c32edac6ac68a28e8e2c444dc372 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | disable() | 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | pause() | 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230411-managed-pool-v2 | polygon | disable() | 0x855759a5f9e9b4b303700b2720e91e78c453fd1a58be9c84122ad342d492a99e | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230411-managed-pool-v2 | polygon | enableRecoveryMode() | 0x356381b4c3ae04ffd3d8778286ace45849220e97b1397a1deb1fbcffdbf294d8 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230411-managed-pool-v2 | polygon | pause() | 0xfa21c40c9cc6c92667996b0306f905fe8138de4a48895627c3e23ae693e13c14 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | disable() | 0xa544127d0ad449e0603bfabd973ce71e16260ff91463b98f8e17ca841b863671 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | enableRecoveryMode() | 0x237ec20a8fc896e2ccd593e146cfb897d33a3aec61da4c3a35d5d91e5ff3c5f3 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | pause() | 0xad24869d8e59d11e376f5dd5087c9c3e7ecf500f6aa2f0272120b16e2bd1a1ce | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | disable() | 0xbcd976054e605d08b3c0674552476261b198b61b307ff1b8b5dda320cf3f6027 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | enableRecoveryMode() | 0x2ea86ec12cc48f7c7a247493f2eadbe33029a24816226ba4c7ac4b4087949c4a | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | pause() | 0x0334e3e272e2cd5eb2537ae08beca8f9d1665f0ce03a7026b1dfc8665ffe12af | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230411-managed-pool-v2 | polygon | enableRecoveryMode() | 0x356381b4c3ae04ffd3d8778286ace45849220e97b1397a1deb1fbcffdbf294d8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230320-composable-stable-pool-v4 | polygon | enableRecoveryMode() | 0x237ec20a8fc896e2ccd593e146cfb897d33a3aec61da4c3a35d5d91e5ff3c5f3 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230320-weighted-pool-v4 | polygon | enableRecoveryMode() | 0x2ea86ec12cc48f7c7a247493f2eadbe33029a24816226ba4c7ac4b4087949c4a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230320-composable-stable-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0xdc4f292a9c37b8bfbaf2dc78ff4d2a53114e770bcb186a21957939f01ffbfe6b | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x3dc055c2eb0eb929c7bf4eec68903547110bbb0c41c81959c15b122062ce5703 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | polygon | stopAmplificationParameterUpdate() | 0xe394fbc4dc19aef582d4ee54bbbddddca8bffe39a3af34cb2e8ba09b2bf43b46 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0x0ad9662eb9978d490b9f9bc897a15af8892817d0c299cb8ec0c624cccd6b192d | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Directory of Addresses used by script which generated the table and multsig payloads](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/brownie/helpers/addresses.py) + diff --git a/BIPs/2023/00before_weekly/BIP-253/README.md b/BIPs/2023/00before_weekly/BIP-253/README.md new file mode 100644 index 000000000..a54866c57 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/README.md @@ -0,0 +1 @@ +[See Here](BIP-253.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-253/arbitrum.json b/BIPs/2023/00before_weekly/BIP-253/arbitrum.json new file mode 100644 index 000000000..3900f501c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/arbitrum.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846, 0x2459196cb4ed0fe6ae2ab5497be53008d92acf640cb0174ce413b1e613d56e35, 0xa7152bc948bf07e3c3fff4953f5f4962d845ee3261d784e6e9b31f160d99da54, 0x4af83a29926fe55935b85568f0f0cab066e294993eaba067cdef68541ccf0195, 0x06cafebf5a6142d1acfc442d8a4f2b4d40a7cdfa6c1311679adc8fd679a559a7, 0xe184fa0d5bfa8981c4a008826c1302ad4a0235d114bd82980681f620c748abc1, 0xd98740b6136649627930e4de42dd9232af00b3ded6023d9d9202b47f0356ff43]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0xa7152bc948bf07e3c3fff4953f5f4962d845ee3261d784e6e9b31f160d99da54, 0xe184fa0d5bfa8981c4a008826c1302ad4a0235d114bd82980681f620c748abc1]", + "account": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x50ccb689033ea83f58a1b54b091916255bb56c2334a12ed908ecb06f72d2a688, 0x197a2915652227e96ce9367b8488b59f12fa838f0ae2381b1437dcf3992b8349, 0x76fe94a15b02391aba1fbac69e9d2f37f355fe1e5031c218535568ee6bb98219, 0x70368640683195889d0f146ab060210f43fbb1c317a87bdf17a4dca8d8feed86]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-253/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-253/function_descriptions.md new file mode 100644 index 000000000..f061614d2 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/function_descriptions.md @@ -0,0 +1,9 @@ +| function | description | +|:---------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------| +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-253/gnosis.json b/BIPs/2023/00before_weekly/BIP-253/gnosis.json new file mode 100644 index 000000000..0f3d3c5ea --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/gnosis.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xad5264d61ee90db6d19d6e36a2c93f6d23112459b8a494e489fa1b8f0b9fac38, 0x46efbab063c0b0398c10c3e97d24a5263780379231f3ead5ac0eaf2e9cf8a318, 0x376ffebf3f39d793f8453bbf54f031a0b93c0455a242f89dc6c534b14016e7c5, 0x51d0341d2686f3ed15bf4f4b5745540b32c4723280e3eefa8dabcb4a366ab0d2, 0xb35863a581c2826e59cfa027d5228768a0fcc02c7497f27c05e435870fa4e34b, 0x21ea7ba7282a115973d24d0598646f2b24b98bfd5ed4811eafc19282ada7063c, 0xee4957b205e6db89fef568d9e8aa4fce4a9a8de50ccf9bf7bd611d8c9fa20a07, 0x1d8c9dcce0bb3a303ff9556ace00e75eb744769eeeac8c5beb115a1d697378bd, 0x424af7587d00b5e073c5d47ad47b564a6510fa9fb35fb0393c6e83f928227270]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x46efbab063c0b0398c10c3e97d24a5263780379231f3ead5ac0eaf2e9cf8a318, 0xb35863a581c2826e59cfa027d5228768a0fcc02c7497f27c05e435870fa4e34b, 0x1d8c9dcce0bb3a303ff9556ace00e75eb744769eeeac8c5beb115a1d697378bd]", + "account": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xceef6cf4faeffc4260dea255a7815f36c153816232b663a816c08b761ad73cbc, 0x144167e496476037f70eaed5c87faa423fb69e52609d0b4ee48a8284784a800d, 0x6470d89bfdcc75143ff276dba3b9742eb1e31ae77d9c6e1330743a621d33e755, 0x0e439756a3aff035984c3a9be923d228a560b708849149e6384abd264011962a]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-253/inputs.json b/BIPs/2023/00before_weekly/BIP-253/inputs.json new file mode 100644 index 000000000..9a1bee890 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/inputs.json @@ -0,0 +1,28 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": "lm", + "startAmplificationParameterUpdate(uint256,uint256)": "lm", + "stopAmplificationParameterUpdate()": "lm", + "pause()": "emergency", + "disable()": "emergency", + "enableRecoveryMode()": [ + "emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets": "lm" + }, + "deployments": [ + "20230411-managed-pool-v2", + "20230320-composable-stable-pool-v4", + "20230320-weighted-pool-v4" + ] + } +] diff --git a/BIPs/2023/00before_weekly/BIP-253/mainnet.json b/BIPs/2023/00before_weekly/BIP-253/mainnet.json new file mode 100644 index 000000000..d5f348893 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/mainnet.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3a8726e9b397a00fc6ba5b2cb40716b9844deceaeb064d72a63d4d2f149d9e2a, 0xfab707b8c3c30c3593808e391f0e18aad40b6e8621b45494988ca0a31a55aff5, 0x93d028247647bd545d7dfbf7369348eca5dc45b20bf8bdb759610f808016af1b, 0xe31225bb7818ffa444c35f1c3b7dd416438415dcdd675d609ea6343c1a1111ad, 0x97b984f4d02757894d110e636f8e8fcdb03099f5c473e4f494496f3eff253cde, 0x409c04f28f6c508db18cec1f9381aa1dced3dc1f8fa8113485974bcb9664c57b, 0x493661c8d8cc29f86981a64d4fbc5cec0d83e973a00ccf48867d9d565577cc43, 0xa311a2d0d64a462699773489c804dc8760412f0ab9958da8d266a409200a8947, 0xf027a6de0f5fcff0e202ce375789440fe96671a3d602f11b72666eb3b3e0835f]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xfab707b8c3c30c3593808e391f0e18aad40b6e8621b45494988ca0a31a55aff5, 0x97b984f4d02757894d110e636f8e8fcdb03099f5c473e4f494496f3eff253cde, 0xa311a2d0d64a462699773489c804dc8760412f0ab9958da8d266a409200a8947]", + "account": "0x1b300C86980a5195bCF49bD419A068D98dC133Db" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0acc45f3ac7c04369514ee383aad82d5c1eef484fbf9ca5f6d87ad5c5859da40, 0xa67ca78c7311cd47624917626fa335f80b4bd4290a39d66dbe5fa4e9c75e09c4, 0x682fca1bedeeef7829d348be1ad1b4374173ca952cf181baff30e5249425ce8b, 0xa5547190e3d59f2bfeb4174ca3454b2f2acaeed644bc7ad7018014516f73f2bd]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-253/optimism.json b/BIPs/2023/00before_weekly/BIP-253/optimism.json new file mode 100644 index 000000000..6dbedb461 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/optimism.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab, 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df, 0xdb0e2ca147bb165fcfd2631fb8cb87ab34aa8fb9d2a81e95334a207f753f0302, 0xf7c36607b85de415dd5d9b2e4c47d42f2093d7338fc8af38b88070683da54da1, 0x6464a19f906714393234821d14f9899d08c3c32edac6ac68a28e8e2c444dc372, 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae, 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50, 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab, 0xf7c36607b85de415dd5d9b2e4c47d42f2093d7338fc8af38b88070683da54da1, 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50]", + "account": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe92c5e92fd07c923b506e4ef7eb29972642a073312f496c812148a15bb6b8967, 0x3d1105ece259c9620b4c0b8c8a01554fdbf4efacfe00c648fa8f99a98c7c26bd, 0x39e75d95add118410df221d6d408e602d372ebc0e6657e596e87ab948b093408, 0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-253/polygon.json b/BIPs/2023/00before_weekly/BIP-253/polygon.json new file mode 100644 index 000000000..75e56936a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/polygon.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x855759a5f9e9b4b303700b2720e91e78c453fd1a58be9c84122ad342d492a99e, 0x356381b4c3ae04ffd3d8778286ace45849220e97b1397a1deb1fbcffdbf294d8, 0xfa21c40c9cc6c92667996b0306f905fe8138de4a48895627c3e23ae693e13c14, 0xa544127d0ad449e0603bfabd973ce71e16260ff91463b98f8e17ca841b863671, 0x237ec20a8fc896e2ccd593e146cfb897d33a3aec61da4c3a35d5d91e5ff3c5f3, 0xad24869d8e59d11e376f5dd5087c9c3e7ecf500f6aa2f0272120b16e2bd1a1ce, 0xbcd976054e605d08b3c0674552476261b198b61b307ff1b8b5dda320cf3f6027, 0x2ea86ec12cc48f7c7a247493f2eadbe33029a24816226ba4c7ac4b4087949c4a, 0x0334e3e272e2cd5eb2537ae08beca8f9d1665f0ce03a7026b1dfc8665ffe12af]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x356381b4c3ae04ffd3d8778286ace45849220e97b1397a1deb1fbcffdbf294d8, 0x237ec20a8fc896e2ccd593e146cfb897d33a3aec61da4c3a35d5d91e5ff3c5f3, 0x2ea86ec12cc48f7c7a247493f2eadbe33029a24816226ba4c7ac4b4087949c4a]", + "account": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xdc4f292a9c37b8bfbaf2dc78ff4d2a53114e770bcb186a21957939f01ffbfe6b, 0x3dc055c2eb0eb929c7bf4eec68903547110bbb0c41c81959c15b122062ce5703, 0xe394fbc4dc19aef582d4ee54bbbddddca8bffe39a3af34cb2e8ba09b2bf43b46, 0x0ad9662eb9978d490b9f9bc897a15af8892817d0c299cb8ec0c624cccd6b192d]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-253/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-253/results_address_sorted.md new file mode 100644 index 000000000..7f513de5d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/results_address_sorted.md @@ -0,0 +1,82 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230411-managed-pool-v2 | arbitrum | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230320-composable-stable-pool-v4 | arbitrum | enableRecoveryMode() | 0xa7152bc948bf07e3c3fff4953f5f4962d845ee3261d784e6e9b31f160d99da54 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230320-weighted-pool-v4 | arbitrum | enableRecoveryMode() | 0xe184fa0d5bfa8981c4a008826c1302ad4a0235d114bd82980681f620c748abc1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230320-composable-stable-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x50ccb689033ea83f58a1b54b091916255bb56c2334a12ed908ecb06f72d2a688 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x197a2915652227e96ce9367b8488b59f12fa838f0ae2381b1437dcf3992b8349 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | arbitrum | stopAmplificationParameterUpdate() | 0x76fe94a15b02391aba1fbac69e9d2f37f355fe1e5031c218535568ee6bb98219 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x70368640683195889d0f146ab060210f43fbb1c317a87bdf17a4dca8d8feed86 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230411-managed-pool-v2 | arbitrum | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230411-managed-pool-v2 | arbitrum | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230411-managed-pool-v2 | arbitrum | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | disable() | 0x2459196cb4ed0fe6ae2ab5497be53008d92acf640cb0174ce413b1e613d56e35 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | enableRecoveryMode() | 0xa7152bc948bf07e3c3fff4953f5f4962d845ee3261d784e6e9b31f160d99da54 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | pause() | 0x4af83a29926fe55935b85568f0f0cab066e294993eaba067cdef68541ccf0195 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | disable() | 0x06cafebf5a6142d1acfc442d8a4f2b4d40a7cdfa6c1311679adc8fd679a559a7 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | enableRecoveryMode() | 0xe184fa0d5bfa8981c4a008826c1302ad4a0235d114bd82980681f620c748abc1 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | pause() | 0xd98740b6136649627930e4de42dd9232af00b3ded6023d9d9202b47f0356ff43 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0xceef6cf4faeffc4260dea255a7815f36c153816232b663a816c08b761ad73cbc | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-composable-stable-pool-v4 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x144167e496476037f70eaed5c87faa423fb69e52609d0b4ee48a8284784a800d | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-composable-stable-pool-v4 | gnosis | stopAmplificationParameterUpdate() | 0x6470d89bfdcc75143ff276dba3b9742eb1e31ae77d9c6e1330743a621d33e755 | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-weighted-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0x0e439756a3aff035984c3a9be923d228a560b708849149e6384abd264011962a | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230411-managed-pool-v2 | gnosis | enableRecoveryMode() | 0x46efbab063c0b0398c10c3e97d24a5263780379231f3ead5ac0eaf2e9cf8a318 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230320-composable-stable-pool-v4 | gnosis | enableRecoveryMode() | 0xb35863a581c2826e59cfa027d5228768a0fcc02c7497f27c05e435870fa4e34b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230320-weighted-pool-v4 | gnosis | enableRecoveryMode() | 0x1d8c9dcce0bb3a303ff9556ace00e75eb744769eeeac8c5beb115a1d697378bd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230411-managed-pool-v2 | gnosis | disable() | 0xad5264d61ee90db6d19d6e36a2c93f6d23112459b8a494e489fa1b8f0b9fac38 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230411-managed-pool-v2 | gnosis | enableRecoveryMode() | 0x46efbab063c0b0398c10c3e97d24a5263780379231f3ead5ac0eaf2e9cf8a318 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230411-managed-pool-v2 | gnosis | pause() | 0x376ffebf3f39d793f8453bbf54f031a0b93c0455a242f89dc6c534b14016e7c5 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | disable() | 0x51d0341d2686f3ed15bf4f4b5745540b32c4723280e3eefa8dabcb4a366ab0d2 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | enableRecoveryMode() | 0xb35863a581c2826e59cfa027d5228768a0fcc02c7497f27c05e435870fa4e34b | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | pause() | 0x21ea7ba7282a115973d24d0598646f2b24b98bfd5ed4811eafc19282ada7063c | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | disable() | 0xee4957b205e6db89fef568d9e8aa4fce4a9a8de50ccf9bf7bd611d8c9fa20a07 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | enableRecoveryMode() | 0x1d8c9dcce0bb3a303ff9556ace00e75eb744769eeeac8c5beb115a1d697378bd | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | pause() | 0x424af7587d00b5e073c5d47ad47b564a6510fa9fb35fb0393c6e83f928227270 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230411-managed-pool-v2 | mainnet | enableRecoveryMode() | 0xfab707b8c3c30c3593808e391f0e18aad40b6e8621b45494988ca0a31a55aff5 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230320-composable-stable-pool-v4 | mainnet | enableRecoveryMode() | 0x97b984f4d02757894d110e636f8e8fcdb03099f5c473e4f494496f3eff253cde | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230320-weighted-pool-v4 | mainnet | enableRecoveryMode() | 0xa311a2d0d64a462699773489c804dc8760412f0ab9958da8d266a409200a8947 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230411-managed-pool-v2 | mainnet | disable() | 0x3a8726e9b397a00fc6ba5b2cb40716b9844deceaeb064d72a63d4d2f149d9e2a | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230411-managed-pool-v2 | mainnet | enableRecoveryMode() | 0xfab707b8c3c30c3593808e391f0e18aad40b6e8621b45494988ca0a31a55aff5 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230411-managed-pool-v2 | mainnet | pause() | 0x93d028247647bd545d7dfbf7369348eca5dc45b20bf8bdb759610f808016af1b | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | disable() | 0xe31225bb7818ffa444c35f1c3b7dd416438415dcdd675d609ea6343c1a1111ad | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | enableRecoveryMode() | 0x97b984f4d02757894d110e636f8e8fcdb03099f5c473e4f494496f3eff253cde | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | pause() | 0x409c04f28f6c508db18cec1f9381aa1dced3dc1f8fa8113485974bcb9664c57b | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | disable() | 0x493661c8d8cc29f86981a64d4fbc5cec0d83e973a00ccf48867d9d565577cc43 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | enableRecoveryMode() | 0xa311a2d0d64a462699773489c804dc8760412f0ab9958da8d266a409200a8947 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | pause() | 0xf027a6de0f5fcff0e202ce375789440fe96671a3d602f11b72666eb3b3e0835f | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0x0acc45f3ac7c04369514ee383aad82d5c1eef484fbf9ca5f6d87ad5c5859da40 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0xa67ca78c7311cd47624917626fa335f80b4bd4290a39d66dbe5fa4e9c75e09c4 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | mainnet | stopAmplificationParameterUpdate() | 0x682fca1bedeeef7829d348be1ad1b4374173ca952cf181baff30e5249425ce8b | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xa5547190e3d59f2bfeb4174ca3454b2f2acaeed644bc7ad7018014516f73f2bd | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0xe92c5e92fd07c923b506e4ef7eb29972642a073312f496c812148a15bb6b8967 | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-composable-stable-pool-v4 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0x3d1105ece259c9620b4c0b8c8a01554fdbf4efacfe00c648fa8f99a98c7c26bd | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-composable-stable-pool-v4 | optimism | stopAmplificationParameterUpdate() | 0x39e75d95add118410df221d6d408e602d372ebc0e6657e596e87ab948b093408 | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-weighted-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230411-managed-pool-v2 | optimism | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230320-composable-stable-pool-v4 | optimism | enableRecoveryMode() | 0xf7c36607b85de415dd5d9b2e4c47d42f2093d7338fc8af38b88070683da54da1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230320-weighted-pool-v4 | optimism | enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230411-managed-pool-v2 | optimism | disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230411-managed-pool-v2 | optimism | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230411-managed-pool-v2 | optimism | pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | disable() | 0xdb0e2ca147bb165fcfd2631fb8cb87ab34aa8fb9d2a81e95334a207f753f0302 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | enableRecoveryMode() | 0xf7c36607b85de415dd5d9b2e4c47d42f2093d7338fc8af38b88070683da54da1 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | pause() | 0x6464a19f906714393234821d14f9899d08c3c32edac6ac68a28e8e2c444dc372 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | disable() | 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | pause() | 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230411-managed-pool-v2 | polygon | disable() | 0x855759a5f9e9b4b303700b2720e91e78c453fd1a58be9c84122ad342d492a99e | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230411-managed-pool-v2 | polygon | enableRecoveryMode() | 0x356381b4c3ae04ffd3d8778286ace45849220e97b1397a1deb1fbcffdbf294d8 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230411-managed-pool-v2 | polygon | pause() | 0xfa21c40c9cc6c92667996b0306f905fe8138de4a48895627c3e23ae693e13c14 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | disable() | 0xa544127d0ad449e0603bfabd973ce71e16260ff91463b98f8e17ca841b863671 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | enableRecoveryMode() | 0x237ec20a8fc896e2ccd593e146cfb897d33a3aec61da4c3a35d5d91e5ff3c5f3 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | pause() | 0xad24869d8e59d11e376f5dd5087c9c3e7ecf500f6aa2f0272120b16e2bd1a1ce | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | disable() | 0xbcd976054e605d08b3c0674552476261b198b61b307ff1b8b5dda320cf3f6027 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | enableRecoveryMode() | 0x2ea86ec12cc48f7c7a247493f2eadbe33029a24816226ba4c7ac4b4087949c4a | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | pause() | 0x0334e3e272e2cd5eb2537ae08beca8f9d1665f0ce03a7026b1dfc8665ffe12af | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230411-managed-pool-v2 | polygon | enableRecoveryMode() | 0x356381b4c3ae04ffd3d8778286ace45849220e97b1397a1deb1fbcffdbf294d8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230320-composable-stable-pool-v4 | polygon | enableRecoveryMode() | 0x237ec20a8fc896e2ccd593e146cfb897d33a3aec61da4c3a35d5d91e5ff3c5f3 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230320-weighted-pool-v4 | polygon | enableRecoveryMode() | 0x2ea86ec12cc48f7c7a247493f2eadbe33029a24816226ba4c7ac4b4087949c4a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230320-composable-stable-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0xdc4f292a9c37b8bfbaf2dc78ff4d2a53114e770bcb186a21957939f01ffbfe6b | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x3dc055c2eb0eb929c7bf4eec68903547110bbb0c41c81959c15b122062ce5703 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | polygon | stopAmplificationParameterUpdate() | 0xe394fbc4dc19aef582d4ee54bbbddddca8bffe39a3af34cb2e8ba09b2bf43b46 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0x0ad9662eb9978d490b9f9bc897a15af8892817d0c299cb8ec0c624cccd6b192d | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-253/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-253/results_deployment_sorted.md new file mode 100644 index 000000000..3c8a6f02d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-253/results_deployment_sorted.md @@ -0,0 +1,82 @@ +| deployment | chain | function | role | target | target_address | +|:-----------------------------------|:---------|:---------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230320-composable-stable-pool-v4 | arbitrum | disable() | 0x2459196cb4ed0fe6ae2ab5497be53008d92acf640cb0174ce413b1e613d56e35 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | enableRecoveryMode() | 0xa7152bc948bf07e3c3fff4953f5f4962d845ee3261d784e6e9b31f160d99da54 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | enableRecoveryMode() | 0xa7152bc948bf07e3c3fff4953f5f4962d845ee3261d784e6e9b31f160d99da54 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230320-composable-stable-pool-v4 | arbitrum | pause() | 0x4af83a29926fe55935b85568f0f0cab066e294993eaba067cdef68541ccf0195 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x50ccb689033ea83f58a1b54b091916255bb56c2334a12ed908ecb06f72d2a688 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x197a2915652227e96ce9367b8488b59f12fa838f0ae2381b1437dcf3992b8349 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | arbitrum | stopAmplificationParameterUpdate() | 0x76fe94a15b02391aba1fbac69e9d2f37f355fe1e5031c218535568ee6bb98219 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | arbitrum | disable() | 0x06cafebf5a6142d1acfc442d8a4f2b4d40a7cdfa6c1311679adc8fd679a559a7 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | enableRecoveryMode() | 0xe184fa0d5bfa8981c4a008826c1302ad4a0235d114bd82980681f620c748abc1 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | enableRecoveryMode() | 0xe184fa0d5bfa8981c4a008826c1302ad4a0235d114bd82980681f620c748abc1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230320-weighted-pool-v4 | arbitrum | pause() | 0xd98740b6136649627930e4de42dd9232af00b3ded6023d9d9202b47f0356ff43 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x70368640683195889d0f146ab060210f43fbb1c317a87bdf17a4dca8d8feed86 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230411-managed-pool-v2 | arbitrum | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230411-managed-pool-v2 | arbitrum | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230411-managed-pool-v2 | arbitrum | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230411-managed-pool-v2 | arbitrum | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisig/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | gnosis | disable() | 0x51d0341d2686f3ed15bf4f4b5745540b32c4723280e3eefa8dabcb4a366ab0d2 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | enableRecoveryMode() | 0xb35863a581c2826e59cfa027d5228768a0fcc02c7497f27c05e435870fa4e34b | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | enableRecoveryMode() | 0xb35863a581c2826e59cfa027d5228768a0fcc02c7497f27c05e435870fa4e34b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230320-composable-stable-pool-v4 | gnosis | pause() | 0x21ea7ba7282a115973d24d0598646f2b24b98bfd5ed4811eafc19282ada7063c | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0xceef6cf4faeffc4260dea255a7815f36c153816232b663a816c08b761ad73cbc | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-composable-stable-pool-v4 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x144167e496476037f70eaed5c87faa423fb69e52609d0b4ee48a8284784a800d | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-composable-stable-pool-v4 | gnosis | stopAmplificationParameterUpdate() | 0x6470d89bfdcc75143ff276dba3b9742eb1e31ae77d9c6e1330743a621d33e755 | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230320-weighted-pool-v4 | gnosis | disable() | 0xee4957b205e6db89fef568d9e8aa4fce4a9a8de50ccf9bf7bd611d8c9fa20a07 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | enableRecoveryMode() | 0x1d8c9dcce0bb3a303ff9556ace00e75eb744769eeeac8c5beb115a1d697378bd | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | enableRecoveryMode() | 0x1d8c9dcce0bb3a303ff9556ace00e75eb744769eeeac8c5beb115a1d697378bd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230320-weighted-pool-v4 | gnosis | pause() | 0x424af7587d00b5e073c5d47ad47b564a6510fa9fb35fb0393c6e83f928227270 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | gnosis | setSwapFeePercentage(uint256) | 0x0e439756a3aff035984c3a9be923d228a560b708849149e6384abd264011962a | multisig/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230411-managed-pool-v2 | gnosis | disable() | 0xad5264d61ee90db6d19d6e36a2c93f6d23112459b8a494e489fa1b8f0b9fac38 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230411-managed-pool-v2 | gnosis | enableRecoveryMode() | 0x46efbab063c0b0398c10c3e97d24a5263780379231f3ead5ac0eaf2e9cf8a318 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230411-managed-pool-v2 | gnosis | enableRecoveryMode() | 0x46efbab063c0b0398c10c3e97d24a5263780379231f3ead5ac0eaf2e9cf8a318 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230411-managed-pool-v2 | gnosis | pause() | 0x376ffebf3f39d793f8453bbf54f031a0b93c0455a242f89dc6c534b14016e7c5 | multisig/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | mainnet | disable() | 0xe31225bb7818ffa444c35f1c3b7dd416438415dcdd675d609ea6343c1a1111ad | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | enableRecoveryMode() | 0x97b984f4d02757894d110e636f8e8fcdb03099f5c473e4f494496f3eff253cde | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | enableRecoveryMode() | 0x97b984f4d02757894d110e636f8e8fcdb03099f5c473e4f494496f3eff253cde | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230320-composable-stable-pool-v4 | mainnet | pause() | 0x409c04f28f6c508db18cec1f9381aa1dced3dc1f8fa8113485974bcb9664c57b | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0x0acc45f3ac7c04369514ee383aad82d5c1eef484fbf9ca5f6d87ad5c5859da40 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0xa67ca78c7311cd47624917626fa335f80b4bd4290a39d66dbe5fa4e9c75e09c4 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | mainnet | stopAmplificationParameterUpdate() | 0x682fca1bedeeef7829d348be1ad1b4374173ca952cf181baff30e5249425ce8b | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | mainnet | disable() | 0x493661c8d8cc29f86981a64d4fbc5cec0d83e973a00ccf48867d9d565577cc43 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | enableRecoveryMode() | 0xa311a2d0d64a462699773489c804dc8760412f0ab9958da8d266a409200a8947 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | enableRecoveryMode() | 0xa311a2d0d64a462699773489c804dc8760412f0ab9958da8d266a409200a8947 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230320-weighted-pool-v4 | mainnet | pause() | 0xf027a6de0f5fcff0e202ce375789440fe96671a3d602f11b72666eb3b3e0835f | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xa5547190e3d59f2bfeb4174ca3454b2f2acaeed644bc7ad7018014516f73f2bd | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230411-managed-pool-v2 | mainnet | disable() | 0x3a8726e9b397a00fc6ba5b2cb40716b9844deceaeb064d72a63d4d2f149d9e2a | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230411-managed-pool-v2 | mainnet | enableRecoveryMode() | 0xfab707b8c3c30c3593808e391f0e18aad40b6e8621b45494988ca0a31a55aff5 | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230411-managed-pool-v2 | mainnet | enableRecoveryMode() | 0xfab707b8c3c30c3593808e391f0e18aad40b6e8621b45494988ca0a31a55aff5 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230411-managed-pool-v2 | mainnet | pause() | 0x93d028247647bd545d7dfbf7369348eca5dc45b20bf8bdb759610f808016af1b | multisig/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | optimism | disable() | 0xdb0e2ca147bb165fcfd2631fb8cb87ab34aa8fb9d2a81e95334a207f753f0302 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | enableRecoveryMode() | 0xf7c36607b85de415dd5d9b2e4c47d42f2093d7338fc8af38b88070683da54da1 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | enableRecoveryMode() | 0xf7c36607b85de415dd5d9b2e4c47d42f2093d7338fc8af38b88070683da54da1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230320-composable-stable-pool-v4 | optimism | pause() | 0x6464a19f906714393234821d14f9899d08c3c32edac6ac68a28e8e2c444dc372 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0xe92c5e92fd07c923b506e4ef7eb29972642a073312f496c812148a15bb6b8967 | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-composable-stable-pool-v4 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0x3d1105ece259c9620b4c0b8c8a01554fdbf4efacfe00c648fa8f99a98c7c26bd | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-composable-stable-pool-v4 | optimism | stopAmplificationParameterUpdate() | 0x39e75d95add118410df221d6d408e602d372ebc0e6657e596e87ab948b093408 | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230320-weighted-pool-v4 | optimism | disable() | 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230320-weighted-pool-v4 | optimism | pause() | 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf | multisig/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230411-managed-pool-v2 | optimism | disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230411-managed-pool-v2 | optimism | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230411-managed-pool-v2 | optimism | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230411-managed-pool-v2 | optimism | pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | multisig/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | polygon | disable() | 0xa544127d0ad449e0603bfabd973ce71e16260ff91463b98f8e17ca841b863671 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | enableRecoveryMode() | 0x237ec20a8fc896e2ccd593e146cfb897d33a3aec61da4c3a35d5d91e5ff3c5f3 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | enableRecoveryMode() | 0x237ec20a8fc896e2ccd593e146cfb897d33a3aec61da4c3a35d5d91e5ff3c5f3 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230320-composable-stable-pool-v4 | polygon | pause() | 0xad24869d8e59d11e376f5dd5087c9c3e7ecf500f6aa2f0272120b16e2bd1a1ce | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0xdc4f292a9c37b8bfbaf2dc78ff4d2a53114e770bcb186a21957939f01ffbfe6b | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x3dc055c2eb0eb929c7bf4eec68903547110bbb0c41c81959c15b122062ce5703 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-composable-stable-pool-v4 | polygon | stopAmplificationParameterUpdate() | 0xe394fbc4dc19aef582d4ee54bbbddddca8bffe39a3af34cb2e8ba09b2bf43b46 | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230320-weighted-pool-v4 | polygon | disable() | 0xbcd976054e605d08b3c0674552476261b198b61b307ff1b8b5dda320cf3f6027 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | enableRecoveryMode() | 0x2ea86ec12cc48f7c7a247493f2eadbe33029a24816226ba4c7ac4b4087949c4a | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | enableRecoveryMode() | 0x2ea86ec12cc48f7c7a247493f2eadbe33029a24816226ba4c7ac4b4087949c4a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230320-weighted-pool-v4 | polygon | pause() | 0x0334e3e272e2cd5eb2537ae08beca8f9d1665f0ce03a7026b1dfc8665ffe12af | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0x0ad9662eb9978d490b9f9bc897a15af8892817d0c299cb8ec0c624cccd6b192d | multisig/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230411-managed-pool-v2 | polygon | disable() | 0x855759a5f9e9b4b303700b2720e91e78c453fd1a58be9c84122ad342d492a99e | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230411-managed-pool-v2 | polygon | enableRecoveryMode() | 0x356381b4c3ae04ffd3d8778286ace45849220e97b1397a1deb1fbcffdbf294d8 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230411-managed-pool-v2 | polygon | enableRecoveryMode() | 0x356381b4c3ae04ffd3d8778286ace45849220e97b1397a1deb1fbcffdbf294d8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230411-managed-pool-v2 | polygon | pause() | 0xfa21c40c9cc6c92667996b0306f905fe8138de4a48895627c3e23ae693e13c14 | multisig/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-254.csv b/BIPs/2023/00before_weekly/BIP-254.csv new file mode 100644 index 000000000..aa4375199 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-254.csv @@ -0,0 +1,2 @@ +token_type,token_address,receiver,amount,id +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86,5563, \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-255.json b/BIPs/2023/00before_weekly/BIP-255.json new file mode 100644 index 000000000..722bf20e1 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-255.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1681805826, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0xE0Ca4DAc40d44D737f0d02B1F2B2D969731eCda9" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-256-261A.json b/BIPs/2023/00before_weekly/BIP-256-261A.json new file mode 100644 index 000000000..4d0b238b2 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-256-261A.json @@ -0,0 +1,290 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1681805826, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000011ff498c7c2a29fc4638bf45d9ff995c3297fca50000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000c4e72abe8a32fd7d7ba787e1ec860ecb8c0b333c0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000008204b749b808818deb7957dbd030ceea44d1fe180000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000002dfcc6ca6611ccbdce51049a332afdb914655840000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000cdb532170f8b524d047287bfefacd0cc02441b4a0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000d40a3c414bb6f82fc5625e32895f49e53220f73b0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000455f20c54b5712a84454468c7831f7c431aeeb1c0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000badf0c8702b7cb06bbec351d18071804759e312c0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000416d15c36c6daad2b9410b79ae557e6f07dcb6420000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-256-261A.report.txt b/BIPs/2023/00before_weekly/BIP-256-261A.report.txt new file mode 100644 index 000000000..63883488c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-256-261A.report.txt @@ -0,0 +1,17 @@ +BIPs/BIP-256-261A.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| add_gauge(address,int128) | 0x02d928e68d8f10c0358566152677db51e1e2dc8c00000000000000000000051e | swETH-bb-a-WETH-BPT | 0x02D928E68D8F10C0358566152677Db51E1e2Dc8C | 100 | 0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5 | 2 | 100.0% | mainnet | +| add_gauge(address,int128) | Custom | USDC/WETH/L | 0x0018C32D85D8AebEA2eFbE0b0F4a4Eb9e4F1C8C9 | N/A | 0xC4E72abE8A32Fd7D7BA787e1Ec860ecb8C0B333c | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0xd3d5d45f4edf82ba0dfaf061d230766032a10e07000200000000000000000413 | 50STG-50bbaUSD | 0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07 | N/A | 0x8204b749B808818DEb7957DbD030ceEA44D1FE18 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4000200000000000000000b44 | 50stMATIC-BPT-50bbamUSD | 0x7F4f4942F2a14B6AB7B08b10ada1AAcede4EE8D4 | N/A | 0x02DFcC6ca6611cCBDCe51049a332afDB91465584 | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x8fd39252d683fdb60bddd4df4b53c9380b496d59000200000000000000000b45 | 50wstETH-BPT-50bbamUSD | 0x8fd39252d683fDB60BDDD4DF4B53C9380B496D59 | N/A | 0xCDb532170f8B524D047287bFEfAcd0cC02441b4A | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63000200000000000000000412 | 50wstETH-BPT-50bbaUSD | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | N/A | 0xd40a3C414Bb6f82fC5625e32895F49E53220f73b | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xe19ed40a47f9b0cea4ca6d372df66107758913ec000000000000000000000b41 | 2BRL (BRZ) | 0xe19ed40A47F9B0CEA4ca6D372dF66107758913Ec | 200 | 0x455f20c54b5712a84454468c7831f7c431aeEB1C | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0x3efb91c4f9b103ee45885695c67794591916f34e000200000000000000000b43 | 2BRL-bbamUSD | 0x3Efb91C4F9B103Ee45885695C67794591916F34E | N/A | 0xBAdF0c8702B7Cb06bBEC351d18071804759e312c | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5000000000000000000000b42 | frxETH-bb-a-WETH | 0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5 | 120 | 0x416d15C36c6DaAd2b9410B79aE557e6F07DcB642 | 3 | 100.0% | L0 sidechain | ++---------------------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-261B.json b/BIPs/2023/00before_weekly/BIP-261B.json new file mode 100644 index 000000000..7623a70bb --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-261B.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1681807942000, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ab8c9548b52f0a2fda11aee9a7b16cda8b5ba6a7a51a27672a74b7ae249232b" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x87ae77A8270F223656D9dC40AD51aabfAB424b30", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF0d887c1f5996C91402EB69Ab525f028DD5d7578", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE77239359CE4D445Fed27C17Da23B8024d35e456", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xEF3B68D9B6f44EeF2F6ea3d47D6e97707BF14189", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-261B.report.txt b/BIPs/2023/00before_weekly/BIP-261B.report.txt new file mode 100644 index 000000000..708b1f45c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-261B.report.txt @@ -0,0 +1,12 @@ +BIPs/BIP-261B.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| killGauge() | 0x178e029173417b1f9c8bc16dcec6f697bc323746000200000000000000000158 | 50WSTETH-50USDC | 0x178E029173417b1F9C8bC16DCeC6f697bC323746 | N/A | 0x87ae77A8270F223656D9dC40AD51aabfAB424b30 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xe22483774bd8611be2ad2f4194078dac9159f4ba0000000000000000000008f0 | 2BRL (BRZ) | 0xE22483774bd8611bE2Ad2F4194078DaC9159F4bA | 200 | 0xF0d887c1f5996C91402EB69Ab525f028DD5d7578 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x4a0b73f0d13ff6d43e304a174697e3d5cfd310a400020000000000000000091c | 2BRLUSD-boosted | 0x4A0b73f0D13fF6d43e304a174697e3d5CFd310a4 | N/A | 0xE77239359CE4D445Fed27C17Da23B8024d35e456 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x5dee84ffa2dc27419ba7b3419d7146e53e4f7ded000200000000000000000a4e | frxETH-WETH | 0x5DEe84FfA2DC27419Ba7b3419d7146E53e4F7dEd | 120 | 0xEF3B68D9B6f44EeF2F6ea3d47D6e97707BF14189 | NA | 100.0% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-262/BIP-262A.json b/BIPs/2023/00before_weekly/BIP-262/BIP-262A.json new file mode 100644 index 000000000..e793d6ac7 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-262/BIP-262A.json @@ -0,0 +1,165 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964183483, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x404d83c03f32734e9342a0ae8a55a141feb6f1cd8faa4176ed26b3ab963d88f7" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000003b6a85b5e1e6205ebf4d4eabf147d10e8e4bf0a50000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000021b2ef3dc22b7bd4634205081c667e39742075e20000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000cb2c2af6c3e88b4a89aa2aae1d7c8120eee9ad0e0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000e41736b4e78be41bd03ebaf8f86ea493c6e9ea960000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-262/BIP-262A.report.txt b/BIPs/2023/00before_weekly/BIP-262/BIP-262A.report.txt new file mode 100644 index 000000000..9d8bea971 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-262/BIP-262A.report.txt @@ -0,0 +1,12 @@ +BIPs/BIP-262/BIP-262A.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| add_gauge(address,int128) | 0xfedb19ec000d38d92af4b21436870f115db22725000000000000000000000010 | bb-ag-USD | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 | 2000 | 0x3B6A85B5e1e6205ebF4d4eabf147D10e8e4bf0A5 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x66f33ae36dd80327744207a48122f874634b3ada000100000000000000000013 | agUSD-agWETH-agWBTC | 0x66F33Ae36dD80327744207a48122F874634B3adA | N/A | 0x21b2Ef3DC22B7bd4634205081c667e39742075E2 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xb973ca96a3f0d61045f53255e319aedb6ed49240000200000000000000000011 | 50bbagGNO-50bbagUSD | 0xB973Ca96a3f0D61045f53255E319AEDb6ED49240 | N/A | 0xcB2c2AF6c3E88b4a89aa2aae1D7C8120EEe9Ad0e | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56000200000000000000000012 | 50bbagGNO-50bbagWETH | 0xF48f01DCB2CbB3ee1f6AaB0e742c2D3941039d56 | N/A | 0xE41736b4e78be41Bd03EbAf8F86EA493C6e9EA96 | 4 | 100.0% | L0 sidechain | ++---------------------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-262/BIP-262B.json b/BIPs/2023/00before_weekly/BIP-262/BIP-262B.json new file mode 100644 index 000000000..07bc0eaa6 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-262/BIP-262B.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964532776, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x8dfb4f1fe0a52869780a5452bbcc7f32ade66e930f0d516ab53e00d8a14f6f57" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC02b1b15888277B54Fb4903ef3Dedf4881a8c73A", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x25D6F29429bccCc129d1A3e2a5642C8B929BCC07", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x56A65cC666bfe538c5a031942369F6F63eb42240", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd27671f057e9e72751106fBfbBBB33827D986546", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3FB2975E00B3dbB97E8315a5ACbFF6B38026FDf3", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-262/BIP-262B.report.txt b/BIPs/2023/00before_weekly/BIP-262/BIP-262B.report.txt new file mode 100644 index 000000000..1deb1451f --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-262/BIP-262B.report.txt @@ -0,0 +1,13 @@ +BIPs/BIP-262/BIP-262B.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| killGauge() | 0x05e7732bf9ae5592e6aa05afe8cd80f7ab0a7bea00020000000000000000005a | bb-STG-USD | 0x05e7732bF9ae5592E6AA05aFE8Cd80f7Ab0a7bEA | N/A | 0xC02b1b15888277B54Fb4903ef3Dedf4881a8c73A | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xfedb19ec000d38d92af4b21436870f115db22725000000000000000000000010 | bb-ag-USD | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 | 2000 | 0x25D6F29429bccCc129d1A3e2a5642C8B929BCC07 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0x66f33ae36dd80327744207a48122f874634b3ada000100000000000000000013 | agUSD-agWETH-agWBTC | 0x66F33Ae36dD80327744207a48122F874634B3adA | N/A | 0x56A65cC666bfe538c5a031942369F6F63eb42240 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0xb973ca96a3f0d61045f53255e319aedb6ed49240000200000000000000000011 | 50bbagGNO-50bbagUSD | 0xB973Ca96a3f0D61045f53255E319AEDb6ED49240 | N/A | 0xd27671f057e9e72751106fBfbBBB33827D986546 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0xf48f01dcb2cbb3ee1f6aab0e742c2d3941039d56000200000000000000000012 | 50bbagGNO-50bbagWETH | 0xF48f01DCB2CbB3ee1f6AaB0e742c2D3941039d56 | N/A | 0x3FB2975E00B3dbB97E8315a5ACbFF6B38026FDf3 | NA | 100.0% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-262/BIP-262C.json b/BIPs/2023/00before_weekly/BIP-262/BIP-262C.json new file mode 100644 index 000000000..894dcc222 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-262/BIP-262C.json @@ -0,0 +1,790 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964183483, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x404d83c03f32734e9342a0ae8a55a141feb6f1cd8faa4176ed26b3ab963d88f7" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000dacd99029b4b94cd04fe364aac370829621c1c640000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000008135d6abfd42707a87a7b94c5cfa3529f9b432ad0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000df464348c4ec2bf0e5d6926b9f707c8e02301adf0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000009d1036b04ef49bc155d258d7360fa7ae8f5b84d0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000f460c9a5d00ef665f12ee9634983a2b799da53170000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000260779495da7ce3a76b44f5c994cd18ebda8177f0000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000000edf6cdd81bc3471c053341b7d8dfd1cb367ad930000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000004944b07977a42c15c6a06cf4e204e24c605641040000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000b5044fd339a7b858095324cc3f239c212956c1790000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000054befb03bb58687cde09cd082bd78410e309d8c70000000000000000000000000000000000000000000000000000000000000004" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000082aacfaf4db8ac0642cbed50df732d3c309e6790000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000dd3b4161d2a4c609884e20ed71b4e85be44572e60000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000001f5cb5b832f27e24a3b0ad4b837d3ed26ff7ac6e0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000a4c104ab9116a84714c081e0ed6d750221e4c7560000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000c534c30749b6c198d35a7836e26076e7745d89360000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000039ceebb561a65216a4b776ea752d3137e9d6c0f00000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000001604b7e80975555e0aceaca9c81807fbb4d65cf10000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000016289f675ca54312a8fcf99341e74399828880770000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000d1177e2157a7fd6a0484b79f8e50e8a9305f80630000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000f5c7f74103d4e9d1ff8fba3420c6319723e3473a0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000031f99c542cbe456fcbbe99d4bf849af4d7fb54050000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000e603cc3f7ec38cc6ab1eef7fda9bb599493e9a240000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000145011e0c04805e11bef23c1eed848faf49bb7790000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000021483f79a1ae94536dc1d5ddfc6f591fb3b430df0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000002cc5bebcfdaad20f2a608ec153d1c7bed66eeec30000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000790de8abe859f399023bce73b5fe5c4870cd816a0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000000a650f4e0c416c24c8713c322d5aaa531a5a01120000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000047d7269829ba9571d98eb6ddc34e9c8f1a4c327f0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000006b641e334f63f0d882538fe189efc0702d9616960000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-262/BIP-262C.report.txt b/BIPs/2023/00before_weekly/BIP-262/BIP-262C.report.txt new file mode 100644 index 000000000..5ce63aecb --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-262/BIP-262C.report.txt @@ -0,0 +1,37 @@ +BIPs/BIP-262/BIP-262C.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| add_gauge(address,int128) | 0x4fd63966879300cafafbb35d157dc5229278ed2300020000000000000000002b | BPT-rETH-ETH | 0x4Fd63966879300caFafBB35D157dC5229278Ed23 | 50 | 0xDaCD99029b4B94CD04fE364aAc370829621C1C64 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | RDNT-WETH | 0x32dF62dc3aEd2cD6224193052Ce665DC18165841 | N/A | 0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD | 4 | 10.0% | L0 sidechain | +| add_gauge(address,int128) | 0x36bf227d6bac96e2ab1ebb5492ecec69c691943f000200000000000000000316 | B-wstETH-WETH-Stable | 0x36bf227d6BaC96e2aB1EbB5492ECec69C691943f | 50 | 0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352 | bb-rf-USD-BPT | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a | 2000 | 0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x64541216bafffeec8ea535bb71fbc927831d0595000100000000000000000002 | B-33WETH-33WBTC-33USDC | 0x64541216bAFFFEec8ea535BB71Fbc927831d0595 | N/A | 0xf460C9A5D00ef665F12Ee9634983A2b799dA5317 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x519cce718fcd11ac09194cff4517f12d263be067000000000000000000000382 | BPT-USD+ | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 | 570 | 0x260779495dA7Ce3A76b44F5C994cD18EBDa8177f | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xb3028ca124b80cfe6e9ca57b70ef2f0ccc41ebd40002000000000000000000ba | 50MAGIC-50USDC | 0xb3028Ca124B80CFE6E9CA57B70eF2F0CCC41eBd4 | N/A | 0x0EDF6cDd81BC3471C053341B7D8Dfd1Cb367AD93 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xcba9ff45cfb9ce238afde32b0148eb82cbe635620000000000000000000003fd | rETH-bb-a-WETH-BPT | 0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562 | 500 | 0x4944b07977A42C15c6a06CF4e204e24c60564104 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7000000000000000000000400 | wstETH-bb-a-WETH-BPT | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 | 500 | 0xB5044FD339A7b858095324cC3F239C212956C179 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xee02583596aee94cccb7e8ccd3921d955f17982a00000000000000000000040a | bb-a-USD | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A | 2000 | 0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7 | 4 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xe78b25c06db117fdf8f98583cdaaa6c92b79e917000000000000000000000b2b | MaticX-bb-a-WMATIC-BPT | 0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917 | 500 | 0x082AACfaf4db8AC0642CBED50df732D3C309E679 | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x216690738aac4aa0c4770253ca26a28f0115c595000000000000000000000b2c | stMATIC-bb-a-WMATIC-BPT | 0x216690738Aac4aa0C4770253CA26a28f0115c595 | 500 | 0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6 | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xe2f706ef1f7240b803aae877c9c762644bb808d80002000000000000000008c2 | 80TETU-20USDC | 0xE2f706EF1f7240b803AAe877C9C762644bb808d8 | N/A | 0x1f5Cb5b832f27E24A3b0ad4b837d3Ed26FF7aC6E | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0xf3312968c7d768c19107731100ece7d4780b47b2000200000000000000000a50 | 20WMATIC-80SPHERE | 0xf3312968c7D768C19107731100Ece7d4780b47B2 | N/A | 0xA4c104AB9116a84714C081e0Ed6d750221e4c756 | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0x34a81e8956bf20b7448b31990a2c06f96830a6e4000200000000000000000a14 | B-wUSDR-STABLE | 0x34A81e8956BF20b7448b31990A2c06F96830a6e4 | 100 | 0xc534C30749b6C198D35a7836E26076E7745D8936 | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a000000000000000000000ace | bb-t-USD | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A | 2000 | 0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0 | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x03cd191f589d12b0582a99808cf19851e468e6b500010000000000000000000a | BPTC | 0x03cD191F589d12b0582a99808cf19851E468E6B5 | N/A | 0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1 | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x513cdee00251f39de280d9e5f771a6eafebcc88e000000000000000000000a6b | 2eur (PAR) | 0x513CdEE00251F39DE280d9E5f771A6eaFebCc88E | 200 | 0x16289F675Ca54312a8fCF99341e7439982888077 | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0xb797adfb7b268faeaa90cadbfed464c76ee599cd0002000000000000000005ba | tetuBAL-BALWETH | 0xB797AdfB7b268faeaA90CAdBfEd464C76ee599Cd | 500 | 0xd1177e2157a7fD6A0484B79f8E50e8A9305F8063 | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x0297e37f1873d2dab4487aa67cd56b58e2f27875000100000000000000000002 | B-POLYBASE | 0x0297e37f1873D2DAb4487Aa67cD56B58E2F27875 | N/A | 0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xd80ef9fabfdc3b52e17f74c383cf88ee2efbf0b6000000000000000000000a65 | B-tetuQi-Stable | 0xD80Ef9FabfdC3B52e17f74c383Cf88ee2efBf0b6 | 50 | 0x31F99c542CbE456FcbBe99D4bf849Af4D7fB5405 | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0xeab6455f8a99390b941a33bbdaf615abdf93455e000200000000000000000a66 | 50THX-50stMATIC | 0xeaB6455f8A99390B941A33BBDAf615abdf93455e | N/A | 0xe603cc3f7Ec38cC6ab1Eef7FdA9Bb599493e9a24 | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0x726e324c29a1e49309672b244bdc4ff62a270407000200000000000000000702 | BPT | 0x726E324c29a1e49309672b244bdC4Ff62A270407 | N/A | 0x145011e0C04805E11BEf23c1EEd848Faf49bB779 | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0x36a0ee903841584f47e3c774b59e0cbfba46080f000000000000000000000b0a | B-ankrMATIC-MATIC-Stable | 0x36A0ee903841584f47E3c774B59E0CbFBA46080F | 50 | 0x21483F79a1aE94536Dc1d5dDfC6f591fB3B430Df | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0x9f9f548354b7c66dc9a9f3373077d86aaaccf8f2000200000000000000000a4a | 20USDC-80TNGBL | 0x9F9F548354B7C66Dc9a9f3373077D86AAACCF8F2 | N/A | 0x2cc5BebcFdAAD20f2a608EC153d1C7BED66EeEC3 | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a | 2eur (agEUR) | 0x77e97D4908Be63394bc5DFf72C8C7Bddf1699882 | 200 | 0x790DE8ABE859f399023BCe73B5FE5C4870cD816A | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0x577f6076e558818a5df21ce4acde9a9623ec0b4c000200000000000000000a64 | 80SD-20maticX | 0x577f6076E558818A5dF21Ce4acdE9A9623eC0b4c | N/A | 0x0a650F4E0C416c24C8713c322d5AAA531a5A0112 | 3 | 2.0% | L0 sidechain | +| add_gauge(address,int128) | 0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a000000000000000000000b38 | wstETH-bb-a-WETH-BPT | 0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A | 500 | 0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xb371aa09f5a110ab69b39a84b5469d29f9b22b76000000000000000000000b37 | bb-am-USD | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 | 2000 | 0x6b641e334f63f0D882538Fe189efC0702d961696 | 3 | 100.0% | L0 sidechain | ++---------------------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-262/BIP-262D.json b/BIPs/2023/00before_weekly/BIP-262/BIP-262D.json new file mode 100644 index 000000000..950454384 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-262/BIP-262D.json @@ -0,0 +1,1040 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964532776, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x8dfb4f1fe0a52869780a5452bbcc7f32ade66e930f0d516ab53e00d8a14f6f57" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC02b1b15888277B54Fb4903ef3Dedf4881a8c73A", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x78F50cF01a2Fd78f04da1D9ACF14a51487eC0347", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xeC6BA3d9D9045997552155599E6Cc89aA08Ffd76", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8B815a11D0D9eeeE6861D1C5510d6FAA2C6e3fEb", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x97a92eDcDD4176B1495bF5DA6D9547537A53ED72", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb8F91FF8Cd5005f6274B6c2292CF3CCCdBCF32b7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xa26B3523227e300Ff8eCA69CD3b0bdcbd2Db0313", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x74CE2247eC3f0b87BA0737497e3Db8873c184267", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6823DcA6D70061F2AE2AAA21661795A2294812bF", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x709E5d6258aa97F12f3167844CB858696c16F39A", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd863DA50435D9FCf75008f00e49fFd0722291d94", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xa3E3B2C9C7A04894067F106938cA81e279bC3831", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xfb0265841C49A6b19D70055E596b212B0dA3f606", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x519cCe718FCD11AC09194CFf4517F12D263BE067", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x359EA8618c405023Fc4B98dAb1B01F373792a126", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x68EBB057645258Cc62488fD198A0f0fa3FD6e8fb", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xad2632513bFd805A63aD3e38D24EE10835877d41", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x74d3aa5F9A2863DC22f6cF9c5faaca4E1fc86F75", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb2102335Ea09E0476F886Ef7a4e77170235c408E", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x87F678f4F84e5665e1A85A22392fF5A84adC22cD", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBD734b38F2dc864fe00DF51fc4F17d310eD7dA4D", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1E0C21296bF29EE2d56e0abBDfbBEdF2530A7c9A", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x90437a1D2F6C0935Dd6056f07f05C068f2A507F9", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21a3De9292569F599e4cf83c741862705bf4f108", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x28D4FE67c68d340fe66CfbCBe8e2cd279d8AA6dD", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x88D07558470484c03d3bb44c3ECc36CAfCF43253", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x0DB3F34d07682B7C61B0B72D02a26CD3cBDBBdd0", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcF5938cA6d9F19C73010c7493e19c02AcFA8d24D", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xD762F3C30A17222C0b8d25aFE1F1dCEC9816F15B", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xEd510769CCf53eA14388Fc9d6E98EDa5b1a5BAC8", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe42382D005A620FaaA1B82543C9c04ED79Db03bA", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6a08FD22bd3B10a8EB322938FCaa0A1B025BF3b3", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x43E4bE3A89985c4f1fCB4c2D3bd7e6E0C5df42D3", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3bEEB803124bf0553B1d54301BA18368c74483c6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9649d14f2b3300Edf690C96fbCb25eDC4B52Ea05", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x304a75f78C96767a814c36Aaa74d622ECf875d36", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8D7d227746eE06D2532903D6EF1F69D80647C0E7", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-262/BIP-262D.report.txt b/BIPs/2023/00before_weekly/BIP-262/BIP-262D.report.txt new file mode 100644 index 000000000..2affdc548 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-262/BIP-262D.report.txt @@ -0,0 +1,49 @@ +BIPs/BIP-262/BIP-262D.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| killGauge() | 0x05e7732bf9ae5592e6aa05afe8cd80f7ab0a7bea00020000000000000000005a | bb-STG-USD | 0x05e7732bF9ae5592E6AA05aFE8Cd80f7Ab0a7bEA | N/A | 0xC02b1b15888277B54Fb4903ef3Dedf4881a8c73A | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x785f08fb77ec934c01736e30546f87b4daccbe50000200000000000000000041 | IBT-IBRETH | 0x785F08fB77ec934c01736E30546f87B4daccBe50 | N/A | 0x78F50cF01a2Fd78f04da1D9ACF14a51487eC0347 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0xc77e5645dbe48d54afc06655e39d3fe17eb76c1c00020000000000000000005c | BPT-LDO-WSTEH | 0xc77E5645Dbe48d54afC06655e39D3Fe17eB76C1c | N/A | 0xeC6BA3d9D9045997552155599E6Cc89aA08Ffd76 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x6222ae1d2a9f6894da50aa25cb7b303497f9bebd000000000000000000000046 | bb-rf-aUSD | 0x6222ae1d2a9f6894dA50aA25Cb7b303497f9BEbd | 2000 | 0x8B815a11D0D9eeeE6861D1C5510d6FAA2C6e3fEb | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xb0de49429fbb80c635432bbad0b3965b2856017700010000000000000000004e | bb-HAPPY | 0xB0de49429fBb80c635432bbAD0B3965b28560177 | N/A | 0x97a92eDcDD4176B1495bF5DA6D9547537A53ED72 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x359ea8618c405023fc4b98dab1b01f373792a12600010000000000000000004f | bb-WONDER | 0x359EA8618c405023Fc4B98dAb1B01F373792a126 | N/A | 0xb8F91FF8Cd5005f6274B6c2292CF3CCCdBCF32b7 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x981fb05b738e981ac532a99e77170ecb4bc27aef00010000000000000000004b | bb-YELLOW | 0x981Fb05B738e981aC532a99e77170ECb4Bc27AEF | N/A | 0xa26B3523227e300Ff8eCA69CD3b0bdcbd2Db0313 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xde45f101250f2ca1c0f8adfc172576d10c12072d00000000000000000000003f | bb-wstETH | 0xde45F101250f2ca1c0f8adFC172576d10c12072D | 100 | 0x74CE2247eC3f0b87BA0737497e3Db8873c184267 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xcc65a812ce382ab909a11e434dbf75b34f1cc59d000200000000000000000001 | B-60BAL-40WETH | 0xcC65A812ce382aB909a11E434dbf75B34f1cc59D | N/A | 0x6823DcA6D70061F2AE2AAA21661795A2294812bF | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x7bceaa9c5e7f4836fec3bce2d5346637c9b13970000000000000000000000102 | VST BSP | 0x7bceaa9c5E7f4836Fec3bCe2d5346637c9B13970 | 100 | 0x709E5d6258aa97F12f3167844CB858696c16F39A | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xc61ff48f94d801c1ceface0289085197b5ec44f000020000000000000000004d | 50VSTA-50WETH | 0xC61ff48f94D801c1ceFaCE0289085197B5ec44F0 | N/A | 0xd863DA50435D9FCf75008f00e49fFd0722291d94 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x8f9dd2064eb38e8e40f2ab67bde27c0e16ea9b080002000000000000000004ca | 50RBW-50WETH | 0x8f9Dd2064eb38E8E40F2aB67bDE27c0e16ea9B08 | N/A | 0xa3E3B2C9C7A04894067F106938cA81e279bC3831 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x4fd63966879300cafafbb35d157dc5229278ed2300020000000000000000002b | BPT-rETH-ETH | 0x4Fd63966879300caFafBB35D157dC5229278Ed23 | 50 | 0xfb0265841C49A6b19D70055E596b212B0dA3f606 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | RDNT-WETH | 0x32dF62dc3aEd2cD6224193052Ce665DC18165841 | N/A | 0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B | NA | 10.0% | ChildChainStreamer | +| killGauge() | 0x36bf227d6bac96e2ab1ebb5492ecec69c691943f000200000000000000000316 | B-wstETH-WETH-Stable | 0x36bf227d6BaC96e2aB1EbB5492ECec69C691943f | 50 | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352 | bb-rf-USD-BPT | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a | 2000 | 0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0x64541216bafffeec8ea535bb71fbc927831d0595000100000000000000000002 | B-33WETH-33WBTC-33USDC | 0x64541216bAFFFEec8ea535BB71Fbc927831d0595 | N/A | 0x359EA8618c405023Fc4B98dAb1B01F373792a126 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x519cce718fcd11ac09194cff4517f12d263be067000000000000000000000382 | BPT-USD+ | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 | 570 | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0xb3028ca124b80cfe6e9ca57b70ef2f0ccc41ebd40002000000000000000000ba | 50MAGIC-50USDC | 0xb3028Ca124B80CFE6E9CA57B70eF2F0CCC41eBd4 | N/A | 0x68EBB057645258Cc62488fD198A0f0fa3FD6e8fb | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xcba9ff45cfb9ce238afde32b0148eb82cbe635620000000000000000000003fd | rETH-bb-a-WETH-BPT | 0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562 | 500 | 0xad2632513bFd805A63aD3e38D24EE10835877d41 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7000000000000000000000400 | wstETH-bb-a-WETH-BPT | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 | 500 | 0x74d3aa5F9A2863DC22f6cF9c5faaca4E1fc86F75 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0xee02583596aee94cccb7e8ccd3921d955f17982a00000000000000000000040a | bb-a-USD | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A | 2000 | 0xb2102335Ea09E0476F886Ef7a4e77170235c408E | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0xe78b25c06db117fdf8f98583cdaaa6c92b79e917000000000000000000000b2b | MaticX-bb-a-WMATIC-BPT | 0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917 | 500 | 0x87F678f4F84e5665e1A85A22392fF5A84adC22cD | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0x216690738aac4aa0c4770253ca26a28f0115c595000000000000000000000b2c | stMATIC-bb-a-WMATIC-BPT | 0x216690738Aac4aa0C4770253CA26a28f0115c595 | 500 | 0xBD734b38F2dc864fe00DF51fc4F17d310eD7dA4D | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0xe2f706ef1f7240b803aae877c9c762644bb808d80002000000000000000008c2 | 80TETU-20USDC | 0xE2f706EF1f7240b803AAe877C9C762644bb808d8 | N/A | 0x1E0C21296bF29EE2d56e0abBDfbBEdF2530A7c9A | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0xf3312968c7d768c19107731100ece7d4780b47b2000200000000000000000a50 | 20WMATIC-80SPHERE | 0xf3312968c7D768C19107731100Ece7d4780b47B2 | N/A | 0x90437a1D2F6C0935Dd6056f07f05C068f2A507F9 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x34a81e8956bf20b7448b31990a2c06f96830a6e4000200000000000000000a14 | B-wUSDR-STABLE | 0x34A81e8956BF20b7448b31990A2c06F96830a6e4 | 100 | 0x21a3De9292569F599e4cf83c741862705bf4f108 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a000000000000000000000ace | bb-t-USD | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A | 2000 | 0x28D4FE67c68d340fe66CfbCBe8e2cd279d8AA6dD | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0x03cd191f589d12b0582a99808cf19851e468e6b500010000000000000000000a | BPTC | 0x03cD191F589d12b0582a99808cf19851E468E6B5 | N/A | 0x88D07558470484c03d3bb44c3ECc36CAfCF43253 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x513cdee00251f39de280d9e5f771a6eafebcc88e000000000000000000000a6b | 2eur (PAR) | 0x513CdEE00251F39DE280d9E5f771A6eaFebCc88E | 200 | 0x0DB3F34d07682B7C61B0B72D02a26CD3cBDBBdd0 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0xb797adfb7b268faeaa90cadbfed464c76ee599cd0002000000000000000005ba | tetuBAL-BALWETH | 0xB797AdfB7b268faeaA90CAdBfEd464C76ee599Cd | 500 | 0xcF5938cA6d9F19C73010c7493e19c02AcFA8d24D | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x0297e37f1873d2dab4487aa67cd56b58e2f27875000100000000000000000002 | B-POLYBASE | 0x0297e37f1873D2DAb4487Aa67cD56B58E2F27875 | N/A | 0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xd80ef9fabfdc3b52e17f74c383cf88ee2efbf0b6000000000000000000000a65 | B-tetuQi-Stable | 0xD80Ef9FabfdC3B52e17f74c383Cf88ee2efBf0b6 | 50 | 0xD762F3C30A17222C0b8d25aFE1F1dCEC9816F15B | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0xeab6455f8a99390b941a33bbdaf615abdf93455e000200000000000000000a66 | 50THX-50stMATIC | 0xeaB6455f8A99390B941A33BBDAf615abdf93455e | N/A | 0xEd510769CCf53eA14388Fc9d6E98EDa5b1a5BAC8 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x726e324c29a1e49309672b244bdc4ff62a270407000200000000000000000702 | BPT | 0x726E324c29a1e49309672b244bdC4Ff62A270407 | N/A | 0xe42382D005A620FaaA1B82543C9c04ED79Db03bA | NA | N/A% | ChildChainStreamer | +| killGauge() | 0x36a0ee903841584f47e3c774b59e0cbfba46080f000000000000000000000b0a | B-ankrMATIC-MATIC-Stable | 0x36A0ee903841584f47E3c774B59E0CbFBA46080F | 50 | 0x6a08FD22bd3B10a8EB322938FCaa0A1B025BF3b3 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0x9f9f548354b7c66dc9a9f3373077d86aaaccf8f2000200000000000000000a4a | 20USDC-80TNGBL | 0x9F9F548354B7C66Dc9a9f3373077D86AAACCF8F2 | N/A | 0x43E4bE3A89985c4f1fCB4c2D3bd7e6E0C5df42D3 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a | 2eur (agEUR) | 0x77e97D4908Be63394bc5DFf72C8C7Bddf1699882 | 200 | 0x3bEEB803124bf0553B1d54301BA18368c74483c6 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x577f6076e558818a5df21ce4acde9a9623ec0b4c000200000000000000000a64 | 80SD-20maticX | 0x577f6076E558818A5dF21Ce4acdE9A9623eC0b4c | N/A | 0x9649d14f2b3300Edf690C96fbCb25eDC4B52Ea05 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a000000000000000000000b38 | wstETH-bb-a-WETH-BPT | 0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A | 500 | 0x304a75f78C96767a814c36Aaa74d622ECf875d36 | NA | 100.0% | ChildChainStreamer | +| killGauge() | 0xb371aa09f5a110ab69b39a84b5469d29f9b22b76000000000000000000000b37 | bb-am-USD | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 | 2000 | 0x8D7d227746eE06D2532903D6EF1F69D80647C0E7 | NA | 100.0% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-265-267.json b/BIPs/2023/00before_weekly/BIP-265-267.json new file mode 100644 index 000000000..beb94d972 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-265-267.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675964183483, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000eeded342aa2cc1b48eccafeb663fdf2c1d1669340000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000249034a0ea97e76c2b4ab7a1727cbc52548c531c0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000c85d90dec1e12edee418c445b381e7168eb380ab0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-265-267.report.txt b/BIPs/2023/00before_weekly/BIP-265-267.report.txt new file mode 100644 index 000000000..a20b2adb1 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-265-267.report.txt @@ -0,0 +1,11 @@ +BIPs/BIP-265-267.json +COMMIT: custom +``` ++---------------------------+--------------------------------------------------------------------+---------------------+----------------------------------------------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+---------------------+----------------------------------------------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| add_gauge(address,int128) | Custom | wstETH/rETH/S | 0x3e953C6Bf97284F736c5F95b3c3BE8F4e48075f4 | N/A | 0xEeDEd342aa2Cc1b48ECcAfeB663fdf2c1d166934 | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | Custom | 50COIL-50USDC-gauge | ERROR: Gauge points to another Gauge: 0xB5E2dcFBEb62AbEA603a0c585cA8f880eb709A9C | N/A | 0x249034A0EA97E76c2b4AB7a1727CBC52548c531c | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0xd689abc77b82803f22c49de5c8a0049cc74d11fd000200000000000000000524 | 80USH-20unshETH | 0xd689ABc77B82803F22c49dE5C8A0049Cc74D11fD | N/A | 0xc85d90dec1E12eDee418C445b381E7168EB380Ab | 2 | 2.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+---------------------+----------------------------------------------------------------------------------+---------+--------------------------------------------+------+------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-268/BIP-268.md b/BIPs/2023/00before_weekly/BIP-268/BIP-268.md new file mode 100644 index 000000000..71783451b --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/BIP-268.md @@ -0,0 +1,47 @@ +## [Payload PR - BIP-268](https://github.com/BalancerMaxis/multisig-ops/pull/153) + +## Background +The [Child Chain Gauge Factory V2](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230316-child-chain-gauge-factory-v2) is the Layer Zero replacement for the old Child Chain Streamer style gauges. These new gauges will enable veBAL boost to be extended to non-mainnet chains. + +Beyond emitting BAL, Balancer Gauges have the ability to emit other externally provided tokens. Projects such as Lido and Polygon have used this capability in the past to provide direct emissions to stakers. + +In for a token to be used in a reward gauge, the add_reward function must be called on the gauge with the specified token. This BIP Grants the Balancer Maxis the ability to manage external rewards tokens on gauges, and authorizes them to make decisions about what tokens to add based on their best judgement and in collaboration with other Balancer Service Providers. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-268) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-268/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-268/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-268/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-268/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-268/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-268/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | target | target_address | +|:--------------------------------------|:---------|:----------------------------|:-------------------------------------------------------------------|:---------|:-------------------------------------------| +| 20230316-child-chain-gauge-factory-v2 | arbitrum | add_reward(address,address) | 0x56245c361d1ed9e55e6f9889e49f36d9991761b712de544f847b557a84ccd62f | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230316-child-chain-gauge-factory-v2 | gnosis | add_reward(address,address) | 0xc94195da697c94d4db5c313ab49b9ea64c8d69137624b163ba0e4540edfd0faf | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230316-child-chain-gauge-factory-v2 | optimism | add_reward(address,address) | 0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230316-child-chain-gauge-factory-v2 | polygon | add_reward(address,address) | 0x728b7c90958572ff4fc88088c34b65ed64230c82afe8611d4d44d39d0845c264 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +## Risk Assessment +The main risk to adding external tokens to a gauge are that it could be used to distribute spam coins or other mallicious tokens through the gauge system. The Balancer Maxis have demonstrated themselves as well qualified being both permissive but sensible. + +## References + +[Monorepo Deployment Addresses](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments) + diff --git a/BIPs/2023/00before_weekly/BIP-268/README.md b/BIPs/2023/00before_weekly/BIP-268/README.md new file mode 100644 index 000000000..599e94847 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/README.md @@ -0,0 +1 @@ +[See Here](BIP-268.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-268/arbitrum.json b/BIPs/2023/00before_weekly/BIP-268/arbitrum.json new file mode 100644 index 000000000..97b93a1d9 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/arbitrum.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x56245c361d1ed9e55e6f9889e49f36d9991761b712de544f847b557a84ccd62f]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-268/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-268/function_descriptions.md new file mode 100644 index 000000000..de74111bc --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/function_descriptions.md @@ -0,0 +1,3 @@ +| function | description | +|:----------------------------|:-----------------------------------------------------| +| add_reward(address,address) | Allows adding of an external reward token to gauges. | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-268/gnosis.json b/BIPs/2023/00before_weekly/BIP-268/gnosis.json new file mode 100644 index 000000000..ea1771296 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/gnosis.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xc94195da697c94d4db5c313ab49b9ea64c8d69137624b163ba0e4540edfd0faf]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-268/inputs.json b/BIPs/2023/00before_weekly/BIP-268/inputs.json new file mode 100644 index 000000000..cb850f240 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/inputs.json @@ -0,0 +1,14 @@ +[ + { + "deployments": ["20230316-child-chain-gauge-factory-v2"], + "chain_map": { + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100 + }, + "function_caller_map": { + "add_reward(address,address)": "lm" + } + } +] diff --git a/BIPs/2023/00before_weekly/BIP-268/optimism.json b/BIPs/2023/00before_weekly/BIP-268/optimism.json new file mode 100644 index 000000000..414c3abdf --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/optimism.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-268/polygon.json b/BIPs/2023/00before_weekly/BIP-268/polygon.json new file mode 100644 index 000000000..a5dd5b920 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/polygon.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x728b7c90958572ff4fc88088c34b65ed64230c82afe8611d4d44d39d0845c264]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-268/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-268/results_address_sorted.md new file mode 100644 index 000000000..70e057cb9 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/results_address_sorted.md @@ -0,0 +1,6 @@ +| deployment | chain | function | role | target | target_address | +|:--------------------------------------|:---------|:----------------------------|:-------------------------------------------------------------------|:---------|:-------------------------------------------| +| 20230316-child-chain-gauge-factory-v2 | arbitrum | add_reward(address,address) | 0x56245c361d1ed9e55e6f9889e49f36d9991761b712de544f847b557a84ccd62f | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230316-child-chain-gauge-factory-v2 | gnosis | add_reward(address,address) | 0xc94195da697c94d4db5c313ab49b9ea64c8d69137624b163ba0e4540edfd0faf | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230316-child-chain-gauge-factory-v2 | optimism | add_reward(address,address) | 0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230316-child-chain-gauge-factory-v2 | polygon | add_reward(address,address) | 0x728b7c90958572ff4fc88088c34b65ed64230c82afe8611d4d44d39d0845c264 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-268/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-268/results_deployment_sorted.md new file mode 100644 index 000000000..70e057cb9 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-268/results_deployment_sorted.md @@ -0,0 +1,6 @@ +| deployment | chain | function | role | target | target_address | +|:--------------------------------------|:---------|:----------------------------|:-------------------------------------------------------------------|:---------|:-------------------------------------------| +| 20230316-child-chain-gauge-factory-v2 | arbitrum | add_reward(address,address) | 0x56245c361d1ed9e55e6f9889e49f36d9991761b712de544f847b557a84ccd62f | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230316-child-chain-gauge-factory-v2 | gnosis | add_reward(address,address) | 0xc94195da697c94d4db5c313ab49b9ea64c8d69137624b163ba0e4540edfd0faf | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230316-child-chain-gauge-factory-v2 | optimism | add_reward(address,address) | 0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230316-child-chain-gauge-factory-v2 | polygon | add_reward(address,address) | 0x728b7c90958572ff4fc88088c34b65ed64230c82afe8611d4d44d39d0845c264 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-269-271.json b/BIPs/2023/00before_weekly/BIP-269-271.json new file mode 100644 index 000000000..69f97ed05 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-269-271.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1682511420, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000008a88c1f44854c61a466ab55614f6a7778473418b0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000005af3b93fb82ab8691b82a09cbbae7b8d3eb5ac110000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000539d6edbd16f2f069a06716416c3a6e98cc29dd00000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-269-271.report.txt b/BIPs/2023/00before_weekly/BIP-269-271.report.txt new file mode 100644 index 000000000..96ebf3cc4 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-269-271.report.txt @@ -0,0 +1,11 @@ +BIPs/BIP-269-271.json +COMMIT: 1322793a1b24e742465d374eea8d255204f0d70e +``` ++---------------------------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------+ +| add_gauge(address,int128) | 0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d0000000000000000000004f8 | B-vETH-STABLE | 0x793F2D5Cd52dfafe7a1a1B0B3988940Ba2d6a63D | 50 | 0x8a88C1f44854C61a466aB55614F6A7778473418b | 2 | 10.0% | mainnet | +| add_gauge(address,int128) | 0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f000000000000000000000511 | B-baoUSD-LUSD-BPT | 0x7E9AfD25F5Ec0eb24d7d4b089Ae7EcB9651c8b1F | 200 | 0x5aF3B93Fb82ab8691b82a09CBBae7b8D3eB5Ac11 | 2 | 2.0% | mainnet | +| add_gauge(address,int128) | 0x924ec7ed38080e40396c46f6206a6d77d0b9f72d00020000000000000000072a | 20WMATIC-80LUCHA | 0x924EC7ed38080E40396c46F6206A6d77D0B9f72d | N/A | 0x539D6eDbd16F2F069A06716416C3a6E98cC29DD0 | 3 | 2.0% | L0 sidechain | ++---------------------------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-272.json b/BIPs/2023/00before_weekly/BIP-272.json new file mode 100644 index 000000000..171fd31c0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-272.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1682514635, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0 ", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6213e9042b9814b9567bde72d3c7a61372862c3ac88c2df77d3205221af6c871", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-273/Mainnet.json b/BIPs/2023/00before_weekly/BIP-273/Mainnet.json new file mode 100644 index 000000000..f53ca7bd0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-273/Mainnet.json @@ -0,0 +1,72 @@ +{ + "version": "1.0", + "chainId": "1", + "meta": { + "name": null, + "description": "", + "txBuilderVersion": "1.8.0" + }, + "createdAt": 1681152743797, + "transactions": [ + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88219f5d1700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88219f5d17000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000690a60000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000006637e", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020bc832ca081b91433ff6c17f85701b6e92486c50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020efaa1604e82e1b3af8430b90192c1b9e8197e37700020000000000000000002100000000000000000000000000000000000000000000000000000000000000200b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a000000000000000000000000000000000000000000000000000000000000002096646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019000000000000000000000000000000000000000000000000000000000000002032296969ef14eb0c6d29669c550d4a0449130230000200000000000000000080", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "value": "0" + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-274.json b/BIPs/2023/00before_weekly/BIP-274.json new file mode 100644 index 000000000..fca3a0ed2 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-274.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1682611163832, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe851513c0697e924f09f0f29ebc0be2bb829c2995ce884428a4fe0957cfe2707" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000b5bd58c733948e3d65d86ba9604e06e5da276fd10000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xEeDEd342aa2Cc1b48ECcAfeB663fdf2c1d166934", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-274.report.txt b/BIPs/2023/00before_weekly/BIP-274.report.txt new file mode 100644 index 000000000..868092dde --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-274.report.txt @@ -0,0 +1,10 @@ +BIPs/BIP-274.json +COMMIT: 72803570faf792afe9812f641a26f15be40ea719 +``` ++---------------------------+---------+---------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+---------+---------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| add_gauge(address,int128) | Custom | wstETH/rETH/L | 0x6910C4e32D425a834Fb61e983C8083a84b0EBd01 | N/A | 0xB5bd58C733948e3d65d86BA9604e06e5dA276FD1 | 2 | 2.0% | mainnet | +| killGauge() | Custom | wstETH/rETH/S | 0x3e953C6Bf97284F736c5F95b3c3BE8F4e48075f4 | N/A | 0xEeDEd342aa2Cc1b48ECcAfeB663fdf2c1d166934 | NA | 2.0% | mainnet | ++---------------------------+---------+---------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-276/Polygon.json b/BIPs/2023/00before_weekly/BIP-276/Polygon.json new file mode 100644 index 000000000..bc0d90be3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-276/Polygon.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1682696272010, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0x40e2dd994711928ec0a66d77ec4eb262b3a78d35a173712506f90e4473ba3d0e" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x71b144ace6b2cd2762fedff00a9e45c9b7b742ee590f9d593c61e48b6c9ad790", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x47B489bf5836f83ABD928C316F8e39bC0587B020", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x22625eEDd92c81a219A83e1dc48f88d54786B017" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x71b144ace6b2cd2762fedff00a9e45c9b7b742ee590f9d593c61e48b6c9ad790", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-276/arbitrum.json b/BIPs/2023/00before_weekly/BIP-276/arbitrum.json new file mode 100644 index 000000000..964e062fe --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-276/arbitrum.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1682696149246, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x5b8f1eaa89bb4507c1f560e927f7bbe415ccc3709f4b35a51d2b85ebaa53757a" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x57f5e3be3930b0a9235265a5237eb44d5ec61fe36999757360b72280c4dcd991", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x57f5e3be3930b0a9235265a5237eb44d5ec61fe36999757360b72280c4dcd991", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-276/gnosis.json b/BIPs/2023/00before_weekly/BIP-276/gnosis.json new file mode 100644 index 000000000..78694d45e --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-276/gnosis.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1682696343575, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0xf1e963cf448c4a8343f3f9dd7ab5d37006157df7e8d46441fc0d3ef2c82e6e7e" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xff178bcb549aae01d4613b3ca6c16f1fa42e808cd1bddd210756b3878cfa9268", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0xA8920455934Da4D853faac1f94Fe7bEf72943eF1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x83E443EF4f9963C77bd860f94500075556668cb8" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xff178bcb549aae01d4613b3ca6c16f1fa42e808cd1bddd210756b3878cfa9268", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-276/optimism.json b/BIPs/2023/00before_weekly/BIP-276/optimism.json new file mode 100644 index 000000000..e13578597 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-276/optimism.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1682696404374, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "0x5a64c9f6e69afa607313ccd059af75f0bb389eac9cff0db4d6247c4079b81536" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x212ccfca4a02e0eff2a0a5029495a2697d4efa7a8e95cdbf30e2f38c40ca648f", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + }, + { + "to": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0xa523f47A933D5020b23629dDf689695AA94612Dc" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x212ccfca4a02e0eff2a0a5029495a2697d4efa7a8e95cdbf30e2f38c40ca648f", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-277/arbitrum.json b/BIPs/2023/00before_weekly/BIP-277/arbitrum.json new file mode 100644 index 000000000..6197fdffb --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-277/arbitrum.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1682704538440, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0xa53b1483bb95ff5229279ae07ea80e9e779c3c82b92c5d6bbe89d8070af06bfa" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x6B1Da720Be2D11d95177ccFc40A917c2688f396c" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-277/ethereum.json b/BIPs/2023/00before_weekly/BIP-277/ethereum.json new file mode 100644 index 000000000..562090cb4 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-277/ethereum.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1682704479790, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xfb43f358a87811dec564ecea249ad63c711eee9767d0ef037c06e054c49e8ca1" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x6048A8c631Fb7e77EcA533Cf9C29784e482391e7" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-277/gnosis.json b/BIPs/2023/00before_weekly/BIP-277/gnosis.json new file mode 100644 index 000000000..c7e85f60e --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-277/gnosis.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1682704716269, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0xade78f60293608f8a27bb9f37eb9d53eeff394748d57a9f93543710ff40d4913" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-277/optimism.json b/BIPs/2023/00before_weekly/BIP-277/optimism.json new file mode 100644 index 000000000..6524e0889 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-277/optimism.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1682704784222, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "0x4a7f62a9fa90c404c4bd2cb65725d13df9a13bf658d9081b540726e0404d0ac9" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-277/polygon.json b/BIPs/2023/00before_weekly/BIP-277/polygon.json new file mode 100644 index 000000000..b9a692321 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-277/polygon.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1682704616088, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0xbdfc41b6cd86c901a6e40b373c6dd2d743375eb3e34f8567a2243a987826d221" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x020301b0a99EFB6816B41007765Fb577259eC418" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-278-279A.json b/BIPs/2023/00before_weekly/BIP-278-279A.json new file mode 100644 index 000000000..42b01b2de --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-278-279A.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683056124, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe851513c0697e924f09f0f29ebc0be2bb829c2995ce884428a4fe0957cfe2707" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000d103dd49b8051a09b399a52e9a8ab629392de2fb0000000000000000000000000000000000000000000000000000000000000003" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f90000000000000000000000000078a54c8f4eaba82e45cbc20b9454a83cb296e09e0000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-278-279A.report.txt b/BIPs/2023/00before_weekly/BIP-278-279A.report.txt new file mode 100644 index 000000000..44ca85283 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-278-279A.report.txt @@ -0,0 +1,10 @@ +BIPs/BIP-278-279A.json +COMMIT: f9ec37772e130b5356aa3c5726342df0f23c8bb6 +``` ++---------------------------+--------------------------------------------------------------------+---------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+---------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------+ +| add_gauge(address,int128) | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | ECLP-WMATIC-stMATIC | 0xf0ad209e2e969EAAA8C882aac71f02D8a047d5c2 | N/A | 0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb | 3 | 10.0% | L0 sidechain | +| add_gauge(address,int128) | 0x42fbd9f666aacc0026ca1b88c94259519e03dd67000200000000000000000507 | 50COIL-50USDC | 0x42FBD9F666AaCC0026ca1B88C94259519e03dd67 | N/A | 0x78a54C8F4eAba82e45cBC20B9454a83CB296e09E | 2 | 2.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+---------------------+--------------------------------------------+---------+--------------------------------------------+------+-------+--------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-279B.json b/BIPs/2023/00before_weekly/BIP-279B.json new file mode 100644 index 000000000..f5170d839 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-279B.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683057345, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe851513c0697e924f09f0f29ebc0be2bb829c2995ce884428a4fe0957cfe2707" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x249034A0EA97E76c2b4AB7a1727CBC52548c531c", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-279B.report.txt b/BIPs/2023/00before_weekly/BIP-279B.report.txt new file mode 100644 index 000000000..dbe84427b --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-279B.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-279B.json +COMMIT: e628899af413542902f8a3e059da46cfdb5204de +``` ++-------------+---------+---------------------+----------------------------------------------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+---------+---------------------+----------------------------------------------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| killGauge() | Custom | 50COIL-50USDC-gauge | ERROR: Gauge points to another Gauge: 0xB5E2dcFBEb62AbEA603a0c585cA8f880eb709A9C | N/A | 0x249034A0EA97E76c2b4AB7a1727CBC52548c531c | NA | 2.0% | mainnet | ++-------------+---------+---------------------+----------------------------------------------------------------------------------+---------+--------------------------------------------+------+------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-280.json b/BIPs/2023/00before_weekly/BIP-280.json new file mode 100644 index 000000000..7baa274a8 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-280.json @@ -0,0 +1,265 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683058792276, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x9a7229cdaee0c904277e8940644b83fefaa1d41b7e9c6c4f4e40c1c350daaeff" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9BE6ff2A1D5139Eda96339E2644dC1F05d803600", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9F7dfAb2222A473284205cdDF08a677726d786A0", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xAc1aA53108712d7f38093A67d380aD54B562a650", + "amount": "500000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-281.json b/BIPs/2023/00before_weekly/BIP-281.json new file mode 100644 index 000000000..1e2573f2c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-281.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683059537415, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "59219000000" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-284.json b/BIPs/2023/00before_weekly/BIP-284.json new file mode 100644 index 000000000..acbb2346b --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-284.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1682611163832, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe851513c0697e924f09f0f29ebc0be2bb829c2995ce884428a4fe0957cfe2707" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f900000000000000000000000000d1c070ebc7ec77f2134b3ef75283b6c1fb31a1570000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-284.report.txt b/BIPs/2023/00before_weekly/BIP-284.report.txt new file mode 100644 index 000000000..b2d4535eb --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-284.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-284.json +COMMIT: 26b53b6a9829f47bad5af28e2f27a37b42590c5b +``` ++---------------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| add_gauge(address,int128) | 0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536 | wbETH-wstETH | 0x2E848426AEc6dbF2260535a5bEa048ed94d9FF3D | 100 | 0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157 | 2 | 100.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-285/BIP-285.md b/BIPs/2023/00before_weekly/BIP-285/BIP-285.md new file mode 100644 index 000000000..7e5bf3d9b --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/BIP-285.md @@ -0,0 +1,100 @@ +## [Payload PR - BIP-285](https://github.com/BalancerMaxis/multisig-ops/pull/175) + +## Background +The [v3 Weighted Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230206-weighted-pool-v3) and the [v3 Composable Stable Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks//20230206-composable-stable-pool-v3) where deployed to fix reentrancy issue described [here](https://forum.balancer.fi/t/reentrancy-vulnerability-scope-expanded/4345). Some initial "wire-up" of permissions is required to bring them into standard function. This BIP lays out these changes and requests permission to apply them. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-285) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-285/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-285/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-285/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-285/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-285/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-285/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | target | target_address | +|:--------------------------------|:---------|:------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230409-erc4626-linear-pool-v4 | arbitrum | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230409-yearn-linear-pool-v2 | arbitrum | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230410-aave-linear-pool-v5 | arbitrum | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230409-erc4626-linear-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x430c53d88f8da9ce15fbc710a70e95543153a914f3fd38afd4ded87b4d32b273 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | arbitrum | setSwapFeePercentage(uint256) | 0xb74250de83c56252b0309fc8272338dbe9fac2232b39897af72c3df142d55e20 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | arbitrum | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | arbitrum | disable() | 0x5cdea6ae677e1afa17c4dba1377e544c6f83a79c1e3cc7341290a0e7d8a23251 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-erc4626-linear-pool-v4 | arbitrum | pause() | 0x1df6fb8357a54c9e82f443013986d6c1fdfdd7561c49f474fe9000fa1ddfb5e1 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | arbitrum | disable() | 0x66db2fcfa4b70b33f43f7867dfaa73830a40a9c21793ab4a4181017cec69c0f4 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | arbitrum | pause() | 0x7da8797db7760574755019e2675d1f816315b7c76c7977ec6c618ffbc4f260b9 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | arbitrum | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | arbitrum | pause() | 0x2e3db35aff883a61c66722429d09c6fa8afb1b3fd23a906453a02c3ad7a5156c | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | gnosis | setSwapFeePercentage(uint256) | 0xebcf876ca20204aac10dbecae7d6f0e45424ffc906585668776d5726b64f464a | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230410-aave-linear-pool-v5 | gnosis | enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230410-aave-linear-pool-v5 | gnosis | disable() | 0x540a18483d139c6574abe9cc2f83f7d983b9e06eba4f560be96ef9504d4c9208 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230410-aave-linear-pool-v5 | gnosis | pause() | 0xa35728781c343f60b02e19dc90a50f0991daefdab1c5de541899d28dd065f7bf | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230409-erc4626-linear-pool-v4 | mainnet | enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-gearbox-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-yearn-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230410-aave-linear-pool-v5 | mainnet | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230410-silo-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-erc4626-linear-pool-v4 | mainnet | disable() | 0x3dcf6c9d1f7bcff6477a09e1a18ca76f56c83f7e055276096a5acdd3c24f022a | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | mainnet | pause() | 0x92740abcb256f64824759ca687fc8af1a6ba7900e201545f9b848d3e3daab488 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | mainnet | disable() | 0x57b420cd0179ca826befca79e15b477a14fa8df7bd71e0bddbc60060e4d8de5c | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | mainnet | pause() | 0xc9ce9f716205eba29c6af3ed2bd373ffa9f597d05d26415731204217a539c2ba | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | mainnet | disable() | 0x811fd661839b93538ac3d909ccceb9891e6b47ee6e71d0871fb62da2d3b484cc | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | mainnet | pause() | 0x8b150ea30fbe0118f4af39209fe69ed20bcfde20eefb28ff25899e34c5f9f0f5 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | mainnet | pause() | 0x6de4e265ea76d035e89a589a1a6a280934f6fc3ebb5d4cf453a2e589d0fdb4bc | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | mainnet | disable() | 0xcc2b10c657509434d44ea360695df848ccc5e8a27438dd62f0ae87b147224965 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | mainnet | disable() | 0x821049bb6ef72deac25b0e490181aaefac3d90d182e80bca5c3f65f46efc4f5a | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | mainnet | pause() | 0x7b287abc448e5afd5a48345f9648865a2bbe004d466ea8d591e05682400ca48d | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xd41187a1d52918991b8e886e7e02dadf9f3899ff8134eaa5aa4e8f6a81dec3ab | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-gearbox-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x0724bafdb03f8d97bf0372ebba73684e8da490a627cc54840323b96c0f8a54d7 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-yearn-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x479aa48247a9811620c0d80d6cb740bbc8d9424523952ff24ff7e07f3d10f955 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230410-aave-linear-pool-v5 | mainnet | setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230410-silo-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0xf7939f1289f961848c0a92aaeff509b21549a13102c87a1c7925a11395ae7d91 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-erc4626-linear-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x430c53d88f8da9ce15fbc710a70e95543153a914f3fd38afd4ded87b4d32b273 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-yearn-linear-pool-v2 | optimism | setSwapFeePercentage(uint256) | 0xb74250de83c56252b0309fc8272338dbe9fac2232b39897af72c3df142d55e20 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230410-aave-linear-pool-v5 | optimism | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-erc4626-linear-pool-v4 | optimism | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230409-yearn-linear-pool-v2 | optimism | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230410-aave-linear-pool-v5 | optimism | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230409-erc4626-linear-pool-v4 | optimism | disable() | 0x5cdea6ae677e1afa17c4dba1377e544c6f83a79c1e3cc7341290a0e7d8a23251 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | optimism | pause() | 0x1df6fb8357a54c9e82f443013986d6c1fdfdd7561c49f474fe9000fa1ddfb5e1 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | optimism | disable() | 0x66db2fcfa4b70b33f43f7867dfaa73830a40a9c21793ab4a4181017cec69c0f4 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | optimism | pause() | 0x7da8797db7760574755019e2675d1f816315b7c76c7977ec6c618ffbc4f260b9 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | optimism | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | optimism | pause() | 0x2e3db35aff883a61c66722429d09c6fa8afb1b3fd23a906453a02c3ad7a5156c | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | polygon | disable() | 0x04add3612b5eacdfcdfd76721e5a8c64fa27447ca2e7471d7a8eb367740462e0 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | polygon | pause() | 0x900d676b02cc16ed6fb55deda4c1fd5d404fe928336a39685fe16808565a1ba5 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | polygon | pause() | 0x6de4e265ea76d035e89a589a1a6a280934f6fc3ebb5d4cf453a2e589d0fdb4bc | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | polygon | disable() | 0xcc2b10c657509434d44ea360695df848ccc5e8a27438dd62f0ae87b147224965 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | polygon | disable() | 0x2ae506b369e2f6eedec062e22693d622cc0ac89b1430f29816fc5513156223c6 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | polygon | pause() | 0x5ecef7668309699a26afb3349f1d64db694a6d211d7306128795d0f409d08076 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | polygon | enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230409-yearn-linear-pool-v2 | polygon | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230410-aave-linear-pool-v5 | polygon | enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230409-erc4626-linear-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0xe1afc8536d46588e42d553c6d54fc45fa8a579ee70d6955bd4eda71cf8892c77 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | polygon | setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | polygon | setSwapFeePercentage(uint256) | 0x1969df6358bc97bc5e8735ef854618289d0135f964426f4f34d78eaa7d078a16 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Monorepo Deployment Addresses](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments) diff --git a/BIPs/2023/00before_weekly/BIP-285/README.md b/BIPs/2023/00before_weekly/BIP-285/README.md new file mode 100644 index 000000000..5f5fde3f8 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/README.md @@ -0,0 +1 @@ +[See Here](BIP-285.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-285/arbitrum.json b/BIPs/2023/00before_weekly/BIP-285/arbitrum.json new file mode 100644 index 000000000..a2f7f5882 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/arbitrum.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x5cdea6ae677e1afa17c4dba1377e544c6f83a79c1e3cc7341290a0e7d8a23251, 0x1df6fb8357a54c9e82f443013986d6c1fdfdd7561c49f474fe9000fa1ddfb5e1, 0x66db2fcfa4b70b33f43f7867dfaa73830a40a9c21793ab4a4181017cec69c0f4, 0x7da8797db7760574755019e2675d1f816315b7c76c7977ec6c618ffbc4f260b9, 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b, 0x2e3db35aff883a61c66722429d09c6fa8afb1b3fd23a906453a02c3ad7a5156c]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b, 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8, 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a]", + "account": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x430c53d88f8da9ce15fbc710a70e95543153a914f3fd38afd4ded87b4d32b273, 0xb74250de83c56252b0309fc8272338dbe9fac2232b39897af72c3df142d55e20, 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-285/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-285/function_descriptions.md new file mode 100644 index 000000000..0ba6d42a3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/function_descriptions.md @@ -0,0 +1,7 @@ +| function | description | +|:------------------------------|:---------------------------------------------------------------------------------------------------------------| +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-285/gnosis.json b/BIPs/2023/00before_weekly/BIP-285/gnosis.json new file mode 100644 index 000000000..ba6814601 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/gnosis.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x540a18483d139c6574abe9cc2f83f7d983b9e06eba4f560be96ef9504d4c9208, 0xa35728781c343f60b02e19dc90a50f0991daefdab1c5de541899d28dd065f7bf]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6]", + "account": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xebcf876ca20204aac10dbecae7d6f0e45424ffc906585668776d5726b64f464a]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-285/inputs.json b/BIPs/2023/00before_weekly/BIP-285/inputs.json new file mode 100644 index 000000000..ac9db8625 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/inputs.json @@ -0,0 +1,28 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": "lm", + "pause()": "emergency", + "disable()": "emergency", + "enableRecoveryMode()": [ + "emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets": "lm" + }, + "deployments": [ + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230410-silo-linear-pool-v2" + ] + } +] diff --git a/BIPs/2023/00before_weekly/BIP-285/mainnet.json b/BIPs/2023/00before_weekly/BIP-285/mainnet.json new file mode 100644 index 000000000..1ade35691 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/mainnet.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3dcf6c9d1f7bcff6477a09e1a18ca76f56c83f7e055276096a5acdd3c24f022a, 0x92740abcb256f64824759ca687fc8af1a6ba7900e201545f9b848d3e3daab488, 0x57b420cd0179ca826befca79e15b477a14fa8df7bd71e0bddbc60060e4d8de5c, 0xc9ce9f716205eba29c6af3ed2bd373ffa9f597d05d26415731204217a539c2ba, 0x811fd661839b93538ac3d909ccceb9891e6b47ee6e71d0871fb62da2d3b484cc, 0x8b150ea30fbe0118f4af39209fe69ed20bcfde20eefb28ff25899e34c5f9f0f5, 0x6de4e265ea76d035e89a589a1a6a280934f6fc3ebb5d4cf453a2e589d0fdb4bc, 0xcc2b10c657509434d44ea360695df848ccc5e8a27438dd62f0ae87b147224965, 0x821049bb6ef72deac25b0e490181aaefac3d90d182e80bca5c3f65f46efc4f5a, 0x7b287abc448e5afd5a48345f9648865a2bbe004d466ea8d591e05682400ca48d]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad, 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c, 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0, 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196, 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192]", + "account": "0x1b300C86980a5195bCF49bD419A068D98dC133Db" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd41187a1d52918991b8e886e7e02dadf9f3899ff8134eaa5aa4e8f6a81dec3ab, 0x0724bafdb03f8d97bf0372ebba73684e8da490a627cc54840323b96c0f8a54d7, 0x479aa48247a9811620c0d80d6cb740bbc8d9424523952ff24ff7e07f3d10f955, 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71, 0xf7939f1289f961848c0a92aaeff509b21549a13102c87a1c7925a11395ae7d91]", + "account": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-285/optimism.json b/BIPs/2023/00before_weekly/BIP-285/optimism.json new file mode 100644 index 000000000..673410d16 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/optimism.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x5cdea6ae677e1afa17c4dba1377e544c6f83a79c1e3cc7341290a0e7d8a23251, 0x1df6fb8357a54c9e82f443013986d6c1fdfdd7561c49f474fe9000fa1ddfb5e1, 0x66db2fcfa4b70b33f43f7867dfaa73830a40a9c21793ab4a4181017cec69c0f4, 0x7da8797db7760574755019e2675d1f816315b7c76c7977ec6c618ffbc4f260b9, 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b, 0x2e3db35aff883a61c66722429d09c6fa8afb1b3fd23a906453a02c3ad7a5156c]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b, 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8, 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a]", + "account": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x430c53d88f8da9ce15fbc710a70e95543153a914f3fd38afd4ded87b4d32b273, 0xb74250de83c56252b0309fc8272338dbe9fac2232b39897af72c3df142d55e20, 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-285/polygon.json b/BIPs/2023/00before_weekly/BIP-285/polygon.json new file mode 100644 index 000000000..4b536b36a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/polygon.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04add3612b5eacdfcdfd76721e5a8c64fa27447ca2e7471d7a8eb367740462e0, 0x900d676b02cc16ed6fb55deda4c1fd5d404fe928336a39685fe16808565a1ba5, 0x6de4e265ea76d035e89a589a1a6a280934f6fc3ebb5d4cf453a2e589d0fdb4bc, 0xcc2b10c657509434d44ea360695df848ccc5e8a27438dd62f0ae87b147224965, 0x2ae506b369e2f6eedec062e22693d622cc0ac89b1430f29816fc5513156223c6, 0x5ecef7668309699a26afb3349f1d64db694a6d211d7306128795d0f409d08076]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a, 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196, 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564]", + "account": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe1afc8536d46588e42d553c6d54fc45fa8a579ee70d6955bd4eda71cf8892c77, 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71, 0x1969df6358bc97bc5e8735ef854618289d0135f964426f4f34d78eaa7d078a16]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-285/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-285/results_address_sorted.md new file mode 100644 index 000000000..efbfdaeb3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/results_address_sorted.md @@ -0,0 +1,62 @@ +| deployment | chain | function | role | target | target_address | +|:--------------------------------|:---------|:------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230409-erc4626-linear-pool-v4 | arbitrum | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230409-yearn-linear-pool-v2 | arbitrum | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230410-aave-linear-pool-v5 | arbitrum | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230409-erc4626-linear-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x430c53d88f8da9ce15fbc710a70e95543153a914f3fd38afd4ded87b4d32b273 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | arbitrum | setSwapFeePercentage(uint256) | 0xb74250de83c56252b0309fc8272338dbe9fac2232b39897af72c3df142d55e20 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | arbitrum | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | arbitrum | disable() | 0x5cdea6ae677e1afa17c4dba1377e544c6f83a79c1e3cc7341290a0e7d8a23251 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-erc4626-linear-pool-v4 | arbitrum | pause() | 0x1df6fb8357a54c9e82f443013986d6c1fdfdd7561c49f474fe9000fa1ddfb5e1 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | arbitrum | disable() | 0x66db2fcfa4b70b33f43f7867dfaa73830a40a9c21793ab4a4181017cec69c0f4 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | arbitrum | pause() | 0x7da8797db7760574755019e2675d1f816315b7c76c7977ec6c618ffbc4f260b9 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | arbitrum | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | arbitrum | pause() | 0x2e3db35aff883a61c66722429d09c6fa8afb1b3fd23a906453a02c3ad7a5156c | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | gnosis | setSwapFeePercentage(uint256) | 0xebcf876ca20204aac10dbecae7d6f0e45424ffc906585668776d5726b64f464a | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230410-aave-linear-pool-v5 | gnosis | enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230410-aave-linear-pool-v5 | gnosis | disable() | 0x540a18483d139c6574abe9cc2f83f7d983b9e06eba4f560be96ef9504d4c9208 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230410-aave-linear-pool-v5 | gnosis | pause() | 0xa35728781c343f60b02e19dc90a50f0991daefdab1c5de541899d28dd065f7bf | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230409-erc4626-linear-pool-v4 | mainnet | enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-gearbox-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-yearn-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230410-aave-linear-pool-v5 | mainnet | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230410-silo-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-erc4626-linear-pool-v4 | mainnet | disable() | 0x3dcf6c9d1f7bcff6477a09e1a18ca76f56c83f7e055276096a5acdd3c24f022a | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | mainnet | pause() | 0x92740abcb256f64824759ca687fc8af1a6ba7900e201545f9b848d3e3daab488 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | mainnet | disable() | 0x57b420cd0179ca826befca79e15b477a14fa8df7bd71e0bddbc60060e4d8de5c | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | mainnet | pause() | 0xc9ce9f716205eba29c6af3ed2bd373ffa9f597d05d26415731204217a539c2ba | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | mainnet | disable() | 0x811fd661839b93538ac3d909ccceb9891e6b47ee6e71d0871fb62da2d3b484cc | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | mainnet | pause() | 0x8b150ea30fbe0118f4af39209fe69ed20bcfde20eefb28ff25899e34c5f9f0f5 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | mainnet | pause() | 0x6de4e265ea76d035e89a589a1a6a280934f6fc3ebb5d4cf453a2e589d0fdb4bc | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | mainnet | disable() | 0xcc2b10c657509434d44ea360695df848ccc5e8a27438dd62f0ae87b147224965 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | mainnet | disable() | 0x821049bb6ef72deac25b0e490181aaefac3d90d182e80bca5c3f65f46efc4f5a | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | mainnet | pause() | 0x7b287abc448e5afd5a48345f9648865a2bbe004d466ea8d591e05682400ca48d | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xd41187a1d52918991b8e886e7e02dadf9f3899ff8134eaa5aa4e8f6a81dec3ab | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-gearbox-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x0724bafdb03f8d97bf0372ebba73684e8da490a627cc54840323b96c0f8a54d7 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-yearn-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x479aa48247a9811620c0d80d6cb740bbc8d9424523952ff24ff7e07f3d10f955 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230410-aave-linear-pool-v5 | mainnet | setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230410-silo-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0xf7939f1289f961848c0a92aaeff509b21549a13102c87a1c7925a11395ae7d91 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-erc4626-linear-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x430c53d88f8da9ce15fbc710a70e95543153a914f3fd38afd4ded87b4d32b273 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-yearn-linear-pool-v2 | optimism | setSwapFeePercentage(uint256) | 0xb74250de83c56252b0309fc8272338dbe9fac2232b39897af72c3df142d55e20 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230410-aave-linear-pool-v5 | optimism | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-erc4626-linear-pool-v4 | optimism | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230409-yearn-linear-pool-v2 | optimism | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230410-aave-linear-pool-v5 | optimism | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230409-erc4626-linear-pool-v4 | optimism | disable() | 0x5cdea6ae677e1afa17c4dba1377e544c6f83a79c1e3cc7341290a0e7d8a23251 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | optimism | pause() | 0x1df6fb8357a54c9e82f443013986d6c1fdfdd7561c49f474fe9000fa1ddfb5e1 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | optimism | disable() | 0x66db2fcfa4b70b33f43f7867dfaa73830a40a9c21793ab4a4181017cec69c0f4 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | optimism | pause() | 0x7da8797db7760574755019e2675d1f816315b7c76c7977ec6c618ffbc4f260b9 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | optimism | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | optimism | pause() | 0x2e3db35aff883a61c66722429d09c6fa8afb1b3fd23a906453a02c3ad7a5156c | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | polygon | disable() | 0x04add3612b5eacdfcdfd76721e5a8c64fa27447ca2e7471d7a8eb367740462e0 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | polygon | pause() | 0x900d676b02cc16ed6fb55deda4c1fd5d404fe928336a39685fe16808565a1ba5 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | polygon | pause() | 0x6de4e265ea76d035e89a589a1a6a280934f6fc3ebb5d4cf453a2e589d0fdb4bc | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | polygon | disable() | 0xcc2b10c657509434d44ea360695df848ccc5e8a27438dd62f0ae87b147224965 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | polygon | disable() | 0x2ae506b369e2f6eedec062e22693d622cc0ac89b1430f29816fc5513156223c6 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | polygon | pause() | 0x5ecef7668309699a26afb3349f1d64db694a6d211d7306128795d0f409d08076 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | polygon | enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230409-yearn-linear-pool-v2 | polygon | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230410-aave-linear-pool-v5 | polygon | enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230409-erc4626-linear-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0xe1afc8536d46588e42d553c6d54fc45fa8a579ee70d6955bd4eda71cf8892c77 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | polygon | setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | polygon | setSwapFeePercentage(uint256) | 0x1969df6358bc97bc5e8735ef854618289d0135f964426f4f34d78eaa7d078a16 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-285/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-285/results_deployment_sorted.md new file mode 100644 index 000000000..f048377d6 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-285/results_deployment_sorted.md @@ -0,0 +1,62 @@ +| deployment | chain | function | role | target | target_address | +|:--------------------------------|:---------|:------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230409-erc4626-linear-pool-v4 | arbitrum | disable() | 0x5cdea6ae677e1afa17c4dba1377e544c6f83a79c1e3cc7341290a0e7d8a23251 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-erc4626-linear-pool-v4 | arbitrum | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230409-erc4626-linear-pool-v4 | arbitrum | pause() | 0x1df6fb8357a54c9e82f443013986d6c1fdfdd7561c49f474fe9000fa1ddfb5e1 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-erc4626-linear-pool-v4 | arbitrum | setSwapFeePercentage(uint256) | 0x430c53d88f8da9ce15fbc710a70e95543153a914f3fd38afd4ded87b4d32b273 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | arbitrum | disable() | 0x66db2fcfa4b70b33f43f7867dfaa73830a40a9c21793ab4a4181017cec69c0f4 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | arbitrum | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230409-yearn-linear-pool-v2 | arbitrum | pause() | 0x7da8797db7760574755019e2675d1f816315b7c76c7977ec6c618ffbc4f260b9 | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | arbitrum | setSwapFeePercentage(uint256) | 0xb74250de83c56252b0309fc8272338dbe9fac2232b39897af72c3df142d55e20 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | arbitrum | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | arbitrum | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230410-aave-linear-pool-v5 | arbitrum | pause() | 0x2e3db35aff883a61c66722429d09c6fa8afb1b3fd23a906453a02c3ad7a5156c | emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | arbitrum | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | gnosis | disable() | 0x540a18483d139c6574abe9cc2f83f7d983b9e06eba4f560be96ef9504d4c9208 | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230410-aave-linear-pool-v5 | gnosis | enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230410-aave-linear-pool-v5 | gnosis | pause() | 0xa35728781c343f60b02e19dc90a50f0991daefdab1c5de541899d28dd065f7bf | emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230410-aave-linear-pool-v5 | gnosis | setSwapFeePercentage(uint256) | 0xebcf876ca20204aac10dbecae7d6f0e45424ffc906585668776d5726b64f464a | lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230409-erc4626-linear-pool-v4 | mainnet | disable() | 0x3dcf6c9d1f7bcff6477a09e1a18ca76f56c83f7e055276096a5acdd3c24f022a | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | mainnet | enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-erc4626-linear-pool-v4 | mainnet | pause() | 0x92740abcb256f64824759ca687fc8af1a6ba7900e201545f9b848d3e3daab488 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | mainnet | setSwapFeePercentage(uint256) | 0xd41187a1d52918991b8e886e7e02dadf9f3899ff8134eaa5aa4e8f6a81dec3ab | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-gearbox-linear-pool-v2 | mainnet | disable() | 0x57b420cd0179ca826befca79e15b477a14fa8df7bd71e0bddbc60060e4d8de5c | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-gearbox-linear-pool-v2 | mainnet | pause() | 0xc9ce9f716205eba29c6af3ed2bd373ffa9f597d05d26415731204217a539c2ba | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x0724bafdb03f8d97bf0372ebba73684e8da490a627cc54840323b96c0f8a54d7 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-yearn-linear-pool-v2 | mainnet | disable() | 0x811fd661839b93538ac3d909ccceb9891e6b47ee6e71d0871fb62da2d3b484cc | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230409-yearn-linear-pool-v2 | mainnet | pause() | 0x8b150ea30fbe0118f4af39209fe69ed20bcfde20eefb28ff25899e34c5f9f0f5 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0x479aa48247a9811620c0d80d6cb740bbc8d9424523952ff24ff7e07f3d10f955 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230410-aave-linear-pool-v5 | mainnet | disable() | 0xcc2b10c657509434d44ea360695df848ccc5e8a27438dd62f0ae87b147224965 | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | mainnet | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230410-aave-linear-pool-v5 | mainnet | pause() | 0x6de4e265ea76d035e89a589a1a6a280934f6fc3ebb5d4cf453a2e589d0fdb4bc | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | mainnet | setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230410-silo-linear-pool-v2 | mainnet | disable() | 0x821049bb6ef72deac25b0e490181aaefac3d90d182e80bca5c3f65f46efc4f5a | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | mainnet | enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230410-silo-linear-pool-v2 | mainnet | pause() | 0x7b287abc448e5afd5a48345f9648865a2bbe004d466ea8d591e05682400ca48d | emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | mainnet | setSwapFeePercentage(uint256) | 0xf7939f1289f961848c0a92aaeff509b21549a13102c87a1c7925a11395ae7d91 | gauntletFeeSetter | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B | +| 20230409-erc4626-linear-pool-v4 | optimism | disable() | 0x5cdea6ae677e1afa17c4dba1377e544c6f83a79c1e3cc7341290a0e7d8a23251 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | optimism | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230409-erc4626-linear-pool-v4 | optimism | pause() | 0x1df6fb8357a54c9e82f443013986d6c1fdfdd7561c49f474fe9000fa1ddfb5e1 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | optimism | setSwapFeePercentage(uint256) | 0x430c53d88f8da9ce15fbc710a70e95543153a914f3fd38afd4ded87b4d32b273 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-yearn-linear-pool-v2 | optimism | disable() | 0x66db2fcfa4b70b33f43f7867dfaa73830a40a9c21793ab4a4181017cec69c0f4 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | optimism | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230409-yearn-linear-pool-v2 | optimism | pause() | 0x7da8797db7760574755019e2675d1f816315b7c76c7977ec6c618ffbc4f260b9 | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | optimism | setSwapFeePercentage(uint256) | 0xb74250de83c56252b0309fc8272338dbe9fac2232b39897af72c3df142d55e20 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230410-aave-linear-pool-v5 | optimism | disable() | 0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | optimism | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230410-aave-linear-pool-v5 | optimism | pause() | 0x2e3db35aff883a61c66722429d09c6fa8afb1b3fd23a906453a02c3ad7a5156c | emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | optimism | setSwapFeePercentage(uint256) | 0xe2034e57b6e5473c618804022a6b6a56a83df1c39435869038988698f9137b73 | lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-erc4626-linear-pool-v4 | polygon | disable() | 0x04add3612b5eacdfcdfd76721e5a8c64fa27447ca2e7471d7a8eb367740462e0 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | polygon | enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230409-erc4626-linear-pool-v4 | polygon | pause() | 0x900d676b02cc16ed6fb55deda4c1fd5d404fe928336a39685fe16808565a1ba5 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | polygon | setSwapFeePercentage(uint256) | 0xe1afc8536d46588e42d553c6d54fc45fa8a579ee70d6955bd4eda71cf8892c77 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | polygon | disable() | 0xcc2b10c657509434d44ea360695df848ccc5e8a27438dd62f0ae87b147224965 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | polygon | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230409-yearn-linear-pool-v2 | polygon | pause() | 0x6de4e265ea76d035e89a589a1a6a280934f6fc3ebb5d4cf453a2e589d0fdb4bc | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | polygon | setSwapFeePercentage(uint256) | 0x24d685d4b3197ce4efaf94536add3319b1d449f6501b4e29b5365aa0a4defa71 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | polygon | disable() | 0x2ae506b369e2f6eedec062e22693d622cc0ac89b1430f29816fc5513156223c6 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | polygon | enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230410-aave-linear-pool-v5 | polygon | pause() | 0x5ecef7668309699a26afb3349f1d64db694a6d211d7306128795d0f409d08076 | emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | polygon | setSwapFeePercentage(uint256) | 0x1969df6358bc97bc5e8735ef854618289d0135f964426f4f34d78eaa7d078a16 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-286-287.report.txt b/BIPs/2023/00before_weekly/BIP-286-287.report.txt new file mode 100644 index 000000000..f58df3d8d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-286-287.report.txt @@ -0,0 +1,10 @@ +BIPs/BIP-286-287.json +COMMIT: 43369ba8579e58fd8d6aeb244e1a56c208c7071d +``` ++---------------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| add_gauge(address,int128) | 0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7000000000000000000000b5b | FRAX-bb-am-USD | 0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7 | 2000 | 0xecF0a26a290cbf3DDBAB7eC5Fb44Ef5A294cAc18 | 3 | 100.0% | L0 sidechain | +| add_gauge(address,int128) | 0xec3626fee40ef95e7c0cbb1d495c8b67b34d398300000000000000000000053d | B-S-UZD-BB-A-USD | 0xeC3626fEe40EF95e7C0CBb1D495C8B67B34D3983 | 500 | 0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0 | 2 | 2.0% | mainnet | ++---------------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-286.json b/BIPs/2023/00before_weekly/BIP-286.json new file mode 100644 index 000000000..9420f41d8 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-286.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683680627613, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa93992919c74721a0cd9e306b2948a27447b23ad911567a8c064c0ad202d15a0" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addPolygonGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xecF0a26a290cbf3DDBAB7eC5Fb44Ef5A294cAc18" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-286.report.txt b/BIPs/2023/00before_weekly/BIP-286.report.txt new file mode 100644 index 000000000..a1ca67e34 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-286.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-286.json +COMMIT: e6b64d8f66aee299240018e4783ca40b2f1e1166 +``` ++-----------------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-----------------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| addPolygonGauge | 0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7000000000000000000000b5b | FRAX-bb-am-USD | 0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7 | 2000 | 0xecF0a26a290cbf3DDBAB7eC5Fb44Ef5A294cAc18 | N/A | 100.0% | L0 sidechain | ++-----------------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-287.json b/BIPs/2023/00before_weekly/BIP-287.json new file mode 100644 index 000000000..d859c9db3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-287.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683747553138, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x9b900e7cda3674e55026d3d3b00f7438d5df07df09381201bbe3a8a577080832" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-287.report.txt b/BIPs/2023/00before_weekly/BIP-287.report.txt new file mode 100644 index 000000000..0f63bd2df --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-287.report.txt @@ -0,0 +1,9 @@ +BIPs/BIP-287.json +COMMIT: e6b64d8f66aee299240018e4783ca40b2f1e1166 +``` ++------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| addEthereumGauge | 0xec3626fee40ef95e7c0cbb1d495c8b67b34d398300000000000000000000053d | B-S-UZD-BB-A-USD | 0xeC3626fEe40EF95e7C0CBb1D495C8B67B34D3983 | 500 | 0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0 | N/A | 2.0% | mainnet | ++------------------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-288/arbitrum.json b/BIPs/2023/00before_weekly/BIP-288/arbitrum.json new file mode 100644 index 000000000..b8d08da0c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-288/arbitrum.json @@ -0,0 +1,81 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1683301269547, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x1adc3ae811759248f2da529895e3a1df34493c978f10c48ea679c1c9e12e1d25" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656,0x5fd274813b31ce95c712e49fe755d0b075329e0579e5f04cd7126ed1470d4354,0x3f476d79932a277fc0be18747fc314f1db33802d38a900d529db018c01de81a4,0xa23cd4468cbe8403f6163d16350699bab6b407aee02d6a29755b0cffa52dd023,0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154,0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e,0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8]", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xa2D801064652A269D92EE2A59F3261155ec66830", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xf1665E19bc105BE4EDD3739F88315cC699cc5b65", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x1c99324EDC771c82A0DCCB780CC7DDA0045E50e7", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xa3B9515A9c557455BC53F7a535A85219b59e8B2E", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xD8B6b96c88ad626EB6209c4876e3B14f45f8803A", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-288/ethereum.json b/BIPs/2023/00before_weekly/BIP-288/ethereum.json new file mode 100644 index 000000000..725047351 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-288/ethereum.json @@ -0,0 +1,88 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683300970878, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa1c55ccfdc672f6b9790a1b0cb698cb80f82a407e3e3574c73d0a1336a29313c" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0df3339673f8356288d97461676bb443e5def15e6d6e8321add702ef77075160,0xa010f28803768154a04542ff29718c73ff40e307b10e5f39fbdff6c90db7b4ec,0xe718df4ad5522c83ea7c41eb474c22b1633a63b63398fc1dd156aadd736f240b,0x3fad985e82b2b68120f2bbe4c05b3bcbb41b29519eaa63fb25cb25833043f1e8,0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0,0xb1bb0315049487d8b225a40fc17d5a02647e84002cfa5b11eda57b967629f72c,0xdf42af2dd96057a6f29e617c9d6c389e3ac79347b2e4d0b06b8d33cd7e15c40b,0xc6d41c26426784c7fab7298da04eab2259046b3c7c8351286ee364e4e0a3bd1e,0xa29d20c33a203d4663b49d6135fd5876558c9bf107a898f7a0e95357ec2e42b1]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x5Dd94Da3644DDD055fcf6B3E1aa310Bb7801EB8b", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xdba127fBc23fb20F5929C546af220A991b5C6e01", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x67A25ca2350Ebf4a0C475cA74C257C94a373b828", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x5F43FBa61f63Fa6bFF101a0A0458cEA917f6B347", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x8b7854708c0C54f9D7d1FF351D4F84E6dE0E134C", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x2EbE41E1aa44D61c206A94474932dADC7D3FD9E3", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-288/gnosis.json b/BIPs/2023/00before_weekly/BIP-288/gnosis.json new file mode 100644 index 000000000..421d434c0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-288/gnosis.json @@ -0,0 +1,60 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0x528a92fbf4f4ae609bf476538d9f5fa881e85dc4a6b136585512929e560c12f9" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x12068567376f5214f735cd6e477a885e135c8964f6771112086ce1fda7cc475d,0xbe826ebecfd64701333db6557b090b44c6155461ce9aaf6efce57ad8dc12bd2e,0x9f637c196de3124bc0febbb78f206994fdb68c3f8fe8070b42230a76e14ece0b,0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec]", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0x9dd5Db2d38b50bEF682cE532bCca5DfD203915E1", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xC128a9954e6c874eA3d62ce62B468bA073093F25", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x9dA18982a33FD0c7051B19F0d7C76F2d5E7e017c", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-288/optimism.json b/BIPs/2023/00before_weekly/BIP-288/optimism.json new file mode 100644 index 000000000..5ea355f88 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-288/optimism.json @@ -0,0 +1,81 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1683301451067, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "0xcd5525597564a742aaf0a7b9477c4a7e96c4a142b8109191ef347f160006f427" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656,0x172535154ede905cf4b057c617cce7d530c0610210d393844d71da28ac0e1e96,0x3e97e0a2e6079577d465a9e3898ed6097ed0c661cb291f58991b80599b0e5558,0xe59ccea4d4a98c33b7c0b3c05a3d65ff930273fa5ee03855a3104befc6d1d362,0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154,0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e,0x204435acb6f76b6cfa0ef594fc0e4379b943252865ff8edb9a6d07e718ca12e8]", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + }, + { + "to": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xAd3CC7852382C09fdCE54784292c6aB7fb9Df917", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xA0DAbEBAAd1b243BBb243f933013d560819eB66f", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xe2E901AB09f37884BA31622dF3Ca7FC19AA443Be", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xa3B9515A9c557455BC53F7a535A85219b59e8B2E", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xD8B6b96c88ad626EB6209c4876e3B14f45f8803A", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-288/polygon.json b/BIPs/2023/00before_weekly/BIP-288/polygon.json new file mode 100644 index 000000000..91e2b3661 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-288/polygon.json @@ -0,0 +1,81 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1683301138975, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0x5be8d241dd63b93fc51537f0d115d6c05f7abf223b0b892d14253a945c29f593" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa010f28803768154a04542ff29718c73ff40e307b10e5f39fbdff6c90db7b4ec,0x09c9add3c0433de33f2eeac68a5aea247cf793af4087a152235bb1603ceef18f,0x18be448c0c01ad4576befd4f6bce2abf1214dc50697f946a487657e3c3c66947,0x9592bbf1ef6b5256ed5698e4cf4610375a5e984fa05ddb8a9c6f2e411f2d0d1e,0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154,0x5ec883ecf16774e6b304f1e06322669694ffb90c13167afeac8ed7b68ab0869e,0x6b623ee459a550297f0b0660446eef4dbf89e9d7e9d29addbbe907763506089b]", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x35c425234DC42e7402f54cC54573f77842963a56", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x82e4cFaef85b1B6299935340c964C942280327f4", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x7bc6C0E73EDAa66eF3F6E2f27b0EE8661834c6C9", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xa3B9515A9c557455BC53F7a535A85219b59e8B2E", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x7396f99B48e7436b152427bfA3DD6Aa8C7C6d05B", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-289/BIP-289.md b/BIPs/2023/00before_weekly/BIP-289/BIP-289.md new file mode 100644 index 000000000..b20584e66 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-289/BIP-289.md @@ -0,0 +1,42 @@ +## [Payload PR - BIP-289](https://github.com/BalancerMaxis/multisig-ops/pull/174) + +## Background +The [v3 Weighted Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks/20230206-weighted-pool-v3) and the [v3 Composable Stable Pool Factory](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/tasks//20230206-composable-stable-pool-v3) where deployed to fix reentrancy issue described [here](https://forum.balancer.fi/t/reentrancy-vulnerability-scope-expanded/4345). Some initial "wire-up" of permissions is required to bring them into standard function. This BIP lays out these changes and requests permission to apply them. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/tools/python/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-289) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-289/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-289/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-289/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-289/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-289/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-v2-monorepo](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-289/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | target | target_address | +|:------------------------|:--------|:------------------------|:-------------------------------------------------------------------|:---------|:-------------------------------------------| +| 20230109-gauge-adder-v3 | mainnet | addGnosisGauge(address) | 0xe818738e338905496f604a2a26c7ca754558870a3810786cfbb89ae28d262dc5 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230109-gauge-adder-v3 | mainnet | addZKSyncGauge(address) | 0x010cab59e1860b78f8f67210e267d2c06d77c17b4529f007c7c8acee11ea2fe0 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Monorepo Deployment Addresses](https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/deployments) diff --git a/BIPs/2023/00before_weekly/BIP-289/README.md b/BIPs/2023/00before_weekly/BIP-289/README.md new file mode 100644 index 000000000..336ae8f4e --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-289/README.md @@ -0,0 +1 @@ +[See Here](BIP-289.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-289/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-289/function_descriptions.md new file mode 100644 index 000000000..e5e3be8fd --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-289/function_descriptions.md @@ -0,0 +1,4 @@ +| function | description | +|:------------------------|:-----------------------------| +| addGnosisGauge(address) | description not found in map | +| addZKSyncGauge(address) | description not found in map | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-289/inputs.json b/BIPs/2023/00before_weekly/BIP-289/inputs.json new file mode 100644 index 000000000..4491c5745 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-289/inputs.json @@ -0,0 +1,16 @@ +[ + { + "deployments": ["20230109-gauge-adder-v3"], + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "addArbitrumGauge(address)": "lm", + "addEthereumGauge(address)": "lm", + "addGnosisGauge(address)": "lm", + "addOptimismGauge(address)": "lm", + "addPolygonGauge(address)": "lm", + "addZKSyncGauge(address)": "lm" + } + } +] diff --git a/BIPs/2023/00before_weekly/BIP-289/mainnet.json b/BIPs/2023/00before_weekly/BIP-289/mainnet.json new file mode 100644 index 000000000..56bc73574 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-289/mainnet.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe818738e338905496f604a2a26c7ca754558870a3810786cfbb89ae28d262dc5, 0x010cab59e1860b78f8f67210e267d2c06d77c17b4529f007c7c8acee11ea2fe0]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-289/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-289/results_address_sorted.md new file mode 100644 index 000000000..20914d11a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-289/results_address_sorted.md @@ -0,0 +1,4 @@ +| deployment | chain | function | role | target | target_address | +|:------------------------|:--------|:------------------------|:-------------------------------------------------------------------|:---------|:-------------------------------------------| +| 20230109-gauge-adder-v3 | mainnet | addGnosisGauge(address) | 0xe818738e338905496f604a2a26c7ca754558870a3810786cfbb89ae28d262dc5 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230109-gauge-adder-v3 | mainnet | addZKSyncGauge(address) | 0x010cab59e1860b78f8f67210e267d2c06d77c17b4529f007c7c8acee11ea2fe0 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-289/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-289/results_deployment_sorted.md new file mode 100644 index 000000000..20914d11a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-289/results_deployment_sorted.md @@ -0,0 +1,4 @@ +| deployment | chain | function | role | target | target_address | +|:------------------------|:--------|:------------------------|:-------------------------------------------------------------------|:---------|:-------------------------------------------| +| 20230109-gauge-adder-v3 | mainnet | addGnosisGauge(address) | 0xe818738e338905496f604a2a26c7ca754558870a3810786cfbb89ae28d262dc5 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230109-gauge-adder-v3 | mainnet | addZKSyncGauge(address) | 0x010cab59e1860b78f8f67210e267d2c06d77c17b4529f007c7c8acee11ea2fe0 | lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-290.json b/BIPs/2023/00before_weekly/BIP-290.json new file mode 100644 index 000000000..e06fd19f0 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-290.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683672249339, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x200d9d9bc02742d928e0022e1ede98f13f01a8c06ae6a1e5aad8ee2dd85bd08f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x183D73dA7adC5011EC3C46e33BB50271e59EC976", + "data": "0x10d3eb04000000000000000000000000000000000000000000000000016345785d8a0000" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-291.json b/BIPs/2023/00before_weekly/BIP-291.json new file mode 100644 index 000000000..c2010282d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-291.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683749468497, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x697c7e9d886762b136da20cf02642e8a76d18323ecfbf9b7e7c0c565627a1007" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc85d90dec1E12eDee418C445b381E7168EB380Ab", + "data": "0xab8f0945" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "data": "0x3a04f9000000000000000000000000005b79494824bc256cd663648ee1aad251b32693a90000000000000000000000000000000000000000000000000000000000000002" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf49d7ffb5922642adc9f29cfb52b2214e81e0b0e54e9cd1e9f70439f0011f368", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-291.report.txt b/BIPs/2023/00before_weekly/BIP-291.report.txt new file mode 100644 index 000000000..42d6af699 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-291.report.txt @@ -0,0 +1,10 @@ +BIPs/BIP-291.json +COMMIT: bdaf593ef80f64383de3257d80b05585ba4fda5f +``` ++---------------------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+------+------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++---------------------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+------+------------------+ +| killGauge() | 0xd689abc77b82803f22c49de5c8a0049cc74d11fd000200000000000000000524 | 80USH-20unshETH | 0xd689ABc77B82803F22c49dE5C8A0049Cc74D11fD | N/A | 0xc85d90dec1E12eDee418C445b381E7168EB380Ab | NA | 2.0% | mainnet | +| add_gauge(address,int128) | 0xd689abc77b82803f22c49de5c8a0049cc74d11fd000200000000000000000524 | 80USH-20unshETH | 0xd689ABc77B82803F22c49dE5C8A0049Cc74D11fD | N/A | 0x5b79494824Bc256cD663648Ee1Aad251B32693A9 | 2 | 2.0% | Single Recipient | ++---------------------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+------+------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-303/BIP-303.md b/BIPs/2023/00before_weekly/BIP-303/BIP-303.md new file mode 100644 index 000000000..1cbdd7c6a --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/BIP-303.md @@ -0,0 +1,98 @@ +## [Payload PR - BIP-303](https://github.com/BalancerMaxis/multisig-ops/pull/201) + +## Background +Talk about the background of this BIP here +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-303) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-303/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-303/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-303/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-303/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-303/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-deployments](https://github.com/balancer/balancer-deployments/tree/master/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-303/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | zkevm | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a | +| 20220725-protocol-fee-percentages-provider | zkevm | setFeeTypePercentage(uint256,uint256) | 0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8 | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | +| 20210418-vault | zkevm | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20230320-weighted-pool-v4 | zkevm | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | disable() | 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | pause() | 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | disable() | 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | pause() | 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | disable() | 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | pause() | 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20210418-vault | zkevm | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20220517-protocol-fee-withdrawer | zkevm | denylistToken(address) | 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | stopAmplificationParameterUpdate() | 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setTargets(uint256,uint256) | 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setTargets(uint256,uint256) | 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230316-child-chain-gauge-factory-v2 | zkevm | add_reward(address,address) | 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20220517-protocol-fee-withdrawer | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | addPoolFactory(address) | 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | removePoolFactory(address) | 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | registerProtocolId(uint256,string) | 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | renameProtocolId(uint256,string) | 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/2023/00before_weekly/BIP-303/BIP-303A.json b/BIPs/2023/00before_weekly/BIP-303/BIP-303A.json new file mode 100644 index 000000000..a247d2697 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/BIP-303A.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684510645066, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0xe0954a327a51b9eb182d82a208febb00525cd26ecb38156f545e7ae1c13c2957" + }, + "transactions": [ + { + "to": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-303/BIP-303B.json b/BIPs/2023/00before_weekly/BIP-303/BIP-303B.json new file mode 100644 index 000000000..ac0ac6891 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/BIP-303B.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684511152320, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x58189c93f6a7a5b182c9ac43fcc7aa7e65c042ecd570d6f2d428b0ef4cfa78f2" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0x475D18169BE8a89357A9ee3Ab00ca386d20fA229", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-303/BIP-303C.json b/BIPs/2023/00before_weekly/BIP-303/BIP-303C.json new file mode 100644 index 000000000..9c07a0f55 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/BIP-303C.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684511322475, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x236bc882129c879364d75680b94d8e2b7f0d08a7fd63554e039871a3cf632c8f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x8df317a729fcaA260306d7de28888932cb579b88" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-303/README.md b/BIPs/2023/00before_weekly/BIP-303/README.md new file mode 100644 index 000000000..1e1ff72e3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/README.md @@ -0,0 +1 @@ +[See Here](BIP-303.md) for the governance contents. diff --git a/BIPs/2023/00before_weekly/BIP-303/function_descriptions.md b/BIPs/2023/00before_weekly/BIP-303/function_descriptions.md new file mode 100644 index 000000000..2796503f5 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/function_descriptions.md @@ -0,0 +1,26 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| setTargets(uint256,uint256) | Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens. | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setPaused(bool) | Stops all trading activity involving the vault | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setFlashLoanFeePercentage(uint256) | Sets the protocol fee charged on flash loans for this deployment | +| withdrawCollectedFees(address[],uint256[],address) | Allows the withdrawal of collected protocol fees | +| setFeeTypePercentage(uint256,uint256) | Sets the protocol fee for a particular fee type for this deployment | +| add_reward(address,address) | Allows adding of an external reward token to gauges. | +| denylistToken(address) | Adds a token to the ProtocolFeeWithdrawer deny list which prevents the withdrawal of that token from the ProtocolFeeCollector | +| addPoolFactory(address) | Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| removePoolFactory(address) | Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| registerProtocolId(uint256,string) | Register a new DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | +| renameProtocolId(uint256,string) | Change the name of a DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | diff --git a/BIPs/2023/00before_weekly/BIP-303/inputs.json b/BIPs/2023/00before_weekly/BIP-303/inputs.json new file mode 100644 index 000000000..d7c55cc3d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/inputs.json @@ -0,0 +1,113 @@ +[ + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + }, + "deployments": [ + "20230320-weighted-pool-v4", + "20230320-composable-stable-pool-v4", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2", + "20230410-silo-linear-pool-v2" + ] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + }, + "deployments": ["20210418-vault"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/lm"], + "addPoolFactory(address)": ["multisigs/lm"] + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + }, + "deployments": ["20230223-protocol-id-registry"] + } +] diff --git a/BIPs/2023/00before_weekly/BIP-303/results_address_sorted.md b/BIPs/2023/00before_weekly/BIP-303/results_address_sorted.md new file mode 100644 index 000000000..f28cefcb6 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/results_address_sorted.md @@ -0,0 +1,60 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | zkevm | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a | +| 20220725-protocol-fee-percentages-provider | zkevm | setFeeTypePercentage(uint256,uint256) | 0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8 | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | +| 20210418-vault | zkevm | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20230320-weighted-pool-v4 | zkevm | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | disable() | 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | pause() | 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | disable() | 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | pause() | 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | disable() | 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | pause() | 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20210418-vault | zkevm | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20220517-protocol-fee-withdrawer | zkevm | denylistToken(address) | 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | stopAmplificationParameterUpdate() | 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setTargets(uint256,uint256) | 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setTargets(uint256,uint256) | 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230316-child-chain-gauge-factory-v2 | zkevm | add_reward(address,address) | 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20220517-protocol-fee-withdrawer | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | addPoolFactory(address) | 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | removePoolFactory(address) | 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | registerProtocolId(uint256,string) | 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | renameProtocolId(uint256,string) | 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-303/results_deployment_sorted.md b/BIPs/2023/00before_weekly/BIP-303/results_deployment_sorted.md new file mode 100644 index 000000000..8ce0b1d40 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/results_deployment_sorted.md @@ -0,0 +1,60 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | zkevm | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20210418-vault | zkevm | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a | +| 20220517-protocol-fee-withdrawer | zkevm | denylistToken(address) | 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20220517-protocol-fee-withdrawer | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20220725-protocol-fee-percentages-provider | zkevm | setFeeTypePercentage(uint256,uint256) | 0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8 | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | +| 20221123-pool-recovery-helper | zkevm | addPoolFactory(address) | 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | removePoolFactory(address) | 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | registerProtocolId(uint256,string) | 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | renameProtocolId(uint256,string) | 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230316-child-chain-gauge-factory-v2 | zkevm | add_reward(address,address) | 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230320-composable-stable-pool-v4 | zkevm | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | stopAmplificationParameterUpdate() | 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-weighted-pool-v4 | zkevm | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230320-weighted-pool-v4 | zkevm | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | disable() | 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-erc4626-linear-pool-v4 | zkevm | pause() | 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setTargets(uint256,uint256) | 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-gearbox-linear-pool-v2 | zkevm | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-yearn-linear-pool-v2 | zkevm | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | disable() | 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230410-aave-linear-pool-v5 | zkevm | pause() | 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setTargets(uint256,uint256) | 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230411-managed-pool-v2 | zkevm | disable() | 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230411-managed-pool-v2 | zkevm | pause() | 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | \ No newline at end of file diff --git a/BIPs/2023/00before_weekly/BIP-303/zkevm.json b/BIPs/2023/00before_weekly/BIP-303/zkevm.json new file mode 100644 index 000000000..a03446f8c --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-303/zkevm.json @@ -0,0 +1,135 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12, 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922, 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846, 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc, 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd, 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779, 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b, 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7, 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f, 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae, 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc, 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93, 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439, 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d, 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168, 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2, 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9, 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x4678731DC41142A902a114aC5B2F77b63f4a259D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0x1802953277FD955f9a254B80Aa0582f193cF1d77" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8]", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-343/BIP-343.md b/BIPs/2023/00before_weekly/BIP-343/BIP-343.md new file mode 100644 index 000000000..98cebe55d --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-343/BIP-343.md @@ -0,0 +1,84 @@ +## [Payload PR - BIP-343](https://github.com/BalancerMaxis/multisig-ops/pull/303) + +## Background +On the 24th of June 2023, the [Balancer Emergency SubDAO](https://docs.balancer.fi/concepts/governance/emergency.html#emergency-subdao), put all Composable Stable Pools (CSPs) into [Recovery Mode](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045). This was in response to an incident reported by ImmuniFi that Balancer Labs was not able to immediately verify or discount. + +Ongoing investigation is leading to the belief, which still must be verified, that many of the pools can run safely outside [Recovery Mode](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045). The Emergency DAO has requested that we grant rights to disableRecoveryMode() on all CSPs and all Weighted Pools version 2 and above. + +This will allow them to unpause pools as it becomes sensible, without a 1-2 week governance delay. + +### TL;DR on recovery mode: +- Pools in Recovery Mode do not collect protocol fees(and therefore do not accumulate core pools incentives) +- Pools in Recovery Mode can only be joined and exited proportionally. +- Recovery Mode may interfere with the compatibility of pools. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-343) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-343/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-343/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permissions granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-343/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-343/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W26/BIP-343/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-343/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-deployments](https://github.com/balancer/balancer-deployments/tree/master/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-343/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | caller | caller_address | +|:-----------------------------------|:----------|:----------------------|:-------------------------------------------------------------------|:--------------------|:-------------------------------------------| +| 20230320-weighted-pool-v4 | arbitrum | disableRecoveryMode() | 0x3f9dc3da8a6332271be3fccd1a107fd3117a1a988666ff673241edc8c12279ac | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-weighted-pool-v3 | arbitrum | disableRecoveryMode() | 0x0fb35afbdd369d25e1e13986af342dd66f4af22e88628aded66fc015fddee9e6 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20220906-composable-stable-pool | arbitrum | disableRecoveryMode() | 0x6849898f08c7f64552f27ae1a4dfcc908200c4d6901ee3945a8c62dbf9cefb8f | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20221122-composable-stable-pool-v2 | arbitrum | disableRecoveryMode() | 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230206-composable-stable-pool-v3 | arbitrum | disableRecoveryMode() | 0x0585ff33fe95b333f37198850856b5b788891cbc6fd99c447b8d7625c94a33b9 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-composable-stable-pool-v4 | arbitrum | disableRecoveryMode() | 0x2cdef929bdc29c7b9ca832b8a8f62ce592fee150df38b736a8cab1d2918fc179 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230320-weighted-pool-v4 | avalanche | disableRecoveryMode() | 0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230206-weighted-pool-v3 | avalanche | disableRecoveryMode() | 0x57a99f3ed4c936dc3acc397e914c860702345856a9cca3a5be4c01fefa6a7674 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230320-composable-stable-pool-v4 | avalanche | disableRecoveryMode() | 0xe41196603a4830aa78064fa1ce052e42607bc0a162707e1ce030e7fd9757f0b1 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230320-weighted-pool-v4 | gnosis | disableRecoveryMode() | 0x29596d20dcc54c557d94ae57af84f08715a588be1d756198eec61a3dc368b6c1 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-weighted-pool-v3 | gnosis | disableRecoveryMode() | 0x9023a208ea63197b4da99dc4a096d44fb3152b807b6e4d37f15239d9fff8beb2 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20221122-composable-stable-pool-v2 | gnosis | disableRecoveryMode() | 0x478e7f53087deab85ae5870218c02821a6bafa4a75984797ac58cdfd513a385b | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230206-composable-stable-pool-v3 | gnosis | disableRecoveryMode() | 0x4b0cfb0e3afde1903ef88f0072b490a0d78f1027a165371b1b4732daa84a9559 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-composable-stable-pool-v4 | gnosis | disableRecoveryMode() | 0x338ff79f4b040df80f9cbc5217e904e2c8dbb7fb58beb6100c837ffa25ab4197 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230320-weighted-pool-v4 | mainnet | disableRecoveryMode() | 0x883ac0fb54f0b07161f4c1d1132c7179cf4fd457dec4d2cf15af62bfe93d6402 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-weighted-pool-v3 | mainnet | disableRecoveryMode() | 0xd1cab845861601849b43df194d75e16c676ee31cf20296f392e9d44dd3793ef3 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20220906-composable-stable-pool | mainnet | disableRecoveryMode() | 0xdcae01a1d3143e115458cda9b816ea278dd5daf08d9b6d3ec668632aa7b82dad | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20221122-composable-stable-pool-v2 | mainnet | disableRecoveryMode() | 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230206-composable-stable-pool-v3 | mainnet | disableRecoveryMode() | 0xa35b682012cf580f34e9cd41e4bf1c0210b6ebfc1a952fb582842c0e23b8c069 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-composable-stable-pool-v4 | mainnet | disableRecoveryMode() | 0xb6f4ab951143da625c0c25d6eca1ce9e007e3139abfd9cfec3a301bad7238e15 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230320-weighted-pool-v4 | optimism | disableRecoveryMode() | 0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-weighted-pool-v3 | optimism | disableRecoveryMode() | 0x94d058c565b594a202b88b57a685b093db0fd3406b926f2033a3443a6d8e1b50 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20220906-composable-stable-pool | optimism | disableRecoveryMode() | 0x53a0625529c519f2e4a706b874baf30797466df455c9d39cd3ee19e6fe5bc6e2 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20221122-composable-stable-pool-v2 | optimism | disableRecoveryMode() | 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230206-composable-stable-pool-v3 | optimism | disableRecoveryMode() | 0xe4efb851c410e171273aee46d6939a91154b536e375e6fe59c09a4e617072339 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-composable-stable-pool-v4 | optimism | disableRecoveryMode() | 0xf65bca6198c80a6fc89409c116db12c0427a0b571cd0d2ee5dd614145d006810 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230320-weighted-pool-v4 | polygon | disableRecoveryMode() | 0x70d81f1b0f71c8c3037ee34b69ad6980888bab8b2e32959f8c6aac274a7f10cb | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-weighted-pool-v3 | polygon | disableRecoveryMode() | 0x70ea65bcadbec99c10058d43f9acdc9a5ad05cde666b7d0065818feb763e7cb2 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20220906-composable-stable-pool | polygon | disableRecoveryMode() | 0x2bd529cf8062fa0ff07c2054e5dc654a104415c2ae171092c450a88c9ff098a9 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20221122-composable-stable-pool-v2 | polygon | disableRecoveryMode() | 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230206-composable-stable-pool-v3 | polygon | disableRecoveryMode() | 0x3f743640e5e338ede5771590dab93e6860616f4318ca6d5a578c84be2c329844 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-composable-stable-pool-v4 | polygon | disableRecoveryMode() | 0xdb63b0c040446fcfa9503943eff986bc051fb5e7cb8f83a8bcebb7115c535b60 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230320-weighted-pool-v4 | zkevm | disableRecoveryMode() | 0xd21198f97672ee6118c9598a1b4c2053515bf28a40c4df5cf02365c4ff3d5ba7 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | disableRecoveryMode() | 0x5610aeafaa3f5c4ef9b9b45ee9c0810b2f7bd64b7b504f19d1a8a3bde062a966 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +## Risk Assessment +This BIP could allow the EmergencyDAO to remove pools from recovery mode without engaging governance or communicating the change. Voting on this BIP accepts that those who put a pool into Recovery Mode can also move it out without governance intervention. + + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/2023/00before_weekly/BIP-375.json b/BIPs/2023/00before_weekly/BIP-375.json new file mode 100644 index 000000000..5f9552bb3 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-375.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689831276210, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x6e4291b5b6b60686c93fbb1af9337d469af9b32b1b25daa0060d03a1a599a12c" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x671eD21480acf63b0AB7297b901505F5BccAfa9b", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/BIP-699-test-delete.report.txt b/BIPs/2023/00before_weekly/BIP-699-test-delete.report.txt new file mode 100644 index 000000000..e15c5c132 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-699-test-delete.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/BIP-699-test-delete.json +COMMIT: `7cf5e56c986727afb2bed75bff30b1306e7353f5` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | transaction_index | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| transfer | BAL | multisigs/foundation | 28958.33 | 0xba100000625a3754423978a60c9317c58a424e3D | 0x3B8910F378034FD6E103Df958863e5c684072693 | 28958330000000000000000 | BIP-699 | N/A | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-XXX-Kill-Non-Migratory.report.txt b/BIPs/2023/00before_weekly/BIP-XXX-Kill-Non-Migratory.report.txt new file mode 100644 index 000000000..54e9ae459 --- /dev/null +++ b/BIPs/2023/00before_weekly/BIP-XXX-Kill-Non-Migratory.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/BIP-XXX-Kill-Non-Migratory.json +COMMIT: `2f42643ab5d10c11ed1505787bf413773234361f` +CHAIN(S): `polygon, zkevm, mainnet, arbitrum` +``` ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+-----+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+-----+-------------------+ +| killGauge() | 0x01990f1e6f7f32296f125ee9469705c1c070054d000000000000000000000461 | Stafi rETH/WETH | 0x01990f1e6f7F32296f125eE9469705C1C070054D | 50 | 0x870Cd189889C1117b33bc8c94394a7477d4EB6fa | 0.04% | 10.0% | L0 sidechain | N/A | N/A | +| killGauge() | 0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb28600000000000000000000000d | bb-o-USD | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 | 3000 | 0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58 | 0.005% | 100.0% | L0 sidechain | N/A | N/A | +| killGauge() | 0x36a0ee903841584f47e3c774b59e0cbfba46080f000000000000000000000b0a | B-ankrMATIC-MATIC-Stable | 0x36A0ee903841584f47E3c774B59E0CbFBA46080F | 50 | 0x21483F79a1aE94536Dc1d5dDfC6f591fB3B430Df | 0.04% | 100.0% | L0 sidechain | N/A | N/A | +| killGauge() | 0xeb567dde03f3da7fe185bdacd5ab495ab220769d000000000000000000000548 | ankrETH-bb-a-WETH-BPT | 0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d | 100 | 0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da | 0.04% | 100.0% | mainnet | N/A | N/A | +| killGauge() | 0xec3626fee40ef95e7c0cbb1d495c8b67b34d398300000000000000000000053d | B-S-UZD-BB-A-USD | 0xeC3626fEe40EF95e7C0CBb1D495C8B67B34D3983 | 500 | 0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0 | 0.04% | 2.0% | mainnet | N/A | N/A | +| killGauge() | 0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4000200000000000000000b44 | 50stMATIC-BPT-50bbamUSD | 0x7F4f4942F2a14B6AB7B08b10ada1AAcede4EE8D4 | N/A | 0x02DFcC6ca6611cCBDCe51049a332afDB91465584 | 0.05% | 100.0% | L0 sidechain | N/A | N/A | +| killGauge() | 0x20b156776114e8a801e9767d90c6ccccc8adf398000000000000000000000499 | bb-yv-USD | 0x20b156776114E8a801e9767D90c6ccCCc8Adf398 | 2000 | 0x29C6361Af40fc1B6585ce0885319511dF4450a8E | 0.005% | 100.0% | mainnet | N/A | N/A | +| killGauge() | 0xcaa052584b462198a5a9356c28bce0634d65f65c0000000000000000000004db | bb-ma2-USD | 0xCAa052584b462198A5a9356c28bcE0634D65f65C | 2000 | 0x254f3a52Ba9e0cac4E32B648d129529622D1A46c | 0.005% | 100.0% | mainnet | N/A | N/A | +| killGauge() | 0x779d01f939d78a918a3de18cc236ee89221dfd4e0000000000000000000004c7 | bb-s-USD | 0x779d01F939D78a918A3de18cC236ee89221dfd4E | 2000 | 0xFd29298041eA355cF7e15652689F2865443C3144 | 0.005% | 100.0% | mainnet | N/A | N/A | +| killGauge() | 0x8fd39252d683fdb60bddd4df4b53c9380b496d59000200000000000000000b45 | 50wstETH-BPT-50bbamUSD | 0x8fd39252d683fDB60BDDD4DF4B53C9380B496D59 | N/A | 0xCDb532170f8B524D047287bFEfAcd0cC02441b4A | 0.05% | 100.0% | L0 sidechain | N/A | N/A | +| killGauge() | 0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352 | bb-rf-USD-BPT | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a | 2000 | 0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d | 0.005% | 100.0% | L0 sidechain | N/A | N/A | +| killGauge() | 0xfcf77141908aa22bfeac216123c5feb2531f373e00000000000000000000054a | B-rETH-swETH-STABLE | 0xFCF77141908Aa22bfEAc216123C5FEb2531f373e | 100 | 0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05 | 0.04% | 100.0% | mainnet | N/A | N/A | +| killGauge() | 0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63000200000000000000000412 | 50wstETH-BPT-50bbaUSD | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | N/A | 0xd40a3C414Bb6f82fC5625e32895F49E53220f73b | 0.01% | 100.0% | L0 sidechain | N/A | N/A | +| killGauge() | 0x6f34a44fce1506352a171232163e7716dd073ade000200000000000000000015 | B-rETH-bboUSD | 0x6F34a44FCe1506352A171232163E7716Dd073ade | N/A | 0x7949426d750FEFC25754F149B2FB446B60c39387 | 0.3% | 100.0% | L0 sidechain | N/A | N/A | +| killGauge() | 0x68a69c596b3839023c0e08d09682314f582314e5000200000000000000000011 | 50wstETH-BPT-50-bboUSD | 0x68a69c596B3839023C0e08D09682314F582314e5 | N/A | 0x227534d3F9aE72Cb5B31E1d0A27bE1A2859C6cC8 | 0.3% | 100.0% | L0 sidechain | N/A | N/A | ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+-----+-------------------+ +``` diff --git a/BIPs/2023/00before_weekly/BIP-xxx.json b/BIPs/2023/00before_weekly/BIP-xxx.json new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/2023/00before_weekly/test-report.json b/BIPs/2023/00before_weekly/test-report.json new file mode 100644 index 000000000..7623a70bb --- /dev/null +++ b/BIPs/2023/00before_weekly/test-report.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1681807942000, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1ab8c9548b52f0a2fda11aee9a7b16cda8b5ba6a7a51a27672a74b7ae249232b" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x87ae77A8270F223656D9dC40AD51aabfAB424b30", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF0d887c1f5996C91402EB69Ab525f028DD5d7578", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE77239359CE4D445Fed27C17Da23B8024d35e456", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xEF3B68D9B6f44EeF2F6ea3d47D6e97707BF14189", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/00before_weekly/test-report.report.txt b/BIPs/2023/00before_weekly/test-report.report.txt new file mode 100644 index 000000000..297ffca0f --- /dev/null +++ b/BIPs/2023/00before_weekly/test-report.report.txt @@ -0,0 +1,12 @@ +BIPs/test-report.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +| killGauge() | 0x178e029173417b1f9c8bc16dcec6f697bc323746000200000000000000000158 | 50WSTETH-50USDC | 0x178E029173417b1F9C8bC16DCeC6f697bC323746 | N/A | 0x87ae77A8270F223656D9dC40AD51aabfAB424b30 | NA | N/A% | ChildChainStreamer | +| killGauge() | 0xe22483774bd8611be2ad2f4194078dac9159f4ba0000000000000000000008f0 | 2BRL (BRZ) | 0xE22483774bd8611bE2Ad2F4194078DaC9159F4bA | 200 | 0xF0d887c1f5996C91402EB69Ab525f028DD5d7578 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x4a0b73f0d13ff6d43e304a174697e3d5cfd310a400020000000000000000091c | 2BRLUSD-boosted | 0x4A0b73f0D13fF6d43e304a174697e3d5CFd310a4 | N/A | 0xE77239359CE4D445Fed27C17Da23B8024d35e456 | NA | 2.0% | ChildChainStreamer | +| killGauge() | 0x5dee84ffa2dc27419ba7b3419d7146e53e4f7ded000200000000000000000a4e | frxETH-WETH | 0x5DEe84FfA2DC27419Ba7b3419d7146E53e4F7dEd | 120 | 0xEF3B68D9B6f44EeF2F6ea3d47D6e97707BF14189 | NA | 100.0% | ChildChainStreamer | ++-------------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------------+ +``` diff --git a/BIPs/2023/2023-W20/.gitignore b/BIPs/2023/2023-W20/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/2023/2023-W20/BIP-292.json b/BIPs/2023/2023-W20/BIP-292.json new file mode 100644 index 000000000..81298edf7 --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-292.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684331863363, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x9eb82562b864a23083e9b7dc8c4bb2e646d3652d76c74cf7abfcd3dfbcfc3bcb" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xD973e86547e810117Db131B94708F429A463535E", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-292.report.txt b/BIPs/2023/2023-W20/BIP-292.report.txt new file mode 100644 index 000000000..8e200f707 --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-292.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W20/BIP-292.json +COMMIT: c56d3ef727b3569f4efbf7507f5aa2894eddf97c +``` ++-------------+--------------------------------------------------------------------+--------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+--------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| killGauge() | 0x959216bb492b2efa72b15b7aacea5b5c984c3cca000200000000000000000472 | 50wstETH-50stk-APE | 0x959216BB492B2efa72b15B7AAcEa5B5C984c3ccA | N/A | 0xD973e86547e810117Db131B94708F429A463535E | NA | 100.0% | mainnet | ++-------------+--------------------------------------------------------------------+--------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W20/BIP-293.json b/BIPs/2023/2023-W20/BIP-293.json new file mode 100644 index 000000000..5b7d69a5e --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-293.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684331982446, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa8f8fb987fb7703e8ba242e91d197a94a591aac8d2ea29a5d9f24313fcf8906e" + }, + "transactions": [ + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "dst", "type": "address" }, + { "name": "wad", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0x166f54F44F271407f24AA1BE415a730035637325", + "wad": "10000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-294.json b/BIPs/2023/2023-W20/BIP-294.json new file mode 100644 index 000000000..87415fb9e --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-294.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1684332112435, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x5d5963a50e7e198927a63a4837058c288025dc6ae922827f26a40076f0d2e043" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf", + "account": "0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-295.json b/BIPs/2023/2023-W20/BIP-295.json new file mode 100644 index 000000000..67ed91d8b --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-295.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684332267522, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1382cdbab37049e9a2a34dcaa500f4342d6b0ba7fd869bdc01f9e3e7031c29ac" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3697d13ee45583cf9c2c64a978ab5886bcd07ec2b851efbea2fced982b8f9596,0xc065d550fa98abc242b6baf98e7b2063590675f1ddd81bdb9ea8d8f5c5d52f98,0x7b09f4b61ccfe85436161b0223489b187d9f9158c542b5e6105df147afc78aca,0x15d3918ca8f9895d8906a780f5f402d32707bada7b1b5e7b21b7351257103a35,0xcf5e03a737e4f5ba6d13e23f893a1e0255b362d8ce22e9568e1565fcf92789c7,0x6c3a14f10cbcc5a3f4d0e4e8ad279e7a842735ab188e2b13fb84c6542cc3320c,0x78e9adfe5f05d7114a59d0870d78971192f871f57bb36e2aff2edbe75d425844,0xdee20d81c6075dcc437dbaaf02d316ab255cfcae4a154e04b17abdebc70a5b48,0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831,0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae,0xa5547190e3d59f2bfeb4174ca3454b2f2acaeed644bc7ad7018014516f73f2bd,0x0acc45f3ac7c04369514ee383aad82d5c1eef484fbf9ca5f6d87ad5c5859da40]", + "account": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-296A.json b/BIPs/2023/2023-W20/BIP-296A.json new file mode 100644 index 000000000..555f930a2 --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-296A.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684332382358, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x13f56eef6948f55078239fbceb40e016a26331a6b9a15e6bf33aa9a9a43ba11b" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-296A.report.txt b/BIPs/2023/2023-W20/BIP-296A.report.txt new file mode 100644 index 000000000..ef1b1df50 --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-296A.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W20/BIP-296A.json +COMMIT: 05e43a7d09888aafe4276d0b09087a9c7d6f49cc +``` ++------------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++------------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| addEthereumGauge | 0xeb567dde03f3da7fe185bdacd5ab495ab220769d000000000000000000000548 | ankrETH-bb-a-WETH-BPT | 0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d | 100 | 0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da | N/A | 100.0% | mainnet | ++------------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W20/BIP-297.json b/BIPs/2023/2023-W20/BIP-297.json new file mode 100644 index 000000000..b0c6e49b7 --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-297.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684332845136, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x3ee2f1d52ee5a36c11face5e088150740aeffe35deb3f6428862a1aaebde8329" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "rootGauge", "type": "address" } + ], + "name": "addArbitrumGauge", + "payable": false + }, + "contractInputsValues": { + "rootGauge": "0xc4b6cc9A444337b1Cb8cBbDD9de4d983f609C391" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-297.report.txt b/BIPs/2023/2023-W20/BIP-297.report.txt new file mode 100644 index 000000000..b46f57f34 --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-297.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W20/BIP-297.json +COMMIT: 5c06c1a3e931ade101cfa7b1430fac85ffcf5743 +``` ++------------------+--------------------------------------------------------------------+--------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++------------------+--------------------------------------------------------------------+--------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| addArbitrumGauge | 0x542f16da0efb162d20bf4358efa095b70a100f9e000000000000000000000436 | 2BTC | 0x542F16DA0efB162D20bF4358EfA095B70A100f9E | 200 | 0xc4b6cc9A444337b1Cb8cBbDD9de4d983f609C391 | N/A | 100.0% | L0 sidechain | ++------------------+--------------------------------------------------------------------+--------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +``` diff --git a/BIPs/2023/2023-W20/BIP-298.json b/BIPs/2023/2023-W20/BIP-298.json new file mode 100644 index 000000000..0c2708881 --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-298.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684332976399, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2630c038a7756c5f72c17e37f73040e41bd2ed69acde9e1e27bd0e578b9e3b28" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "rootGauge", "type": "address" } + ], + "name": "addArbitrumGauge", + "payable": false + }, + "contractInputsValues": { + "rootGauge": "0xa8D974288Fe44ACC329D7d7a179707D27Ec4dd1c" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-298.report.txt b/BIPs/2023/2023-W20/BIP-298.report.txt new file mode 100644 index 000000000..ec60b852b --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-298.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W20/BIP-298.json +COMMIT: ecb66d58109ed7b59cfc6f87dc8f2e67490ae8a8 +``` ++------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +| addArbitrumGauge | 0xc9f52540976385a84bf416903e1ca3983c539e34000200000000000000000434 | 50tBTC-50WETH | 0xc9f52540976385A84BF416903e1Ca3983c539E34 | N/A | 0xa8D974288Fe44ACC329D7d7a179707D27Ec4dd1c | N/A | 100.0% | L0 sidechain | ++------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+--------+--------------+ +``` diff --git a/BIPs/2023/2023-W20/BIP-299.json b/BIPs/2023/2023-W20/BIP-299.json new file mode 100644 index 000000000..b81370aad --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-299.json @@ -0,0 +1,216 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684199677112, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa221f38d898465fb29de30c50a18ffe8c5f919db38bf506c08a31310221ecd6e" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0xba620d90bf43ed4e28d08953a56a063710cfccbbc468b90ec556433bb1b0b27f\"]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xD4e7C1F3DA1144c9E2CfD1b015eDA7652b4a4399", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "unpause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xeB486AF868AeB3b6e53066abc9623b1041b42bc0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "unpause", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "enum IVault.UserBalanceOpKind", + "name": "kind", + "type": "uint8" + }, + { + "internalType": "contract IAsset", + "name": "asset", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address payable", + "name": "recipient", + "type": "address" + } + ], + "internalType": "struct IVault.UserBalanceOp[]", + "name": "ops", + "type": "tuple[]" + } + ], + "name": "manageUserBalance", + "payable": true + }, + "contractInputsValues": { + "ops": "[ [ 2, \"0xEb91861f8A4e1C12333F42DCE8fB0Ecdc28dA716\", \"2804709054674049019658430\", \"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\", \"0xF23d8342881eDECcED51EA694AC21C2B68440929\" ] ]" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "enum IVault.UserBalanceOpKind", + "name": "kind", + "type": "uint8" + }, + { + "internalType": "contract IAsset", + "name": "asset", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address payable", + "name": "recipient", + "type": "address" + } + ], + "internalType": "struct IVault.UserBalanceOp[]", + "name": "ops", + "type": "tuple[]" + } + ], + "name": "manageUserBalance", + "payable": true + }, + "contractInputsValues": { + "ops": "[ [ 2, \"0xe025E3ca2bE02316033184551D4d3Aa22024D9DC\", \"2332180919384747028677979\", \"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\", \"0xF23d8342881eDECcED51EA694AC21C2B68440929\" ] ]" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "inputTokens", + "type": "address[]" + }, + { + "internalType": "address[]", + "name": "outputTokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "dustFactor", + "type": "uint256[]" + }, + { + "internalType": "address payable", + "name": "recipient", + "type": "address" + } + ], + "name": "do_arb", + "payable": false + }, + "contractInputsValues": { + "inputTokens": "[ \"0xD4e7C1F3DA1144c9E2CfD1b015eDA7652b4a4399\", \"0xeB486AF868AeB3b6e53066abc9623b1041b42bc0\" ]", + "outputTokens": "[ \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\", \"0x6B175474E89094C44Da98b954EedeAC495271d0F\" ]", + "dustFactor": "[ \"350\", \"300\" ]", + "recipient": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[\"0xba620d90bf43ed4e28d08953a56a063710cfccbbc468b90ec556433bb1b0b27f\"]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-302.json b/BIPs/2023/2023-W20/BIP-302.json new file mode 100644 index 000000000..d34267501 --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-302.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684439306462, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x84647f3e867247dc1a57367ff8a1af3de708e5b7fef83486d348041b8e7e9596" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x69F1077AeCE23D5b0344330B5eB13f05d5e410a1" + } + } + ] +} diff --git a/BIPs/2023/2023-W20/BIP-302.report.txt b/BIPs/2023/2023-W20/BIP-302.report.txt new file mode 100644 index 000000000..1d4751f5e --- /dev/null +++ b/BIPs/2023/2023-W20/BIP-302.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W20/BIP-302.json +COMMIT: 42b5b4f4ce6233ce0c7ba1991cef085e15c1ea8f +``` ++------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +| addEthereumGauge | 0xdf2c03c12442c7a0895455a48569b889079ca52a000200000000000000000538 | 80ARCH-20WETH | 0xDf2c03c12442c7A0895455A48569B889079cA52A | N/A | 0x69F1077AeCE23D5b0344330B5eB13f05d5e410a1 | N/A | 2.0% | mainnet | ++------------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+------+------+---------+ +``` diff --git a/BIPs/2023/2023-W21/.gitignore b/BIPs/2023/2023-W21/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/2023/2023-W21/BIP-303/BIP-303.json b/BIPs/2023/2023-W21/BIP-303/BIP-303.json new file mode 100644 index 000000000..a03446f8c --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-303/BIP-303.json @@ -0,0 +1,135 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12, 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922, 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846, 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc, 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd, 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779, 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b, 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7, 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f, 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae, 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc, 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93, 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439, 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d, 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168, 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2, 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9, 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x4678731DC41142A902a114aC5B2F77b63f4a259D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0x1802953277FD955f9a254B80Aa0582f193cF1d77" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8]", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-303/BIP-303A.json b/BIPs/2023/2023-W21/BIP-303/BIP-303A.json new file mode 100644 index 000000000..a247d2697 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-303/BIP-303A.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684510645066, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0xe0954a327a51b9eb182d82a208febb00525cd26ecb38156f545e7ae1c13c2957" + }, + "transactions": [ + { + "to": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-303/BIP-303B.json b/BIPs/2023/2023-W21/BIP-303/BIP-303B.json new file mode 100644 index 000000000..ac0ac6891 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-303/BIP-303B.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684511152320, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x58189c93f6a7a5b182c9ac43fcc7aa7e65c042ecd570d6f2d428b0ef4cfa78f2" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0x475D18169BE8a89357A9ee3Ab00ca386d20fA229", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-303/BIP-303C.json b/BIPs/2023/2023-W21/BIP-303/BIP-303C.json new file mode 100644 index 000000000..9c07a0f55 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-303/BIP-303C.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684511322475, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x236bc882129c879364d75680b94d8e2b7f0d08a7fd63554e039871a3cf632c8f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x8df317a729fcaA260306d7de28888932cb579b88" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-303/verify.py b/BIPs/2023/2023-W21/BIP-303/verify.py new file mode 100644 index 000000000..8a32d86be --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-303/verify.py @@ -0,0 +1,106 @@ +from brownie import Contract + +from bal_addresses import AddrBook + +a = AddrBook("zkevm") + +### zkevm.json +a.reversebook["0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa"] +daomsig = "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + + +a.reversebook["0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6"] + +Authorizer = Contract("0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6") +roleList = "0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12, 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922, 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846, 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc, 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd, 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791" +roleList = roleList.split(", ") +a.reversebook["0x79b131498355daa2cC740936fcb9A7dF76A86223"] +emergencymsig = "0x79b131498355daa2cC740936fcb9A7dF76A86223" +tx = Authorizer.grantRoles(roleList, emergencymsig, {"from": daomsig}) +tx.call_trace(expand=True) + + +a.reversebook["0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd"] +"20221123-pool-recovery-helper/PoolRecoveryHelper" +PoolRecoveryHelper = Contract.from_explorer( + "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" +) +roleList = "0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd" +roleList = roleList.split(", ") +tx = Authorizer.grantRoles(roleList, PoolRecoveryHelper.address, {"from": daomsig}) +tx.call_trace(expand=True) + +a.reversebook["0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09"] +"multisigs/lm" +lmmsig = "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" +roleList = "0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779, 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b, 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7, 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f, 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae, 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc, 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93, 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439, 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d, 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168, 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2, 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9, 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968" +roleList = roleList.split(", ") +tx = Authorizer.grantRoles(roleList, lmmsig, {"from": daomsig}) +tx.call_trace(expand=True) + + +a.reversebook["0x4678731DC41142A902a114aC5B2F77b63f4a259D"] +BatchRelayer = Contract.from_explorer("0x4678731DC41142A902a114aC5B2F77b63f4a259D") +roleList = "0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff" +roleList = roleList.split(", ") +tx = Authorizer.grantRoles(roleList, BatchRelayer.address, {"from": daomsig}) +tx.call_trace(expand=True) + +a.reversebook["0x1802953277FD955f9a254B80Aa0582f193cF1d77"] +ProtocolFeesPercentagesProvider = Contract.from_explorer( + "0x1802953277FD955f9a254B80Aa0582f193cF1d77" +) +roleList = "0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083" +roleList = roleList.split(", ") +tx = Authorizer.grantRoles( + roleList, ProtocolFeesPercentagesProvider.address, {"from": daomsig} +) +tx.call_trace(expand=True) + + +a.reversebook["0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a"] +ProtocolFeesWithdawer = Contract("0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a") +roleList = ["0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796"] +tx = Authorizer.grantRoles(roleList, ProtocolFeesWithdawer.address, {"from": daomsig}) +tx.call_trace(expand=True) + +roleList = ["0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8"] +tx = Authorizer.grantRoles(roleList, daomsig, {"from": daomsig}) +tx.call_trace(expand=True) + +### 303A +tx = ProtocolFeesPercentagesProvider.setFeeTypePercentage( + 0, 500000000000000000, {"from": daomsig} +) +tx.call_trace(expand=True) + +tx = ProtocolFeesPercentagesProvider.setFeeTypePercentage( + 2, 500000000000000000, {"from": daomsig} +) +tx.call_trace(expand=True) + +### 303B +roleList = ["0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d"] +tx = Authorizer.grantRoles(roleList, daomsig, {"from": daomsig}) +tx.call_trace(expand=True) + +a.reversebook["0x475D18169BE8a89357A9ee3Ab00ca386d20fA229"] +L2BalancerPseudoMinter = Contract("0x475D18169BE8a89357A9ee3Ab00ca386d20fA229") +tx = L2BalancerPseudoMinter.addGaugeFactory( + "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95", {"from": daomsig} +) +tx.call_trace(expand=True) +tx = Authorizer.revokeRoles(roleList, daomsig, {"from": daomsig}) +tx.call_trace(expand=True) + +### 303C +roleList = ["0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0"] +tx = Authorizer.grantRoles(roleList, daomsig, {"from": daomsig}) +tx.call_trace(expand=True) +vault = Contract("0xBA12222222228d8Ba445958a75a0704d566BF2C8") +tx = vault.setAuthorizer( + "0x8df317a729fcaA260306d7de28888932cb579b88", {"from": daomsig} +) +tx.call_trace(expand=True) +tx = Authorizer.revokeRoles(roleList, daomsig, {"from": daomsig}) +tx.call_trace(expand=True) diff --git a/BIPs/2023/2023-W21/BIP-303/zkevm.json b/BIPs/2023/2023-W21/BIP-303/zkevm.json new file mode 100644 index 000000000..a03446f8c --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-303/zkevm.json @@ -0,0 +1,135 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12, 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922, 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846, 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc, 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd, 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779, 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b, 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7, 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f, 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae, 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc, 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93, 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439, 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d, 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168, 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2, 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9, 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x4678731DC41142A902a114aC5B2F77b63f4a259D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0x1802953277FD955f9a254B80Aa0582f193cF1d77" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8]", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-304.json b/BIPs/2023/2023-W21/BIP-304.json new file mode 100644 index 000000000..36d4e06aa --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-304.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684953719417, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8de81ea1281bba7edeec197cec8e4523a98a1631f4e4e5f4a60185d4cf231d33" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "rootGauge", + "type": "address" + } + ], + "name": "addArbitrumGauge", + "payable": false + }, + "contractInputsValues": { + "rootGauge": "0x8F7a0F9cf545DB78BF5120D3DBea7DE9c6220c10" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-304.report.txt b/BIPs/2023/2023-W21/BIP-304.report.txt new file mode 100644 index 000000000..f4aaf4ad5 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-304.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W21/BIP-304.json +COMMIT: 6c12bc920e13e41f497e4777a527bc190705c07d +``` ++------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +| addArbitrumGauge | 0xa231aea07bb5e79ae162f95903806fc5ad65ff1100020000000000000000043f | 50DFX-50WETH | 0xa231aEa07Bb5e79aE162f95903806FC5AD65fF11 | N/A | 0x8F7a0F9cf545DB78BF5120D3DBea7DE9c6220c10 | N/A | 2.0% | L0 sidechain | ++------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +``` diff --git a/BIPs/2023/2023-W21/BIP-305.json b/BIPs/2023/2023-W21/BIP-305.json new file mode 100644 index 000000000..50cb47277 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-305.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684954778685, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2b81cf6137c5c0b3db5822006c92a0ee5ee6efc614cb966d9afd9bd197e7428b" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6E7B9A1746a7eD4b23edFf0975B726E5aA673E21" + } + }, + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6F3b31296FD2457eba6Dca3BED65ec79e06c1295" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-305.report.txt b/BIPs/2023/2023-W21/BIP-305.report.txt new file mode 100644 index 000000000..10eb0de5c --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-305.report.txt @@ -0,0 +1,10 @@ +BIPs/2023-W21/BIP-305.json +COMMIT: 2f54780021b66795bafd2158a9fceabbe8d9632a +``` ++------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +| addEthereumGauge | 0x380aabe019ed2a9c2d632b51eddd30fd804d0fad000200000000000000000554 | 50R-50wstETH | 0x380aAbE019ed2a9C2d632b51eDDD30fd804d0fAD | N/A | 0x6E7B9A1746a7eD4b23edFf0975B726E5aA673E21 | 0.3% | 100.0% | mainnet | +| addEthereumGauge | 0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9000000000000000000000555 | R-DAI-BLP | 0x20a61B948E33879ce7F23e535CC7BAA3BC66c5a9 | 50 | 0x6F3b31296FD2457eba6Dca3BED65ec79e06c1295 | 0.05% | 100.0% | mainnet | ++------------------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W21/BIP-307.json b/BIPs/2023/2023-W21/BIP-307.json new file mode 100644 index 000000000..3adca7535 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-307.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684957650304, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf19beec945e6bdcb4fa3c5a5a0ee1e8f193e73851ebe8e333772bcf23c50fc5d" + }, + "transactions": [ + { + "to": "0x5efBb12F01f27F0E020565866effC1dA491E91A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IStakingLiquidityGauge", + "name": "gauge", + "type": "address" + } + ], + "name": "addEthereumGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-307.report.txt b/BIPs/2023/2023-W21/BIP-307.report.txt new file mode 100644 index 000000000..f6fc4b2e0 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-307.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W21/BIP-307.json +COMMIT: b5e84127ccacbad565857cab744d6948727ec759 +``` ++------------------+--------------------------------------------------------------------+---------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++------------------+--------------------------------------------------------------------+---------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| addEthereumGauge | 0xfcf77141908aa22bfeac216123c5feb2531f373e00000000000000000000054a | B-rETH-swETH-STABLE | 0xFCF77141908Aa22bfEAc216123C5FEb2531f373e | 100 | 0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05 | N/A | 100.0% | mainnet | ++------------------+--------------------------------------------------------------------+---------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W21/BIP-308 Arbitrum.json b/BIPs/2023/2023-W21/BIP-308 Arbitrum.json new file mode 100644 index 000000000..117e56127 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-308 Arbitrum.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1685030637891, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0xe320740af8ffcb3e8b5246b01b6a0a58699758387aeaea47f3e0ce8c91401e94" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xab668cacffdf6f785bcac395e15f5f5b4b109b0320004b24c7c39937e71d585c", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + }, + { + "to": "0x81cFAE226343B24BA12EC6521Db2C79E7aeeb310", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0x6B5dA774890Db7B7b96C6f44e6a4b0F657399E2e" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xab668cacffdf6f785bcac395e15f5f5b4b109b0320004b24c7c39937e71d585c", + "account": "0xaF23DC5983230E9eEAf93280e312e57539D098D0" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-308 gnosis.json b/BIPs/2023/2023-W21/BIP-308 gnosis.json new file mode 100644 index 000000000..7b97b2b87 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-308 gnosis.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1685030143889, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0xd5fe60c60ec3378209cef21e79661245300325245bff07442b230241b749ec9d" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x61d367fdef9a156d543288bab90410760d120019702b0559ffb08a3075aa7d42", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0x7A2535f5fB47b8e44c02Ef5D9990588313fe8F05", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x61d367fdef9a156d543288bab90410760d120019702b0559ffb08a3075aa7d42", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-308 mainnet.json b/BIPs/2023/2023-W21/BIP-308 mainnet.json new file mode 100644 index 000000000..aa593a754 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-308 mainnet.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685029585377, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa91f3b6ac5501d18d8c97d43f5e5709fa958e1493a097e17ae951b8245f2139a" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xaecef2a08acfa6437c6cad5d0aad2bd0172fec6050bd95d13aa5450c25aaa391", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x96484f2aBF5e58b15176dbF1A799627B53F13B6d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IOmniVotingEscrow", + "name": "omniVotingEscrow", + "type": "address" + } + ], + "name": "setOmniVotingEscrow", + "payable": false + }, + "contractInputsValues": { + "omniVotingEscrow": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xaecef2a08acfa6437c6cad5d0aad2bd0172fec6050bd95d13aa5450c25aaa391", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-308 optimism.json b/BIPs/2023/2023-W21/BIP-308 optimism.json new file mode 100644 index 000000000..0e246b569 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-308 optimism.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1685030814142, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "0x3019c446285c0451b33d3e9585b5f885e4a03d564f8ac4ab06279a5f0f4c5cde" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x17391f0660d4c41d3e09aeb10b8c06f82f48919ea50dbfe36aaed62ad681d8eb", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + }, + { + "to": "0x9dA18982a33FD0c7051B19F0d7C76F2d5E7e017c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x17391f0660d4c41d3e09aeb10b8c06f82f48919ea50dbfe36aaed62ad681d8eb", + "account": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-308 polygon.json b/BIPs/2023/2023-W21/BIP-308 polygon.json new file mode 100644 index 000000000..7d22c6646 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-308 polygon.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1685030457552, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0x9a446017f96aaa846113974eb72f55347a65b560afaff188ebdd32e6fc825792" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd2a18eaab6c28631d421edd953f276d757b0a3c5f5460535105596ed38d938d4", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + }, + { + "to": "0x0f08eEf2C785AA5e7539684aF04755dEC1347b7c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0xD961E30156C2E0D0d925A0De45f931CB7815e970" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd2a18eaab6c28631d421edd953f276d757b0a3c5f5460535105596ed38d938d4", + "account": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-309.json b/BIPs/2023/2023-W21/BIP-309.json new file mode 100644 index 000000000..520e634fc --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-309.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685044088683, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x3efc693781e340ac4ab2a266157b9be701c4785bce98caf2c39ff07cedbf1119" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3f63974a377ba4713661ede455bceda6686a0395f8b8ed8701ad1f13bb926c4d", + "account": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1b6c47bfcba58391eb7c8e74ea3c377e0d6c62825a6184d59c4478e225110fd4", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W21/BIP-310.json b/BIPs/2023/2023-W21/BIP-310.json new file mode 100644 index 000000000..e14fecae8 --- /dev/null +++ b/BIPs/2023/2023-W21/BIP-310.json @@ -0,0 +1,43 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685044678394, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xd89b25ba07cbfda3453e2f7e1ce923bb1d2f49be8f115238a5afa46c05d69695" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0000000000000000000000000000000000000000000000000000000000000000", + "account": "0x3f170631ed9821Ca51A59D996aB095162438DC10" + } + }, + { + "to": "0x3f170631ed9821Ca51A59D996aB095162438DC10", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "performNextStage", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2023/2023-W22/BIP-296B.json b/BIPs/2023/2023-W22/BIP-296B.json new file mode 100644 index 000000000..dedbf7069 --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-296B.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1684332469438, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x7306af67f2d3aae47f2341945a4be3b11cfac3052efbac9ae7e97c54406034da" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21D8dB8a46393FEdE4e91eAfBc0cCf092faCb469", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W22/BIP-296B.report.txt b/BIPs/2023/2023-W22/BIP-296B.report.txt new file mode 100644 index 000000000..682ddba36 --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-296B.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W22/BIP-296B.json +COMMIT: 05e43a7d09888aafe4276d0b09087a9c7d6f49cc +``` ++-------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | type | cap | style | ++-------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| killGauge() | 0x8a34b5ad76f528bfec06c80d85ef3b53da7fc30000020000000000000000043e | B-ankrETH-WETH-Stable | 0x8A34b5ad76F528bfEc06c80D85EF3b53dA7FC300 | 50 | 0x21D8dB8a46393FEdE4e91eAfBc0cCf092faCb469 | NA | 100.0% | mainnet | ++-------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W22/BIP-311.json b/BIPs/2023/2023-W22/BIP-311.json new file mode 100644 index 000000000..52bd0a212 --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-311.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685560470024, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xc2e43e971ca4301e2e6eab0d37a38fff36f6a95f2086614260067a7b01a5cb9b" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W22/BIP-311.report.txt b/BIPs/2023/2023-W22/BIP-311.report.txt new file mode 100644 index 000000000..508e168cb --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-311.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W22/BIP-311.json +COMMIT: 3cb9decf5db62edf321ab25d25bbdd0cc67a3e09 +``` ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +| addGauge | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | ankrETH/wstETH | 0xdfE6e7e18f6Cc65FA13C8D8966013d4FdA74b6ba | 100 | 0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648 | 0.04% | 100.0% | mainnet | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W22/BIP-312.json b/BIPs/2023/2023-W22/BIP-312.json new file mode 100644 index 000000000..4ef4cdd4d --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-312.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685561459002, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x82c3a243687e18a8b2adfba68e407104ed032bcf9b4ed5dfc5e491f16b692b5e" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6bb341db03eede206e544c654a59ef89eea83bc65fada2cfeeaf18c5c0f76ac0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x83E443EF4f9963C77bd860f94500075556668cb8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "localUser", + "type": "address" + }, + { + "internalType": "address", + "name": "delegate", + "type": "address" + } + ], + "name": "setNetworkRemappingManager", + "payable": false + }, + "contractInputsValues": { + "localUser": "0xaF52695E1bB01A16D33D7194C28C42b10e0Dbec2", + "delegate": "0x5feA4413E3Cc5Cf3A29a49dB41ac0c24850417a0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6bb341db03eede206e544c654a59ef89eea83bc65fada2cfeeaf18c5c0f76ac0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/2023-W22/BIP-313.json b/BIPs/2023/2023-W22/BIP-313.json new file mode 100644 index 000000000..13bd5738d --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-313.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685563154738, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2373d02b5be1302149a35a0bf71364d6c42452db1bd111cbec63bd003d3f6ed1" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf8C85bd74FeE26831336B51A90587145391a27Ba", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc61e7E858b5a60122607f5C7DF223a53b01a1389", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2023/2023-W22/BIP-313.report.txt b/BIPs/2023/2023-W22/BIP-313.report.txt new file mode 100644 index 000000000..a5c3d5e3a --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-313.report.txt @@ -0,0 +1,11 @@ +BIPs/2023-W22/BIP-313.json +COMMIT: cc322299dcca772645d004a1004ae3690ef18cc0 +``` ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| addGauge | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | bb-WETH-wstETH | 0xbAd20c15A773bf03ab973302F61FAbceA5101f0A | 100 | 0xf8C85bd74FeE26831336B51A90587145391a27Ba | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0x5c78d05b8ecf97507d1cf70646082c54faa4da95000000000000000000000030 | bb-agEUR-EURe | 0x5C78d05b8ECF97507d1cf70646082c54FaA4dA95 | 100 | 0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0x21d4c792ea7e38e0d0819c2011a2b1cb7252bd9900020000000000000000001e | 50COW-50GNO | 0x21d4c792Ea7E38e0D0819c2011A2b1Cb7252Bd99 | N/A | 0xc61e7E858b5a60122607f5C7DF223a53b01a1389 | 0.5% | 2.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +``` \ No newline at end of file diff --git a/BIPs/2023/2023-W22/BIP-315.json b/BIPs/2023/2023-W22/BIP-315.json new file mode 100644 index 000000000..baecb15eb --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-315.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685636319821, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe0a2a3143ed114acf0885ab3f17ca9072fb545d6c5540b4331606075663a6309" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151,0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGaugeType", + "payable": false + }, + "contractInputsValues": { "gaugeType": "EthereumSingleRecipientGauge" } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968", + "gaugeType": "EthereumSingleRecipientGauge" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/2023-W22/BIP-316a.json b/BIPs/2023/2023-W22/BIP-316a.json new file mode 100644 index 000000000..dbfbecaf2 --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-316a.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685637015445, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x42a37d051065adb6e4cec16efe5aed4ec97a9a5e36eb1624ec330941b3595bbf" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE867AD0a48e8f815DC0cda2CDb275e0F163A480b", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W22/BIP-316b.json b/BIPs/2023/2023-W22/BIP-316b.json new file mode 100644 index 000000000..d92b011ec --- /dev/null +++ b/BIPs/2023/2023-W22/BIP-316b.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685637126103, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0ac587541b6f87123cb0605cdd54f7e2e0c1c8fc3ad28432262ae655ae65e2b4" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb78543e00712C3ABBA10D0852f6E38FDE2AaBA4d", + "gaugeType": "EthereumSingleRecipientGauge" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-313A.json b/BIPs/2023/2023-W23/BIP-313A.json new file mode 100644 index 000000000..dadc142d7 --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-313A.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683059537415, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "15000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-317.json b/BIPs/2023/2023-W23/BIP-317.json new file mode 100644 index 000000000..4163ba442 --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-317.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686162110700, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x85be93adbfb45829ed8be02e9cb1460ef589d44580bd79ca065ad10bb88e2ede" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD449Efa0A587f2cb6BE3AE577Bc167a774525810", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-317.report.txt b/BIPs/2023/2023-W23/BIP-317.report.txt new file mode 100644 index 000000000..8b9d33714 --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-317.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W23/BIP-317.json +COMMIT: 64678070e13d5e987ae7c1811cb84965aa8b4d2e +``` ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+------+---------+ +| addGauge | 0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d000000000000000000000051b | B-baoETH-ETH-BPT | 0x1A44E35d5451E0b78621A1B3e7a53DFaA306B1D0 | 200 | 0xD449Efa0A587f2cb6BE3AE577Bc167a774525810 | 0.04% | 2.0% | mainnet | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+------+---------+ +``` diff --git a/BIPs/2023/2023-W23/BIP-318/BIP-318.md b/BIPs/2023/2023-W23/BIP-318/BIP-318.md new file mode 100644 index 000000000..7f6896ebc --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/BIP-318.md @@ -0,0 +1,72 @@ +## [Payload PR - BIP-318](https://github.com/BalancerMaxis/multisig-ops/pull/246) + +## Background +Talk about the background of this BIP here +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W23/BIP-318) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W23/BIP-318/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W23/BIP-318/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W23/BIP-318/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W23/BIP-318/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W23/BIP-318/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W23/BIP-318/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-deployments](https://github.com/balancer/balancer-deployments/tree/master/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W23/BIP-318/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:----------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | avalanche | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20220725-protocol-fee-percentages-provider | avalanche | setFeeTypePercentage(uint256,uint256) | 0xf966da38fb72cb10be01d2ff406b1aeb9cdc62f757d0042e6ff6249f196221a1 | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | +| 20210418-vault | avalanche | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x239e55F427D44C3cc793f49bFB507ebe76638a2b | +| 20210418-vault | avalanche | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x239e55F427D44C3cc793f49bFB507ebe76638a2b | +| 20230409-erc4626-linear-pool-v4 | avalanche | disable() | 0x7c86cd148d8db45c3b501ebc46765f768002a524cfb99123f8f21c719f62e38c | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | enableRecoveryMode() | 0xa2685f4f3b3ddc4fd9c791acbb59d64abb16a8597f810c7154b1b9b5a6c3b5a9 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | pause() | 0xeefb035cba9a13afe91cf64ecc5036868aa5cc5340cd7c5017def2049ac0b0ba | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | disable() | 0x627a2e247176a7cc72374908eeb1ee97159879e68e9a4dbce0144199d17c8a69 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | enableRecoveryMode() | 0x58bc56d9b84cb2e4efd84f56c7763228f92c6b4714a2cbe10c252384c8b5aa9f | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | pause() | 0x0c17c4a98fd69c4f4acbe101409c122417155d8b138eb16bdbdffe541de0355d | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230411-managed-pool-v2 | avalanche | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230411-managed-pool-v2 | avalanche | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230411-managed-pool-v2 | avalanche | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20210418-vault | avalanche | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20220517-protocol-fee-withdrawer | avalanche | denylistToken(address) | 0xf3eadfc5e658bb5d9308d4d7d2b30766bd48e5db7a3637a92428d39fb6b97645 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | setSwapFeePercentage(uint256) | 0x6103010ac84a79eba6f8385214ddd4e50f4d1e8a2210023cfdf373b4bae5450c | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230409-erc4626-linear-pool-v4 | avalanche | setTargets(uint256,uint256) | 0x94e7c43729e6cb635126e5a736eaa1db1ee39400b329e3d1d9a9dda175f52b1f | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230410-aave-linear-pool-v5 | avalanche | setSwapFeePercentage(uint256) | 0x46d03ee209073be69d372d41f744c1529b277254f22efebde5fbc8d6038e3bde | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230410-aave-linear-pool-v5 | avalanche | setTargets(uint256,uint256) | 0xa194a38f094d72bf8e03dde416d3522afc065785e96948ad893a514dcadfc401 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230316-child-chain-gauge-factory-v2 | avalanche | add_reward(address,address) | 0xde6b942f89e9060258ffab001fdc0f8f8586641c2f0aa6a47ab427260a470059 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20220517-protocol-fee-withdrawer | avalanche | withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20221123-pool-recovery-helper | avalanche | addPoolFactory(address) | 0x90ce8036a67bbe2451d4f50ab7353343339db901728ae2de09928006819ee686 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20221123-pool-recovery-helper | avalanche | removePoolFactory(address) | 0x25cbdd96392463c2c0b1e5a2db364a18327ef561b6ceeb4a444b694dbf2c7890 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230409-erc4626-linear-pool-v4 | avalanche | enableRecoveryMode() | 0xa2685f4f3b3ddc4fd9c791acbb59d64abb16a8597f810c7154b1b9b5a6c3b5a9 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230410-aave-linear-pool-v5 | avalanche | enableRecoveryMode() | 0x58bc56d9b84cb2e4efd84f56c7763228f92c6b4714a2cbe10c252384c8b5aa9f | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230411-managed-pool-v2 | avalanche | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20210418-vault | avalanche | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/2023/2023-W23/BIP-318/BIP-XXXA.json b/BIPs/2023/2023-W23/BIP-318/BIP-XXXA.json new file mode 100644 index 000000000..e342865a3 --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/BIP-XXXA.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1686067971268, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0x59381d53c574f2657107abe890b25a810d77cb46b581386c7fe77535cc956861" + }, + "transactions": [ + { + "to": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-318/BIP-XXXB.json b/BIPs/2023/2023-W23/BIP-318/BIP-XXXB.json new file mode 100644 index 000000000..def5f64a0 --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/BIP-XXXB.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1686068663750, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0x01048d1c790c6db6c7895fdf16f9fcc502ee906857b307aed2247177f9948769" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xb6da886ea1e01af4eeb5ab12c50050346b2216644901051e344fa47cb3f03dce", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + }, + { + "to": "0xEa924b45a3fcDAAdf4E5cFB1665823B8F8F2039B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x161f4014C27773840ccb4EC1957113e6DD028846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xb6da886ea1e01af4eeb5ab12c50050346b2216644901051e344fa47cb3f03dce", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-318/BIP-XXXC.json b/BIPs/2023/2023-W23/BIP-318/BIP-XXXC.json new file mode 100644 index 000000000..093a2e62c --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/BIP-XXXC.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1686068946662, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0xeab75e48deff14b80dee97f3e36117ad773a19fea0bfcee5b957428e6a610603" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x8df317a729fcaA260306d7de28888932cb579b88" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-318/BIP-XXXD.json b/BIPs/2023/2023-W23/BIP-318/BIP-XXXD.json new file mode 100644 index 000000000..5f60e8b4b --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/BIP-XXXD.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686069385468, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xece5c8de9af92ee1e80550527facae514508e6ba4ddbc7bbfb17c4639af389b5" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151,0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGaugeType", + "payable": false + }, + "contractInputsValues": { "gaugeType": "Avalanche" } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x10f3e79911A490aa5B5D5CDA6F111029c4Eab5AC", + "gaugeType": "Avalanche" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-318/README.md b/BIPs/2023/2023-W23/BIP-318/README.md new file mode 100644 index 000000000..fc24dd58f --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/README.md @@ -0,0 +1 @@ +[See Here](BIP-318.md) for the governance contents. diff --git a/BIPs/2023/2023-W23/BIP-318/avalanche.json b/BIPs/2023/2023-W23/BIP-318/avalanche.json new file mode 100644 index 000000000..3cd4e1cce --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/avalanche.json @@ -0,0 +1,135 @@ +{ + "version": "1.0", + "chainId": 43114, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7c86cd148d8db45c3b501ebc46765f768002a524cfb99123f8f21c719f62e38c, 0xa2685f4f3b3ddc4fd9c791acbb59d64abb16a8597f810c7154b1b9b5a6c3b5a9, 0xeefb035cba9a13afe91cf64ecc5036868aa5cc5340cd7c5017def2049ac0b0ba, 0x627a2e247176a7cc72374908eeb1ee97159879e68e9a4dbce0144199d17c8a69, 0x58bc56d9b84cb2e4efd84f56c7763228f92c6b4714a2cbe10c252384c8b5aa9f, 0x0c17c4a98fd69c4f4acbe101409c122417155d8b138eb16bdbdffe541de0355d, 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12, 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xf3eadfc5e658bb5d9308d4d7d2b30766bd48e5db7a3637a92428d39fb6b97645]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa2685f4f3b3ddc4fd9c791acbb59d64abb16a8597f810c7154b1b9b5a6c3b5a9, 0x58bc56d9b84cb2e4efd84f56c7763228f92c6b4714a2cbe10c252384c8b5aa9f, 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86]", + "account": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6103010ac84a79eba6f8385214ddd4e50f4d1e8a2210023cfdf373b4bae5450c, 0x94e7c43729e6cb635126e5a736eaa1db1ee39400b329e3d1d9a9dda175f52b1f, 0x46d03ee209073be69d372d41f744c1529b277254f22efebde5fbc8d6038e3bde, 0xa194a38f094d72bf8e03dde416d3522afc065785e96948ad893a514dcadfc401, 0xde6b942f89e9060258ffab001fdc0f8f8586641c2f0aa6a47ab427260a470059, 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42, 0x90ce8036a67bbe2451d4f50ab7353343339db901728ae2de09928006819ee686, 0x25cbdd96392463c2c0b1e5a2db364a18327ef561b6ceeb4a444b694dbf2c7890]", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xf966da38fb72cb10be01d2ff406b1aeb9cdc62f757d0042e6ff6249f196221a1]", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-318/function_descriptions.md b/BIPs/2023/2023-W23/BIP-318/function_descriptions.md new file mode 100644 index 000000000..bfcd3c494 --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/function_descriptions.md @@ -0,0 +1,22 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| setTargets(uint256,uint256) | Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens. | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setPaused(bool) | Stops all trading activity involving the vault | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setFlashLoanFeePercentage(uint256) | Sets the protocol fee charged on flash loans for this deployment | +| withdrawCollectedFees(address[],uint256[],address) | Allows the withdrawal of collected protocol fees | +| setFeeTypePercentage(uint256,uint256) | Sets the protocol fee for a particular fee type for this deployment | +| add_reward(address,address) | Allows adding of an external reward token to gauges. | +| denylistToken(address) | Adds a token to the ProtocolFeeWithdrawer deny list which prevents the withdrawal of that token from the ProtocolFeeCollector | +| addPoolFactory(address) | Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| removePoolFactory(address) | Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | diff --git a/BIPs/2023/2023-W23/BIP-318/inputs.json b/BIPs/2023/2023-W23/BIP-318/inputs.json new file mode 100644 index 000000000..ac66c5a26 --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/inputs.json @@ -0,0 +1,113 @@ +[ + { + "chain_map": { + "avalanche": 43114 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + }, + "deployments": [ + "20230206-weighted-pool-v4", + "20230206-composable-stable-pool-v4", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2", + "20230410-silo-linear-pool-v2" + ] + }, + { + "chain_map": { + "avalanche": 43114 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + }, + "deployments": ["20210418-vault"] + }, + { + "chain_map": { + "avalanche": 43114 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "avalanche": 43114 + }, + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "avalanche": 43114 + }, + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "avalanche": 43114 + }, + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/lm"], + "addPoolFactory(address)": ["multisigs/lm"] + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "avalanche": 43114 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + }, + "deployments": ["20230223-protocol-id-registry"] + } +] diff --git a/BIPs/2023/2023-W23/BIP-318/results_address_sorted.md b/BIPs/2023/2023-W23/BIP-318/results_address_sorted.md new file mode 100644 index 000000000..93ca48bec --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/results_address_sorted.md @@ -0,0 +1,34 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:----------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | avalanche | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20220725-protocol-fee-percentages-provider | avalanche | setFeeTypePercentage(uint256,uint256) | 0xf966da38fb72cb10be01d2ff406b1aeb9cdc62f757d0042e6ff6249f196221a1 | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | +| 20210418-vault | avalanche | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x239e55F427D44C3cc793f49bFB507ebe76638a2b | +| 20210418-vault | avalanche | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x239e55F427D44C3cc793f49bFB507ebe76638a2b | +| 20230409-erc4626-linear-pool-v4 | avalanche | disable() | 0x7c86cd148d8db45c3b501ebc46765f768002a524cfb99123f8f21c719f62e38c | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | enableRecoveryMode() | 0xa2685f4f3b3ddc4fd9c791acbb59d64abb16a8597f810c7154b1b9b5a6c3b5a9 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | pause() | 0xeefb035cba9a13afe91cf64ecc5036868aa5cc5340cd7c5017def2049ac0b0ba | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | disable() | 0x627a2e247176a7cc72374908eeb1ee97159879e68e9a4dbce0144199d17c8a69 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | enableRecoveryMode() | 0x58bc56d9b84cb2e4efd84f56c7763228f92c6b4714a2cbe10c252384c8b5aa9f | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | pause() | 0x0c17c4a98fd69c4f4acbe101409c122417155d8b138eb16bdbdffe541de0355d | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230411-managed-pool-v2 | avalanche | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230411-managed-pool-v2 | avalanche | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230411-managed-pool-v2 | avalanche | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20210418-vault | avalanche | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20220517-protocol-fee-withdrawer | avalanche | denylistToken(address) | 0xf3eadfc5e658bb5d9308d4d7d2b30766bd48e5db7a3637a92428d39fb6b97645 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | setSwapFeePercentage(uint256) | 0x6103010ac84a79eba6f8385214ddd4e50f4d1e8a2210023cfdf373b4bae5450c | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230409-erc4626-linear-pool-v4 | avalanche | setTargets(uint256,uint256) | 0x94e7c43729e6cb635126e5a736eaa1db1ee39400b329e3d1d9a9dda175f52b1f | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230410-aave-linear-pool-v5 | avalanche | setSwapFeePercentage(uint256) | 0x46d03ee209073be69d372d41f744c1529b277254f22efebde5fbc8d6038e3bde | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230410-aave-linear-pool-v5 | avalanche | setTargets(uint256,uint256) | 0xa194a38f094d72bf8e03dde416d3522afc065785e96948ad893a514dcadfc401 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230316-child-chain-gauge-factory-v2 | avalanche | add_reward(address,address) | 0xde6b942f89e9060258ffab001fdc0f8f8586641c2f0aa6a47ab427260a470059 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20220517-protocol-fee-withdrawer | avalanche | withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20221123-pool-recovery-helper | avalanche | addPoolFactory(address) | 0x90ce8036a67bbe2451d4f50ab7353343339db901728ae2de09928006819ee686 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20221123-pool-recovery-helper | avalanche | removePoolFactory(address) | 0x25cbdd96392463c2c0b1e5a2db364a18327ef561b6ceeb4a444b694dbf2c7890 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230409-erc4626-linear-pool-v4 | avalanche | enableRecoveryMode() | 0xa2685f4f3b3ddc4fd9c791acbb59d64abb16a8597f810c7154b1b9b5a6c3b5a9 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230410-aave-linear-pool-v5 | avalanche | enableRecoveryMode() | 0x58bc56d9b84cb2e4efd84f56c7763228f92c6b4714a2cbe10c252384c8b5aa9f | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230411-managed-pool-v2 | avalanche | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20210418-vault | avalanche | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 | \ No newline at end of file diff --git a/BIPs/2023/2023-W23/BIP-318/results_deployment_sorted.md b/BIPs/2023/2023-W23/BIP-318/results_deployment_sorted.md new file mode 100644 index 000000000..4354d3300 --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-318/results_deployment_sorted.md @@ -0,0 +1,34 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:----------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | avalanche | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x239e55F427D44C3cc793f49bFB507ebe76638a2b | +| 20210418-vault | avalanche | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20210418-vault | avalanche | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x239e55F427D44C3cc793f49bFB507ebe76638a2b | +| 20210418-vault | avalanche | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9 | +| 20210418-vault | avalanche | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 | +| 20220517-protocol-fee-withdrawer | avalanche | denylistToken(address) | 0xf3eadfc5e658bb5d9308d4d7d2b30766bd48e5db7a3637a92428d39fb6b97645 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20220517-protocol-fee-withdrawer | avalanche | withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20220725-protocol-fee-percentages-provider | avalanche | setFeeTypePercentage(uint256,uint256) | 0xf966da38fb72cb10be01d2ff406b1aeb9cdc62f757d0042e6ff6249f196221a1 | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | +| 20221123-pool-recovery-helper | avalanche | addPoolFactory(address) | 0x90ce8036a67bbe2451d4f50ab7353343339db901728ae2de09928006819ee686 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20221123-pool-recovery-helper | avalanche | removePoolFactory(address) | 0x25cbdd96392463c2c0b1e5a2db364a18327ef561b6ceeb4a444b694dbf2c7890 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230316-child-chain-gauge-factory-v2 | avalanche | add_reward(address,address) | 0xde6b942f89e9060258ffab001fdc0f8f8586641c2f0aa6a47ab427260a470059 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230409-erc4626-linear-pool-v4 | avalanche | disable() | 0x7c86cd148d8db45c3b501ebc46765f768002a524cfb99123f8f21c719f62e38c | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | enableRecoveryMode() | 0xa2685f4f3b3ddc4fd9c791acbb59d64abb16a8597f810c7154b1b9b5a6c3b5a9 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | enableRecoveryMode() | 0xa2685f4f3b3ddc4fd9c791acbb59d64abb16a8597f810c7154b1b9b5a6c3b5a9 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | pause() | 0xeefb035cba9a13afe91cf64ecc5036868aa5cc5340cd7c5017def2049ac0b0ba | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230409-erc4626-linear-pool-v4 | avalanche | setSwapFeePercentage(uint256) | 0x6103010ac84a79eba6f8385214ddd4e50f4d1e8a2210023cfdf373b4bae5450c | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230409-erc4626-linear-pool-v4 | avalanche | setTargets(uint256,uint256) | 0x94e7c43729e6cb635126e5a736eaa1db1ee39400b329e3d1d9a9dda175f52b1f | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230410-aave-linear-pool-v5 | avalanche | disable() | 0x627a2e247176a7cc72374908eeb1ee97159879e68e9a4dbce0144199d17c8a69 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | enableRecoveryMode() | 0x58bc56d9b84cb2e4efd84f56c7763228f92c6b4714a2cbe10c252384c8b5aa9f | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | enableRecoveryMode() | 0x58bc56d9b84cb2e4efd84f56c7763228f92c6b4714a2cbe10c252384c8b5aa9f | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230410-aave-linear-pool-v5 | avalanche | pause() | 0x0c17c4a98fd69c4f4acbe101409c122417155d8b138eb16bdbdffe541de0355d | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230410-aave-linear-pool-v5 | avalanche | setSwapFeePercentage(uint256) | 0x46d03ee209073be69d372d41f744c1529b277254f22efebde5fbc8d6038e3bde | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230410-aave-linear-pool-v5 | avalanche | setTargets(uint256,uint256) | 0xa194a38f094d72bf8e03dde416d3522afc065785e96948ad893a514dcadfc401 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230411-managed-pool-v2 | avalanche | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230411-managed-pool-v2 | avalanche | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230411-managed-pool-v2 | avalanche | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230411-managed-pool-v2 | avalanche | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | \ No newline at end of file diff --git a/BIPs/2023/2023-W23/BIP-320.json b/BIPs/2023/2023-W23/BIP-320.json new file mode 100644 index 000000000..fa3bc13ad --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-320.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686162773644, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x05f7dbe7dc4a58997f61785d1cf2e3b63260a26e0f484939de7c781539eaf19b" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd758454BDF4Df7Ad85f7538DC9742648EF8e6d0A", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-320.report.txt b/BIPs/2023/2023-W23/BIP-320.report.txt new file mode 100644 index 000000000..16337b40e --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-320.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W23/BIP-320.json +COMMIT: a3dbd8b2339ae55faafec816f0dca5b2b1457f47 +``` ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +| addGauge | 0x8d333f82e0693f53fa48c40d5d4547142e907e1d000200000000000000000437 | 80PAL-20OHM | 0x8d333f82e0693f53fA48c40d5D4547142E907e1D | N/A | 0xd758454BDF4Df7Ad85f7538DC9742648EF8e6d0A | 1.0% | 2.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +``` \ No newline at end of file diff --git a/BIPs/2023/2023-W23/BIP-321.json b/BIPs/2023/2023-W23/BIP-321.json new file mode 100644 index 000000000..0c0de673d --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-321.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686162984566, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xaa0e920dc658aca281bfd140c60d086bfca6330f2e39248414c8930ae30e3c85" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd8191A3496a1520c2B5C81D04B26F8556Fc62d7b", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W23/BIP-321.report.txt b/BIPs/2023/2023-W23/BIP-321.report.txt new file mode 100644 index 000000000..42947c24b --- /dev/null +++ b/BIPs/2023/2023-W23/BIP-321.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W23/BIP-321.json +COMMIT: 9f19b88bd24aef1e74a1d99155656c5a6dcb6e65 +``` ++----------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| addGauge | 0x18fdf15ff782e44c1f9b6c5846ff6b0f0004f6a2000200000000000000000560 | 50OHM-50LUSD | 0x18FDf15ff782e44C1f9B6C5846ff6B0F0004F6a2 | N/A | 0xd8191A3496a1520c2B5C81D04B26F8556Fc62d7b | 0.3% | 100.0% | mainnet | ++----------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W24/BIP-323optimism.json b/BIPs/2023/2023-W24/BIP-323optimism.json new file mode 100644 index 000000000..b716799f0 --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-323optimism.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1686334965703, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "0x2dace2170d930f2345fed503d8b3586b351c78839a8fb15d34ef63fa62980e03" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6", + "account": "0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-323polygon.json b/BIPs/2023/2023-W24/BIP-323polygon.json new file mode 100644 index 000000000..9b3a0d6f3 --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-323polygon.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1686335026383, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0xb7ebb391dde5d86d77f0c5dd7853b408bbb69dfb64fa9b676a1e22513cb8a096" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13", + "account": "0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-324avalanche.json b/BIPs/2023/2023-W24/BIP-324avalanche.json new file mode 100644 index 000000000..8ebefe80e --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-324avalanche.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1686335829339, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0xdd7ed9d53cb0397e0003015460cb4b0a126c31f31cd6f1bb3bc2e4eb08773fc4" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xa1d71cc301546175f03bda02d1a4397c439df4116db7639596bf3b897a6a5293", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + }, + { + "to": "0x0c6052254551EAe3ECac77B01DFcf1025418828f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xa1d71cc301546175f03bda02d1a4397c439df4116db7639596bf3b897a6a5293", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-324zkevm.json b/BIPs/2023/2023-W24/BIP-324zkevm.json new file mode 100644 index 000000000..da86adc77 --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-324zkevm.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1686335711515, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0xced05b506c5610b46a7da853bf956f59c89c42a453f0788d9575d87f78111ef0" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe1a833117678417df5b0aeb8002f897e410d84f7a8f1906e355a97151a3f38a9", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe1a833117678417df5b0aeb8002f897e410d84f7a8f1906e355a97151a3f38a9", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-326.json b/BIPs/2023/2023-W24/BIP-326.json new file mode 100644 index 000000000..f6fcc6bab --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-326.json @@ -0,0 +1,253 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685637015445, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x42a37d051065adb6e4cec16efe5aed4ec97a9a5e36eb1624ec330941b3595bbf" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9AB7B0C7b154f626451c9e8a68dC04f58fb6e5Ce", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4E3c048BE671852277Ad6ce29Fd5207aA12fabff", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4ca6AC0509E6381Ca7CD872a6cdC0Fbf00600Fa1", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xDD4Db3ff8A37FE418dB6FF34fC316655528B6bbC", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x36365dA262dB3965Ba2E1C4411409Bf22508e0A1", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe9866B9dc2c1213433f614CbB22EdAA0FAFF9a66", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x260779495dA7Ce3A76b44F5C994cD18EBDa8177f", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf460C9A5D00ef665F12Ee9634983A2b799dA5317", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2cc5BebcFdAAD20f2a608EC153d1C7BED66EeEC3", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc534C30749b6C198D35a7836E26076E7745D8936", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x91A75880b07d36672f5C8DFE0F2334f086e29D47", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5F4d57fd9Ca75625e4B7520c71c02948A48595d0", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-326.report.txt b/BIPs/2023/2023-W24/BIP-326.report.txt new file mode 100644 index 000000000..c1834e2e6 --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-326.report.txt @@ -0,0 +1,22 @@ +BIPs/2023-W24/BIP-326.json +COMMIT: custom +``` ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| killGauge() | 0x03cd191f589d12b0582a99808cf19851e468e6b500010000000000000000000a | BPTC | 0x03cD191F589d12b0582a99808cf19851E468E6B5 | N/A | 0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1 | 0.25% | 100.0% | L0 sidechain | +| killGauge() | 0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019 | B-50USDC-50WETH | 0x96646936b91d6B9D7D0c47C496AfBF3D6ec7B6f8 | N/A | 0x9AB7B0C7b154f626451c9e8a68dC04f58fb6e5Ce | 0.3% | N/A% | mainnet | +| killGauge() | 0xa6f548df93de924d73be7d25dc02554c6bd66db500020000000000000000000e | B-50WBTC-50WETH | 0xA6F548DF93de924d73be7D25dC02554c6bD66dB5 | N/A | 0x4E3c048BE671852277Ad6ce29Fd5207aA12fabff | 0.25% | N/A% | mainnet | +| killGauge() | 0x0b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a | B-60WETH-40DAI | 0x0b09deA16768f0799065C475bE02919503cB2a35 | N/A | 0x4ca6AC0509E6381Ca7CD872a6cdC0Fbf00600Fa1 | 0.05% | N/A% | mainnet | +| killGauge() | 0x178e029173417b1f9c8bc16dcec6f697bc32374600000000000000000000025d | FUD | 0x178E029173417b1F9C8bC16DCeC6f697bC323746 | 200 | 0xDD4Db3ff8A37FE418dB6FF34fC316655528B6bbC | 0.01% | N/A% | mainnet | +| killGauge() | 0x15c1cdacd3da1e1c1304200b1beb080d50bbbc0f00020000000000000000045f | 50TRYB-50USDC | 0x15C1cDAcd3dA1E1C1304200b1bEb080D50BbBc0F | N/A | 0x36365dA262dB3965Ba2E1C4411409Bf22508e0A1 | 0.1% | 2.0% | mainnet | +| killGauge() | 0x831261f44931b7da8ba0dcc547223c60bb75b47f000200000000000000000460 | B-wUSDR-STABLE | 0x831261f44931B7dA8ba0DcC547223c60BB75B47F | 100 | 0xe9866B9dc2c1213433f614CbB22EdAA0FAFF9a66 | 0.04% | 2.0% | mainnet | +| killGauge() | 0x519cce718fcd11ac09194cff4517f12d263be067000000000000000000000382 | BPT-USD+ | 0x519cCe718FCD11AC09194CFf4517F12D263BE067 | 570 | 0x260779495dA7Ce3A76b44F5C994cD18EBDa8177f | 0.01% | 100.0% | L0 sidechain | +| killGauge() | 0x64541216bafffeec8ea535bb71fbc927831d0595000100000000000000000002 | B-33WETH-33WBTC-33USDC | 0x64541216bAFFFEec8ea535BB71Fbc927831d0595 | N/A | 0xf460C9A5D00ef665F12Ee9634983A2b799dA5317 | 0.25% | 100.0% | L0 sidechain | +| killGauge() | 0x9f9f548354b7c66dc9a9f3373077d86aaaccf8f2000200000000000000000a4a | 20USDC-80TNGBL | 0x9F9F548354B7C66Dc9a9f3373077D86AAACCF8F2 | N/A | 0x2cc5BebcFdAAD20f2a608EC153d1C7BED66EeEC3 | 0.3% | 2.0% | L0 sidechain | +| killGauge() | 0x34a81e8956bf20b7448b31990a2c06f96830a6e4000200000000000000000a14 | B-wUSDR-STABLE | 0x34A81e8956BF20b7448b31990A2c06F96830a6e4 | 100 | 0xc534C30749b6C198D35a7836E26076E7745D8936 | 0.04% | 2.0% | L0 sidechain | +| killGauge() | 0x0297e37f1873d2dab4487aa67cd56b58e2f27875000100000000000000000002 | B-POLYBASE | 0x0297e37f1873D2DAb4487Aa67cD56B58E2F27875 | N/A | 0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A | 0.25% | 100.0% | L0 sidechain | +| killGauge() | 0xf3aeb3abba741f0eece8a1b1d2f11b85899951cb000200000000000000000351 | MAI-USDC-SP | 0xf3AeB3aBbA741f0EEcE8a1B1D2F11b85899951CB | 500 | 0x91A75880b07d36672f5C8DFE0F2334f086e29D47 | 0.05% | N/A% | mainnet | +| killGauge() | 0x186084ff790c65088ba694df11758fae4943ee9e000200000000000000000013 | B-50WETH-50YFI | 0x186084fF790C65088BA694Df11758faE4943EE9E | N/A | 0x5F4d57fd9Ca75625e4B7520c71c02948A48595d0 | 0.75% | N/A% | mainnet | ++-------------+--------------------------------------------------------------------+------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +``` diff --git a/BIPs/2023/2023-W24/BIP-327.json b/BIPs/2023/2023-W24/BIP-327.json new file mode 100644 index 000000000..9367cca39 --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-327.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686767062441, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0524ed9ce075c61a085613acf2ce47a63633ed90b6d63e2a40f7e3de4fc05c81" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-327.report.txt b/BIPs/2023/2023-W24/BIP-327.report.txt new file mode 100644 index 000000000..6158ef047 --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-327.report.txt @@ -0,0 +1,9 @@ +File name: BIPs/2023-W24/BIP-327.json +COMMIT: `a006d001d463ba93c23e6904ef88db5daacfb8e7` +``` ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+---------+ +| addGauge | 0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb200000000000000000000056a | rETH/bbaWETH BPT | 0x481C5fc05D63a58AA2f0F2aA417C021B5d419cB2 | 500 | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | 0.0001% | 100.0% | Mainnet | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W24/BIP-328.json b/BIPs/2023/2023-W24/BIP-328.json new file mode 100644 index 000000000..8a48b0deb --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-328.json @@ -0,0 +1,165 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686767427089, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xdf2f267dc194ee735056014a2e6ea6158129b04752f3c2a04fac01ff6e9c5006" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x54f220a891f468629027C3Cc8A58722D4F576402", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xce99399fb4De36056A6831b159572E271360ea40", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF7d515DC47d5BD57786494628ed766d6bF31cd39", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7949426d750FEFC25754F149B2FB446B60c39387", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc85679E41f1F98E694D9F8983fdD484F98F2eB02", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58", + "gaugeType": "PolygonZkEvm" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-328.report.txt b/BIPs/2023/2023-W24/BIP-328.report.txt new file mode 100644 index 000000000..c1d13999f --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-328.report.txt @@ -0,0 +1,14 @@ +File name: BIPs/2023-W24/BIP-328.json +COMMIT: `37c179a742e56cc0024cf5ce65f200140455d18a` +``` ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+ +| addGauge | 0x1d0a8a31cdb04efac3153237526fb15cc65a252000000000000000000000000f | B-rETH-STABLE | 0x1d0A8a31CDb04efAC3153237526Fb15cc65A2520 | 500 | 0x54f220a891f468629027C3Cc8A58722D4F576402 | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0xe1f2c039a68a216de6dd427be6c60decf405762a00000000000000000000000e | B-wstETH-STABLE | 0xe1F2c039a68A216dE6DD427Be6c60dEcf405762A | 1500 | 0xce99399fb4De36056A6831b159572E271360ea40 | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0xdf725fde6e89981fb30d9bf999841ac2c160b512000000000000000000000010 | B-wstETH/rETH-STABLE | 0xDF725FdE6E89981Fb30D9bF999841aC2C160b512 | 1500 | 0xF7d515DC47d5BD57786494628ed766d6bF31cd39 | 0.01% | 100.0% | L0 sidechain | +| addGauge | 0x6f34a44fce1506352a171232163e7716dd073ade000200000000000000000015 | B-rETH-bboUSD | 0x6F34a44FCe1506352A171232163E7716Dd073ade | N/A | 0x7949426d750FEFC25754F149B2FB446B60c39387 | 0.3% | 100.0% | L0 sidechain | +| addGauge | 0x9e2d87f904862671eb49cb358e74284762cc9f42000200000000000000000013 | B-wstETH/bboUSD | 0x9e2D87f904862671eb49cB358E74284762cC9F42 | N/A | 0xc85679E41f1F98E694D9F8983fdD484F98F2eB02 | 0.3% | 100.0% | L0 sidechain | +| addGauge | 0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb28600000000000000000000000d | bb-o-USD | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 | 3000 | 0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58 | 0.005% | 100.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+ +``` diff --git a/BIPs/2023/2023-W24/BIP-329.json b/BIPs/2023/2023-W24/BIP-329.json new file mode 100644 index 000000000..a2bc6aeff --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-329.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686767683500, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xfd4396638cccb3a1cd1838eea226807478bfbb34c62816cdfba67704ed5c9b74" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-329.report.txt b/BIPs/2023/2023-W24/BIP-329.report.txt new file mode 100644 index 000000000..f5a180cc3 --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-329.report.txt @@ -0,0 +1,9 @@ +File name: BIPs/2023-W24/BIP-329.json +COMMIT: `09ac999a40f7b1cae07bebe97da0c7886cc61e31` +``` ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+------+--------------+ +| addGauge | 0xce2da1d3e5b5e4e1913f9ff65ee029d38682d8b900020000000000000000044e | B-50ACID-50WETH | 0xCE2Da1D3e5b5e4E1913F9fF65eE029d38682d8b9 | N/A | 0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE | 0.25% | 2.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+------+--------------+ +``` diff --git a/BIPs/2023/2023-W24/BIP-330.json b/BIPs/2023/2023-W24/BIP-330.json new file mode 100644 index 000000000..6810c79ad --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-330.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686768004439, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb787d433930738911f2cdc3649d362a48f65b10efac0cfd0817cb07b77e57791" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-330.report.txt b/BIPs/2023/2023-W24/BIP-330.report.txt new file mode 100644 index 000000000..4471f8f1a --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-330.report.txt @@ -0,0 +1,9 @@ +File name: BIPs/2023-W24/BIP-330.json +COMMIT: `0ca46be5ac211c5ba8dd225d7248c64bc05c1743` +``` ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| addGauge | 0x26c2b83fc8535deead276f5cc3ad9c1a2192e02700020000000000000000056b | OHM/bbaDAI BPT | 0x26c2B83FC8535DeEaD276f5Cc3ad9c1a2192E027 | N/A | 0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07 | 0.3% | 100.0% | Mainnet | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W24/BIP-331.json b/BIPs/2023/2023-W24/BIP-331.json new file mode 100644 index 000000000..26a496b6b --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-331.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686768416427, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xd02e4cb48190f6450f276def76790f525b38779528bbf8782f277ea5690a9ea8" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x25869f277f474FA9459F40F5D4cB0D6A8Ab41967", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xacE0D479040231e3c6b17479cFd4444182d521d4", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-331.report.txt b/BIPs/2023/2023-W24/BIP-331.report.txt new file mode 100644 index 000000000..677e5f52f --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-331.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W24/BIP-331.json +COMMIT: `cddf94eec27dd2f00706f9e5c4fc7cfda3e978a6` +``` ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| addGauge | 0x8bc65eed474d1a00555825c91feab6a8255c2107000000000000000000000453 | DOLA/USDC BPT | 0x8bc65Eed474D1A00555825c91FeAb6A8255C2107 | 200 | 0x25869f277f474FA9459F40F5D4cB0D6A8Ab41967 | 0.04% | 100.0% | L0 sidechain | +| addGauge | 0x567ecfcb22205d279bb8eed3e066989902bf03d5000000000000000000000452 | DOLA/bbaUSD-BPT | 0x567ECfCB22205D279BB8Eed3E066989902bF03D5 | 200 | 0xacE0D479040231e3c6b17479cFd4444182d521d4 | 0.04% | 100.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +``` diff --git a/BIPs/2023/2023-W24/BIP-334arbitrum.json b/BIPs/2023/2023-W24/BIP-334arbitrum.json new file mode 100644 index 000000000..d15d708bb --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-334arbitrum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1686680809740, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x6bc298a090a72586f927aa6066dc968814a5229727f09d9dad7a85a3dff8fbc7" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x80d8e99e3b5fd50648b67ce84571603afc8ed8ea28310c743deef793d7a98d00,0x6213e9042b9814b9567bde72d3c7a61372862c3ac88c2df77d3205221af6c871,0xbe1515c6c371fbc1aead7b0ed2f23f3bc176eb727e587494ac0055414c5b4c11,0xe4ae7db31fa76b12846f2837e5b8ee34891b1b170470345521a088bd662e4571,0x79cf7f42fcb330293c1d98b9ac2db3a3122a615e3630596ebc2584c6bf0d1346,0xcf5e03a737e4f5ba6d13e23f893a1e0255b362d8ce22e9568e1565fcf92789c7,0xdee20d81c6075dcc437dbaaf02d316ab255cfcae4a154e04b17abdebc70a5b48,0x92253d002d63e0211f775527924e2891f18bb060ff2ab3be19c6b242bafa5fec,0xc383be2c6e87a9b18ae919e677f011279a8d98346dbcd5cb326053f5f873b753,0x70368640683195889d0f146ab060210f43fbb1c317a87bdf17a4dca8d8feed86,0x50ccb689033ea83f58a1b54b091916255bb56c2334a12ed908ecb06f72d2a688]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-334ethereum.json b/BIPs/2023/2023-W24/BIP-334ethereum.json new file mode 100644 index 000000000..d0f9c8e9b --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-334ethereum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686680886901, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x9d4b59f352b88b60a9f7afe1df28ad132ebe861190bfdc9d638cfe4c47aad0b7" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3697d13ee45583cf9c2c64a978ab5886bcd07ec2b851efbea2fced982b8f9596,0xc065d550fa98abc242b6baf98e7b2063590675f1ddd81bdb9ea8d8f5c5d52f98,0x7b09f4b61ccfe85436161b0223489b187d9f9158c542b5e6105df147afc78aca,0x15d3918ca8f9895d8906a780f5f402d32707bada7b1b5e7b21b7351257103a35,0xcf5e03a737e4f5ba6d13e23f893a1e0255b362d8ce22e9568e1565fcf92789c7,0x6c3a14f10cbcc5a3f4d0e4e8ad279e7a842735ab188e2b13fb84c6542cc3320c,0x78e9adfe5f05d7114a59d0870d78971192f871f57bb36e2aff2edbe75d425844,0xdee20d81c6075dcc437dbaaf02d316ab255cfcae4a154e04b17abdebc70a5b48,0xd8638fc873fb8c5c0e67c437099a19eb0546fb439dab8babff44196f11d44831,0x1a88f724f61d4985675e65a2ba85b2a985d250dac00d27e06303f4cdabc906ae,0xa5547190e3d59f2bfeb4174ca3454b2f2acaeed644bc7ad7018014516f73f2bd,0x0acc45f3ac7c04369514ee383aad82d5c1eef484fbf9ca5f6d87ad5c5859da40]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-334polygon.json b/BIPs/2023/2023-W24/BIP-334polygon.json new file mode 100644 index 000000000..6147f222a --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-334polygon.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1686680852003, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0xa5c164238241c625317b607e96a470d001807fb0e1decb779b39080aebb72c51" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3697d13ee45583cf9c2c64a978ab5886bcd07ec2b851efbea2fced982b8f9596,0xc065d550fa98abc242b6baf98e7b2063590675f1ddd81bdb9ea8d8f5c5d52f98,0x7b09f4b61ccfe85436161b0223489b187d9f9158c542b5e6105df147afc78aca,0xce2ff98f438259b5f78b8cf5818e70fcc2ff35b13dc38356616b1431cea9726e,0xec5cf9ce37bce68429403f673d6dfd0a89d33d4af5960016f9a1bbd07c71be88,0xdb0c4ed39b25abe74530d93d30f2b418aca586eeb088f33f8e60a329c85ab416,0xa301b9c1ebd296e579cdbb2d99698e23f8197f41880e33215a5936b204b2b971,0x0cdf946c050f680a2bbec467e09e41ceaf108b331b1d5b902c9fa45f9e2d944a,0xdee20d81c6075dcc437dbaaf02d316ab255cfcae4a154e04b17abdebc70a5b48,0x22f3e304ab030be776b205711d7ba79f146b07726b10c5e9d29c24dacc09c140,0xf6c13c09ddba8f114fe2b23ff442766dca7a9bf303adfde386f20ac38c749733,0x0ad9662eb9978d490b9f9bc897a15af8892817d0c299cb8ec0c624cccd6b192d,0xdc4f292a9c37b8bfbaf2dc78ff4d2a53114e770bcb186a21957939f01ffbfe6b]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-335.json b/BIPs/2023/2023-W24/BIP-335.json new file mode 100644 index 000000000..9dee397fc --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-335.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1686768004439, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb787d433930738911f2cdc3649d362a48f65b10efac0cfd0817cb07b77e57791" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8eeB783A4A67f626c6E3952AAeD0D6b104AaC85f", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W24/BIP-335.report.txt b/BIPs/2023/2023-W24/BIP-335.report.txt new file mode 100644 index 000000000..70be7dfb1 --- /dev/null +++ b/BIPs/2023/2023-W24/BIP-335.report.txt @@ -0,0 +1,9 @@ +File name: BIPs/2023-W24/BIP-335.json +COMMIT: `ef06b709f20953acd300ecea65942b94d9e55858` +``` ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+---------+ +| addGauge | 0xc5dc1316ab670a2eed5716d7f19ced321191f38200000000000000000000056e | B-wstETH/bb-ma3-weth | 0xC5DC1316AB670a2eeD5716d7F19CeD321191F382 | 1500 | 0x8eeB783A4A67f626c6E3952AAeD0D6b104AaC85f | 0.001% | 100.0% | Mainnet | ++----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W25/BIP-311B.json b/BIPs/2023/2023-W25/BIP-311B.json new file mode 100644 index 000000000..d42a36aec --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-311B.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685565917985, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa382ef5a87e2fde26a42b586116a7a5d9ecc9269acd72ce549dea5280abe6475" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W25/BIP-311B.report.txt b/BIPs/2023/2023-W25/BIP-311B.report.txt new file mode 100644 index 000000000..4d9aeffd8 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-311B.report.txt @@ -0,0 +1,9 @@ +BIPs/2023-W25/BIP-311B.json +COMMIT: 3cb9decf5db62edf321ab25d25bbdd0cc67a3e09 +``` ++-------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++-------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +| killGauge() | 0xeb567dde03f3da7fe185bdacd5ab495ab220769d000000000000000000000548 | ankrETH-bb-a-WETH-BPT | 0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d | 100 | 0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da | 0.04% | 100.0% | mainnet | ++-------------+--------------------------------------------------------------------+-----------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W25/BIP-322.json b/BIPs/2023/2023-W25/BIP-322.json new file mode 100644 index 000000000..1a28f5c22 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-322.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1687430417153, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0xcc3b215f5865132170765e5cc1957fffb7dc986b0a0bdb8e5d0a17b8ccffe07e" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "100000000000000000000000" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "amount": "2000000000000000000000000" + } + }, + { + "to": "0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "amount": "472279000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W25/BIP-337.json b/BIPs/2023/2023-W25/BIP-337.json new file mode 100644 index 000000000..34f88fac1 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-337.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687366618818, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0ca4b1270048d5843d94495c0337d3b96653fc3df5ad76b04dace93548f004a5" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x39dF6e857bdf7387273C43eBb373b9D74F467d35", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W25/BIP-337.report.txt b/BIPs/2023/2023-W25/BIP-337.report.txt new file mode 100644 index 000000000..2ec7f6263 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-337.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W25/BIP-337.json +COMMIT: `28e4fc9661d2905744ffd5d07401e7a8f8bf7c58` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +| addGauge | 0x9d7f992c900fbea0ec314bdd71b7cc1becf76a33000200000000000000000573 | 50OHM/50bbaWETH | 0x9d7f992c900FbeA0EC314Bdd71b7cC1becF76A33 | N/A | 0x39dF6e857bdf7387273C43eBb373b9D74F467d35 | 0.3% | 100.0% | mainnet | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+ +``` diff --git a/BIPs/2023/2023-W25/BIP-338.json b/BIPs/2023/2023-W25/BIP-338.json new file mode 100644 index 000000000..9c75ce824 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-338.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687366929737, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb2d55917e81f9631bbb46fa3254b012dc919f61f7225ac5f56c868922d3e6d96" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x175407b4710b5A1cB67a37C76859F17fb2ff6672", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W25/BIP-338.report.txt b/BIPs/2023/2023-W25/BIP-338.report.txt new file mode 100644 index 000000000..3539aadbc --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-338.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W25/BIP-338.json +COMMIT: `a13519b274c600b09617844b5ff698ddb8fb6c89` +CHAIN(S): `arbitrum` +``` ++----------+--------------------------------------------------------------------+--------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+--------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +| addGauge | 0xc7fa3a3527435720f0e2a4c1378335324dd4f9b3000200000000000000000459 | 55auraBal-45wsteth | 0xc7FA3A3527435720f0e2a4c1378335324dd4F9b3 | N/A | 0x175407b4710b5A1cB67a37C76859F17fb2ff6672 | 1.0% | 2.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+--------------------+--------------------------------------------+---------+--------------------------------------------+------+------+--------------+ +``` diff --git a/BIPs/2023/2023-W25/BIP-339.json b/BIPs/2023/2023-W25/BIP-339.json new file mode 100644 index 000000000..08007a02c --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-339.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687367167482, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xfd336838ff68d1f90fab168fceefb2b2d1e630d3063c23e133b2eaef65d4082e" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x870Cd189889C1117b33bc8c94394a7477d4EB6fa", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W25/BIP-339.report.txt b/BIPs/2023/2023-W25/BIP-339.report.txt new file mode 100644 index 000000000..5c91d83b4 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-339.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W25/BIP-339.json +COMMIT: `8ead790d408d189e285bb342c7020a619209a84e` +CHAIN(S): `arbitrum` +``` ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +| addGauge | 0x01990f1e6f7f32296f125ee9469705c1c070054d000000000000000000000461 | Stafi rETH/WETH | 0x01990f1e6f7F32296f125eE9469705C1C070054D | 50 | 0x870Cd189889C1117b33bc8c94394a7477d4EB6fa | 0.04% | 10.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +``` diff --git a/BIPs/2023/2023-W25/BIP-340A.json b/BIPs/2023/2023-W25/BIP-340A.json new file mode 100644 index 000000000..d134bb49d --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-340A.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687368865952, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x29aa21609a6982c08bdb405aeafe2180a1d953a43b9bfc5298ec91b69c33867e" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W25/BIP-340A.report.txt b/BIPs/2023/2023-W25/BIP-340A.report.txt new file mode 100644 index 000000000..9bd766942 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-340A.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W25/BIP-340A.json +COMMIT: `c2ed0b80c4d8f70123633a6c767878b32b590db8` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +| addGauge | 0x156c02f3f7fef64a3a9d80ccf7085f23cce91d76000000000000000000000570 | vETH/WETH BPT | 0x156C02f3f7fEf64a3A9D80CCF7085f23ccE91D76 | 50 | 0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434 | 0.04% | 10.0% | mainnet | ++----------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +``` diff --git a/BIPs/2023/2023-W25/BIP-341.json b/BIPs/2023/2023-W25/BIP-341.json new file mode 100644 index 000000000..57587f2b6 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP-341.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687369977534, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x53cbd92e50dc31cbc5b5f03256964acb17ab49795867585ec1693ea1a7227a69" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6bb341db03eede206e544c654a59ef89eea83bc65fada2cfeeaf18c5c0f76ac0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x83E443EF4f9963C77bd860f94500075556668cb8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "localUser", + "type": "address" + }, + { + "internalType": "address", + "name": "delegate", + "type": "address" + } + ], + "name": "setNetworkRemappingManager", + "payable": false + }, + "contractInputsValues": { + "localUser": "0x9cC56Fa7734DA21aC88F6a816aF10C5b898596Ce", + "delegate": "0x4bE13bf2B983C31414b358C634bbb61230c332A7" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6bb341db03eede206e544c654a59ef89eea83bc65fada2cfeeaf18c5c0f76ac0", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/2023-W25/BIP336.json b/BIPs/2023/2023-W25/BIP336.json new file mode 100644 index 000000000..e036d3245 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP336.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687366301152, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xd95f799611bebc85058c55a45353a22218170d0946f95bcd7b1f66fe30945f36" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W25/BIP336.report.txt b/BIPs/2023/2023-W25/BIP336.report.txt new file mode 100644 index 000000000..328016f89 --- /dev/null +++ b/BIPs/2023/2023-W25/BIP336.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W25/BIP336.json +COMMIT: `91e6ff19561da2ec26c709e245596c840cede9b3` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+------+---------+ +| addGauge | 0xbfce47224b4a938865e3e2727dc34e0faa5b1d82000000000000000000000527 | uniETH-WETH | 0xbFCe47224B4A938865E3e2727DC34E0fAA5b1D82 | 50 | 0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA | 0.04% | 2.0% | mainnet | ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+------+---------+ +``` diff --git a/BIPs/2023/2023-W26/BIP-314 july.json b/BIPs/2023/2023-W26/BIP-314 july.json new file mode 100644 index 000000000..f0ab8a329 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-314 july.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687999876596, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "55000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-340B.json b/BIPs/2023/2023-W26/BIP-340B.json new file mode 100644 index 000000000..b948b07fd --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-340B.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687369387416, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xde4880d111042fc16b66016756ed82c4dc099f73bd9f0f07d054ee2167ad8f67" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8a88C1f44854C61a466aB55614F6A7778473418b", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-340B.report.txt b/BIPs/2023/2023-W26/BIP-340B.report.txt new file mode 100644 index 000000000..1d8fea4ac --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-340B.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W26/BIP-340B.json +COMMIT: `c2ed0b80c4d8f70123633a6c767878b32b590db8` +CHAIN(S): `mainnet` +``` ++-------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++-------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +| killGauge() | 0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d0000000000000000000004f8 | B-vETH-STABLE | 0x793F2D5Cd52dfafe7a1a1B0B3988940Ba2d6a63D | 50 | 0x8a88C1f44854C61a466aB55614F6A7778473418b | 0.04% | 10.0% | mainnet | ++-------------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+ +``` diff --git a/BIPs/2023/2023-W26/BIP-343/arbitrum.json b/BIPs/2023/2023-W26/BIP-343/arbitrum.json new file mode 100644 index 000000000..f020e1523 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-343/arbitrum.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f9dc3da8a6332271be3fccd1a107fd3117a1a988666ff673241edc8c12279ac, 0x0fb35afbdd369d25e1e13986af342dd66f4af22e88628aded66fc015fddee9e6, 0x6849898f08c7f64552f27ae1a4dfcc908200c4d6901ee3945a8c62dbf9cefb8f, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0x0585ff33fe95b333f37198850856b5b788891cbc6fd99c447b8d7625c94a33b9, 0x2cdef929bdc29c7b9ca832b8a8f62ce592fee150df38b736a8cab1d2918fc179]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-343/avalanche.json b/BIPs/2023/2023-W26/BIP-343/avalanche.json new file mode 100644 index 000000000..804746c3f --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-343/avalanche.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 43114, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa, 0x57a99f3ed4c936dc3acc397e914c860702345856a9cca3a5be4c01fefa6a7674, 0xe41196603a4830aa78064fa1ce052e42607bc0a162707e1ce030e7fd9757f0b1]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-343/gnosis.json b/BIPs/2023/2023-W26/BIP-343/gnosis.json new file mode 100644 index 000000000..e489fa52f --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-343/gnosis.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x29596d20dcc54c557d94ae57af84f08715a588be1d756198eec61a3dc368b6c1, 0x9023a208ea63197b4da99dc4a096d44fb3152b807b6e4d37f15239d9fff8beb2, 0x478e7f53087deab85ae5870218c02821a6bafa4a75984797ac58cdfd513a385b, 0x4b0cfb0e3afde1903ef88f0072b490a0d78f1027a165371b1b4732daa84a9559, 0x338ff79f4b040df80f9cbc5217e904e2c8dbb7fb58beb6100c837ffa25ab4197]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-343/inputs.json b/BIPs/2023/2023-W26/BIP-343/inputs.json new file mode 100644 index 000000000..216cc1b05 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-343/inputs.json @@ -0,0 +1,26 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114 + }, + + "function_caller_map": { + "disableRecoveryMode()": ["multisigs/emergency"] + }, + "deployments": [ + "20230320-weighted-pool-v4", + "20230206-weighted-pool-v3", + "20220908-weighted-pool-v2'", + "20220906-composable-stable-pool", + "20221122-composable-stable-pool-v2", + "20230206-composable-stable-pool-v3", + "20230320-composable-stable-pool-v4" + ] + } +] diff --git a/BIPs/2023/2023-W26/BIP-343/mainnet.json b/BIPs/2023/2023-W26/BIP-343/mainnet.json new file mode 100644 index 000000000..6689cca1a --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-343/mainnet.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x883ac0fb54f0b07161f4c1d1132c7179cf4fd457dec4d2cf15af62bfe93d6402, 0xd1cab845861601849b43df194d75e16c676ee31cf20296f392e9d44dd3793ef3, 0xdcae01a1d3143e115458cda9b816ea278dd5daf08d9b6d3ec668632aa7b82dad, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0xa35b682012cf580f34e9cd41e4bf1c0210b6ebfc1a952fb582842c0e23b8c069, 0xb6f4ab951143da625c0c25d6eca1ce9e007e3139abfd9cfec3a301bad7238e15]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-343/optimism.json b/BIPs/2023/2023-W26/BIP-343/optimism.json new file mode 100644 index 000000000..cb93d2c0a --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-343/optimism.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa, 0x94d058c565b594a202b88b57a685b093db0fd3406b926f2033a3443a6d8e1b50, 0x53a0625529c519f2e4a706b874baf30797466df455c9d39cd3ee19e6fe5bc6e2, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0xe4efb851c410e171273aee46d6939a91154b536e375e6fe59c09a4e617072339, 0xf65bca6198c80a6fc89409c116db12c0427a0b571cd0d2ee5dd614145d006810]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-343/polygon.json b/BIPs/2023/2023-W26/BIP-343/polygon.json new file mode 100644 index 000000000..a0f6489d2 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-343/polygon.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x70d81f1b0f71c8c3037ee34b69ad6980888bab8b2e32959f8c6aac274a7f10cb, 0x70ea65bcadbec99c10058d43f9acdc9a5ad05cde666b7d0065818feb763e7cb2, 0x2bd529cf8062fa0ff07c2054e5dc654a104415c2ae171092c450a88c9ff098a9, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0x3f743640e5e338ede5771590dab93e6860616f4318ca6d5a578c84be2c329844, 0xdb63b0c040446fcfa9503943eff986bc051fb5e7cb8f83a8bcebb7115c535b60]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-343/zkevm.json b/BIPs/2023/2023-W26/BIP-343/zkevm.json new file mode 100644 index 000000000..8765652d7 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-343/zkevm.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd21198f97672ee6118c9598a1b4c2053515bf28a40c4df5cf02365c4ff3d5ba7, 0x5610aeafaa3f5c4ef9b9b45ee9c0810b2f7bd64b7b504f19d1a8a3bde062a966]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-344.json b/BIPs/2023/2023-W26/BIP-344.json new file mode 100644 index 000000000..c36caec1d --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-344.json @@ -0,0 +1,116 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687970751948, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x871c352af1dd23f5c4a8947fcb69f0c3e46347ece6e76df395964fa1c91a7d5e", + "bipNumber": 344 + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-344.report.txt b/BIPs/2023/2023-W26/BIP-344.report.txt new file mode 100644 index 000000000..196d2c369 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-344.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/2023-W26/BIP-344.json +COMMIT: `66e3ba90b1b9c938693b527e21ddd9e3ce16284a` +CHAIN(S): `optimism` +``` ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| addGauge | 0x39965c9dab5448482cf7e002f583c812ceb53046000100000000000000000003 | BPT-ROAD | 0x39965c9dAb5448482Cf7e002F583c812Ceb53046 | N/A | 0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d | 0.5% | 100.0% | L0 sidechain | +| addGauge | 0x1d95129c18a8c91c464111fdf7d0eb241b37a9850002000000000000000000c1 | BPT-RESERVE | 0x1D95129c18a8c91C464111FDf7d0Eb241B37a985 | N/A | 0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad | 0.05% | 2.0% | L0 sidechain | +| addGauge | 0xd20f6f1d8a675cdca155cb07b5dc9042c467153f0002000000000000000000bc | BPT-BOATH | 0xd20f6F1D8a675cDCa155Cb07b5dC9042c467153f | N/A | 0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73 | 2.0% | 2.0% | L0 sidechain | +| addGauge | 0x098f32d98d0d64dba199fc1923d3bf4192e787190001000000000000000000d2 | bb-rf-SOTRI | 0x098f32D98d0D64Dba199FC1923D3BF4192E78719 | N/A | 0xdc08146530DD9910F8ab4D0aD2C184f87e903540 | 0.4% | 100.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +``` diff --git a/BIPs/2023/2023-W26/BIP-345.json b/BIPs/2023/2023-W26/BIP-345.json new file mode 100644 index 000000000..65d3f65ce --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-345.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687971111550, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8d49ee364f019130de078e2a9086d723ab565bc8067a0fb5ea6bb931be5bb27e" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-345.report.txt b/BIPs/2023/2023-W26/BIP-345.report.txt new file mode 100644 index 000000000..5854cbe56 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-345.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W26/BIP-345.json +COMMIT: `711faff687f95e27f5441aa8c3712c97e735ed66` +CHAIN(S): `optimism` +``` ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +| addGauge | 0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb200020000000000000000008b | BPT-WSTETH-WETH | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 | 500 | 0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87 | 0.01% | 100.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+ +``` diff --git a/BIPs/2023/2023-W26/BIP-346.json b/BIPs/2023/2023-W26/BIP-346.json new file mode 100644 index 000000000..96038ab1f --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-346.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687971407113, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2c48ebbddf51c59d79499b8d63146f47049c37f2bcd231d1d6c2d04d3b058252" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x730A168cF6F501cf302b803FFc57FF3040f378Bf", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-346.report.txt b/BIPs/2023/2023-W26/BIP-346.report.txt new file mode 100644 index 000000000..fe375b922 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-346.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W26/BIP-346.json +COMMIT: `ef789dccde4cc0b34ff608c9ab8cdb7ef50e94ee` +CHAIN(S): `optimism` +``` ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +| addGauge | 0x7ca75bdea9dede97f8b13c6641b768650cb837820002000000000000000000d5 | ECLP-wstETH-WETH | 0x7Ca75bdEa9dEde97F8B13C6641B768650CB83782 | N/A | 0x730A168cF6F501cf302b803FFc57FF3040f378Bf | 0.02% | 10.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +``` diff --git a/BIPs/2023/2023-W26/BIP-347.json b/BIPs/2023/2023-W26/BIP-347.json new file mode 100644 index 000000000..fda314170 --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-347.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "132630000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "25400000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W26/BIP-348.json b/BIPs/2023/2023-W26/BIP-348.json new file mode 100644 index 000000000..bf64e264c --- /dev/null +++ b/BIPs/2023/2023-W26/BIP-348.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "93750000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W27/BIP-103July2023.json b/BIPs/2023/2023-W27/BIP-103July2023.json new file mode 100644 index 000000000..d17094198 --- /dev/null +++ b/BIPs/2023/2023-W27/BIP-103July2023.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688609591759, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x3771d3ce272be256f37e213e17a6e891a1315dec91bf63dad11e35ffac15df2f" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5278000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W27/BIP-103July2023.report.txt b/BIPs/2023/2023-W27/BIP-103July2023.report.txt new file mode 100644 index 000000000..3f4f222fd --- /dev/null +++ b/BIPs/2023/2023-W27/BIP-103July2023.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W27/BIP-103July2023.json +COMMIT: `9a7dc308fb522de19294f86e9d9c70620af5c1df` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------+--------+--------------------------------------------+--------------------------------------------+------------+---------+-------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | transaction_index | ++----------+--------------+----------------+--------+--------------------------------------------+--------------------------------------------+------------+---------+-------------------+ +| transfer | USDC | N/A | 5278.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5278000000 | BIP-103 | N/A | ++----------+--------------+----------------+--------+--------------------------------------------+--------------------------------------------+------------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W27/BIP-350.json b/BIPs/2023/2023-W27/BIP-350.json new file mode 100644 index 000000000..54c0bcb4d --- /dev/null +++ b/BIPs/2023/2023-W27/BIP-350.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "25263390000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "25262000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W27/BIP-350.report.txt b/BIPs/2023/2023-W27/BIP-350.report.txt new file mode 100644 index 000000000..b7f408d76 --- /dev/null +++ b/BIPs/2023/2023-W27/BIP-350.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W27/BIP-350.json +COMMIT: `eaf9aabb791c20a82202963d8190aa4d807cbc96` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | transaction_index | ++----------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| transfer | USDC | N/A | 25263.39 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 25263390000 | BIP-350 | N/A | +| transfer | BAL | N/A | 25262.0 | 0xba100000625a3754423978a60c9317c58a424e3D | 0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 25262000000000000000000 | BIP-350 | N/A | ++----------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W27/BIP-351.json b/BIPs/2023/2023-W27/BIP-351.json new file mode 100644 index 000000000..1d1c5be52 --- /dev/null +++ b/BIPs/2023/2023-W27/BIP-351.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "28958330000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W27/BIP-351.report.txt b/BIPs/2023/2023-W27/BIP-351.report.txt new file mode 100644 index 000000000..742c7d428 --- /dev/null +++ b/BIPs/2023/2023-W27/BIP-351.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W27/BIP-351.json +COMMIT: `8d1505571ed792f582033a7062c3233fe365eecd` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | transaction_index | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| transfer | BAL | multisigs/foundation | 28958.33 | 0xba100000625a3754423978a60c9317c58a424e3D | 0x3B8910F378034FD6E103Df958863e5c684072693 | 28958330000000000000000 | BIP-351 | N/A | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/.gitignore b/BIPs/2023/2023-W28/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/2023/2023-W28/BIP-353/BIP-353.md b/BIPs/2023/2023-W28/BIP-353/BIP-353.md new file mode 100644 index 000000000..585deef16 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/BIP-353.md @@ -0,0 +1,97 @@ +## [Payload PR - BIP-353](https://github.com/BalancerMaxis/multisig-ops/pull/358) + +## Background +The [v5 Composable Stable Pool Factory](https://github.com/balancer/balancer-deployments/tree/master/tasks/20230711-composable-stable-pool-v5) where deployed to fix issue reported by a whitehat and requiring many CSPv4 pools to be put in recovery mode. A full disclouser about the issue will be posted by Balancer Labs once they have wrapped up the ImmuniFi process(paid out). Some initial "wire-up" of permissions is required to bring them into standard function. This BIP lays out these changes and requests permission to apply them. + +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W28/BIP-353) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W28/BIP-353/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W28/BIP-353/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W28/BIP-353/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W28/BIP-353/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W28/BIP-353/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W28/BIP-353/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-deployments](https://github.com/balancer/balancer-deployments/tree/master/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2023-W28/BIP-353/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | caller | caller_address | +|:-----------------------------------|:----------|:---------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230711-composable-stable-pool-v5 | arbitrum | enableRecoveryMode() | 0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230711-composable-stable-pool-v5 | arbitrum | setSwapFeePercentage(uint256) | 0xfab324385696857b52130b135e7e81f8b7f34382c9b27f254b6bca9a70fe0784 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x3be753be2ced552d75d5556694d2012e157294f50103c95273191fb5a0209481 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | arbitrum | stopAmplificationParameterUpdate() | 0x9d2042bf873d984ff8ce2661c7f5854078b8bbf1d618d0509ec379533d3ba9af | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | arbitrum | disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | disableRecoveryMode() | 0xc0255b53e66bf2965d8fbd2af1cec52f34060d539ff8dd3c96a8d6aaa678d109 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | enableRecoveryMode() | 0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | pause() | 0x998b893d641593fd3aa179e7641c4e0a7ead0e9f8d25df6d5637ab28d32e924e | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | avalanche | disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | disableRecoveryMode() | 0xffb70f4f9562b3a5f8e82e3c9eeb43b6769d1af1086819e6881cb0456404ecc1 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | enableRecoveryMode() | 0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | pause() | 0x2f33caac3ea80144501f854d7fc8870e770fe1ec5260b2f09d45014e4ae11b0c | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | setSwapFeePercentage(uint256) | 0x846447d11e52871f13911642f2df294a08a10c704fd3746ee2b8e99ef3dd802a | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | avalanche | startAmplificationParameterUpdate(uint256,uint256) | 0x61422cbfc16cfb61b82397377ab5165c6755ee7466a24630f4027d79453e83e5 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | avalanche | stopAmplificationParameterUpdate() | 0x28dcd620872aaaed93f0363c5b4b038f3b1fcaba6944fb976d670390e56accd0 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | avalanche | enableRecoveryMode() | 0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230711-composable-stable-pool-v5 | gnosis | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | gnosis | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | gnosis | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230711-composable-stable-pool-v5 | gnosis | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | mainnet | enableRecoveryMode() | 0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230711-composable-stable-pool-v5 | mainnet | disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | disableRecoveryMode() | 0x004ed6bc39c7b1141c8d34bc8c481dde189197c700d070129e6f6a3cbbfdce9f | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | enableRecoveryMode() | 0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | pause() | 0xbb09fe1ad67eb7a320ad9131d81ea3835e51215410ea5d5866bc516003d06287 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | setSwapFeePercentage(uint256) | 0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0x6bf9f64e8755a240cd5604ab5cabd4a1eed020059be9a1a64be071859f023276 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | mainnet | stopAmplificationParameterUpdate() | 0xd5e70e51651eb5be66f83b01794f74b5dbb417b607bf0425c5c5d3aa7386b38b | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | optimism | setSwapFeePercentage(uint256) | 0x167c1baf0159e423e633f0a68e1025918332919ade802b33759880576cb2c50d | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0xadd685e44755d3d511a26b97a7c40f42354f1e494795ad163dd79e22da45026e | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | optimism | stopAmplificationParameterUpdate() | 0xdbfdeb1d2ce00232fda29f8069f731deb70f0e1438aa8a1e35e89eac02403c23 | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | optimism | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230711-composable-stable-pool-v5 | optimism | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | disableRecoveryMode() | 0xb4b8b756b9cc9f73e9debc41c8f8a805f6f964192d26d6f1bf764f147279bc8b | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | polygon | disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | disableRecoveryMode() | 0xacd6e3cd60fe4741be79438b5d7599a59db6fe321838b1aafd090cb76ac6a5d0 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | enableRecoveryMode() | 0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | pause() | 0x91ce64502d2ca1550ea11bbfcdc5a965e2646c09818313a851c0eeb71cedbb1d | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | enableRecoveryMode() | 0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230711-composable-stable-pool-v5 | polygon | setSwapFeePercentage(uint256) | 0x8e9ee99533bd178c1573e352145db0eeb33e8722b92d1d6fbc1de799b41f180c | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x38db2dc993d272984aa505f0b59a8b6aac970193c0e50bfa5e8ba503c053a2a5 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | polygon | stopAmplificationParameterUpdate() | 0xbb90aa662dea36fc9db5c97eafcf6a4379941e6e2675d8c1bc1416a42b77db25 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | zkevm | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | zkevm | stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | zkevm | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/2023/2023-W28/BIP-353/README.md b/BIPs/2023/2023-W28/BIP-353/README.md new file mode 100644 index 000000000..3cca47c16 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/README.md @@ -0,0 +1 @@ +[See Here](BIP-353.md) for the governance contents. diff --git a/BIPs/2023/2023-W28/BIP-353/arbitrum.json b/BIPs/2023/2023-W28/BIP-353/arbitrum.json new file mode 100644 index 000000000..51159d5fd --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/arbitrum.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad, 0xc0255b53e66bf2965d8fbd2af1cec52f34060d539ff8dd3c96a8d6aaa678d109, 0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b, 0x998b893d641593fd3aa179e7641c4e0a7ead0e9f8d25df6d5637ab28d32e924e]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b]", + "account": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xfab324385696857b52130b135e7e81f8b7f34382c9b27f254b6bca9a70fe0784, 0x3be753be2ced552d75d5556694d2012e157294f50103c95273191fb5a0209481, 0x9d2042bf873d984ff8ce2661c7f5854078b8bbf1d618d0509ec379533d3ba9af]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-353/avalanche.json b/BIPs/2023/2023-W28/BIP-353/avalanche.json new file mode 100644 index 000000000..e02061713 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/avalanche.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 43114, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed, 0xffb70f4f9562b3a5f8e82e3c9eeb43b6769d1af1086819e6881cb0456404ecc1, 0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0, 0x2f33caac3ea80144501f854d7fc8870e770fe1ec5260b2f09d45014e4ae11b0c]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0]", + "account": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x846447d11e52871f13911642f2df294a08a10c704fd3746ee2b8e99ef3dd802a, 0x61422cbfc16cfb61b82397377ab5165c6755ee7466a24630f4027d79453e83e5, 0x28dcd620872aaaed93f0363c5b4b038f3b1fcaba6944fb976d670390e56accd0]", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-353/function_descriptions.md b/BIPs/2023/2023-W28/BIP-353/function_descriptions.md new file mode 100644 index 000000000..1a82ab07b --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/function_descriptions.md @@ -0,0 +1,10 @@ +| function | description | +|:---------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------| +| disable() | Disables new creation of pools from a pool factory. | +| disableRecoveryMode() | description not found in map | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | \ No newline at end of file diff --git a/BIPs/2023/2023-W28/BIP-353/gnosis.json b/BIPs/2023/2023-W28/BIP-353/gnosis.json new file mode 100644 index 000000000..1582b89af --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/gnosis.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff, 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff]", + "account": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3, 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56, 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-353/inputs.json b/BIPs/2023/2023-W28/BIP-353/inputs.json new file mode 100644 index 000000000..5fcb99c5c --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/inputs.json @@ -0,0 +1,27 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "avalanche": 43114, + "zkevm": 1101 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": "lm", + "startAmplificationParameterUpdate(uint256,uint256)": "lm", + "stopAmplificationParameterUpdate()": "lm", + "pause()": "multisigs/emergency", + "disable()": "multisigs/emergency", + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets": "lm", + "disableRecoveryMode()": "multisigs/emergency" + }, + "deployments": ["20230711-composable-stable-pool-v5"] + } +] diff --git a/BIPs/2023/2023-W28/BIP-353/mainnet.json b/BIPs/2023/2023-W28/BIP-353/mainnet.json new file mode 100644 index 000000000..0eb79df34 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/mainnet.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901, 0x004ed6bc39c7b1141c8d34bc8c481dde189197c700d070129e6f6a3cbbfdce9f, 0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f, 0xbb09fe1ad67eb7a320ad9131d81ea3835e51215410ea5d5866bc516003d06287]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f]", + "account": "0x1b300C86980a5195bCF49bD419A068D98dC133Db" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca, 0x6bf9f64e8755a240cd5604ab5cabd4a1eed020059be9a1a64be071859f023276, 0xd5e70e51651eb5be66f83b01794f74b5dbb417b607bf0425c5c5d3aa7386b38b]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-353/optimism.json b/BIPs/2023/2023-W28/BIP-353/optimism.json new file mode 100644 index 000000000..a1f58e5bf --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/optimism.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08, 0xb4b8b756b9cc9f73e9debc41c8f8a805f6f964192d26d6f1bf764f147279bc8b, 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae, 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae]", + "account": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x167c1baf0159e423e633f0a68e1025918332919ade802b33759880576cb2c50d, 0xadd685e44755d3d511a26b97a7c40f42354f1e494795ad163dd79e22da45026e, 0xdbfdeb1d2ce00232fda29f8069f731deb70f0e1438aa8a1e35e89eac02403c23]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-353/polygon.json b/BIPs/2023/2023-W28/BIP-353/polygon.json new file mode 100644 index 000000000..66dd0adfb --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/polygon.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263, 0xacd6e3cd60fe4741be79438b5d7599a59db6fe321838b1aafd090cb76ac6a5d0, 0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820, 0x91ce64502d2ca1550ea11bbfcdc5a965e2646c09818313a851c0eeb71cedbb1d]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820]", + "account": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x8e9ee99533bd178c1573e352145db0eeb33e8722b92d1d6fbc1de799b41f180c, 0x38db2dc993d272984aa505f0b59a8b6aac970193c0e50bfa5e8ba503c053a2a5, 0xbb90aa662dea36fc9db5c97eafcf6a4379941e6e2675d8c1bc1416a42b77db25]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-353/results_address_sorted.md b/BIPs/2023/2023-W28/BIP-353/results_address_sorted.md new file mode 100644 index 000000000..36a779a63 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/results_address_sorted.md @@ -0,0 +1,58 @@ +| deployment | chain | function | role | caller | caller_address | +|:-----------------------------------|:----------|:---------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230711-composable-stable-pool-v5 | arbitrum | enableRecoveryMode() | 0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230711-composable-stable-pool-v5 | arbitrum | setSwapFeePercentage(uint256) | 0xfab324385696857b52130b135e7e81f8b7f34382c9b27f254b6bca9a70fe0784 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x3be753be2ced552d75d5556694d2012e157294f50103c95273191fb5a0209481 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | arbitrum | stopAmplificationParameterUpdate() | 0x9d2042bf873d984ff8ce2661c7f5854078b8bbf1d618d0509ec379533d3ba9af | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | arbitrum | disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | disableRecoveryMode() | 0xc0255b53e66bf2965d8fbd2af1cec52f34060d539ff8dd3c96a8d6aaa678d109 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | enableRecoveryMode() | 0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | pause() | 0x998b893d641593fd3aa179e7641c4e0a7ead0e9f8d25df6d5637ab28d32e924e | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | avalanche | disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | disableRecoveryMode() | 0xffb70f4f9562b3a5f8e82e3c9eeb43b6769d1af1086819e6881cb0456404ecc1 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | enableRecoveryMode() | 0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | pause() | 0x2f33caac3ea80144501f854d7fc8870e770fe1ec5260b2f09d45014e4ae11b0c | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | setSwapFeePercentage(uint256) | 0x846447d11e52871f13911642f2df294a08a10c704fd3746ee2b8e99ef3dd802a | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | avalanche | startAmplificationParameterUpdate(uint256,uint256) | 0x61422cbfc16cfb61b82397377ab5165c6755ee7466a24630f4027d79453e83e5 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | avalanche | stopAmplificationParameterUpdate() | 0x28dcd620872aaaed93f0363c5b4b038f3b1fcaba6944fb976d670390e56accd0 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | avalanche | enableRecoveryMode() | 0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230711-composable-stable-pool-v5 | gnosis | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | gnosis | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | gnosis | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230711-composable-stable-pool-v5 | gnosis | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | mainnet | enableRecoveryMode() | 0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230711-composable-stable-pool-v5 | mainnet | disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | disableRecoveryMode() | 0x004ed6bc39c7b1141c8d34bc8c481dde189197c700d070129e6f6a3cbbfdce9f | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | enableRecoveryMode() | 0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | pause() | 0xbb09fe1ad67eb7a320ad9131d81ea3835e51215410ea5d5866bc516003d06287 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | setSwapFeePercentage(uint256) | 0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0x6bf9f64e8755a240cd5604ab5cabd4a1eed020059be9a1a64be071859f023276 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | mainnet | stopAmplificationParameterUpdate() | 0xd5e70e51651eb5be66f83b01794f74b5dbb417b607bf0425c5c5d3aa7386b38b | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | optimism | setSwapFeePercentage(uint256) | 0x167c1baf0159e423e633f0a68e1025918332919ade802b33759880576cb2c50d | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0xadd685e44755d3d511a26b97a7c40f42354f1e494795ad163dd79e22da45026e | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | optimism | stopAmplificationParameterUpdate() | 0xdbfdeb1d2ce00232fda29f8069f731deb70f0e1438aa8a1e35e89eac02403c23 | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | optimism | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230711-composable-stable-pool-v5 | optimism | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | disableRecoveryMode() | 0xb4b8b756b9cc9f73e9debc41c8f8a805f6f964192d26d6f1bf764f147279bc8b | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | polygon | disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | disableRecoveryMode() | 0xacd6e3cd60fe4741be79438b5d7599a59db6fe321838b1aafd090cb76ac6a5d0 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | enableRecoveryMode() | 0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | pause() | 0x91ce64502d2ca1550ea11bbfcdc5a965e2646c09818313a851c0eeb71cedbb1d | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | enableRecoveryMode() | 0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230711-composable-stable-pool-v5 | polygon | setSwapFeePercentage(uint256) | 0x8e9ee99533bd178c1573e352145db0eeb33e8722b92d1d6fbc1de799b41f180c | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x38db2dc993d272984aa505f0b59a8b6aac970193c0e50bfa5e8ba503c053a2a5 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | polygon | stopAmplificationParameterUpdate() | 0xbb90aa662dea36fc9db5c97eafcf6a4379941e6e2675d8c1bc1416a42b77db25 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | zkevm | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | zkevm | stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | zkevm | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | \ No newline at end of file diff --git a/BIPs/2023/2023-W28/BIP-353/results_deployment_sorted.md b/BIPs/2023/2023-W28/BIP-353/results_deployment_sorted.md new file mode 100644 index 000000000..8c55a9a19 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/results_deployment_sorted.md @@ -0,0 +1,58 @@ +| deployment | chain | function | role | caller | caller_address | +|:-----------------------------------|:----------|:---------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------| +| 20230711-composable-stable-pool-v5 | arbitrum | disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | disableRecoveryMode() | 0xc0255b53e66bf2965d8fbd2af1cec52f34060d539ff8dd3c96a8d6aaa678d109 | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | enableRecoveryMode() | 0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | enableRecoveryMode() | 0xa6c4d4b9774fc0afef75aa08e9c80377e0b5e5be609a4dafefe381cc580a9e7b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20230711-composable-stable-pool-v5 | arbitrum | pause() | 0x998b893d641593fd3aa179e7641c4e0a7ead0e9f8d25df6d5637ab28d32e924e | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230711-composable-stable-pool-v5 | arbitrum | setSwapFeePercentage(uint256) | 0xfab324385696857b52130b135e7e81f8b7f34382c9b27f254b6bca9a70fe0784 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | arbitrum | startAmplificationParameterUpdate(uint256,uint256) | 0x3be753be2ced552d75d5556694d2012e157294f50103c95273191fb5a0209481 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | arbitrum | stopAmplificationParameterUpdate() | 0x9d2042bf873d984ff8ce2661c7f5854078b8bbf1d618d0509ec379533d3ba9af | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | avalanche | disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | disableRecoveryMode() | 0xffb70f4f9562b3a5f8e82e3c9eeb43b6769d1af1086819e6881cb0456404ecc1 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | enableRecoveryMode() | 0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0 | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | enableRecoveryMode() | 0x4fba353c4ff3db60adac7b39685b4c7079fa9c9080841748fc9ce74f8a1160b0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20230711-composable-stable-pool-v5 | avalanche | pause() | 0x2f33caac3ea80144501f854d7fc8870e770fe1ec5260b2f09d45014e4ae11b0c | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20230711-composable-stable-pool-v5 | avalanche | setSwapFeePercentage(uint256) | 0x846447d11e52871f13911642f2df294a08a10c704fd3746ee2b8e99ef3dd802a | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | avalanche | startAmplificationParameterUpdate(uint256,uint256) | 0x61422cbfc16cfb61b82397377ab5165c6755ee7466a24630f4027d79453e83e5 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | avalanche | stopAmplificationParameterUpdate() | 0x28dcd620872aaaed93f0363c5b4b038f3b1fcaba6944fb976d670390e56accd0 | multisigs/lm | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | gnosis | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20230711-composable-stable-pool-v5 | gnosis | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230711-composable-stable-pool-v5 | gnosis | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | gnosis | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | gnosis | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | mainnet | disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | disableRecoveryMode() | 0x004ed6bc39c7b1141c8d34bc8c481dde189197c700d070129e6f6a3cbbfdce9f | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | enableRecoveryMode() | 0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | enableRecoveryMode() | 0x9a645ed7f1bf603a8f6a44b2227b47a0355b902e65abb9d45e60bbc7e220992f | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20230711-composable-stable-pool-v5 | mainnet | pause() | 0xbb09fe1ad67eb7a320ad9131d81ea3835e51215410ea5d5866bc516003d06287 | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230711-composable-stable-pool-v5 | mainnet | setSwapFeePercentage(uint256) | 0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | mainnet | startAmplificationParameterUpdate(uint256,uint256) | 0x6bf9f64e8755a240cd5604ab5cabd4a1eed020059be9a1a64be071859f023276 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | mainnet | stopAmplificationParameterUpdate() | 0xd5e70e51651eb5be66f83b01794f74b5dbb417b607bf0425c5c5d3aa7386b38b | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | optimism | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | disableRecoveryMode() | 0xb4b8b756b9cc9f73e9debc41c8f8a805f6f964192d26d6f1bf764f147279bc8b | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20230711-composable-stable-pool-v5 | optimism | pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230711-composable-stable-pool-v5 | optimism | setSwapFeePercentage(uint256) | 0x167c1baf0159e423e633f0a68e1025918332919ade802b33759880576cb2c50d | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | optimism | startAmplificationParameterUpdate(uint256,uint256) | 0xadd685e44755d3d511a26b97a7c40f42354f1e494795ad163dd79e22da45026e | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | optimism | stopAmplificationParameterUpdate() | 0xdbfdeb1d2ce00232fda29f8069f731deb70f0e1438aa8a1e35e89eac02403c23 | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | polygon | disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | disableRecoveryMode() | 0xacd6e3cd60fe4741be79438b5d7599a59db6fe321838b1aafd090cb76ac6a5d0 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | enableRecoveryMode() | 0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820 | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | enableRecoveryMode() | 0x2ac3edb051b1334473999eeea35bc4ff0f87e8c066b66f6940819629a2ccf820 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20230711-composable-stable-pool-v5 | polygon | pause() | 0x91ce64502d2ca1550ea11bbfcdc5a965e2646c09818313a851c0eeb71cedbb1d | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230711-composable-stable-pool-v5 | polygon | setSwapFeePercentage(uint256) | 0x8e9ee99533bd178c1573e352145db0eeb33e8722b92d1d6fbc1de799b41f180c | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | polygon | startAmplificationParameterUpdate(uint256,uint256) | 0x38db2dc993d272984aa505f0b59a8b6aac970193c0e50bfa5e8ba503c053a2a5 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | polygon | stopAmplificationParameterUpdate() | 0xbb90aa662dea36fc9db5c97eafcf6a4379941e6e2675d8c1bc1416a42b77db25 | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | zkevm | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230711-composable-stable-pool-v5 | zkevm | pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230711-composable-stable-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | zkevm | stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | \ No newline at end of file diff --git a/BIPs/2023/2023-W28/BIP-353/zkevm.json b/BIPs/2023/2023-W28/BIP-353/zkevm.json new file mode 100644 index 000000000..d418dc1e4 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-353/zkevm.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656, 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604, 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e, 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85, 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313, 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-354.json b/BIPs/2023/2023-W28/BIP-354.json new file mode 100644 index 000000000..8465f6710 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-354.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689190547700, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x49f626db5fa107f38a786017e558647d6f86f0df7ef5cd77f8947dc89d86770f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9e3f4FB69058244066801404e50889592d33cA11", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-354.report.txt b/BIPs/2023/2023-W28/BIP-354.report.txt new file mode 100644 index 000000000..70606ceba --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-354.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W28/BIP-354.json +COMMIT: `a810f6ff9177a6260e2d4ec7cd71aefd506da61a` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| addGauge | 0x4cbde5c4b4b53ebe4af4adb85404725985406163000000000000000000000595 | B-ETHx/bb-a-WETH | 0x4CbdE5C4B4B53EBE4aF4adB85404725985406163 | 1500 | 0x9e3f4FB69058244066801404e50889592d33cA11 | 0.04% | 100.0% | mainnet | BIP-354 | N/A | ++----------+--------------------------------------------------------------------+-------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-355.json b/BIPs/2023/2023-W28/BIP-355.json new file mode 100644 index 000000000..f7dbc18bd --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-355.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689191060235, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa194f1b929eba2b47aa43e96b5956aeac8c0de7c26834e9b90cf74b795a11a1f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x882f961Def46deadAcf31798B295834a5b6d0c86", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-355.report.txt b/BIPs/2023/2023-W28/BIP-355.report.txt new file mode 100644 index 000000000..7fc503a87 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-355.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W28/BIP-355.json +COMMIT: `0534c7e1f9ea30179835ddea7026b98a9266d91a` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| addGauge | 0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef3300000000000000000000058d | R-bb-s-DAI-BLP | 0xbF2ef8bDC2fC0F3203B3a01778E3ec5009AEEf33 | 100 | 0x882f961Def46deadAcf31798B295834a5b6d0c86 | 0.05% | 100.0% | mainnet | BIP-355 | N/A | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-356-Kill-affected-csp-and-weighted-pool-gauges.report.txt.report.txt b/BIPs/2023/2023-W28/BIP-356-Kill-affected-csp-and-weighted-pool-gauges.report.txt.report.txt new file mode 100644 index 000000000..22ab3d14e --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-356-Kill-affected-csp-and-weighted-pool-gauges.report.txt.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/2023-W28/BIP-356-Kill-affected-csp-and-weighted-pool-gauges.json.json +COMMIT: `385449b4ff0639bd7df1d4767c1eeb55b9c8c8a4` +CHAIN(S): `polygon, arbitrum, mainnet, zkevm` +``` ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+-------------------+ +| killGauge() | 0x01990f1e6f7f32296f125ee9469705c1c070054d000000000000000000000461 | Stafi rETH/WETH | 0x01990f1e6f7F32296f125eE9469705C1C070054D | 50 | 0x870Cd189889C1117b33bc8c94394a7477d4EB6fa | 0.04% | 10.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb28600000000000000000000000d | bb-o-USD | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 | 3000 | 0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58 | 0.005% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x36a0ee903841584f47e3c774b59e0cbfba46080f000000000000000000000b0a | B-ankrMATIC-MATIC-Stable | 0x36A0ee903841584f47E3c774B59E0CbFBA46080F | 50 | 0x21483F79a1aE94536Dc1d5dDfC6f591fB3B430Df | 0.04% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0xeb567dde03f3da7fe185bdacd5ab495ab220769d000000000000000000000548 | ankrETH-bb-a-WETH-BPT | 0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d | 100 | 0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da | 0.04% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0xec3626fee40ef95e7c0cbb1d495c8b67b34d398300000000000000000000053d | B-S-UZD-BB-A-USD | 0xeC3626fEe40EF95e7C0CBb1D495C8B67B34D3983 | 500 | 0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0 | 0.04% | 2.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4000200000000000000000b44 | 50stMATIC-BPT-50bbamUSD | 0x7F4f4942F2a14B6AB7B08b10ada1AAcede4EE8D4 | N/A | 0x02DFcC6ca6611cCBDCe51049a332afDB91465584 | 0.05% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x20b156776114e8a801e9767d90c6ccccc8adf398000000000000000000000499 | bb-yv-USD | 0x20b156776114E8a801e9767D90c6ccCCc8Adf398 | 2000 | 0x29C6361Af40fc1B6585ce0885319511dF4450a8E | 0.005% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0xcaa052584b462198a5a9356c28bce0634d65f65c0000000000000000000004db | bb-ma2-USD | 0xCAa052584b462198A5a9356c28bcE0634D65f65C | 2000 | 0x254f3a52Ba9e0cac4E32B648d129529622D1A46c | 0.005% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0x779d01f939d78a918a3de18cc236ee89221dfd4e0000000000000000000004c7 | bb-s-USD | 0x779d01F939D78a918A3de18cC236ee89221dfd4E | 2000 | 0xFd29298041eA355cF7e15652689F2865443C3144 | 0.005% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0x8fd39252d683fdb60bddd4df4b53c9380b496d59000200000000000000000b45 | 50wstETH-BPT-50bbamUSD | 0x8fd39252d683fDB60BDDD4DF4B53C9380B496D59 | N/A | 0xCDb532170f8B524D047287bFEfAcd0cC02441b4A | 0.05% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352 | bb-rf-USD-BPT | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a | 2000 | 0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d | 0.005% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0xfcf77141908aa22bfeac216123c5feb2531f373e00000000000000000000054a | B-rETH-swETH-STABLE | 0xFCF77141908Aa22bfEAc216123C5FEb2531f373e | 100 | 0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05 | 0.04% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63000200000000000000000412 | 50wstETH-BPT-50bbaUSD | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | N/A | 0xd40a3C414Bb6f82fC5625e32895F49E53220f73b | 0.01% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x6f34a44fce1506352a171232163e7716dd073ade000200000000000000000015 | B-rETH-bboUSD | 0x6F34a44FCe1506352A171232163E7716Dd073ade | N/A | 0x7949426d750FEFC25754F149B2FB446B60c39387 | 0.3% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x68a69c596b3839023c0e08d09682314f582314e5000200000000000000000011 | 50wstETH-BPT-50-bboUSD | 0x68a69c596B3839023C0e08D09682314F582314e5 | N/A | 0x227534d3F9aE72Cb5B31E1d0A27bE1A2859C6cC8 | 0.3% | 100.0% | L0 sidechain | BIP-356 | N/A | ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-356.json b/BIPs/2023/2023-W28/BIP-356.json new file mode 100644 index 000000000..eebddaf01 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-356.json @@ -0,0 +1,270 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689097547674, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xead582b3dec8674ab9912133528e061509e426ef3ec051984676c0d09685b5f2" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x870Cd189889C1117b33bc8c94394a7477d4EB6fa", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21483F79a1aE94536Dc1d5dDfC6f591fB3B430Df", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x02DFcC6ca6611cCBDCe51049a332afDB91465584", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x29C6361Af40fc1B6585ce0885319511dF4450a8E", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x254f3a52Ba9e0cac4E32B648d129529622D1A46c", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xFd29298041eA355cF7e15652689F2865443C3144", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xCDb532170f8B524D047287bFEfAcd0cC02441b4A", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd40a3C414Bb6f82fC5625e32895F49E53220f73b", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7949426d750FEFC25754F149B2FB446B60c39387", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x227534d3F9aE72Cb5B31E1d0A27bE1A2859C6cC8", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-356.report.txt b/BIPs/2023/2023-W28/BIP-356.report.txt new file mode 100644 index 000000000..11d9dc912 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-356.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/2023-W28/BIP-356.json +COMMIT: `5aae5421196e927e59832364089b43af0a43485d` +CHAIN(S): `arbitrum, zkevm, mainnet, polygon` +``` ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+-------------------+ +| killGauge() | 0x01990f1e6f7f32296f125ee9469705c1c070054d000000000000000000000461 | Stafi rETH/WETH | 0x01990f1e6f7F32296f125eE9469705C1C070054D | 50 | 0x870Cd189889C1117b33bc8c94394a7477d4EB6fa | 0.04% | 10.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb28600000000000000000000000d | bb-o-USD | 0xe274c9deb6ed34cfe4130F8D0A8a948deA5bB286 | 3000 | 0x48799A2B0b9ec11E4fa158c781AD8bFAbB892D58 | 0.005% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x36a0ee903841584f47e3c774b59e0cbfba46080f000000000000000000000b0a | B-ankrMATIC-MATIC-Stable | 0x36A0ee903841584f47E3c774B59E0CbFBA46080F | 50 | 0x21483F79a1aE94536Dc1d5dDfC6f591fB3B430Df | 0.04% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0xeb567dde03f3da7fe185bdacd5ab495ab220769d000000000000000000000548 | ankrETH-bb-a-WETH-BPT | 0xEb567DDE03F3DA7FE185BDaCD5AB495AB220769d | 100 | 0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da | 0.04% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0xec3626fee40ef95e7c0cbb1d495c8b67b34d398300000000000000000000053d | B-S-UZD-BB-A-USD | 0xeC3626fEe40EF95e7C0CBb1D495C8B67B34D3983 | 500 | 0x21cf9324D5B1AC739B7E6922B69500F1eEDB52e0 | 0.04% | 2.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0x7f4f4942f2a14b6ab7b08b10ada1aacede4ee8d4000200000000000000000b44 | 50stMATIC-BPT-50bbamUSD | 0x7F4f4942F2a14B6AB7B08b10ada1AAcede4EE8D4 | N/A | 0x02DFcC6ca6611cCBDCe51049a332afDB91465584 | 0.05% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x20b156776114e8a801e9767d90c6ccccc8adf398000000000000000000000499 | bb-yv-USD | 0x20b156776114E8a801e9767D90c6ccCCc8Adf398 | 2000 | 0x29C6361Af40fc1B6585ce0885319511dF4450a8E | 0.005% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0xcaa052584b462198a5a9356c28bce0634d65f65c0000000000000000000004db | bb-ma2-USD | 0xCAa052584b462198A5a9356c28bcE0634D65f65C | 2000 | 0x254f3a52Ba9e0cac4E32B648d129529622D1A46c | 0.005% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0x779d01f939d78a918a3de18cc236ee89221dfd4e0000000000000000000004c7 | bb-s-USD | 0x779d01F939D78a918A3de18cC236ee89221dfd4E | 2000 | 0xFd29298041eA355cF7e15652689F2865443C3144 | 0.005% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0x8fd39252d683fdb60bddd4df4b53c9380b496d59000200000000000000000b45 | 50wstETH-BPT-50bbamUSD | 0x8fd39252d683fDB60BDDD4DF4B53C9380B496D59 | N/A | 0xCDb532170f8B524D047287bFEfAcd0cC02441b4A | 0.05% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x077794c30afeccdf5ad2abc0588e8cee7197b71a000000000000000000000352 | bb-rf-USD-BPT | 0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a | 2000 | 0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d | 0.005% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0xfcf77141908aa22bfeac216123c5feb2531f373e00000000000000000000054a | B-rETH-swETH-STABLE | 0xFCF77141908Aa22bfEAc216123C5FEb2531f373e | 100 | 0xFa58735ceEAa83a7c9c13CA771F12378D40D7b05 | 0.04% | 100.0% | mainnet | BIP-356 | N/A | +| killGauge() | 0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63000200000000000000000412 | 50wstETH-BPT-50bbaUSD | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | N/A | 0xd40a3C414Bb6f82fC5625e32895F49E53220f73b | 0.01% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x6f34a44fce1506352a171232163e7716dd073ade000200000000000000000015 | B-rETH-bboUSD | 0x6F34a44FCe1506352A171232163E7716Dd073ade | N/A | 0x7949426d750FEFC25754F149B2FB446B60c39387 | 0.3% | 100.0% | L0 sidechain | BIP-356 | N/A | +| killGauge() | 0x68a69c596b3839023c0e08d09682314f582314e5000200000000000000000011 | 50wstETH-BPT-50-bboUSD | 0x68a69c596B3839023C0e08D09682314F582314e5 | N/A | 0x227534d3F9aE72Cb5B31E1d0A27bE1A2859C6cC8 | 0.3% | 100.0% | L0 sidechain | BIP-356 | N/A | ++-------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+--------+--------+--------------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-357.json b/BIPs/2023/2023-W28/BIP-357.json new file mode 100644 index 000000000..520104153 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-357.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689191060235, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa194f1b929eba2b47aa43e96b5956aeac8c0de7c26834e9b90cf74b795a11a1f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x70892E4355d0E04A3d19264E93c64C401520f3A4", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-357.report.txt b/BIPs/2023/2023-W28/BIP-357.report.txt new file mode 100644 index 000000000..bd42579d6 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-357.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W28/BIP-357.json +COMMIT: `585b8400c9372f074155894eabf0190ba6010a8f` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| addGauge | 0x3fa8c89704e5d07565444009e5d9e624b40be813000000000000000000000599 | GHO/LUSD | 0x3FA8C89704e5d07565444009e5d9e624B40Be813 | 100 | 0x70892E4355d0E04A3d19264E93c64C401520f3A4 | 0.05% | 100.0% | mainnet | BIP-357 | N/A | ++----------+--------------------------------------------------------------------+----------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-358.json b/BIPs/2023/2023-W28/BIP-358.json new file mode 100644 index 000000000..760162fde --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-358.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689191060235, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa194f1b929eba2b47aa43e96b5956aeac8c0de7c26834e9b90cf74b795a11a1f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6EE63656BbF5BE3fdF9Be4982BF9466F6a921b83", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-358.report.txt b/BIPs/2023/2023-W28/BIP-358.report.txt new file mode 100644 index 000000000..cebc7528a --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-358.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W28/BIP-358.json +COMMIT: `8845d31bb7780df6569eb173088ce6cacc540ee0` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+---------+-------------------+ +| addGauge | 0x7d98f308db99fdd04bbf4217a4be8809f38faa6400020000000000000000059b | 80wstETH/20GHO | 0x7D98f308Db99FDD04BbF4217a4be8809F38fAa64 | N/A | 0x6EE63656BbF5BE3fdF9Be4982BF9466F6a921b83 | 0.3% | 100.0% | mainnet | BIP-358 | N/A | ++----------+--------------------------------------------------------------------+----------------+--------------------------------------------+---------+--------------------------------------------+------+--------+---------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-359.json b/BIPs/2023/2023-W28/BIP-359.json new file mode 100644 index 000000000..23faaa8b2 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-359.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689191060235, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa194f1b929eba2b47aa43e96b5956aeac8c0de7c26834e9b90cf74b795a11a1f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-359.report.txt b/BIPs/2023/2023-W28/BIP-359.report.txt new file mode 100644 index 000000000..8dd3c9ed9 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-359.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W28/BIP-359.json +COMMIT: `9fea96ea39e66dd92c746913bdeb2f9663c0da93` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| addGauge | 0xb2b918f2d628b4c8ff237b0a1c6ac3bea222fedc00020000000000000000059c | 50GHO/50OHM | 0xB2B918f2d628b4c8ff237b0A1c6aC3Bea222FEDc | N/A | 0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9 | 0.05% | 100.0% | mainnet | BIP-359 | N/A | ++----------+--------------------------------------------------------------------+-------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-360.json b/BIPs/2023/2023-W28/BIP-360.json new file mode 100644 index 000000000..bae0b7fa7 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-360.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689191060235, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa194f1b929eba2b47aa43e96b5956aeac8c0de7c26834e9b90cf74b795a11a1f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-360.report.txt b/BIPs/2023/2023-W28/BIP-360.report.txt new file mode 100644 index 000000000..333a8ddc9 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-360.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W28/BIP-360.json +COMMIT: `33a4e7df7d7c773560873815113b907c7998ff97` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| addGauge | 0xc2b021133d1b0cf07dba696fd5dd89338428225b000000000000000000000598 | GHO/bb-a-USD | 0xc2B021133D1b0cF07dba696fd5DD89338428225B | 100 | 0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2 | 0.05% | 100.0% | mainnet | BIP-360 | N/A | ++----------+--------------------------------------------------------------------+--------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-361.json b/BIPs/2023/2023-W28/BIP-361.json new file mode 100644 index 000000000..d39101907 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-361.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689191060235, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa194f1b929eba2b47aa43e96b5956aeac8c0de7c26834e9b90cf74b795a11a1f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5c23661E747F84E0c71d782e5f1513126041734B", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-361.report.txt b/BIPs/2023/2023-W28/BIP-361.report.txt new file mode 100644 index 000000000..8a267eba4 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-361.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W28/BIP-361.json +COMMIT: `46cf9b3f3ddce5deaf8dbda787b71804d60ce67b` +CHAIN(S): `mainnet` +``` ++----------+--------------------------------------------------------------------+---------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+---------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +| addGauge | 0x9a172e1cb0e99f7e6dcc4c52e4655e8f337d5c0000000000000000000000059a | GHO/MAI | 0x9A172e1cb0E99f7E6DCc4c52e4655e8f337d5c00 | 100 | 0x5c23661E747F84E0c71d782e5f1513126041734B | 0.05% | 100.0% | mainnet | BIP-361 | N/A | ++----------+--------------------------------------------------------------------+---------+--------------------------------------------+---------+--------------------------------------------+-------+--------+---------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-363.json b/BIPs/2023/2023-W28/BIP-363.json new file mode 100644 index 000000000..410c083f7 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-363.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689208074750, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa9cbdb7465ad462486664647ecdc748d834fb5347efd3d4ac018aabac7eba46e" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD2C2b1C0F8Ad6E653eD7064fa7bAd7a22De8B249", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCe540832f7c790d25345Aa19FB1Db3cfDEA04611", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-363.report.txt b/BIPs/2023/2023-W28/BIP-363.report.txt new file mode 100644 index 000000000..bf83f0c3c --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-363.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W28/BIP-363.json +COMMIT: `44a7c6a77f8b9998b64cbf88ad48078485156e02` +CHAIN(S): `arbitrum` +``` ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +| addGauge | 0x26e5c5e2b48815b59640a1a82ac3c2249188daf4000000000000000000000476 | alETH/wstETH-BPT | 0x26e5C5e2b48815b59640a1a82ac3C2249188Daf4 | 100 | 0xD2C2b1C0F8Ad6E653eD7064fa7bAd7a22De8B249 | 0.04% | 100.0% | L0 sidechain | BIP-363 | N/A | +| addGauge | 0xfa92d9dd808d0e8d68079bdc7f01e74658e1ef15000000000000000000000477 | alETH/rETH-BPT | 0xfA92D9Dd808D0E8D68079BDc7f01E74658E1EF15 | 100 | 0xCe540832f7c790d25345Aa19FB1Db3cfDEA04611 | 0.04% | 100.0% | L0 sidechain | BIP-363 | N/A | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-364.json b/BIPs/2023/2023-W28/BIP-364.json new file mode 100644 index 000000000..a6ff8f97e --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-364.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689208827946, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x07c204eb7efb5c0d634bcf146fca3c25105d787be51da3726fb94abd69bc2077" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6f06b425e1bc11FC486C308c22e503d188525F06", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-364.report.txt b/BIPs/2023/2023-W28/BIP-364.report.txt new file mode 100644 index 000000000..a0937e2cc --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-364.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W28/BIP-364.json +COMMIT: `8bc54d902f0339ad12e642ce301691287b504b6b` +CHAIN(S): `polygon` +``` ++----------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +| addGauge | 0xb266ac3b7c98d7bcb28731dac0ef42dba1b276be000000000000000000000be4 | truMATIC-bb-a-WMATIC-BPT | 0xb266aC3b7C98D7Bcb28731Dac0eF42DbA1b276bE | 1500 | 0x6f06b425e1bc11FC486C308c22e503d188525F06 | 0.01% | 100.0% | L0 sidechain | BIP-364 | N/A | ++----------+--------------------------------------------------------------------+--------------------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W28/BIP-365A.json b/BIPs/2023/2023-W28/BIP-365A.json new file mode 100644 index 000000000..c70675d82 --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-365A.json @@ -0,0 +1,168 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689214038960, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x59e19feb77a48f3022a7c768c7dd78a88b26b25d98a01bc2ca0445f530adcb23" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0021e01B9fAb840567a8291b864fF783894EabC6", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x21eC388000B5BA5D9e3DF3848EA0c1f58e054Af7", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x29488df9253171AcD0a0598FDdA92C5F6E767a38", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3eFd3E18504dC213188Ed2b694F886A305a6e5ed", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb7b9B9D35e7F9E324C762235FB69848175C03A19", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb12ADA23eE766bd6b596E2bE556ea2046758b87c", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x80aed5C5C683FEC86817C98da334DD72424E7297", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W28/BIP-365A.report.txt b/BIPs/2023/2023-W28/BIP-365A.report.txt new file mode 100644 index 000000000..6640c458a --- /dev/null +++ b/BIPs/2023/2023-W28/BIP-365A.report.txt @@ -0,0 +1,18 @@ +File name: BIPs/2023-W28/BIP-365A.json +COMMIT: `7de76869e12e5ae0df6d9918c49e1c8f6446c4c6` +CHAIN(S): `polygon, mainnet, arbitrum` +``` ++----------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+-------------------+ +| addGauge | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | wstETH-rETH-sfrxETH-BPT | 0x42ED016F826165C2e5976fe5bC3df540C5aD0Af7 | 1000 | 0x0021e01B9fAb840567a8291b864fF783894EabC6 | 0.01% | 100.0% | mainnet | BIP-365 | N/A | +| addGauge | 0xc443c15033fcb6cf72cc24f1bda0db070ddd9786000000000000000000000593 | bb-a-USD | 0xc443C15033FCB6Cf72cC24f1BDA0Db070DdD9786 | 3000 | 0x21eC388000B5BA5D9e3DF3848EA0c1f58e054Af7 | 0.0001% | 100.0% | mainnet | BIP-365 | N/A | +| addGauge | 0x41503c9d499ddbd1dcdf818a1b05e9774203bf46000000000000000000000594 | wstETH-bb-a-WETH-BPT | 0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46 | 1500 | 0x29488df9253171AcD0a0598FDdA92C5F6E767a38 | 0.0001% | 100.0% | mainnet | BIP-365 | N/A | +| addGauge | 0xd7edb56f63b2a0191742aea32df1f98ca81ed9c600000000000000000000058e | B-wstETH/bb-ma3-weth | 0xd7edb56F63b2a0191742aEa32DF1F98ca81ed9c6 | 1500 | 0x3eFd3E18504dC213188Ed2b694F886A305a6e5ed | 0.001% | 100.0% | mainnet | BIP-365 | N/A | +| addGauge | 0xac2cae8d2f78a4a8f92f20dbe74042cd0a8d5af3000000000000000000000be2 | stMATIC-bb-a-WMATIC-BPT | 0xAC2CaE8D2f78A4a8F92f20dbe74042Cd0a8d5Af3 | 2000 | 0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7 | 0.01% | 100.0% | L0 sidechain | BIP-365 | N/A | +| addGauge | 0x402cfdb7781fa85d52f425352661128250b79e12000000000000000000000be3 | MaticX-bb-a-WMATIC-BPT | 0x402cFDb7781fa85d52F425352661128250B79e12 | 2000 | 0xb7b9B9D35e7F9E324C762235FB69848175C03A19 | 0.01% | 100.0% | L0 sidechain | BIP-365 | N/A | +| addGauge | 0xbe0f30217be1e981add883848d0773a86d2d2cd4000000000000000000000471 | rETH-bb-a-WETH-BPT | 0xBe0f30217BE1e981aDD883848D0773A86d2d2CD4 | 1500 | 0xb12ADA23eE766bd6b596E2bE556ea2046758b87c | 0.01% | 100.0% | L0 sidechain | BIP-365 | N/A | +| addGauge | 0x45c4d1376943ab28802b995acffc04903eb5223f000000000000000000000470 | wstETH-bb-a-WETH-BPT | 0x45C4D1376943Ab28802B995aCfFC04903Eb5223f | 2000 | 0x80aed5C5C683FEC86817C98da334DD72424E7297 | 0.01% | 100.0% | L0 sidechain | BIP-365 | N/A | +| addGauge | 0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389000000000000000000000475 | bb-a-USD | 0xc6EeE8cb7643eC2F05F46d569e9eC8EF8b41b389 | 3000 | 0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6 | 0.01% | 100.0% | L0 sidechain | BIP-365 | N/A | ++----------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+-------------------+ +``` diff --git a/BIPs/2023/2023-W29/BIP-366A.json b/BIPs/2023/2023-W29/BIP-366A.json new file mode 100644 index 000000000..f671f97bc --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-366A.json @@ -0,0 +1,457 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689679919270, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x4714ef37c75e41a9e4eb442edcbdc9a03a2a9daa469a9cece540888e99abe693" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE35f0152f0d49fE8E386E5c42B656321ffB0d477", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0A4825154bCFD493d15777184d01B93e8115215a", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x06d27c0FE5AbF6020bf56E47c72Ca002dD5d9f54", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5669736FD1dF3572f9D519FcCf7536A750CFAc62", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe9E6E9597123034Fa3fc73D482852e18EdF9c282", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3A7Ed8916Ebb9131966b9b3af3cd8B9adcc53559", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7a4e71a8A33d3b385279079c503ca93905dd553e", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x774D0F67DcFA5568cA435c70fbA272C64352d859", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x735B275a567F6c921c82F83D4515beC1F72038D3", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x224989bC31286f0E6Dd6F32C0E475BbD4579A976", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xEE3cc827EF3e7a00a728Fd52199cd5A6e336361D", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1EcB261dc3496675c54514e44deA2a5115aEcb38", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdb218DC1394BbD787bb059dBd9F7E41063e16374", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCe3a024bAF36C91d315722B093928020a4F56622", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBc771929359B1A6386801705e8D185205d8f1CBF", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x95Ee4c90aC8AaFbAe0DfE18F08a290b59eacbc1b", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-366A.report.txt b/BIPs/2023/2023-W29/BIP-366A.report.txt new file mode 100644 index 000000000..e8b5d92b8 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-366A.report.txt @@ -0,0 +1,27 @@ +File name: BIPs/2023-W29/BIP-366A.json +COMMIT: `af4d0f9def6f830dd93d1d12cd732d169367c5d9` +CHAIN(S): `gnosis, arbitrum, mainnet, polygon` +``` ++----------+----------+--------------------------------------------------------------------+----------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+----------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +| addGauge | mainnet | 0x9b692f571b256140a39a34676bffa30634c586e100000000000000000000059d | bb-i-USD | 2000 | 0xE35f0152f0d49fE8E386E5c42B656321ffB0d477 | 0.001% | 100.0% | mainnet | BIP-366 | N/A | +| addGauge | mainnet | 0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e | uniETH-WETH | 50 | 0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5 | 0.04% | 100.0% | mainnet | BIP-366 | N/A | +| addGauge | mainnet | 0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a0300000000000000000000059f | vETH/WETH BPT | 50 | 0x0A4825154bCFD493d15777184d01B93e8115215a | 0.04% | 100.0% | mainnet | BIP-366 | N/A | +| addGauge | mainnet | 0x4c81255cc9ed7062180ea99962fe05ac0d57350b0000000000000000000005a3 | cbETH-bb-a-WETH-BPT | 1500 | 0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07 | 0.001% | 100.0% | mainnet | BIP-366 | N/A | +| addGauge | mainnet | 0x1bd2f176a812e312077bca87e37c08432bb09f3e0000000000000000000005a1 | qETH-bb-a-WETH-BPT | 100 | 0x06d27c0FE5AbF6020bf56E47c72Ca002dD5d9f54 | 0.04% | 100.0% | mainnet | BIP-366 | N/A | +| addGauge | mainnet | 0xae8535c23afedda9304b03c68a3563b75fc8f92b0000000000000000000005a0 | swETH-bb-a-WETH-BPT | 500 | 0x5669736FD1dF3572f9D519FcCf7536A750CFAc62 | 0.001% | 100.0% | mainnet | BIP-366 | N/A | +| addGauge | mainnet | 0xe8c56405bc405840154d9b572927f4197d110de10000000000000000000005a4 | rETH/bbaWETH BPT | 1500 | 0xe9E6E9597123034Fa3fc73D482852e18EdF9c282 | 0.001% | 100.0% | mainnet | BIP-366 | N/A | +| addGauge | gnosis | 0xba1a5b19d09a79dada039b1f974015c5a989d5fd000100000000000000000046 | agUSD-agWETH-agWBTC | N/A | 0x3A7Ed8916Ebb9131966b9b3af3cd8B9adcc53559 | 0.1% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | gnosis | 0x4de21b365d6543661d0e105e579a34b963862497000200000000000000000045 | 50bbagGNO-50bbagUSD | N/A | 0x7a4e71a8A33d3b385279079c503ca93905dd553e | 0.1% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | gnosis | 0xe15cac1df3621e001f76210ab12a7f1a1691481f000000000000000000000044 | bb-ag-USD | 2000 | 0x774D0F67DcFA5568cA435c70fbA272C64352d859 | 0.005% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | polygon | 0x9321e2250767d79bab5aa06daa8606a2b3b7b4c5000000000000000000000bf4 | bb-t-USD | 2000 | 0x735B275a567F6c921c82F83D4515beC1F72038D3 | 0.005% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | polygon | 0x03090a9811181a2afe830a3a0b467698ccf3a8b1000000000000000000000bf5 | bb-am-usd | 3000 | 0x224989bC31286f0E6Dd6F32C0E475BbD4579A976 | 0.01% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | polygon | 0xf42ed61450458ee4620f5ef4f29adb25a6ef0fb6000000000000000000000bf8 | frxETH-bb-a-WETH | 120 | 0xEE3cc827EF3e7a00a728Fd52199cd5A6e336361D | 0.04% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | polygon | 0xd2f3b9e67c69762dd1c88f1d3dadd1649a190761000200000000000000000bf7 | 2BRLUSD-boosted | N/A | 0x1EcB261dc3496675c54514e44deA2a5115aEcb38 | 0.1% | 2.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | polygon | 0xa8bf1c584519be0184311c48adbdc4c15cb2e8c1000000000000000000000bf6 | FRAX-bb-am-USD | 2000 | 0xdb218DC1394BbD787bb059dBd9F7E41063e16374 | 0.005% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | arbitrum | 0x00fcd3d55085e998e291a0005cedecf58ac14c4000020000000000000000047f | 50STG-50bbaUSD | N/A | 0xCe3a024bAF36C91d315722B093928020a4F56622 | 1.0% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | arbitrum | 0xbbf9d705b75f408cfcaee91da32966124d2c6f7d00000000000000000000047e | DOLA/bbaUSD-BPT | 200 | 0xBc771929359B1A6386801705e8D185205d8f1CBF | 0.04% | 100.0% | L0 sidechain | BIP-366 | N/A | +| addGauge | polygon | 0xab269164a10fab22bc87c39946da06c870b172d6000000000000000000000bfc | wstETH-bb-a-WETH-BPT | 1500 | 0x95Ee4c90aC8AaFbAe0DfE18F08a290b59eacbc1b | 0.01% | 100.0% | L0 sidechain | BIP-366 | N/A | ++----------+----------+--------------------------------------------------------------------+----------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W29/BIP-366B.report.txt b/BIPs/2023/2023-W29/BIP-366B.report.txt new file mode 100644 index 000000000..35bd4341a --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-366B.report.txt @@ -0,0 +1,27 @@ +File name: BIPs/2023-W29/BIP-366B.json +COMMIT: `af4d0f9def6f830dd93d1d12cd732d169367c5d9` +CHAIN(S): `gnosis, arbitrum, mainnet, polygon` +``` ++-------------+----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++-------------+----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+----------+ +| killGauge() | mainnet | 0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa000000000000000000000489 | bb-i-USD | 0x60683B05e9a39E3509D8fdb9C959f23170f8A0fa | 2000 | 0x33BcAa8A390e6DcF2f18AE5fDd9e38fD248219eB | 0.0001% | 100.0% | mainnet | BIP-366 | N/A | +| killGauge() | mainnet | 0xbfce47224b4a938865e3e2727dc34e0faa5b1d82000000000000000000000527 | uniETH-WETH | 0xbFCe47224B4A938865E3e2727DC34E0fAA5b1D82 | 50 | 0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA | 0.04% | 2.0% | mainnet | BIP-366 | N/A | +| killGauge() | mainnet | 0x156c02f3f7fef64a3a9d80ccf7085f23cce91d76000000000000000000000570 | vETH/WETH BPT | 0x156C02f3f7fEf64a3A9D80CCF7085f23ccE91D76 | 50 | 0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434 | 0.04% | 10.0% | mainnet | BIP-366 | N/A | +| killGauge() | mainnet | 0x9001cbbd96f54a658ff4e6e65ab564ded76a543100000000000000000000050a | cbETH-bb-a-WETH-BPT | 0x9001cBbD96F54a658FF4e6E65AB564DED76a5431 | 700 | 0x70c6A653e273523FADfB4dF99558737906c230c6 | 0.0001% | 100.0% | mainnet | BIP-366 | N/A | +| killGauge() | mainnet | 0x04248aabca09e9a1a3d5129a7ba05b7f17de768400000000000000000000050e | qETH-bb-a-WETH-BPT | 0x04248AAbca09E9a1a3D5129a7ba05b7F17DE7684 | 100 | 0xC764B55852F8849Ae69923e45ce077A576bF9a8d | 0.04% | 2.0% | mainnet | BIP-366 | N/A | +| killGauge() | mainnet | 0x02d928e68d8f10c0358566152677db51e1e2dc8c00000000000000000000051e | swETH-bb-a-WETH-BPT | 0x02D928E68D8F10C0358566152677Db51E1e2Dc8C | 500 | 0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5 | 0.0001% | 100.0% | mainnet | BIP-366 | N/A | +| killGauge() | mainnet | 0x481c5fc05d63a58aa2f0f2aa417c021b5d419cb200000000000000000000056a | rETH/bbaWETH BPT | 0x481C5fc05D63a58AA2f0F2aA417C021B5d419cB2 | 500 | 0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63 | 0.0001% | 100.0% | mainnet | BIP-366 | N/A | +| killGauge() | gnosis | 0x66f33ae36dd80327744207a48122f874634b3ada000100000000000000000013 | agUSD-agWETH-agWBTC | 0x66F33Ae36dD80327744207a48122F874634B3adA | N/A | 0x21b2Ef3DC22B7bd4634205081c667e39742075E2 | 0.1% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | gnosis | 0xb973ca96a3f0d61045f53255e319aedb6ed49240000200000000000000000011 | 50bbagGNO-50bbagUSD | 0xB973Ca96a3f0D61045f53255E319AEDb6ED49240 | N/A | 0xcB2c2AF6c3E88b4a89aa2aae1D7C8120EEe9Ad0e | 0.1% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | gnosis | 0xfedb19ec000d38d92af4b21436870f115db22725000000000000000000000010 | bb-ag-USD | 0xFEdb19Ec000d38d92Af4B21436870F115db22725 | 2000 | 0x3B6A85B5e1e6205ebF4d4eabf147D10e8e4bf0A5 | 0.005% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | polygon | 0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a000000000000000000000ace | bb-t-USD | 0xb3d658d5b95BF04E2932370DD1FF976fe18dd66A | 2000 | 0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0 | 0.005% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | polygon | 0xb371aa09f5a110ab69b39a84b5469d29f9b22b76000000000000000000000b37 | bb-am-USD | 0xb371aA09F5a110AB69b39A84B5469d29f9b22B76 | 2000 | 0x6b641e334f63f0D882538Fe189efC0702d961696 | 0.005% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | polygon | 0xd00f9ca46ce0e4a63067c4657986f0167b0de1e5000000000000000000000b42 | frxETH-bb-a-WETH | 0xD00f9Ca46ce0E4A63067c4657986f0167b0De1E5 | 120 | 0x416d15C36c6DaAd2b9410B79aE557e6F07DcB642 | 0.04% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | arbitrum | 0x567ecfcb22205d279bb8eed3e066989902bf03d5000000000000000000000452 | DOLA/bbaUSD-BPT | 0x567ECfCB22205D279BB8Eed3E066989902bF03D5 | 200 | 0xacE0D479040231e3c6b17479cFd4444182d521d4 | 0.04% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | arbitrum | 0xd3d5d45f4edf82ba0dfaf061d230766032a10e07000200000000000000000413 | 50STG-50bbaUSD | 0xD3D5d45f4Edf82ba0dFaf061d230766032a10e07 | N/A | 0x8204b749B808818DEb7957DbD030ceEA44D1FE18 | 1.0% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | polygon | 0x8fbd0f8e490735cfc3abf4f29cbddd5c3289b9a7000000000000000000000b5b | FRAX-bb-am-USD | 0x8fbd0F8e490735CFc3AbF4f29cBdDD5c3289b9A7 | 2000 | 0xecF0a26a290cbf3DDBAB7eC5Fb44Ef5A294cAc18 | 0.005% | 100.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | polygon | 0x3efb91c4f9b103ee45885695c67794591916f34e000200000000000000000b43 | 2BRL-bbamUSD | 0x3Efb91C4F9B103Ee45885695C67794591916F34E | N/A | 0xBAdF0c8702B7Cb06bBEC351d18071804759e312c | 0.1% | 2.0% | L0 sidechain | BIP-366 | N/A | +| killGauge() | polygon | 0x4a77ef015ddcd972fd9ba2c7d5d658689d090f1a000000000000000000000b38 | wstETH-bb-a-WETH-BPT | 0x4a77eF015ddcd972fd9BA2C7D5D658689D090f1A | 1000 | 0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f | 0.005% | 100.0% | L0 sidechain | BIP-366 | N/A | ++-------------+----------+--------------------------------------------------------------------+----------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W29/BIP-367-1.json b/BIPs/2023/2023-W29/BIP-367-1.json new file mode 100644 index 000000000..9afd8746f --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-367-1.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689699826582, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "createdFromOwnerAddress": "", + "checksum": "0xad67dbcac2b7f439e3330567c64de216409caec1d8b8f55ecfb571fffafe6920" + }, + "transactions": [ + { + "to": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "oldOwner": "0x815d654E930E840D0E0Ee1B18FFc8Fb4ddA4c6B3", + "newOwner": "0xB5485e0F543eE6e01e221A57e58ED95268215Ac9" + } + }, + { + "to": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x6bB4720473d4D7133f944785e5EE1A650C07f34e", + "newOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-367-100.json b/BIPs/2023/2023-W29/BIP-367-100.json new file mode 100644 index 000000000..489ff5d36 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-367-100.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1689731863426, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "createdFromOwnerAddress": "", + "checksum": "0xd7ad5e448c56b83e7854c1a5dfce539076fee87a9588ec099c5cc1586617d7d7" + }, + "transactions": [ + { + "to": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x6bB4720473d4D7133f944785e5EE1A650C07f34e", + "newOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264" + } + }, + { + "to": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "oldOwner": "0x815d654E930E840D0E0Ee1B18FFc8Fb4ddA4c6B3", + "newOwner": "0xB5485e0F543eE6e01e221A57e58ED95268215Ac9" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-367-1100.json b/BIPs/2023/2023-W29/BIP-367-1100.json new file mode 100644 index 000000000..97dea82c5 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-367-1100.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1689732486968, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "createdFromOwnerAddress": "", + "checksum": "0xc3c651d0792741c2a12bd7211b3c4e420e5d7f56f06a0bca1ef8645dee483f2b" + }, + "transactions": [ + { + "to": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "oldOwner": "0x815d654E930E840D0E0Ee1B18FFc8Fb4ddA4c6B3", + "newOwner": "0xB5485e0F543eE6e01e221A57e58ED95268215Ac9" + } + }, + { + "to": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x6bB4720473d4D7133f944785e5EE1A650C07f34e", + "newOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-367-137.json b/BIPs/2023/2023-W29/BIP-367-137.json new file mode 100644 index 000000000..2770d57c7 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-367-137.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1689700384451, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "createdFromOwnerAddress": "", + "checksum": "0xb18e276581384ae9af58e4255cfcecb4f142d38e89673f3243d0051b54152058" + }, + "transactions": [ + { + "to": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x815d654E930E840D0E0Ee1B18FFc8Fb4ddA4c6B3", + "newOwner": "0xB5485e0F543eE6e01e221A57e58ED95268215Ac9" + } + }, + { + "to": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "oldOwner": "0x6bB4720473d4D7133f944785e5EE1A650C07f34e", + "newOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-367-42161.json b/BIPs/2023/2023-W29/BIP-367-42161.json new file mode 100644 index 000000000..4f15aa720 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-367-42161.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1689730024392, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "createdFromOwnerAddress": "", + "checksum": "0xf958f62cefed232516d748b1280d3449170f25d950ed2973f4406cf8d94b926a" + }, + "transactions": [ + { + "to": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "oldOwner": "0x6bB4720473d4D7133f944785e5EE1A650C07f34e", + "newOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264" + } + }, + { + "to": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x815d654E930E840D0E0Ee1B18FFc8Fb4ddA4c6B3", + "newOwner": "0xB5485e0F543eE6e01e221A57e58ED95268215Ac9" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-368.json b/BIPs/2023/2023-W29/BIP-368.json new file mode 100644 index 000000000..6be2325c2 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-368.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "100000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-368.report.txt b/BIPs/2023/2023-W29/BIP-368.report.txt new file mode 100644 index 000000000..dd685166f --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-368.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W29/BIP-368.json +COMMIT: `93e3cd12dfa2227e6d027de34dc8848546885c4a` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+----------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++----------+---------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+----------+ +| transfer | mainnet | USDC | multisigs/lm | 100000.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000000000 | BIP-368 | N/A | ++----------+---------+--------------+----------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W29/BIP-369-1.json b/BIPs/2023/2023-W29/BIP-369-1.json new file mode 100644 index 000000000..f0d248ff8 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-369-1.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689784197766, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x117ddf737ec1d0da6817dc08f8fc62cb9d100e0f342aae4f5982b3a3f3f8cc4a" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-369-137.json b/BIPs/2023/2023-W29/BIP-369-137.json new file mode 100644 index 000000000..f958de1e8 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-369-137.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1689784452532, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0xe8d4b3e1fa709050529855839d1ef2db4483dc42063e9685745a6ea349e245bd" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x8e9ee99533bd178c1573e352145db0eeb33e8722b92d1d6fbc1de799b41f180c", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-369-42161.json b/BIPs/2023/2023-W29/BIP-369-42161.json new file mode 100644 index 000000000..71644df27 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-369-42161.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1689784579757, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x0a0914f25a1dd9c40307792ba70d0713574dcf848df5318eb55a637401b1f845" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xfab324385696857b52130b135e7e81f8b7f34382c9b27f254b6bca9a70fe0784", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-373.json b/BIPs/2023/2023-W29/BIP-373.json new file mode 100644 index 000000000..18202ea59 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-373.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689830631219, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xfc931d0e16820534ccbdbec575489795447d1f232c8f708720742eb2d7c77b4f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9aaAf6757BE9e115895429EF6B81e05dCB951646", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-373.report.txt b/BIPs/2023/2023-W29/BIP-373.report.txt new file mode 100644 index 000000000..bc8e96b0a --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-373.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W29/BIP-373.json +COMMIT: `1ebf0a76214b8b497ddc87fac20b9601ec7d429b` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+---------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +| addGauge | mainnet | 0x158e0fbc2271e1dcebadd365a22e2b4dd173c0db0002000000000000000005a5 | 80IDLE-20USDC | N/A | 0x9aaAf6757BE9e115895429EF6B81e05dCB951646 | 0.5% | 2.0% | mainnet | BIP-373 | N/A | ++----------+---------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W29/BIP-374.json b/BIPs/2023/2023-W29/BIP-374.json new file mode 100644 index 000000000..61fd52113 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-374.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689830953219, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x7a69fddba33827f94239a6260be599711506a0f569f4adfd6aa96da6a9d566fa" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x639F4583E505e9E0A16C5D90E1AF61b47415A3A9", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-374.report.txt b/BIPs/2023/2023-W29/BIP-374.report.txt new file mode 100644 index 000000000..c68e37eff --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-374.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W29/BIP-374.json +COMMIT: `cade0d669014ae9ffdeef93da4fd10f9dad71702` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------------------------------------------------------------+-----------------+---------+--------------------------------------------+-------+--------+---------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+---------+--------------------------------------------------------------------+-----------------+---------+--------------------------------------------+-------+--------+---------+---------+----------+ +| addGauge | mainnet | 0xe2d16b0a39f3fbb4389a0e8f1efcbecfb3d1e6e10000000000000000000005a7 | DUSD/bbaUSD-BPT | 500 | 0x639F4583E505e9E0A16C5D90E1AF61b47415A3A9 | 0.04% | 100.0% | mainnet | BIP-374 | N/A | ++----------+---------+--------------------------------------------------------------------+-----------------+---------+--------------------------------------------+-------+--------+---------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W29/BIP-375.report.txt b/BIPs/2023/2023-W29/BIP-375.report.txt new file mode 100644 index 000000000..8f9ad52fb --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-375.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W29/BIP-375.json +COMMIT: `431b3cfe35edb142616b9d180f4698ddcfd38c4b` +CHAIN(S): `arbitrum` +``` ++----------+----------+--------------------------------------------------------------------+--------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+--------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| addGauge | arbitrum | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | ankrETH/wstETH-BPT | 1500 | 0x671eD21480acf63b0AB7297b901505F5BccAfa9b | 0.01% | 100.0% | L0 sidechain | BIP-375 | N/A | ++----------+----------+--------------------------------------------------------------------+--------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W29/BIP-376.json b/BIPs/2023/2023-W29/BIP-376.json new file mode 100644 index 000000000..74ab10c40 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-376.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689832063053, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0f981eadd6bd16f8c64b4d6394d0187d09f121a3c5a1ffa3781f934bcf0b2a03" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x44bc38d3aF025C0EA9a4729E79d6E44244d68Ac6", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W29/BIP-376.report.txt b/BIPs/2023/2023-W29/BIP-376.report.txt new file mode 100644 index 000000000..9cc08d793 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP-376.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W29/BIP-376.json +COMMIT: `fb8a9fffebb43f8a1616a3b821944bb021dfb14f` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------------------------------------------------------------+-------------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+---------+--------------------------------------------------------------------+-------------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +| addGauge | mainnet | 0x759fabc513accd292ada967c4dd7bb94da39232e0002000000000000000005a8 | 80RATE/20WETH-BPT | N/A | 0x44bc38d3aF025C0EA9a4729E79d6E44244d68Ac6 | 1.0% | 2.0% | mainnet | BIP-376 | N/A | ++----------+---------+--------------------------------------------------------------------+-------------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W29/BIP367-10.json b/BIPs/2023/2023-W29/BIP367-10.json new file mode 100644 index 000000000..147092b90 --- /dev/null +++ b/BIPs/2023/2023-W29/BIP367-10.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1689731568154, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "createdFromOwnerAddress": "", + "checksum": "0xd80371a53340932c12ef07cc036b287bf863415197cd40411551c5864d71e8d8" + }, + "transactions": [ + { + "to": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "oldOwner": "0x6bB4720473d4D7133f944785e5EE1A650C07f34e", + "newOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264" + } + }, + { + "to": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x815d654E930E840D0E0Ee1B18FFc8Fb4ddA4c6B3", + "newOwner": "0xB5485e0F543eE6e01e221A57e58ED95268215Ac9" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-352A.json b/BIPs/2023/2023-W30/BIP-352A.json new file mode 100644 index 000000000..417ac796c --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-352A.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "125961000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "62230580000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-352A.report.txt b/BIPs/2023/2023-W30/BIP-352A.report.txt new file mode 100644 index 000000000..f59ae4d97 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-352A.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W30/BIP-352A.json +COMMIT: `dfe2d56f22750f3669f2f7415bad37f1b280b76a` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+----------+-------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | transaction_index | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+----------+-------------------+ +| transfer | USDC | multisigs/foundation | 125961.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x3B8910F378034FD6E103Df958863e5c684072693 | 125961000000 | BIP-352A | N/A | +| transfer | BAL | multisigs/foundation | 62230.58 | 0xba100000625a3754423978a60c9317c58a424e3D | 0x3B8910F378034FD6E103Df958863e5c684072693 | 62230580000000000000000 | BIP-352A | N/A | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+----------+-------------------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-369-1-cowswap.json b/BIPs/2023/2023-W30/BIP-369-1-cowswap.json new file mode 100644 index 000000000..5b8a7141c --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-369-1-cowswap.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689784197766, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x117ddf737ec1d0da6817dc08f8fc62cb9d100e0f342aae4f5982b3a3f3f8cc4a" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca", + "account": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-377.json b/BIPs/2023/2023-W30/BIP-377.json new file mode 100644 index 000000000..7761b7b97 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-377.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690392110768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x15f5da7bfc9fcf0eade3088ae8c2f1d48160acb6cf42fbd28a3f8ecdbda37f2d" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5E23599eBE87A5A140f295C2fC6aAedb10955497", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-377.report.txt b/BIPs/2023/2023-W30/BIP-377.report.txt new file mode 100644 index 000000000..3d30a697a --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-377.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-377.json +COMMIT: `c6fc94ed9d396306c4a653d2a7967b277d225649` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+---------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +| addGauge | mainnet | 0x616d4d131f1147ac3b3c3cc752bab8613395b2bb000200000000000000000584 | B-yBAL-STABLE | 30 | 0x5E23599eBE87A5A140f295C2fC6aAedb10955497 | 0.2% | 2.0% | mainnet | BIP-377 | N/A | ++----------+---------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+------+------+---------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-378.json b/BIPs/2023/2023-W30/BIP-378.json new file mode 100644 index 000000000..edb1ee442 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-378.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690392357719, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x3ea7db8609038df2b492f0401b98e33fe697a887d0d8f9244b3204b0e061cc86" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x175FAb9C7aB502B9E76E7fca0C9Da618387EBAdA", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-378.report.txt b/BIPs/2023/2023-W30/BIP-378.report.txt new file mode 100644 index 000000000..937f03a6b --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-378.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-378.json +COMMIT: `67ca07d40847e41ac6691f6ac36b851a9fc25a3e` +CHAIN(S): `arbitrum` +``` ++----------+----------+--------------------------------------------------------------------+----------+---------+--------------------------------------------+------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+----------+---------+--------------------------------------------+------+--------+--------------+---------+----------+ +| addGauge | arbitrum | 0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d000000000000000000000047b | BPT-USD+ | 570 | 0x175FAb9C7aB502B9E76E7fca0C9Da618387EBAdA | 1.0% | 100.0% | L0 sidechain | BIP-378 | N/A | ++----------+----------+--------------------------------------------------------------------+----------+---------+--------------------------------------------+------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-379.json b/BIPs/2023/2023-W30/BIP-379.json new file mode 100644 index 000000000..926a1d82e --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-379.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690392512672, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x926d406e502b358a9821aab6133872de132e61f09ef71a6e32bdf80a6648a2bc" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2Cb5EB92314bf3BFE7977e059A72A806d353fd21", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-379.report.txt b/BIPs/2023/2023-W30/BIP-379.report.txt new file mode 100644 index 000000000..c930f4f6a --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-379.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-379.json +COMMIT: `12ccdaf39213f76cbbd6e577cdc1b727e256f59c` +CHAIN(S): `arbitrum` +``` ++----------+----------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| addGauge | arbitrum | 0xd6d20527c7b0669989ee082b9d3a1c63af742290000000000000000000000483 | BPT-DOLA-USD+ | 570 | 0x2Cb5EB92314bf3BFE7977e059A72A806d353fd21 | 0.01% | 100.0% | L0 sidechain | BIP-379 | N/A | ++----------+----------+--------------------------------------------------------------------+---------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-380.json b/BIPs/2023/2023-W30/BIP-380.json new file mode 100644 index 000000000..1ec88201f --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-380.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690392777954, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x1351d2213f7f1e7855ed9f345cde3fcffc20ea711e61fdd2f8d9a7e3258e9363" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x56c0626E6E3931af90EbB679A321225180d4b32B", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-380.report.txt b/BIPs/2023/2023-W30/BIP-380.report.txt new file mode 100644 index 000000000..a630c8b62 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-380.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-380.json +COMMIT: `ba4c409d9eac3ccb1b76ae60d5b56084d74621cf` +CHAIN(S): `arbitrum` +``` ++----------+----------+--------------------------------------------------------------------+-------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+-------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| addGauge | arbitrum | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | wstETH/rETH/cbETH | 1500 | 0x56c0626E6E3931af90EbB679A321225180d4b32B | 0.04% | 100.0% | L0 sidechain | BIP-380 | N/A | ++----------+----------+--------------------------------------------------------------------+-------------------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-381.json b/BIPs/2023/2023-W30/BIP-381.json new file mode 100644 index 000000000..a5ae1bd35 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-381.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690392994138, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xfe446e67499e9e9f89a40fa511de838fe2bba34ae4e6935950715cd92ae1941c" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x90DDAa2A6D192Db2F47195d847626F94E940c7Ac", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-381.report.txt b/BIPs/2023/2023-W30/BIP-381.report.txt new file mode 100644 index 000000000..de6f91039 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-381.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-381.json +COMMIT: `1e71039f8e3d5070580565556215826a50eb8f77` +CHAIN(S): `arbitrum` +``` ++----------+----------+--------------------------------------------------------------------+------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +| addGauge | arbitrum | 0x9cebf13bb702f253abf1579294694a1edad00eaa000000000000000000000486 | bbaUSDC/bbaUSDCe | 5000 | 0x90DDAa2A6D192Db2F47195d847626F94E940c7Ac | 0.005% | 100.0% | L0 sidechain | BIP-381 | N/A | ++----------+----------+--------------------------------------------------------------------+------------------+---------+--------------------------------------------+--------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-382.json b/BIPs/2023/2023-W30/BIP-382.json new file mode 100644 index 000000000..6d2bdd54e --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-382.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690393201659, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xbc72487972aa1be7506a7fc81015cfd5e936b232d8b4a6843408c71e03098985" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-382.report.txt b/BIPs/2023/2023-W30/BIP-382.report.txt new file mode 100644 index 000000000..587821fa1 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-382.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-382.json +COMMIT: `267148592db02991948f29c6baf22f32628767bc` +CHAIN(S): `optimism` +``` ++----------+----------+--------------------------------------------------------------------+-----------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+-----------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +| addGauge | optimism | 0xcd7b2232b7435595bbc7fd7962f1f352fc2cc61a0000000000000000000000f0 | bb-rf-usd | 100 | 0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2 | 0.01% | 100.0% | L0 sidechain | BIP-382 | N/A | ++----------+----------+--------------------------------------------------------------------+-----------+---------+--------------------------------------------+-------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-383.json b/BIPs/2023/2023-W30/BIP-383.json new file mode 100644 index 000000000..308b63244 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-383.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690393477632, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x72a6c3b9b7629cddfee6422a94b530e83092f9441756e805f85c2a861673d7bc" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-383.report.txt b/BIPs/2023/2023-W30/BIP-383.report.txt new file mode 100644 index 000000000..efa41cffc --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-383.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-383.json +COMMIT: `8678edbc9ca9f95df29c299637fe92b4cd40dd58` +CHAIN(S): `optimism` +``` ++----------+----------+--------------------------------------------------------------------+--------------+---------+--------------------------------------------+------+--------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+--------------+---------+--------------------------------------------+------+--------+--------------+---------+----------+ +| addGauge | optimism | 0x8a2872fd28f42bd9f6559907235e83fbf4167f480001000000000000000000f2 | bb-rf-triple | N/A | 0xAb6b60F389218AFf06DE279BF8c69A246568b5a6 | 0.4% | 100.0% | L0 sidechain | BIP-383 | N/A | ++----------+----------+--------------------------------------------------------------------+--------------+---------+--------------------------------------------+------+--------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-384A.json b/BIPs/2023/2023-W30/BIP-384A.json new file mode 100644 index 000000000..252dcb091 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-384A.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690394148712, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x4159381ddce59bd7d0fd2f8d8e50c15c108aba9416259d5e2d5ea57dcb6ad3fc" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA4DAA3498677D655E359b0Fc83EbDbd8dbF76a50", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-384A.report.txt b/BIPs/2023/2023-W30/BIP-384A.report.txt new file mode 100644 index 000000000..babdfb598 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-384A.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-384A.json +COMMIT: `aa417ac9f6d74e08273f66b83619c33fdad0c72f` +CHAIN(S): `arbitrum` +``` ++----------+----------+--------------------------------------------------------------------+-----------------+---------+--------------------------------------------+-------+-------+--------------+---------+----------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++----------+----------+--------------------------------------------------------------------+-----------------+---------+--------------------------------------------+-------+-------+--------------+---------+----------+ +| addGauge | arbitrum | 0x84a1038d55e887c2abb8cb02ccf4c9d3871c859a000000000000000000000489 | Stafi rETH/WETH | 1500 | 0xA4DAA3498677D655E359b0Fc83EbDbd8dbF76a50 | 0.04% | 10.0% | L0 sidechain | BIP-384 | N/A | ++----------+----------+--------------------------------------------------------------------+-----------------+---------+--------------------------------------------+-------+-------+--------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-386.json b/BIPs/2023/2023-W30/BIP-386.json new file mode 100644 index 000000000..10512634a --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-386.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690394903, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "50000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-386.report.txt b/BIPs/2023/2023-W30/BIP-386.report.txt new file mode 100644 index 000000000..d56e0f372 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-386.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-386.json +COMMIT: `8e265b18af7302c45750337013ea00736590c53c` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------+----------------+---------+--------------------------------------------+--------------------------------------------+-------------+---------+----------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++----------+---------+--------------+----------------+---------+--------------------------------------------+--------------------------------------------+-------------+---------+----------+ +| transfer | mainnet | USDC | multisigs/lm | 50000.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 50000000000 | BIP-386 | N/A | ++----------+---------+--------------+----------------+---------+--------------------------------------------+--------------------------------------------+-------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-387.json b/BIPs/2023/2023-W30/BIP-387.json new file mode 100644 index 000000000..79febbc18 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-387.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690395359114, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa20b4b4959e0ee2c92d3bf6a3c30bb4f013ebc6d3aa8914c58f171021628c684" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-387.report.txt b/BIPs/2023/2023-W30/BIP-387.report.txt new file mode 100644 index 000000000..9949e5ebd --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-387.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W30/BIP-387.json +COMMIT: `45b392f9aef657dcba569a6520f5df4b38319e8d` +CHAIN(S): `mainnet` +``` ++-----------+---------+--------------+--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------+---------+----------+ +| function | chain | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------+---------+--------------+--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------+---------+----------+ +| grantRole | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | [{'20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/add_reward(address,address)', '20220325-mainnet-gauge-factory/LiquidityGaugeV5/add_reward(address,address)'}] | ['0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e'] | BIP-387 | N/A | ++-----------+---------+--------------+--------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-388/BIP-388.md b/BIPs/2023/2023-W30/BIP-388/BIP-388.md new file mode 100644 index 000000000..9d72b70da --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/BIP-388.md @@ -0,0 +1,38 @@ +## Payload PR - BIP-388 +https://github.com/BalancerMaxis/multisig-ops/pull/405 + +## Background +Contracts are deployed, and everything is looking good for Balancers launch on Base Chain. This BIP includes a number of final steps that must be taken to get everything working. + +Along with the typical wireup of permissions, the Gauge Factory and Authorizer Wrapper are also being configured, and a 50% protocol fee is being set. +## English Specification + +The transaction details for `base.json` were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-388) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|-----------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [base.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/base.json) | Permissions Changes on base described by the outputs above | + | [BIP-388A.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/BIP-388A.json) | Sets 50% Protocol Fees on Base Chain as per current standards | + | [BIP-388B.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/BIP-388B.json) | Wires up the Gauge Factory to allow Gauges receive bal. | + | [BIP-388C.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/BIP-388C.json) | Enables the Authroizer Wrapper - see [BIP-277](https://forum.balancer.fi/t/bip-277-enable-authorizer-wrapper/4718) | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification +- `base.json` applies the standard permissions described in the tables above. +- `BIP-388A.json` sets protocol fees to 50%. +- `BIP-388B.json` Wires the Gauge Factory up to the Psuedominter, adding and removing permisisons to do so in the process. +- `BIP-388C.json` Enables the authorizer wrapper, adding and removing permissions to do so in the process. +## Risk Assessment +This is all part of the standard process for provisioning a new chain. There are currently no deposits on base chain, this presents to risk to current protocol operations. + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/2023/2023-W30/BIP-388/BIP-388A.json b/BIPs/2023/2023-W30/BIP-388/BIP-388A.json new file mode 100644 index 000000000..6665d8fe8 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/BIP-388A.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1686067971268, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x59381d53c574f2657107abe890b25a810d77cb46b581386c7fe77535cc956861" + }, + "transactions": [ + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-388/BIP-388B.json b/BIPs/2023/2023-W30/BIP-388/BIP-388B.json new file mode 100644 index 000000000..c5384b778 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/BIP-388B.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1686068663750, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x01048d1c790c6db6c7895fdf16f9fcc502ee906857b307aed2247177f9948769" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + }, + { + "to": "0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-388/BIP-388B.report.txt b/BIPs/2023/2023-W30/BIP-388/BIP-388B.report.txt new file mode 100644 index 000000000..006881c32 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/BIP-388B.report.txt @@ -0,0 +1,22 @@ +File name: BIPs/2023-W30/BIP-388/BIP-388B.json +COMMIT: `N/A` +CHAIN(S): `8453` +``` ++---------+-------------------------------------------------------+-----------------+-----------+---------------------------------------------------------------------------------+--------------+---------+ +| index | to | fx_name | payable | inputs | bip_number | chain | ++=========+=======================================================+=================+===========+=================================================================================+==============+=========+ +| 0 | 0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6 (Not Found | grantRole | False | { | ('BIP-388',) | 8453 | +| | | | | "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", | | | +| | | | | "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" | | | +| | | | | } | | | ++---------+-------------------------------------------------------+-----------------+-----------+---------------------------------------------------------------------------------+--------------+---------+ +| 1 | 0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7 (Not Found | addGaugeFactory | False | { | ('BIP-388',) | 8453 | +| | | | | "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" | | | +| | | | | } | | | ++---------+-------------------------------------------------------+-----------------+-----------+---------------------------------------------------------------------------------+--------------+---------+ +| 2 | 0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6 (Not Found | renounceRole | False | { | ('BIP-388',) | 8453 | +| | | | | "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", | | | +| | | | | "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" | | | +| | | | | } | | | ++---------+-------------------------------------------------------+-----------------+-----------+---------------------------------------------------------------------------------+--------------+---------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-388/BIP-388C.json b/BIPs/2023/2023-W30/BIP-388/BIP-388C.json new file mode 100644 index 000000000..2ef3d5446 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/BIP-388C.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1686068946662, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0xeab75e48deff14b80dee97f3e36117ad773a19fea0bfcee5b957428e6a610603" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-388/BIP-388C.report.txt b/BIPs/2023/2023-W30/BIP-388/BIP-388C.report.txt new file mode 100644 index 000000000..f94dacf33 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/BIP-388C.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W30/BIP-388/BIP-388C.json +COMMIT: `N/A` +CHAIN(S): `base` +``` ++--------------+---------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | chain | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++==============+=========+===============+============================================+=============================================+====================================================================+=========+============+ +| grantRole | base | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 0 | ++--------------+---------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| renounceRole | base | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 2 | ++--------------+---------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-388/README.md b/BIPs/2023/2023-W30/BIP-388/README.md new file mode 100644 index 000000000..bf038efdb --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/README.md @@ -0,0 +1 @@ +[See Here](BIP-388.md) for the governance contents. diff --git a/BIPs/2023/2023-W30/BIP-388/base.json b/BIPs/2023/2023-W30/BIP-388/base.json new file mode 100644 index 000000000..fd8203324 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/base.json @@ -0,0 +1,190 @@ +{ + "version": "1.0", + "chainId": 8453, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9, 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e, 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717, 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157, 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7, 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01, 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01, 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e, 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed, 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c, 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3, 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03]", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df, 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4, 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0, 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5, 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d, 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4, 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34]", + "account": "0x76f7204B62f554b79d444588EDac9dfA7032c71a" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d]", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP-388/base.report.txt b/BIPs/2023/2023-W30/BIP-388/base.report.txt new file mode 100644 index 000000000..fc1755916 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/base.report.txt @@ -0,0 +1,73 @@ +File name: BIPs/2023-W30/BIP-388/base.json +COMMIT: `N/A` +CHAIN(S): `base` +``` ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | chain | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+=========+===========================================================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| grantRoles | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-388 | 0 | +| | | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | | | +| | | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | | | +| | | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | | | +| | | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | | | +| | | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | | | +| | | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | BIP-388 | 1 | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | | | +| | | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPoolFactory/disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | | | +| | | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPoolFactory/disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPoolFactory/disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | | | +| | | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | | | +| | | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPoolFactory/disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | | | +| | | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | BIP-388 | 2 | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BIP-388 | 3 | +| | | | | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | | | +| | | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| | | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-388 | 4 | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | BIP-388 | 5 | +| | | | | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | BIP-388 | 6 | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W30/BIP-388/function_descriptions.md b/BIPs/2023/2023-W30/BIP-388/function_descriptions.md new file mode 100644 index 000000000..26a94aaec --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/function_descriptions.md @@ -0,0 +1,26 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| setTargets(uint256,uint256) | Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens. | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| withdrawCollectedFees(address[],uint256[],address) | Allows the withdrawal of collected protocol fees | +| setFlashLoanFeePercentage(uint256) | Sets the protocol fee charged on flash loans for this deployment | +| setPaused(bool) | Stops all trading activity involving the vault | +| setFeeTypePercentage(uint256,uint256) | Sets the protocol fee for a particular fee type for this deployment | +| add_reward(address,address) | Allows adding of an external reward token to gauges. | +| denylistToken(address) | Adds a token to the ProtocolFeeWithdrawer deny list which prevents the withdrawal of that token from the ProtocolFeeCollector | +| removePoolFactory(address) | Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| addPoolFactory(address) | Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| registerProtocolId(uint256,string) | Register a new DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | +| renameProtocolId(uint256,string) | Change the name of a DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | diff --git a/BIPs/2023/2023-W30/BIP-388/inputs.json b/BIPs/2023/2023-W30/BIP-388/inputs.json new file mode 100644 index 000000000..9d55490ed --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/inputs.json @@ -0,0 +1,112 @@ +[ + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "/pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + }, + "deployments": [ + "weighted-pool-v4", + "composable-stable-pool-v5", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2" + ] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "batch-relayer-v5/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + }, + "deployments": ["20210418-vault"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/lm"], + "addPoolFactory(address)": ["multisigs/lm"] + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + }, + "deployments": ["20230223-protocol-id-registry"] + } +] diff --git a/BIPs/2023/2023-W30/BIP-388/results_address_sorted.md b/BIPs/2023/2023-W30/BIP-388/results_address_sorted.md new file mode 100644 index 000000000..faa48c067 --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/results_address_sorted.md @@ -0,0 +1,60 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20230320-weighted-pool-v4 | base | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230711-composable-stable-pool-v5 | base | enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-erc4626-linear-pool-v4 | base | enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-gearbox-linear-pool-v2 | base | enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-yearn-linear-pool-v2 | base | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230410-aave-linear-pool-v5 | base | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230411-managed-pool-v2 | base | enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230320-weighted-pool-v4 | base | pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20210418-vault | base | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20220517-protocol-fee-withdrawer | base | denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-erc4626-linear-pool-v4 | base | setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-erc4626-linear-pool-v4 | base | setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-gearbox-linear-pool-v2 | base | setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-gearbox-linear-pool-v2 | base | setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-yearn-linear-pool-v2 | base | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-yearn-linear-pool-v2 | base | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230410-aave-linear-pool-v5 | base | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230410-aave-linear-pool-v5 | base | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230316-child-chain-gauge-factory-v2 | base | add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20220517-protocol-fee-withdrawer | base | withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20221123-pool-recovery-helper | base | removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20221123-pool-recovery-helper | base | addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230223-protocol-id-registry | base | registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230223-protocol-id-registry | base | renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20210418-vault | base | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | +| 20220725-protocol-fee-percentages-provider | base | setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | +| 20210418-vault | base | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | +| 20210418-vault | base | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | \ No newline at end of file diff --git a/BIPs/2023/2023-W30/BIP-388/results_deployment_sorted.md b/BIPs/2023/2023-W30/BIP-388/results_deployment_sorted.md new file mode 100644 index 000000000..4bb1867ca --- /dev/null +++ b/BIPs/2023/2023-W30/BIP-388/results_deployment_sorted.md @@ -0,0 +1,60 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | base | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | +| 20210418-vault | base | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20210418-vault | base | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | +| 20210418-vault | base | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | +| 20220517-protocol-fee-withdrawer | base | denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20220517-protocol-fee-withdrawer | base | withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20220725-protocol-fee-percentages-provider | base | setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | +| 20221123-pool-recovery-helper | base | addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20221123-pool-recovery-helper | base | removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230223-protocol-id-registry | base | registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230223-protocol-id-registry | base | renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230316-child-chain-gauge-factory-v2 | base | add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230320-weighted-pool-v4 | base | disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230320-weighted-pool-v4 | base | pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-erc4626-linear-pool-v4 | base | disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-erc4626-linear-pool-v4 | base | pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-erc4626-linear-pool-v4 | base | setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-gearbox-linear-pool-v2 | base | disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-gearbox-linear-pool-v2 | base | pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-gearbox-linear-pool-v2 | base | setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-yearn-linear-pool-v2 | base | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-yearn-linear-pool-v2 | base | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-yearn-linear-pool-v2 | base | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230410-aave-linear-pool-v5 | base | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230410-aave-linear-pool-v5 | base | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230410-aave-linear-pool-v5 | base | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230411-managed-pool-v2 | base | disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230411-managed-pool-v2 | base | pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230711-composable-stable-pool-v5 | base | pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | \ No newline at end of file diff --git a/BIPs/2023/2023-W30/BIP365B.json b/BIPs/2023/2023-W30/BIP365B.json new file mode 100644 index 000000000..ec650629e --- /dev/null +++ b/BIPs/2023/2023-W30/BIP365B.json @@ -0,0 +1,168 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689214461770, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe818c480c615e8ffb8dcbf9e8d8cc9e03ad1b03d7f628a556a758475abea7409" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x0052688295413b32626D226a205b95cDB337DE86", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5f838591A5A8048F0E4C4c7fCca8fD9A25BF0590", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8eeB783A4A67f626c6E3952AAeD0D6b104AaC85f", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x082AACfaf4db8AC0642CBED50df732D3C309E679", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4944b07977A42C15c6a06CF4e204e24c60564104", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xB5044FD339A7b858095324cC3F239C212956C179", + "data": "0xab8f0945" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W30/BIP365B.report.txt b/BIPs/2023/2023-W30/BIP365B.report.txt new file mode 100644 index 000000000..daa47f38b --- /dev/null +++ b/BIPs/2023/2023-W30/BIP365B.report.txt @@ -0,0 +1,18 @@ +File name: BIPs/2023-W30/BIP365B.json +COMMIT: `7de76869e12e5ae0df6d9918c49e1c8f6446c4c6` +CHAIN(S): `polygon, mainnet, arbitrum` +``` ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+--------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+--------+-------------------+ +| killGauge() | 0x5aee1e99fe86960377de9f88689616916d5dcabe000000000000000000000467 | wstETH-rETH-sfrxETH-BPT | 0x5aEe1e99fE86960377DE9f88689616916D5DcaBe | 700 | 0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B | 0.0001% | 100.0% | mainnet | BIP365 | N/A | +| killGauge() | 0xfebb0bbf162e64fb9d0dfe186e517d84c395f016000000000000000000000502 | bb-a-USD | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 | 2500 | 0x0052688295413b32626D226a205b95cDB337DE86 | 0.0001% | 100.0% | mainnet | BIP365 | N/A | +| killGauge() | 0xe0fcbf4d98f0ad982db260f86cf28b49845403c5000000000000000000000504 | wstETH-bb-a-WETH-BPT | 0xE0fCBf4d98F0aD982DB260f86cf28b49845403C5 | 700 | 0x5f838591A5A8048F0E4C4c7fCca8fD9A25BF0590 | 0.0001% | 100.0% | mainnet | BIP365 | N/A | +| killGauge() | 0xc5dc1316ab670a2eed5716d7f19ced321191f38200000000000000000000056e | B-wstETH/bb-ma3-weth | 0xC5DC1316AB670a2eeD5716d7F19CeD321191F382 | 1500 | 0x8eeB783A4A67f626c6E3952AAeD0D6b104AaC85f | 0.001% | 100.0% | mainnet | BIP365 | N/A | +| killGauge() | 0x216690738aac4aa0c4770253ca26a28f0115c595000000000000000000000b2c | stMATIC-bb-a-WMATIC-BPT | 0x216690738Aac4aa0C4770253CA26a28f0115c595 | 1000 | 0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6 | 0.01% | 100.0% | L0 sidechain | BIP365 | N/A | +| killGauge() | 0xe78b25c06db117fdf8f98583cdaaa6c92b79e917000000000000000000000b2b | MaticX-bb-a-WMATIC-BPT | 0xE78b25c06dB117fdF8F98583CDaaa6c92B79E917 | 1000 | 0x082AACfaf4db8AC0642CBED50df732D3C309E679 | 0.01% | 100.0% | L0 sidechain | BIP365 | N/A | +| killGauge() | 0xcba9ff45cfb9ce238afde32b0148eb82cbe635620000000000000000000003fd | rETH-bb-a-WETH-BPT | 0xCba9Ff45cfB9cE238AfDE32b0148Eb82CbE63562 | 600 | 0x4944b07977A42C15c6a06CF4e204e24c60564104 | 0.01% | 100.0% | L0 sidechain | BIP365 | N/A | +| killGauge() | 0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7000000000000000000000400 | wstETH-bb-a-WETH-BPT | 0x5A7f39435fD9c381e4932fa2047C9a5136A5E3E7 | 1000 | 0xB5044FD339A7b858095324cC3F239C212956C179 | 0.01% | 100.0% | L0 sidechain | BIP365 | N/A | +| killGauge() | 0xee02583596aee94cccb7e8ccd3921d955f17982a00000000000000000000040a | bb-a-USD | 0xEE02583596AEE94ccCB7e8ccd3921d955f17982A | 2000 | 0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7 | 0.005% | 100.0% | L0 sidechain | BIP365 | N/A | ++-------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------+---------+--------------------------------------------+---------+--------+--------------+--------+-------------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05.json b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05.json new file mode 100644 index 000000000..d58c8f4f7 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05.json @@ -0,0 +1,25 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "setTargets": "multisigs/lm", + "enableRecoveryMode": "multisigs/emergency" + }, + "deployments": [ + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230410-silo-linear-pool-v2" + ] + } +] diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_address_sorted.md b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_address_sorted.md new file mode 100644 index 000000000..5dd71aee0 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_address_sorted.md @@ -0,0 +1,32 @@ +| deployment | function | role | chain | caller | caller_address | +|:--------------------------------|:----------------------------|:-------------------------------------------------------------------|:---------|:--------------------|:-------------------------------------------| +| 20230409-erc4626-linear-pool-v4 | setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230409-erc4626-linear-pool-v4 | enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | setTargets(uint256,uint256) | 0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-gearbox-linear-pool-v2 | setTargets(uint256,uint256) | 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | setTargets(uint256,uint256) | 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-silo-linear-pool-v2 | setTargets(uint256,uint256) | 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-yearn-linear-pool-v2 | setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-erc4626-linear-pool-v4 | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | setTargets(uint256,uint256) | 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.json b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.json new file mode 100644 index 000000000..784f5e03d --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a, 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3, 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b, 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a, 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.report.txt b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.report.txt new file mode 100644 index 000000000..6be21d1a2 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_arbitrum.json +COMMIT: `c58130d2bfdceabdf5d277e020a2dfa1f4a065f3` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | BIP-285 | 0 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_deployment_sorted.md b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_deployment_sorted.md new file mode 100644 index 000000000..e10615639 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_deployment_sorted.md @@ -0,0 +1,32 @@ +| deployment | function | role | chain | caller | caller_address | +|:--------------------------------|:----------------------------|:-------------------------------------------------------------------|:---------|:--------------------|:-------------------------------------------| +| 20230409-erc4626-linear-pool-v4 | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-erc4626-linear-pool-v4 | setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230409-yearn-linear-pool-v2 | setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230409-erc4626-linear-pool-v4 | enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-erc4626-linear-pool-v4 | setTargets(uint256,uint256) | 0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-gearbox-linear-pool-v2 | enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-gearbox-linear-pool-v2 | setTargets(uint256,uint256) | 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230409-yearn-linear-pool-v2 | setTargets(uint256,uint256) | 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-silo-linear-pool-v2 | enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20230410-silo-linear-pool-v2 | setTargets(uint256,uint256) | 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-erc4626-linear-pool-v4 | enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-erc4626-linear-pool-v4 | setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-yearn-linear-pool-v2 | enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230409-yearn-linear-pool-v2 | setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230409-erc4626-linear-pool-v4 | enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-erc4626-linear-pool-v4 | setTargets(uint256,uint256) | 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230409-yearn-linear-pool-v2 | enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230409-yearn-linear-pool-v2 | setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230410-aave-linear-pool-v5 | enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20230410-aave-linear-pool-v5 | setTargets(uint256,uint256) | 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | \ No newline at end of file diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_function_descriptions.md b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_function_descriptions.md new file mode 100644 index 000000000..b70679def --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_function_descriptions.md @@ -0,0 +1,4 @@ +| function | description | +|:----------------------------|:------------------------------------------------------------------------------------------------------------| +| setTargets(uint256,uint256) | Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | \ No newline at end of file diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.json b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.json new file mode 100644 index 000000000..f47ccc6cb --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.report.txt b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.report.txt new file mode 100644 index 000000000..cdbac4e49 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_gnosis.json +COMMIT: `c58130d2bfdceabdf5d277e020a2dfa1f4a065f3` +CHAIN(S): `gnosis` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+=========================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x6b9adb82c7dca579c077378378d6545465281a86df1446c72ddf4c888f40e0b0 | BIP-285 | 0 | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x7461fb1ee70d064228f527e7d349d2429d9abb1a2ec29524519c9dd586f8f3c6 | BIP-285 | 1 | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.json b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.json new file mode 100644 index 000000000..f94d575a5 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e, 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c, 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202, 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31, 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0, 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad, 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c, 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192, 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.report.txt b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.report.txt new file mode 100644 index 000000000..f34894164 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.report.txt @@ -0,0 +1,20 @@ +File name: BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_mainnet.json +COMMIT: `c58130d2bfdceabdf5d277e020a2dfa1f4a065f3` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x2c7bba59983418a55126cdd07a69d73a710ec5fa3366f5b12c369de97d43492e | BIP-285 | 0 | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x4673448eaa2b93f1384adf0af721394d754d2bd69f9d18a3f01ba7f4ea6f500c | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | | | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/setTargets(uint256,uint256) | 0x40ec418a16c99e189ca5a9d18950f34ffeb1ff1cc484566f9b178c59f304bf31 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x4b312672200c08d2c4cf1f7d13db3ff0e024832e23c8b2de5c0b1f6e63cb29ca | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0x256eccbca05f769e9349017e92e50ee5d1801d9afbbaf9f6986f61d8ccfb6cb0 | BIP-285 | 1 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0xbc3dae38c30f2686b160e7154a2d649e84222b9f9de4e3347380cd82f23771ad | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0x6576d422b86632e2199a13b9ed43bb27cfa9a1e2f521809e4a9efaa1853c5c1c | | | +| | | | 20230410-silo-linear-pool-v2/SiloLinearPool/enableRecoveryMode() | 0x034ee1ea95f848440061786bb02a338bc9a003951046d1386ab163bf1fb70192 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.json b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.json new file mode 100644 index 000000000..698c46b0c --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a, 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3, 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b, 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a, 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.report.txt b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.report.txt new file mode 100644 index 000000000..1a17cda5e --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_optimism.json +COMMIT: `c58130d2bfdceabdf5d277e020a2dfa1f4a065f3` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x974302a1bc71ef8302d15789d6b2a06a3415d4387cce71f03fe386e816539c3a | BIP-285 | 0 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0x2342e50fb8143fdbef50d38a2b88596172ad4e0c57a39fdbf27bc56c02d3bba3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x11c6339e89e16488a1313c9f7051a3490329dc37abba0d7977c55cd5222a178e | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x04105ccf7d08e1e33d81a35a5ced3da44c613e81d864b1e22b1f3d54c5c37c8b | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0xe5346592e9128cab4378e32315f1836824e56d46f901b9e6bafa554e72c9585a | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe92818032e649cabfbbf9828641b240d0c8a4ac9437a937f8e99c6b9f92d0fb8 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.json b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.json new file mode 100644 index 000000000..304770b7a --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202, 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b, 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196, 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564, 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.report.txt b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.report.txt new file mode 100644 index 000000000..7dd081140 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W31/BIP-285-missing-perms/2023-08-05_polygon.json +COMMIT: `c58130d2bfdceabdf5d277e020a2dfa1f4a065f3` +CHAIN(S): `polygon` +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0x4dfd0a62feee8bdacf3d08393f0afa366dfb2d19ae771c9f9d206ccbe5d45202 | BIP-285 | 0 | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0xeaef47449a416a9bfb2deedb72095ad8e87e585b1673098647a2d5afba27843b | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf5a8e359029ddcb834519348eb7904a82bab363d7e75f3de00bbee8e0b94ea44 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0x4e4c0dff3668c7cab151f99058e4bb3470cdb320ea5c7584fdf29c1bef04a196 | BIP-285 | 1 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x2702eaf4dd3129a963b411073e79e54b4810837c737bfa553cf21c7628be4564 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x0ab8486492d2c210b3e25cbe0edc6da056cb86a87d97e1505c437891d0feeb8a | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_warnings.txt b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_warnings.txt new file mode 100644 index 000000000..b209a662c --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-285-missing-perms/2023-08-05_warnings.txt @@ -0,0 +1,51 @@ +WARNING: On chain:polygon:20230409-gearbox-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:polygon:20230409-gearbox-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:polygon:20230410-silo-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:polygon:20230410-silo-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:arbitrum:20230409-gearbox-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:arbitrum:20230409-gearbox-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:arbitrum:20230410-silo-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:arbitrum:20230410-silo-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:optimism:20230409-gearbox-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:optimism:20230409-gearbox-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:optimism:20230410-silo-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:optimism:20230410-silo-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:gnosis:20230409-erc4626-linear-pool-v4/setTargets: found no matches, skipping +WARNING: On chain:gnosis:20230409-erc4626-linear-pool-v4/enableRecoveryMode: found no matches, skipping +WARNING: On chain:gnosis:20230409-gearbox-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:gnosis:20230409-gearbox-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:gnosis:20230409-yearn-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:gnosis:20230409-yearn-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:gnosis:20230410-silo-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:gnosis:20230410-silo-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:zkevm:20230410-silo-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:zkevm:20230410-silo-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:avalanche:20230409-gearbox-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:avalanche:20230409-gearbox-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:avalanche:20230409-yearn-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:avalanche:20230409-yearn-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:avalanche:20230410-silo-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:avalanche:20230410-silo-linear-pool-v2/enableRecoveryMode: found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/setTargets: found no matches, skipping +WARNING: On chain:base:20230410-silo-linear-pool-v2/enableRecoveryMode: found no matches, skipping + +20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-erc4626-linear-pool-v4/enableRecoveryMode() already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-gearbox-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230409-yearn-linear-pool-v2/enableRecoveryMode() already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/setTargets(uint256,uint256) already has the proper owner set, skipping. +20230410-aave-linear-pool-v5/enableRecoveryMode() already has the proper owner set, skipping. diff --git a/BIPs/2023/2023-W31/BIP-322.json b/BIPs/2023/2023-W31/BIP-322.json new file mode 100644 index 000000000..77b8141fa --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-322.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1690542403538, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x38bc7947894c99cdb9b10ec8e17f2c770aa48b5df11320e5412394d5993e3d94" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "100000000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-322.report.txt b/BIPs/2023/2023-W31/BIP-322.report.txt new file mode 100644 index 000000000..4b9dd8685 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-322.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W31/BIP-322.json +COMMIT: `fe71662a6b8ca5024578980b9d9d0aabc7eb3520` +CHAIN(S): `arbitrum` +``` ++------------+----------+----------------+------------------+----------+--------------------------------------------+--------------------------------------------+--------------------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+==========+================+==================+==========+============================================+============================================+==========================+=========+============+ +| transfer | arbitrum | ARB | multisigs/lm | 100000 | 0x912CE59144191C1204E64559FE8253a0e49E6548 | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 100000000000000000000000 | BIP-322 | N/A | ++------------+----------+----------------+------------------+----------+--------------------------------------------+--------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-389.json b/BIPs/2023/2023-W31/BIP-389.json new file mode 100644 index 000000000..bd284db82 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-389.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690998840227, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb6add21a88cadfe3f40b3c035bf4d2f1f46255488fa20e3502a19a5fb2fea600" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-389.report.txt b/BIPs/2023/2023-W31/BIP-389.report.txt new file mode 100644 index 000000000..1bb03457a --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-389.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W31/BIP-389.json +COMMIT: `062beeca8960a6db0cf170f71f622988ce333508` +CHAIN(S): `arbitrum` +``` ++------------+----------+--------------------------------------------------------------------+-------------+-----------+--------------------------------------------+-------+--------+--------------+---------+------------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++============+==========+====================================================================+=============+===========+============================================+=======+========+==============+=========+============+ +| addGauge | arbitrum | 0xa1ea76c42b2938cfa9abea12357881006c52851300000000000000000000048f | DUSD/bbaUSD | 500 | 0xF07b17DC2f1bCA19dDe307690b59bAE3322fAf0F | 0.04% | 100.0% | L0 sidechain | BIP-389 | 0 | ++------------+----------+--------------------------------------------------------------------+-------------+-----------+--------------------------------------------+-------+--------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-390.json b/BIPs/2023/2023-W31/BIP-390.json new file mode 100644 index 000000000..7aaa2e195 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-390.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690998840227, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb6add21a88cadfe3f40b3c035bf4d2f1f46255488fa20e3502a19a5fb2fea600" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5c0e6d132C53DA7F6e958EdF13db0FA02C5b2eC6", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-390.report.txt b/BIPs/2023/2023-W31/BIP-390.report.txt new file mode 100644 index 000000000..379a71cf1 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-390.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W31/BIP-390.json +COMMIT: `27bc58c575855aa47916fbded1b2ca7ca922f211` +CHAIN(S): `polygon` +``` ++------------+---------+--------------------------------------------------------------------+-------------+-----------+--------------------------------------------+-------+--------+--------------+---------+------------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++============+=========+====================================================================+=============+===========+============================================+=======+========+==============+=========+============+ +| addGauge | polygon | 0x2645b13fd2c5295296e94a76280b968bdcbbdfed000000000000000000000c11 | DUSD/bbaUSD | 500 | 0x5c0e6d132C53DA7F6e958EdF13db0FA02C5b2eC6 | 0.04% | 100.0% | L0 sidechain | BIP-390 | 0 | ++------------+---------+--------------------------------------------------------------------+-------------+-----------+--------------------------------------------+-------+--------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-391.json b/BIPs/2023/2023-W31/BIP-391.json new file mode 100644 index 000000000..319af980a --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-391.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690998840227, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb6add21a88cadfe3f40b3c035bf4d2f1f46255488fa20e3502a19a5fb2fea600" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2Dc55e84bAF47296c2cf87B4eC3eb66fD7665611", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-391.report.txt b/BIPs/2023/2023-W31/BIP-391.report.txt new file mode 100644 index 000000000..7a2fcc8c5 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-391.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W31/BIP-391.json +COMMIT: `ddd93b87b1462dc6a32633fd1bf3bed0f8e9014a` +CHAIN(S): `mainnet` +``` ++------------+---------+--------------------------------------------------------------------+-----------------+-----------+--------------------------------------------+-------+-------+---------+---------+------------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++============+=========+====================================================================+=================+===========+============================================+=======+=======+=========+=========+============+ +| addGauge | mainnet | 0x26cc136e9b8fd65466f193a8e5710661ed9a98270002000000000000000005ad | 80BETS/20wstETH | N/A | 0x2Dc55e84bAF47296c2cf87B4eC3eb66fD7665611 | 0.5% | 2.0% | mainnet | BIP-391 | 0 | ++------------+---------+--------------------------------------------------------------------+-----------------+-----------+--------------------------------------------+-------+-------+---------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-392.json b/BIPs/2023/2023-W31/BIP-392.json new file mode 100644 index 000000000..827e295d5 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-392.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1690998840227, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb6add21a88cadfe3f40b3c035bf4d2f1f46255488fa20e3502a19a5fb2fea600" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x317e4966AE76fBf5110D2412c0c9332047399643", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-392.report.txt b/BIPs/2023/2023-W31/BIP-392.report.txt new file mode 100644 index 000000000..afddbd402 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-392.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W31/BIP-392.json +COMMIT: `941a49836ca85cbf3ffae5f3631a18a233b4a603` +CHAIN(S): `polygon` +``` ++------------+---------+--------------------------------------------------------------------+------------+-----------+--------------------------------------------+-------+-------+--------------+---------+------------+ +| function | chain | pool_id | symbol | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++============+=========+====================================================================+============+===========+============================================+=======+=======+==============+=========+============+ +| addGauge | polygon | 0x42942cdec85078cf0e28e9cb5acd40cb53997ed6000000000000000000000bea | 2BRL (BRZ) | 200 | 0x317e4966AE76fBf5110D2412c0c9332047399643 | 0.04% | 2.0% | L0 sidechain | BIP-392 | 0 | ++------------+---------+--------------------------------------------------------------------+------------+-----------+--------------------------------------------+-------+-------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-393-August.json b/BIPs/2023/2023-W31/BIP-393-August.json new file mode 100644 index 000000000..b9a047625 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-393-August.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-393-August.report.txt b/BIPs/2023/2023-W31/BIP-393-August.report.txt new file mode 100644 index 000000000..e3bf52a97 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-393-August.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W31/BIP-393-August.json +COMMIT: `4bde9191cde2253b75e7f3cd9024be40cb30455b` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 25000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000000000 | BIP-393 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W31/BIP-394-August.json b/BIPs/2023/2023-W31/BIP-394-August.json new file mode 100644 index 000000000..e0c760bbd --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-394-August.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W31/BIP-394-August.report.txt b/BIPs/2023/2023-W31/BIP-394-August.report.txt new file mode 100644 index 000000000..1c5400126 --- /dev/null +++ b/BIPs/2023/2023-W31/BIP-394-August.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W31/BIP-394-August.json +COMMIT: `44b88cf4e25189e1bad924e7b7a5a60c79fb977c` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 30000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000000000 | BIP-394 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W32/BIP-366B.json b/BIPs/2023/2023-W32/BIP-366B.json new file mode 100644 index 000000000..75e7785ea --- /dev/null +++ b/BIPs/2023/2023-W32/BIP-366B.json @@ -0,0 +1,457 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1689691934994, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x4bee732d45ed5271396d0e4b627e0e8079b2e9d21a444f4220a92e922c200c8d" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x33BcAa8A390e6DcF2f18AE5fDd9e38fD248219eB", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6AF7bCA454f3C8165225Ed46FD4d78cc90E81fAA", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1d157Cf1F1339864A3C291D1Bbe786d6Ee682434", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x70c6A653e273523FADfB4dF99558737906c230c6", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC764B55852F8849Ae69923e45ce077A576bF9a8d", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9fB7D6dCAC7b6aa20108BaD226c35B85A9e31B63", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21b2Ef3DC22B7bd4634205081c667e39742075E2", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcB2c2AF6c3E88b4a89aa2aae1D7C8120EEe9Ad0e", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3B6A85B5e1e6205ebF4d4eabf147D10e8e4bf0A5", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6b641e334f63f0D882538Fe189efC0702d961696", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x416d15C36c6DaAd2b9410B79aE557e6F07DcB642", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xacE0D479040231e3c6b17479cFd4444182d521d4", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8204b749B808818DEb7957DbD030ceEA44D1FE18", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xecF0a26a290cbf3DDBAB7eC5Fb44Ef5A294cAc18", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBAdF0c8702B7Cb06bBEC351d18071804759e312c", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W32/BIP-396.json b/BIPs/2023/2023-W32/BIP-396.json new file mode 100644 index 000000000..bdd8fd3bc --- /dev/null +++ b/BIPs/2023/2023-W32/BIP-396.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1691604340613, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x78ed1341b5d872dc0504c795c64ceee749b7ad79a0d62be13b0f5938fc6cfc8f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x852580e3E1C0Fd35DE426C5481670c1772525265", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W32/BIP-396.report.txt b/BIPs/2023/2023-W32/BIP-396.report.txt new file mode 100644 index 000000000..d277abe5c --- /dev/null +++ b/BIPs/2023/2023-W32/BIP-396.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W32/BIP-396.json +COMMIT: `5756da9c78a5e172f696a1299ac106d96ca9f5a3` +CHAIN(S): `polygon` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x70ff0078d55ce9c1a0e668f35eb4400a4300122d000000000000000000000beb | 2CHF (VCHF) | 0x852580e3E1C0Fd35DE426C5481670c1772525265 | "2CHF (VCHF)(0x70fF0078d55cE9C1A0E668f35eb4400a4300122D)", | "0x0000000000000000000000000000000000000000", | BIP-396 | 0 | +| | pool_address: 0x70fF0078d55cE9C1A0E668f35eb4400a4300122D | fee: 0.05, a-factor: 200 | Style: L0 sidechain, cap: 2.0% | "jCHF(0xbD1463F02f61676d53fd183C2B19282BFF93D099)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "VCHF(0xCdB3867935247049e87c38eA270edD305D84c9AE)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W32/BIP-397.json b/BIPs/2023/2023-W32/BIP-397.json new file mode 100644 index 000000000..800bf4263 --- /dev/null +++ b/BIPs/2023/2023-W32/BIP-397.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1691604536864, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0x02d318ad182805e759396e4a3ff3ad974a2348d3c21bf82e9c31f53acc47d0d9" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da", + "account": "0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7" + } + } + ] +} diff --git a/BIPs/2023/2023-W32/BIP-397.report.txt b/BIPs/2023/2023-W32/BIP-397.report.txt new file mode 100644 index 000000000..6ea05b56b --- /dev/null +++ b/BIPs/2023/2023-W32/BIP-397.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W32/BIP-397.json +COMMIT: `da73a8fea98a6e3829cdfb460e57ac91ffca9f1a` +CHAIN(S): `gnosis` +``` ++----------------------+------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+==================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartvault | 0x94Dd9C6152a2A0BBcB52d3297b723A6F01D5F9f7 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | BIP-397 | 0 | ++----------------------+------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W32/restore-emergencydao-killguage.json b/BIPs/2023/2023-W32/restore-emergencydao-killguage.json new file mode 100644 index 000000000..68de49017 --- /dev/null +++ b/BIPs/2023/2023-W32/restore-emergencydao-killguage.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692046187622, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xbf7c7982ef07e06fe7143ad3d656a8b842967b7cc766b724d4bd09c2cc3fc01b" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xec1d467d9ab03a0079c22a89037209f5763aec973897ea763e2cf25d71a5f12e", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + } + ] +} diff --git a/BIPs/2023/2023-W32/restore-emergencydao-killguage.report.txt b/BIPs/2023/2023-W32/restore-emergencydao-killguage.report.txt new file mode 100644 index 000000000..a5d8465e7 --- /dev/null +++ b/BIPs/2023/2023-W32/restore-emergencydao-killguage.report.txt @@ -0,0 +1,22 @@ +File name: BIPs/2023-W32/restore-emergencydao-killguage.json +COMMIT: `d7697e1aacb25e347f5ff44f85e7239a40827f57` +CHAIN(S): `mainnet` +``` ++----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+=====================+============================================+=============================================================================+====================================================================+=======+============+ +| Authorizer/grantRole | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/killGauge() | 0xec1d467d9ab03a0079c22a89037209f5763aec973897ea763e2cf25d71a5f12e | N/A | 0 | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/killGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/killGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/killGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/killGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/killGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/killGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/killGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/killGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/killGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/killGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/killGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/killGauge() | | | | ++----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------+--------------------------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/2023/2023-W33/BIP-322.json b/BIPs/2023/2023-W33/BIP-322.json new file mode 100644 index 000000000..77b8141fa --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-322.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1690542403538, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x38bc7947894c99cdb9b10ec8e17f2c770aa48b5df11320e5412394d5993e3d94" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "100000000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W33/BIP-400.json b/BIPs/2023/2023-W33/BIP-400.json new file mode 100644 index 000000000..c8b7b0160 --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-400.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692206339937, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xe21a083b90f252a9c7c9b244baa7517a96a89bc65611d13ddd0c372a756543bf" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W33/BIP-400.report.txt b/BIPs/2023/2023-W33/BIP-400.report.txt new file mode 100644 index 000000000..74e58c5f2 --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-400.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W33/BIP-400.json +COMMIT: `eea8397002f9eeeaf3f30fa56aa82c23a73c6bd8` +CHAIN(S): `polygon` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+========================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | ECLP-WMATIC-MATICX | 0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c | "WMATIC(0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270)", | | BIP-400 | 0 | +| | pool_address: 0xeE278d943584dd8640eaf4cc6c7a5C80c0073E85 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 10.0% | "MaticX(0xfa68FB4628DFF1028CFEc22b4162FCcd0d45efb6)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W33/BIP-401.json b/BIPs/2023/2023-W33/BIP-401.json new file mode 100644 index 000000000..09c4ef8ef --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-401.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692206625201, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f803c12f8cc06ee3b660d592351d43f01d4146133e8827919d49959b82d1d3" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W33/BIP-401.report.txt b/BIPs/2023/2023-W33/BIP-401.report.txt new file mode 100644 index 000000000..17cc06c77 --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-401.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W33/BIP-401.json +COMMIT: `fe49a8be3b398badb61de53c57442eb024e4b1fa` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=======================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xe4e72f872c4048925a78e1e6fddac411c9ae348a0000000000000000000005bc | 2BTC | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 | "tBTC(0x18084fbA666a33d37592fA2633fD49a74DD93a88)", | "0x0000000000000000000000000000000000000000", | BIP-401 | 0 | +| | pool_address: 0xe4e72f872c4048925a78E1e6Fddac411C9ae348A | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "WBTC(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "2BTC(0xe4e72f872c4048925a78E1e6Fddac411C9ae348A)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W33/BIP-402.json b/BIPs/2023/2023-W33/BIP-402.json new file mode 100644 index 000000000..9368633fc --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-402.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692206828850, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x661879972536e11cf66ff23070264b5a0fe5b3aba856ba482e0f81ca63cda963" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd2BE9C60E0D91353842a267361D4b0c20c3bFD5B", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W33/BIP-402.report.txt b/BIPs/2023/2023-W33/BIP-402.report.txt new file mode 100644 index 000000000..07ff13d0c --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-402.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W33/BIP-402.json +COMMIT: `fdb5d6e7d5f6d0804d18d207196daea16ebf75b5` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xbec621c9ab4ceddcc2a157ca9b5c475fab65f6a40000000000000000000000f3 | bpt-onsteady | 0xd2BE9C60E0D91353842a267361D4b0c20c3bFD5B | "bb-USD+(0x88D07558470484c03d3bb44c3ECc36CAfCF43253)", | "0x88D07558470484c03d3bb44c3ECc36CAfCF43253", | BIP-402 | 0 | +| | pool_address: 0xbec621c9AB4cEDDCc2A157CA9B5C475fAB65f6a4 | fee: 0.005, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "bb-DAI+(0xb5ad7d6d6F92a77F47f98C28C84893FBccc94809)", | "0xb5ad7d6d6F92a77F47f98C28C84893FBccc94809", | | | +| | | | | "bpt-onsteady(0xbec621c9AB4cEDDCc2A157CA9B5C475fAB65f6a4)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W33/BIP-403.json b/BIPs/2023/2023-W33/BIP-403.json new file mode 100644 index 000000000..67a936ae7 --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-403.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692207085472, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf1cb8906846d1ca4c2420a1876daf80c3fe3d0aa793bdba158f29762330ee06f" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x35e5100c90c1D657942EC5Ec4cbe38c53845245F", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W33/BIP-403.report.txt b/BIPs/2023/2023-W33/BIP-403.report.txt new file mode 100644 index 000000000..5f3115f87 --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-403.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W33/BIP-403.json +COMMIT: `2c1f8286ca7d274e51d45d6c4f5965b0279e011b` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x76b9cbd55fd6776c2de18738a04b0f9da56ce6ca00020000000000000000048d | 80BETS/20wstETH | 0x35e5100c90c1D657942EC5Ec4cbe38c53845245F | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-403 | 0 | +| | pool_address: 0x76b9Cbd55FD6776c2de18738A04b0f9da56Ce6cA | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "BETS(0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W33/BIP-404.json b/BIPs/2023/2023-W33/BIP-404.json new file mode 100644 index 000000000..795257053 --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-404.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692207308666, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xb27bed25769496e5555d0e85c9d22d1df7607e127dbd438d65c8f212c09ac9f6" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xB5bd58C733948e3d65d86BA9604e06e5dA276FD1", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x01A9502C11f411b494c62746D37e89d6f7078657", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd8191A3496a1520c2B5C81D04B26F8556Fc62d7b", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W33/BIP-404.report.txt b/BIPs/2023/2023-W33/BIP-404.report.txt new file mode 100644 index 000000000..3626163f2 --- /dev/null +++ b/BIPs/2023/2023-W33/BIP-404.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W33/BIP-404.json +COMMIT: `fcfa015d0b79aecf70c98ee12debce032aa50db2` +CHAIN(S): `arbitrum, mainnet` +``` ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=======================+=====+============================================+============+========+==============+=========+============+=============================================================================================================+ +| AAEntrypoint/killGauge() | Custom | wstETH/rETH/L | N/A | 0xB5bd58C733948e3d65d86BA9604e06e5dA276FD1 | Not Found% | 2.0% | mainnet | BIP-404 | 0 | [] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9c6d47ff73e0f5e51be5fd53236e3f595c5793f200020000000000000000042c | B-cbETH-wstETH-Stable | 50 | 0x01A9502C11f411b494c62746D37e89d6f7078657 | 0.04% | 100.0% | mainnet | BIP-404 | 1 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x18fdf15ff782e44c1f9b6c5846ff6b0f0004f6a2000200000000000000000560 | 50OHM-50LUSD | N/A | 0xd8191A3496a1520c2B5C81D04B26F8556Fc62d7b | 0.3% | 100.0% | mainnet | BIP-404 | 2 | ['LUSD(0x5f98805A4E8be255a32880FDeC7F6728C6568bA0)', 'OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xce2da1d3e5b5e4e1913f9ff65ee029d38682d8b900020000000000000000044e | B-50ACID-50WETH | N/A | 0x6ba66967B0723718d616ad5F293c2AE6d7b0FCAE | 0.25% | 2.0% | L0 sidechain | BIP-404 | 3 | ['ACID(0x29C1EA5ED7af53094b1a79eF60d20641987c867e)', 'WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)'] | ++--------------------------+--------------------------------------------------------------------+-----------------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W33/add new gauges.json b/BIPs/2023/2023-W33/add new gauges.json new file mode 100644 index 000000000..336c90d9d --- /dev/null +++ b/BIPs/2023/2023-W33/add new gauges.json @@ -0,0 +1,372 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692376857702, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0cd534390a5e923841c1da081b379831ebcf0f2d18374276cbcb921891d6e4c9" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x00b9bcd17cB049739D25FD7f826caA2E23b05620", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb6d101874B975083C76598542946Fe047f059066", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x91CeEB8d46428C5b8D76dEbc8156992E45d2d63f", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x857E38987a26517263aF091380e6159b92AFaaF1", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x41a8243656Bcf628aC92189558f70d371dd08b4E", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x895E415Ce9936C1dCA0A0859b0eA92e05BC966AE", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0afde8f3C20085fd45B64d35e7D9DB84749505CB", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xee01c0d9c0439c94D314a6ecAE0490989750746C", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x414Eae9a827f4174A63Fe4f10E975678Ca28C898", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd66aBAD5516f668D8Ea6157666B74862546E6e80", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x05266A0d5aC04E44D394B8A8A2d0935d8809692b", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6054A132020f48012C63D2cb83813327378F9423", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9965713498c74aee49cEf80B2195461F188F24f8", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa0c90BbC0f7506BAba46436F7302838FA96eBad6", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5F69B3800Ff7fA1bCB74090e16bD4b42A710749e", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc6757E94EF9116B89f87B6B982e8a8a43C8c3C80", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W33/add new gauges.report.txt b/BIPs/2023/2023-W33/add new gauges.report.txt new file mode 100644 index 000000000..e431ccc39 --- /dev/null +++ b/BIPs/2023/2023-W33/add new gauges.report.txt @@ -0,0 +1,92 @@ +File name: BIPs/2023-W33/add new gauges.json +COMMIT: `c01ff423198aaefa135f7351d3edda0de9a099ac` +CHAIN(S): `polygon, mainnet, arbitrum, gnosis` +``` ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+============================+============================================+====================================================================+=================================================+=======+============+ +| GaugeAdderV4/addGauge | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | 4POOL-BPT | 0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad | "4POOL-BPT(0x423A1323c871aBC9d89EB06855bF5347048Fc4A5)", | "0x0000000000000000000000000000000000000000", | N/A | 0 | +| | pool_address: 0x423A1323c871aBC9d89EB06855bF5347048Fc4A5 | fee: 0.01, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "DAI(0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDT(0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497 | rETH-WETH-BPT | 0x00b9bcd17cB049739D25FD7f826caA2E23b05620 | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | N/A | 1 | +| | pool_address: 0xadE4A71BB62bEc25154CFc7e6ff49A513B491E81 | fee: 0.02, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "rETH-WETH-BPT(0xadE4A71BB62bEc25154CFc7e6ff49A513B491E81)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xA73ec45Fe405B5BFCdC0bF4cbc9014Bb32a01cd2" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | wstETH-WETH-BPT | 0xb6d101874B975083C76598542946Fe047f059066 | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | N/A | 2 | +| | pool_address: 0x9791d590788598535278552EEcD4b211bFc790CB | fee: 0.01, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH-WETH-BPT(0x9791d590788598535278552EEcD4b211bFc790CB)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x3cdf30e36154a66a4478e15ed41659b5bb0738f100000000000000000000049b | DUSD-4POOL-BPT | 0x91CeEB8d46428C5b8D76dEbc8156992E45d2d63f | "DUSD-4POOL-BPT(0x3CdF30e36154a66A4478e15ED41659b5BB0738f1)", | "0x0000000000000000000000000000000000000000", | N/A | 3 | +| | pool_address: 0x3CdF30e36154a66A4478e15ED41659b5BB0738f1 | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "4POOL-BPT(0x423A1323c871aBC9d89EB06855bF5347048Fc4A5)", | "0x423A1323c871aBC9d89EB06855bF5347048Fc4A5", | | | +| | | | | "DUSD(0x8EC1877698ACF262Fe8Ad8a295ad94D6ea258988)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xb8bb1ce9c6e5401d66fe2126db6e7387e1e24ffe00020000000000000000003d | 50WETH-50GNO | 0x857E38987a26517263aF091380e6159b92AFaaF1 | "WETH(0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1)", | "0x0000000000000000000000000000000000000000", | N/A | 4 | +| | pool_address: 0xB8bB1ce9C6E5401D66fE2126dB6E7387E1E24fFE | fee: 0.1, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "GNO(0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x66888e4f35063ad8bb11506a6fde5024fb4f1db0000100000000000000000053 | staBAL3-WETH-WBTC-BPT | 0x41a8243656Bcf628aC92189558f70d371dd08b4E | "staBAL3(0x2086f52651837600180dE173B09470F54EF74910)", | "0x0000000000000000000000000000000000000000", | N/A | 5 | +| | pool_address: 0x66888E4F35063Ad8bb11506A6fde5024fb4f1dB0 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "WETH(0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WBTC(0x8e5bBbb09Ed1ebdE8674Cda39A0c169401db4252)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x2086f52651837600180de173b09470f54ef7491000000000000000000000004f | staBAL3 | 0x895E415Ce9936C1dCA0A0859b0eA92e05BC966AE | "staBAL3(0x2086f52651837600180dE173B09470F54EF74910)", | "0x0000000000000000000000000000000000000000", | N/A | 6 | +| | pool_address: 0x2086f52651837600180dE173B09470F54EF74910 | fee: 0.005, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "USDT(0x4ECaBa5870353805a9F068101A40E0f32ed605C6)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WXDAI(0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x274dedb9356c3e1e24bfe2bf3d4349fbdbfa0d14000200000000000000000054 | staBAL3-GNO-BPT | 0x0afde8f3C20085fd45B64d35e7D9DB84749505CB | "staBAL3(0x2086f52651837600180dE173B09470F54EF74910)", | "0x0000000000000000000000000000000000000000", | N/A | 7 | +| | pool_address: 0x274DEDB9356C3E1E24Bfe2BF3D4349fBdBFA0d14 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "GNO(0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | wstETH-WETH-BPT | 0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | N/A | 8 | +| | pool_address: 0x93d199263632a4EF4Bb438F1feB99e57b4b5f0BD | fee: 0.01, a-factor: 5000 | Style: mainnet, cap: 100.0% | "wstETH-WETH-BPT(0x93d199263632a4EF4Bb438F1feB99e57b4b5f0BD)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca | swETH-WETH-BPT | 0xee01c0d9c0439c94D314a6ecAE0490989750746C | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | N/A | 9 | +| | pool_address: 0xE7e2c68d3b13d905BBb636709cF4DfD21076b9D2 | fee: 0.01, a-factor: 1500 | Style: mainnet, cap: 100.0% | "swETH-WETH-BPT(0xE7e2c68d3b13d905BBb636709cF4DfD21076b9D2)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "swETH(0xf951E335afb289353dc249e82926178EaC7DEd78)" | "0xf951E335afb289353dc249e82926178EaC7DEd78" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xbe19d87ea6cd5b05bbc34b564291c371dae967470000000000000000000005c4 | GHO-3POOL-BPT | 0x414Eae9a827f4174A63Fe4f10E975678Ca28C898 | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | "0x0000000000000000000000000000000000000000", | N/A | 10 | +| | pool_address: 0xbE19d87Ea6cd5b05bBC34B564291c371dAe96747 | fee: 0.05, a-factor: 200 | Style: mainnet, cap: 100.0% | "USDC-DAI-USDT(0x79c58f70905F734641735BC61e45c19dD9Ad60bC)", | "0x79c58f70905F734641735BC61e45c19dD9Ad60bC", | | | +| | | | | "GHO-3POOL-BPT(0xbE19d87Ea6cd5b05bBC34B564291c371dAe96747)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xdb02f620a59f1b16146edd0e8dbeb27d94e9c25c0002000000000000000005c5 | 50STG-503POOL-BPT | 0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97 | "USDC-DAI-USDT(0x79c58f70905F734641735BC61e45c19dD9Ad60bC)", | "0x0000000000000000000000000000000000000000", | N/A | 11 | +| | pool_address: 0xdB02F620a59F1B16146EDD0e8dBEb27D94e9C25c | fee: 1.0, a-factor: N/A | Style: mainnet, cap: 100.0% | "STG(0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x37b18b10ce5635a84834b26095a0ae5639dcb7520000000000000000000005cb | ETHx-WETH-BPT | 0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e | "ETHx-WETH-BPT(0x37b18B10ce5635a84834b26095A0AE5639dCB752)", | "0x0000000000000000000000000000000000000000", | N/A | 12 | +| | pool_address: 0x37b18B10ce5635a84834b26095A0AE5639dCB752 | fee: 0.04, a-factor: 1500 | Style: mainnet, cap: 100.0% | "ETHx(0xA35b1B31Ce002FBF2058D22F30f95D405200A15b)", | "0xAAE054B9b822554dd1D9d1F48f892B4585D3bbf0", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xd6abbfd427398ea463b4f15f405624bab520db030000000000000000000005c6 | cbETH-wstETH-BPT | 0xd66aBAD5516f668D8Ea6157666B74862546E6e80 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | N/A | 13 | +| | pool_address: 0xd6AbbfD427398ea463b4f15F405624baB520db03 | fee: 0.04, a-factor: 5000 | Style: mainnet, cap: 100.0% | "cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)", | "0x7311E4BB8a72e7B300c5B8BDE4de6CdaA822a5b1", | | | +| | | | | "cbETH-wstETH-BPT(0xd6AbbfD427398ea463b4f15F405624baB520db03)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xd5d99b7e9697ba8bb1da48f07ba81900c7572cea0000000000000000000005cc | DUSD-3POOL-BPT | 0x05266A0d5aC04E44D394B8A8A2d0935d8809692b | "USDC-DAI-USDT(0x79c58f70905F734641735BC61e45c19dD9Ad60bC)", | "0x79c58f70905F734641735BC61e45c19dD9Ad60bC", | N/A | 14 | +| | pool_address: 0xD5D99B7e9697bA8bB1dA48f07BA81900c7572CeA | fee: 0.01, a-factor: 500 | Style: mainnet, cap: 100.0% | "DUSD(0xa48F322F8b3edff967629Af79E027628b9Dd1298)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "DUSD-3POOL-BPT(0xD5D99B7e9697bA8bB1dA48f07BA81900c7572CeA)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x89b753153678bc434c610b7e9182297cada8ff29000000000000000000000c21 | stMATIC-WMATIC-BPT | 0x6054A132020f48012C63D2cb83813327378F9423 | "WMATIC(0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270)", | "0x0000000000000000000000000000000000000000", | N/A | 15 | +| | pool_address: 0x89B753153678BC434c610B7e9182297caDA8Ff29 | fee: 0.01, a-factor: 3000 | Style: L0 sidechain, cap: 100.0% | "stMATIC(0x3A58a54C066FdC0f2D55FC9C89F0415C92eBf3C4)", | "0xdEd6C522d803E35f65318a9a4d7333a22d582199", | | | +| | | | | "stMATIC-WMATIC-BPT(0x89B753153678BC434c610B7e9182297caDA8Ff29)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | maticX-WMATIC-BPT | 0x9965713498c74aee49cEf80B2195461F188F24f8 | "WMATIC(0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270)", | "0x0000000000000000000000000000000000000000", | N/A | 16 | +| | pool_address: 0xcd78A20c597E367A4e478a2411cEB790604D7c8F | fee: 0.01, a-factor: 3000 | Style: L0 sidechain, cap: 100.0% | "maticX-WMATIC-BPT(0xcd78A20c597E367A4e478a2411cEB790604D7c8F)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "MaticX(0xfa68FB4628DFF1028CFEc22b4162FCcd0d45efb6)" | "0xeE652bbF72689AA59F0B8F981c9c90e2A8Af8d8f" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xdc31233e09f3bf5bfe5c10da2014677c23b6894c000000000000000000000c23 | wstETH-WETH-BPT | 0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0 | "wstETH(0x03b54A6e9a984069379fae1a4fC4dBAE93B3bCCD)", | "0x693A9Aca2f7b699BBd3d55d980Ac8a5D7a66868B", | N/A | 17 | +| | pool_address: 0xDc31233e09f3bf5bfE5c10da2014677C23b6894c | fee: 0.05, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "WETH(0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH-WETH-BPT(0xDc31233e09f3bf5bfE5c10da2014677C23b6894c)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0xc474b8512664edc9e746ee5e786478aea15887d2000000000000000000000c25 | frxETH-WETH-BPT | 0xa0c90BbC0f7506BAba46436F7302838FA96eBad6 | "WETH(0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619)", | "0x0000000000000000000000000000000000000000", | N/A | 18 | +| | pool_address: 0xC474B8512664eDc9e746Ee5e786478AEA15887d2 | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "frxETH-WETH-BPT(0xC474B8512664eDc9e746Ee5e786478AEA15887d2)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "frxETH(0xEe327F889d5947c1dc1934Bb208a1E792F953E96)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x8c89fb53d4d83173dd65b7a94569558ce393460f000000000000000000000c26 | FRAX-USDC-BPT | 0x5F69B3800Ff7fA1bCB74090e16bD4b42A710749e | "USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)", | "0x0000000000000000000000000000000000000000", | N/A | 19 | +| | pool_address: 0x8C89fb53d4D83173Dd65B7a94569558Ce393460F | fee: 0.04, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "FRAX(0x45c32fA6DF82ead1e2EF74d17b76547EDdFaFF89)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "FRAX-USDC-BPT(0x8C89fb53d4D83173Dd65B7a94569558Ce393460F)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x6da7f1c193ab6c4bd16eb14a6305bba8d25737ff000000000000000000000c29 | DUSD-USDC-BPT | 0xc6757E94EF9116B89f87B6B982e8a8a43C8c3C80 | "USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)", | "0x0000000000000000000000000000000000000000", | N/A | 20 | +| | pool_address: 0x6dA7f1C193ab6C4bD16EB14A6305BBA8d25737fF | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "DUSD-USDC-BPT(0x6dA7f1C193ab6C4bD16EB14A6305BBA8d25737fF)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "DUSD(0xEC38621e72D86775a89C7422746de1f52bbA5320)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/2023/2023-W34/BIP-393-September.json b/BIPs/2023/2023-W34/BIP-393-September.json new file mode 100644 index 000000000..b9a047625 --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-393-September.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W34/BIP-393-September.report.txt b/BIPs/2023/2023-W34/BIP-393-September.report.txt new file mode 100644 index 000000000..69a42c2ce --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-393-September.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W34/BIP-393-September.json +COMMIT: `4bde9191cde2253b75e7f3cd9024be40cb30455b` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 25000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000000000 | BIP-393 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W34/BIP-394-September.json b/BIPs/2023/2023-W34/BIP-394-September.json new file mode 100644 index 000000000..e0c760bbd --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-394-September.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W34/BIP-394-September.report.txt b/BIPs/2023/2023-W34/BIP-394-September.report.txt new file mode 100644 index 000000000..96e31df09 --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-394-September.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W34/BIP-394-September.json +COMMIT: `44b88cf4e25189e1bad924e7b7a5a60c79fb977c` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 30000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000000000 | BIP-394 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W34/BIP-405.json b/BIPs/2023/2023-W34/BIP-405.json new file mode 100644 index 000000000..c00e70ba7 --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-405.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692814066349, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x059edd48782b505534b9147e237acfa71f524a226c4c12bd3f5f43a6026ce0a2" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x399A750516c14C80480AED2Bb597092b9118Caa9", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2023/2023-W34/BIP-405.report.txt b/BIPs/2023/2023-W34/BIP-405.report.txt new file mode 100644 index 000000000..f81ad98ba --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-405.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W34/BIP-405.json +COMMIT: `6d5eacd509564dce80785c8a172d71a26b1fd561` +CHAIN(S): `gnosis` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x0c1b9ce6bf6c01f587c2ee98b0ef4b20c6648753000000000000000000000050 | EURe/staBAL3 | 0x399A750516c14C80480AED2Bb597092b9118Caa9 | "EURe/staBAL3(0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753)", | "0x0000000000000000000000000000000000000000", | BIP-405 | 0 | +| | pool_address: 0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753 | fee: 0.05, a-factor: 20 | Style: L0 sidechain, cap: 2.0% | "staBAL3(0x2086f52651837600180dE173B09470F54EF74910)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)" | "0xE7511f6e5C593007eA8A7F52af4B066333765e03" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W34/BIP-406.json b/BIPs/2023/2023-W34/BIP-406.json new file mode 100644 index 000000000..95e625119 --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-406.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692814604938, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xaa793167d55267b763e5b5e90c8a0c874b7b2d118a75f8e8a85ade1d4cb0b52b" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W34/BIP-406.report.txt b/BIPs/2023/2023-W34/BIP-406.report.txt new file mode 100644 index 000000000..d44fea62b --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-406.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/2023-W34/BIP-406.json +COMMIT: `e5a5dc647d4edc061a215e225b540ede5b2ed1af` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+====================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | wstETH/rETH/sfrxETH | 0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8 | "wstETH/rETH/sfrxETH(0x0c8972437a38b389ec83d1E666b69b8a4fcf8bfd)", | "0x0000000000000000000000000000000000000000", | BIP-406 | 0 | +| | pool_address: 0x0c8972437a38b389ec83d1E666b69b8a4fcf8bfd | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "sfrxETH(0x95aB45875cFFdba1E5f451B950bC2E42c0053f39)", | "0x2237a270E87F81A30a1980422185f806e4549346", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xA73ec45Fe405B5BFCdC0bF4cbc9014Bb32a01cd2" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W34/BIP-407.json b/BIPs/2023/2023-W34/BIP-407.json new file mode 100644 index 000000000..7783fd450 --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-407.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692814806110, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x336b4145fb5e7d570569015ee21d11b901d960aec3491c9e10c9bd9c78c6f642" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2efCc89a1D534a8ee0e8dD469fa05cb20ccF5C19", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W34/BIP-407.report.txt b/BIPs/2023/2023-W34/BIP-407.report.txt new file mode 100644 index 000000000..3019b5571 --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-407.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W34/BIP-407.json +COMMIT: `f73a8d3b4023e242b4bb82dcc9d446802bc49ff0` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x8ed9e70bfa17a1e2c4f8e561c8d0c2d1acc092fa0001000000000000000005ce | 33LCNY-33LUSD-33WETH | 0x2efCc89a1D534a8ee0e8dD469fa05cb20ccF5C19 | "LUSD(0x5f98805A4E8be255a32880FDeC7F6728C6568bA0)", | "0x0000000000000000000000000000000000000000", | BIP-407 | 0 | +| | pool_address: 0x8ED9e70BfA17A1E2C4F8e561c8d0c2d1acc092fA | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 2.0% | "LCNY(0x7635B612792e4bFB7F2FA12a3E5d5A3f2e3C34BC)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W34/BIP-411.json b/BIPs/2023/2023-W34/BIP-411.json new file mode 100644 index 000000000..4661d370f --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-411.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692914820121, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xc59cdafc993a1b0f68fa2acb09189c858d359782153f20e904e7f6b3cbb3815a" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf720e9137baa9C7612e6CA59149a5057ab320cFa", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W34/BIP-411.report.txt b/BIPs/2023/2023-W34/BIP-411.report.txt new file mode 100644 index 000000000..3d74da7e6 --- /dev/null +++ b/BIPs/2023/2023-W34/BIP-411.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/2023-W34/BIP-411.json +COMMIT: `9264a0ef48a0e055216a13b6db10946bda53db23` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | GHO/USDT/USDC | 0xf720e9137baa9C7612e6CA59149a5057ab320cFa | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | "0x0000000000000000000000000000000000000000", | BIP-411 | 0 | +| | pool_address: 0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF | fee: 0.05, a-factor: 200 | Style: mainnet, cap: 100.0% | "GHO/USDT/USDC(0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDT(0xdAC17F958D2ee523a2206206994597C13D831ec7)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W34/BIP410.json b/BIPs/2023/2023-W34/BIP410.json new file mode 100644 index 000000000..530e6ab19 --- /dev/null +++ b/BIPs/2023/2023-W34/BIP410.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692883005606, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xc1c0805b17bab9cef177d3dc55f126522764e471c6be90da6ec9fdec91ad461a" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x02ea1C2702eCD478082D4b3AE902B6d10d26b920", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W34/BIP410.report.txt b/BIPs/2023/2023-W34/BIP410.report.txt new file mode 100644 index 000000000..f9952bd9c --- /dev/null +++ b/BIPs/2023/2023-W34/BIP410.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W34/BIP410.json +COMMIT: `32a0004394697e855fa8ea71c03ae4ec3af34595` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+-------------------------------------------------+--------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=======================================================+=================================================+========+============+ +| GaugeAdderV4/addGauge | 0x6f0ed6f346007563d3266de350d174a831bde0ca0001000000000000000005db | 50KNC-25WETH-25USDC-BPT | 0x02ea1C2702eCD478082D4b3AE902B6d10d26b920 | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | BIP410 | 0 | +| | pool_address: 0x6f0ed6f346007563D3266DE350d174a831bDE0ca | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 10.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "KNC(0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+-------------------------------------------------+--------+------------+ +``` diff --git a/BIPs/2023/2023-W35/BIP-322.json b/BIPs/2023/2023-W35/BIP-322.json new file mode 100644 index 000000000..77b8141fa --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-322.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1690542403538, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x38bc7947894c99cdb9b10ec8e17f2c770aa48b5df11320e5412394d5993e3d94" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "100000000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W35/BIP-412.json b/BIPs/2023/2023-W35/BIP-412.json new file mode 100644 index 000000000..1c529db6b --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-412.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693414411806, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xd10b6330fd1fcb594688bc990b816f7c40c2e9db28bc6f5ae88cca32f11106e6" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W35/BIP-412.report.txt b/BIPs/2023/2023-W35/BIP-412.report.txt new file mode 100644 index 000000000..57347ea52 --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-412.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W35/BIP-412.json +COMMIT: `8f52fde7f85298e81e4c575809ebf938c6100b1e` +CHAIN(S): `mainnet, arbitrum` +``` ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+======================+=====+============================================+========+========+==============+=========+============+============================================================================================================+ +| AAEntrypoint/killGauge() | 0x32296969ef14eb0c6d29669c550d4a0449130230000200000000000000000080 | B-stETH-STABLE | 50 | 0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE | 0.04% | N/A | mainnet | BIP-412 | 0 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x36bf227d6bac96e2ab1ebb5492ecec69c691943f000200000000000000000316 | B-wstETH-WETH-Stable | 50 | 0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf | 0.001% | 100.0% | L0 sidechain | BIP-412 | 1 | ['wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)'] | ++--------------------------+--------------------------------------------------------------------+----------------------+-----+--------------------------------------------+--------+--------+--------------+---------+------------+------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W35/BIP-413.json b/BIPs/2023/2023-W35/BIP-413.json new file mode 100644 index 000000000..e8508376f --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-413.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693414762806, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x785156b946e457c8d9b692282ebb3a2a12ad959e6f5bb17275615d8b164f0345" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x414Eae9a827f4174A63Fe4f10E975678Ca28C898", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5c23661E747F84E0c71d782e5f1513126041734B", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W35/BIP-413.report.txt b/BIPs/2023/2023-W35/BIP-413.report.txt new file mode 100644 index 000000000..c1c1dd6e7 --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-413.report.txt @@ -0,0 +1,14 @@ +File name: BIPs/2023-W35/BIP-413.json +COMMIT: `84134b3c1597a52922155de413cd8c55b1b27e52` +CHAIN(S): `mainnet` +``` ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+===============+=====+============================================+=======+========+=========+=========+============+===============================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xbe19d87ea6cd5b05bbc34b564291c371dae967470000000000000000000005c4 | GHO-3POOL-BPT | 200 | 0x414Eae9a827f4174A63Fe4f10E975678Ca28C898 | 0.05% | 100.0% | mainnet | BIP-413 | 0 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'USDC-DAI-USDT(0x79c58f70905F734641735BC61e45c19dD9Ad60bC)', 'GHO-3POOL-BPT(0xbE19d87Ea6cd5b05bBC34B564291c371dAe96747)'] | ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb2b918f2d628b4c8ff237b0a1c6ac3bea222fedc00020000000000000000059c | 50GHO/50OHM | N/A | 0x73f49a29F91e016CC9BdE5cdF6f5DC049280e5A9 | 0.05% | 100.0% | mainnet | BIP-413 | 1 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)'] | ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x9a172e1cb0e99f7e6dcc4c52e4655e8f337d5c0000000000000000000000059a | GHO/MAI | 100 | 0x5c23661E747F84E0c71d782e5f1513126041734B | 0.05% | 100.0% | mainnet | BIP-413 | 2 | ['GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)', 'MAI(0x8D6CeBD76f18E1558D4DB88138e2DeFB3909fAD6)', 'GHO/MAI(0x9A172e1cb0E99f7E6DCc4c52e4655e8f337d5c00)'] | ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W35/BIP-414.json b/BIPs/2023/2023-W35/BIP-414.json new file mode 100644 index 000000000..51fcef6a5 --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-414.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693414975976, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x419e8e78a7adeb9c06a90a4e26ca689ffacb7965c739fccd639d757c3aad4cce" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W35/BIP-414.report.txt b/BIPs/2023/2023-W35/BIP-414.report.txt new file mode 100644 index 000000000..ed739ffa1 --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-414.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W35/BIP-414.json +COMMIT: `5a2c145b91615e557e6e9bcad3b7b8529edad3f6` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | ECLP-wstETH-wETH | 0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | | BIP-414 | 0 | +| | pool_address: 0xf01b0684C98CD7aDA480BFDF6e43876422fa1Fc1 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 10.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W35/BIP-415.json b/BIPs/2023/2023-W35/BIP-415.json new file mode 100644 index 000000000..4a5bf88ae --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-415.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693415310266, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xedd98268916b60691993a555c0044ef580a5ee41b5410706e62dc955b51f4ce1" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W35/BIP-415.report.txt b/BIPs/2023/2023-W35/BIP-415.report.txt new file mode 100644 index 000000000..4ae2618a4 --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-415.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W35/BIP-415.json +COMMIT: `76ccf9db12c0cb498ded0706535ef5741b982a71` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | ECLP-wstETH-cbETH | 0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | | BIP-415 | 0 | +| | pool_address: 0xF7A826D47c8E02835D94fb0Aa40F0cC9505cb134 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 10.0% | "cbETH(0xBe9895146f7AF43049ca1c1AE358B0541Ea49704)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W35/BIP-416.json b/BIPs/2023/2023-W35/BIP-416.json new file mode 100644 index 000000000..68faa4edd --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-416.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693415434779, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0fbcd3e44f9c40ec2f30d47f2a1fb6e28e3f693d65fa122c3c2c2cd53c8d762b" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x329cAebB9be5144C5727347F64F8B3a3B109ec57", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W35/BIP-416.report.txt b/BIPs/2023/2023-W35/BIP-416.report.txt new file mode 100644 index 000000000..637abe84d --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-416.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W35/BIP-416.json +COMMIT: `81249e42374b4dd6a5f675c8f75e849a54f1f9ca` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xead7e0163e3b33bf0065c9325fc8fb9b18cc82130000000000000000000004a9 | STAR/USDC-BPT | 0x329cAebB9be5144C5727347F64F8B3a3B109ec57 | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)", | "0x0000000000000000000000000000000000000000", | BIP-416 | 0 | +| | pool_address: 0xEAD7e0163e3b33bF0065C9325fC8fb9B18cc8213 | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 10.0% | "STAR(0xC19669A405067927865B40Ea045a2baabbbe57f5)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "STAR/USDC-BPT (0xEAD7e0163e3b33bF0065C9325fC8fb9B18cc8213)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W35/BIP-417.json b/BIPs/2023/2023-W35/BIP-417.json new file mode 100644 index 000000000..549281590 --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-417.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693493264869, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x05b0ae99564946fd7da656a54500a16ac1f0d363d68554209ffe5c0a061850d0" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD5417ACb575c799cEB373f85AdF100C7cD84C8c8", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W35/BIP-417.report.txt b/BIPs/2023/2023-W35/BIP-417.report.txt new file mode 100644 index 000000000..b01f01d55 --- /dev/null +++ b/BIPs/2023/2023-W35/BIP-417.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W35/BIP-417.json +COMMIT: `9acd0677182256fd4641fe9ec7eedf3ee0f5121c` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x10f8ea49255e8a865ca4eda1630168c85cc8ee810002000000000000000005d3 | 50ELFI-50WETH | 0xD5417ACb575c799cEB373f85AdF100C7cD84C8c8 | "ELFI(0x5c6D51ecBA4D8E4F20373e3ce96a62342B125D6d)", | "0x0000000000000000000000000000000000000000", | BIP-417 | 0 | +| | pool_address: 0x10f8EA49255e8a865ca4edA1630168C85cC8ee81 | fee: 0.5, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W36/BIP-419.json b/BIPs/2023/2023-W36/BIP-419.json new file mode 100644 index 000000000..06b1dbb72 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-419.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693661460451, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x4c64427483f4fbb852f4538fd9d90037f1e5bca30dfcd4f50db015ab42786bc7" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x455f20c54b5712a84454468c7831f7c431aeEB1C", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W36/BIP-419.report.txt b/BIPs/2023/2023-W36/BIP-419.report.txt new file mode 100644 index 000000000..185f70a95 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-419.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W36/BIP-419.json +COMMIT: `9c6f195aabd745f9c38f3ff3e63087fb60acab29` +CHAIN(S): `polygon` +``` ++--------------------------+--------------------------------------------------------------------+------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+============+=====+============================================+=======+=======+==============+=========+============+===================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xe19ed40a47f9b0cea4ca6d372df66107758913ec000000000000000000000b41 | 2BRL (BRZ) | 200 | 0x455f20c54b5712a84454468c7831f7c431aeEB1C | 0.05% | 2.0% | L0 sidechain | BIP-419 | 0 | ['BRZ(0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f)', '2BRL (BRZ)(0xe19ed40A47F9B0CEA4ca6D372dF66107758913Ec)', 'jBRL(0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722)'] | ++--------------------------+--------------------------------------------------------------------+------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W36/BIP-420.json b/BIPs/2023/2023-W36/BIP-420.json new file mode 100644 index 000000000..830ab1eba --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-420.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693966694034, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x3517f71125c83728d931656021b9be6234f273ff3cb99205762cad9322af1a3a" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x68258012DA3B933a81617FD08c9382a60B87cA98", + "value": "8700000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "2500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x7b065Fcb0760dF0CEA8CFd144e08554F3CeA73D1", + "value": "4600000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1bf019A44a708FBEBA7ADc79bdaD3D0769fF3a7b", + "value": "3800000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W36/BIP-420.report.txt b/BIPs/2023/2023-W36/BIP-420.report.txt new file mode 100644 index 000000000..da599aade --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-420.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W36/BIP-420.json +COMMIT: `89181b31a0ab17b93c16311ae52cf2ae601489fc` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x68258012DA3B933a81617FD08c9382a60B87cA98 | 8700.0 (RAW: 8700000000) | BIP-420 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 2500.0 (RAW: 2500000000) | BIP-420 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x7b065Fcb0760dF0CEA8CFd144e08554F3CeA73D1 | 4600.0 (RAW: 4600000000) | BIP-420 | 2 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x1bf019A44a708FBEBA7ADc79bdaD3D0769fF3a7b | 3800.0 (RAW: 3800000000) | BIP-420 | 3 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W36/BIP-421.json b/BIPs/2023/2023-W36/BIP-421.json new file mode 100644 index 000000000..2f0e2a7b4 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-421.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1693977752351, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa9dbb63de1228ba5e3f1423bb3d7274324a27c4ecb05028eb5f684345f1cfb42" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA5893CF81150Aa61a0b33950c1B13C5251C19A10", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W36/BIP-421.report.txt b/BIPs/2023/2023-W36/BIP-421.report.txt new file mode 100644 index 000000000..0fe3fdd0e --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-421.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W36/BIP-421.json +COMMIT: `7f1218317d69431963b4e3944395b0dfb20c93b3` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xacfe9b4782910a853b68abba60f3fd8049ffe6380000000000000000000000ff | bpt-dolausdc | 0xA5893CF81150Aa61a0b33950c1B13C5251C19A10 | "USDC(0x7F5c764cBc14f9669B88837ca1490cCa17c31607)", | "0x0000000000000000000000000000000000000000", | BIP-421 | 0 | +| | pool_address: 0xACfE9b4782910A853b68abbA60f3FD8049Ffe638 | fee: 0.2, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "DOLA(0x8aE125E8653821E851F12A49F7765db9a9ce7384)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "bpt-dolausdc(0xACfE9b4782910A853b68abbA60f3FD8049Ffe638)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W36/BIP-422.json b/BIPs/2023/2023-W36/BIP-422.json new file mode 100644 index 000000000..0e0373e0a --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-422.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1693978843701, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0x5c845b36904b07546853bf41c334f761839be8f103c1d41893a4ea6f795489cb" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50", + "account": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50, 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae, 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + } + } + ] +} diff --git a/BIPs/2023/2023-W36/BIP-422.report.txt b/BIPs/2023/2023-W36/BIP-422.report.txt new file mode 100644 index 000000000..05cc864b0 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-422.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W36/BIP-422.json +COMMIT: `2125370cb3538e3c6f6313b6ec684be8c9c58c88` +CHAIN(S): `avalanche` +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+======================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x32725667b078898f78f53e59f45eb1837b34a9469dbe36f9270b674247b23abf | BIP-422 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | BIP-422 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x8ceae9d0f076b4b0c529529f6bf11832835b93b533445c655b840015f7025e50 | BIP-422 | 2 | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xd7acda26118b9ff06dd8526d0197d58c0c7ed83074be6d915bff2db42b5581ae | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0xb9c5dbd31b49d898a12157d05b5f59e61b30533c20fe266652c1017837135f0c | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W36/BIP-423.json b/BIPs/2023/2023-W36/BIP-423.json new file mode 100644 index 000000000..69ae2f545 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-423.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1694024789187, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xbb359b851e69d52efc5e7284aa6a1299d08d73c824fcf02b47d56651bf6a3404" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf0d3268d36Adf812Fa69756500D72A899D4c2420", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb1af0D75AEEa1c13c450ffc7e12083072DAf41eb", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x93AE6971F03CE890FA4e9274Ab441477b84DAE5f", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x64fCeD4684f4B065E6b900c4E99a0CBaCC5E5fe1", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2023/2023-W36/BIP-423.report.txt b/BIPs/2023/2023-W36/BIP-423.report.txt new file mode 100644 index 000000000..18b36d2db --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-423.report.txt @@ -0,0 +1,21 @@ +File name: BIPs/2023-W36/BIP-423.json +COMMIT: `45702ff6092976fedd8d8846483e116d300bc00d` +CHAIN(S): `gnosis` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xeb30c85cc528537f5350cf5684ce6a4538e13394000200000000000000000059 | B-50USD-50wstETH | 0xf0d3268d36Adf812Fa69756500D72A899D4c2420 | "staBAL3(0x2086f52651837600180dE173B09470F54EF74910)", | "0x0000000000000000000000000000000000000000", | BIP-423 | 0 | +| | pool_address: 0xEb30C85CC528537f5350CF5684Ce6a4538e13394 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x4683e340a8049261057d5ab1b29c8d840e75695e00020000000000000000005a | B-50wstETH-50GNO | 0xb1af0D75AEEa1c13c450ffc7e12083072DAf41eb | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)", | "0x0000000000000000000000000000000000000000", | BIP-423 | 1 | +| | pool_address: 0x4683e340a8049261057D5aB1b29C8d840E75695e | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "GNO(0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x4cdabe9e07ca393943acfb9286bbbd0d0a310ff600020000000000000000005c | B-50wstETH-50COW | 0x93AE6971F03CE890FA4e9274Ab441477b84DAE5f | "COW(0x177127622c4A00F3d409B75571e12cB3c8973d3c)", | "0x0000000000000000000000000000000000000000", | BIP-423 | 2 | +| | pool_address: 0x4cdABE9E07ca393943AcFB9286bBbd0D0a310Ff6 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x00df7f58e1cf932ebe5f54de5970fb2bdf0ef06d00010000000000000000005b | B-50wstETH-25BAL-25AURA | 0x64fCeD4684f4B065E6b900c4E99a0CBaCC5E5fe1 | "AURA(0x1509706a6c66CA549ff0cB464de88231DDBe213B)", | "0x0000000000000000000000000000000000000000", | BIP-423 | 3 | +| | pool_address: 0x00dF7f58e1Cf932eBe5f54De5970Fb2Bdf0ef06D | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "BAL(0x7eF541E2a22058048904fE5744f9c7E4C57AF717)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W36/BIP-424.json b/BIPs/2023/2023-W36/BIP-424.json new file mode 100644 index 000000000..93e23628e --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-424.json @@ -0,0 +1,104 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1694040174881, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x32fbf13e1dd00d0fb34522a9ebbcbece0db64b0c7284f22d7e753542bce308d9" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166, 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGaugeType", + "payable": false + }, + "contractInputsValues": { "gaugeType": "Base" } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "factory", + "type": "address", + "internalType": "contract ILiquidityGaugeFactory" + }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x8e3B64b3737097F283E965869e3503AA20F31E4D", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "factory", + "type": "address", + "internalType": "contract ILiquidityGaugeFactory" + }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x22625eEDd92c81a219A83e1dc48f88d54786B017", + "gaugeType": "Avalanche" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166, 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/2023-W36/BIP-424.report.txt b/BIPs/2023/2023-W36/BIP-424.report.txt new file mode 100644 index 000000000..382671239 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-424.report.txt @@ -0,0 +1,40 @@ +File name: BIPs/2023-W36/BIP-424.json +COMMIT: `d9f389911f5f4c68effc310e9564ebf825960615` +CHAIN(S): `mainnet` +``` ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++========================+===============+============================================+====================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-424 | 0 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-424 | 4 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/2023-W36/BIP-424.json +COMMIT: `d9f389911f5f4c68effc310e9564ebf825960615` +CHAIN(S): `1` +``` ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+=================================================================================+=========+========================================================================================================================+==============+============+ +| addGaugeType | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "gaugeType": "Base" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "factory": [ | | | +| | | | "0x8e3B64b3737097F283E965869e3503AA20F31E4D (20230911-base-root-gauge-factory/BaseRootGaugeFactory) " | | | +| | | | ], | | | +| | | | "gaugeType": "Base" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-424 | N/A | +| | | | "factory": [ | | | +| | | | "0x22625eEDd92c81a219A83e1dc48f88d54786B017 (20230811-avalanche-root-gauge-factory-v2/AvalancheRootGaugeFactory) " | | | +| | | | ], | | | +| | | | "gaugeType": "Avalanche" | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W36/BIP-424A.json b/BIPs/2023/2023-W36/BIP-424A.json new file mode 100644 index 000000000..816a67508 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-424A.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1694043201789, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x752bb7e91386a771e7c2137f2550900a8d35f5552c074e19e69ebd7280e017a5" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + }, + { + "to": "0x0c5538098EBe88175078972F514C9e101D325D4F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0xb1a4FE1C6d25a0DDAb47431A92A723dd71d9021f" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/2023/2023-W36/BIP-424A.report.txt b/BIPs/2023/2023-W36/BIP-424A.report.txt new file mode 100644 index 000000000..169b24aa1 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-424A.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/2023-W36/BIP-424A.json +COMMIT: `d9f389911f5f4c68effc310e9564ebf825960615` +CHAIN(S): `base` +``` ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d | BIP-424 | 0 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xe26f8fdc1d4f5fb1b88969b7f3b9908b59db3a391dac6b94abb82fdb1e13194d | BIP-424 | 2 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/2023-W36/BIP-424A.json +COMMIT: `d9f389911f5f4c68effc310e9564ebf825960615` +CHAIN(S): `8453` +``` ++-----------------+--------------------------------------------------------------------------------------------------------+---------+-----------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================================================================+=========+===========================================================+==============+============+ +| addGaugeFactory | 0x0c5538098EBe88175078972F514C9e101D325D4F (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-424 | N/A | +| | | | "factory": "0xb1a4FE1C6d25a0DDAb47431A92A723dd71d9021f" | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+---------+-----------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W36/BIP-424B.json b/BIPs/2023/2023-W36/BIP-424B.json new file mode 100644 index 000000000..694f08a43 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-424B.json @@ -0,0 +1,185 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1694043785571, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xfb5eef7d01f6bf9b24cc97954f441010b8c25d03ea23f37a4131c923a9352fe5" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x956074628A64a316086f7125074a8A52d3306321", + "gaugeType": "Avalanche" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1e916950A659Da9813EE34479BFf04C732E03deb", + "gaugeType": "Avalanche" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50", + "gaugeType": "Avalanche" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd", + "gaugeType": "Avalanche" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39", + "gaugeType": "Avalanche" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd75026F8723b94d9a360A282080492d905c6A558", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xefF145872582721e1b33931d61c3fE9C1ca66690", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe9B2CB6836Be07357bCb8144F398730d5EC268E9", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbf8F01EbCf0A21C46D23ADa2C86EB31c9965B2F0", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2023/2023-W36/BIP-424B.report.txt b/BIPs/2023/2023-W36/BIP-424B.report.txt new file mode 100644 index 000000000..2ca43ad91 --- /dev/null +++ b/BIPs/2023/2023-W36/BIP-424B.report.txt @@ -0,0 +1,48 @@ +File name: BIPs/2023-W36/BIP-424B.json +COMMIT: `d9f389911f5f4c68effc310e9564ebf825960615` +CHAIN(S): `avax, base` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===============================+============================================+===================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f | yyAVAX-WAVAX-BPT | 0x956074628A64a316086f7125074a8A52d3306321 | "yyAVAX-WAVAX-BPT(0x9fA6aB3d78984A69e712730A2227F20bCC8b5aD9)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 0 | +| | pool_address: 0x9fA6aB3d78984A69e712730A2227F20bCC8b5aD9 | fee: 0.04, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "WAVAX(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "yyAVAX(0xF7D9281e8e363584973F946201b82ba72C965D27)" | "0x13a80aBe608A054059CfB54Ef08809a05Fc07b82" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | sAVAX-WAVAX-BPT | 0x1e916950A659Da9813EE34479BFf04C732E03deb | "sAVAX(0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE)", | "0x5f8147f9e4fB550C5be815C8a20013171eEFB46D", | BIP-424 | 1 | +| | pool_address: 0xfD2620C9cfceC7D152467633B3B0Ca338D3d78cc | fee: 0.04, a-factor: 3000 | Style: L0 sidechain, cap: 100.0% | "WAVAX(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sAVAX-WAVAX-BPT(0xfD2620C9cfceC7D152467633B3B0Ca338D3d78cc)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e | USDC-USDT-BPT | 0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50 | "USDt(0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 2 | +| | pool_address: 0xB26f0e66317846Bd5fE0cBAa1d269f0efEb05c96 | fee: 0.01, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "USDC-USDT-BPT(0xB26f0e66317846Bd5fE0cBAa1d269f0efEb05c96)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | ggAVAX-WAVAX-BPT | 0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd | "ggAVAX(0xA25EaF2906FA1a3a13EdAc9B9657108Af7B703e3)", | "0x1bB74eC551cCd9FE416C71F904D64f42079A0a7f", | BIP-424 | 3 | +| | pool_address: 0xC13546b97B9B1b15372368Dc06529d7191081F5B | fee: 0.04, a-factor: 3000 | Style: L0 sidechain, cap: 100.0% | "WAVAX(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "ggAVAX-WAVAX-BPT(0xC13546b97B9B1b15372368Dc06529d7191081F5B)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc000200000000000000000011 | BPT | 0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39 | "USDC(0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E)", | | BIP-424 | 4 | +| | pool_address: 0x55bEC22f8f6C69137cEAf284d9B441Db1B9bFedc | fee: Not Found, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "EUROC(0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | rETH-WETH-BPT | 0xd75026F8723b94d9a360A282080492d905c6A558 | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 5 | +| | pool_address: 0xC771c1a5905420DAEc317b154EB13e4198BA97D0 | fee: 0.05, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "rETH(0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c)", | "0x039f7205C2cBa4535C2575123Ac3D657263892c4", | | | +| | | | | "rETH-WETH-BPT(0xC771c1a5905420DAEc317b154EB13e4198BA97D0)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026 | cbETH/WETH | 0xefF145872582721e1b33931d61c3fE9C1ca66690 | "cbETH(0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22)", | "0x3786a6CAAB433f5dfE56503207DF31DF87C5b5C1", | BIP-424 | 6 | +| | pool_address: 0xFb4C2E6E6e27B5b4a07a36360C89EDE29bB3c9B6 | fee: 0.008, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "cbETH/WETH(0xFb4C2E6E6e27B5b4a07a36360C89EDE29bB3c9B6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046 | USDC/USDbC/axlUSDC | 0xe9B2CB6836Be07357bCb8144F398730d5EC268E9 | "USDC/USDbC/axlUSDC(0x0C659734f1eEF9C63B7Ebdf78a164CDd745586Db)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 7 | +| | pool_address: 0x0C659734f1eEF9C63B7Ebdf78a164CDd745586Db | fee: 0.01, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "USDC(0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDbC(0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "axlUSDC(0xEB466342C4d449BC9f53A865D5Cb90586f405215)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x433f09ca08623e48bac7128b7105de678e37d988000100000000000000000047 | 50GOLD/25WETH/25USDC | 0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 8 | +| | pool_address: 0x433f09ca08623E48BAc7128B7105De678E37D988 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 10.0% | "USDC(0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "GOLD(0xbeFD5C25A59ef2C1316c5A4944931171F30Cd3E4)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xb328b50f1f7d97ee8ea391ab5096dd7657555f49000100000000000000000048 | GOLD/BAL/USDC | 0xbf8F01EbCf0A21C46D23ADa2C86EB31c9965B2F0 | "BAL(0x4158734D47Fc9692176B5085E0F52ee0Da5d47F1)", | "0x0000000000000000000000000000000000000000", | BIP-424 | 9 | +| | pool_address: 0xb328B50F1f7d97EE8ea391Ab5096DD7657555F49 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "USDC(0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "GOLD(0xbeFD5C25A59ef2C1316c5A4944931171F30Cd3E4)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W37/BIP-418.json b/BIPs/2023/2023-W37/BIP-418.json new file mode 100644 index 000000000..c39d2d522 --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-418.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1692919714767, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xe62d197b3e644235b6e7aab2694aeda268b47f27ef9347c2dfb0110a9bf8e937" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x25DDcad849de576c2A6c124984cE59e62739156D", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W37/BIP-418.report.txt b/BIPs/2023/2023-W37/BIP-418.report.txt new file mode 100644 index 000000000..d47b1f334 --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-418.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W37/BIP-418.json +COMMIT: `8b24b633902a95854e8a5fdc0c827a59921f9f28` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x6b9f3f6b9054a45702d3f2c6e3d32a60204934cb0000000000000000000004a7 | USDF/USDC | 0x25DDcad849de576c2A6c124984cE59e62739156D | "USDF/USDC(0x6B9f3f6b9054A45702D3F2C6e3D32A60204934cb)", | "0x0000000000000000000000000000000000000000", | BIP-418 | 0 | +| | pool_address: 0x6B9f3f6b9054A45702D3F2C6e3D32A60204934cb | fee: 0.05, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "USDF(0xae48b7C8e096896E32D53F10d0Bf89f82ec7b987)", | "0xD438f19b1Dd47EbECc5f904d8Fd44583CbFB7c85", | | | +| | | | | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W37/BIP-425.json b/BIPs/2023/2023-W37/BIP-425.json new file mode 100644 index 000000000..8c50854cf --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-425.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1694617866592, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8d2b586fe535cd4402b1db5ab34d1d9844d02b05d89556442c05c55bc74bfe46" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCc6A23446f6388D78F3037BD55f2eB820352d982", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W37/BIP-425.report.txt b/BIPs/2023/2023-W37/BIP-425.report.txt new file mode 100644 index 000000000..e0a57d178 --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-425.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W37/BIP-425.json +COMMIT: `025f5dd39c0859ad694da07634cb4b08cfb8bbf6` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=====================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x6228f64d5ba8376652bfe7e36569d595347cf6fb0002000000000000000005df | 80T-20TBTC | 0xCc6A23446f6388D78F3037BD55f2eB820352d982 | "tBTC(0x18084fbA666a33d37592fA2633fD49a74DD93a88)", | "0x0000000000000000000000000000000000000000", | BIP-425 | 0 | +| | pool_address: 0x6228f64D5BA8376652Bfe7E36569D595347cF6Fb | fee: 0.5, a-factor: N/A | Style: mainnet, cap: 100.0% | "T(0xCdF7028ceAB81fA0C6971208e83fa7872994beE5)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W37/BIP-426.json b/BIPs/2023/2023-W37/BIP-426.json new file mode 100644 index 000000000..8286a3e28 --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-426.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1694618094473, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x9585b2f2bae3ea6ac5aca8cf58649f8d614a1a768c131d55d9fb468a49bf1fb6" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xeE707Ae5500DD9072aC0daB1170DD16d9AddD68F", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W37/BIP-426.report.txt b/BIPs/2023/2023-W37/BIP-426.report.txt new file mode 100644 index 000000000..deea2740a --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-426.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W37/BIP-426.json +COMMIT: `5962c3f7db7794f8408fac79cf2a12680f64490b` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x47e1cf97a0586367349a14306a65f54ba0b8f1b60002000000000000000005cd | 20WETH-80ALTR | 0xeE707Ae5500DD9072aC0daB1170DD16d9AddD68F | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | BIP-426 | 0 | +| | pool_address: 0x47E1Cf97A0586367349A14306A65F54Ba0b8f1B6 | fee: 1.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "ALTR(0xD1ffCacFc630CE68d3cd3369F5db829a3ed01fE2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W37/BIP-427.json b/BIPs/2023/2023-W37/BIP-427.json new file mode 100644 index 000000000..291957ba4 --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-427.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1694618286730, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0c48fd68d5bb43c7bfa3777d5267628ddd3cedaf213805ba71896394e01d4e06" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2e6Cd45581002C894Cac692DCE4a30632125EF99", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W37/BIP-427.report.txt b/BIPs/2023/2023-W37/BIP-427.report.txt new file mode 100644 index 000000000..11f7f8afc --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-427.report.txt @@ -0,0 +1,14 @@ +File name: BIPs/2023-W37/BIP-427.json +COMMIT: `fb7b8f7922b4a421264a32e3c7adbde021c89074` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x9da11ff60bfc5af527f58fd61679c3ac98d040d9000000000000000000000100 | bpt-stablebeets | 0x2e6Cd45581002C894Cac692DCE4a30632125EF99 | "USDC(0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85)", | "0x0000000000000000000000000000000000000000", | BIP-427 | 0 | +| | pool_address: 0x9Da11Ff60bfc5aF527f58fd61679c3AC98d040d9 | fee: 0.1, a-factor: 1000 | Style: L0 sidechain, cap: 100.0% | "USDC(0x7F5c764cBc14f9669B88837ca1490cCa17c31607)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDT(0x94b008aA00579c1307B0EF2c499aD98a8ce58e58)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "bpt-stablebeets(0x9Da11Ff60bfc5aF527f58fd61679c3AC98d040d9)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "DAI(0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W37/BIP-428.json b/BIPs/2023/2023-W37/BIP-428.json new file mode 100644 index 000000000..4b550d8dd --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-428.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1694618459097, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x9e76bf3cb38ddf2a62ad6ab3921c6cc40b6aa7d1fd59b0ba831d84ea459dcfde" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe6281Fc01607366794597d7fA6b32931fF986969", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W37/BIP-428.report.txt b/BIPs/2023/2023-W37/BIP-428.report.txt new file mode 100644 index 000000000..91aa944ba --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-428.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/2023-W37/BIP-428.json +COMMIT: `621579a28466cfe84cb0d67f14431976c0344d02` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+===================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7 | uniETH/wstETH/rETH | 0xe6281Fc01607366794597d7fA6b32931fF986969 | "uniETH/wstETH/rETH(0x70d5E3234F6329c1D5a26796dcf4e109d69A3488)", | "0x0000000000000000000000000000000000000000", | BIP-428 | 0 | +| | pool_address: 0x70d5E3234F6329c1D5a26796dcf4e109d69A3488 | fee: 0.04, a-factor: 50 | Style: mainnet, cap: 2.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)", | "0x1a8F81c256aee9C640e14bB0453ce247ea0DFE6F", | | | +| | | | | "uniETH(0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4)" | "0x2c3b8c5e98A6e89AAAF21Deebf5FF9d08c4A9FF7" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W37/BIP-429.json b/BIPs/2023/2023-W37/BIP-429.json new file mode 100644 index 000000000..c2370e638 --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-429.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1690542403538, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x38bc7947894c99cdb9b10ec8e17f2c770aa48b5df11320e5412394d5993e3d94" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xf23d8342881edecced51ea694ac21c2b68440929", + "amount": "480000000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W37/BIP-429.report.txt b/BIPs/2023/2023-W37/BIP-429.report.txt new file mode 100644 index 000000000..44d5172de --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-429.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W37/BIP-429.json +COMMIT: `f1db98876bd46a6b6d62f358c279258223dda43e` +CHAIN(S): `arbitrum` +``` ++------------+------------------------------------------------+------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+================================================+==========================================+=========+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0xf23d8342881edecced51ea694ac21c2b68440929 | 480000.0 (RAW: 480000000000000000000000) | BIP-429 | 0 | ++------------+------------------------------------------------+------------------------------------------------+------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W37/BIP-430.json b/BIPs/2023/2023-W37/BIP-430.json new file mode 100644 index 000000000..dff1269e6 --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-430.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1694648326708, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x3f612b954a03fd673dcd5cf64bfb606b17228f0423cf98a69f035cf9c70cbfa3" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + }, + { + "to": "0xD87F44Df0159DC78029AB9CA7D7e57E7249F5ACD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0xE42FFA682A26EF8F25891db4882932711D42e467" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/2023/2023-W37/BIP-430.report.txt b/BIPs/2023/2023-W37/BIP-430.report.txt new file mode 100644 index 000000000..67be7a24c --- /dev/null +++ b/BIPs/2023/2023-W37/BIP-430.report.txt @@ -0,0 +1,26 @@ +File name: BIPs/2023-W37/BIP-430.json +COMMIT: `e52cb85eef857cd4c7e6caa3cde9f058dc39e177` +CHAIN(S): `base` +``` ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=========================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb | BIP-430 | 0 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0x033f3ebfdc58141797e7786a8115159707118fe37ae8f6d7b98929e4465349fb | BIP-430 | 2 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/2023-W37/BIP-430.json +COMMIT: `e52cb85eef857cd4c7e6caa3cde9f058dc39e177` +CHAIN(S): `8453` +``` ++---------------+----------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+==========================================================================================================+=========+======================================================================================+==============+============+ +| setDelegation | 0xD87F44Df0159DC78029AB9CA7D7e57E7249F5ACD (20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy) | 0 | { | BIP-430 | N/A | +| | | | "delegation": [ | | | +| | | | "0xE42FFA682A26EF8F25891db4882932711D42e467 (20230525-l2-veboost-v2/VeBoostV2) " | | | +| | | | ] | | | +| | | | } | | | ++---------------+----------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-103-August.json b/BIPs/2023/2023-W38/BIP-103-August.json new file mode 100644 index 000000000..e10e5cce6 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-103-August.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5204000000" + }, + "meta": { + "bip_number": "BIP-103" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-103-August.report.txt b/BIPs/2023/2023-W38/BIP-103-August.report.txt new file mode 100644 index 000000000..b22573f9f --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-103-August.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W38/BIP-103-August.json +COMMIT: `9ae06bb9ec2655d40ecea17ce4956839193bfad4` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5204.0 (RAW: 5204000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-393-October.json b/BIPs/2023/2023-W38/BIP-393-October.json new file mode 100644 index 000000000..b9a047625 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-393-October.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-393-October.report.txt b/BIPs/2023/2023-W38/BIP-393-October.report.txt new file mode 100644 index 000000000..b5697276f --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-393-October.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W38/BIP-393-October.json +COMMIT: `4bde9191cde2253b75e7f3cd9024be40cb30455b` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 25000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000000000 | BIP-393 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-394-October.json b/BIPs/2023/2023-W38/BIP-394-October.json new file mode 100644 index 000000000..e0c760bbd --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-394-October.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-394-October.report.txt b/BIPs/2023/2023-W38/BIP-394-October.report.txt new file mode 100644 index 000000000..9050b807f --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-394-October.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W38/BIP-394-October.json +COMMIT: `44b88cf4e25189e1bad924e7b7a5a60c79fb977c` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 30000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000000000 | BIP-394 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-431-airdrop.csv b/BIPs/2023/2023-W38/BIP-431-airdrop.csv new file mode 100644 index 000000000..723d42f42 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-431-airdrop.csv @@ -0,0 +1,31 @@ +token_type,token_address,receiver,amount,id +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xc59a1a2ed72eb7b31b8eaedab1f6f8d8c8881365,3187.040443085624,0 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xd56e9f604ba364d5df09730afcf946845ace6683,2715.6251111507636,1 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x5c866c6ae5187130c234bc474a9fd55e3ea0ac5d,1744.2602517778532,2 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xe356e05c77c4df64ffd033432b969e229980f28b,1578,3 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x5a407865411253e5a991d3e49e8bc7a1fdbe82b0,1262.0811834996307,4 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xc407d9993b29f0ada4a98686f134c78567d0f562,1200,5 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xf7401728edd23290d8099ed73f155101dcf8cc0c,1123.482439738179,6 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xc4f91e9d571d1366551e01056a1c8a2b8b01f8ec,1012.5468620977971,7 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x1a7c7f0c3defe3818a0a8d90b41573546717f145,429.3758728800004,8 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5,147.90674567999957,9 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x1928c92c7b9d9a9699776f9fb57ad6c84b44be33,108.30214010150637,10 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x5614c860bfcb8d8ea59e14c8aee0b3f73511cd5b,96.39494281859493,11 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xe69e85b87e46ff35b32bd93aa5e9cf0a09b1c221,86.01015162000418,12 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xa24d30dd8cec57a8be66f7359c7cced581df29ed,71.99547022803651,13 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xff4f7b726ee86f810531d2842b3bdd8a512db594,67.9146687555237,14 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x83e92a956c551bec407d83e17f4317d9771466c3,66.15620791680004,15 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x82b417ba7daf38c496435e23e7714b5860c1c85f,64.244563572209881,16 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x53cfd45b8416322a72009bcf0f57f54d906d947b,60.07640838000006,17 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xbc0b4983f6375b25ae7d0f8f56d029cc24f78d05,40.24860554059,18 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x73e47e110dd251bd6449381724f2bb51c11b14bc,21.66710006634295,19 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x4624c8bde33545893bac01a999dda0f9296b3588,19.1848949784,20 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x3d631a345b1b45bf8a1456e43f91267304d5e048,15.997492709822254,21 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x5388a7f24e86c9c9d855a98c2f5a339afa6a3acc,12.279972513158436,22 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x892fac1beb41e5e4b44a21e2dbe238d92ff9564c,6.718158416421846,23 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x6d7ac63aaa7ba8925dcb3e44be6355261dcf688f,5.723600553180665,24 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xee49b4204275d1439d38af53ddaffa940b07f111,3.1500872461753895,25 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x40b1d8b0b7232eb3258a455445ecfb3813f13fb8,3.1199999999999997,26 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x125ad150043f25a8c0a09c8b82ac2a26eaac1400,1.868476885501508,27 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0x75c9aa37a479d5edf521a505d9b366b442c80dac,1.7938496547794784,28 +erc20,0xaf88d065e77c8cC2239327C5EDb3A432268e5831,0xdf330ccb1d8fe97d176850bc127d0101cbe4e932,1.3950616614663156,29 \ No newline at end of file diff --git a/BIPs/2023/2023-W38/BIP-431.json b/BIPs/2023/2023-W38/BIP-431.json new file mode 100644 index 000000000..dd011c89b --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-431.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695227444758, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x81f53779e775165608c4a7be2aa4176bc80b42206793a7dc11917156192ec04c" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "7631000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-431.report.txt b/BIPs/2023/2023-W38/BIP-431.report.txt new file mode 100644 index 000000000..b59f027f5 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-431.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W38/BIP-431.json +COMMIT: `190e6409a45df815fb8118bf9679d90cdcf4191b` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 7631.0 (RAW: 7631000000) | BIP-431 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-432.json b/BIPs/2023/2023-W38/BIP-432.json new file mode 100644 index 000000000..d3be4ca94 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-432.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695227930303, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x8943309029f6ee5a4e2f64dc05762adafd979a4781ec1590088590e18613ad9e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xFb3bD022D5DAcF95eE28a6B07825D4Ff9C5b3814", + "value": "3380000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-432.report.txt b/BIPs/2023/2023-W38/BIP-432.report.txt new file mode 100644 index 000000000..80aecc7d6 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-432.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W38/BIP-432.json +COMMIT: `6ff3fb09f70ed061ee9fcdc093d813aa4be36c61` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xFb3bD022D5DAcF95eE28a6B07825D4Ff9C5b3814 | 3380.0 (RAW: 3380000000) | BIP-432 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-433.json b/BIPs/2023/2023-W38/BIP-433.json new file mode 100644 index 000000000..79a061055 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-433.json @@ -0,0 +1,99 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695229450551, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x7f1ffb3aab169083c8160173973fcb29c13ebb0dd47b6ee3eb046a3fd449b3cd" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "168770000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x166f54F44F271407f24AA1BE415a730035637325", + "amount": "31695000000000000000000" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "20000000000000000000", + "data": null, + "contractMethod": { + "inputs": [], + "name": "deposit", + "payable": true + }, + "contractInputsValues": null + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0x166f54F44F271407f24AA1BE415a730035637325", + "wad": "20000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-433.report.txt b/BIPs/2023/2023-W38/BIP-433.report.txt new file mode 100644 index 000000000..04d9ff3b8 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-433.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/2023-W38/BIP-433.json +COMMIT: `025df92fbcd20bab449a51d9a907393dbb6a2869` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+===============================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 168770.0 (RAW: 168770000000) | BIP-433 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 31695.0 (RAW: 31695000000000000000000) | BIP-433 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 20.0 (RAW: 20000000000000000000) | BIP-433 | 3 | ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +File name: BIPs/2023-W38/BIP-433.json +COMMIT: `025df92fbcd20bab449a51d9a907393dbb6a2869` +CHAIN(S): `1` +``` ++-----------+----------------------------------------------------------+----------------------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+======================+==========+==============+============+ +| deposit | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 20000000000000000000 | "N/A" | BIP-433 | N/A | ++-----------+----------------------------------------------------------+----------------------+----------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-434.json b/BIPs/2023/2023-W38/BIP-434.json new file mode 100644 index 000000000..004669cbb --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-434.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695230035540, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x94e12acdc67503083ab1d7f08b9700b869456d5408ca859c46ce35cd9e95d908" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-434.report.txt b/BIPs/2023/2023-W38/BIP-434.report.txt new file mode 100644 index 000000000..c88917ef1 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-434.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W38/BIP-434.json +COMMIT: `38041c3783183107b92246780fb644769dcb3de7` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==========================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4 | 50wstETH/50-4Pool | 0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784 | "4POOL-BPT(0x423A1323c871aBC9d89EB06855bF5347048Fc4A5)", | "0x0000000000000000000000000000000000000000", | BIP-434 | 0 | +| | pool_address: 0xA1a8bf131571A2139FEB79401aA4A2E9482Df627 | fee: 0.02, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)" | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-436A.json b/BIPs/2023/2023-W38/BIP-436A.json new file mode 100644 index 000000000..d42415b7b --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-436A.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695236194130, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2fbaa0caea9a000f8a84bdda1024c4f3ee9d8bc52621289798cd2a6fe1e30049" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x67313e858fB87Cc4b30AD56b6B461D7450738950", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x66E9A9d0a35C6a368A66A432AbD9dB4Fb248f212", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-436A.report.txt b/BIPs/2023/2023-W38/BIP-436A.report.txt new file mode 100644 index 000000000..3685c3532 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-436A.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W38/BIP-436A.json +COMMIT: `60d1c5aefd77768fbdd82335ca7d1db428097e76` +CHAIN(S): `arbitrum, base` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x58f2110b61f97fd6b9200b038d92f17c722a5a3300000000000000000000004f | axlBAL/BAL | 0x67313e858fB87Cc4b30AD56b6B461D7450738950 | "axlBAL(0x11C1879227D463b60db18C17c20aE739aE8E961a)", | "0x0000000000000000000000000000000000000000", | BIP-436 | 0 | +| | pool_address: 0x58F2110B61F97fD6B9200b038d92f17c722A5A33 | fee: 0.05, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "BAL(0x4158734D47Fc9692176B5085E0F52ee0Da5d47F1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "axlBAL/BAL(0x58F2110B61F97fD6B9200b038d92f17c722A5A33)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x3f09c77b19ad8bb527355ec32d5ce98421fec2e30000000000000000000004b2 | axlBAL/BAL | 0x66E9A9d0a35C6a368A66A432AbD9dB4Fb248f212 | "BAL(0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8)", | "0x0000000000000000000000000000000000000000", | BIP-436 | 1 | +| | pool_address: 0x3f09C77B19AD8Bb527355ec32d5ce98421fec2E3 | fee: 0.05, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "axlBAL(0x11C1879227D463b60db18C17c20aE739aE8E961a)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "axlBAL/BAL(0x3f09C77B19AD8Bb527355ec32d5ce98421fec2E3)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-436B.json b/BIPs/2023/2023-W38/BIP-436B.json new file mode 100644 index 000000000..fcaa2610a --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-436B.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695236356608, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x07a161f638471eb74468f6089e3fba601cb30357e0a2f4331a80df3e97143231" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "40000000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-436B.report.txt b/BIPs/2023/2023-W38/BIP-436B.report.txt new file mode 100644 index 000000000..d4ceeada4 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-436B.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W38/BIP-436B.json +COMMIT: `60d1c5aefd77768fbdd82335ca7d1db428097e76` +CHAIN(S): `mainnet` +``` ++------------+------------------------------------------------+-------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=============+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:None | 40000.0 (RAW: 40000000000000000000000) | BIP-436 | 0 | ++------------+------------------------------------------------+-------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-437.json b/BIPs/2023/2023-W38/BIP-437.json new file mode 100644 index 000000000..143abaf54 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-437.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695308273482, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0de6ad7337c7e7bf09fbea6da293861112f99064d75555745515fbd744735ba5" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-437.report.txt b/BIPs/2023/2023-W38/BIP-437.report.txt new file mode 100644 index 000000000..38bf8aeab --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-437.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W38/BIP-437.json +COMMIT: `18ed32597e23e3f9401c9231c9e82a305d9c65eb` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | 0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98 | "R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)", | | BIP-437 | 0 | +| | pool_address: 0x52b69d6b3eB0BD6b2b4A48a316Dfb0e1460E67E4 | fee: 0.05, a-factor: N/A | Style: mainnet, cap: 100.0% | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-438.json b/BIPs/2023/2023-W38/BIP-438.json new file mode 100644 index 000000000..bb21121ed --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-438.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695307567941, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xf718fb721949b969de86ca7990f7e9e6b50d6d80b4c812558a00537071de1863" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3f63974a377ba4713661ede455bceda6686a0395f8b8ed8701ad1f13bb926c4d", + "account": "0x0C8f71D19f87c0bD1b9baD2484EcC3388D5DbB98" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x54f43cdb53a74c7bd91359b21ad8cd82a6a41b6ff8718aea74f1d2b9292c6b41", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W38/BIP-438.report.txt b/BIPs/2023/2023-W38/BIP-438.report.txt new file mode 100644 index 000000000..f89f221ba --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-438.report.txt @@ -0,0 +1,28 @@ +File name: BIPs/2023-W38/BIP-438.json +COMMIT: `4535795221d5051ebece765c8ea72b6d3d9b6c1e` +CHAIN(S): `mainnet` +``` ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+=====================================================================+============================================+=================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | 20230915-stakeless-gauge-checkpointer-v2/StakelessGaugeCheckpointer | 0x0C8f71D19f87c0bD1b9baD2484EcC3388D5DbB98 | 20220714-fee-distributor-v2/FeeDistributor/checkpoint() | 0x3f63974a377ba4713661ede455bceda6686a0395f8b8ed8701ad1f13bb926c4d | BIP-438 | 0 | +| | | | 20220325-gauge-controller/VotingEscrow/checkpoint() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/checkpoint() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/checkpoint() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/checkpoint() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/checkpoint() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/checkpoint() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/checkpoint() | | | | +| | | | 20220325-gauge-controller/GaugeController/checkpoint() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/checkpoint() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/checkpoint() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/checkpoint() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/checkpoint() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/checkpoint() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/checkpoint() | | | | +| | | | 20220420-fee-distributor/FeeDistributor/checkpoint() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/checkpoint() | | | | ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230915-stakeless-gauge-checkpointer-v2/StakelessGaugeCheckpointer/addGaugesWithVerifiedType(string,address[]) | 0x54f43cdb53a74c7bd91359b21ad8cd82a6a41b6ff8718aea74f1d2b9292c6b41 | BIP-438 | 1 | ++----------------------+---------------------------------------------------------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-439.report.txt b/BIPs/2023/2023-W38/BIP-439.report.txt new file mode 100644 index 000000000..465282974 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-439.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W38/BIP-439.json +COMMIT: `9c0794cf98c0b7dab551facc7ab4ac387e9f4458` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | 0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98 | "R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)", | | BIP-439 | 0 | +| | pool_address: 0x52b69d6b3eB0BD6b2b4A48a316Dfb0e1460E67E4 | fee: 0.05, a-factor: N/A | Style: mainnet, cap: 100.0% | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W38/BIP-XXX-OVN-Gauges.report.txt b/BIPs/2023/2023-W38/BIP-XXX-OVN-Gauges.report.txt new file mode 100644 index 000000000..1c2604dc9 --- /dev/null +++ b/BIPs/2023/2023-W38/BIP-XXX-OVN-Gauges.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/2023-W38/BIP-XXX-OVN-Gauges.json +COMMIT: `0a1ffb34fb18fc6ab51ac26f0280957eb8fc24ed` +CHAIN(S): `optimism, base, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+-------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=======+============+ +| GaugeAdderV4/addGauge | 0x20cb4a1e7b607083f96c12beaa61d60bd8757bc2000200000000000000000101 | 80OVN/20wUSD+ | 0x0b05E444Fab8Ae04C2da60F2Ba5B25bF0a132eFB | "OVN(0x3b08fcd15280e7B5A6e404c4abb87F7C774D1B2e)", | "0x0000000000000000000000000000000000000000", | N/A | 0 | +| | pool_address: 0x20CB4A1e7b607083F96c12bEAa61D60BD8757bC2 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "wUSD+(0xA348700745D249c3b49D2c2AcAC9A5AE8155F826)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x6dee17e9e419de0a05d1cc9f015ba91072f845440002000000000000000004b5 | 80OVN/20wUSD+ | 0x37b1E1C000C3F0b6D5D73dFBC7397A4fB518Dc9f | "OVN(0xA3d1a8DEB97B111454B294E2324EfAD13a9d8396)", | "0x0000000000000000000000000000000000000000", | N/A | 1 | +| | pool_address: 0x6dEE17E9E419dE0a05d1CC9F015bA91072F84544 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "wUSD+(0xB86fb1047A955C0186c77ff6263819b37B32440D)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+-------+------------+ +| GaugeAdderV4/addGauge | 0x56570e81171de7f5610fdb23f519d62ab7fdc252000200000000000000000052 | 80OVN/20wUSD+ | 0x4C7730DEFfb57EED2e60262f9DAd4f96B8A00138 | "OVN(0xA3d1a8DEB97B111454B294E2324EfAD13a9d8396)", | "0x0000000000000000000000000000000000000000", | N/A | 2 | +| | pool_address: 0x56570E81171dE7F5610fdb23F519d62Ab7FDC252 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "wUSD+(0xd95ca61CE9aAF2143E81Ef5462C0c2325172E028)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/2023/2023-W39/BIP-352B.json b/BIPs/2023/2023-W39/BIP-352B.json new file mode 100644 index 000000000..eae8d3faf --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-352B.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "180211000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W39/BIP-352B.report.txt b/BIPs/2023/2023-W39/BIP-352B.report.txt new file mode 100644 index 000000000..c08205857 --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-352B.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W39/BIP-352B.json +COMMIT: `dfe2d56f22750f3669f2f7415bad37f1b280b76a` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+--------------+----------+-------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | transaction_index | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+--------------+----------+-------------------+ +| transfer | USDC | multisigs/foundation | 180211.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x3B8910F378034FD6E103Df958863e5c684072693 | 180211000000 | BIP-352B | N/A | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+--------------+----------+-------------------+ +``` diff --git a/BIPs/2023/2023-W39/BIP-439.json b/BIPs/2023/2023-W39/BIP-439.json new file mode 100644 index 000000000..b072ba981 --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-439.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695756384243, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa3cd45b7df13204456e966d62c26808dd7863cb269882f081fe008bde404d8b5" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4A76a260cd496dd567a8165F55EB9c0838CCac3D", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W39/BIP-439.report.txt b/BIPs/2023/2023-W39/BIP-439.report.txt new file mode 100644 index 000000000..60c43e32d --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-439.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W39/BIP-439.json +COMMIT: `663f2b649163cc0c571e303bb8ae4b0578cfb1ef` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xc05ab1b0ad472ce802e2c8db6f23e4a2865fdca6000000000000000000000103 | bpt-steamounrhyt | 0x4A76a260cd496dd567a8165F55EB9c0838CCac3D | "bpt-stablebeets(0x9Da11Ff60bfc5aF527f58fd61679c3AC98d040d9)", | "0x9Da11Ff60bfc5aF527f58fd61679c3AC98d040d9", | BIP-439 | 0 | +| | pool_address: 0xc05aB1B0aD472ce802E2c8db6f23e4a2865FdCa6 | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "DUSD(0xb396b31599333739A97951b74652c117BE86eE1D)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "bpt-steamounrhyt(0xc05aB1B0aD472ce802E2c8db6f23e4a2865FdCa6)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W39/BIP-440.json b/BIPs/2023/2023-W39/BIP-440.json new file mode 100644 index 000000000..364fded4e --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-440.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695756674684, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x6c1b95550e25a9f0b6ed0fcc8ab0010294f6e43f58da4828afd243dea5b791da" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8e486dBACb74C00dd31e489Da93d99bbeBE36cd5", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W39/BIP-440.report.txt b/BIPs/2023/2023-W39/BIP-440.report.txt new file mode 100644 index 000000000..746556df3 --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-440.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W39/BIP-440.json +COMMIT: `ba576e1f80a5a31c83346310c283fe8a8e449468` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x004700ba0a4f5f22e1e78a277fca55e36f47e09c000000000000000000000104 | bpt-ankrgalaharm | 0x8e486dBACb74C00dd31e489Da93d99bbeBE36cd5 | "bpt-ankrgalaharm(0x004700ba0a4f5f22e1E78a277fCA55e36F47E09C)", | "0x0000000000000000000000000000000000000000", | BIP-440 | 0 | +| | pool_address: 0x004700ba0a4f5f22e1E78a277fCA55e36F47E09C | fee: 0.2, a-factor: 100 | Style: L0 sidechain, cap: 100.0% | "rETH(0x9Bcef72be871e61ED4fBbc7630889beE758eb81D)", | "0x658843BB859B7b85cEAb5cF77167e3F0a78dFE7f", | | | +| | | | | "ankrETH(0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3)" | "0x97b323fc033323B66159402bcDb9D7B9DC604235" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W39/BIP-441.json b/BIPs/2023/2023-W39/BIP-441.json new file mode 100644 index 000000000..989fffc93 --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-441.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695840113301, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xc980723eb4bfaeaf3165c6c7c4cf6b0ea26594892881e7397647ab822fe843fe" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6A58e7C904eCF991A3183d28FC73bE90732B7a30", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W39/BIP-441.report.txt b/BIPs/2023/2023-W39/BIP-441.report.txt new file mode 100644 index 000000000..69fc69895 --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-441.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W39/BIP-441.json +COMMIT: `651d3191ba66e6904610d228212eaa3e2fa37a84` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5 | qETH/WETH | 0x6A58e7C904eCF991A3183d28FC73bE90732B7a30 | "qETH/WETH(0x40C806394d03d350420d13CD7d1DE1C806f34956)", | "0x0000000000000000000000000000000000000000", | BIP-441 | 0 | +| | pool_address: 0x40C806394d03d350420d13CD7d1DE1C806f34956 | fee: 0.04, a-factor: 100 | Style: mainnet, cap: 2.0% | "qETH(0x93ef1Ea305D11A9b2a3EbB9bB4FCc34695292E7d)", | "0xA6aeD7922366611953546014A3f9e93f058756a2", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W39/BIP-443.json b/BIPs/2023/2023-W39/BIP-443.json new file mode 100644 index 000000000..6df8eef4e --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-443.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1695844194838, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xf874a714853f75ae1b68aa276c534b31bbe4665b7198a98f4e3864f9d2e26af5" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xD14f076044414C255D2E82cceB1CB00fb1bBA64c", + "value": "117806250000" + } + } + ] +} diff --git a/BIPs/2023/2023-W39/BIP-443.report.txt b/BIPs/2023/2023-W39/BIP-443.report.txt new file mode 100644 index 000000000..62b186294 --- /dev/null +++ b/BIPs/2023/2023-W39/BIP-443.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W39/BIP-443.json +COMMIT: `07f2f733ca4ecccf531ddddfc60f540122a26e90` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+===============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xD14f076044414C255D2E82cceB1CB00fb1bBA64c | 117806.25 (RAW: 117806250000) | BIP-443 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W40/BIP-446.json b/BIPs/2023/2023-W40/BIP-446.json new file mode 100644 index 000000000..e7df333d0 --- /dev/null +++ b/BIPs/2023/2023-W40/BIP-446.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1696440870784, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xccec5b096f24a04949732d281e1bcacbe4046b37570b547423de6999e62f69c2" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0a2738a1EeADA91DA6D5375a2E6f620c85C287f3", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x99e2fAfD901645FB611F6D56476AF8Ad25263ea5", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W40/BIP-446.report.txt b/BIPs/2023/2023-W40/BIP-446.report.txt new file mode 100644 index 000000000..837784208 --- /dev/null +++ b/BIPs/2023/2023-W40/BIP-446.report.txt @@ -0,0 +1,14 @@ +File name: BIPs/2023-W40/BIP-446.json +COMMIT: `ca3f1ece4a656e1934fed62d2114abb8bfee3f70` +CHAIN(S): `optimism, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x00b82bc5edea6e5e6c77635e31a1a25aad99f881000200000000000000000105 | 80OVN/20wUSD+ | 0x0a2738a1EeADA91DA6D5375a2E6f620c85C287f3 | "OVN(0x3b08fcd15280e7B5A6e404c4abb87F7C774D1B2e)", | "0x0000000000000000000000000000000000000000", | BIP-446 | 0 | +| | pool_address: 0x00b82bc5EdEa6E5E6c77635e31a1A25Aad99f881 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "wUSD+(0xA348700745D249c3b49D2c2AcAC9A5AE8155F826)" | "0xe561451322a5efC51E6f8ffa558C7482c892Bc1A" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x85ec6ae01624ae0d2a04d0ffaad3a25884c7d0f30002000000000000000004b6 | 80OVN/20wUSD+ | 0x99e2fAfD901645FB611F6D56476AF8Ad25263ea5 | "OVN(0xA3d1a8DEB97B111454B294E2324EfAD13a9d8396)", | "0x0000000000000000000000000000000000000000", | BIP-446 | 1 | +| | pool_address: 0x85Ec6ae01624aE0d2a04D0Ffaad3A25884C7d0f3 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "wUSD+(0xB86fb1047A955C0186c77ff6263819b37B32440D)" | "0x2bA447d4B823338435057571bF70907F8224BB47" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-447A.json b/BIPs/2023/2023-W41/BIP-447A.json new file mode 100644 index 000000000..bfe156d73 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-447A.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697389104179, + "meta": { + "name": "Transactions Batch", + "description": "Enable new Gnosis Gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xe736ba44de669bee9a1ede91d27e33382a739a5e79581ad305ab54b6439a3422" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2041F8a758A0266e1B9272fcd4B1F1c37b67d5da", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x346F1D4F98F055bb0791465923E27a10F1082912", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2617724db92a8dbD4ebA7E24615BA369133Ff684", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA9659365461380e8A6B30a50d421C1f5FCD8A8bC", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-447A.report.txt b/BIPs/2023/2023-W41/BIP-447A.report.txt new file mode 100644 index 000000000..022db5093 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-447A.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/2023-W41/BIP-447A.json +COMMIT: `73c10e9906f7fcabb8d20884f3ccf40d9058b167` +CHAIN(S): `gnosis` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xbc2acf5e821c5c9f8667a36bb1131dad26ed64f9000200000000000000000063 | B-50sDAI-50wstETH | 0x2041F8a758A0266e1B9272fcd4B1F1c37b67d5da | "wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)", | "0x0000000000000000000000000000000000000000", | BIP-447 | 0 | +| | pool_address: 0xBc2acf5E821c5c9f8667A36bB1131dAd26Ed64F9 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xdd439304a77f54b1f7854751ac1169b279591ef7000000000000000000000064 | EURe/sDAI | 0x346F1D4F98F055bb0791465923E27a10F1082912 | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)", | "0x89C80A4540A00b5270347E02e2E144c71da2EceD", | BIP-447 | 1 | +| | pool_address: 0xDd439304A77f54B1F7854751Ac1169b279591Ef7 | fee: 0.05, a-factor: 50 | Style: L0 sidechain, cap: 100.0% | "EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)", | "0xE7511f6e5C593007eA8A7F52af4B066333765e03", | | | +| | | | | "EURe/sDAI(0xDd439304A77f54B1F7854751Ac1169b279591Ef7)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x06135a9ae830476d3a941bae9010b63732a055f4000000000000000000000065 | stEUR/EURe | 0x2617724db92a8dbD4ebA7E24615BA369133Ff684 | "stEUR(0x004626A008B1aCdC4c74ab51644093b155e59A23)", | "0xff315299C4d3FB984b67e31F028724b6a9aEb077", | BIP-447 | 2 | +| | pool_address: 0x06135A9Ae830476d3a941baE9010B63732a055F4 | fee: 0.05, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "stEUR/EURe(0x06135A9Ae830476d3a941baE9010B63732a055F4)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x7644fa5d0ea14fcf3e813fdf93ca9544f8567655000000000000000000000066 | sBAL3 | 0xA9659365461380e8A6B30a50d421C1f5FCD8A8bC | "USDT(0x4ECaBa5870353805a9F068101A40E0f32ed605C6)", | "0x0000000000000000000000000000000000000000", | BIP-447 | 3 | +| | pool_address: 0x7644fA5D0eA14FcF3E813Fdf93ca9544f8567655 | fee: 0.01, a-factor: 2000 | Style: L0 sidechain, cap: 100.0% | "sBAL3(0x7644fA5D0eA14FcF3E813Fdf93ca9544f8567655)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)", | "0x89C80A4540A00b5270347E02e2E144c71da2EceD", | | | +| | | | | "USDC(0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-447C.json b/BIPs/2023/2023-W41/BIP-447C.json new file mode 100644 index 000000000..1980203e7 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-447C.json @@ -0,0 +1,51 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1697047641740, + "meta": { + "name": "Transactions Batch", + "description": "enable recovery mode on EURE/USDC pool", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0x7f77c68bdac57f812b18ddfda5f7494a1b2e406b9e5aca64309271812fd4f212" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff", + "account": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18" + } + }, + { + "to": "0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "enableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-447C.report.txt b/BIPs/2023/2023-W41/BIP-447C.report.txt new file mode 100644 index 000000000..fbe48e3b7 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-447C.report.txt @@ -0,0 +1,20 @@ +File name: BIPs/2023-W41/BIP-447C.json +COMMIT: `73c10e9906f7fcabb8d20884f3ccf40d9058b167` +CHAIN(S): `gnosis` +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+==============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-447 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/2023-W41/BIP-447C.json +COMMIT: `73c10e9906f7fcabb8d20884f3ccf40d9058b167` +CHAIN(S): `100` +``` ++--------------------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++====================+========================================================+=========+==========+==============+============+ +| enableRecoveryMode | 0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753 (Not Found) | 0 | "N/A" | BIP-447 | N/A | ++--------------------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-447D.json b/BIPs/2023/2023-W41/BIP-447D.json new file mode 100644 index 000000000..cc6d56e0f --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-447D.json @@ -0,0 +1,155 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1697894131488, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0x53c4f07d566736fad6ab3d75e0323a11e166f5ba09ca28d040375a48fd0fd318" + }, + "transactions": [ + { + "to": "0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xBB2598b89202596A743BE0b615001D7D5164f167]", + "amountsPerPeriod": "[9979830058]", + "maxPeriods": "[2]" + } + }, + { + "to": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9", + "_value": "19959660116" + } + }, + { + "to": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x6068eb7490748A1A49830B58524C002b545c1Ce2", + "_value": "6653220039" + } + }, + { + "to": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_spender", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0xBB2598b89202596A743BE0b615001D7D5164f167", + "_value": "6653220039" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBB2598b89202596A743BE0b615001D7D5164f167", + "data": "0xe8de0d4d000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a8300000000000000000000000014969b55a675d13a1700f71a37511bc22d90155a" + } + }, + { + "to": "0xBB2598b89202596A743BE0b615001D7D5164f167", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_amount", "type": "uint256" } + ], + "name": "deposit_reward_token", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83", + "_amount": "6653220039" + } + }, + { + "to": "0xBB2598b89202596A743BE0b615001D7D5164f167", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83", + "_distributor": "0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-447D.report.txt b/BIPs/2023/2023-W41/BIP-447D.report.txt new file mode 100644 index 000000000..5cff0ac2b --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-447D.report.txt @@ -0,0 +1,60 @@ +File name: BIPs/2023-W41/BIP-447D.json +COMMIT: `a1094500f7a081c6b9fe31a9bf09950791ba94eb` +CHAIN(S): `gnosis` +``` ++------------+-------------------------------------------------+------------------------------------------------+---------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+=================================+=========+============+ +| transfer | USDC:0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 | N/A:0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9 | 19959.660116 (RAW: 19959660116) | BIP-447 | 2 | ++------------+-------------------------------------------------+------------------------------------------------+---------------------------------+---------+------------+ +| transfer | USDC:0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 | N/A:0x6068eb7490748A1A49830B58524C002b545c1Ce2 | 6653.220039 (RAW: 6653220039) | BIP-447 | 3 | ++------------+-------------------------------------------------+------------------------------------------------+---------------------------------+---------+------------+ +``` +File name: BIPs/2023-W41/BIP-447D.json +COMMIT: `a1094500f7a081c6b9fe31a9bf09950791ba94eb` +CHAIN(S): `100` +``` ++------------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++========================+=================================================================================================================+=========+========================================================================================================================================================+==============+============+ +| acceptOwnership | 0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9 (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | 0 | "N/A" | BIP-447 | N/A | ++------------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setRecipientList | 0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9 (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | 0 | { | BIP-447 | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0xBB2598b89202596A743BE0b615001D7D5164f167 (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": "[9979830058]", | | | +| | | | "maxPeriods": "[2]" | | | +| | | | } | | | ++------------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 (Not Found) | 0 | { | BIP-447 | N/A | +| | | | "_spender": [ | | | +| | | | "0xBB2598b89202596A743BE0b615001D7D5164f167 (N/A) " | | | +| | | | ], | | | +| | | | "_value": "6653220039" | | | +| | | | } | | | ++------------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-447 | N/A | +| | | | "target": [ | | | +| | | | "0xBB2598b89202596A743BE0b615001D7D5164f167 (N/A) " | | | +| | | | ], | | | +| | | | "data": "0xe8de0d4d000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a8300000000000000000000000014969b55a675d13a1700f71a37511bc22d90155a" | | | +| | | | } | | | ++------------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit_reward_token | 0xBB2598b89202596A743BE0b615001D7D5164f167 (Not Found) | 0 | { | BIP-447 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 (N/A) " | | | +| | | | ], | | | +| | | | "_amount": "6653220039" | | | +| | | | } | | | ++------------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| set_reward_distributor | 0xBB2598b89202596A743BE0b615001D7D5164f167 (Not Found) | 0 | { | BIP-447 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 (N/A) " | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9 (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) " | | | +| | | | ] | | | +| | | | } | | | ++------------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-448A.json b/BIPs/2023/2023-W41/BIP-448A.json new file mode 100644 index 000000000..c6b6ac56f --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-448A.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1696893189459, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x21fd0d4a8c117586efe7619647958d1fc03bf723fc92ef0295f84c21d1e01136" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "delegatee", "type": "address", "internalType": "address" } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-448A.report.txt b/BIPs/2023/2023-W41/BIP-448A.report.txt new file mode 100644 index 000000000..3fd44eaf4 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-448A.report.txt @@ -0,0 +1,14 @@ +File name: BIPs/2023-W41/BIP-448A.json +COMMIT: `dc2e7704297e800f244955085551fb2eae115783` +CHAIN(S): `42161` +``` ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==================================================================+==============+============+ +| delegate | 0x912CE59144191C1204E64559FE8253a0e49E6548 (Not Found) | 0 | { | BIP-448 | N/A | +| | | | "delegatee": [ | | | +| | | | "0xc38c5f97B34E175FFd35407fc91a937300E33860 (multisigs/lm) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-448B.json b/BIPs/2023/2023-W41/BIP-448B.json new file mode 100644 index 000000000..775000448 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-448B.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1696893335758, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xe791d01628c51bc7b855f14706c5465fc2850c7707903070d256cc7c254ad710" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "delegatee", "type": "address", "internalType": "address" } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-448B.report.txt b/BIPs/2023/2023-W41/BIP-448B.report.txt new file mode 100644 index 000000000..e623d57e8 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-448B.report.txt @@ -0,0 +1,14 @@ +File name: BIPs/2023-W41/BIP-448B.json +COMMIT: `dc2e7704297e800f244955085551fb2eae115783` +CHAIN(S): `42161` +``` ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==================================================================+==============+============+ +| delegate | 0x912CE59144191C1204E64559FE8253a0e49E6548 (Not Found) | 0 | { | BIP-448 | N/A | +| | | | "delegatee": [ | | | +| | | | "0xc38c5f97B34E175FFd35407fc91a937300E33860 (multisigs/lm) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-449.json b/BIPs/2023/2023-W41/BIP-449.json new file mode 100644 index 000000000..a604e6816 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-449.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1696895677819, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0xe0bc2d2967038ce4441966524ea26dc5b878693a4e9e97ddd5ac17a7acccec20" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + }, + { + "to": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a", + "account": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-449.report.txt b/BIPs/2023/2023-W41/BIP-449.report.txt new file mode 100644 index 000000000..36845ce08 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-449.report.txt @@ -0,0 +1,26 @@ +File name: BIPs/2023-W41/BIP-449.json +COMMIT: `2a27e2f165878a9bf5ee57e48ce6dad564fcece3` +CHAIN(S): `avalanche` +``` ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a | BIP-449 | 0 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc5b13e35f09fd15aab1bed81874ea8815bd41e76d4a4e193c9f0d47d92f7f03a | BIP-449 | 2 | ++-----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/2023-W41/BIP-449.json +COMMIT: `2a27e2f165878a9bf5ee57e48ce6dad564fcece3` +CHAIN(S): `43114` +``` ++-----------------+--------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================================================================+=========+==================================================================================================================+==============+============+ +| addGaugeFactory | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-449 | N/A | +| | | | "factory": [ | | | +| | | | "0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory) " | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-450.json b/BIPs/2023/2023-W41/BIP-450.json new file mode 100644 index 000000000..8eff11a0c --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-450.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697052117, + "meta": { + "name": "Transactions Batch", + "description": "Fund grants for Q4 2023", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "21000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "11570000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-450.report.txt b/BIPs/2023/2023-W41/BIP-450.report.txt new file mode 100644 index 000000000..5de4173cd --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-450.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W41/BIP-450.json +COMMIT: `a614237cc2b286f569d5c878e2b62addd86dda61` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 21000.0 (RAW: 21000000000) | BIP-450 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 11570.0 (RAW: 11570000000000000000000) | BIP-450 | 1 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-451.json b/BIPs/2023/2023-W41/BIP-451.json new file mode 100644 index 000000000..321e7c7aa --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-451.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697052876185, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x33b5ed65167ccd7c2a3c8d5ad5f0f91af07c80194b057656c7f1bff4ce68d647" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6A2C2d4502335638d2c2f40f0171253fb2c2db88", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-451.report.txt b/BIPs/2023/2023-W41/BIP-451.report.txt new file mode 100644 index 000000000..bc0927bcd --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-451.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/2023-W41/BIP-451.json +COMMIT: `cf211a64f4e284732c7b57dc693ba388d83a618c` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x5f8893506ddc4c271837187d14a9c87964a074dc000000000000000000000106 | bpt-ethtri | 0x6A2C2d4502335638d2c2f40f0171253fb2c2db88 | "wstETH(0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb)", | "0x9aa3cd420f830E049e2b223D0b07D8c809C94d15", | BIP-451 | 0 | +| | pool_address: 0x5F8893506Ddc4C271837187d14A9C87964a074Dc | fee: 0.1, a-factor: 2000 | Style: L0 sidechain, cap: 100.0% | "sfrxETH(0x484c2D6e3cDd945a8B2DF735e079178C1036578c)", | "0xf752dd899F87a91370C1C8ac1488Aef6be687505", | | | +| | | | | "bpt-ethtri(0x5F8893506Ddc4C271837187d14A9C87964a074Dc)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "rETH(0x9Bcef72be871e61ED4fBbc7630889beE758eb81D)" | "0x658843BB859B7b85cEAb5cF77167e3F0a78dFE7f" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-452.json b/BIPs/2023/2023-W41/BIP-452.json new file mode 100644 index 000000000..24fefeddd --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-452.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697049191167, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "", + "checksum": "0x33fa70b34473279008f21477a65ce0e5cabd156d0eabafc204d546feed8141c4" + }, + "transactions": [ + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "delegatee", "type": "address" } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52" + } + }, + { + "to": "0x4da27a545c0c5B758a6BA100e3a049001de870f5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "delegatee", "type": "address" } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-452.report.txt b/BIPs/2023/2023-W41/BIP-452.report.txt new file mode 100644 index 000000000..958ba29c6 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-452.report.txt @@ -0,0 +1,20 @@ +File name: BIPs/2023-W41/BIP-452.json +COMMIT: `8153cbf3bcbc41357585fb2be6e5340bc0643c16` +CHAIN(S): `1` +``` ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================+=========+=========================================================+==============+============+ +| delegate | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | { | BIP-452 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52 (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| delegate | 0x4da27a545c0c5B758a6BA100e3a049001de870f5 (tokens/stkAAVE) | 0 | { | BIP-452 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x8787FC2De4De95c53e5E3a4e5459247D9773ea52 (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W41/BIP-453.json b/BIPs/2023/2023-W41/BIP-453.json new file mode 100644 index 000000000..465ed5974 --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-453.json @@ -0,0 +1,57 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697071040673, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x62177b565166ff1c69c9dd8179cffad30e2c1d453c08237d2a58acdf50c74501" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2", + "amount": "160000000000000000000000" + } + }, + { + "to": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "asset", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" }, + { + "internalType": "address", + "name": "onBehalfOf", + "type": "address" + }, + { "internalType": "uint16", "name": "referralCode", "type": "uint16" } + ], + "name": "supply", + "payable": false + }, + "contractInputsValues": { + "asset": "0xba100000625a3754423978a60c9317c58a424e3D", + "amount": "160000000000000000000000", + "onBehalfOf": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "referralCode": "0" + } + } + ] +} diff --git a/BIPs/2023/2023-W41/BIP-453.report.txt b/BIPs/2023/2023-W41/BIP-453.report.txt new file mode 100644 index 000000000..966d001ae --- /dev/null +++ b/BIPs/2023/2023-W41/BIP-453.report.txt @@ -0,0 +1,24 @@ +File name: BIPs/2023-W41/BIP-453.json +COMMIT: `85a5eca25989d6fd008391e6733eaf1c166f0ae0` +CHAIN(S): `1` +``` ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=========================================================+=========+================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-453 | N/A | +| | | | "spender": [ | | | +| | | | "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2 (N/A) " | | | +| | | | ], | | | +| | | | "amount": "160000000000000000000000" | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| supply | 0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2 (Not Found) | 0 | { | BIP-453 | N/A | +| | | | "asset": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "amount": "160000000000000000000000", | | | +| | | | "onBehalfOf": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "referralCode": "0" | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W42/BIP-393-November.json b/BIPs/2023/2023-W42/BIP-393-November.json new file mode 100644 index 000000000..b9a047625 --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-393-November.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W42/BIP-393-November.report.txt b/BIPs/2023/2023-W42/BIP-393-November.report.txt new file mode 100644 index 000000000..a825c467b --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-393-November.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W42/BIP-393-November.json +COMMIT: `4bde9191cde2253b75e7f3cd9024be40cb30455b` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 25000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000000000 | BIP-393 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W42/BIP-394-November.json b/BIPs/2023/2023-W42/BIP-394-November.json new file mode 100644 index 000000000..e0c760bbd --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-394-November.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W42/BIP-394-November.report.txt b/BIPs/2023/2023-W42/BIP-394-November.report.txt new file mode 100644 index 000000000..cea1e0747 --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-394-November.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W42/BIP-394-November.json +COMMIT: `44b88cf4e25189e1bad924e7b7a5a60c79fb977c` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 30000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000000000 | BIP-394 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W42/BIP-454.json b/BIPs/2023/2023-W42/BIP-454.json new file mode 100644 index 000000000..1413b6295 --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-454.json @@ -0,0 +1,97 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697190543299, + "meta": { + "name": "Second SAFE Airdrop Claim", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xca98ac3ac5275fb6e421534148d11e0def245792ea23a64fc0d8ddd4468747b5", + "author": "gosuto.eth" + }, + "transactions": [ + { + "to": "0xC0fde70A65C7569Fe919bE57492228DEE8cDb585", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint8", "name": "curveType", "type": "uint8" }, + { + "internalType": "uint16", + "name": "durationWeeks", + "type": "uint16" + }, + { "internalType": "uint64", "name": "startDate", "type": "uint64" }, + { "internalType": "uint128", "name": "amount", "type": "uint128" }, + { "internalType": "bytes32[]", "name": "proof", "type": "bytes32[]" } + ], + "name": "redeem", + "payable": false + }, + "contractInputsValues": { + "curveType": "0", + "durationWeeks": "208", + "startDate": "1662026400", + "amount": "5226757080486618000000", + "proof": "[0xe2c51661a283840fecf3cfaa9cc95b93aaebdcfe4a4f62a0162fd599ec039453,0xdb9970a77a4e031a8056c33c905b9bd7cb88d43da148aa11db63c72e39976469,0xec12235a00ca0e9020112e2e069d3a29906a9f70a80fb3402c3d9719233a1f8f,0x6e26f3cc44d2d3f9050512b419d95ca882f3a489ee043f4560e0fc02dedc790c,0x9c395ce5b3be7aa8f055358115b2a7ff6d0069612287527b732ac6bffb78851c,0x2284e66fa8327e7868bdaf84774ed78fc93583b206998a8fc95e540c8f639199,0x0475d4f9203785ad8e1d3911cc91e6b1cf687afbe672385b608fd67128dfb687,0x541dc2b261cfe6550a9ef0a1c8fcf63fc70c21c4a69726d519e383b0387db00d,0x24d9026ea0277bf122c85ebbd729b24c3c9a1e38f141a468d4ca736c4ed82c76,0x062565790f6e2dc017dc549fdfadc0bf055a1eca6452ec59e636c08bbb8294b6,0x875e2435fb36357427d33ac691ca01f2556dc3ff1425a6e460a742b1d6b58a61,0x14e29bb1ad35d88d686bf44b9274aef151bc01fe317beaacfc8cb30800a48023,0xe2b06e3ef3c26a6f4f600b9dd10fb39ce0edf9b7a68a9cfc3c823a9d1c674f0b,0xcdcda7e7a0107576ab65577d5d9ae431cfeec31a94a3da554b3b45f8a8dc4542]" + } + }, + { + "to": "0xC0fde70A65C7569Fe919bE57492228DEE8cDb585", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "vestingId", "type": "bytes32" }, + { + "internalType": "address", + "name": "beneficiary", + "type": "address" + }, + { + "internalType": "uint128", + "name": "tokensToClaim", + "type": "uint128" + } + ], + "name": "claimVestedTokensViaModule", + "payable": false + }, + "contractInputsValues": { + "vestingId": "0x7737be5963938ff3a68c4b15e6e5fe2517f8fa2e7256959fcd85982885d1d673", + "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "tokensToClaim": "340282366920938463463374607431768211455" + } + }, + { + "to": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "vestingId", "type": "bytes32", "internalType": "bytes32" }, + { + "name": "beneficiary", + "type": "address", + "internalType": "address" + }, + { + "name": "tokensToClaim", + "type": "uint128", + "internalType": "uint128" + } + ], + "name": "claimVestedTokensViaModule", + "payable": false + }, + "contractInputsValues": { + "vestingId": "0x0348741aae78ee3ae9ac34b37e8dbc68753367eea275850c4208e3a040a91bbe", + "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "tokensToClaim": "340282366920938463463374607431768211455" + } + } + ] +} diff --git a/BIPs/2023/2023-W42/BIP-454.report.txt b/BIPs/2023/2023-W42/BIP-454.report.txt new file mode 100644 index 000000000..918a3937a --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-454.report.txt @@ -0,0 +1,28 @@ +File name: BIPs/2023-W42/BIP-454.json +COMMIT: `9f18eec568437c73b220c4763f67f7a0153b53c8` +CHAIN(S): `1` +``` ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++============================+========================================================+=========+==========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| redeem | 0xC0fde70A65C7569Fe919bE57492228DEE8cDb585 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "curveType": "0", | | | +| | | | "durationWeeks": "208", | | | +| | | | "startDate": "1662026400", | | | +| | | | "amount": "5226757080486618000000", | | | +| | | | "proof": "[0xe2c51661a283840fecf3cfaa9cc95b93aaebdcfe4a4f62a0162fd599ec039453,0xdb9970a77a4e031a8056c33c905b9bd7cb88d43da148aa11db63c72e39976469,0xec12235a00ca0e9020112e2e069d3a29906a9f70a80fb3402c3d9719233a1f8f,0x6e26f3cc44d2d3f9050512b419d95ca882f3a489ee043f4560e0fc02dedc790c,0x9c395ce5b3be7aa8f055358115b2a7ff6d0069612287527b732ac6bffb78851c,0x2284e66fa8327e7868bdaf84774ed78fc93583b206998a8fc95e540c8f639199,0x0475d4f9203785ad8e1d3911cc91e6b1cf687afbe672385b608fd67128dfb687,0x541dc2b261cfe6550a9ef0a1c8fcf63fc70c21c4a69726d519e383b0387db00d,0x24d9026ea0277bf122c85ebbd729b24c3c9a1e38f141a468d4ca736c4ed82c76,0x062565790f6e2dc017dc549fdfadc0bf055a1eca6452ec59e636c08bbb8294b6,0x875e2435fb36357427d33ac691ca01f2556dc3ff1425a6e460a742b1d6b58a61,0x14e29bb1ad35d88d686bf44b9274aef151bc01fe317beaacfc8cb30800a48023,0xe2b06e3ef3c26a6f4f600b9dd10fb39ce0edf9b7a68a9cfc3c823a9d1c674f0b,0xcdcda7e7a0107576ab65577d5d9ae431cfeec31a94a3da554b3b45f8a8dc4542]" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| claimVestedTokensViaModule | 0xC0fde70A65C7569Fe919bE57492228DEE8cDb585 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "vestingId": "0x7737be5963938ff3a68c4b15e6e5fe2517f8fa2e7256959fcd85982885d1d673", | | | +| | | | "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "tokensToClaim": "340282366920938463463374607431768211455" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| claimVestedTokensViaModule | 0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6 (Not Found) | 0 | { | BIP-454 | N/A | +| | | | "vestingId": "0x0348741aae78ee3ae9ac34b37e8dbc68753367eea275850c4208e3a040a91bbe", | | | +| | | | "beneficiary": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | | | +| | | | "tokensToClaim": "340282366920938463463374607431768211455" | | | +| | | | } | | | ++----------------------------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W42/BIP-455.json b/BIPs/2023/2023-W42/BIP-455.json new file mode 100644 index 000000000..537441427 --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-455.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697512615126, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x746fbb89bf27645dff3de5214b0c9f1b2690e640adfeaee7aab8d9349160c4c4" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1511e7Fe2e06BBc75Eb4CeeE7c7dC5f9af6bb781", + "value": "108102830000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xf1Ca67191b4b0FD07d8ab924E6244127E3bdeCC4", + "value": "2656700000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3056B7039deb4347CA9AB2aBD7b5785fcDCc0ebf", + "value": "488720000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xa7A13659692239c143daE313a0116D5b5C18d26C", + "value": "10366580000" + } + } + ] +} diff --git a/BIPs/2023/2023-W42/BIP-455.report.txt b/BIPs/2023/2023-W42/BIP-455.report.txt new file mode 100644 index 000000000..7f6af9ee8 --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-455.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W42/BIP-455.json +COMMIT: `e78ae9ed9a19bddd23e3e63f0dc329223f7d55d4` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+===============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x1511e7Fe2e06BBc75Eb4CeeE7c7dC5f9af6bb781 | 108102.83 (RAW: 108102830000) | BIP-455 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xf1Ca67191b4b0FD07d8ab924E6244127E3bdeCC4 | 2656.7 (RAW: 2656700000) | BIP-455 | 1 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x3056B7039deb4347CA9AB2aBD7b5785fcDCc0ebf | 488.72 (RAW: 488720000) | BIP-455 | 2 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xa7A13659692239c143daE313a0116D5b5C18d26C | 10366.58 (RAW: 10366580000) | BIP-455 | 3 | ++------------+-------------------------------------------------+------------------------------------------------+-------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W42/BIP-456.json b/BIPs/2023/2023-W42/BIP-456.json new file mode 100644 index 000000000..a1e1e6613 --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-456.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697649908, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5CA24e2A586834A7B96216D68b26A82405e3DC15", + "value": "15000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W42/BIP-456.report.txt b/BIPs/2023/2023-W42/BIP-456.report.txt new file mode 100644 index 000000000..705e354ff --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-456.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W42/BIP-456.json +COMMIT: `b8eb3da863ea9f68c2c8b2423e29cd82f9746a66` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+========================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/hypernative_payments:0x5CA24e2A586834A7B96216D68b26A82405e3DC15 | 15000.0 (RAW: 15000000000) | BIP-456 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W42/BIP-458B.json b/BIPs/2023/2023-W42/BIP-458B.json new file mode 100644 index 000000000..7dedd39f2 --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-458B.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697289876848, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xbca220f8265d5f0905d7a68184d403050a0eb03abab531c84143fdc83f92ff04" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x86Cf58bD7A64f2304227d1a490660D2954dB4a91", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA8d4b31225BD6FAF1363DB5A0AB6c016894985d1", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W42/BIP-458B.report.txt b/BIPs/2023/2023-W42/BIP-458B.report.txt new file mode 100644 index 000000000..2215a051c --- /dev/null +++ b/BIPs/2023/2023-W42/BIP-458B.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/2023-W42/BIP-458B.json +COMMIT: `a83797d8b5c2921eb1e63fd8d8ecf248f8f7bfad` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x49b2de7d214070893c038299a57bac5acb8b8a340001000000000000000004be | GOLD-BAL-AURA-wstETH | 0x86Cf58bD7A64f2304227d1a490660D2954dB4a91 | "BAL(0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8)", | "0x0000000000000000000000000000000000000000", | BIP-458 | 0 | +| | pool_address: 0x49b2De7d214070893c038299a57BaC5ACb8B8A34 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "AURA(0x1509706a6c66CA549ff0cB464de88231DDBe213B)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "GOLD(0x8b5e4C9a188b1A187f2D1E80b1c2fB17fA2922e1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb0001000000000000000004bc | 50GOLD-25USDC-25WSTETH | 0xA8d4b31225BD6FAF1363DB5A0AB6c016894985d1 | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-458 | 1 | +| | pool_address: 0x2e8Ea681FD59c9dc5f32B29de31F782724EF4DcB | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 6.0% | "GOLD(0x8b5e4C9a188b1A187f2D1E80b1c2fB17fA2922e1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W43/BIP-103-September.json b/BIPs/2023/2023-W43/BIP-103-September.json new file mode 100644 index 000000000..1f0fcf92a --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-103-September.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5032000000" + }, + "meta": { + "bip_number": "BIP-103" + } + } + ] +} diff --git a/BIPs/2023/2023-W43/BIP-103-September.report.txt b/BIPs/2023/2023-W43/BIP-103-September.report.txt new file mode 100644 index 000000000..b3103fec4 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-103-September.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W43/BIP-103-September.json +COMMIT: `f0032c967d7aa51ecdf51a37cac1964e4d5ab223` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5032.0 (RAW: 5032000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W43/BIP-447B.json b/BIPs/2023/2023-W43/BIP-447B.json new file mode 100644 index 000000000..44d3d7f08 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-447B.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697041826131, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges on gnosis", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xda33fcfc9de46845011777a52e1984afccb0486bbc77ba1698a169e289227c27" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5a6fb12d15021649dda459e8585812142Aa6b968", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x399A750516c14C80480AED2Bb597092b9118Caa9", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf0d3268d36Adf812Fa69756500D72A899D4c2420", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W43/BIP-447B.report.txt b/BIPs/2023/2023-W43/BIP-447B.report.txt new file mode 100644 index 000000000..c7066efd9 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-447B.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W43/BIP-447B.json +COMMIT: `73c10e9906f7fcabb8d20884f3ccf40d9058b167` +CHAIN(S): `gnosis` +``` ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==================+======+============================================+========+========+==============+=========+============+======================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x2086f52651837600180de173b09470f54ef7491000000000000000000000004f | staBAL3 | 1500 | 0x5a6fb12d15021649dda459e8585812142Aa6b968 | 0.005% | 100.0% | L0 sidechain | BIP-447 | 0 | ['staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'USDT(0x4ECaBa5870353805a9F068101A40E0f32ed605C6)', 'USDC(0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83)', 'WXDAI(0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x0c1b9ce6bf6c01f587c2ee98b0ef4b20c6648753000000000000000000000050 | EURe/staBAL3 | 20 | 0x399A750516c14C80480AED2Bb597092b9118Caa9 | 0.05% | 2.0% | L0 sidechain | BIP-447 | 1 | ['EURe/staBAL3(0x0C1B9CE6Bf6C01f587C2ee98b0ef4B20C6648753)', 'staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xeb30c85cc528537f5350cf5684ce6a4538e13394000200000000000000000059 | B-50USD-50wstETH | N/A | 0xf0d3268d36Adf812Fa69756500D72A899D4c2420 | 0.3% | 100.0% | L0 sidechain | BIP-447 | 2 | ['staBAL3(0x2086f52651837600180dE173B09470F54EF74910)', 'wstETH(0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x5c78d05b8ecf97507d1cf70646082c54faa4da95000000000000000000000030 | bb-agEUR-EURe | 100 | 0x7F75ecd3cFd8cE8bf45f9639A226121ca8bBe4ff | 0.01% | 100.0% | L0 sidechain | BIP-447 | 3 | ['agEUR(0x4b1E2c2762667331Bc91648052F646d1b0d35984)', 'bb-agEUR-EURe(0x5C78d05b8ECF97507d1cf70646082c54FaA4dA95)', 'EURe(0xcB444e90D8198415266c6a2724b7900fb12FC56E)'] | ++--------------------------+--------------------------------------------------------------------+------------------+------+--------------------------------------------+--------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W43/BIP-458A.json b/BIPs/2023/2023-W43/BIP-458A.json new file mode 100644 index 000000000..7559c5353 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-458A.json @@ -0,0 +1,64 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1697638573486, + "meta": { + "name": "Enable GOLD Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "author": "gosuto.eth" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000b1a2bc2ec50000" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2023/2023-W43/BIP-458A.report.txt b/BIPs/2023/2023-W43/BIP-458A.report.txt new file mode 100644 index 000000000..4b6ce03ef --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-458A.report.txt @@ -0,0 +1,45 @@ +File name: BIPs/2023-W43/BIP-458A.json +COMMIT: `a83797d8b5c2921eb1e63fd8d8ecf248f8f7bfad` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-458 | 0 | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-458 | 2 | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/2023-W43/BIP-458A.json +COMMIT: `a83797d8b5c2921eb1e63fd8d8ecf248f8f7bfad` +CHAIN(S): `1` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+========================================================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-458 | N/A | +| | | | "target": [ | | | +| | | | "0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c (N/A) " | | | +| | | | ], | | | +| | | | "data": "0x10d3eb0400000000000000000000000000000000000000000000000000b1a2bc2ec50000" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W43/BIP-459.json b/BIPs/2023/2023-W43/BIP-459.json new file mode 100644 index 000000000..2aca35495 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-459.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698140461134, + "meta": { + "name": "Enable New Tetubal Gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "author": "gosuto.eth" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF6A814eD60653Cb0e36DA247B01E6309318328d4", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W43/BIP-459.report.txt b/BIPs/2023/2023-W43/BIP-459.report.txt new file mode 100644 index 000000000..0b96d65aa --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-459.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W43/BIP-459.json +COMMIT: `d7220bde3600bd607b51cda71e581044680a6b40` +CHAIN(S): `polygon` +``` ++-----------------------+---------------------------------------------------------------------+------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+========================+============================================+==================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x7af62c1ebf97034b7542ccec13a2e79bbcf34380000000000000000000000c13 | tetuBAL-BALWETH | 0xF6A814eD60653Cb0e36DA247B01E6309318328d4 | "20WETH-80BAL(0x3d468AB2329F296e1b9d8476Bb54Dd77D8c2320f)", | "0x0000000000000000000000000000000000000000", | BIP-459 | 0 | +| | pool_address: 0x7aF62C1ebf97034B7542CcEC13a2e79BbcF34380 | fee: 0.3, a-factor: 20 | Style: L0 sidechain, cap: 15.0% | "tetuBAL-BALWETH(0x7aF62C1ebf97034B7542CcEC13a2e79BbcF34380)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "tetuBAL(0x7fC9E0Aa043787BFad28e29632AdA302C790Ce33)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+------------------------+--------------------------------------------+------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W43/BIP-460.json b/BIPs/2023/2023-W43/BIP-460.json new file mode 100644 index 000000000..736a4a44b --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-460.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698158272014, + "meta": { + "name": "Transactions Batch", + "description": "Enable rETH/WETH gauge [zkEVM]", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "author": "gosuto.eth" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4", + "gaugeType": "PolygonZkEvm" + } + } + ] +} diff --git a/BIPs/2023/2023-W43/BIP-460.report.txt b/BIPs/2023/2023-W43/BIP-460.report.txt new file mode 100644 index 000000000..b30f1d1b5 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-460.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W43/BIP-460.json +COMMIT: `a11173f3e5060cc37b7b3e298fffd4511aca205f` +CHAIN(S): `zkevm` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xb1557cfea06de5a1601a7f0ccf3b515ef431a50d000200000000000000000059 | ECLP-wETH-rETH | 0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4 | "WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)", | | BIP-460 | 0 | +| | pool_address: 0xb1557CFEA06De5a1601a7F0cCF3b515EF431A50d | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "rETH(0xb23C20EFcE6e24Acca0Cef9B7B7aA196b84EC942)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W43/BIP-461.json b/BIPs/2023/2023-W43/BIP-461.json new file mode 100644 index 000000000..cf3e4244c --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-461.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698152741412, + "meta": { + "name": "Transactions Batch", + "description": "Enable swETH/wstETH gauge", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "author": "gosuto.eth" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W43/BIP-461.report.txt b/BIPs/2023/2023-W43/BIP-461.report.txt new file mode 100644 index 000000000..fa604fef9 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-461.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W43/BIP-461.json +COMMIT: `30b8b4ac4bc172874d3f56f5c38153a476d8a14a` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x127ecc2318d002664cc4515c9f2b22b09b6aea85000200000000000000000602 | ECLP-swETH-wstETH | 0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | | BIP-461 | 0 | +| | pool_address: 0x127ECc2318d002664cc4515C9f2B22B09b6aea85 | fee: 0.02, a-factor: N/A | Style: mainnet, cap: 100.0% | "swETH(0xf951E335afb289353dc249e82926178EaC7DEd78)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W43/BIP-462.json b/BIPs/2023/2023-W43/BIP-462.json new file mode 100644 index 000000000..a2dd4337c --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-462.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698155924335, + "meta": { + "name": "Transactions Batch", + "description": "Enable axlETH/WETH Gauge [Base]", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "author": "gosuto.eth" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb145b0eF7Dfd7E02b181f4c9a880e8aeCED9bCf3", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2023/2023-W43/BIP-462.report.txt b/BIPs/2023/2023-W43/BIP-462.report.txt new file mode 100644 index 000000000..00c6418c7 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-462.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W43/BIP-462.json +COMMIT: `2adf30d0e646301c209fa9a264bd61a2b218bc80` +CHAIN(S): `base` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+===========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x30722f57d56037caa2c38abd1f5e2955814875e9000000000000000000000087 | axlETH/ETH | 0xb145b0eF7Dfd7E02b181f4c9a880e8aeCED9bCf3 | "axlETH/ETH(0x30722f57D56037CAA2C38ABD1F5E2955814875e9)", | "0x0000000000000000000000000000000000000000", | BIP-462 | 0 | +| | pool_address: 0x30722f57D56037CAA2C38ABD1F5E2955814875e9 | fee: 0.01, a-factor: 5000 | Style: L0 sidechain, cap: 100.0% | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "axlETH(0xb829b68f57CC546dA7E5806A929e53bE32a4625D)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W43/BIP-463.json b/BIPs/2023/2023-W43/BIP-463.json new file mode 100644 index 000000000..f0b64f7f5 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-463.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698159751294, + "meta": { + "name": "Transactions Batch", + "description": "Enable D2D/rETH 80/20 Gauge [Arbitrum]", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "author": "gosuto.eth" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2D02Bf5EA195dc09854E18E7d2857A16bF376963", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W43/BIP-463.report.txt b/BIPs/2023/2023-W43/BIP-463.report.txt new file mode 100644 index 000000000..09ee05569 --- /dev/null +++ b/BIPs/2023/2023-W43/BIP-463.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W43/BIP-463.json +COMMIT: `e0f114cf0ab1a761603d360fe2c5b98c2b9f9074` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x835772bab114563746da80806930a9e37aa853440002000000000000000004c0 | D2D-rETH | 0x2D02Bf5EA195dc09854E18E7d2857A16bF376963 | "D2D(0xDD4AB36f31891fF25A69121FCCC732d93eB976Dd)", | "0x0000000000000000000000000000000000000000", | BIP-463 | 0 | +| | pool_address: 0x835772Bab114563746da80806930A9E37aa85344 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-409.json b/BIPs/2023/2023-W44/BIP-409.json new file mode 100644 index 000000000..dab517e0f --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-409.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698673054946, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xe3475438a9724aefee5a2ced08c333b50cbb8e81c07fa98f517d405331bd38b2" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8E891A7b048A594592e9F0de70Dc223143B4F1E6", + "gaugeType": "EthereumSingleRecipientGauge" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-409.report.txt b/BIPs/2023/2023-W44/BIP-409.report.txt new file mode 100644 index 000000000..f1087e657 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-409.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W44/BIP-409.json +COMMIT: `68abfe92666c68848a7855319fbe5c8781462290` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x39eb558131e5ebeb9f76a6cbf6898f6e6dce5e4e0002000000000000000005c8 | QI BPT | 0x8E891A7b048A594592e9F0de70Dc223143B4F1E6 | "QI(0x559b7bfC48a5274754b08819F75C5F27aF53D53b)", | "0x0000000000000000000000000000000000000000", | BIP-409 | 0 | +| | pool_address: 0x39eB558131E5eBeb9f76a6cbf6898f6E6DCe5e4E | fee: 0.5, a-factor: N/A | Style: Single Recipient, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-464A.json b/BIPs/2023/2023-W44/BIP-464A.json new file mode 100644 index 000000000..d61e7b21c --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-464A.json @@ -0,0 +1,28 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698506873946, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x65b4621c9d0f9edad80fa4c0f1c8fa9233f2b2d12a36284bd89bc857cbce8d7b" + }, + "transactions": [ + { + "to": "0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "numShares", "type": "uint256" } + ], + "name": "initiateWithdraw", + "payable": false + }, + "contractInputsValues": { "numShares": "200000000000000000000000" } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-464A.report.txt b/BIPs/2023/2023-W44/BIP-464A.report.txt new file mode 100644 index 000000000..f291542aa --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-464A.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W44/BIP-464A.json +COMMIT: `1c7402b39d33f7273cf18b8fdca3e5f7f910c0aa` +CHAIN(S): `1` +``` ++------------------+--------------------------------------------------------+---------+-------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+========================================================+=========+===========================================+==============+============+ +| initiateWithdraw | 0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe (Not Found) | 0 | { | BIP-464 | N/A | +| | | | "numShares": "200000000000000000000000" | | | +| | | | } | | | ++------------------+--------------------------------------------------------+---------+-------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-465.json b/BIPs/2023/2023-W44/BIP-465.json new file mode 100644 index 000000000..cfb968a61 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-465.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698863544395, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x255912af1bA318527eDC69b4D56152d8c133288E", + "gaugeType": "PolygonZkEvm" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-465.report.txt b/BIPs/2023/2023-W44/BIP-465.report.txt new file mode 100644 index 000000000..d2fdbe6d3 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-465.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W44/BIP-465.json +COMMIT: `7dcc80eb6d6f785e3e9cad92faa891bf088e07c3` +CHAIN(S): `zkevm` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+=================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x65da876a95cd5b6a5880710628c436409b1b29fa00000000000000000000005b | wstETH/ankrETH | 0x255912af1bA318527eDC69b4D56152d8c133288E | "ankrETH(0x12D8CE035c5DE3Ce39B1fDD4C1d5a745EAbA3b8C)", | "0xFC8d81A01deD207aD3DEB4FE91437CAe52deD0b5", | BIP-465 | 0 | +| | pool_address: 0x65dA876A95CD5b6A5880710628C436409B1B29fa | fee: 0.01, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5D8cfF95D7A57c0BF50B30b43c7CC0D52825D4a9)", | "0x00346D2Fd4B2Dc3468fA38B857409BC99f832ef8", | | | +| | | | | "wstETH/ankrETH (0x65dA876A95CD5b6A5880710628C436409B1B29fa)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-466.json b/BIPs/2023/2023-W44/BIP-466.json new file mode 100644 index 000000000..51a00c62d --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-466.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698499531731, + "meta": { + "name": "Transactions Batch", + "description": "Enable mevETH/WETH gauge [Ethereum]", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "author": "gosuto.eth" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x70754AB20c63cc65Ea12206CF28342723d731aC6", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-466.report.txt b/BIPs/2023/2023-W44/BIP-466.report.txt new file mode 100644 index 000000000..26858727e --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-466.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W44/BIP-466.json +COMMIT: `374d553e7cb27961120e7f9501bfebdeb9097b54` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611 | ECLP-mevETH-wETH | 0x70754AB20c63cc65Ea12206CF28342723d731aC6 | "mevETH(0x24Ae2dA0f361AA4BE46b48EB19C91e02c5e4f27E)", | | BIP-466 | 0 | +| | pool_address: 0xb3b675a9A3CB0DF8F66Caf08549371BfB76A9867 | fee: 0.02, a-factor: N/A | Style: mainnet, cap: 100.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-467.json b/BIPs/2023/2023-W44/BIP-467.json new file mode 100644 index 000000000..21d77fa4c --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-467.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698864521009, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x156cC29C8dfA80821eD240C3cA4BA85103e10f2b", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-467.report.txt b/BIPs/2023/2023-W44/BIP-467.report.txt new file mode 100644 index 000000000..285a6ab8a --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-467.report.txt @@ -0,0 +1,14 @@ +File name: BIPs/2023-W44/BIP-467.json +COMMIT: `de920d0e50172f0ddae029fa98ff8de17e163e77` +CHAIN(S): `base` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x52e281318fed4efffb8e46c0847a8f9b71a461a8000200000000000000000018 | 50tBTC-50WETH | 0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb | "tBTC(0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b)", | "0x0000000000000000000000000000000000000000", | BIP-467 | 0 | +| | pool_address: 0x52e281318Fed4eFFfb8E46c0847a8f9B71a461A8 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "WETH(0x4200000000000000000000000000000000000006)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x036d68e4e0005da4ef1c9ebd53b948d2c083495e00020000000000000000001a | 50tBTC-50USD | 0x156cC29C8dfA80821eD240C3cA4BA85103e10f2b | "tBTC(0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b)", | "0x0000000000000000000000000000000000000000", | BIP-467 | 1 | +| | pool_address: 0x036d68e4e0005dA4eF1c9ebd53b948d2C083495e | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "USDbC(0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-468.json b/BIPs/2023/2023-W44/BIP-468.json new file mode 100644 index 000000000..38fab53ff --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-468.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698864832665, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3c8502E60eBD1e036E1d3906Fc34e9616218B6e5", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-468.report.txt b/BIPs/2023/2023-W44/BIP-468.report.txt new file mode 100644 index 000000000..07101f8d3 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-468.report.txt @@ -0,0 +1,13 @@ +File name: BIPs/2023-W44/BIP-468.json +COMMIT: `6df19323d476066d92c723c62d7a8db759477471` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x01536b22ea06e4a315e3daaf05a12683ed4dc14c0000000000000000000005fc | e-cs-kp-usd | 0x3c8502E60eBD1e036E1d3906Fc34e9616218B6e5 | "e-cs-kp-usd(0x01536b22ea06e4A315E3DAAF05a12683Ed4dc14c)", | "0x0000000000000000000000000000000000000000", | BIP-468 | 0 | +| | pool_address: 0x01536b22ea06e4A315E3DAAF05a12683Ed4dc14c | fee: 0.05, a-factor: 200 | Style: mainnet, cap: 2.0% | "paUSD(0x571f54D23cDf2211C83E9A0CbD92AcA36c48Fa02)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wUSK(0xaF4ce7CD4F8891ecf1799878c3e9A35b8BE57E09)" | "0xd8689E8740C23d73136744817347fd6aC464E842" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-469.json b/BIPs/2023/2023-W44/BIP-469.json new file mode 100644 index 000000000..4951a0156 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-469.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698865138766, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x20D03f9D0304744891881e6ac1D45b996e7F39B5", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-469.report.txt b/BIPs/2023/2023-W44/BIP-469.report.txt new file mode 100644 index 000000000..b1ceb8762 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-469.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W44/BIP-469.json +COMMIT: `ac55d7867b8d38abb678420da8eba3cd268f9daf` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xc1f46ce83439886f0ea9c21512b36e7e67239d2c000200000000000000000108 | bpt-roabee | 0x20D03f9D0304744891881e6ac1D45b996e7F39B5 | "rETH(0x9Bcef72be871e61ED4fBbc7630889beE758eb81D)", | "0x658843BB859B7b85cEAb5cF77167e3F0a78dFE7f", | BIP-469 | 0 | +| | pool_address: 0xc1F46ce83439886F0ea9c21512b36e7E67239d2C | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "BEETS(0xb4Bc46bc6cB217B59ea8F4530BaE26Bf69F677f0)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-470.json b/BIPs/2023/2023-W44/BIP-470.json new file mode 100644 index 000000000..34597df1e --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-470.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698865271442, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-470.report.txt b/BIPs/2023/2023-W44/BIP-470.report.txt new file mode 100644 index 000000000..14cb979a8 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-470.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W44/BIP-470.json +COMMIT: `aa3b5bdc6252a3a0414f89a27acbd4297c045727` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x02ca8086498552c071451724d3a34caa3922b65a000200000000000000000613 | 80ROOT-20WETH | 0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77 | "ROOT(0x8d2658E0F52dF7875A7b3e58FC12F82F5e34dd61)", | "0x0000000000000000000000000000000000000000", | BIP-470 | 0 | +| | pool_address: 0x02CA8086498552C071451724D3A34cAA3922b65a | fee: 2.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-471-Avalanche.json b/BIPs/2023/2023-W44/BIP-471-Avalanche.json new file mode 100644 index 000000000..479c38bb7 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-471-Avalanche.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1698714965268, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0xe5133705bd75dc5ff177011f96b93dd4bc5923ae060e758a0d917e679a7ed9ee" + }, + "transactions": [ + { + "to": "0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint16", "name": "_version", "type": "uint16" }, + { "internalType": "uint16", "name": "_chainId", "type": "uint16" }, + { + "internalType": "uint256", + "name": "_configType", + "type": "uint256" + }, + { "internalType": "bytes", "name": "_config", "type": "bytes" } + ], + "name": "setConfig", + "payable": false + }, + "contractInputsValues": { + "_version": "0", + "_chainId": "101", + "_configType": "1", + "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-471-Avalanche.report.txt b/BIPs/2023/2023-W44/BIP-471-Avalanche.report.txt new file mode 100644 index 000000000..45e096b57 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-471-Avalanche.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W44/BIP-471-Avalanche.json +COMMIT: `c625f904f5750c7b09317b94100f155122d85380` +CHAIN(S): `43114` +``` ++-----------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+===================================================================================+==============+============+ +| setConfig | 0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3 (Not Found) | 0 | { | BIP-471 | N/A | +| | | | "_version": "0", | | | +| | | | "_chainId": "101", | | | +| | | | "_configType": "1", | | | +| | | | "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-471-Mainnet.json b/BIPs/2023/2023-W44/BIP-471-Mainnet.json new file mode 100644 index 000000000..ae2c7676b --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-471-Mainnet.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698714856807, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xf4e7359a0087ed8bc85cd42cebc6f2e358bf6c03014e7c87597af4e42077cbd9" + }, + "transactions": [ + { + "to": "0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint16", "name": "_version", "type": "uint16" }, + { "internalType": "uint16", "name": "_chainId", "type": "uint16" }, + { + "internalType": "uint256", + "name": "_configType", + "type": "uint256" + }, + { "internalType": "bytes", "name": "_config", "type": "bytes" } + ], + "name": "setConfig", + "payable": false + }, + "contractInputsValues": { + "_version": "0", + "_chainId": "106", + "_configType": "4", + "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-471-Mainnet.report.txt b/BIPs/2023/2023-W44/BIP-471-Mainnet.report.txt new file mode 100644 index 000000000..5cf5be416 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-471-Mainnet.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W44/BIP-471-Mainnet.json +COMMIT: `c625f904f5750c7b09317b94100f155122d85380` +CHAIN(S): `1` +``` ++-----------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+===================================================================================+==============+============+ +| setConfig | 0xE15bCB9E0EA69e6aB9FA080c4c4A5632896298C3 (Not Found) | 0 | { | BIP-471 | N/A | +| | | | "_version": "0", | | | +| | | | "_chainId": "106", | | | +| | | | "_configType": "4", | | | +| | | | "_config": "0x0000000000000000000000000000000000000000000000000000000000000002" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-472.json b/BIPs/2023/2023-W44/BIP-472.json new file mode 100644 index 000000000..a01e340b1 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-472.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698872293834, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-472.report.txt b/BIPs/2023/2023-W44/BIP-472.report.txt new file mode 100644 index 000000000..340ed3118 --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-472.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W44/BIP-472.json +COMMIT: `058e68b6ddb8295574d41707d618ca774a3f52c9` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | RDNT-WETH | 0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216 | "RDNT(0x137dDB47Ee24EaA998a535Ab00378d6BFa84F893)", | "0x0000000000000000000000000000000000000000", | BIP-472 | 0 | +| | pool_address: 0xcF7b51ce5755513d4bE016b0e28D6EDEffa1d52a | fee: 0.5, a-factor: N/A | Style: mainnet, cap: 10.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W44/BIP-473-karpatkey.json b/BIPs/2023/2023-W44/BIP-473-karpatkey.json new file mode 100644 index 000000000..2569156de --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-473-karpatkey.json @@ -0,0 +1,318 @@ +{ + "version": "1.0", + "chainId": "1", + "meta": { + "name": null, + "description": "", + "txBuilderVersion": "1.8.0", + "createdFromSafeAddress": "0x0efccbb9e2c09ea29551879bd9da32362b32fc89" + }, + "createdAt": 1698175844113, + "transactions": [ + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f67022ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1d6681042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b119aa6257000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1e3afe0a3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae95c19a95c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000008787fc2de4de95c53e5e3a4e5459247d9773ea52", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f2b9fdb80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f3fef3a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40b7034f7e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb3b4da69f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbef693bed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbeb0dff660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8d0e30db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc639342966c68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c55362f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1ca824ae8b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x9393377200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x9393377200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f67022", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670223df02124000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5955e18af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f55c19a95c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000008787fc2de4de95c53e5e3a4e5459247d9773ea52", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020bc832ca081b91433ff6c17f85701b6e92486c50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020efaa1604e82e1b3af8430b90192c1b9e8197e37700020000000000000000002100000000000000000000000000000000000000000000000000000000000000200b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a000000000000000000000000000000000000000000000000000000000000002096646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019000000000000000000000000000000000000000000000000000000000000002032296969ef14eb0c6d29669c550d4a044913023000020000000000000000008000000000000000000000000000000000000000000000000000000000000000201e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", + "value": "0" + }, + { + "to": "0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9", + "data": "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", + "value": "0" + } + ] +} diff --git a/BIPs/2023/2023-W44/BIP-473-karpatkey.report.txt b/BIPs/2023/2023-W44/BIP-473-karpatkey.report.txt new file mode 100644 index 000000000..2b02c6c7b --- /dev/null +++ b/BIPs/2023/2023-W44/BIP-473-karpatkey.report.txt @@ -0,0 +1,130 @@ +File name: BIPs/2023-W44/BIP-473-karpatkey.json +COMMIT: `a1b26a8457e26283b6371a3eba915109e52bf2a3` +CHAIN(S): `1` +``` ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (Not Found) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (Not Found) | 0 | "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f67022ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1d6681042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b119aa6257000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b1e3afe0a3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae95c19a95c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000008787fc2de4de95c53e5e3a4e5459247d9773ea52" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2617ba037000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e269328dec000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f2b9fdb80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3f3fef3a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000001b0e765f6224c21223aea2af16c1c46e38885a40b7034f7e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb3b4da69f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbef693bed0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000373238337bfe1146fb49989fc222523f83081ddbeb0dff660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dd3f50f8a6cafbe9b31a427582963f465e745af8d0e30db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ae78736cd615f374d3085123a210448e74fc639342966c68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c55362f4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1ca824ae8b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x9393377200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x9393377200000000000000000000000000000000000000000000000000000000000000010000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d2646478b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f67022" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x2fcf52d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670223df02124000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e82669500000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5955e18af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f55c19a95c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000008787fc2de4de95c53e5e3a4e5459247d9773ea52" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e826695000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc89" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae90000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f2688800000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393000000000000000000000000000000000000000000000000000000000000002000000000000000000000000020bc832ca081b91433ff6c17f85701b6e92486c50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x93933772000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4504e45aaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000fe2e637202056d30016725477c5da089ab0a043a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000200000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x5e8266950000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x33a0480c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000efccbb9e2c09ea29551879bd9da32362b32fc890000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020efaa1604e82e1b3af8430b90192c1b9e8197e37700020000000000000000002100000000000000000000000000000000000000000000000000000000000000200b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a000000000000000000000000000000000000000000000000000000000000002096646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019000000000000000000000000000000000000000000000000000000000000002032296969ef14eb0c6d29669c550d4a044913023000020000000000000000008000000000000000000000000000000000000000000000000000000000000000201e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0xd8dd9164E765bEF903E429c9462E51F0Ea8514F9 (Not Found) | 0 | "0x939337720000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c852bbbe2900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000200000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000200000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393" | BIP-473 | N/A | ++-----------+----------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W45/.gitignore b/BIPs/2023/2023-W45/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/2023/2023-W45/BIP-103-October.json b/BIPs/2023/2023-W45/BIP-103-October.json new file mode 100644 index 000000000..89d8bfe96 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-103-October.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "3337000000" + }, + "meta": { + "bip_number": "BIP-103" + } + } + ] +} diff --git a/BIPs/2023/2023-W45/BIP-103-October.report.txt b/BIPs/2023/2023-W45/BIP-103-October.report.txt new file mode 100644 index 000000000..c94767a29 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-103-October.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W45/BIP-103-October.json +COMMIT: `8eabc688fdc33df2f22ba518e1bfecfd5a1e4d8e` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 3337.0 (RAW: 3337000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W45/BIP-474.json b/BIPs/2023/2023-W45/BIP-474.json new file mode 100644 index 000000000..41b42ed06 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-474.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1699434733385, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W45/BIP-474.report.txt b/BIPs/2023/2023-W45/BIP-474.report.txt new file mode 100644 index 000000000..34d13a96c --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-474.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W45/BIP-474.json +COMMIT: `30ef52367a607c175d6fc123ea0fd201f08e5ab6` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===============================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xc58150838855a5605c9030398c6d22afd5bb09ee00020000000000000000061b | LP-GBPT-USDC | 0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33 | "GBPT(0x86B4dBE5D203e634a12364C0e428fa242A3FbA98)", | | BIP-474 | 0 | +| | pool_address: 0xC58150838855a5605C9030398c6D22afd5Bb09EE | fee: Not Found, a-factor: N/A | Style: mainnet, cap: 2.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W45/BIP-475.json b/BIPs/2023/2023-W45/BIP-475.json new file mode 100644 index 000000000..3424aff8a --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-475.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1699435130531, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W45/BIP-475.report.txt b/BIPs/2023/2023-W45/BIP-475.report.txt new file mode 100644 index 000000000..e32017ed4 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-475.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W45/BIP-475.json +COMMIT: `39860087f9e887d6800624d76675429d55d216b9` +CHAIN(S): `mainnet` +``` ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+-------+---------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+===============+=====+============================================+=======+=======+=========+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0x02ca8086498552c071451724d3a34caa3922b65a000200000000000000000613 | 80ROOT-20WETH | N/A | 0xd639e7fAe7a8d0233d416bfd5dA2ae4f917D2E77 | 2.0% | 2.0% | mainnet | BIP-475 | 0 | ['ROOT(0x8d2658E0F52dF7875A7b3e58FC12F82F5e34dd61)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------+-----+--------------------------------------------+-------+-------+---------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W45/BIP-476.json b/BIPs/2023/2023-W45/BIP-476.json new file mode 100644 index 000000000..56501c4da --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-476.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1699435640612, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W45/BIP-476.report.txt b/BIPs/2023/2023-W45/BIP-476.report.txt new file mode 100644 index 000000000..982a13fd2 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-476.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W45/BIP-476.json +COMMIT: `f1b419940bf4b0f5774b269d7c0c4a05484c54a1` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x35c5c8c7b77942f9d44b535fa590d8b503b2b00c00000000000000000000060d | DUSD/sDAI | 0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7 | "DUSD/sDAI(0x35c5C8C7B77942f9D44B535Fa590D8b503B2b00C)", | "0x0000000000000000000000000000000000000000", | BIP-476 | 0 | +| | pool_address: 0x35c5C8C7B77942f9D44B535Fa590D8b503B2b00C | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)", | "0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c", | | | +| | | | | "DUSD(0xa48F322F8b3edff967629Af79E027628b9Dd1298)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W45/BIP-477.json b/BIPs/2023/2023-W45/BIP-477.json new file mode 100644 index 000000000..179aecfde --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-477.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1699436003020, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x132296d1Dfd10bA55b565C4Cfe49D350617a2A2b", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W45/BIP-477.report.txt b/BIPs/2023/2023-W45/BIP-477.report.txt new file mode 100644 index 000000000..68c962d1c --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-477.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W45/BIP-477.json +COMMIT: `04494dec728fd2b33b5570fcbd859376b6e0f9d1` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=====================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x0244b0025264dc5f5c113d472d579c9c994a59ce0002000000000000000000c9 | BPT-OPARA | 0x132296d1Dfd10bA55b565C4Cfe49D350617a2A2b | "OP(0x4200000000000000000000000000000000000042)", | "0x0000000000000000000000000000000000000000", | BIP-477 | 0 | +| | pool_address: 0x0244B0025264dC5f5c113d472D579C9c994A59CE | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "PSP(0xd3594E879B358F430E20F82bea61e83562d49D48)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W45/BIP-478.json b/BIPs/2023/2023-W45/BIP-478.json new file mode 100644 index 000000000..1e19b38c8 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-478.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1699436280219, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC6C69b977329D93E34fDBD2c37Ab8e70b8decFCD", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W45/BIP-478.report.txt b/BIPs/2023/2023-W45/BIP-478.report.txt new file mode 100644 index 000000000..d71f85185 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-478.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W45/BIP-478.json +COMMIT: `030558562fe7028ed0c6cae3cc73fc1b83ef93c9` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x58b645fa247b60f2cb896991fd8956146c9fcb4a00020000000000000000061d | 80mevETH/20FOLD | 0xC6C69b977329D93E34fDBD2c37Ab8e70b8decFCD | "mevETH(0x24Ae2dA0f361AA4BE46b48EB19C91e02c5e4f27E)", | "0xf518f2EbeA5df8Ca2B5E9C7996a2A25e8010014b", | BIP-478 | 0 | +| | pool_address: 0x58B645FA247B60f2cB896991Fd8956146c9FCB4A | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 100.0% | "FOLD(0xd084944d3c05CD115C09d072B9F44bA3E0E45921)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W45/BIP-479.json b/BIPs/2023/2023-W45/BIP-479.json new file mode 100644 index 000000000..d49107886 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-479.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1699436559239, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x53Fa0546f307317dAA82371e94E8Dcd5CAd3345F", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W45/BIP-479.report.txt b/BIPs/2023/2023-W45/BIP-479.report.txt new file mode 100644 index 000000000..1ca183473 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-479.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W45/BIP-479.json +COMMIT: `b004bc64830d9b6846c08b44dbe5ceea7922c258` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+----------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+==========================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xf8c4cd95c7496cb7c8d97202cf7e5b8da2204c2b00020000000000000000039e | 80psdnOCEAN-20OCEAN | 0x53Fa0546f307317dAA82371e94E8Dcd5CAd3345F | "psdnOCEAN(0x51Fa2efd62ee56a493f24AE963eAce7D0051929E)", | | BIP-479 | 0 | +| | pool_address: 0xf8C4CD95c7496cB7c8d97202Cf7e5b8DA2204C2b | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 2.0% | "OCEAN(0x967da4048cD07aB37855c090aAF366e4ce1b9F48)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+----------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W45/BIP-481.json b/BIPs/2023/2023-W45/BIP-481.json new file mode 100644 index 000000000..8eb0cc50c --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-481.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1699471023309, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xcc4149f512f72712643f7d96c8378d458db50c1a3388ded68a8e319ceebbcbc5" + }, + "transactions": [ + { + "to": "0xFd72170339AC6d7bdda09D1eACA346B21a30D422", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [{ "internalType": "bool", "name": "_lock", "type": "bool" }], + "name": "claim", + "payable": false + }, + "contractInputsValues": { "_lock": "true" } + } + ] +} diff --git a/BIPs/2023/2023-W45/BIP-481.report.txt b/BIPs/2023/2023-W45/BIP-481.report.txt new file mode 100644 index 000000000..3f41b05d9 --- /dev/null +++ b/BIPs/2023/2023-W45/BIP-481.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W45/BIP-481.json +COMMIT: `56c4d238219e6b3beb95123a52a3af2ed78a1903` +CHAIN(S): `1` +``` ++-----------+--------------------------------------------------------+---------+-------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+===================+==============+============+ +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (Not Found) | 0 | { | BIP-481 | N/A | +| | | | "_lock": "true" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+-------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-482.json b/BIPs/2023/2023-W46/BIP-482.json new file mode 100644 index 000000000..28a03d661 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-482.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700056709635, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa1dDe34d48868F9E0901592f2A97e20F76004059", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-482.report.txt b/BIPs/2023/2023-W46/BIP-482.report.txt new file mode 100644 index 000000000..64e1c24b2 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-482.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W46/BIP-482.json +COMMIT: `d65f1ab4ce7e31ff302a1dc9c63b5ec945daaaf4` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xd1882ca6a22f3df54cd675b300b815864de67b200001000000000000000004c9 | Savvy TriCrypto Pool | 0xa1dDe34d48868F9E0901592f2A97e20F76004059 | "svBTC(0xeEE18334c414A47FB886a7317E1885b2Bfb8c2A6)", | "0x0000000000000000000000000000000000000000", | BIP-482 | 0 | +| | pool_address: 0xd1882cA6A22f3Df54CD675b300B815864DE67B20 | fee: 0.05, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "svUSD(0xF202Ab403Cd7E90197ec0f010ee897E283037706)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "svETH(0xf7728582002ef82908c8242CF552E969BA863Ffa)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-483.json b/BIPs/2023/2023-W46/BIP-483.json new file mode 100644 index 000000000..56f79772f --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-483.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700057162568, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCEB17D5C8ef8556ed0424A4bebC35a5d562d96E2", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-483.report.txt b/BIPs/2023/2023-W46/BIP-483.report.txt new file mode 100644 index 000000000..0161c50d9 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-483.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W46/BIP-483.json +COMMIT: `5d9aac193ae33edb392262234cf81260ea4689a2` +CHAIN(S): `gnosis` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xc9f00c3a713008ddf69b768d90d4978549bfdf9400000000000000000000006d | crvUSD/sDAI | 0xCEB17D5C8ef8556ed0424A4bebC35a5d562d96E2 | "crvUSD(0xaBEf652195F98A91E490f047A5006B71c85f058d)", | "0x0000000000000000000000000000000000000000", | BIP-483 | 0 | +| | pool_address: 0xc9F00C3a713008DDf69b768d90d4978549bFDF94 | fee: 0.02, a-factor: 500 | Style: L0 sidechain, cap: 2.0% | "sDAI(0xaf204776c7245bF4147c2612BF6e5972Ee483701)", | "0x89C80A4540A00b5270347E02e2E144c71da2EceD", | | | +| | | | | "crvUSD/sDAI(0xc9F00C3a713008DDf69b768d90d4978549bFDF94)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-484.json b/BIPs/2023/2023-W46/BIP-484.json new file mode 100644 index 000000000..3a2b8b77c --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-484.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700057423549, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2C3eF846FC3B5a4820b2D3462c9300E6d8845055", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-484.report.txt b/BIPs/2023/2023-W46/BIP-484.report.txt new file mode 100644 index 000000000..d0d14c7ed --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-484.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W46/BIP-484.json +COMMIT: `2643e7fd7f73d033cbb73ce99076de0b8c08feae` +CHAIN(S): `base` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=====================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x990a0f03c3ee397cafda61cad277de18280751fd0002000000000000000000b6 | 50WETH-50TAG | 0x2C3eF846FC3B5a4820b2D3462c9300E6d8845055 | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-484 | 0 | +| | pool_address: 0x990A0f03C3Ee397cAfDa61caD277DE18280751FD | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "TAG(0x7905EA12CC81a215A5F1D0F46DF73a53E19E9264)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-485.json b/BIPs/2023/2023-W46/BIP-485.json new file mode 100644 index 000000000..9076ebca5 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-485.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700057604615, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6f3b31296fd2457eba6dca3bed65ec79e06c1295", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-485.report.txt b/BIPs/2023/2023-W46/BIP-485.report.txt new file mode 100644 index 000000000..3ba47a8b2 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-485.report.txt @@ -0,0 +1,14 @@ +File name: BIPs/2023-W46/BIP-485.json +COMMIT: `b94075d61a4a0a7d7f2630166f77a7296aa41844` +CHAIN(S): `mainnet` +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+========+=========+=========+============+===============================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9000000000000000000000555 | R-DAI-BLP | 496 | 0x6f3b31296fd2457eba6dca3bed65ec79e06c1295 | 10.0% | 100.0% | mainnet | BIP-485 | 0 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'R-DAI-BLP(0x20a61B948E33879ce7F23e535CC7BAA3BC66c5a9)', 'DAI(0x6B175474E89094C44Da98b954EedeAC495271d0F)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e40002000000000000000005f3 | ECLP-R-sDAI | N/A | 0x3b861b81b086ef0cffa0b00cd2ddb3d545ec9b98 | 0.05% | 100.0% | mainnet | BIP-485 | 1 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x380aabe019ed2a9c2d632b51eddd30fd804d0fad000200000000000000000554 | 50R-50wstETH | N/A | 0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21 | 0.3% | 100.0% | mainnet | BIP-485 | 2 | ['R(0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21)', 'wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+--------+---------+---------+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-486-add-roles-zkevm.json b/BIPs/2023/2023-W46/BIP-486-add-roles-zkevm.json new file mode 100644 index 000000000..c7fc27fc7 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-486-add-roles-zkevm.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1699627861578, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0xe25f07517f2682eb3a4f4d9b6ae1def377e4f9120ba182679cc94d66ddfc864c" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "roles", "type": "bytes32[]", "internalType": "bytes32[]" }, + { "name": "account", "type": "address", "internalType": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c,0x873caa0fd93d3c1661f94fc8bdbe1c379f7fcda27086da0c26ec1f38bead59c1,0x2175568c6322118c9ae102adda930e3aee7b000bdf4cd0f0a0ee991c8c039d7e]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "role", "type": "bytes32", "internalType": "bytes32" }, + { "name": "account", "type": "address", "internalType": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0060ad8f81979d2e64cb0d53e650dee47343f112c476effa7f1617731de77913", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "roles", "type": "bytes32[]", "internalType": "bytes32[]" }, + { "name": "account", "type": "address", "internalType": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbfd69d98e6966ce935b9eba83ae8f056ed06f6406b875e0cf728e3d9c2c39961,0x2cca85787a500e04397f218a9851b4521750e6dc26edfdb062bb37f2d79b8de7,0x5a443c2e20bbd9246c672bd23a142a1c540ad1190fd7e5148866e4356d60ab29]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-486-add-roles-zkevm.report.txt b/BIPs/2023/2023-W46/BIP-486-add-roles-zkevm.report.txt new file mode 100644 index 000000000..b1e349aee --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-486-add-roles-zkevm.report.txt @@ -0,0 +1,18 @@ +File name: BIPs/2023-W46/BIP-486-add-roles-zkevm.json +COMMIT: `41e0c13582985f6609d9720627b57bd85505aaab` +CHAIN(S): `zkevm` +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | BIP-486 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/disableRecoveryMode() | 0x873caa0fd93d3c1661f94fc8bdbe1c379f7fcda27086da0c26ec1f38bead59c1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x2175568c6322118c9ae102adda930e3aee7b000bdf4cd0f0a0ee991c8c039d7e | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0x0060ad8f81979d2e64cb0d53e650dee47343f112c476effa7f1617731de77913 | BIP-486 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0xbfd69d98e6966ce935b9eba83ae8f056ed06f6406b875e0cf728e3d9c2c39961 | BIP-486 | 2 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x2cca85787a500e04397f218a9851b4521750e6dc26edfdb062bb37f2d79b8de7 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0x5a443c2e20bbd9246c672bd23a142a1c540ad1190fd7e5148866e4356d60ab29 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-486-disable-old-factory.json b/BIPs/2023/2023-W46/BIP-486-disable-old-factory.json new file mode 100644 index 000000000..9137feb1c --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-486-disable-old-factory.json @@ -0,0 +1,56 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1699642047486, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x0591d9492d6846c9294b55be073d2e650103bc0c58d26df062da1bb4c81bfe41" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "role", "type": "bytes32", "internalType": "bytes32" }, + { "name": "account", "type": "address", "internalType": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "role", "type": "bytes32", "internalType": "bytes32" }, + { "name": "account", "type": "address", "internalType": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-486-disable-old-factory.report.txt b/BIPs/2023/2023-W46/BIP-486-disable-old-factory.report.txt new file mode 100644 index 000000000..4020d712b --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-486-disable-old-factory.report.txt @@ -0,0 +1,22 @@ +File name: BIPs/2023-W46/BIP-486-disable-old-factory.json +COMMIT: `41e0c13582985f6609d9720627b57bd85505aaab` +CHAIN(S): `zkevm` +``` ++-----------------------+---------------+--------------------------------------------+------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+============+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 0 | ++-----------------------+---------------+--------------------------------------------+------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-486 | 2 | ++-----------------------+---------------+--------------------------------------------+------------+--------------------------------------------------------------------+---------+------------+ +``` +File name: BIPs/2023-W46/BIP-486-disable-old-factory.json +COMMIT: `41e0c13582985f6609d9720627b57bd85505aaab` +CHAIN(S): `1101` +``` ++-----------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==========+==============+============+ +| disable | 0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288 (Not Found) | 0 | "N/A" | BIP-486 | N/A | ++-----------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-487.json b/BIPs/2023/2023-W46/BIP-487.json new file mode 100644 index 000000000..8c5072e0c --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-487.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700060382520, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe2a1a188abefb990e3c04032a8d51a6c6e6b1c515198741fa926562cc0e10868" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xc186fA914353c44b2E33eBE05f21846F1048bEda", + "amount": "40000000000000000000000" + } + }, + { + "to": "0xc186fA914353c44b2E33eBE05f21846F1048bEda", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "l1Token", + "type": "address", + "internalType": "address" + }, + { + "name": "l1TokenAmount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "addLiquidity", + "payable": true + }, + "contractInputsValues": { + "l1Token": "0xba100000625a3754423978a60c9317c58a424e3D", + "l1TokenAmount": "40000000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-487.report.txt b/BIPs/2023/2023-W46/BIP-487.report.txt new file mode 100644 index 000000000..4137636d9 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-487.report.txt @@ -0,0 +1,22 @@ +File name: BIPs/2023-W46/BIP-487.json +COMMIT: `679848a0ce5adcfefe2912d9268bfc6b14b7e891` +CHAIN(S): `1` +``` ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==============+=========================================================+=========+================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-487 | N/A | +| | | | "spender": [ | | | +| | | | "0xc186fA914353c44b2E33eBE05f21846F1048bEda (N/A) " | | | +| | | | ], | | | +| | | | "amount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +| addLiquidity | 0xc186fA914353c44b2E33eBE05f21846F1048bEda (Not Found) | 0 | { | BIP-487 | N/A | +| | | | "l1Token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "l1TokenAmount": "40000000000000000000000" | | | +| | | | } | | | ++--------------+---------------------------------------------------------+---------+----------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-488-avax copy.json b/BIPs/2023/2023-W46/BIP-488-avax copy.json new file mode 100644 index 000000000..8fbe301bc --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-avax copy.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1700075489945, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0xe5ba6e41ec62eac397f1fbc379577792dc7b4a6d6af34412284dd6522188be76" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-488-avax copy.report.txt b/BIPs/2023/2023-W46/BIP-488-avax copy.report.txt new file mode 100644 index 000000000..87643a6a7 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-avax copy.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2023/2023-W46/BIP-488-avax copy.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `0facc58da485a556960ec14ea6fdeec5dbe7b8de` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/94b85afe-33dd-45ad-a75b-efde5c3226c9) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-488-avax.json b/BIPs/2023/2023-W46/BIP-488-avax.json new file mode 100644 index 000000000..8fbe301bc --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-avax.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1700075489945, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0xe5ba6e41ec62eac397f1fbc379577792dc7b4a6d6af34412284dd6522188be76" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-488-avax.report.txt b/BIPs/2023/2023-W46/BIP-488-avax.report.txt new file mode 100644 index 000000000..ad2bda970 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-avax.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W46/BIP-488-avax.json +COMMIT: `4f1ca094199c553bd660cf4b91e31d8d9427cfae` +CHAIN(S): `avalanche` +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | !!NOT FOUND!! | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x9b7cac7a6e50200d3ceb1372c25ac2f697fa4ba4495fb37091ffc35e5b4f8a42 | BIP-488 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-488-base copy.json b/BIPs/2023/2023-W46/BIP-488-base copy.json new file mode 100644 index 000000000..bc201b0ba --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-base copy.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1700075543668, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x1b3b08ad6d6644a1490c425cfe86a3bac99868fbf8d129f957ffdf657a0e3f83" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-488-base copy.report.txt b/BIPs/2023/2023-W46/BIP-488-base copy.report.txt new file mode 100644 index 000000000..68fbc7861 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-base copy.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2023/2023-W46/BIP-488-base copy.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `0facc58da485a556960ec14ea6fdeec5dbe7b8de` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b6ed3a42-733e-4a09-9d31-aeef2918b428) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+====================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | mimic/smartVaultV2 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-488 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-488-base.json b/BIPs/2023/2023-W46/BIP-488-base.json new file mode 100644 index 000000000..bc201b0ba --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-base.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1700075543668, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x1b3b08ad6d6644a1490c425cfe86a3bac99868fbf8d129f957ffdf657a0e3f83" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-488-base.report.txt b/BIPs/2023/2023-W46/BIP-488-base.report.txt new file mode 100644 index 000000000..f0da8f1a0 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-base.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W46/BIP-488-base.json +COMMIT: `4f1ca094199c553bd660cf4b91e31d8d9427cfae` +CHAIN(S): `base` +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | !!NOT FOUND!! | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-488 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W46/BIP-488-mainnet.json b/BIPs/2023/2023-W46/BIP-488-mainnet.json new file mode 100644 index 000000000..197038453 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-mainnet.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700075347898, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xff35f647a9b08bd01ca7d9a89f7c57e8cf0233a237552e0b5cfe7aaae5cd1d04" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2023/2023-W46/BIP-488-mainnet.report.txt b/BIPs/2023/2023-W46/BIP-488-mainnet.report.txt new file mode 100644 index 000000000..66ef425a2 --- /dev/null +++ b/BIPs/2023/2023-W46/BIP-488-mainnet.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W46/BIP-488-mainnet.json +COMMIT: `4f1ca094199c553bd660cf4b91e31d8d9427cfae` +CHAIN(S): `mainnet` +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | !!NOT FOUND!! | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x826ac7ce861f2a54e071e6c724653757fdd1259804eb1ca7f040aa1cd09923fe | BIP-488 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W47/BIP-393-December.json b/BIPs/2023/2023-W47/BIP-393-December.json new file mode 100644 index 000000000..b9a047625 --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-393-December.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "25000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W47/BIP-393-December.report.txt b/BIPs/2023/2023-W47/BIP-393-December.report.txt new file mode 100644 index 000000000..08f5ad941 --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-393-December.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W47/BIP-393-December.json +COMMIT: `4bde9191cde2253b75e7f3cd9024be40cb30455b` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 25000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 25000000000 | BIP-393 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W47/BIP-394-December.json b/BIPs/2023/2023-W47/BIP-394-December.json new file mode 100644 index 000000000..e0c760bbd --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-394-December.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W47/BIP-394-December.report.txt b/BIPs/2023/2023-W47/BIP-394-December.report.txt new file mode 100644 index 000000000..b69600c14 --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-394-December.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W47/BIP-394-December.json +COMMIT: `44b88cf4e25189e1bad924e7b7a5a60c79fb977c` +CHAIN(S): `mainnet` +``` ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++============+=========+================+==========================+==========+============================================+============================================+==============+=========+============+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 30000 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000000000 | BIP-394 | 0 | ++------------+---------+----------------+--------------------------+----------+--------------------------------------------+--------------------------------------------+--------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W47/BIP-489.json b/BIPs/2023/2023-W47/BIP-489.json new file mode 100644 index 000000000..d23616d19 --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-489.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700664668937, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe629c43bcad1029e12ed51432b9dd3432b656cc9", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x145011e0c04805e11bef23c1eed848faf49bb779", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x40b4c2e260f803f868053789bd4a6c7edd1cdc39", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W47/BIP-489.report.txt b/BIPs/2023/2023-W47/BIP-489.report.txt new file mode 100644 index 000000000..86cf42fa3 --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-489.report.txt @@ -0,0 +1,16 @@ +File name: BIPs/2023-W47/BIP-489.json +COMMIT: `f2df838507f51265fd9d566d5e6a89aea06e8298` +CHAIN(S): `polygon, avax, mainnet` +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+============+========+==============+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0xad0e5e0778cac28f1ff459602b31351871b5754a0002000000000000000003ce | BPT | N/A | 0xe629c43bcad1029e12ed51432b9dd3432b656cc9 | Not Found% | 2.0% | mainnet | BIP-489 | 0 | ['USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)', 'EURS(0xdB25f211AB05b1c97D595516F45794528a807ad8)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xc58150838855a5605c9030398c6d22afd5bb09ee00020000000000000000061b | LP-GBPT-USDC | N/A | 0xc5e66bB9fE27b7Cef4B64557Ad8398437730DD33 | Not Found% | 2.0% | mainnet | BIP-489 | 1 | ['GBPT(0x86B4dBE5D203e634a12364C0e428fa242A3FbA98)', 'USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x726e324c29a1e49309672b244bdc4ff62a270407000200000000000000000702 | BPT | N/A | 0x145011e0c04805e11bef23c1eed848faf49bb779 | Not Found% | 2.0% | L0 sidechain | BIP-489 | 2 | ['USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)', 'XSGD(0xDC3326e71D45186F113a2F448984CA0e8D201995)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc000200000000000000000011 | BPT | N/A | 0x40b4c2e260f803f868053789bd4a6c7edd1cdc39 | Not Found% | 100.0% | L0 sidechain | BIP-489 | 3 | ['USDC(0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E)', 'EURC(0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+------------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W47/BIP-490.json b/BIPs/2023/2023-W47/BIP-490.json new file mode 100644 index 000000000..e63a77aac --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-490.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700665679580, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1c9E55ae29541F2D29cDf83a38F53e1143Db278E", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W47/BIP-490.report.txt b/BIPs/2023/2023-W47/BIP-490.report.txt new file mode 100644 index 000000000..5eb45ad7e --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-490.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W47/BIP-490.json +COMMIT: `21ee99d76c99f4e7feedd03141e7ae0a966510a8` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x7056c8dfa8182859ed0d4fb0ef0886fdf3d2edcf000200000000000000000623 | 80OETH/20WETH | 0x1c9E55ae29541F2D29cDf83a38F53e1143Db278E | "OETH(0x856c4Efb76C1D1AE02e20CEB03A2A6a08b0b8dC3)", | "0x0000000000000000000000000000000000000000", | BIP-490 | 0 | +| | pool_address: 0x7056C8DFa8182859eD0d4Fb0eF0886fdf3d2edCF | fee: 0.04, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W47/BIP-491.json b/BIPs/2023/2023-W47/BIP-491.json new file mode 100644 index 000000000..bea96ddde --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-491.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700665920164, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf21Fa4Fb30cA6eAFDF567A02aAD92E49D6d0752D", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xfC7D964f1676831d8105506b1F0c3B3e2B55c467", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W47/BIP-491.report.txt b/BIPs/2023/2023-W47/BIP-491.report.txt new file mode 100644 index 000000000..5ae09ca1e --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-491.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/2023-W47/BIP-491.json +COMMIT: `344f0e53354cc7a6b4d129e10972d834a1e96272` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=====================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | ECLP-GYD-sDAI | 0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)", | | BIP-491 | 0 | +| | pool_address: 0x1CCE5169bDe03f3d5aD0206f6BD057953539DAE6 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c | ECLP-GYD-USDC | 0xf21Fa4Fb30cA6eAFDF567A02aAD92E49D6d0752D | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | | BIP-491 | 1 | +| | pool_address: 0xC2AA60465BfFa1A88f5bA471a59cA0435c3ec5c1 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d | ECLP-GYD-USDT | 0xfC7D964f1676831d8105506b1F0c3B3e2B55c467 | "USDT(0xdAC17F958D2ee523a2206206994597C13D831ec7)", | | BIP-491 | 2 | +| | pool_address: 0xfbfaD5fa9E99081da6461F36f229B5cC88A64c63 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W47/BIP-492.json b/BIPs/2023/2023-W47/BIP-492.json new file mode 100644 index 000000000..d7ac20315 --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-492.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700755298284, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5D7C0521DB5a6F37aD839d0eEfbaF8205389adD8", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W47/BIP-492.report.txt b/BIPs/2023/2023-W47/BIP-492.report.txt new file mode 100644 index 000000000..15672dfaf --- /dev/null +++ b/BIPs/2023/2023-W47/BIP-492.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W47/BIP-492.json +COMMIT: `bd2a13c20bbe23d5c178919b022f4347b1ecd48b` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xb9debddf1d894c79d2b2d09f819ff9b856fca55200000000000000000000062a | weETH-WETH-BPT | 0x5D7C0521DB5a6F37aD839d0eEfbaF8205389adD8 | "weETH-WETH-BPT(0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552)", | "0x0000000000000000000000000000000000000000", | BIP-492 | 0 | +| | pool_address: 0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552 | fee: 0.04, a-factor: 600 | Style: mainnet, cap: 100.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)" | "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W48/BIP-493.json b/BIPs/2023/2023-W48/BIP-493.json new file mode 100644 index 000000000..07b48fd27 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-493.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701278514147, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4e15b9184553740f5C822bd3d6169029D302e63e", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W48/BIP-493.report.txt b/BIPs/2023/2023-W48/BIP-493.report.txt new file mode 100644 index 000000000..a5194a5e6 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-493.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W48/BIP-493.json +COMMIT: `e1e6551943198436a022191bfaed8b2f4a619518` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=========================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4 | 50ANKR/50ankrETH | 0x4e15b9184553740f5C822bd3d6169029D302e63e | "ANKR(0xAeAeeD23478c3a4b798e4ed40D8B7F41366Ae861)", | "0x0000000000000000000000000000000000000000", | BIP-493 | 0 | +| | pool_address: 0x9F8ed1Acfe0C863381b9081AFF2144fC867AA773 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "ankrETH(0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3)" | "0xFC8d81A01deD207aD3DEB4FE91437CAe52deD0b5" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W48/BIP-494.json b/BIPs/2023/2023-W48/BIP-494.json new file mode 100644 index 000000000..6eb446492 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-494.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701278943996, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x057e7b14DC461f071958e0BbF42b5597564D4e6C", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W48/BIP-494.report.txt b/BIPs/2023/2023-W48/BIP-494.report.txt new file mode 100644 index 000000000..d9fdf8701 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-494.report.txt @@ -0,0 +1,11 @@ +File name: BIPs/2023-W48/BIP-494.json +COMMIT: `a43b7e90b7a2afdb4fe96bbdb872137dfa09bd66` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=========================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x478980c67d53cd990f2b7bab311ddc9934324e7b00020000000000000000010c | bpt-allrdsfrx | 0x057e7b14DC461f071958e0BbF42b5597564D4e6C | "FRAX(0x2E3D870790dC77A83DD1d18184Acc7439A53f475)", | "0x0000000000000000000000000000000000000000", | BIP-494 | 0 | +| | pool_address: 0x478980c67d53Cd990F2B7bab311DDC9934324E7B | fee: 0.2, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sfrxETH(0x484c2D6e3cDd945a8B2DF735e079178C1036578c)" | "0xf752dd899F87a91370C1C8ac1488Aef6be687505" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W48/BIP-496.json b/BIPs/2023/2023-W48/BIP-496.json new file mode 100644 index 000000000..a27be86c6 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-496.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701305387311, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc592c33e51A764B94DB0702D8BAf4035eD577aED", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W48/BIP-496.report.txt b/BIPs/2023/2023-W48/BIP-496.report.txt new file mode 100644 index 000000000..e24148dae --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-496.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W48/BIP-496.json +COMMIT: `4a96a3cad8d037c30be84fba4b72395cee858569` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xdacf5fa19b1f720111609043ac67a9818262850c000000000000000000000635 | osETH/wETH-BPT | 0xc592c33e51A764B94DB0702D8BAf4035eD577aED | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | "0x0000000000000000000000000000000000000000", | BIP-496 | 0 | +| | pool_address: 0xDACf5Fa19b1f720111609043ac67A9818262850c | fee: 0.01, a-factor: 200 | Style: mainnet, cap: 10.0% | "osETH/wETH-BPT(0xDACf5Fa19b1f720111609043ac67A9818262850c)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "osETH(0xf1C9acDc66974dFB6dEcB12aA385b9cD01190E38)" | "0x8023518b2192FB5384DAdc596765B3dD1cdFe471" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W48/BIP-497.json b/BIPs/2023/2023-W48/BIP-497.json new file mode 100644 index 000000000..91d896126 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-497.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701305667047, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W48/BIP-497.report.txt b/BIPs/2023/2023-W48/BIP-497.report.txt new file mode 100644 index 000000000..c5d3e7b39 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-497.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W48/BIP-497.json +COMMIT: `c4312e9c27898f890c94ef42f7f2eef5db1aa048` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=======================+============================================+=================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | plsRDNT-Stable | 0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342 | "RDNT-WETH(0x32dF62dc3aEd2cD6224193052Ce665DC18165841)", | "0x0000000000000000000000000000000000000000", | BIP-497 | 0 | +| | pool_address: 0x451B0Afd69ACe11Ec0AC339033D54d2543b088a8 | fee: 0.3, a-factor: 1 | Style: L0 sidechain, cap: 2.0% | "plsRDNT-Stable(0x451B0Afd69ACe11Ec0AC339033D54d2543b088a8)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "plsRDNT(0x6dbF2155B0636cb3fD5359FCcEFB8a2c02B6cb51)" | "0x6dbF2155B0636cb3fD5359FCcEFB8a2c02B6cb51" | | | ++-----------------------+---------------------------------------------------------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W48/BIP-499.json b/BIPs/2023/2023-W48/BIP-499.json new file mode 100644 index 000000000..c0ed181d3 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-499.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701338960593, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x008EB79DBE2Efcf8A9586F8F697464BE65D39eFf", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4a3d252d121c627F2450f06412Ca5c5A62e662f2", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2B7Bd050d7E0341fB49fF96f32eA59Bd8087d487", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W48/BIP-499.report.txt b/BIPs/2023/2023-W48/BIP-499.report.txt new file mode 100644 index 000000000..05314a774 --- /dev/null +++ b/BIPs/2023/2023-W48/BIP-499.report.txt @@ -0,0 +1,17 @@ +File name: BIPs/2023-W48/BIP-499.json +COMMIT: `b305f4b3b899bdd1e77b8c96ede5de2f4d4ee6bd` +CHAIN(S): `polygon, mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===============================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x5f8b11995d7f95faa59ca6fd5ffa1c0dbbe0ec7b000200000000000000000630 | LP-EURS-USDC | 0x008EB79DBE2Efcf8A9586F8F697464BE65D39eFf | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | | BIP-499 | 0 | +| | pool_address: 0x5F8B11995D7F95faA59cA6fD5fFA1C0dbBe0EC7b | fee: Not Found, a-factor: N/A | Style: mainnet, cap: 2.0% | "EURS(0xdB25f211AB05b1c97D595516F45794528a807ad8)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x73f8e7a9a19e284a9ac85704af58454cfe75f059000200000000000000000631 | LP-GBPT-USDC | 0x4a3d252d121c627F2450f06412Ca5c5A62e662f2 | "GBPT(0x86B4dBE5D203e634a12364C0e428fa242A3FbA98)", | | BIP-499 | 1 | +| | pool_address: 0x73f8E7A9A19E284a9Ac85704Af58454cFe75f059 | fee: Not Found, a-factor: N/A | Style: mainnet, cap: 2.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xe6d8fcd23ed4e417d7e9d1195edf2ca634684e0e000200000000000000000caf | LP-XSGD-USDC | 0x2B7Bd050d7E0341fB49fF96f32eA59Bd8087d487 | "USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)", | | BIP-499 | 2 | +| | pool_address: 0xE6D8FcD23eD4e417d7e9D1195eDf2cA634684e0E | fee: Not Found, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "XSGD(0xDC3326e71D45186F113a2F448984CA0e8D201995)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W48/NO_EXECUTION_THIS_WEEK_USE_W49 b/BIPs/2023/2023-W48/NO_EXECUTION_THIS_WEEK_USE_W49 new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/2023/2023-W49/BIP-495.json b/BIPs/2023/2023-W49/BIP-495.json new file mode 100644 index 000000000..486af12e7 --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-495.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701279318071, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5622821A3b993f062Ff691478Bbb7d551c167321", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2023/2023-W49/BIP-495.report.txt b/BIPs/2023/2023-W49/BIP-495.report.txt new file mode 100644 index 000000000..aca40db7d --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-495.report.txt @@ -0,0 +1,12 @@ +File name: BIPs/2023-W49/BIP-495.json +COMMIT: `b0408f67cccdff1722161579224bc4d0f18470af` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xa71021492a3966eec735ed1b505afa097c7cfe6f00000000000000000000010d | bpt-fraxethe | 0x5622821A3b993f062Ff691478Bbb7d551c167321 | "sfrxETH(0x484c2D6e3cDd945a8B2DF735e079178C1036578c)", | "0xf752dd899F87a91370C1C8ac1488Aef6be687505", | BIP-495 | 0 | +| | pool_address: 0xA71021492a3966EeC735Ed1B505aFa097c7cFe6f | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "frxETH(0x6806411765Af15Bddd26f8f544A34cC40cb9838B)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "bpt-fraxethe(0xA71021492a3966EeC735Ed1B505aFa097c7cFe6f)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W49/BIP-501.json b/BIPs/2023/2023-W49/BIP-501.json new file mode 100644 index 000000000..bedbbf331 --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-501.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701888221562, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9902913ce5439d667774c8f9526064b2bc103b4a", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W49/BIP-501.report.txt b/BIPs/2023/2023-W49/BIP-501.report.txt new file mode 100644 index 000000000..ff5725417 --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-501.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2023-W49/BIP-501.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b0ce053ff5d122db1ced7b76263a87d038e65984` +CHAIN(S): `polygon` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=====================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xb204bf10bc3a5435017d3db247f56da601dfe08a0002000000000000000000fe | 20USDC-80THX | 0x9902913ce5439d667774c8f9526064b2bc103b4a | "USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)", | | BIP-501 | 0 | +| | pool_address: 0xb204BF10bc3a5435017D3db247f56dA601dFe08A | fee: 0.25, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "THX(0x2934b36ca9A4B31E633C5BE670C8C8b28b6aA015)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W49/BIP-502A.json b/BIPs/2023/2023-W49/BIP-502A.json new file mode 100644 index 000000000..76f61a5cf --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-502A.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701888984962, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5b006e53df539773e109DBbf392dEfF6E87E2781", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W49/BIP-502A.report.txt b/BIPs/2023/2023-W49/BIP-502A.report.txt new file mode 100644 index 000000000..8c21e6ea7 --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-502A.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2023-W49/BIP-502A.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `37a4ceeffb01aa35a84f3dd9c20c243387be107c` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x9bfcd4189cf9062697746ce292350f42fdee457c0002000000000000000004d6 | 50DFX-50WETH | 0x5b006e53df539773e109DBbf392dEfF6E87E2781 | "DFX(0x27f485b62C4A7E635F561A87560Adf5090239E93)", | "0x0000000000000000000000000000000000000000", | BIP-502 | 0 | +| | pool_address: 0x9bFCD4189Cf9062697746CE292350f42fDEE457C | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W49/BIP-503.json b/BIPs/2023/2023-W49/BIP-503.json new file mode 100644 index 000000000..0200982a0 --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-503.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701889228683, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc4a2d0F9fC0f5828DA05e8399B4f38a345447d63", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W49/BIP-503.report.txt b/BIPs/2023/2023-W49/BIP-503.report.txt new file mode 100644 index 000000000..e3c5ab694 --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-503.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2023-W49/BIP-503.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6c5fafb14ea3c163d638659e5ebad3cd3cb7fe86` +CHAIN(S): `polygon` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x46356123e062f93d6b0d56f6ff6c3744e87c22d7000000000000000000000ca6 | p-cs-kp-eur | 0xc4a2d0F9fC0f5828DA05e8399B4f38a345447d63 | "wFRK(0x01d1a890D40d890d59795aFCce22F5AdbB511A3a)", | "0x76D8B79Fb9afD4dA89913458C90B6C09676628E2", | BIP-503 | 0 | +| | pool_address: 0x46356123e062F93D6b0D56F6Ff6C3744E87C22d7 | fee: 0.05, a-factor: 200 | Style: L0 sidechain, cap: 2.0% | "p-cs-kp-eur(0x46356123e062F93D6b0D56F6Ff6C3744E87C22d7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "PAR(0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W49/BIP-504.json b/BIPs/2023/2023-W49/BIP-504.json new file mode 100644 index 000000000..91e33159f --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-504.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701889859614, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x85d6840EaB7473b60F10d1a3E2452243eb702C97", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W49/BIP-504.report.txt b/BIPs/2023/2023-W49/BIP-504.report.txt new file mode 100644 index 000000000..d0406f301 --- /dev/null +++ b/BIPs/2023/2023-W49/BIP-504.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2023-W49/BIP-504.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e52e19d0f43ca6bb362064870932322dfae67491` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=====================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x577a7f7ee659aa14dc16fd384b3f8078e23f1920000200000000000000000633 | BAL-20WETH-80VCX | 0x85d6840EaB7473b60F10d1a3E2452243eb702C97 | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)", | | BIP-504 | 0 | +| | pool_address: 0x577A7f7EE659Aa14Dc16FD384B3F8078E23F1920 | fee: 1.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "VCX(0xcE246eEa10988C495B4A90a905Ee9237a0f91543)" | | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-500.json b/BIPs/2023/2023-W50/BIP-500.json new file mode 100644 index 000000000..7b94b4782 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-500.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701887639836, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x102f1ce2527d77fae301552f6e6f12666ade8113fc04363ae258a1e73fdacfe4" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd5799f5a62cdbcebada0c4ff21f7a0d82cfc1ad293c79f597c27bd1c03ad100b", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x6a625c2e350a93dad2713c2fa449ec9304288897f8b7ad89c21417b9020eb99e", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-500.report.txt b/BIPs/2023/2023-W50/BIP-500.report.txt new file mode 100644 index 000000000..66d4f28c0 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-500.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2023-W50/BIP-500.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9f3d9fcfbcb0fb0dd3e6db7da03ad265eadeca1b` +CHAIN(S): `mainnet` +``` ++----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+========================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGaugeFactory/setArbitrumFees(uint64,uint64,uint64) | 0xd5799f5a62cdbcebada0c4ff21f7a0d82cfc1ad293c79f597c27bd1c03ad100b | BIP-500 | 0 | ++----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220823-optimism-root-gauge-factory-v2/OptimismRootGaugeFactory/setOptimismGasLimit(uint32) | 0x6a625c2e350a93dad2713c2fa449ec9304288897f8b7ad89c21417b9020eb99e | BIP-500 | 1 | ++----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-504.json b/BIPs/2023/2023-W50/BIP-504.json new file mode 100644 index 000000000..9a9aa3268 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-504.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1702495560376, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe9b5f4d892Df284a15Ec90A58bd4385E57964f18", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-504.report.txt b/BIPs/2023/2023-W50/BIP-504.report.txt new file mode 100644 index 000000000..d7199a695 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-504.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2023-W50/BIP-504.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `1485402e8e476db77937164883b60930be0b7b33` +CHAIN(S): `polygon` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xc260f3c5a57caf193d1813d8fd0a02442073d6fa000100000000000000000d07 | 40DFX-20USDC-40TEL | 0xe9b5f4d892Df284a15Ec90A58bd4385E57964f18 | "DFX(0x27f485b62C4A7E635F561A87560Adf5090239E93)", | "0x0000000000000000000000000000000000000000", | BIP-504 | 0 | +| | pool_address: 0xc260F3c5A57Caf193d1813D8fd0A02442073D6fa | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "USDC(0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "TEL(0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-505.json b/BIPs/2023/2023-W50/BIP-505.json new file mode 100644 index 000000000..6c15c960c --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-505.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1702496337254, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6be156504cda8ee38169be96bcf53aeab4377c1a", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9e5B7e6b61529571E98C8F16d07794eA99A7a930", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-505.report.txt b/BIPs/2023/2023-W50/BIP-505.report.txt new file mode 100644 index 000000000..5bd915393 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-505.report.txt @@ -0,0 +1,15 @@ +FILENAME: `BIPs/2023-W50/BIP-505.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c7aab38f2a463c136346172c828d6fe9debd713d` +CHAIN(S): `mainnet, polygon` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xee3959fd00a0b996d801fc34b7ce566bd037f5f500020000000000000000063e | 80MIMO-20WETH | 0x6be156504cda8ee38169be96bcf53aeab4377c1a | "MIMO(0x90B831fa3Bebf58E9744A14D638E25B4eE06f9Bc)", | "0x0000000000000000000000000000000000000000", | BIP-505 | 0 | +| | pool_address: 0xee3959FD00a0B996d801fc34B7CE566bD037f5f5 | fee: 0.3, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x3dbb91bdd5fc74c49146819ed58d7d204cf5a016000200000000000000000cfb | 20WETH-80MIMO | 0x9e5B7e6b61529571E98C8F16d07794eA99A7a930 | "WETH(0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619)", | "0x0000000000000000000000000000000000000000", | BIP-505 | 1 | +| | pool_address: 0x3dBb91BDd5fc74c49146819ed58d7D204cf5a016 | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "MIMO(0xADAC33f543267c4D59a8c299cF804c303BC3e4aC)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-507.json b/BIPs/2023/2023-W50/BIP-507.json new file mode 100644 index 000000000..9878994a3 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-507.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1702496735120, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC859BF9d7B8C557bBd229565124c2C09269F3aEF", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-507.report.txt b/BIPs/2023/2023-W50/BIP-507.report.txt new file mode 100644 index 000000000..ea356968d --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-507.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2023-W50/BIP-507.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `45a67ebc6896bb8cd8e6ebf3d1c68643b5e5f1c6` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | weETH/rETH | 0xC859BF9d7B8C557bBd229565124c2C09269F3aEF | "weETH/rETH(0x05ff47AFADa98a98982113758878F9A8B9FddA0a)", | "0x0000000000000000000000000000000000000000", | BIP-507 | 0 | +| | pool_address: 0x05ff47AFADa98a98982113758878F9A8B9FddA0a | fee: 0.04, a-factor: 600 | Style: mainnet, cap: 10.0% | "rETH(0xae78736Cd615f374D3085123A210448E74Fc6393)", | "0x1a8F81c256aee9C640e14bB0453ce247ea0DFE6F", | | | +| | | | | "weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)" | "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-508.json b/BIPs/2023/2023-W50/BIP-508.json new file mode 100644 index 000000000..c088bf6c4 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-508.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1702574390861, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6925c6d7045e555554c5098db80ff7374b6e1d767b038fcbf19e2e569a18fe22" + }, + "transactions": [ + { + "to": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" } + ], + "name": "setRewardForwarding", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "newDelegatee", + "type": "address", + "internalType": "address" + } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "newDelegatee": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-508.report.txt b/BIPs/2023/2023-W50/BIP-508.report.txt new file mode 100644 index 000000000..2a21a66dc --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-508.report.txt @@ -0,0 +1,21 @@ +FILENAME: `BIPs/2023-W50/BIP-508.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `dd6ef9dad536aaf5c893e7ac92368ef943f00149` +CHAIN(S): `mainnet` +``` ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=====================+=======================================================================+=========+========================================================================================+==============+============+ +| setRewardForwarding | 0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) | 0 | { | BIP-508 | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling) " | | | +| | | | ] | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +| delegate | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-508 | N/A | +| | | | "newDelegatee": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling) " | | | +| | | | ] | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21.json new file mode 100644 index 000000000..08cef3d28 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21.json @@ -0,0 +1,23 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114, + "base": 8453 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "20231031-batch-relayer-v6/BalancerRelayer", + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": "20231031-batch-relayer-v6/BalancerRelayer", + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": "20231031-batch-relayer-v6/BalancerRelayer", + "manageUserBalance((uint8,address,uint256,address,address)[])": "20231031-batch-relayer-v6/BalancerRelayer", + "setRelayerApproval(address,address,bool)": "20231031-batch-relayer-v6/BalancerRelayer", + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": "20231031-batch-relayer-v6/BalancerRelayer" + }, + "deployments": ["20210418-vault"] + } +] diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_address_sorted.md b/BIPs/2023/2023-W50/BIP-509/2023-11-21_address_sorted.md new file mode 100644 index 000000000..74a681930 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_address_sorted.md @@ -0,0 +1,50 @@ +| deployment | function | role | chain | caller | caller_address | +|:---------------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:----------|:------------------------------------------|:-------------------------------------------| +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | \ No newline at end of file diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_arbitrum.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21_arbitrum.json new file mode 100644 index 000000000..bc98c99ae --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_arbitrum.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x9B892E515D2Ab8869F17488d64B3b918731cc70d" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_arbitrum.report.txt b/BIPs/2023/2023-W50/BIP-509/2023-11-21_arbitrum.report.txt new file mode 100644 index 000000000..c0837d9ff --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_arbitrum.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W50/BIP-509/2023-11-21_arbitrum.json +COMMIT: `0ce43dc17069779e6d2103655c1897a9e27c210f` +CHAIN(S): `arbitrum` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_avalanche.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21_avalanche.json new file mode 100644 index 000000000..17628fa48 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_avalanche.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 43114, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_avalanche.report.txt b/BIPs/2023/2023-W50/BIP-509/2023-11-21_avalanche.report.txt new file mode 100644 index 000000000..1b329f655 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_avalanche.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W50/BIP-509/2023-11-21_avalanche.json +COMMIT: `0ce43dc17069779e6d2103655c1897a9e27c210f` +CHAIN(S): `avalanche` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_base.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21_base.json new file mode 100644 index 000000000..978bf7c23 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_base.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 8453, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_base.report.txt b/BIPs/2023/2023-W50/BIP-509/2023-11-21_base.report.txt new file mode 100644 index 000000000..822e9e2bf --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_base.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W50/BIP-509/2023-11-21_base.json +COMMIT: `0ce43dc17069779e6d2103655c1897a9e27c210f` +CHAIN(S): `base` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_deployment_sorted.md b/BIPs/2023/2023-W50/BIP-509/2023-11-21_deployment_sorted.md new file mode 100644 index 000000000..a5eb66785 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_deployment_sorted.md @@ -0,0 +1,50 @@ +| deployment | function | role | chain | caller | caller_address | +|:---------------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:----------|:------------------------------------------|:-------------------------------------------| +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | arbitrum | 20231031-batch-relayer-v6/BalancerRelayer | 0x9B892E515D2Ab8869F17488d64B3b918731cc70d | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | avalanche | 20231031-batch-relayer-v6/BalancerRelayer | 0xA084c11cb55e67C9becf9607f1DBB20ec4D5E7b2 | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | base | 20231031-batch-relayer-v6/BalancerRelayer | 0x7C3C773C878d2238a9b64d8CEE02377BF07ED06a | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | gnosis | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | mainnet | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | optimism | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | polygon | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | zkevm | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | \ No newline at end of file diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_function_descriptions.md b/BIPs/2023/2023-W50/BIP-509/2023-11-21_function_descriptions.md new file mode 100644 index 000000000..d7f33e7fc --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_function_descriptions.md @@ -0,0 +1,8 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_gnosis.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21_gnosis.json new file mode 100644 index 000000000..a7adaa281 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_gnosis.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_gnosis.report.txt b/BIPs/2023/2023-W50/BIP-509/2023-11-21_gnosis.report.txt new file mode 100644 index 000000000..62536b166 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_gnosis.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W50/BIP-509/2023-11-21_gnosis.json +COMMIT: `0ce43dc17069779e6d2103655c1897a9e27c210f` +CHAIN(S): `gnosis` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x2163c2FcD0940e84B8a68991bF926eDfB0Cd926C | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_mainnet.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21_mainnet.json new file mode 100644 index 000000000..52c08fac4 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_mainnet.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_mainnet.report.txt b/BIPs/2023/2023-W50/BIP-509/2023-11-21_mainnet.report.txt new file mode 100644 index 000000000..a29af2cc5 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_mainnet.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W50/BIP-509/2023-11-21_mainnet.json +COMMIT: `0ce43dc17069779e6d2103655c1897a9e27c210f` +CHAIN(S): `mainnet` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x35Cea9e57A393ac66Aaa7E25C391D52C74B5648f | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_optimism.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21_optimism.json new file mode 100644 index 000000000..989de5bde --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_optimism.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x015ACA20a1422F3c729086c17f15F10e0CfbC75A" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_optimism.report.txt b/BIPs/2023/2023-W50/BIP-509/2023-11-21_optimism.report.txt new file mode 100644 index 000000000..42ad339e2 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_optimism.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W50/BIP-509/2023-11-21_optimism.json +COMMIT: `0ce43dc17069779e6d2103655c1897a9e27c210f` +CHAIN(S): `optimism` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x015ACA20a1422F3c729086c17f15F10e0CfbC75A | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_polygon.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21_polygon.json new file mode 100644 index 000000000..773653d74 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_polygon.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_polygon.report.txt b/BIPs/2023/2023-W50/BIP-509/2023-11-21_polygon.report.txt new file mode 100644 index 000000000..c505d8a06 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_polygon.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W50/BIP-509/2023-11-21_polygon.json +COMMIT: `0ce43dc17069779e6d2103655c1897a9e27c210f` +CHAIN(S): `polygon` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xB1ED8d3b5059b3281D43306cC9D043cE8B22599b | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_zkevm.json b/BIPs/2023/2023-W50/BIP-509/2023-11-21_zkevm.json new file mode 100644 index 000000000..926e99691 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_zkevm.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5" + } + } + ] +} diff --git a/BIPs/2023/2023-W50/BIP-509/2023-11-21_zkevm.report.txt b/BIPs/2023/2023-W50/BIP-509/2023-11-21_zkevm.report.txt new file mode 100644 index 000000000..699affa4f --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/2023-11-21_zkevm.report.txt @@ -0,0 +1,15 @@ +File name: BIPs/2023-W50/BIP-509/2023-11-21_zkevm.json +COMMIT: `0ce43dc17069779e6d2103655c1897a9e27c210f` +CHAIN(S): `zkevm` +``` ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0x8e620FfCa2580ed87241D7e10F85EE75d0a906F5 | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-509 | 0 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | ++-----------------------+-------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W50/BIP-509/BIP-XXX.md b/BIPs/2023/2023-W50/BIP-509/BIP-XXX.md new file mode 100644 index 000000000..9a9f2b036 --- /dev/null +++ b/BIPs/2023/2023-W50/BIP-509/BIP-XXX.md @@ -0,0 +1,24 @@ +# BIP-XXX: Wire Up Batch Relayer V6 + +## TL;DR + +More than six months after [BIP-216](https://forum.balancer.fi/t/bip-216-add-permissions-for-batch-relayer-v5-second-attempt/4534) (batch relayer v5), the last day of October saw the deployment of the newest batch relayer: v6 ([changelog](https://forum.balancer.fi/t/bip-216-add-permissions-for-batch-relayer-v5-second-attempt/4534)). + +This BIP proposes to give it the necessary permissions on all chains it was deployed on, except for BSC and the testnets. + +## Specification + +Payloads were generated by passing [this config](https://github.com/BalancerMaxis/multisig-ops/blob/df1a2cf41d75aa9fd11c33ae673b222ce42c651c/BIPs/00batched/2023-W47/BIP-XXX/2023-11-21.json) to [the same script](https://github.com/BalancerMaxis/multisig-ops/blob/df1a2cf41d75aa9fd11c33ae673b222ce42c651c/action-scripts/gen_add_permissions_payload.py) as for BIP-216. + +Here is a detailed overview of the permissions that are being granted to the relayer: + +| function | description | +| :------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))` | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| `joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))` | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| `batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)` | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| `manageUserBalance((uint8,address,uint256,address,address)[])` | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| `setRelayerApproval(address,address,bool)` | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| `swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)` | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | + +More output files can be found in this dir: [BIPS/00batched/2023-W47/BIP-XXX/](https://github.com/BalancerMaxis/multisig-ops/tree/df1a2cf41d75aa9fd11c33ae673b222ce42c651c/BIPs/00batched/2023-W47/BIP-XXX) diff --git a/BIPs/2023/2023-W51/BIP-103-November.json b/BIPs/2023/2023-W51/BIP-103-November.json new file mode 100644 index 000000000..283c63724 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-103-November.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "7918000000" + }, + "meta": { + "bip_number": "BIP-103" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-103-November.report.txt b/BIPs/2023/2023-W51/BIP-103-November.report.txt new file mode 100644 index 000000000..251bbc219 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-103-November.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2023-W52/BIP-103-November.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `a2d93fb785f571b1aa89541f20ba0c068545dee9` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+==========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 7918.0 (RAW: 7918000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-464B.json b/BIPs/2023/2023-W51/BIP-464B.json new file mode 100644 index 000000000..c45b808d5 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-464B.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698365366391, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xfdc053507964b4746e382562abcd28ca73175ed1c25d4d54b9a36401a0d21282" + }, + "transactions": [ + { + "to": "0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "completeWithdraw", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-464B.report.txt b/BIPs/2023/2023-W51/BIP-464B.report.txt new file mode 100644 index 000000000..617df14c7 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-464B.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2023-W51/BIP-464B.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `85a4821ca22f32d2959d348721c1b551c7146bcd` +CHAIN(S): `mainnet` +``` ++------------------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+========================================================+=========+==========+==============+============+ +| completeWithdraw | 0x2a6B048eB15C7d4ddCa27db4f9A454196898A0Fe (Not Found) | 0 | "N/A" | BIP-464 | N/A | ++------------------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-502B.json b/BIPs/2023/2023-W51/BIP-502B.json new file mode 100644 index 000000000..1cb5d1d2a --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-502B.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1701889044878, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8f7a0f9cf545db78bf5120d3dbea7de9c6220c10", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-502B.report.txt b/BIPs/2023/2023-W51/BIP-502B.report.txt new file mode 100644 index 000000000..e05c20dc9 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-502B.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2023-W51/BIP-502B.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `37a4ceeffb01aa35a84f3dd9c20c243387be107c` +CHAIN(S): `arbitrum` +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+---------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+=======+==============+=========+============+=========================================================================================================+ +| AAEntrypoint/killGauge() | 0xa231aea07bb5e79ae162f95903806fc5ad65ff1100020000000000000000043f | 50DFX-50WETH | N/A | 0x8f7a0f9cf545db78bf5120d3dbea7de9c6220c10 | 0.3% | 2.0% | L0 sidechain | BIP-502 | 0 | ['WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)', 'DFX(0xA4914B824eF261D4ED0Ccecec29500862d57c0a1)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+---------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-510.json b/BIPs/2023/2023-W51/BIP-510.json new file mode 100644 index 000000000..239cd4c78 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-510.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703084557722, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF6A7ad46b00300344C7d4739C0518db70e722DC4", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x94981eB72dB7EBcAE91ABd5A810f34B1DBf21108", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x62A82FE26E21a8807599374CaC8024fae342eF83", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-510.report.txt b/BIPs/2023/2023-W51/BIP-510.report.txt new file mode 100644 index 000000000..1ab487f0e --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-510.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/2023-W51/BIP-510.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ce26bde45353184a6d10e778918c2e33731103d1` +CHAIN(S): `mainnet, arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | sDAI/3Pool | 0xF6A7ad46b00300344C7d4739C0518db70e722DC4 | "sDAI/3Pool(0x49cbD67651fbabCE12d1df18499896ec87BEf46f)", | "0x0000000000000000000000000000000000000000", | BIP-510 | 0 | +| | pool_address: 0x49cbD67651fbabCE12d1df18499896ec87BEf46f | fee: 0.01, a-factor: 1000 | Style: mainnet, cap: 100.0% | "USDC-DAI-USDT(0x79c58f70905F734641735BC61e45c19dD9Ad60bC)", | "0x79c58f70905F734641735BC61e45c19dD9Ad60bC", | | | +| | | | | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)" | "0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x6aa6d7542310cdc75d1179b8729e1e6ec8d42bf100020000000000000000064b | 50wstETH/50sDAI | 0x94981eB72dB7EBcAE91ABd5A810f34B1DBf21108 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | BIP-510 | 1 | +| | pool_address: 0x6Aa6d7542310cDC75D1179B8729E1E6ec8d42BF1 | fee: 0.25, a-factor: N/A | Style: mainnet, cap: 100.0% | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)" | "0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | sFRAX/4POOL | 0x62A82FE26E21a8807599374CaC8024fae342eF83 | "sFRAX/4POOL(0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27)", | "0x0000000000000000000000000000000000000000", | BIP-510 | 2 | +| | pool_address: 0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27 | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "4POOL-BPT(0x423A1323c871aBC9d89EB06855bF5347048Fc4A5)", | "0x423A1323c871aBC9d89EB06855bF5347048Fc4A5", | | | +| | | | | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | "0x320CFa1a78d37a13C5D1cA5aA51563fF6Bb0f686" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc757f12694f550d0985ad6e1019c4db4a803f1600002000000000000000004de | 50wstETH/50sFRAX | 0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-510 | 3 | +| | pool_address: 0xc757F12694F550d0985ad6E1019C4db4A803f160 | fee: 0.25, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | "0x320CFa1a78d37a13C5D1cA5aA51563fF6Bb0f686" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-511.json b/BIPs/2023/2023-W51/BIP-511.json new file mode 100644 index 000000000..42c683b60 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-511.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703085829236, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa1d5b81d0024809faa278ab72fe3d2fb467dd28b", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-511.report.txt b/BIPs/2023/2023-W51/BIP-511.report.txt new file mode 100644 index 000000000..35f4aba9a --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-511.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2023-W51/BIP-511.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8f60085f9908afba50d76dfe5b746fbb882cb5f3` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xb06bfbd7b50f80c8d9da57fc4cf5cbd5b3e2f14800000000000000000000064d | pxETH/frxETH | 0xa1d5b81d0024809faa278ab72fe3d2fb467dd28b | "pxETH(0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6)", | "0x0000000000000000000000000000000000000000", | BIP-511 | 0 | +| | pool_address: 0xB06bFBD7b50F80c8d9dA57Fc4cF5CBD5B3E2f148 | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "frxETH(0x5E8422345238F34275888049021821E8E08CAa1f)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "pxETH/frxETH(0xB06bFBD7b50F80c8d9dA57Fc4cF5CBD5B3E2f148)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-512.json b/BIPs/2023/2023-W51/BIP-512.json new file mode 100644 index 000000000..e1cf641d7 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-512.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703086092838, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdee29b7b6dF3576280bFBbC088ee9eBAA767C0Bd", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-512.report.txt b/BIPs/2023/2023-W51/BIP-512.report.txt new file mode 100644 index 000000000..ed2df6e56 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-512.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2023-W51/BIP-512.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `09b3bb9d1292b6089f9e53dd254d0e3897768f6e` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x88794c65550deb6b4087b7552ecf295113794410000000000000000000000648 | pxETH/wETH | 0xdee29b7b6dF3576280bFBbC088ee9eBAA767C0Bd | "pxETH(0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6)", | "0x0000000000000000000000000000000000000000", | BIP-512 | 0 | +| | pool_address: 0x88794C65550DeB6b4087B7552eCf295113794410 | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "pxETH/wETH(0x88794C65550DeB6b4087B7552eCf295113794410)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-513.json b/BIPs/2023/2023-W51/BIP-513.json new file mode 100644 index 000000000..37b4b6362 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-513.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703086650513, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa7d09b2b22232e0162c7f945099648f7e91e1a4aee3d3fc61155d3df7530ee1d" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "20000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "19950000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-513.report.txt b/BIPs/2023/2023-W51/BIP-513.report.txt new file mode 100644 index 000000000..aed760be2 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-513.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2023-W51/BIP-513.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `05ae2edecffc9aebbc1f8f5421e5d42dc1dba524` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20000.0 (RAW: 20000000000) | BIP-513 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 19950.0 (RAW: 19950000000000000000000) | BIP-513 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-514.json b/BIPs/2023/2023-W51/BIP-514.json new file mode 100644 index 000000000..22ccd82c7 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-514.json @@ -0,0 +1,73 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703096210660, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xb02116fe7b19564830e62803c707c9f1485f57800b6f28ceab0ccf590edb58cf" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "108095000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x166f54F44F271407f24AA1BE415a730035637325", + "amount": "35718000000000000000000" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "20", + "data": null, + "contractMethod": { "inputs": [], "name": "deposit", "payable": true }, + "contractInputsValues": {} + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "dst", "type": "address" }, + { "name": "wad", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0x166f54F44F271407f24AA1BE415a730035637325", + "wad": "20000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-514.report.txt b/BIPs/2023/2023-W51/BIP-514.report.txt new file mode 100644 index 000000000..b4b282130 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-514.report.txt @@ -0,0 +1,26 @@ +FILENAME: `BIPs/2023-W51/BIP-514.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `21e363206c36bba3c3e66568c8accd544b2b0613` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+===============================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 108095.0 (RAW: 108095000000) | BIP-514 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 35718.0 (RAW: 35718000000000000000000) | BIP-514 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 20.0 (RAW: 20000000000000000000) | BIP-514 | 3 | ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2023-W51/BIP-514.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `21e363206c36bba3c3e66568c8accd544b2b0613` +CHAIN(S): `mainnet` +``` ++-----------+----------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==========+==============+============+ +| deposit | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 20 | "N/A" | BIP-514 | N/A | ++-----------+----------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-515.json b/BIPs/2023/2023-W51/BIP-515.json new file mode 100644 index 000000000..5bdf1894a --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-515.json @@ -0,0 +1,515 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703102274549, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5f69b3800ff7fa1bcb74090e16bd4b42a710749e", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5d7c0521db5a6f37ad839d0eefbaf8205389add8", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe5f24cd43f77fadf4db33dab44eb25774159ac66", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2c3ef846fc3b5a4820b2d3462c9300e6d8845055", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc6c69b977329d93e34fdbd2c37ab8e70b8decfcd", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf6fa773b5e54f4bd20e09d806ab483d58dd55dcb", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x16289f675ca54312a8fcf99341e7439982888077", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x605ea53472a496c3d483869fe8f355c12e861e19", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x75cacebb5b4a73a530edcdfde7cffbfea44c026e", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xaf3c3dab54ca15068d09c67d128344916e177ca9", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcd8bb8cebc794842967849255c234e7b7619a518", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3f29e69955e5202759208dd0c5e0ba55ff934814", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x31f99c542cbe456fcbbe99d4bf849af4d7fb5405", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf0d887c1f5996c91402eb69ab525f028dd5d7578", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x0bfcf593c149ddbeedb190667d24d30d2e38af73", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5f2c3422a675860f0e019ddd78c6fa681be84bd4", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x81c452e84b103555c2dd2dec0bfabc0c4d6b3065", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xee707ae5500dd9072ac0dab1170dd16d9addd68f", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2dc55e84baf47296c2cf87b4ec3eb66fd7665611", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x35e5100c90c1d657942ec5ec4cbe38c53845245f", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-515.report.txt b/BIPs/2023/2023-W51/BIP-515.report.txt new file mode 100644 index 000000000..884e3f742 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-515.report.txt @@ -0,0 +1,49 @@ +FILENAME: `BIPs/2023-W51/BIP-515.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `a9da7747d44ae4dec9d6590d75e1be827390b5bb` +CHAIN(S): `optimism, mainnet, arbitrum, polygon, base` +``` ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+===========================+======+============================================+=======+========+====================+=========+============+=========================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x8c89fb53d4d83173dd65b7a94569558ce393460f000000000000000000000c26 | FRAX-USDC-BPT | 5000 | 0x5f69b3800ff7fa1bcb74090e16bd4b42a710749e | 0.04% | 100.0% | L0 sidechain | BIP-515 | 0 | ['USDC(0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174)', 'FRAX(0x45c32fA6DF82ead1e2EF74d17b76547EDdFaFF89)', 'FRAX-USDC-BPT(0x8C89fb53d4D83173Dd65B7a94569558Ce393460F)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb9debddf1d894c79d2b2d09f819ff9b856fca55200000000000000000000062a | weETH-WETH-BPT | 600 | 0x5d7c0521db5a6f37ad839d0eefbaf8205389add8 | 0.04% | 100.0% | mainnet | BIP-515 | 1 | ['weETH-WETH-BPT(0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x8eb6c82c3081bbbd45dcac5afa631aac53478b7c000100000000000000000270 | 40WBTC-40DIGG-20graviAURA | N/A | 0xe5f24cd43f77fadf4db33dab44eb25774159ac66 | 1.0% | 2.0% | mainnet | BIP-515 | 2 | ['WBTC(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599)', 'DIGG(0x798D1bE841a82a273720CE31c822C61a67a601C3)', 'graviAURA(0xBA485b556399123261a5F9c95d413B4f93107407)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x990a0f03c3ee397cafda61cad277de18280751fd0002000000000000000000b6 | 50WETH-50TAG | N/A | 0x2c3ef846fc3b5a4820b2d3462c9300e6d8845055 | 1.0% | 2.0% | L0 sidechain | BIP-515 | 3 | ['WETH(0x4200000000000000000000000000000000000006)', 'TAG(0x7905EA12CC81a215A5F1D0F46DF73a53E19E9264)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x58b645fa247b60f2cb896991fd8956146c9fcb4a00020000000000000000061d | 80mevETH/20FOLD | N/A | 0xc6c69b977329d93e34fdbd2c37ab8e70b8decfcd | 0.3% | 100.0% | mainnet | BIP-515 | 4 | ['mevETH(0x24Ae2dA0f361AA4BE46b48EB19C91e02c5e4f27E)', 'FOLD(0xd084944d3c05CD115C09d072B9F44bA3E0E45921)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x52e281318fed4efffb8e46c0847a8f9b71a461a8000200000000000000000018 | 50tBTC-50WETH | N/A | 0xf6fa773b5e54f4bd20e09d806ab483d58dd55dcb | 0.3% | 100.0% | L0 sidechain | BIP-515 | 5 | ['tBTC(0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b)', 'WETH(0x4200000000000000000000000000000000000006)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x513cdee00251f39de280d9e5f771a6eafebcc88e000000000000000000000a6b | 2eur (PAR) | 200 | 0x16289f675ca54312a8fcf99341e7439982888077 | 0.05% | 2.0% | L0 sidechain | BIP-515 | 6 | ['jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)', '2eur (PAR)(0x513CdEE00251F39DE280d9E5f771A6eaFebCc88E)', 'PAR(0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x072f14b85add63488ddad88f855fda4a99d6ac9b000200000000000000000027 | B-50SNX-50WETH | N/A | 0x605ea53472a496c3d483869fe8f355c12e861e19 | 1.0% | N/A | mainnet | BIP-515 | 7 | ['SNX(0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x48607651416a943bf5ac71c41be1420538e78f87000200000000000000000327 | 50Silo-50WETH | N/A | 0x75cacebb5b4a73a530edcdfde7cffbfea44c026e | 0.3% | 2.0% | mainnet | BIP-515 | 8 | ['Silo(0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x99a14324cfd525a34bbc93ac7e348929909d57fd00020000000000000000030e | 50WETH-50FOLD | N/A | 0xaf3c3dab54ca15068d09c67d128344916e177ca9 | 1.0% | N/A | mainnet | BIP-515 | 9 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'FOLD(0xd084944d3c05CD115C09d072B9F44bA3E0E45921)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd278166dabaf26707362f7cfdd204b277fd2a4600002000000000000000004f6 | 50USH-50WETH | N/A | 0xcd8bb8cebc794842967849255c234e7b7619a518 | 0.5% | 10.0% | mainnet | BIP-515 | 10 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'USH(0xE60779CC1b2c1d0580611c526a8DF0E3f870EC48)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xb460daa847c45f1c4a41cb05bfb3b51c92e41b36000200000000000000000194 | 20WBTC-80BADGER | N/A | 0x3f29e69955e5202759208dd0c5e0ba55ff934814 | 0.3% | 2.0% | mainnet | BIP-515 | 11 | ['WBTC(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599)', 'BADGER(0x3472A5A71965499acd81997a54BBA8D852C6E53d)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd80ef9fabfdc3b52e17f74c383cf88ee2efbf0b6000000000000000000000a65 | B-tetuQi-Stable | 50 | 0x31f99c542cbe456fcbbe99d4bf849af4d7fb5405 | 0.3% | 2.0% | L0 sidechain | BIP-515 | 12 | ['tetuQi(0x4Cd44ced63d9a6FEF595f6AD3F7CED13fCEAc768)', 'QI(0x580A84C73811E1839F75d86d75d88cCa0c241fF4)', 'B-tetuQi-Stable(0xD80Ef9FabfdC3B52e17f74c383Cf88ee2efBf0b6)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xe22483774bd8611be2ad2f4194078dac9159f4ba0000000000000000000008f0 | 2BRL (BRZ) | 200 | 0xf0d887c1f5996c91402eb69ab525f028dd5d7578 | 0.05% | 2.0% | ChildChainStreamer | BIP-515 | 13 | ['BRZ(0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f)', '2BRL (BRZ)(0xE22483774bd8611bE2Ad2F4194078DaC9159F4bA)', 'jBRL(0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd20f6f1d8a675cdca155cb07b5dc9042c467153f0002000000000000000000bc | BPT-BOATH | N/A | 0x0bfcf593c149ddbeedb190667d24d30d2e38af73 | 0.5% | 2.0% | L0 sidechain | BIP-515 | 14 | ['OATH(0x39FdE572a18448F8139b7788099F0a0740f51205)', 'WETH(0x4200000000000000000000000000000000000006)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd1ec5e215e8148d76f4460e4097fd3d5ae0a35580002000000000000000003d3 | 50OHM-50WETH | N/A | 0x5f2c3422a675860f0e019ddd78c6fa681be84bd4 | 0.3% | N/A | mainnet | BIP-515 | 15 | ['OHM(0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5)', 'WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xd590931466cdd6d488a25da1e89dd0539723800c00020000000000000000042b | 50RBN-50USDC | N/A | 0x81c452e84b103555c2dd2dec0bfabc0c4d6b3065 | 1.0% | N/A | mainnet | BIP-515 | 16 | ['RBN(0x6123B0049F904d730dB3C36a31167D9d4121fA6B)', 'USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x47e1cf97a0586367349a14306a65f54ba0b8f1b60002000000000000000005cd | 20WETH-80ALTR | N/A | 0xee707ae5500dd9072ac0dab1170dd16d9addd68f | 1.0% | 2.0% | mainnet | BIP-515 | 17 | ['WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)', 'ALTR(0xD1ffCacFc630CE68d3cd3369F5db829a3ed01fE2)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x26cc136e9b8fd65466f193a8e5710661ed9a98270002000000000000000005ad | 80BETS/20wstETH | N/A | 0x2dc55e84baf47296c2cf87b4ec3eb66fd7665611 | 0.5% | 2.0% | mainnet | BIP-515 | 18 | ['wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'BETS(0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x76b9cbd55fd6776c2de18738a04b0f9da56ce6ca00020000000000000000048d | 80BETS/20wstETH | N/A | 0x35e5100c90c1d657942ec5ec4cbe38c53845245f | 1.0% | 2.0% | L0 sidechain | BIP-515 | 19 | ['wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'BETS(0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5)'] | ++--------------------------+--------------------------------------------------------------------+---------------------------+------+--------------------------------------------+-------+--------+--------------------+---------+------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-516.json b/BIPs/2023/2023-W51/BIP-516.json new file mode 100644 index 000000000..59326bdfb --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-516.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703104627590, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6aad8e651d71fcecea0ff43bab49138f7bcd1efebbb2ebf0e03a7485b8311b91" + }, + "transactions": [ + { + "to": "0x8f4205e1604133d1875a3E771AE7e4F2b0865639", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "136955000000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-516.report.txt b/BIPs/2023/2023-W51/BIP-516.report.txt new file mode 100644 index 000000000..a0c158bda --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-516.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2023-W51/BIP-516.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `99f8b3df6ca88aff6687814ee26be378c0038f42` +CHAIN(S): `mainnet` +``` ++------------+--------------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+========================================================+=========================================================+==========================================+=========+============+ +| transfer | 50N/A-50N/A:0x8f4205e1604133d1875a3E771AE7e4F2b0865639 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 136955.0 (RAW: 136955000000000000000000) | BIP-516 | 0 | ++------------+--------------------------------------------------------+---------------------------------------------------------+------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-517.json b/BIPs/2023/2023-W51/BIP-517.json new file mode 100644 index 000000000..495316d0c --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-517.json @@ -0,0 +1,63 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703106144, + "meta": { + "name": "Transactions Batch", + "description": "Fund grants for Q1 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "35300000000" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "wad": "500000000000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-517.report.txt b/BIPs/2023/2023-W51/BIP-517.report.txt new file mode 100644 index 000000000..5b9f2a63e --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-517.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2023-W51/BIP-517.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e4c4a72235010298a6a15fe359db114a2d513644` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+-------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+===============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 35300.0 (RAW: 35300000000) | BIP-517 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+-------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 0.5 (RAW: 500000000000000000) | BIP-517 | 1 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+-------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-518-1.json b/BIPs/2023/2023-W51/BIP-518-1.json new file mode 100644 index 000000000..dadaa80d7 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-518-1.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107040104, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1f440bb1b31ed23dce797e5957ac2a5749add1074f8540f0ff0a158e4b248003" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-518-1.report.txt b/BIPs/2023/2023-W51/BIP-518-1.report.txt new file mode 100644 index 000000000..b14f70f62 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-518-1.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2023-W51/BIP-518-1.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `73f169f9819085d69691fab60c6dbcd3db296174` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-519-1.json b/BIPs/2023/2023-W51/BIP-519-1.json new file mode 100644 index 000000000..eaa534ca3 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-519-1.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107142345, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa1bc4667c4f7289ebd0f1a07a44e791e2bc9883cf3ee0650c966b12a685d8721" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-519-1.report.txt b/BIPs/2023/2023-W51/BIP-519-1.report.txt new file mode 100644 index 000000000..6e54b4f2f --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-519-1.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2023-W51/BIP-519-1.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `70da7b168a7d20d13c94ec02d6a5dcd3b8c0534e` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W51/BIP-523.json b/BIPs/2023/2023-W51/BIP-523.json new file mode 100644 index 000000000..9b281abc5 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-523.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703697640472, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8F44a8Cfb7FE682295Fa663348060533732F437C", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2023/2023-W51/BIP-523.report.txt b/BIPs/2023/2023-W51/BIP-523.report.txt new file mode 100644 index 000000000..8c6fd3842 --- /dev/null +++ b/BIPs/2023/2023-W51/BIP-523.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2023-W51/BIP-523.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0fe056b5c292e0be50371c5ac5e88a2bdc7801cd` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x39a5bfd5fe32026cd93d81859b4b38cea78d82200002000000000000000004e0 | 80LUMIN-20rETH | 0x8F44a8Cfb7FE682295Fa663348060533732F437C | "LUMIN(0x422e604492c9Bd9C43F03aD1F78C37968303ebD3)", | "0x0000000000000000000000000000000000000000", | BIP-523 | 0 | +| | pool_address: 0x39a5BfD5FE32026CD93D81859B4b38CEA78D8220 | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2023/2023-W52/.gitignore b/BIPs/2023/2023-W52/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/2024-W10/BIP-545.json b/BIPs/2024-W10/BIP-545.json new file mode 100644 index 000000000..84b135db7 --- /dev/null +++ b/BIPs/2024-W10/BIP-545.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1707892451409, + "meta": { + "name": "Transactions Batch", + "description": "Fund Hypernative in 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5CA24e2A586834A7B96216D68b26A82405e3DC15", + "value": "60000000000" + } + } + ] +} diff --git a/BIPs/2024-W10/BIP-545.report.txt b/BIPs/2024-W10/BIP-545.report.txt new file mode 100644 index 000000000..3119d7880 --- /dev/null +++ b/BIPs/2024-W10/BIP-545.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W10/BIP-545.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `f858f305b968a1d3b7cfc71213774e87e2c4e10d` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4d0b4491-7954-43d8-8f4f-2610b5b14367) +``` ++------------+-------------------------------------------------+------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+========================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/hypernative_payments:0x5CA24e2A586834A7B96216D68b26A82405e3DC15 | 60000.0 (RAW: 60000000000) | BIP-545 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W10/BIP-552-ARB.json b/BIPs/2024-W10/BIP-552-ARB.json new file mode 100644 index 000000000..918d41102 --- /dev/null +++ b/BIPs/2024-W10/BIP-552-ARB.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1709111588977, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0xd9726dfa69578bf8467ccc22eb9a0e499a66b9d8a2e14314687cb605e9f7437f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2024-W10/BIP-552-ARB.report.txt b/BIPs/2024-W10/BIP-552-ARB.report.txt new file mode 100644 index 000000000..eb1e00f2f --- /dev/null +++ b/BIPs/2024-W10/BIP-552-ARB.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W10/BIP-552-ARB.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `4b19b0bad18440fb5c291da36a7e3295b6c51847` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ad06a6c7-79e3-4a14-a075-19e6c1c9057b) +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | !!NOT FOUND!! | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x93b1b7dba9fb074b573d5edb3c983e0490a00925f709289485f0c75988e100cf | BIP-552 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W10/BIP-552-GNOSIS.json b/BIPs/2024-W10/BIP-552-GNOSIS.json new file mode 100644 index 000000000..bdf97630c --- /dev/null +++ b/BIPs/2024-W10/BIP-552-GNOSIS.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1709111765877, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0x3ee59dda9cc71943917cbbbb222a6039c7f372e7839bea097d4e3db811353940" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2024-W10/BIP-552-GNOSIS.report.txt b/BIPs/2024-W10/BIP-552-GNOSIS.report.txt new file mode 100644 index 000000000..3e61fe947 --- /dev/null +++ b/BIPs/2024-W10/BIP-552-GNOSIS.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W10/BIP-552-GNOSIS.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `4b19b0bad18440fb5c291da36a7e3295b6c51847` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/aad86dd6-5899-440d-a651-824432e86d60) +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | !!NOT FOUND!! | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xf6c9a5b5acca77f76aed5abd6f810c52c3ff5f4a8a40ee9e1bc09f85795e73da | BIP-552 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W10/BIP-552-POLY.json b/BIPs/2024-W10/BIP-552-POLY.json new file mode 100644 index 000000000..c924160ae --- /dev/null +++ b/BIPs/2024-W10/BIP-552-POLY.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1709111664447, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0x113222e802e505ae7b954dd96aeb856f42c14b57de3e5159978e5d89cf2cf377" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2024-W10/BIP-552-POLY.report.txt b/BIPs/2024-W10/BIP-552-POLY.report.txt new file mode 100644 index 000000000..6a66fd898 --- /dev/null +++ b/BIPs/2024-W10/BIP-552-POLY.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W10/BIP-552-POLY.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `4b19b0bad18440fb5c291da36a7e3295b6c51847` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/af17d561-86fb-42b7-93ba-e5d058729960) +``` ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+===============+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | !!NOT FOUND!! | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x25995e0bfb9b837ed9e3ed24df7d42689be47c45073cc1953bb0836b292faa13 | BIP-552 | 0 | ++----------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W10/BIP-553.json b/BIPs/2024-W10/BIP-553.json new file mode 100644 index 000000000..c826d43f5 --- /dev/null +++ b/BIPs/2024-W10/BIP-553.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1709112564973, + "meta": { + "name": "Transactions Batch", + "description": "Add new KEP:rsETH gauge with 2% cap", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W10/BIP-553.report.txt b/BIPs/2024-W10/BIP-553.report.txt new file mode 100644 index 000000000..1d3e7442f --- /dev/null +++ b/BIPs/2024-W10/BIP-553.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W10/BIP-553.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4574f799f532921b55e2f6214b63bdf686ba8b8e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/62c23612-58be-4fb3-841f-1b480026e1b2) +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672 | 50KEP/50rsETH | 0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1 | "KEP(0x8E3A59427B1D87Db234Dd4ff63B25E4BF94672f4)", | "0x0000000000000000000000000000000000000000", | BIP-553 | 0 | +| | pool_address: 0xFf42A9AF956617e4C3532eF2fC7567465EFE4909 | fee: 1.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "rsETH(0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7)" | "0x746df66bc1Bb361b9E8E2a794C299c3427976e6C" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W10/BIP-554.json b/BIPs/2024-W10/BIP-554.json new file mode 100644 index 000000000..b0c4fae6b --- /dev/null +++ b/BIPs/2024-W10/BIP-554.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1709193082529, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB5dCdE9aDCace88705658Aa276C557afC011FE55", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W10/BIP-554.report.txt b/BIPs/2024-W10/BIP-554.report.txt new file mode 100644 index 000000000..63772ab80 --- /dev/null +++ b/BIPs/2024-W10/BIP-554.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W10/BIP-554.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `5f160322111e3f00e6af01635214311f58006824` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/da7fd38d-aae2-4843-a8b9-3a294fb62ba5) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d | weETH/rETH | 0xB5dCdE9aDCace88705658Aa276C557afC011FE55 | "weETH(0x35751007a407ca6FEFfE80b3cB397736D2cf4dbe)", | "0xCd9e3fb32c8F258555b8292531112bBb5B87E2F4", | BIP-554 | 0 | +| | pool_address: 0x4B3af34eB1135D59df8b9CdC2FF07d30D05334C4 | fee: 0.04, a-factor: 600 | Style: L0 sidechain, cap: 10.0% | "weETH/rETH(0x4B3af34eB1135D59df8b9CdC2FF07d30D05334C4)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W10/BIP-555.json b/BIPs/2024-W10/BIP-555.json new file mode 100644 index 000000000..82c6a66bd --- /dev/null +++ b/BIPs/2024-W10/BIP-555.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1709193300921, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W10/BIP-555.report.txt b/BIPs/2024-W10/BIP-555.report.txt new file mode 100644 index 000000000..7ca4b5f06 --- /dev/null +++ b/BIPs/2024-W10/BIP-555.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W10/BIP-555.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3cbb8dcaf1c645a03c5e87cfaa7a8b5a78f43717` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b101ab32-0b8c-4f5d-95ca-6189d0601cac) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c | pyUSD/sDOLA BSP | 0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f | "pyUSD/sDOLA BSP(0x09B03b7cBB19b3daE94F884cF60dBc3c99a3947b)", | "0x0000000000000000000000000000000000000000", | BIP-555 | 0 | +| | pool_address: 0x09B03b7cBB19b3daE94F884cF60dBc3c99a3947b | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "PYUSD(0x6c3ea9036406852006290770BEdFcAbA0e23A0e8)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sDOLA(0xb45ad160634c528Cc3D2926d9807104FA3157305)" | "0xD02011C6C8AEE310D0aA42AA98BFE9DCa547fCc0" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W11/BIP-518-4.json b/BIPs/2024-W11/BIP-518-4.json new file mode 100644 index 000000000..dadaa80d7 --- /dev/null +++ b/BIPs/2024-W11/BIP-518-4.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107040104, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1f440bb1b31ed23dce797e5957ac2a5749add1074f8540f0ff0a158e4b248003" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + } + } + ] +} diff --git a/BIPs/2024-W11/BIP-518-4.report.txt b/BIPs/2024-W11/BIP-518-4.report.txt new file mode 100644 index 000000000..83f9f8479 --- /dev/null +++ b/BIPs/2024-W11/BIP-518-4.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W11/BIP-518-4.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `73f169f9819085d69691fab60c6dbcd3db296174` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W11/BIP-519-4.json b/BIPs/2024-W11/BIP-519-4.json new file mode 100644 index 000000000..eaa534ca3 --- /dev/null +++ b/BIPs/2024-W11/BIP-519-4.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107142345, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa1bc4667c4f7289ebd0f1a07a44e791e2bc9883cf3ee0650c966b12a685d8721" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2024-W11/BIP-519-4.report.txt b/BIPs/2024-W11/BIP-519-4.report.txt new file mode 100644 index 000000000..09a3cf97a --- /dev/null +++ b/BIPs/2024-W11/BIP-519-4.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W11/BIP-519-4.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `70da7b168a7d20d13c94ec02d6a5dcd3b8c0534e` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W11/BIP-551.json b/BIPs/2024-W11/BIP-551.json new file mode 100644 index 000000000..3f123478a --- /dev/null +++ b/BIPs/2024-W11/BIP-551.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1709110577454, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xca94d855b2db96ef3d9e7c14d53801d78ed4712b84273141d1b20ae38fd2f59e" + }, + "transactions": [ + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_relock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "processExpiredLocks", + "payable": false + }, + "contractInputsValues": { + "_relock": "true" + } + }, + { + "to": "0xFd72170339AC6d7bdda09D1eACA346B21a30D422", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_lock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "_lock": "true" + } + } + ] +} diff --git a/BIPs/2024-W11/BIP-551.report.txt b/BIPs/2024-W11/BIP-551.report.txt new file mode 100644 index 000000000..23761298e --- /dev/null +++ b/BIPs/2024-W11/BIP-551.report.txt @@ -0,0 +1,18 @@ +FILENAME: `BIPs/2024-W11/BIP-551.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e10ebc5d5698ba2cea575ea2dd2f3d618fc55b40` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e2b05c4a-a577-4698-8c18-d5f640b3a949) +``` ++---------------------+----------------------------------------------------------+---------+---------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=====================+==========================================================+=========+=====================+==============+============+ +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-551 | N/A | +| | | | "_relock": "true" | | | +| | | | } | | | ++---------------------+----------------------------------------------------------+---------+---------------------+--------------+------------+ +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (Not Found) | 0 | { | BIP-551 | N/A | +| | | | "_lock": "true" | | | +| | | | } | | | ++---------------------+----------------------------------------------------------+---------+---------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W11/BIP-556.json b/BIPs/2024-W11/BIP-556.json new file mode 100644 index 000000000..10674e209 --- /dev/null +++ b/BIPs/2024-W11/BIP-556.json @@ -0,0 +1,22 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1709210130381, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xf7c0ad5dd6aa7fd62d45e2def0ca8a746dba44ad7eb15331919c852af637b933" + }, + "transactions": [ + { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "50000000000000000000", + "data": null, + "contractMethod": null, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W11/BIP-556.report.txt b/BIPs/2024-W11/BIP-556.report.txt new file mode 100644 index 000000000..76d7381e8 --- /dev/null +++ b/BIPs/2024-W11/BIP-556.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W11/BIP-556.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `81ff416c25a96e87e24f6e80319c4e5617ab2456` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d7e37810-2de5-4b5c-af28-0bd8dd06d165) +``` ++-----------+-----------------------------------------------------------------+----------------------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=================================================================+======================+==========+==============+============+ +| !!N/A!! | 0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops) | 50000000000000000000 | "N/A" | BIP-556 | N/A | ++-----------+-----------------------------------------------------------------+----------------------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W11/BIP-557.json b/BIPs/2024-W11/BIP-557.json new file mode 100644 index 000000000..6cc8eeb10 --- /dev/null +++ b/BIPs/2024-W11/BIP-557.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1709709481417, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7E1726D24B1CD3dFcd713f67a83ccEaa6108d069", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W11/BIP-557.report.txt b/BIPs/2024-W11/BIP-557.report.txt new file mode 100644 index 000000000..6c02f1485 --- /dev/null +++ b/BIPs/2024-W11/BIP-557.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W11/BIP-557.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `57b28c93fe34277704247ca1614225cde86b952e` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1a78149c-b7aa-439b-9d4c-ff5061536df2) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xe906d4c4fc4c3fe96560de86b4bf7ed89af9a69a000200000000000000000126 | bpt-fraxsym | 0x7E1726D24B1CD3dFcd713f67a83ccEaa6108d069 | "sFRAX(0x2Dd1B4D4548aCCeA497050619965f91f78b3b532)", | | BIP-557 | 0 | +| | pool_address: 0xE906d4C4fC4c3Fe96560De86B4bf7eD89aF9A69a | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "FRAX(0x2E3D870790dC77A83DD1d18184Acc7439A53f475)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2024-W12/BIP-559.json b/BIPs/2024-W12/BIP-559.json new file mode 100644 index 000000000..5d253a008 --- /dev/null +++ b/BIPs/2024-W12/BIP-559.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710398209243, + "meta": { + "name": "Transactions Batch", + "description": "Add ezETH-WETH gauge Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W12/BIP-559.report.txt b/BIPs/2024-W12/BIP-559.report.txt new file mode 100644 index 000000000..c818ccb81 --- /dev/null +++ b/BIPs/2024-W12/BIP-559.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W12/BIP-559.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7318df846704047c91c2c4ab346bf65c5afb0706` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cf03f466-22ca-4d51-a341-9e53b1309dab) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | ezETH/wstETH | 0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1 | "ezETH(0x2416092f143378750bb29b79eD961ab195CcEea5)", | "0xf25484650484DE3d554fB0b7125e7696efA4ab99", | BIP-559 | 0 | +| | pool_address: 0xB61371Ab661B1ACec81C699854D2f911070C059E | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "ezETH/wstETH(0xB61371Ab661B1ACec81C699854D2f911070C059E)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W13/BIP-560.json b/BIPs/2024-W13/BIP-560.json new file mode 100644 index 000000000..51b38f11b --- /dev/null +++ b/BIPs/2024-W13/BIP-560.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710399319766, + "meta": { + "name": "Transactions Batch", + "description": "Enable GEM/WETH Single recipient gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x52980e7825151d42a7a97719d47695b12236f93e44b6ade382c66e5459e8ecd4" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x24B7AEEEFDB612D43F018Cbc9c325680f61Ec96d", + "gaugeType": "EthereumSingleRecipientGauge" + } + } + ] +} diff --git a/BIPs/2024-W13/BIP-561.json b/BIPs/2024-W13/BIP-561.json new file mode 100644 index 000000000..2b90af8da --- /dev/null +++ b/BIPs/2024-W13/BIP-561.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710938056931, + "meta": { + "name": "Transactions Batch", + "description": "add genETH wstETH gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7d631e72eb15285Da57eeaf40a971724A94ced05", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W13/BIP-561.report.txt b/BIPs/2024-W13/BIP-561.report.txt new file mode 100644 index 000000000..3067db6cd --- /dev/null +++ b/BIPs/2024-W13/BIP-561.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W13/BIP-561.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `2d6fbe7fd5aab1cd65f95fe533da9a5a96d43d25` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ab18e8f5-1bde-432b-aef2-62657bdd0350) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b | genETH/wstETH | 0x7d631e72eb15285Da57eeaf40a971724A94ced05 | "genETH/wstETH(0x6AA5a6b9257CA6e18b2da94e1a5FbE57ce2947cA)", | "0x0000000000000000000000000000000000000000", | BIP-561 | 0 | +| | pool_address: 0x6AA5a6b9257CA6e18b2da94e1a5FbE57ce2947cA | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "genETH(0xf073bAC22DAb7FaF4a3Dd6c6189a70D54110525C)" | "0xC29783738A475112Cafe58433Dd9D19F3a406619" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W13/BIP-562A.json b/BIPs/2024-W13/BIP-562A.json new file mode 100644 index 000000000..dd15f1d4c --- /dev/null +++ b/BIPs/2024-W13/BIP-562A.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710938612992, + "meta": { + "name": "Transactions Batch", + "description": "Add rETH/WETH gauge zkEVM", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF27B784Aa66D5B27BFfd247e32C000C86511C2B2", + "gaugeType": "PolygonZkEvm" + } + } + ] +} diff --git a/BIPs/2024-W13/BIP-562A.report.txt b/BIPs/2024-W13/BIP-562A.report.txt new file mode 100644 index 000000000..05abfe8d0 --- /dev/null +++ b/BIPs/2024-W13/BIP-562A.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W13/BIP-562A.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `59ade74e64302ee7d2e3acb0fea95b0614f23178` +CHAIN(S): `zkevm` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/854f2057-6955-4f05-a911-efcf2d953acb) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x9f826c576b1f821df31ca6d58c9443db25a81d65000200000000000000000064 | ECLP-wETH-rETH | 0xF27B784Aa66D5B27BFfd247e32C000C86511C2B2 | "WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)", | | BIP-562 | 0 | +| | pool_address: 0x9F826c576b1F821dF31Ca6d58c9443dB25a81D65 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "rETH(0xb23C20EFcE6e24Acca0Cef9B7B7aA196b84EC942)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2024-W13/BIP-563.json b/BIPs/2024-W13/BIP-563.json new file mode 100644 index 000000000..5cd8f8475 --- /dev/null +++ b/BIPs/2024-W13/BIP-563.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710939427345, + "meta": { + "name": "Transactions Batch", + "description": "Add Syno-WETH guage Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB9bB09ADCBcaE06F580DA494EE6987dbB083b45f", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W13/BIP-563.report.txt b/BIPs/2024-W13/BIP-563.report.txt new file mode 100644 index 000000000..ed8ea6cbe --- /dev/null +++ b/BIPs/2024-W13/BIP-563.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W13/BIP-563.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `fa399544855c418625389ac57d4d34ea2175be1d` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/54a132f7-7f35-45dc-a855-037431c08c35) +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xeb3e64ad9314d20bf943ac72fb69f272603f9cce0002000000000000000004f5 | 80SYNO-20WETH | 0xB9bB09ADCBcaE06F580DA494EE6987dbB083b45f | "SYNO(0x577Fd586c9E6BA7f2E85E025D5824DBE19896656)", | "0x0000000000000000000000000000000000000000", | BIP-563 | 0 | +| | pool_address: 0xEB3E64Ad9314D20bf943ac72Fb69F272603f9cce | fee: 0.5, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W13/BIP-564.json b/BIPs/2024-W13/BIP-564.json new file mode 100644 index 000000000..fc39ab56c --- /dev/null +++ b/BIPs/2024-W13/BIP-564.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710939595281, + "meta": { + "name": "Transactions Batch", + "description": "Add E-CLP GHO/pyUSD gauge on mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb71C90F165cf99d4004499fF058E265Aa68fAC85", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W13/BIP-564.report.txt b/BIPs/2024-W13/BIP-564.report.txt new file mode 100644 index 000000000..c5522c8b1 --- /dev/null +++ b/BIPs/2024-W13/BIP-564.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W13/BIP-564.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `53382de5b782035a2f3057a9c2c34af825bcfb31` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/122ffbdb-22d5-4c37-888d-c915f9c2e2c3) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x4c4ed61d81f531dcb34ad4d498548917aba3d193000200000000000000000680 | ECLP-GHO-pyUSD | 0xb71C90F165cf99d4004499fF058E265Aa68fAC85 | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | | BIP-564 | 0 | +| | pool_address: 0x4c4Ed61D81F531Dcb34Ad4d498548917ABA3D193 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "PYUSD(0x6c3ea9036406852006290770BEdFcAbA0e23A0e8)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2024-W13/BIP-570.json b/BIPs/2024-W13/BIP-570.json new file mode 100644 index 000000000..3790146f2 --- /dev/null +++ b/BIPs/2024-W13/BIP-570.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1711006659282, + "meta": { + "name": "Transactions Batch", + "description": "Add Avalanche community gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2911d599C3494A416B27c144E4084a6617cA4Ff0", + "gaugeType": "Avalanche" + } + } + ] +} diff --git a/BIPs/2024-W13/BIP-570.report.txt b/BIPs/2024-W13/BIP-570.report.txt new file mode 100644 index 000000000..5a49f5872 --- /dev/null +++ b/BIPs/2024-W13/BIP-570.report.txt @@ -0,0 +1,18 @@ +FILENAME: `BIPs/2024-W13/BIP-570.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e812dce4e4faa1858f896bca52aa134b5f2623bb` +CHAIN(S): `avax` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ba5c3350-bb6d-4183-a0b6-1f3e1cad9e52) +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+==========================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x0df1be54b29aa9828bea1de6a6dfe3d03ec63082000100000000000000000047 | AFCC | 0x2911d599C3494A416B27c144E4084a6617cA4Ff0 | "KIMBO(0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1)", | "0x0000000000000000000000000000000000000000", | BIP-570 | 0 | +| | pool_address: 0x0df1Be54B29aA9828Bea1De6A6DFE3d03EC63082 | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "COQ(0x420FcA0121DC28039145009570975747295f2329)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "TECH(0x5Ac04b69bDE6f67C0bd5D6bA6fD5D816548b066a)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "NOCHILL(0xAcFb898Cff266E53278cC0124fC2C7C94C8cB9a5)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "WAVAX(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "GEC(0xE8385CECb013561b69bEb63FF59f4d10734881f3)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+----------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W14/BIP-547B.json b/BIPs/2024-W14/BIP-547B.json new file mode 100644 index 000000000..6e2587a6a --- /dev/null +++ b/BIPs/2024-W14/BIP-547B.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1707894139781, + "meta": { + "name": "Transactions Batch", + "description": "Kill old rETH gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x00b9bcd17cb049739d25fd7f826caa2e23b05620", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x49f530b45ae792cdf5cbd5d25c5a9b9e59c6c3b8", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x56c0626e6e3931af90ebb679a321225180d4b32b", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-547B.report.txt b/BIPs/2024-W14/BIP-547B.report.txt new file mode 100644 index 000000000..bdda7dac5 --- /dev/null +++ b/BIPs/2024-W14/BIP-547B.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/2024-W14/BIP-547B.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `8abd7d5a5d22fdeeed5b4044a44e36fda465a6fe` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/2ec2824b-8f09-4c2f-8f37-ca8c000bdf0e) +``` ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=====================+======+============================================+=======+========+==============+=========+============+======================================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497 | rETH-WETH-BPT | 500 | 0x00b9bcd17cb049739d25fd7f826caa2e23b05620 | 0.02% | 100.0% | L0 sidechain | BIP-547 | 0 | ['WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)', 'rETH-WETH-BPT(0xadE4A71BB62bEc25154CFc7e6ff49A513B491E81)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | wstETH/rETH/sfrxETH | 1500 | 0x49f530b45ae792cdf5cbd5d25c5a9b9e59c6c3b8 | 0.04% | 100.0% | L0 sidechain | BIP-547 | 1 | ['wstETH/rETH/sfrxETH(0x0c8972437a38b389ec83d1E666b69b8a4fcf8bfd)', 'wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'sfrxETH(0x95aB45875cFFdba1E5f451B950bC2E42c0053f39)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | wstETH/rETH/cbETH | 1500 | 0x56c0626e6e3931af90ebb679a321225180d4b32b | 0.04% | 100.0% | L0 sidechain | BIP-547 | 2 | ['cbETH(0x1DEBd73E752bEaF79865Fd6446b0c970EaE7732f)', 'wstETH/rETH/cbETH(0x4a2F6Ae7F3e5D715689530873ec35593Dc28951B)', 'wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)', 'rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)'] | ++--------------------------+--------------------------------------------------------------------+---------------------+------+--------------------------------------------+-------+--------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2024-W14/BIP-568.json b/BIPs/2024-W14/BIP-568.json new file mode 100644 index 000000000..57f7d2cc7 --- /dev/null +++ b/BIPs/2024-W14/BIP-568.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710941044658, + "meta": { + "name": "Transactions Batch", + "description": "Fund Maxis for Q2 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "165120000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "18625000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-568.report.txt b/BIPs/2024-W14/BIP-568.report.txt new file mode 100644 index 000000000..66255befb --- /dev/null +++ b/BIPs/2024-W14/BIP-568.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W14/BIP-568.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6361088baec7a0bc37510e7783ee80a78f01e973` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/52b0cbbc-be2d-47de-ae34-9b9ed276d7a1) +``` ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+===============================================================+========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 165120.0 (RAW: 165120000000) | BIP-568 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 18625.0 (RAW: 18625000000000000000000) | BIP-568 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W14/BIP-569.json b/BIPs/2024-W14/BIP-569.json new file mode 100644 index 000000000..398288fbd --- /dev/null +++ b/BIPs/2024-W14/BIP-569.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710946318369, + "meta": { + "name": "Transactions Batch", + "description": "Fund BD SP for Q2 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "61000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "6342000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-569.report.txt b/BIPs/2024-W14/BIP-569.report.txt new file mode 100644 index 000000000..0b3559dab --- /dev/null +++ b/BIPs/2024-W14/BIP-569.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W14/BIP-569.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6361088baec7a0bc37510e7783ee80a78f01e973` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f64e5ee9-1387-41c9-b20a-8435a6b1fb25) +``` ++------------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================+======================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 61000.0 (RAW: 61000000000) | BIP-569 | 0 | ++------------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 6342.0 (RAW: 6342000000000000000000) | BIP-569 | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W14/BIP-572.json b/BIPs/2024-W14/BIP-572.json new file mode 100644 index 000000000..6305d9ad9 --- /dev/null +++ b/BIPs/2024-W14/BIP-572.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1711527684865, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-572.report.txt b/BIPs/2024-W14/BIP-572.report.txt new file mode 100644 index 000000000..0f027511b --- /dev/null +++ b/BIPs/2024-W14/BIP-572.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W14/BIP-572.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `d9209e41215bdc31e91cfb5e96fc3d4e09fad6f9` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/894044cc-5a31-4429-8e3b-658d1a21eb8d) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | ETHx/wstETH | 0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | BIP-572 | 0 | +| | pool_address: 0xB91159aa527D4769CB9FAf3e4ADB760c7E8C8Ea7 | fee: 0.04, a-factor: 500 | Style: mainnet, cap: 100.0% | "ETHx(0xA35b1B31Ce002FBF2058D22F30f95D405200A15b)", | "0xAAE054B9b822554dd1D9d1F48f892B4585D3bbf0", | | | +| | | | | "ETHx/wstETH(0xB91159aa527D4769CB9FAf3e4ADB760c7E8C8Ea7)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W14/BIP-573.json b/BIPs/2024-W14/BIP-573.json new file mode 100644 index 000000000..0addc46d1 --- /dev/null +++ b/BIPs/2024-W14/BIP-573.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1711498875322, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x85c811de7e2921964a9072b7206591c5fea01728b284c3fbc920a65689dc035f" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "amount": "6809000000000000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "29400000000" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-573.report.txt b/BIPs/2024-W14/BIP-573.report.txt new file mode 100644 index 000000000..fca576f5a --- /dev/null +++ b/BIPs/2024-W14/BIP-573.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W14/BIP-573.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `d39ae8aef141399415944194738fa5a11fff52c3` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c9d3bc48-c8cd-48d3-abad-03524c95b1ed) +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+======================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 6809.0 (RAW: 6809000000000000000000) | BIP-573 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 29400.0 (RAW: 29400000000) | BIP-573 | 1 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W14/BIP-574.json b/BIPs/2024-W14/BIP-574.json new file mode 100644 index 000000000..1176b4cea --- /dev/null +++ b/BIPs/2024-W14/BIP-574.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1711008679305, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-574.report.txt b/BIPs/2024-W14/BIP-574.report.txt new file mode 100644 index 000000000..7274f6855 --- /dev/null +++ b/BIPs/2024-W14/BIP-574.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W14/BIP-574.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `84a357a65a6eba103ebb4318f673a0349fe8bb97` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/51c79977-67c1-482e-9e45-ee6034968b36) +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+===============================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x8bb826afc0ff7d2c034a2883f4c461ffd238e1c300020000000000000000012b | RSB | 0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301 | "stataOptUSDT(0x035c93db04E5aAea54E6cd0261C492a3e0638b37)", | | BIP-574 | 0 | +| | pool_address: 0x8BB826Afc0fF7d2c034a2883F4C461ffD238E1C3 | fee: 0.005, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "stataOptUSDCn(0x4DD03dfD36548C840B563745e3FBeC320F37BA7e)" | | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2024-W14/BIP-575.json b/BIPs/2024-W14/BIP-575.json new file mode 100644 index 000000000..cb7776b03 --- /dev/null +++ b/BIPs/2024-W14/BIP-575.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1711008884250, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-575.report.txt b/BIPs/2024-W14/BIP-575.report.txt new file mode 100644 index 000000000..d72fb8c95 --- /dev/null +++ b/BIPs/2024-W14/BIP-575.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W14/BIP-575.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3916e38b6dec107e9f414eb5e70d24f47d1bd04b` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/430104de-c29f-40cb-8964-39315f1bb7cf) +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+==============================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514 | ECLP-AUSDC-AUSDT | 0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5 | "stataArbUSDCn(0x7CFaDFD5645B50bE87d546f42699d863648251ad)", | "0x87cD462A781c0ca843EAB131Bf368328848bB6fD", | BIP-575 | 0 | +| | pool_address: 0x125bC5a031B2Db6733bfa35d914ffa428095978B | fee: 0.005, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "stataArbUSDT(0xb165a74407fE1e519d6bCbDeC1Ed3202B35a4140)" | "0x48942B49B5bB6f3E1d43c204a3F40a4c5F696ef6" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W14/BIP-576.json b/BIPs/2024-W14/BIP-576.json new file mode 100644 index 000000000..7b7f08c05 --- /dev/null +++ b/BIPs/2024-W14/BIP-576.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1711570428579, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x75BA7F8733c154302cbE2e19fe3ec417E0679833", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-576.report.txt b/BIPs/2024-W14/BIP-576.report.txt new file mode 100644 index 000000000..ce04d8b13 --- /dev/null +++ b/BIPs/2024-W14/BIP-576.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/2024-W14/BIP-576.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `72602954e2662bbec1a945137fbc30ed93080a2a` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ae1106ba-dcd0-4d2f-a023-60cecfc7ab10) +``` ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+============================+============================================+==============================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d | 2CLP-AUSDC-USDC | 0x75BA7F8733c154302cbE2e19fe3ec417E0679833 | "stataArbUSDCn(0x7CFaDFD5645B50bE87d546f42699d863648251ad)", | "0x87cD462A781c0ca843EAB131Bf368328848bB6fD", | BIP-576 | 0 | +| | pool_address: 0xcA8ECD05A289B1FBc2E0eAEC07360c4BFec07B61 | fee: 0.0005, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f | 2CLP-AUSDT-USDT | 0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1 | "stataArbUSDT(0xb165a74407fE1e519d6bCbDeC1Ed3202B35a4140)", | "0x48942B49B5bB6f3E1d43c204a3F40a4c5F696ef6", | BIP-576 | 1 | +| | pool_address: 0x14ABD18d1FA335E9F630a658a2799B33208763Fa | fee: 0.0005, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "USDT(0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W14/BIP-577.json b/BIPs/2024-W14/BIP-577.json new file mode 100644 index 000000000..dc98802bc --- /dev/null +++ b/BIPs/2024-W14/BIP-577.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1711571546676, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W14/BIP-577.report.txt b/BIPs/2024-W14/BIP-577.report.txt new file mode 100644 index 000000000..20d94ff29 --- /dev/null +++ b/BIPs/2024-W14/BIP-577.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W14/BIP-577.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `d296598739b6aecc12309948aeaf62a9c0d7e02b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9c2494a5-1e28-4f11-b0df-ce3053ba0c52) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | pufETH/wstETH | 0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80 | "pufETH/wstETH(0x63E0d47A6964aD1565345Da9bfA66659F4983F02)", | "0x0000000000000000000000000000000000000000", | BIP-577 | 0 | +| | pool_address: 0x63E0d47A6964aD1565345Da9bfA66659F4983F02 | fee: 0.02, a-factor: 200 | Style: mainnet, cap: 100.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "pufETH(0xD9A442856C234a39a81a089C06451EBAa4306a72)" | "0x71f80e2CfAFA5EC2F0bF12f71FA7Ea57c3D0c7Af" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W15/BIP-562B.json b/BIPs/2024-W15/BIP-562B.json new file mode 100644 index 000000000..dee8f2e02 --- /dev/null +++ b/BIPs/2024-W15/BIP-562B.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1710938659118, + "meta": { + "name": "Transactions Batch", + "description": "Kill old rETH/WETH guage on zkEVM", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-562B.report.txt b/BIPs/2024-W15/BIP-562B.report.txt new file mode 100644 index 000000000..884bddbad --- /dev/null +++ b/BIPs/2024-W15/BIP-562B.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W15/BIP-562B.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `59ade74e64302ee7d2e3acb0fea95b0614f23178` +CHAIN(S): `zkevm` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/eb94fef4-3e98-477c-86f7-30fd953c2ce5) +``` ++--------------------------+--------------------------------------------------------------------+----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+================+=====+============================================+=======+========+==============+=========+============+==========================================================================================================+ +| AAEntrypoint/killGauge() | 0xb1557cfea06de5a1601a7f0ccf3b515ef431a50d000200000000000000000059 | ECLP-wETH-rETH | N/A | 0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4 | 0.01% | 100.0% | L0 sidechain | BIP-562 | 0 | ['WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)', 'rETH(0xb23C20EFcE6e24Acca0Cef9B7B7aA196b84EC942)'] | ++--------------------------+--------------------------------------------------------------------+----------------+-----+--------------------------------------------+-------+--------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2024-W15/BIP-578-BAL-Vest.json b/BIPs/2024-W15/BIP-578-BAL-Vest.json new file mode 100644 index 000000000..c2ff5e2a1 --- /dev/null +++ b/BIPs/2024-W15/BIP-578-BAL-Vest.json @@ -0,0 +1,93 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712146834833, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x9472f72d847a5259def6cb04bca4a5239e1de4e1a6cb6cb9e16f6089d9d06058" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF", + "amount": "275000000000000000000000" + } + }, + { + "to": "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "token", + "type": "address" + }, + { + "name": "recipient", + "type": "address" + }, + { + "name": "amount", + "type": "uint256" + }, + { + "name": "vesting_duration", + "type": "uint256" + }, + { + "name": "vesting_start", + "type": "uint256" + }, + { + "name": "cliff_length", + "type": "uint256" + }, + { + "name": "open_claim", + "type": "bool" + }, + { + "name": "support_vyper", + "type": "uint256" + } + ], + "name": "deploy_vesting_contract", + "payable": false + }, + "contractInputsValues": { + "token": "0xba100000625a3754423978a60c9317c58a424e3D", + "recipient": "0x74fEa3FB0eD030e9228026E7F413D66186d3D107", + "amount": "275000000000000000000000", + "vesting_duration": "126144000", + "vesting_start": "1707868800", + "cliff_length": "0", + "open_claim": "false", + "support_vyper": "0" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-578-BAL-Vest.report.txt b/BIPs/2024-W15/BIP-578-BAL-Vest.report.txt new file mode 100644 index 000000000..e09c23887 --- /dev/null +++ b/BIPs/2024-W15/BIP-578-BAL-Vest.report.txt @@ -0,0 +1,66 @@ +FILENAME: `BIPs/2024-W15/BIP-578-BAL-Vest.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `1ce1c13dc9280b30fc59375d7cb8861705267b23` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/fa258419-f5f4-44cb-81db-2e97391a9719) +``` ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=========================+=========================================================+=========+==================================================================================+==============+============+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-578 | N/A | +| | | | "spender": [ | | | +| | | | "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF (N/A) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:275000000000000000000000, 18 decimals:275000.0, 6 decimals: 2.75e+17" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "275000000000000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +| deploy_vesting_contract | 0x200C92Dd85730872Ab6A1e7d5E40A067066257cF (Not Found) | 0 | { | BIP-578 | N/A | +| | | | "token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) " | | | +| | | | ], | | | +| | | | "recipient": [ | | | +| | | | "0x74fEa3FB0eD030e9228026E7F413D66186d3D107 (N/A) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:275000000000000000000000, 18 decimals:275000.0, 6 decimals: 2.75e+17" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "275000000000000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "vesting_duration": [ | | | +| | | | [ | | | +| | | | "126144000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "vesting_start": [ | | | +| | | | [ | | | +| | | | "1707868800" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "cliff_length": [ | | | +| | | | [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "open_claim": [ | | | +| | | | [ | | | +| | | | "false" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "support_vyper": [ | | | +| | | | [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W15/BIP-578-USDC-Mar-Apr.json b/BIPs/2024-W15/BIP-578-USDC-Mar-Apr.json new file mode 100644 index 000000000..f154676bf --- /dev/null +++ b/BIPs/2024-W15/BIP-578-USDC-Mar-Apr.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712136301271, + "meta": { + "name": "Transactions Batch", + "description": "Fund Wonderland for March and April 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x74fea3fb0ed030e9228026e7f413d66186d3d107", + "value": "60000000000" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-578-USDC-Mar-Apr.report.txt b/BIPs/2024-W15/BIP-578-USDC-Mar-Apr.report.txt new file mode 100644 index 000000000..5c96f7b2d --- /dev/null +++ b/BIPs/2024-W15/BIP-578-USDC-Mar-Apr.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W15/BIP-578-USDC-Mar-Apr.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `1ce1c13dc9280b30fc59375d7cb8861705267b23` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9366b1c8-9279-49e5-a7cb-f8280fffc608) +``` ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 60000.0 (RAW: 60000000000) | BIP-578 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W15/BIP-579.json b/BIPs/2024-W15/BIP-579.json new file mode 100644 index 000000000..f778664c8 --- /dev/null +++ b/BIPs/2024-W15/BIP-579.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712153319328, + "meta": { + "name": "Transactions Batch", + "description": "Add pxETH-WETH gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x924ABE88022F9422a2938aE0741Fc2C769E85934", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-579.report.txt b/BIPs/2024-W15/BIP-579.report.txt new file mode 100644 index 000000000..6ca3d22fa --- /dev/null +++ b/BIPs/2024-W15/BIP-579.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W15/BIP-579.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3a380cf101dc2f0934966295cffbc37acdb2c26e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c6d38588-6b61-4947-8ea9-d15edef4572d) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x048158d7c77518bd72fdbe22d68719a9aaec75e0000200000000000000000688 | ECLP-pxETH-WETH | 0x924ABE88022F9422a2938aE0741Fc2C769E85934 | "pxETH(0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6)", | "0x0000000000000000000000000000000000000000", | BIP-579 | 0 | +| | pool_address: 0x048158D7c77518Bd72fDbE22D68719a9AAeC75e0 | fee: 0.04, a-factor: N/A | Style: mainnet, cap: 100.0% | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W15/BIP-580.json b/BIPs/2024-W15/BIP-580.json new file mode 100644 index 000000000..4bc836949 --- /dev/null +++ b/BIPs/2024-W15/BIP-580.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712153641589, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-580.report.txt b/BIPs/2024-W15/BIP-580.report.txt new file mode 100644 index 000000000..b4b38823d --- /dev/null +++ b/BIPs/2024-W15/BIP-580.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W15/BIP-580.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `486de4c7d1f323a6124a0cf616d6518450cb9f87` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/bb032574-fbf6-438e-8656-3f985c87090a) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x98bedb6a3c0b6feebbe662e6419481a6877d9681000000000000000000000104 | sfrxETH/cbETH | 0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c | "sfrxETH(0x1f55a02A049033E3419a8E2975cF3F572F4e6E9A)", | "0x1Fe586225989Dd88365C2D859670AA0A4379d7e4", | BIP-580 | 0 | +| | pool_address: 0x98BEDB6A3c0B6fEEbbe662E6419481a6877d9681 | fee: 0.04, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "cbETH(0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22)", | "0x3786a6CAAB433f5dfE56503207DF31DF87C5b5C1", | | | +| | | | | "sfrxETH/cbETH(0x98BEDB6A3c0B6fEEbbe662E6419481a6877d9681)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W15/BIP-581.json b/BIPs/2024-W15/BIP-581.json new file mode 100644 index 000000000..cd8addaee --- /dev/null +++ b/BIPs/2024-W15/BIP-581.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712165688885, + "meta": { + "name": "Transactions Batch", + "description": "Add mstETH/wstETH gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x065885bDec1e571DC309d6d3576628419C13DB99", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-581.report.txt b/BIPs/2024-W15/BIP-581.report.txt new file mode 100644 index 000000000..9ef0e3881 --- /dev/null +++ b/BIPs/2024-W15/BIP-581.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W15/BIP-581.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `aefc9ab746b7ef59ccae7771846c49efad32f3e4` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/75f5b381-5e75-4aee-a9ad-68bb0ce3d805) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x51c72451eddfcc08aae540fd36434bb7ba340d33000000000000000000000683 | mstETH/wstETH | 0x065885bDec1e571DC309d6d3576628419C13DB99 | "mstETH(0x49446A0874197839D15395B908328a74ccc96Bc0)", | "0xCC701e2D472dFa2857Bf9AE24c263DAa39fD2C61", | BIP-581 | 0 | +| | pool_address: 0x51C72451eDDFCC08AAe540Fd36434Bb7ba340d33 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "mstETH/wstETH(0x51C72451eDDFCC08AAe540Fd36434Bb7ba340d33)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)" | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W15/BIP-582.json b/BIPs/2024-W15/BIP-582.json new file mode 100644 index 000000000..24cee061a --- /dev/null +++ b/BIPs/2024-W15/BIP-582.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712209684671, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-582.report.txt b/BIPs/2024-W15/BIP-582.report.txt new file mode 100644 index 000000000..5a535e5f6 --- /dev/null +++ b/BIPs/2024-W15/BIP-582.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W15/BIP-582.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `f08bcde4fc2a045bd986d8af7f0fa482b0a4081c` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/98b8a65a-d651-4441-b310-4a47efdccd07) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687 | ShezUSD/sDAI | 0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01 | "sDAI(0x83F20F44975D03b1b09e64809B757c47f942BEeA)", | "0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c", | BIP-582 | 0 | +| | pool_address: 0xEd0DF9Cd16D806E8A523805e53cf0c56E6dB4D1d | fee: 0.01, a-factor: 150 | Style: mainnet, cap: 2.0% | "ShezUSD(0xD60EeA80C83779a8A5BFCDAc1F3323548e6BB62d)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "ShezUSD/sDAI(0xEd0DF9Cd16D806E8A523805e53cf0c56E6dB4D1d)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W15/BIP-583.json b/BIPs/2024-W15/BIP-583.json new file mode 100644 index 000000000..5915a21fe --- /dev/null +++ b/BIPs/2024-W15/BIP-583.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712240392370, + "meta": { + "name": "Transactions Batch", + "description": "Enable sUSDE gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x41De33d3b227677af277b6c29CB2545195dF508c", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1c5007AF9907Ac83F6d391B18F28Fb2F5f8c9493", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-583.report.txt b/BIPs/2024-W15/BIP-583.report.txt new file mode 100644 index 000000000..ad526fee8 --- /dev/null +++ b/BIPs/2024-W15/BIP-583.report.txt @@ -0,0 +1,26 @@ +FILENAME: `BIPs/2024-W15/BIP-583.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `fb4bf395ae2952433e95fb2b62c55037a117ac78` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/2e20e6f4-af73-4765-b3fd-ddba9cb59941) +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x2f0cdf8596be980ef24924ca7bf54e630ca526b2000000000000000000000529 | sUSDe/USDC | 0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778 | "sUSDe(0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2)", | "0x3A236F67Fce401D87D7215695235e201966576E4", | BIP-583 | 0 | +| | pool_address: 0x2F0cDf8596Be980eF24924Ca7BF54E630cA526b2 | fee: 0.01, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "sUSDe/USDC(0x2F0cDf8596Be980eF24924Ca7BF54E630cA526b2)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x537d8ef9e6e0adfb099cb14aeaf04ebeffaf444c000000000000000000000528 | USDe/USDC | 0x41De33d3b227677af277b6c29CB2545195dF508c | "USDe/USDC(0x537D8ef9E6E0adfb099cB14aeAF04EBEFFAF444c)", | "0x0000000000000000000000000000000000000000", | BIP-583 | 1 | +| | pool_address: 0x537D8ef9E6E0adfb099cB14aeAF04EBEFFAF444c | fee: 0.01, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "USDe(0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "USDC(0xaf88d065e77c8cC2239327C5EDb3A432268e5831)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x02a1e9f29e9a04dbb64114e78cb6cba20c22d73f00000000000000000000052a | sUSDe/USDe | 0x1c5007AF9907Ac83F6d391B18F28Fb2F5f8c9493 | "sUSDe/USDe(0x02A1E9F29E9a04Dbb64114E78Cb6cba20C22D73F)", | "0x0000000000000000000000000000000000000000", | BIP-583 | 2 | +| | pool_address: 0x02A1E9F29E9a04Dbb64114E78Cb6cba20C22D73F | fee: 0.01, a-factor: 1000 | Style: L0 sidechain, cap: 100.0% | "sUSDe(0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2)", | "0x3A236F67Fce401D87D7215695235e201966576E4", | | | +| | | | | "USDe(0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x59743f1812bb85db83e9e4ee061d124aaa64290000000000000000000000052b | sUSDe/sFRAX | 0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE | "sUSDe(0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2)", | "0x3A236F67Fce401D87D7215695235e201966576E4", | BIP-583 | 3 | +| | pool_address: 0x59743f1812bb85Db83e9e4EE061D124AAa642900 | fee: 0.01, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "sUSDe/sFRAX(0x59743f1812bb85Db83e9e4EE061D124AAa642900)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | "0x320CFa1a78d37a13C5D1cA5aA51563fF6Bb0f686" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W15/BIP-584.json b/BIPs/2024-W15/BIP-584.json new file mode 100644 index 000000000..87794c994 --- /dev/null +++ b/BIPs/2024-W15/BIP-584.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712230658370, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x98fbf8Fc81edC411A53db921AB0eB82d97a6f123", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W15/BIP-584.report.txt b/BIPs/2024-W15/BIP-584.report.txt new file mode 100644 index 000000000..9c29e9267 --- /dev/null +++ b/BIPs/2024-W15/BIP-584.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W15/BIP-584.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `550717b5fbca9cfb73796914ad5c6c6aaeae6122` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9eec559a-4fd2-4d1f-84a4-b809c2e77183) +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x920ce9ec4c52e740ab4c3d36fb5454c274907ae500020000000000000000051b | 80PRF-20WETH | 0x98fbf8Fc81edC411A53db921AB0eB82d97a6f123 | "PRF(0x1310952Bc5594852459Ee45bfD0df70b34Ac5509)", | "0x0000000000000000000000000000000000000000", | BIP-584 | 0 | +| | pool_address: 0x920Ce9EC4c52e740Ab4C3D36Fb5454c274907aE5 | fee: 1.0, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-518-5.json b/BIPs/2024-W17/BIP-518-5.json new file mode 100644 index 000000000..dadaa80d7 --- /dev/null +++ b/BIPs/2024-W17/BIP-518-5.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107040104, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1f440bb1b31ed23dce797e5957ac2a5749add1074f8540f0ff0a158e4b248003" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-518-5.report.txt b/BIPs/2024-W17/BIP-518-5.report.txt new file mode 100644 index 000000000..2d2ddd95e --- /dev/null +++ b/BIPs/2024-W17/BIP-518-5.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W16/BIP-518-5.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `73f169f9819085d69691fab60c6dbcd3db296174` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-519-5.json b/BIPs/2024-W17/BIP-519-5.json new file mode 100644 index 000000000..eaa534ca3 --- /dev/null +++ b/BIPs/2024-W17/BIP-519-5.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107142345, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa1bc4667c4f7289ebd0f1a07a44e791e2bc9883cf3ee0650c966b12a685d8721" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-519-5.report.txt b/BIPs/2024-W17/BIP-519-5.report.txt new file mode 100644 index 000000000..9b0a310be --- /dev/null +++ b/BIPs/2024-W17/BIP-519-5.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W16/BIP-519-5.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `70da7b168a7d20d13c94ec02d6a5dcd3b8c0534e` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.json b/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.json new file mode 100644 index 000000000..8fd457e67 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad, 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5, 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3, 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997, 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff, 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff]", + "account": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.report.txt b/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.report.txt new file mode 100644 index 000000000..48f681224 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_arbitrum.report.txt @@ -0,0 +1,24 @@ +FILENAME: `BIPs/2024-W16/BIP-585/2024-04-18_arbitrum.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `arbitrum` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | maxiKeepers/one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | BIP-585 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-585 | 2 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-585 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.json b/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.json new file mode 100644 index 000000000..8255c2526 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": 43114, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed, 0x81cdf61d73f9758e4ea06a1c95ee9fa99de9941b89ee79ee97feea474543674f, 0x85fd49342760df94da4da1b8ae0954817843ed72ece3540120eb528bc152f903, 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6]", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0462c9b84b87fb6c25d52862b1a17b86e48ee92d7d5a7136304e1195efca03d6, 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a, 0x4c0e8aa6e2b05a19aefb892998330bff4b68f678770e82ef361d646c908463aa, 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a]", + "account": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.report.txt b/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.report.txt new file mode 100644 index 000000000..93ca982be --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_avalanche.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W16/BIP-585/2024-04-18_avalanche.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `avalanche` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | BIP-585 | 0 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x81cdf61d73f9758e4ea06a1c95ee9fa99de9941b89ee79ee97feea474543674f | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x85fd49342760df94da4da1b8ae0954817843ed72ece3540120eb528bc152f903 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x0462c9b84b87fb6c25d52862b1a17b86e48ee92d7d5a7136304e1195efca03d6 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x4c0e8aa6e2b05a19aefb892998330bff4b68f678770e82ef361d646c908463aa | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_base.json b/BIPs/2024-W17/BIP-585/2024-04-18_base.json new file mode 100644 index 000000000..b0823cb01 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_base.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": 8453, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85, 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313, 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09, 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4]", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656, 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e, 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35, 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e]", + "account": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_base.report.txt b/BIPs/2024-W17/BIP-585/2024-04-18_base.report.txt new file mode 100644 index 000000000..af36faf9a --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_base.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W16/BIP-585/2024-04-18_base.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `base` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | BIP-585 | 0 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.json b/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.json new file mode 100644 index 000000000..4ccec3ad6 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x33b91e3688acaca9acc4caca69aa910c3140d6956ee3bbd6d5ccd3ab6df92c97, 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x55732eccb480f3fab3813ed3595584071ded9c10d3f82947f88572b5f0df5e46, 0xe7872d99e0351185f0ba58a9a987df315ecf7515645b82e84625b62456dc4868]", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd, 0xc571be1313415036a074b5a131d47f9d271f37b6d0e2d441d3f175dc0abb9456, 0xe4e8dda6c4932e728b19aef0812933d9c816ff8184e98194fdf8ceb34a9b3d64, 0xf82a7b23f77e12dee3dd6da58497c97c35be0a9b9357687db117c20f78edec24]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd]", + "account": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.report.txt b/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.report.txt new file mode 100644 index 000000000..9c9c8feed --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_gnosis.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W16/BIP-585/2024-04-18_gnosis.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `gnosis` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x33b91e3688acaca9acc4caca69aa910c3140d6956ee3bbd6d5ccd3ab6df92c97 | BIP-585 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x55732eccb480f3fab3813ed3595584071ded9c10d3f82947f88572b5f0df5e46 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xe7872d99e0351185f0ba58a9a987df315ecf7515645b82e84625b62456dc4868 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xc571be1313415036a074b5a131d47f9d271f37b6d0e2d441d3f175dc0abb9456 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0xe4e8dda6c4932e728b19aef0812933d9c816ff8184e98194fdf8ceb34a9b3d64 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0xf82a7b23f77e12dee3dd6da58497c97c35be0a9b9357687db117c20f78edec24 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.json b/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.json new file mode 100644 index 000000000..39eec9628 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c]", + "account": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c, 0xcd61e70763e513c8c738ee449caf88b90566b2b193bb69d88856f6eb9d0d1f45, 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901, 0xdf9e7dec263e17ae8ec6c062f6f6076b90a1bccc2b50462ee12b4d98d23846c0]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x4a19dd39fa8f4bbd7452fd4cf82679df5cf73700c2b6b88c1243653f0e85260e, 0x7106e3d8f9c8398d705d56aa3dd355670b20ec766484954c9e74d61fd3aec3ad, 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84, 0xf611f8b232e4be511caea74a4b9a6dea519d09225c9cf5d0e4a4bef44e006f71]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84]", + "account": "0x1b300C86980a5195bCF49bD419A068D98dC133Db" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.report.txt b/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.report.txt new file mode 100644 index 000000000..30ee7a991 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_mainnet.report.txt @@ -0,0 +1,26 @@ +FILENAME: `BIPs/2024-W16/BIP-585/2024-04-18_mainnet.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `mainnet` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | cow/settlement | 0x9008D19f58AAbD9eD0D60971565AA8510560ab41 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 1 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | BIP-585 | 2 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xcd61e70763e513c8c738ee449caf88b90566b2b193bb69d88856f6eb9d0d1f45 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xdf9e7dec263e17ae8ec6c062f6f6076b90a1bccc2b50462ee12b4d98d23846c0 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x4a19dd39fa8f4bbd7452fd4cf82679df5cf73700c2b6b88c1243653f0e85260e | BIP-585 | 3 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x7106e3d8f9c8398d705d56aa3dd355670b20ec766484954c9e74d61fd3aec3ad | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0xf611f8b232e4be511caea74a4b9a6dea519d09225c9cf5d0e4a4bef44e006f71 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | BIP-585 | 4 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_optimism.json b/BIPs/2024-W17/BIP-585/2024-04-18_optimism.json new file mode 100644 index 000000000..7e1941b08 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_optimism.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5, 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08, 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3, 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56]", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997, 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff, 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff]", + "account": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_optimism.report.txt b/BIPs/2024-W17/BIP-585/2024-04-18_optimism.report.txt new file mode 100644 index 000000000..a82be2b3b --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_optimism.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W16/BIP-585/2024-04-18_optimism.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `optimism` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | BIP-585 | 0 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_polygon.json b/BIPs/2024-W17/BIP-585/2024-04-18_polygon.json new file mode 100644 index 000000000..1d6f36614 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_polygon.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186]", + "account": "0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186, 0x421e910d9d2e701d0e181f997548467a67a50d9164124de8434f6f8ad348d82e, 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263, 0xc58a329b76e9a2243a49522312dfe6f54cdc155e08499573ab4d7d6ffe75df5a]", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0483d53ea1eab1f6633a661730adf42ee3fa58361709e86cea2f136357ac0198, 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81, 0x34f66ef5706b2abf916d3f719040884c962d3a419b90ec8af8fb2c1f6ea4e313, 0xdc8bb9d1a82e326efeefddf0b599e6bc40ffb40e96faf0cef63f9c6cd600633f]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81]", + "account": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_polygon.report.txt b/BIPs/2024-W17/BIP-585/2024-04-18_polygon.report.txt new file mode 100644 index 000000000..6dce18de0 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_polygon.report.txt @@ -0,0 +1,24 @@ +FILENAME: `BIPs/2024-W16/BIP-585/2024-04-18_polygon.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `polygon` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | BIP-585 | 0 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x421e910d9d2e701d0e181f997548467a67a50d9164124de8434f6f8ad348d82e | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0xc58a329b76e9a2243a49522312dfe6f54cdc155e08499573ab4d7d6ffe75df5a | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x0483d53ea1eab1f6633a661730adf42ee3fa58361709e86cea2f136357ac0198 | BIP-585 | 2 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x34f66ef5706b2abf916d3f719040884c962d3a419b90ec8af8fb2c1f6ea4e313 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xdc8bb9d1a82e326efeefddf0b599e6bc40ffb40e96faf0cef63f9c6cd600633f | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | BIP-585 | 3 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.json b/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.json new file mode 100644 index 000000000..c16e6450d --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0814546dc2f9071f966a272ec2747ac2f00be36ebcd0f81f0d184512f1b52228, 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656, 0x3be35af4fe52441201647f4d6699cfd4b8b5ebc18baac708ab15d9a22797f87f, 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c, 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154, 0x51530e1d909caf846c8075a98e41431ffe7e18eabf84b1f3ebade86b84547d30, 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951, 0xd12b97e317782dac10c3547fc977708cf0a2ebe3621f880b6f89236e760278ee]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.report.txt b/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.report.txt new file mode 100644 index 000000000..6eace7104 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/2024-04-18_zkevm.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/2024-W16/BIP-585/2024-04-18_zkevm.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `zkevm` +TENDERLY: [SKIPPED] +``` ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+==================================================+============================================+============================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x0814546dc2f9071f966a272ec2747ac2f00be36ebcd0f81f0d184512f1b52228 | BIP-585 | 0 | +| | | | 20230711-zkevm-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x3be35af4fe52441201647f4d6699cfd4b8b5ebc18baac708ab15d9a22797f87f | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | BIP-585 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x51530e1d909caf846c8075a98e41431ffe7e18eabf84b1f3ebade86b84547d30 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/disableRecoveryMode() | 0xd12b97e317782dac10c3547fc977708cf0a2ebe3621f880b6f89236e760278ee | | | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | BIP-585 | 2 | ++-----------------------+--------------------------------------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W17/BIP-585/BIP-585.md b/BIPs/2024-W17/BIP-585/BIP-585.md new file mode 100644 index 000000000..e359f541f --- /dev/null +++ b/BIPs/2024-W17/BIP-585/BIP-585.md @@ -0,0 +1,164 @@ +## Payload PR - BIP-585 +https://github.com/BalancerMaxis/multisig-ops/pull/903 +## TL;DR +- This BIP proposes enabling a new version of the StableSwap factory with a 4-year pause window. +- The current running stableswap factory has a 6-month pause window that has expired, so it is no longer possible to pause pools. +- The ability to pause all our stableswaps would have allowed us to mitigate all losses in the linear pool hack from last year. +- Our recently forged relationship with Hypernative introduces new capabilities in advanced threat detection and response. + - In the future Hypernative technology could be granted the access to proactively pause Balancer pools in the event of a security incident. + - This would only be possible on pools that still have a running pause window. +- This BIP finally proposes disabling the CSPv5 factory with a shorter pause window in 8 weeks. + - This gives time for more thought and a future BIP to abort the disable and leave both options available to pool creators. +- This BIP grants the right for the Emergency Multisig to pause pools. Further the Governance can authorize additional pausers through a BIP and eventual payload execution by the DAO Multisig. + +## Background +Balancer pools traditionally have been launched with 6-month pause window. This allows for pools to be paused for up to 6 months, within within the first 6 months of deployment of the factory that they were created by. Following this, pauses are no longer possible. + +Most of the mitigation around the [Linear Pool Hack](https://medium.com/balancer-protocol/rate-manipulation-in-balancer-boosted-pools-technical-postmortem-53db4b642492) that occured last year involved finding some way to prevent pools from trading. If all affected pools would have allowed pausing, we could have prevented any losses. + +Following these events, Balancer forged a relationship with [Hypernative](https://forum.balancer.fi/t/bip-545-funding-hypernative-security-program-for-balancer/5542). The ability to pause pools for a longer time will enable future integration with Hypernative's threat detection and response systems. + +Balancer V3 pools are intended to also have long pause windows, so this BIP also represents a shift in thinking away from truly unstoppable pools towards something that in theory can be paused by a trusted and authorized party should things go really wrong. + +## Specifics around pause capabilities: +As described in the deployment [PR](https://github.com/balancer/balancer-v2-monorepo/pull/2559/files) ComposableStablePoolV6(CSPv6) will have: +``` solidity + uint256 private constant _INITIAL_PAUSE_WINDOW_DURATION = 4 * 365 days; + uint256 private constant _BUFFER_PERIOD_DURATION = 180 days; +``` + +The factories were deployed on or around March 26th (chain dependent) as can be observed by this [TX on Mainnet](https://etherscan.io/tx/0x4149cadfe5d3431205d9819fca44ed7a4c2b101adc51adc75cc4586dee237be8) which deploys CSPv6 as referenced by this [PR](https://github.com/balancer/balancer-deployments/commit/de8c3a52cb62185469dbbc90589afa83e5490760#diff-d7b7752479f11eabe2a2f74fa0b35785770c8c6d6c54d18d8c9c55fcef430791). This means, that on mainnet: +- Pause window starts counting on factory deployment. Feb 26th, 2024. +- Authorized callers can call pause until Feb 26th, 2028. +- Authorizer callers can unpause anytime the pool is paused (it's a different permission, but it can be done). +- If the pool is paused on Feb 26th, 2028 it'll stay paused for 6 more months (or until unpause is called) +- If the pool is paused on Feb 1st, 2028 and none calls unpause, it will be unpaused forever after 6 months without any governance interaction of any kind. + +It should be noted that an authorized caller could unpause/repause a pool in a single TX to reset the buffer as long as the pause window has not ended. + +## English Specification +This PR contains many payloads that: + +- Grant standard authorizer permisisons on all chains for CSPV6 +- Suspends create of new pools with no pause window using CSPV5 around the end of June baring further governance action. + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-585) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|-----------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2024-W16/BIP-585/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2024-W16/BIP-585/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2024-W16/BIP-585/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2024-W16/BIP-585/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [2024-04-17_`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W16/BIP-585/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + | [`chainname`_CSP5_disable.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W26/BIP-585/) | Disable new CSPV5(no pause window) pool creation | +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer would be called to grant the roles as described. These actions should be executed soon after the pasasge of this BIP. + +The DAO Multisig is also requested to execute [chainname]_CSP5_disable.json on each chain around it's 26th execution week of the year 2024, which: + - Grants the LM multisig rights to disable the active CSPV5 factory. + - Disables the CSPV5 factory + - Revokes the DAO multisig rights granted in the first step + + + + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W16/BIP-585/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-deployments](https://github.com/balancer/balancer-deployments/tree/master/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W16/BIP-585/results_address_sorted.md) are printed here: + + + +| deployment | function | role | chain | caller | caller_address | +|:-----------------------------------------|:---------------------------------------------------|:-------------------------------------------------------------------|:----------|:-------------------------------------------------|:-------------------------------------------| +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | arbitrum | maxiKeepers/one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | arbitrum | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | pause() | 0x4c0e8aa6e2b05a19aefb892998330bff4b68f678770e82ef361d646c908463aa | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x0462c9b84b87fb6c25d52862b1a17b86e48ee92d7d5a7136304e1195efca03d6 | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x85fd49342760df94da4da1b8ae0954817843ed72ece3540120eb528bc152f903 | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x81cdf61d73f9758e4ea06a1c95ee9fa99de9941b89ee79ee97feea474543674f | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | avalanche | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | base | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20240223-composable-stable-pool-v6 | pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x33b91e3688acaca9acc4caca69aa910c3140d6956ee3bbd6d5ccd3ab6df92c97 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xe7872d99e0351185f0ba58a9a987df315ecf7515645b82e84625b62456dc4868 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x55732eccb480f3fab3813ed3595584071ded9c10d3f82947f88572b5f0df5e46 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | gnosis | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20240223-composable-stable-pool-v6 | pause() | 0xe4e8dda6c4932e728b19aef0812933d9c816ff8184e98194fdf8ceb34a9b3d64 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | disable() | 0xf82a7b23f77e12dee3dd6da58497c97c35be0a9b9357687db117c20f78edec24 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xc571be1313415036a074b5a131d47f9d271f37b6d0e2d441d3f175dc0abb9456 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | mainnet | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | cow/settlement | 0x9008D19f58AAbD9eD0D60971565AA8510560ab41 | +| 20240223-composable-stable-pool-v6 | pause() | 0x7106e3d8f9c8398d705d56aa3dd355670b20ec766484954c9e74d61fd3aec3ad | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | disable() | 0xf611f8b232e4be511caea74a4b9a6dea519d09225c9cf5d0e4a4bef44e006f71 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x4a19dd39fa8f4bbd7452fd4cf82679df5cf73700c2b6b88c1243653f0e85260e | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xcd61e70763e513c8c738ee449caf88b90566b2b193bb69d88856f6eb9d0d1f45 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xdf9e7dec263e17ae8ec6c062f6f6076b90a1bccc2b50462ee12b4d98d23846c0 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | optimism | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | pause() | 0x0483d53ea1eab1f6633a661730adf42ee3fa58361709e86cea2f136357ac0198 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | disable() | 0x34f66ef5706b2abf916d3f719040884c962d3a419b90ec8af8fb2c1f6ea4e313 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xdc8bb9d1a82e326efeefddf0b599e6bc40ffb40e96faf0cef63f9c6cd600633f | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | polygon | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | polygon | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x421e910d9d2e701d0e181f997548467a67a50d9164124de8434f6f8ad348d82e | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xc58a329b76e9a2243a49522312dfe6f54cdc155e08499573ab4d7d6ffe75df5a | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | pause() | 0x51530e1d909caf846c8075a98e41431ffe7e18eabf84b1f3ebade86b84547d30 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xd12b97e317782dac10c3547fc977708cf0a2ebe3621f880b6f89236e760278ee | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x0814546dc2f9071f966a272ec2747ac2f00be36ebcd0f81f0d184512f1b52228 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x3be35af4fe52441201647f4d6699cfd4b8b5ebc18baac708ab15d9a22797f87f | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-zkevm-composable-stable-pool-v5 | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | zkevm | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | + +## Risk Assessment +The possibility to pause pools could be used to stop balancer from functioning in the long term. Note that in the case of paused pools, users can still withdraw funds, but trading (the basic operation of the DEX) is no longer possible. The existence of these long pause windows could result in some kind of external coercion of governance, or the DAO Multisig to pause Balancer pools and revoke rights for anyone else to unpause them. + + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/2024-W17/BIP-585/README.md b/BIPs/2024-W17/BIP-585/README.md new file mode 100644 index 000000000..4a0737037 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/README.md @@ -0,0 +1 @@ +[See Here](BIP-578.md) for the governance contents. diff --git a/BIPs/2024-W17/BIP-585/function_descriptions.md b/BIPs/2024-W17/BIP-585/function_descriptions.md new file mode 100644 index 000000000..efe5371a5 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/function_descriptions.md @@ -0,0 +1,10 @@ +| function | description | +|:---------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------| +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| disableRecoveryMode() | description not found in map | \ No newline at end of file diff --git a/BIPs/2024-W17/BIP-585/inputs.json b/BIPs/2024-W17/BIP-585/inputs.json new file mode 100644 index 000000000..607f5d920 --- /dev/null +++ b/BIPs/2024-W17/BIP-585/inputs.json @@ -0,0 +1,67 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "avalanche": 43114, + "zkevm": 1101, + "base": 8453 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": "multisigs/lm", + "stopAmplificationParameterUpdate()": "multisigs/lm", + "/pause()": "multisigs/emergency", + "disable()": "multisigs/emergency", + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets": "multisigs/lm", + "disableRecoveryMode()": "multisigs/emergency" + }, + "deployments": ["composable-stable-pool-v6"] + }, + { + "chain_map": { + "mainnet": 1 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["cow/settlement"] + }, + "deployments": ["composable-stable-pool-v6"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 100, + "arbitrum": 42161 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["one_inch/settlement"] + }, + "deployments": ["composable-stable-pool-v6"] + }, + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "avalanche": 43114, + "zkevm": 1101, + "base": 8453 + }, + "function_caller_map": { + "disable()": "multisigs/lm" + }, + "deployments": [ + "20230711-composable-stable-pool-v5", + "20230711-zkevm-composable-stable-pool-v5" + ] + } +] diff --git a/BIPs/2024-W17/BIP-585/results_address_sorted.md b/BIPs/2024-W17/BIP-585/results_address_sorted.md new file mode 100644 index 000000000..f467df06e --- /dev/null +++ b/BIPs/2024-W17/BIP-585/results_address_sorted.md @@ -0,0 +1,79 @@ +| deployment | function | role | chain | caller | caller_address | +|:-----------------------------------------|:---------------------------------------------------|:-------------------------------------------------------------------|:----------|:-------------------------------------------------|:-------------------------------------------| +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | arbitrum | maxiKeepers/one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | arbitrum | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | pause() | 0x4c0e8aa6e2b05a19aefb892998330bff4b68f678770e82ef361d646c908463aa | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x0462c9b84b87fb6c25d52862b1a17b86e48ee92d7d5a7136304e1195efca03d6 | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x85fd49342760df94da4da1b8ae0954817843ed72ece3540120eb528bc152f903 | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x81cdf61d73f9758e4ea06a1c95ee9fa99de9941b89ee79ee97feea474543674f | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | avalanche | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | base | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20240223-composable-stable-pool-v6 | pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x33b91e3688acaca9acc4caca69aa910c3140d6956ee3bbd6d5ccd3ab6df92c97 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xe7872d99e0351185f0ba58a9a987df315ecf7515645b82e84625b62456dc4868 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x55732eccb480f3fab3813ed3595584071ded9c10d3f82947f88572b5f0df5e46 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | gnosis | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20240223-composable-stable-pool-v6 | pause() | 0xe4e8dda6c4932e728b19aef0812933d9c816ff8184e98194fdf8ceb34a9b3d64 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | disable() | 0xf82a7b23f77e12dee3dd6da58497c97c35be0a9b9357687db117c20f78edec24 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xc571be1313415036a074b5a131d47f9d271f37b6d0e2d441d3f175dc0abb9456 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | mainnet | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | cow/settlement | 0x9008D19f58AAbD9eD0D60971565AA8510560ab41 | +| 20240223-composable-stable-pool-v6 | pause() | 0x7106e3d8f9c8398d705d56aa3dd355670b20ec766484954c9e74d61fd3aec3ad | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | disable() | 0xf611f8b232e4be511caea74a4b9a6dea519d09225c9cf5d0e4a4bef44e006f71 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x4a19dd39fa8f4bbd7452fd4cf82679df5cf73700c2b6b88c1243653f0e85260e | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xcd61e70763e513c8c738ee449caf88b90566b2b193bb69d88856f6eb9d0d1f45 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xdf9e7dec263e17ae8ec6c062f6f6076b90a1bccc2b50462ee12b4d98d23846c0 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | optimism | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | pause() | 0x0483d53ea1eab1f6633a661730adf42ee3fa58361709e86cea2f136357ac0198 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | disable() | 0x34f66ef5706b2abf916d3f719040884c962d3a419b90ec8af8fb2c1f6ea4e313 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xdc8bb9d1a82e326efeefddf0b599e6bc40ffb40e96faf0cef63f9c6cd600633f | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | polygon | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | polygon | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x421e910d9d2e701d0e181f997548467a67a50d9164124de8434f6f8ad348d82e | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xc58a329b76e9a2243a49522312dfe6f54cdc155e08499573ab4d7d6ffe75df5a | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | pause() | 0x51530e1d909caf846c8075a98e41431ffe7e18eabf84b1f3ebade86b84547d30 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xd12b97e317782dac10c3547fc977708cf0a2ebe3621f880b6f89236e760278ee | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x0814546dc2f9071f966a272ec2747ac2f00be36ebcd0f81f0d184512f1b52228 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x3be35af4fe52441201647f4d6699cfd4b8b5ebc18baac708ab15d9a22797f87f | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-composable-stable-pool-v5 | disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-zkevm-composable-stable-pool-v5 | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | zkevm | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | \ No newline at end of file diff --git a/BIPs/2024-W17/BIP-585/results_deployment_sorted.md b/BIPs/2024-W17/BIP-585/results_deployment_sorted.md new file mode 100644 index 000000000..358a4ff8d --- /dev/null +++ b/BIPs/2024-W17/BIP-585/results_deployment_sorted.md @@ -0,0 +1,79 @@ +| deployment | function | role | chain | caller | caller_address | +|:-----------------------------------------|:---------------------------------------------------|:-------------------------------------------------------------------|:----------|:-------------------------------------------------|:-------------------------------------------| +| 20230711-composable-stable-pool-v5 | disable() | 0x063bbaf4b25095681176c8be04d41958e40ee88e0a6fe895a8d225cda9bd64ad | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | arbitrum | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2 | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | arbitrum | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | arbitrum | maxiKeepers/one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | arbitrum | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0x1426567817459896eea032971802f23ffedf7dbce9ba83c56000f1f9616a25ed | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | disable() | 0x50f3f826f5b6f34e6b9291e41967ce5c8f5cbd998ab8b3f740cf2bb02e2e6ea0 | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x0462c9b84b87fb6c25d52862b1a17b86e48ee92d7d5a7136304e1195efca03d6 | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x2bc44d8579fe2d1f63f141dac41a22e6058aafb6bdc0e141d647d08ad50e2b0a | avalanche | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x3b8cA519122CdD8efb272b0D3085453404B25bD0 | +| 20240223-composable-stable-pool-v6 | pause() | 0x4c0e8aa6e2b05a19aefb892998330bff4b68f678770e82ef361d646c908463aa | avalanche | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0xdc4d63c40d0a7a13b082c0bfcc25b1ad5b79ab783d81da5dca1cdc51c2a64ac6 | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x85fd49342760df94da4da1b8ae0954817843ed72ece3540120eb528bc152f903 | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x81cdf61d73f9758e4ea06a1c95ee9fa99de9941b89ee79ee97feea474543674f | avalanche | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | +| 20230711-composable-stable-pool-v5 | disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xcfd45e344ead8485b80a5f9da66791663c8306984e9c6dc12eda2ee747cce604 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x6fa5acf6e6e303c2d281bf1af5f4d83642a125c5a3308cdf67e956bec276b69e | base | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20240223-composable-stable-pool-v6 | pause() | 0xa5d55e5978cb5ab0a8b23eed8889931ca33b54522edde10e348f4f96d35f0b35 | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x04dd8b85ae9bff95ec24f18269d23bd2d04784d5f5d8b35261545b82ed754a85 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x1307ea331d8ab1feffafb967ddf20c66fd92ce496eda1de129a4608d4b40f313 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xbd408e756684e5ea83089ee33aa05ce9410b392967bffc71c11fb394026e7a09 | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | disable() | 0xf82a7b23f77e12dee3dd6da58497c97c35be0a9b9357687db117c20f78edec24 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xc571be1313415036a074b5a131d47f9d271f37b6d0e2d441d3f175dc0abb9456 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x134db6c499f76ae7f96193f69fcd7d8ee490fa0ab34832e58c870ab2d5a2c7bd | gnosis | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 | +| 20240223-composable-stable-pool-v6 | pause() | 0xe4e8dda6c4932e728b19aef0812933d9c816ff8184e98194fdf8ceb34a9b3d64 | gnosis | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x33b91e3688acaca9acc4caca69aa910c3140d6956ee3bbd6d5ccd3ab6df92c97 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xe7872d99e0351185f0ba58a9a987df315ecf7515645b82e84625b62456dc4868 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x55732eccb480f3fab3813ed3595584071ded9c10d3f82947f88572b5f0df5e46 | gnosis | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | +| 20230711-composable-stable-pool-v5 | disable() | 0xceeb84f98e049989237e570ba87203572b1ba663061d817739b66a9fb08a7901 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | disable() | 0xf611f8b232e4be511caea74a4b9a6dea519d09225c9cf5d0e4a4bef44e006f71 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x4a19dd39fa8f4bbd7452fd4cf82679df5cf73700c2b6b88c1243653f0e85260e | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xaaa009efc2738b643cc29ff4930552287a5151779614a313f479d6a4f55b4d84 | mainnet | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x1b300C86980a5195bCF49bD419A068D98dC133Db | +| 20240223-composable-stable-pool-v6 | pause() | 0x7106e3d8f9c8398d705d56aa3dd355670b20ec766484954c9e74d61fd3aec3ad | mainnet | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | cow/settlement | 0x9008D19f58AAbD9eD0D60971565AA8510560ab41 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x74bbca0eb5858285c56e762a11a2fff0427631476a3ba0c35195132e15f1fc6c | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xcd61e70763e513c8c738ee449caf88b90566b2b193bb69d88856f6eb9d0d1f45 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xdf9e7dec263e17ae8ec6c062f6f6076b90a1bccc2b50462ee12b4d98d23846c0 | mainnet | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0x8f33b1eaf9e2f2523d32b89a23d1a83e1225eb96ef489fde9b81bc44c7e207c1 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | optimism | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | optimism | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | optimism | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | +| 20230711-composable-stable-pool-v5 | disable() | 0x740f4332364e3e7815877d3129b935f10ce37584e973ed33b93e793000a1c263 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | disable() | 0x34f66ef5706b2abf916d3f719040884c962d3a419b90ec8af8fb2c1f6ea4e313 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xdc8bb9d1a82e326efeefddf0b599e6bc40ffb40e96faf0cef63f9c6cd600633f | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x10b5720c4e051a8e97d7b590832a4392adb9304326a7dc1db23d73117d95ee81 | polygon | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA | +| 20240223-composable-stable-pool-v6 | pause() | 0x0483d53ea1eab1f6633a661730adf42ee3fa58361709e86cea2f136357ac0198 | polygon | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | polygon | one_inch/settlement | 0xad3b67BCA8935Cb510C8D18bD45F0b94F54A968f | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x2a6eaae9c85d7b4026a2dc9a49abed2506a0cfc22a0597d33af9ddf2b8d8f186 | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x421e910d9d2e701d0e181f997548467a67a50d9164124de8434f6f8ad348d82e | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0xc58a329b76e9a2243a49522312dfe6f54cdc155e08499573ab4d7d6ffe75df5a | polygon | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | +| 20230711-composable-stable-pool-v5 | disable() | 0x64a2a630490e7632c2c8136b3761d329589d65bc8e9b6bb4864d79bc930d5e3c | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230711-zkevm-composable-stable-pool-v5 | disable() | 0x0ebf042d38f8e1bb630c3010c686232d7334f90360a82eb23623fd01fbe8e656 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | disable() | 0x06efe7e891755c060de5033e398e2d4d9f1bc713591717209ef84b7e021bd154 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | disableRecoveryMode() | 0xd12b97e317782dac10c3547fc977708cf0a2ebe3621f880b6f89236e760278ee | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | zkevm | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x63670b08ab971b7445722753ef5c4b1ddc64376a631cdb48e3c6eae5a5dfc951 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | pause() | 0x51530e1d909caf846c8075a98e41431ffe7e18eabf84b1f3ebade86b84547d30 | zkevm | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x6e1c8947d790e79a7f8b6b195b2ec3231b6b9bd27a74f04b192aacd8e93f3660 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x0814546dc2f9071f966a272ec2747ac2f00be36ebcd0f81f0d184512f1b52228 | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x3be35af4fe52441201647f4d6699cfd4b8b5ebc18baac708ab15d9a22797f87f | zkevm | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | \ No newline at end of file diff --git a/BIPs/2024-W17/BIP-586.json b/BIPs/2024-W17/BIP-586.json new file mode 100644 index 000000000..ce3b1878b --- /dev/null +++ b/BIPs/2024-W17/BIP-586.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713418321339, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W17/BIP-586.report.txt b/BIPs/2024-W17/BIP-586.report.txt new file mode 100644 index 000000000..447a7de01 --- /dev/null +++ b/BIPs/2024-W17/BIP-586.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W17/BIP-586.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `5a348eb7d6d8b2b0d17f01cd1cc24abf8ed8871c` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/14520b97-6b2c-4085-a4c0-ddce4af5ae38) +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | sUSDe/USDC | 0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC | "sUSDe(0x9D39A5DE30e57443BfF2A8307A4256c8797A3497)", | "0x3A244e6B3cfed21593a5E5B347B593C0B48C7dA1", | BIP-586 | 0 | +| | pool_address: 0xb819feeF8F0fcDC268AfE14162983A69f6BF179E | fee: 0.2, a-factor: 100 | Style: mainnet, cap: 100.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sUSDe/USDC(0xb819feeF8F0fcDC268AfE14162983A69f6BF179E)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W18/BIP-578-USDC-May.json b/BIPs/2024-W18/BIP-578-USDC-May.json new file mode 100644 index 000000000..4656d30ab --- /dev/null +++ b/BIPs/2024-W18/BIP-578-USDC-May.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712136301271, + "meta": { + "name": "Transactions Batch", + "description": "Fund Wonderland for May 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x74fea3fb0ed030e9228026e7f413d66186d3d107", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2024-W18/BIP-578-USDC-May.report.txt b/BIPs/2024-W18/BIP-578-USDC-May.report.txt new file mode 100644 index 000000000..58b4e0774 --- /dev/null +++ b/BIPs/2024-W18/BIP-578-USDC-May.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W18/BIP-578-USDC-May.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `1ce1c13dc9280b30fc59375d7cb8861705267b23` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ec58fd90-d4a6-4a7d-ae76-3ed710278775) +``` ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 30000.0 (RAW: 30000000000) | BIP-578 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W18/BIP-592 Exit and Withdraw from BAL/AURA/BIP-592.json b/BIPs/2024-W18/BIP-592 Exit and Withdraw from BAL/AURA/BIP-592.json new file mode 100644 index 000000000..2336fbfa7 --- /dev/null +++ b/BIPs/2024-W18/BIP-592 Exit and Withdraw from BAL/AURA/BIP-592.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1714026165308, + "meta": { + "name": "ARB Tx Batch", + "description": "Withdraw full position from AuraArbBalGrant contract", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x9d72467150d93ae3bb733a7d0f2c37ac3690d71451f7c6821f6634f2accd9080" + }, + "transactions": [ + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256[]", + "name": "_minOuts", + "type": "uint256[]" + } + ], + "name": "exit", + "payable": false + }, + "contractInputsValues": { + "_minOuts": "[361088999999999976669184, 2046856500000000053346304, 1282351499999999948750848]" + } + }, + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "withdrawBalances", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W18/BIP-592 Exit and Withdraw from BAL/AURA/BIP-592.report.txt b/BIPs/2024-W18/BIP-592 Exit and Withdraw from BAL/AURA/BIP-592.report.txt new file mode 100644 index 000000000..b6d26356a --- /dev/null +++ b/BIPs/2024-W18/BIP-592 Exit and Withdraw from BAL/AURA/BIP-592.report.txt @@ -0,0 +1,20 @@ +FILENAME: `BIPs/2024-W18/BIP-592 Exit and Withdraw from BAL/AURA/BIP-592.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `0c0d634a82542428f12888208454027ff0702d08` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/2c312d56-fbf0-4dbf-8a6e-8e5ff541d42a) +``` ++------------------+-----------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=========================================================================================+=========+======================================================================================================================+==============+============+ +| exit | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (TreasuryExtentions/AURA_ARB_BAL_LP_BIP_322) | 0 | { | BIP-592 | N/A | +| | | | "_minOuts": [ | | | +| | | | "raw:361088999999999976669184, 18 decimals:361088.999999999976669184, 6 decimals: 361088999999999976.669184", | | | +| | | | "raw:2046856500000000053346304, 18 decimals:2046856.500000000053346304, 6 decimals: 2046856500000000053.346304", | | | +| | | | "raw:1282351499999999948750848, 18 decimals:1282351.499999999948750848, 6 decimals: 1282351499999999948.750848" | | | +| | | | ] | | | +| | | | } | | | ++------------------+-----------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| withdrawBalances | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (TreasuryExtentions/AURA_ARB_BAL_LP_BIP_322) | 0 | "N/A" | BIP-592 | N/A | ++------------------+-----------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W18/BIP-593.json b/BIPs/2024-W18/BIP-593.json new file mode 100644 index 000000000..97df3cc22 --- /dev/null +++ b/BIPs/2024-W18/BIP-593.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713941864803, + "meta": { + "name": "Transactions Batch", + "description": "Add wstETH/WETH E-CLP gauge on zkEVM", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf21F8CC39f5858cb2eAF5654a863C9b034AE451F", + "gaugeType": "PolygonZkEvm" + } + } + ] +} diff --git a/BIPs/2024-W18/BIP-593.report.txt b/BIPs/2024-W18/BIP-593.report.txt new file mode 100644 index 000000000..97f2fb6cf --- /dev/null +++ b/BIPs/2024-W18/BIP-593.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W18/BIP-593.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `116e3acbd5119ebbb019c9bc2f33f6148c8bc55e` +CHAIN(S): `zkevm` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f822b41b-083a-446d-b1b2-8366cd28088b) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+========================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xe58cd0c79cdff6252476b3445bee1400503e0ae0000200000000000000000066 | ECLP-wstETH-WETH | 0xf21F8CC39f5858cb2eAF5654a863C9b034AE451F | "WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)", | "0x0000000000000000000000000000000000000000", | BIP-593 | 0 | +| | pool_address: 0xe58cD0C79CDff6252476b3445BEE1400503e0aE0 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "wstETH(0x5D8cfF95D7A57c0BF50B30b43c7CC0D52825D4a9)" | "0x8dd590Ebb702C21A41289A0a69B0C6F74BdeCE75" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W18/BIP-594.json b/BIPs/2024-W18/BIP-594.json new file mode 100644 index 000000000..88aa7f9e6 --- /dev/null +++ b/BIPs/2024-W18/BIP-594.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714022661942, + "meta": { + "name": "Transactions Batch", + "description": "Add jitoSOL gauges to Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7542967F91fD6EE8433A41B22C2be8972A002CA5", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W18/BIP-594.report.txt b/BIPs/2024-W18/BIP-594.report.txt new file mode 100644 index 000000000..62c9125df --- /dev/null +++ b/BIPs/2024-W18/BIP-594.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W18/BIP-594.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3321bc047540f3875f553c6ec1c86ba39345a31e` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d064de01-a0ee-4aa5-a8c4-111095867f9d) +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x260dbd54d87a10a0fc9d08622ebc969a3bf4e6bb000200000000000000000536 | jitoSOL/wstETH | 0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-594 | 0 | +| | pool_address: 0x260Dbd54D87A10A0Fc9D08622Ebc969A3Bf4E6bb | fee: 0.1, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "JitoSOL(0x83e1d2310Ade410676B1733d16e89f91822FD5c3)" | "0x8aa73EC870DC4a0af6b471937682a8FC3b8A21f8" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xfb2f7ed572589940e24c5711c002adc59d5e79ef000000000000000000000535 | jitoSOL/wSOL | 0x7542967F91fD6EE8433A41B22C2be8972A002CA5 | "SOL(0x2bcC6D6CdBbDC0a4071e48bb3B969b06B3330c07)", | "0x0000000000000000000000000000000000000000", | BIP-594 | 1 | +| | pool_address: 0xFB2f7eD572589940e24c5711c002aDC59D5e79Ef | fee: 0.1, a-factor: 100 | Style: L0 sidechain, cap: 100.0% | "JitoSOL(0x83e1d2310Ade410676B1733d16e89f91822FD5c3)", | "0x8aa73EC870DC4a0af6b471937682a8FC3b8A21f8", | | | +| | | | | "jitoSOL/wSOL(0xFB2f7eD572589940e24c5711c002aDC59D5e79Ef)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W18/BIP-595 sDAI-aUSDC on Optimism.json b/BIPs/2024-W18/BIP-595 sDAI-aUSDC on Optimism.json new file mode 100644 index 000000000..c3db34e9e --- /dev/null +++ b/BIPs/2024-W18/BIP-595 sDAI-aUSDC on Optimism.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714059375553, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x28bcb08211572a11c12df47fbb5d203067878bdc789620fa721f112ae129597d" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W18/BIP-595 sDAI-aUSDC on Optimism.report.txt b/BIPs/2024-W18/BIP-595 sDAI-aUSDC on Optimism.report.txt new file mode 100644 index 000000000..2a64917ce --- /dev/null +++ b/BIPs/2024-W18/BIP-595 sDAI-aUSDC on Optimism.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W18/BIP-595 sDAI-aUSDC on Optimism.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `383551dbaa03bcb18dc4204ade9b78a3221ea0b3` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e6691915-668b-4916-aa5e-03b33b98a88a) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x876e0a21626c33bdab879330505eccc6091aa60700020000000000000000012e | GDSRH | 0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf | "sDAI(0x2218a117083f5B482B0bB821d27056Ba9c04b1D3)", | "0x15ACEE5F73b36762Ab1a6b7C98787b8148447898", | BIP-595 | 0 | +| | pool_address: 0x876E0A21626c33BDaB879330505eccc6091Aa607 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "stataOptUSDCn(0x4DD03dfD36548C840B563745e3FBeC320F37BA7e)" | "0xdFa8d2b3c146b8a10B5d63CA0306AEa84B602cfb" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W18/BIP-XXX-claim-extra-SAFE.report.txt b/BIPs/2024-W18/BIP-XXX-claim-extra-SAFE.report.txt new file mode 100644 index 000000000..955900455 --- /dev/null +++ b/BIPs/2024-W18/BIP-XXX-claim-extra-SAFE.report.txt @@ -0,0 +1,35 @@ +FILENAME: `BIPs/2024-W18/BIP-XXX-claim-extra-SAFE.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `d88ef6032ec5e5072f07ead543114af4bea8f778` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5e5a9bfc-a852-43a9-9b92-0c4b06adfd7b) +``` ++-----------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+====================================================================================================================+==============+============+ +| claim | 0x20cF5bA8aBA68Cd7Ca3d0cAfAc54dA807c772418 (Not Found) | 0 | { | N/A | N/A | +| | | | "merkleProof": [ | | | +| | | | [ | | | +| | | | "0xe3f30724dc7b68f4dc7bef54b812e18454d9b9b278887f4f09de5ee8dd2fbb97" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "0x403b039b300b5d3f14f5a95011807ad1f279c31b5c6668e9dad1cbd43d5d9271" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "0x25ddc11367cfc9aeab1086adcc396ffdaeb90e491021ab488fcacd43037cd4e6" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "0xc2628e8800f0dbbce626dcf83c09a30a5a97d79413dcb79ca32a75d3cc1e66b8" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "0x933f0c6611414cc50cc739051a4e8140ca04f4ca6113746cedf8e9174aa9a6df" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "amountAllocated": [ | | | +| | | | [ | | | +| | | | "raw:119196472786989781864064, 18 decimals:119196.472786989781864064, 6 decimals: 119196472786989781.864064" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-596.json b/BIPs/2024-W19/BIP-596.json new file mode 100644 index 000000000..246db492a --- /dev/null +++ b/BIPs/2024-W19/BIP-596.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714593346539, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-596.report.txt b/BIPs/2024-W19/BIP-596.report.txt new file mode 100644 index 000000000..df942cf4b --- /dev/null +++ b/BIPs/2024-W19/BIP-596.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W19/BIP-596.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `964352027a139a09eb91e5e345074794b4608fa4` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/58c5f78f-d15f-4bdb-b488-b71eca0c2c9c) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | weETH/wETH | 0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D | "weETH(0x04C0599Ae5A44757c0af6F9eC3b93da8976c150A)", | "0x5a7A419C59eAAdec8Dc00bc93ac95612e6e154Cf", | BIP-596 | 0 | +| | pool_address: 0xaB99a3e856dEb448eD99713dfce62F937E2d4D74 | fee: 0.04, a-factor: 600 | Style: L0 sidechain, cap: 100.0% | "WETH(0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "weETH/wETH(0xaB99a3e856dEb448eD99713dfce62F937E2d4D74)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-598-claim-extra-SAFE.json b/BIPs/2024-W19/BIP-598-claim-extra-SAFE.json new file mode 100644 index 000000000..c2645177a --- /dev/null +++ b/BIPs/2024-W19/BIP-598-claim-extra-SAFE.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714063483845, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xd463e052134c6313d4f4f76895d2eab5b96aa4db944fc5e2b3963a8375f02527" + }, + "transactions": [ + { + "to": "0x20cF5bA8aBA68Cd7Ca3d0cAfAc54dA807c772418", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + }, + { + "name": "amountAllocated", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "merkleProof": "[0xe3f30724dc7b68f4dc7bef54b812e18454d9b9b278887f4f09de5ee8dd2fbb97,0x403b039b300b5d3f14f5a95011807ad1f279c31b5c6668e9dad1cbd43d5d9271,0x25ddc11367cfc9aeab1086adcc396ffdaeb90e491021ab488fcacd43037cd4e6,0xc2628e8800f0dbbce626dcf83c09a30a5a97d79413dcb79ca32a75d3cc1e66b8,0x933f0c6611414cc50cc739051a4e8140ca04f4ca6113746cedf8e9174aa9a6df]", + "amountAllocated": "119196472786989781864064" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-598-claim-extra-SAFE.report.txt b/BIPs/2024-W19/BIP-598-claim-extra-SAFE.report.txt new file mode 100644 index 000000000..5902b12cd --- /dev/null +++ b/BIPs/2024-W19/BIP-598-claim-extra-SAFE.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/2024-W19/BIP-598-claim-extra-SAFE.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9914071444dc705fe225ed62f608dab3c6b4fd56` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/2230f5eb-3bf2-47ad-8202-f5e7a7e055d7) +``` ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+=========+==================================================================================================================+==============+============+ +| claim | 0x20cF5bA8aBA68Cd7Ca3d0cAfAc54dA807c772418 (Not Found) | 0 | { | BIP-598 | N/A | +| | | | "merkleProof": [ | | | +| | | | "0xe3f30724dc7b68f4dc7bef54b812e18454d9b9b278887f4f09de5ee8dd2fbb97", | | | +| | | | "0x403b039b300b5d3f14f5a95011807ad1f279c31b5c6668e9dad1cbd43d5d9271", | | | +| | | | "0x25ddc11367cfc9aeab1086adcc396ffdaeb90e491021ab488fcacd43037cd4e6", | | | +| | | | "0xc2628e8800f0dbbce626dcf83c09a30a5a97d79413dcb79ca32a75d3cc1e66b8", | | | +| | | | "0x933f0c6611414cc50cc739051a4e8140ca04f4ca6113746cedf8e9174aa9a6df" | | | +| | | | ], | | | +| | | | "amountAllocated": [ | | | +| | | | "raw:119196472786989781864064, 18 decimals:119196.472786989781864064, 6 decimals: 119196472786989781.864064" | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-599-PAR-EURA-gauge-mainnet.json b/BIPs/2024-W19/BIP-599-PAR-EURA-gauge-mainnet.json new file mode 100644 index 000000000..0c6653703 --- /dev/null +++ b/BIPs/2024-W19/BIP-599-PAR-EURA-gauge-mainnet.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467092198, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x597AEbfe41dCc042db206Eb888c42560a22c9303", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-599-PAR-EURA-gauge-mainnet.report.txt b/BIPs/2024-W19/BIP-599-PAR-EURA-gauge-mainnet.report.txt new file mode 100644 index 000000000..d74752715 --- /dev/null +++ b/BIPs/2024-W19/BIP-599-PAR-EURA-gauge-mainnet.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W19/BIP-599-PAR-EURA-gauge-mainnet.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `20bbe86d61c165ea16d20612a92a373c2c855bb6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ad31b293-2d88-46dd-b4d1-5c8d10eb6d04) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=====================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x2044afef1268100918f88de66a3532eab3d8f3ef00020000000000000000068a | ECLP-PAR-EURA | 0x597AEbfe41dCc042db206Eb888c42560a22c9303 | "EURA(0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8)", | "0x0000000000000000000000000000000000000000", | BIP-599 | 0 | +| | pool_address: 0x2044aFEF1268100918F88De66a3532Eab3D8f3ef | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "PAR(0x68037790A0229e9Ce6EaA8A99ea92964106C4703)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.json b/BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.json new file mode 100644 index 000000000..93aff768a --- /dev/null +++ b/BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467304707, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x59bb76688ae51b7a07008932d954783a03a99732d78960a9f7d3a26ee0d3c0b4" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x597AEbfe41dCc042db206Eb888c42560a22c9303", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.report.txt b/BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.report.txt new file mode 100644 index 000000000..04ef28db5 --- /dev/null +++ b/BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.report.txt @@ -0,0 +1,51 @@ +FILENAME: `BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `20bbe86d61c165ea16d20612a92a373c2c855bb6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/718ad9c6-d4a4-4764-9a34-f79e253b6562) +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-599 | 0 | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-599 | 2 | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W19/BIP-599-PAR-EURA-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `20bbe86d61c165ea16d20612a92a373c2c855bb6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/383ceada-edaa-436c-a247-da8975313d8b) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+==================================================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-599 | N/A | +| | | | "target": [ | | | +| | | | "0x597AEbfe41dCc042db206Eb888c42560a22c9303 (N/A) " | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-600-paUSD-GYD-gauge.json b/BIPs/2024-W19/BIP-600-paUSD-GYD-gauge.json new file mode 100644 index 000000000..f09d82ba5 --- /dev/null +++ b/BIPs/2024-W19/BIP-600-paUSD-GYD-gauge.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467092198, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x30cEE2F8Cb8e53FC587f6B2578241a118188D530", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-600-paUSD-GYD-gauge.report.txt b/BIPs/2024-W19/BIP-600-paUSD-GYD-gauge.report.txt new file mode 100644 index 000000000..1d91aa08e --- /dev/null +++ b/BIPs/2024-W19/BIP-600-paUSD-GYD-gauge.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W19/BIP-600-paUSD-GYD-gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a4cdf5596d44ea96911f9622749b19bb28099788` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/50debff8-a4c4-4949-b9a5-d158bf2a11f9) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xae2d97cbbc13b67988eced2aba0f6939655ed3de00020000000000000000068b | ECLP-paUSD-GYD | 0x30cEE2F8Cb8e53FC587f6B2578241a118188D530 | "paUSD(0x571f54D23cDf2211C83E9A0CbD92AcA36c48Fa02)", | "0x0000000000000000000000000000000000000000", | BIP-600 | 0 | +| | pool_address: 0xae2D97CbBc13B67988ECEd2abA0F6939655eD3De | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.json b/BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.json new file mode 100644 index 000000000..8f6e33cbe --- /dev/null +++ b/BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467304707, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x59bb76688ae51b7a07008932d954783a03a99732d78960a9f7d3a26ee0d3c0b4" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x30cEE2F8Cb8e53FC587f6B2578241a118188D530", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.report.txt b/BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.report.txt new file mode 100644 index 000000000..5c61a63bb --- /dev/null +++ b/BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.report.txt @@ -0,0 +1,51 @@ +FILENAME: `BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `a4cdf5596d44ea96911f9622749b19bb28099788` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/be682607-0509-4475-a1f1-d5a420080e4f) +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-600 | 0 | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-600 | 2 | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W19/BIP-600-paUSD-GYD-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `a4cdf5596d44ea96911f9622749b19bb28099788` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cd893fa1-eb0c-46e8-8cec-f95855aeb95f) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+==================================================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-600 | N/A | +| | | | "target": [ | | | +| | | | "0x30cEE2F8Cb8e53FC587f6B2578241a118188D530 (N/A) " | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json b/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json new file mode 100644 index 000000000..4549fb44c --- /dev/null +++ b/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467092198, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x87306F713EaB296f87CA4519295668fb4Bd51F04", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.report.txt b/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.report.txt new file mode 100644 index 000000000..69324e283 --- /dev/null +++ b/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `195de6af303fbf74d3ae4213b3b40aa824f3e424` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/25011123-62e6-408f-a5a3-86e4b9aef530) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xc77a0c0998816f7862aba46f19be6dda7cbb65a8000200000000000000000e77 | ECLP-paUSD-USDC-rh | 0x87306F713EaB296f87CA4519295668fb4Bd51F04 | "stataPolUSDCn(0x2dCa80061632f3F87c9cA28364d1d0c30cD79a19)", | "0x7d10050F608c8EFFf118eDd1416D82a0EF2d7531", | BIP-601 | 0 | +| | pool_address: 0xc77A0c0998816f7862aba46F19be6DDa7cbb65a8 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "paUSD(0x8054d4D130C3A84852f379424Bcac75673a7486B)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.json b/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.json new file mode 100644 index 000000000..f4dc803b7 --- /dev/null +++ b/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467304707, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x59bb76688ae51b7a07008932d954783a03a99732d78960a9f7d3a26ee0d3c0b4" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x87306F713EaB296f87CA4519295668fb4Bd51F04", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.report.txt b/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.report.txt new file mode 100644 index 000000000..3c6ab713e --- /dev/null +++ b/BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.report.txt @@ -0,0 +1,51 @@ +FILENAME: `BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `195de6af303fbf74d3ae4213b3b40aa824f3e424` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a354ae32-1aa0-4eee-a1fb-bcc761c5b49e) +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-601 | 0 | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-601 | 2 | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W19/BIP-601-paUSD-stataPolUSDCn-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `195de6af303fbf74d3ae4213b3b40aa824f3e424` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4de8736d-d489-45b5-9372-f81adde4816d) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+======================================================================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-601 | N/A | +| | | | "target": [ | | | +| | | | "0x87306F713EaB296f87CA4519295668fb4Bd51F04 (root_gauges/ECLP-paUSD-USDC-rh-polygon-root-8730) " | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-602-enable-par-eure-gauge-polygon.json b/BIPs/2024-W19/BIP-602-enable-par-eure-gauge-polygon.json new file mode 100644 index 000000000..77e0d3a4f --- /dev/null +++ b/BIPs/2024-W19/BIP-602-enable-par-eure-gauge-polygon.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467092198, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9b2defbf22be1ccd63f36dadf69842feb5e7b8df", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-602-enable-par-eure-gauge-polygon.report.txt b/BIPs/2024-W19/BIP-602-enable-par-eure-gauge-polygon.report.txt new file mode 100644 index 000000000..866240aaf --- /dev/null +++ b/BIPs/2024-W19/BIP-602-enable-par-eure-gauge-polygon.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W19/BIP-602-enable-par-eure-gauge-polygon.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `24d81f5e4e7f848da0e50206756d5fd70ccfda8e` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/6cdbab13-497a-4307-902d-a9e21e2d64a4) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=====================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x121363653c22f1c8bccbbf1b1aa8e1af85929784000200000000000000000e75 | ECLP-PAR-EURe | 0x9b2defbf22be1ccd63f36dadf69842feb5e7b8df | "EURe(0x18ec0A6E18E5bc3784fDd3a3634b31245ab704F6)", | "0x0000000000000000000000000000000000000000", | BIP-602 | 0 | +| | pool_address: 0x121363653c22F1c8bccBbf1b1aA8e1af85929784 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "PAR(0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.json b/BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.json new file mode 100644 index 000000000..35408d082 --- /dev/null +++ b/BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467304707, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x59bb76688ae51b7a07008932d954783a03a99732d78960a9f7d3a26ee0d3c0b4" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9b2defbf22be1ccd63f36dadf69842feb5e7b8df", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.report.txt b/BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.report.txt new file mode 100644 index 000000000..c2cad8af5 --- /dev/null +++ b/BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.report.txt @@ -0,0 +1,51 @@ +FILENAME: `BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `24d81f5e4e7f848da0e50206756d5fd70ccfda8e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5ca0fd33-31da-4fec-ae3e-e264dd59a15f) +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-602 | 0 | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-602 | 2 | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W19/BIP-602-par-eure-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `24d81f5e4e7f848da0e50206756d5fd70ccfda8e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c22b4c3b-5bec-48d7-8b2f-3278e578290a) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+-------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+=================================================================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-602 | N/A | +| | | | "target": [ | | | +| | | | "0x9b2defbf22bE1CCD63f36DADf69842FEB5e7b8Df (root_gauges/ECLP-PAR-EURe-polygon-root-9b2d) " | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+-------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-603-enable-par-eura-gauge-polygon.json b/BIPs/2024-W19/BIP-603-enable-par-eura-gauge-polygon.json new file mode 100644 index 000000000..db929212d --- /dev/null +++ b/BIPs/2024-W19/BIP-603-enable-par-eura-gauge-polygon.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467092198, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7f5A5c80cEeB1C91718a71030F67788F3810be98", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-603-enable-par-eura-gauge-polygon.report.txt b/BIPs/2024-W19/BIP-603-enable-par-eura-gauge-polygon.report.txt new file mode 100644 index 000000000..333865efa --- /dev/null +++ b/BIPs/2024-W19/BIP-603-enable-par-eura-gauge-polygon.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W19/BIP-603-enable-par-eura-gauge-polygon.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `05764a5bd0fca22b8d8272cbcc80e39ae0c77bce` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/df377ff1-ef59-4bcf-957b-a9f49af67c1d) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xba773022202887379f0733f111e4580f53296ada000200000000000000000e76 | ECLP-PAR-EUROe | 0x7f5A5c80cEeB1C91718a71030F67788F3810be98 | "EUROe(0x820802Fa8a99901F52e39acD21177b0BE6EE2974)", | "0x0000000000000000000000000000000000000000", | BIP-603 | 0 | +| | pool_address: 0xBA773022202887379f0733f111E4580F53296ada | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "PAR(0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.json b/BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.json new file mode 100644 index 000000000..3f1a05c3d --- /dev/null +++ b/BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467304707, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x59bb76688ae51b7a07008932d954783a03a99732d78960a9f7d3a26ee0d3c0b4" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7f5A5c80cEeB1C91718a71030F67788F3810be98", + "data": "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.report.txt b/BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.report.txt new file mode 100644 index 000000000..54737a105 --- /dev/null +++ b/BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.report.txt @@ -0,0 +1,51 @@ +FILENAME: `BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `05764a5bd0fca22b8d8272cbcc80e39ae0c77bce` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/82928015-107a-45c2-b3ff-82b1e52752d7) +``` ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-603 | 0 | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/setRelativeWeightCap(uint256) | 0xae60dce27f51ce5815357b9f6b40f200557867f8222262a1646c005d09b7dfba | BIP-603 | 2 | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/setRelativeWeightCap(uint256) | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/setRelativeWeightCap(uint256) | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/setRelativeWeightCap(uint256) | | | | ++-----------------------+---------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W19/BIP-603-par-euroa-setWeightTo2Percent.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `05764a5bd0fca22b8d8272cbcc80e39ae0c77bce` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/49e0aa25-f947-4e9e-b8b7-b62eee10d7e5) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+==================================================================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-603 | N/A | +| | | | "target": [ | | | +| | | | "0x7f5A5c80cEeB1C91718a71030F67788F3810be98 (root_gauges/ECLP-PAR-EUROe-polygon-root-7f5a) " | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0x10d3eb0400000000000000000000000000000000000000000000000000470de4df820000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W19/BIP-604.json b/BIPs/2024-W19/BIP-604.json new file mode 100644 index 000000000..5ffa66339 --- /dev/null +++ b/BIPs/2024-W19/BIP-604.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714651774491, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2024-W19/BIP-604.report.txt b/BIPs/2024-W19/BIP-604.report.txt new file mode 100644 index 000000000..e5270361e --- /dev/null +++ b/BIPs/2024-W19/BIP-604.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W19/BIP-604.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e001cb69da84064ce0c39580bd6ce4777c549e71` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a575e827-4070-4670-96b1-b39b1a59b769) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x821afe819450a359e29a5209c48f2fa3321c8ad200020000000000000000010d | ECLP-sDAI-USDC-rh | 0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1 | "stataBasUSDC (0x4EA71A20e655794051D1eE8b6e4A3269B13ccaCc)", | "0x4467Ab7BC794bb3929d77e826328BD378bf5392F", | BIP-604 | 0 | +| | pool_address: 0x821aFE819450A359E29a5209C48f2Fa3321C8AD2 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sDAI (0x99aC4484e8a1dbd6A185380B3A811913Ac884D87)" | "0xeC0C14Ea7fF20F104496d960FDEBF5a0a0cC14D0" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W2/BIP-524.json b/BIPs/2024-W2/BIP-524.json new file mode 100644 index 000000000..9b15fd464 --- /dev/null +++ b/BIPs/2024-W2/BIP-524.json @@ -0,0 +1,57 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703086650513, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa7d09b2b22232e0162c7f945099648f7e91e1a4aee3d3fc61155d3df7530ee1d" + }, + "transactions": [ + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "dst", "type": "address" }, + { "name": "wad", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "wad": "8480000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "17170000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W2/BIP-524.report.txt b/BIPs/2024-W2/BIP-524.report.txt new file mode 100644 index 000000000..d0a6f43bc --- /dev/null +++ b/BIPs/2024-W2/BIP-524.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W2/BIP-524.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `74391cbe78e186135f11aaabf70ac48f2e42846f` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================+========================================+=========+============+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 8.48 (RAW: 8480000000000000000) | BIP-524 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 17170.0 (RAW: 17170000000000000000000) | BIP-524 | 1 | ++------------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W2/BIP-525.json b/BIPs/2024-W2/BIP-525.json new file mode 100644 index 000000000..8edbe8912 --- /dev/null +++ b/BIPs/2024-W2/BIP-525.json @@ -0,0 +1,56 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704201602059, + "meta": { + "name": "Transactions Batch", + "description": "[BIP-XXX] Business Development Funding Proposal Q1-2024 and Retroactive Q4-2023 Funding", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x3e172d8a9c00fe1479e8fd9a6ce95f01528e1c053fae439f064d486258f32b28" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2", + "value": "5000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "20000000000" + } + }, + { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "300000000000000000", + "data": "0x", + "contractMethod": null, + "contractInputsValues": { "spender": "", "value": "" } + } + ] +} diff --git a/BIPs/2024-W2/BIP-525.report.txt b/BIPs/2024-W2/BIP-525.report.txt new file mode 100644 index 000000000..06327fcd0 --- /dev/null +++ b/BIPs/2024-W2/BIP-525.report.txt @@ -0,0 +1,27 @@ +FILENAME: `BIPs/2024-W2/BIP-525.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e5847b8e027cc77bb8be20b35f176e00bf1e8990` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2 | 5000.0 (RAW: 5000000000) | BIP-525 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 20000.0 (RAW: 20000000000) | BIP-525 | 1 | ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W2/BIP-525.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e5847b8e027cc77bb8be20b35f176e00bf1e8990` +CHAIN(S): `mainnet` +``` ++-----------+--------------------------------------------------------+--------------------+------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+========================================================+====================+==================+==============+============+ +| !!N/A!! | 0xC7E84373FC63A17B5B22EBaF86219141B630cD7a (Not Found) | 300000000000000000 | { | BIP-525 | N/A | +| | | | "spender": "", | | | +| | | | "value": "" | | | +| | | | } | | | ++-----------+--------------------------------------------------------+--------------------+------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W2/BIP-526.json b/BIPs/2024-W2/BIP-526.json new file mode 100644 index 000000000..0e7082d49 --- /dev/null +++ b/BIPs/2024-W2/BIP-526.json @@ -0,0 +1,117 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704203200837, + "meta": { + "name": "Transactions Batch", + "description": "[BIP-XXX] Pay BAL to DAO Multisig signers, H2-2023", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xc5a7d38a574224f0f0216c9a1167f7e3ae930cb4667e8bf4b4c0f2fd9bf44b7e" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9F7dfAb2222A473284205cdDF08a677726d786A0", + "amount": "500000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W2/BIP-526.report.txt b/BIPs/2024-W2/BIP-526.report.txt new file mode 100644 index 000000000..ff72f6fdd --- /dev/null +++ b/BIPs/2024-W2/BIP-526.report.txt @@ -0,0 +1,21 @@ +FILENAME: `BIPs/2024-W2/BIP-526.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `f5497ae9f5bdb6562095fc19f12795f7f96594fb` +CHAIN(S): `mainnet` +``` ++------------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+==================================================================+====================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/mounibec:0x0951FF0835302929d6c0162b3d2495A85e38ec3A | 500.0 (RAW: 500000000000000000000) | BIP-526 | 0 | ++------------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xMaki:0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 1 | ++------------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xSausageDoge:0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 2 | ++------------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/tritium:0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | 500.0 (RAW: 500000000000000000000) | BIP-526 | 3 | ++------------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/nanexcool:0x823DF0278e4998cD0D06FB857fBD51e85b18A250 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 4 | ++------------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/StefanDGeorge:0x9F7dfAb2222A473284205cdDF08a677726d786A0 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 5 | ++------------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W2/BIP-527.json b/BIPs/2024-W2/BIP-527.json new file mode 100644 index 000000000..364888002 --- /dev/null +++ b/BIPs/2024-W2/BIP-527.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704378156791, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xfce229b389ca02b21a37a4372c5a0d9c7e39648a05f1974658f3090880c80b8f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x16289F675Ca54312a8fCF99341e7439982888077", + "data": "0xd34fb267" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x790DE8ABE859f399023BCe73B5FE5C4870cD816A", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W2/BIP-527.report.txt b/BIPs/2024-W2/BIP-527.report.txt new file mode 100644 index 000000000..71062814f --- /dev/null +++ b/BIPs/2024-W2/BIP-527.report.txt @@ -0,0 +1,68 @@ +FILENAME: `BIPs/2024-W2/BIP-527.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `5ad4b0e9cc8d7964cfe31746575dc0eed3bf35bf` +CHAIN(S): `polygon` +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+=======+==============+=========+============+=======================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a | 2eur (agEUR) | 200 | 0x790DE8ABE859f399023BCe73B5FE5C4870cD816A | 0.05% | 2.0% | L0 sidechain | BIP-527 | 3 | ['jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)', '2eur (agEUR)(0x77e97D4908Be63394bc5DFf72C8C7Bddf1699882)', 'agEUR(0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/2024-W2/BIP-527.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `5ad4b0e9cc8d7964cfe31746575dc0eed3bf35bf` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 0 | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 2 | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W2/BIP-527.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `5ad4b0e9cc8d7964cfe31746575dc0eed3bf35bf` +CHAIN(S): `mainnet` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+=========================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-527 | N/A | +| | | | "target": [ | | | +| | | | "0x16289F675Ca54312a8fCF99341e7439982888077 (N/A) " | | | +| | | | ], | | | +| | | | "data": "0xd34fb267" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W20/BIP-605-inankrETH-ankrETH-Gauge.json b/BIPs/2024-W20/BIP-605-inankrETH-ankrETH-Gauge.json new file mode 100644 index 000000000..3196f4b30 --- /dev/null +++ b/BIPs/2024-W20/BIP-605-inankrETH-ankrETH-Gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715204879583, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x5e4815b7ae668c5838388742529594458279d3b5e3e609d3e7d3ee7e4704bcc5" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCC9723faDed81a9448a9664c39C0Df2e77FDfA2E", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W20/BIP-605-inankrETH-ankrETH-Gauge.report.txt b/BIPs/2024-W20/BIP-605-inankrETH-ankrETH-Gauge.report.txt new file mode 100644 index 000000000..3030fa273 --- /dev/null +++ b/BIPs/2024-W20/BIP-605-inankrETH-ankrETH-Gauge.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W20/BIP-605-inankrETH-ankrETH-Gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `d0af1fe839dcce832b2c9000f2d9267b91d69981` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d411b376-39bd-47f2-8b1c-9249f81f6156) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xdb3575310dd8f6c9e51be290fed9a2db32743fde00000000000000000000068e | inankrETH/ankrETH | 0xCC9723faDed81a9448a9664c39C0Df2e77FDfA2E | "inankrETH/ankrETH (0xdB3575310Dd8F6c9E51be290FeD9a2Db32743FDE)", | "0x0000000000000000000000000000000000000000", | BIP-605 | 0 | +| | pool_address: 0xdB3575310Dd8F6c9E51be290FeD9a2Db32743FDE | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "ankrETH (0xE95A203B1a91a908F9B9CE46459d101078c2c3cb)", | "0x00F8e64a8651E3479A0B20F46b1D462Fe29D6aBc", | | | +| | | | | "InankrETH (0xfa2629B9cF3998D52726994E0FcdB750224D8B9D)" | "0x8bC73134A736437da780570308d3b37b67174ddb" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W20/BIP-606-wOETH-wETH-Gauge.json b/BIPs/2024-W20/BIP-606-wOETH-wETH-Gauge.json new file mode 100644 index 000000000..ed5b6db50 --- /dev/null +++ b/BIPs/2024-W20/BIP-606-wOETH-wETH-Gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715205467820, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb1806db12c8a5fb1931c85d64fce6558b2ba928fce9bef1c614279fb56c1086c" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W20/BIP-606-wOETH-wETH-Gauge.report.txt b/BIPs/2024-W20/BIP-606-wOETH-wETH-Gauge.report.txt new file mode 100644 index 000000000..287cd4f9e --- /dev/null +++ b/BIPs/2024-W20/BIP-606-wOETH-wETH-Gauge.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W20/BIP-606-wOETH-wETH-Gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `71df2a8c287829cc3f17d69b62c45e0019f22f61` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/117f39b1-621f-4898-8882-1ab8e6d5196e) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+========================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a | ECLP-WOETH-WETH | 0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b | "WETH (0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | BIP-606 | 0 | +| | pool_address: 0xef0c116A2818A5b1A5D836A291856A321f43C2Fb | fee: 0.04, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "WOETH (0xD8724322f44E5c58D7A815F542036fb17DbbF839)" | "0xEfA422c31fc71A636c2C630d226DbA4ccEd1073a" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W21/BIP-607/BIP-607-BEETS-Claim-and-Transfer.json b/BIPs/2024-W21/BIP-607/BIP-607-BEETS-Claim-and-Transfer.json new file mode 100644 index 000000000..6cb76ec0f --- /dev/null +++ b/BIPs/2024-W21/BIP-607/BIP-607-BEETS-Claim-and-Transfer.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "250", + "createdAt": 1715812789707, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xFe2022da08d17ac8388F5bEFE4F71456255105A4", + "createdFromOwnerAddress": "", + "checksum": "0xde43f0a0ae0d94da5d5cd5222d9547d94e4e984588228acdfad8a9485131efbb" + }, + "transactions": [ + { + "to": "0x8D381EC09356C3F1805c54B2BB0867e8b417DC3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [{ "name": "token", "type": "address" }], + "name": "release", + "payable": false + }, + "contractInputsValues": { + "token": "0xF24Bcf4d1e507740041C9cFd2DddB29585aDCe1e" + } + }, + { + "to": "0xF24Bcf4d1e507740041C9cFd2DddB29585aDCe1e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "10000000000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W21/BIP-607/BIP-607-BEETS-Claim-and-Transfer.report.txt b/BIPs/2024-W21/BIP-607/BIP-607-BEETS-Claim-and-Transfer.report.txt new file mode 100644 index 000000000..c47523f16 --- /dev/null +++ b/BIPs/2024-W21/BIP-607/BIP-607-BEETS-Claim-and-Transfer.report.txt @@ -0,0 +1,28 @@ +FILENAME: `BIPs/2024-W21/BIP-607/BIP-607-BEETS-Claim-and-Transfer.json` +MULTISIG: `multisigs/dao (fantom:0xFe2022da08d17ac8388F5bEFE4F71456255105A4)` +COMMIT: `N/A` +CHAIN(S): `fantom` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/44b86dfb-3a4d-4f85-8c52-89e25155defb) +``` ++------------+--------------------------------------------------+------------------------------------------------+----------------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+==================================================+================================================+==============================================+=========+============+ +| transfer | BEETS:0xF24Bcf4d1e507740041C9cFd2DddB29585aDCe1e | N/A:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 10000000.0 (RAW: 10000000000000000000000000) | BIP-607 | 1 | ++------------+--------------------------------------------------+------------------------------------------------+----------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W21/BIP-607/BIP-607-BEETS-Claim-and-Transfer.json` +MULTISIG: `multisigs/dao (fantom:0xFe2022da08d17ac8388F5bEFE4F71456255105A4)` +COMMIT: `N/A` +CHAIN(S): `fantom` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c87029e1-4a4f-4740-a74e-d815403a4ca2) +``` ++-----------+--------------------------------------------------------------------------------+---------+-----------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+================================================================================+=========+=================================================================+==============+============+ +| release | 0x8D381EC09356C3F1805c54B2BB0867e8b417DC3a (beethoven_x/friendly_fork_vesting) | 0 | { | BIP-607 | N/A | +| | | | "token": [ | | | +| | | | "0xF24Bcf4d1e507740041C9cFd2DddB29585aDCe1e (tokens/BEETS)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------------------------------+---------+-----------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W21/BIP-607/BIP-607-FTM-Multisig-Updates.json b/BIPs/2024-W21/BIP-607/BIP-607-FTM-Multisig-Updates.json new file mode 100644 index 000000000..82ec5c329 --- /dev/null +++ b/BIPs/2024-W21/BIP-607/BIP-607-FTM-Multisig-Updates.json @@ -0,0 +1,117 @@ +{ + "version": "1.0", + "chainId": "250", + "createdAt": 1713981918225, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xFe2022da08d17ac8388F5bEFE4F71456255105A4", + "createdFromOwnerAddress": "", + "checksum": "0xc58143cf1dec8a2cd1d1cd35eb8bbe17e8bffe6eb5acf96296fa06f75b724e3e" + }, + "transactions": [ + { + "to": "0xFe2022da08d17ac8388F5bEFE4F71456255105A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "_threshold": "6" + } + }, + { + "to": "0xFe2022da08d17ac8388F5bEFE4F71456255105A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "_threshold": "6" + } + }, + { + "to": "0xFe2022da08d17ac8388F5bEFE4F71456255105A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "_threshold": "6" + } + }, + { + "to": "0xFe2022da08d17ac8388F5bEFE4F71456255105A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "_threshold": "6" + } + }, + { + "to": "0xFe2022da08d17ac8388F5bEFE4F71456255105A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "_threshold": "6" + } + }, + { + "to": "0xFe2022da08d17ac8388F5bEFE4F71456255105A4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "_threshold": "6" + } + } + ] +} diff --git a/BIPs/2024-W21/BIP-607/BIP-607-FTM-Multisig-Updates.report.txt b/BIPs/2024-W21/BIP-607/BIP-607-FTM-Multisig-Updates.report.txt new file mode 100644 index 000000000..5f4b43372 --- /dev/null +++ b/BIPs/2024-W21/BIP-607/BIP-607-FTM-Multisig-Updates.report.txt @@ -0,0 +1,64 @@ +FILENAME: `BIPs/2024-W21/BIP-607/BIP-607-FTM-Multisig-Updates.json` +MULTISIG: `multisigs/dao (fantom:0xFe2022da08d17ac8388F5bEFE4F71456255105A4)` +COMMIT: `N/A` +CHAIN(S): `fantom` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/3c5d659e-13bf-41db-9c01-47ef0a9bb71e) +``` ++-----------------------+------------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=======================+============================================================+=========+=============================================================================+==============+============+ +| addOwnerWithThreshold | 0xFe2022da08d17ac8388F5bEFE4F71456255105A4 (multisigs/dao) | 0 | { | BIP-607 | N/A | +| | | | "owner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/emergency/zendragon)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+------------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| addOwnerWithThreshold | 0xFe2022da08d17ac8388F5bEFE4F71456255105A4 (multisigs/dao) | 0 | { | BIP-607 | N/A | +| | | | "owner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/emergency/zekraken)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+------------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| addOwnerWithThreshold | 0xFe2022da08d17ac8388F5bEFE4F71456255105A4 (multisigs/dao) | 0 | { | BIP-607 | N/A | +| | | | "owner": [ | | | +| | | | "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D (EOA/maxi_deployers/mikeb)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+------------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| addOwnerWithThreshold | 0xFe2022da08d17ac8388F5bEFE4F71456255105A4 (multisigs/dao) | 0 | { | BIP-607 | N/A | +| | | | "owner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+------------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| addOwnerWithThreshold | 0xFe2022da08d17ac8388F5bEFE4F71456255105A4 (multisigs/dao) | 0 | { | BIP-607 | N/A | +| | | | "owner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+------------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| addOwnerWithThreshold | 0xFe2022da08d17ac8388F5bEFE4F71456255105A4 (multisigs/dao) | 0 | { | BIP-607 | N/A | +| | | | "owner": [ | | | +| | | | "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F (EOA/dao/tritium)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+------------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W21/BIP-609-Enable-Gauge-wrsETH-WETH-Optimism.json b/BIPs/2024-W21/BIP-609-Enable-Gauge-wrsETH-WETH-Optimism.json new file mode 100644 index 000000000..a586f9173 --- /dev/null +++ b/BIPs/2024-W21/BIP-609-Enable-Gauge-wrsETH-WETH-Optimism.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715820632587, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8e3f82178826b5df18d96bf7b83969a7e7905582be92a929360e54ee2cb66088" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x65a5C255cfDDb99CAcCaCeE6f0FA63F3AB886e79", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W21/BIP-609-Enable-Gauge-wrsETH-WETH-Optimism.report.txt b/BIPs/2024-W21/BIP-609-Enable-Gauge-wrsETH-WETH-Optimism.report.txt new file mode 100644 index 000000000..e87c8372b --- /dev/null +++ b/BIPs/2024-W21/BIP-609-Enable-Gauge-wrsETH-WETH-Optimism.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W21/BIP-609-Enable-Gauge-wrsETH-WETH-Optimism.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e05789679f94932bafd61eb06c9c5a5d8e09bc83` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cf1ccc62-baba-4a98-80dc-dd0191a121d2) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x73a7fe27fe9545d53924e529acf11f3073841b9e000000000000000000000133 | wrsETH/wETH | 0x65a5C255cfDDb99CAcCaCeE6f0FA63F3AB886e79 | "WETH (0x4200000000000000000000000000000000000006)", | "0x0000000000000000000000000000000000000000", | BIP-609 | 0 | +| | pool_address: 0x73A7fe27fe9545D53924E529Acf11F3073841b9e | fee: 0.04, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "wrsETH/wETH (0x73A7fe27fe9545D53924E529Acf11F3073841b9e)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wrsETH (0x87eEE96D50Fb761AD85B1c982d28A042169d61b1)" | "0x1373A61449C26CC3F48C1B4c547322eDAa36eB12" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W22/BIP-103-Dec-April.json b/BIPs/2024-W22/BIP-103-Dec-April.json new file mode 100644 index 000000000..57741665d --- /dev/null +++ b/BIPs/2024-W22/BIP-103-Dec-April.json @@ -0,0 +1,97 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715865196870, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "bip_number": "BIP-103", + "fees_breakdown": { + "apr_2024": [10775000000, "unpaid", "na"], + "mar_2024": [13126000000, "unpaid", "na"], + "feb_2024": [11485000000, "unpaid", "na"], + "jan_2024": [8991000000, "unpaid", "na"], + "dec_2023": [8865000000, "unpaid", "na"], + "nov_2023": [ + 7918000000, + "paid", + "0xa7099e16fa43d3bb97cfe6db45ddb2435994353737dd4208b24356716d4cdfd5" + ], + "oct_2023": [ + 3337000000, + "paid", + "0x148d51119292e80e14a974cc8f97f34ba707bd082ed2dbd2d52bed478e2e172e" + ], + "sep_2023": [ + 5032000000, + "paid", + "0x3a4bc1f931d376f02fe4721c0bacd01bad3b102e913482b601cf54755609f767" + ], + "aug_2023": [ + 5204000000, + "paid", + "0xa876117a6913b40aec33624889a259a0e4eddbe897a9ee8dad4ccde179ae1781" + ], + "jul_2023": [ + 5705000000, + "paid", + "0xb05b660a0e992da5c40319c075fdb1ce560855ef0a65d151ddf173cd2b2916b0" + ], + "jun_2023": [ + 5278000000, + "paid", + "0x4c526d4e13db3c8cddf647eee002ce7bf2b9b47d65b8aaefff0f0470d21a5c90" + ], + "may_2023": [ + 7225000000, + "paid", + "0x985684b390c0853380f6f1d53c72081426961f7e35e0567368fc5369f8d88b7e" + ], + "apr_2023": [ + 6115000000, + "paid", + "0x3817e8e0869a59615b20b7d11dd241513c0ea65ee040cbb3f15a3a61d4fde8bd" + ], + "mar_2023": [ + 5636000000, + "paid", + "0x4f24aa07987e407446e2ea3523644828f141888fd3405b01a942c861d587459f" + ], + "feb_2023": [ + 5397000000, + "paid", + "0x3f3b37ac7f81b9e454531c2ea694369c9eac08398379615cbf9e20ae866c1ca2" + ] + } + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "53242000000" + } + } + ] +} diff --git a/BIPs/2024-W22/BIP-103-Dec-April.report.txt b/BIPs/2024-W22/BIP-103-Dec-April.report.txt new file mode 100644 index 000000000..d031079fd --- /dev/null +++ b/BIPs/2024-W22/BIP-103-Dec-April.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W22/BIP-103-Dec-April.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b517cd9e66d4f2c0f7ae7677923fe5ac9197af7b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/577ee7f0-689a-4b52-abaa-8fd84d8c1b2e) +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 53242.0 (RAW: 53242000000) | BIP-103 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W22/BIP-518-6.json b/BIPs/2024-W22/BIP-518-6.json new file mode 100644 index 000000000..dadaa80d7 --- /dev/null +++ b/BIPs/2024-W22/BIP-518-6.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107040104, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1f440bb1b31ed23dce797e5957ac2a5749add1074f8540f0ff0a158e4b248003" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + } + } + ] +} diff --git a/BIPs/2024-W22/BIP-518-6.report.txt b/BIPs/2024-W22/BIP-518-6.report.txt new file mode 100644 index 000000000..8545bdd28 --- /dev/null +++ b/BIPs/2024-W22/BIP-518-6.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W22/BIP-518-6.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b517cd9e66d4f2c0f7ae7677923fe5ac9197af7b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/03e3407f-43e0-45b7-9e3c-99fb080904e4) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W22/BIP-519-6.json b/BIPs/2024-W22/BIP-519-6.json new file mode 100644 index 000000000..eaa534ca3 --- /dev/null +++ b/BIPs/2024-W22/BIP-519-6.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107142345, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa1bc4667c4f7289ebd0f1a07a44e791e2bc9883cf3ee0650c966b12a685d8721" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2024-W22/BIP-519-6.report.txt b/BIPs/2024-W22/BIP-519-6.report.txt new file mode 100644 index 000000000..049602084 --- /dev/null +++ b/BIPs/2024-W22/BIP-519-6.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W22/BIP-519-6.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b517cd9e66d4f2c0f7ae7677923fe5ac9197af7b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/83252940-e2b7-4be9-9809-9ef4cdc172aa) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W22/BIP-578-USDC-Jun.json b/BIPs/2024-W22/BIP-578-USDC-Jun.json new file mode 100644 index 000000000..3de0d6be1 --- /dev/null +++ b/BIPs/2024-W22/BIP-578-USDC-Jun.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712136301271, + "meta": { + "name": "Transactions Batch", + "description": "Fund Wonderland for June 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x74fea3fb0ed030e9228026e7f413d66186d3d107", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2024-W22/BIP-578-USDC-Jun.report.txt b/BIPs/2024-W22/BIP-578-USDC-Jun.report.txt new file mode 100644 index 000000000..8b4bb49a5 --- /dev/null +++ b/BIPs/2024-W22/BIP-578-USDC-Jun.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W22/BIP-578-USDC-Jun.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `1ce1c13dc9280b30fc59375d7cb8861705267b23` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d4bcf0f6-9a96-491a-82d3-f01666aab40f) +``` ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 30000.0 (RAW: 30000000000) | BIP-578 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W22/BIP-610-ETHx-wstETH-Abritrum-Gauge.json b/BIPs/2024-W22/BIP-610-ETHx-wstETH-Abritrum-Gauge.json new file mode 100644 index 000000000..df23b714b --- /dev/null +++ b/BIPs/2024-W22/BIP-610-ETHx-wstETH-Abritrum-Gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1716340851424, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xe331370ac83de08d585f20192124932cc691757b346793efd55cd658081278f5" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x058059cb764a98c18B937222eD06C1ad2f174Dce", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W22/BIP-610-ETHx-wstETH-Abritrum-Gauge.report.txt b/BIPs/2024-W22/BIP-610-ETHx-wstETH-Abritrum-Gauge.report.txt new file mode 100644 index 000000000..8f70cf19e --- /dev/null +++ b/BIPs/2024-W22/BIP-610-ETHx-wstETH-Abritrum-Gauge.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W22/BIP-610-ETHx-wstETH-Abritrum-Gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e585b62764688d03a37179392f275536167ffd66` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/3a88ab5d-60b3-416f-adc0-97076fbc4acc) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | ETHx/wstETH | 0x058059cb764a98c18B937222eD06C1ad2f174Dce | "wstETH (0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-610 | 0 | +| | pool_address: 0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc | fee: 0.04, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "ETHx/wstETH (0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "ETHx (0xED65C5085a18Fa160Af0313E60dcc7905E944Dc7)" | "0x8581953084FfdDBB82fC63f30f11bDb0E7300284" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W22/BIP-611-ARB-Delegation.json b/BIPs/2024-W22/BIP-611-ARB-Delegation.json new file mode 100644 index 000000000..f1fab4ecb --- /dev/null +++ b/BIPs/2024-W22/BIP-611-ARB-Delegation.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1716341508198, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x4c73d4d4d12e69bc7010c7657673ff804a6f7ac90e1ee2962192577e03df5bed" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "delegatee", "type": "address", "internalType": "address" } + ], + "name": "delegate", + "payable": false + }, + "contractInputsValues": { + "delegatee": "0x583E3EDc26E1B8620341bce90547197bfE2c1ddD" + } + } + ] +} diff --git a/BIPs/2024-W22/BIP-611-ARB-Delegation.report.txt b/BIPs/2024-W22/BIP-611-ARB-Delegation.report.txt new file mode 100644 index 000000000..2601b4f02 --- /dev/null +++ b/BIPs/2024-W22/BIP-611-ARB-Delegation.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/2024-W22/BIP-611-ARB-Delegation.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `22e1a2102d1d1350b571b1a6108035c05bdbb5a9` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d181781c-a9cc-4cf3-825a-1b73b79cd7a0) +``` ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=========================================================+=========+============================================================================+==============+============+ +| delegate | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | BIP-611 | N/A | +| | | | "delegatee": [ | | | +| | | | "0x583E3EDc26E1B8620341bce90547197bfE2c1ddD (karpatkey/delegate_msig)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+---------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W23/BIP-613/00fraxtal.json b/BIPs/2024-W23/BIP-613/00fraxtal.json new file mode 100644 index 000000000..7809f761e --- /dev/null +++ b/BIPs/2024-W23/BIP-613/00fraxtal.json @@ -0,0 +1,226 @@ +{ + "version": "1.0", + "chainId": 252, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5, 0x0e9dc9cb7f6c04b4bd6a3a1454fea541139560e67c2305a90fa5021b5a9654a6, 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3, 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9, 0x3ebf880359d778f39e7be152c0f9e08ca720deb5fec5c8d1f452538638a298db, 0x5136d1203b14ba22a937b7e444c8af4b759cc078fda17daabcc62cb16d44f770, 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56, 0x8bd6c78035cf14d9a9eee5f76434919f54549515ffeb33ef262637ace4623751, 0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65, 0xe59f99daac75c9e44d591c49a65423101c290813a1ebd1ef8833a4dab984fa9a]", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997, 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d, 0x3d2eef14850cbbadfbbe943f0365f71562f347a7f22272c6fde14bc3b2e8890b, 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9, 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff, 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xbd92af6a2dfb24acf76fcff3ee827e4d13aceb26a57d95e47b90581760c41049, 0xda3af9541f52be1def53d54294a906c129ad5721f0b79b6a7efa9d0b6ed49de5, 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec]", + "account": "0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d, 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a, 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff]", + "account": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0xb541765F540447646A9545E0A4800A0Bacf9E13D" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083, 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e]", + "account": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x6a0dbf850b77efe39084cc09b1e400307ad6949c5b87efdec8381b88592862fa]", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + }, + { + "to": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "to_meta": "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "to_meta": "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-613/00fraxtal.report.txt b/BIPs/2024-W23/BIP-613/00fraxtal.report.txt new file mode 100644 index 000000000..126f7ad8c --- /dev/null +++ b/BIPs/2024-W23/BIP-613/00fraxtal.report.txt @@ -0,0 +1,72 @@ +FILENAME: `BIPs/2024-W23/BIP-613/00fraxtal.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5e61927e-2775-4bf2-8843-4d7472a23d23) +``` ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | BIP-613 | 0 | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x0e9dc9cb7f6c04b4bd6a3a1454fea541139560e67c2305a90fa5021b5a9654a6 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0x3ebf880359d778f39e7be152c0f9e08ca720deb5fec5c8d1f452538638a298db | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0x5136d1203b14ba22a937b7e444c8af4b759cc078fda17daabcc62cb16d44f770 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x8bd6c78035cf14d9a9eee5f76434919f54549515ffeb33ef262637ace4623751 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0xe59f99daac75c9e44d591c49a65423101c290813a1ebd1ef8833a4dab984fa9a | | | +| Authorizer/grantRoles | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | BIP-613 | 1 | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0x3d2eef14850cbbadfbbe943f0365f71562f347a7f22272c6fde14bc3b2e8890b | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0xbd92af6a2dfb24acf76fcff3ee827e4d13aceb26a57d95e47b90581760c41049 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xda3af9541f52be1def53d54294a906c129ad5721f0b79b6a7efa9d0b6ed49de5 | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | | | +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | BIP-613 | 2 | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | | | +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-613 | 3 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-613 | 4 | +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | BIP-613 | 5 | +| | | | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | | | +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0x6a0dbf850b77efe39084cc09b1e400307ad6949c5b87efdec8381b88592862fa | BIP-613 | 6 | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W23/BIP-613/00fraxtal.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f49459ba-8c1c-4547-a89c-d977a210a1e2) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +| setFeeTypePercentage | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W23/BIP-613/00mode.json b/BIPs/2024-W23/BIP-613/00mode.json new file mode 100644 index 000000000..f25061314 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/00mode.json @@ -0,0 +1,226 @@ +{ + "version": "1.0", + "chainId": 34443, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x000dfb61af4938ab97859cfdca0fcf16419f15e36c90216b41d5e38d72ef208e, 0x8cda99fc04bda5395d59be6ecac7c4311f4b7fd26fdc0a111934a1aeb5c4637f, 0x921076734257eb232f70b5aff2cae0f998b4e1aa7a55ae3a0af1ce8629c33da9, 0x9a098720ece757a23df7742e3f16c6ad6e0610120f10c8edbd6ac53cd9b7c951, 0xa1d496e6430b89d0d1db0f2a465fa90c6869e0fa261764f9ded0fc763c7fe5a6, 0xa78f1cb63d3f446e1e9b8487adb64f8eb62fb54ea65fcacb2c71bd3984818985, 0xb484eabe5a2eb23a030770c8418e6b7ac968a740108f25f9360bc2bae2c41e4c, 0xcdf8a72988961264bb6330f6907f1a0833ad472cbc1d9522cc8e23d8b6e7fbb9, 0xe14e689f3fefda81a75d35b8e900ec0af04143ad3c43dfc6f460cfb0a45815f6, 0xf27822b70ee081744165c05eea053ce08242fb70b8c76d0839da1cf7a4f5fa01]", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08, 0x4d30cbc2e28f426257db0dd64beff2e6fd04e66b7453e947fecc1cf4d0b4eef7, 0x7533f5ec889e599162d5b62c7931b402430fe4e92f30ca02054986fc9ba5f0d5, 0x7610899afab87ac343d3033932882e61b78ae3df6c6ca132e39b607f1761c624, 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae, 0xb402f1c527ae841a6ab9272b0b11576bb706145b9e1857103b96b31606cb995a, 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c, 0xd9801dfe2a5b9b3b528585abebb08cd61b35502437c6bec85414ff7aaa387f84, 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932]", + "account": "0x66C4b8Ba38a7B57495b7D0581f25784E629516c2" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae, 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c, 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932]", + "account": "0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498]", + "account": "0xb541765F540447646A9545E0A4800A0Bacf9E13D" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083, 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e]", + "account": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1c81700c4527c26bb9aa170d0053c053b25de1492f19267ac6be7f8c62ef5569]", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + }, + { + "to": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "to_meta": "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "to_meta": "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-613/00mode.report.txt b/BIPs/2024-W23/BIP-613/00mode.report.txt new file mode 100644 index 000000000..424daa89e --- /dev/null +++ b/BIPs/2024-W23/BIP-613/00mode.report.txt @@ -0,0 +1,72 @@ +FILENAME: `BIPs/2024-W23/BIP-613/00mode.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/118cc2f4-103c-4af8-8ad9-36787fbe49ea) +``` ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x000dfb61af4938ab97859cfdca0fcf16419f15e36c90216b41d5e38d72ef208e | BIP-613 | 0 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x8cda99fc04bda5395d59be6ecac7c4311f4b7fd26fdc0a111934a1aeb5c4637f | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x921076734257eb232f70b5aff2cae0f998b4e1aa7a55ae3a0af1ce8629c33da9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/stopAmplificationParameterUpdate() | 0x9a098720ece757a23df7742e3f16c6ad6e0610120f10c8edbd6ac53cd9b7c951 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0xa1d496e6430b89d0d1db0f2a465fa90c6869e0fa261764f9ded0fc763c7fe5a6 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/setSwapFeePercentage(uint256) | 0xa78f1cb63d3f446e1e9b8487adb64f8eb62fb54ea65fcacb2c71bd3984818985 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xb484eabe5a2eb23a030770c8418e6b7ac968a740108f25f9360bc2bae2c41e4c | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xcdf8a72988961264bb6330f6907f1a0833ad472cbc1d9522cc8e23d8b6e7fbb9 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xe14e689f3fefda81a75d35b8e900ec0af04143ad3c43dfc6f460cfb0a45815f6 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf27822b70ee081744165c05eea053ce08242fb70b8c76d0839da1cf7a4f5fa01 | | | +| Authorizer/grantRoles | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | BIP-613 | 1 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePoolFactory/disable() | 0x4d30cbc2e28f426257db0dd64beff2e6fd04e66b7453e947fecc1cf4d0b4eef7 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x7533f5ec889e599162d5b62c7931b402430fe4e92f30ca02054986fc9ba5f0d5 | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/pause() | 0x7610899afab87ac343d3033932882e61b78ae3df6c6ca132e39b607f1761c624 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xb402f1c527ae841a6ab9272b0b11576bb706145b9e1857103b96b31606cb995a | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xd9801dfe2a5b9b3b528585abebb08cd61b35502437c6bec85414ff7aaa387f84 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | | | +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | BIP-613 | 2 | +| | | | 20240223-composable-stable-pool-v6/ComposableStablePool/enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | | | +| Authorizer/grantRoles | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | BIP-613 | 3 | +| | | | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-613 | 4 | +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | BIP-613 | 5 | +| | | | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | | | +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0x1c81700c4527c26bb9aa170d0053c053b25de1492f19267ac6be7f8c62ef5569 | BIP-613 | 6 | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W23/BIP-613/00mode.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/60244231-a829-4761-8c35-dd6fd26d6fa5) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +| setFeeTypePercentage | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-613 | N/A | +| | | | "feeType": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W23/BIP-613/BIP-613.md b/BIPs/2024-W23/BIP-613/BIP-613.md new file mode 100644 index 000000000..1cbe93356 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613.md @@ -0,0 +1,115 @@ +## Payload PR - BIP-613 +https://github.com/BalancerMaxis/multisig-ops/pull/997 + +## Background +This BIP is to add permissions to the Balancer Multisigs as described in the payload PR linked above in order to enable the protocol to operate on [Fraxtal](https://forum.balancer.fi/t/bip-608-deploy-balancer-on-fraxtal/5746) and [Mode](https://forum.balancer.fi/t/bip-589-enable-balancer-deployment-into-mode/5681). + +It is similar to other permissions BIPs such as [BIP-388](https://forum.balancer.fi/t/bip-388-wire-up-base-chain-in-preparation-for-launch/5026) for Base and [BIP-318](https://forum.balancer.fi/t/bip-318-grant-avalanche-permissions/4846) for AVAX. + +## Specifications + +This BIP includes a number of payload files that perform various functions required to get a chain up and running. The payloads can be found with reports in the PR linked above, and are described in the tables below. + +The transaction details for `00fraxtal.json` and `00mode.json` were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-613). These files were amended with transactions to set protocol fee percentages to 50% after generation. + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|-----------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2024-W23/BIP-613/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2024-W23/BIP-613/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2024-W23/BIP-613/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2024-W23/BIP-613/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`00chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W23/BIP-613/) | Transaction Payloads to invoke the permissions changes described above per chain. Also sets protcool fees to 50% on swap and yield. | + | [BIP-613B-`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W23/BIP-613/)| Adds the gauge factory to the psuedominter on both chains | +| [BIP-613C-`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W23/BIP-613/)| Configures the AuthorizorAdapter on both chains | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W23/BIP-613/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-deployments](https://github.com/balancer/balancer-deployments/tree/master/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/2024-W23/BIP-613/results_address_sorted.md) are printed here: + + + +| deployment | function | role | chain | caller | caller_address | +|:-------------------------------------------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20220725-protocol-fee-percentages-provider | setFeeTypePercentage(uint256,uint256) | 0x6a0dbf850b77efe39084cc09b1e400307ad6949c5b87efdec8381b88592862fa | fraxtal | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20210418-vault | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | fraxtal | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20230320-weighted-pool-v4 | setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230316-child-chain-gauge-factory-v2 | add_reward(address,address) | 0x5136d1203b14ba22a937b7e444c8af4b759cc078fda17daabcc62cb16d44f770 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20220517-protocol-fee-withdrawer | withdrawCollectedFees(address[],uint256[],address) | 0x0e9dc9cb7f6c04b4bd6a3a1454fea541139560e67c2305a90fa5021b5a9654a6 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | removePoolFactory(address) | 0xe59f99daac75c9e44d591c49a65423101c290813a1ebd1ef8833a4dab984fa9a | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | addPoolFactory(address) | 0x8bd6c78035cf14d9a9eee5f76434919f54549515ffeb33ef262637ace4623751 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | registerProtocolId(uint256,string) | 0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | renameProtocolId(uint256,string) | 0x3ebf880359d778f39e7be152c0f9e08ca720deb5fec5c8d1f452538638a298db | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230320-weighted-pool-v4 | pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230320-weighted-pool-v4 | disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230411-managed-pool-v2 | pause() | 0xda3af9541f52be1def53d54294a906c129ad5721f0b79b6a7efa9d0b6ed49de5 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230411-managed-pool-v2 | disable() | 0xbd92af6a2dfb24acf76fcff3ee827e4d13aceb26a57d95e47b90581760c41049 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20210418-vault | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20220517-protocol-fee-withdrawer | denylistToken(address) | 0x3d2eef14850cbbadfbbe943f0365f71562f347a7f22272c6fde14bc3b2e8890b | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | fraxtal | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | +| 20210418-vault | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | fraxtal | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20220725-protocol-fee-percentages-provider | setFeeTypePercentage(uint256,uint256) | 0x1c81700c4527c26bb9aa170d0053c053b25de1492f19267ac6be7f8c62ef5569 | mode | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | +| 20230320-weighted-pool-v4 | pause() | 0x7533f5ec889e599162d5b62c7931b402430fe4e92f30ca02054986fc9ba5f0d5 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230320-weighted-pool-v4 | disable() | 0xd9801dfe2a5b9b3b528585abebb08cd61b35502437c6bec85414ff7aaa387f84 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | pause() | 0x7610899afab87ac343d3033932882e61b78ae3df6c6ca132e39b607f1761c624 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | disable() | 0x4d30cbc2e28f426257db0dd64beff2e6fd04e66b7453e947fecc1cf4d0b4eef7 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230411-managed-pool-v2 | pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230411-managed-pool-v2 | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20210418-vault | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20220517-protocol-fee-withdrawer | denylistToken(address) | 0xb402f1c527ae841a6ab9272b0b11576bb706145b9e1857103b96b31606cb995a | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20210418-vault | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | mode | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20210418-vault | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | mode | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20210418-vault | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | mode | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B | +| 20230320-weighted-pool-v4 | setSwapFeePercentage(uint256) | 0xa1d496e6430b89d0d1db0f2a465fa90c6869e0fa261764f9ded0fc763c7fe5a6 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0xa78f1cb63d3f446e1e9b8487adb64f8eb62fb54ea65fcacb2c71bd3984818985 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xe14e689f3fefda81a75d35b8e900ec0af04143ad3c43dfc6f460cfb0a45815f6 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x9a098720ece757a23df7742e3f16c6ad6e0610120f10c8edbd6ac53cd9b7c951 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230316-child-chain-gauge-factory-v2 | add_reward(address,address) | 0xf27822b70ee081744165c05eea053ce08242fb70b8c76d0839da1cf7a4f5fa01 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20220517-protocol-fee-withdrawer | withdrawCollectedFees(address[],uint256[],address) | 0x000dfb61af4938ab97859cfdca0fcf16419f15e36c90216b41d5e38d72ef208e | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | removePoolFactory(address) | 0x8cda99fc04bda5395d59be6ecac7c4311f4b7fd26fdc0a111934a1aeb5c4637f | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | addPoolFactory(address) | 0x921076734257eb232f70b5aff2cae0f998b4e1aa7a55ae3a0af1ce8629c33da9 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | registerProtocolId(uint256,string) | 0xcdf8a72988961264bb6330f6907f1a0833ad472cbc1d9522cc8e23d8b6e7fbb9 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | renameProtocolId(uint256,string) | 0xb484eabe5a2eb23a030770c8418e6b7ac968a740108f25f9360bc2bae2c41e4c | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +## Risk Assessment +This is standard operating procedure for new chains. Detailed review is important, but at the moment the protocol is not active on these chains and there is no risk. + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.json b/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.json new file mode 100644 index 000000000..d74e370f5 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1686068663750, + "meta": { + "name": "Transactions Batch", + "description": "Add GaugeFactory to PsuedoMinter", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + }, + { + "to": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "to_meta": "20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.report.txt b/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.report.txt new file mode 100644 index 000000000..288a93eed --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.report.txt @@ -0,0 +1,29 @@ +FILENAME: `BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ac00d70d-12e4-40af-9bc8-c2e3aca89488) +``` ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e | BIP-613 | 0 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x9982b96c2fe5e96298fb726a0961f96e3b1b747460c05c75c71244df64b5248e | BIP-613 | 2 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W23/BIP-613/BIP-613B-fraxtal.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/0a3dc32e-2fcd-4d48-a221-937793f4d369) +``` ++-----------------+--------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+--------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| addGaugeFactory | 0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-613 | N/A | +| | | | "factory": [ | | | +| | | | "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W23/BIP-613/BIP-613B-mode.json b/BIPs/2024-W23/BIP-613/BIP-613B-mode.json new file mode 100644 index 000000000..b58023d8f --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613B-mode.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1686068663750, + "meta": { + "name": "Transactions Batch", + "description": "Add GaugeFactory to PsuedoMinter", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + }, + { + "to": "0x5cF4928a3205728bd12830E1840F7DB85c62a4B9", + "to_meta": "20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-613/BIP-613B-mode.report.txt b/BIPs/2024-W23/BIP-613/BIP-613B-mode.report.txt new file mode 100644 index 000000000..f949a14b1 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613B-mode.report.txt @@ -0,0 +1,29 @@ +FILENAME: `BIPs/2024-W23/BIP-613/BIP-613B-mode.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/42309e78-a3d2-4a80-b414-78ccdb639d06) +``` ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce | BIP-613 | 0 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0xc62030304ed47ad6c73df117390460e9a9eb89545f65e50808e1fd1a529e8dce | BIP-613 | 2 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W23/BIP-613/BIP-613B-mode.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/0971ccd6-0f34-47ff-b4ba-71ca35a84df2) +``` ++-----------------+--------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+--------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +| addGaugeFactory | 0x5cF4928a3205728bd12830E1840F7DB85c62a4B9 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-613 | N/A | +| | | | "factory": [ | | | +| | | | "0x4fb47126Fa83A8734991E41B942Ac29A3266C968 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.json b/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.json new file mode 100644 index 000000000..6682b0515 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.json @@ -0,0 +1,70 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1686068946662, + "meta": { + "name": "Transactions Batch", + "description": "Enable Authorizer Adapter", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "0xeab75e48deff14b80dee97f3e36117ad773a19fea0bfcee5b957428e6a610603" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "to_meta": "20210418-vault/Vault'", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.report.txt b/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.report.txt new file mode 100644 index 000000000..45e4a1f09 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.report.txt @@ -0,0 +1,29 @@ +FILENAME: `BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/bf42bcd8-4145-4326-a19b-c49ca543a56a) +``` ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 0 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 2 | ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W23/BIP-613/BIP-613C-fraxtal.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ddec4d04-a809-4b16-a695-ef174f8acce6) +``` ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-613 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0 (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W23/BIP-613/BIP-613C-mode.json b/BIPs/2024-W23/BIP-613/BIP-613C-mode.json new file mode 100644 index 000000000..2d7f00659 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613C-mode.json @@ -0,0 +1,70 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1686068946662, + "meta": { + "name": "Transactions Batch", + "description": "Enable Authorizer Adapter", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "0xeab75e48deff14b80dee97f3e36117ad773a19fea0bfcee5b957428e6a610603" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "to_meta": "20210418-authorizer/Authorizer", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "to_meta": "20210418-vault/Vault'", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x013D4382F291be5688AFBcc741Ee8A24C66B2C92" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-613/BIP-613C-mode.report.txt b/BIPs/2024-W23/BIP-613/BIP-613C-mode.report.txt new file mode 100644 index 000000000..8e8ec966d --- /dev/null +++ b/BIPs/2024-W23/BIP-613/BIP-613C-mode.report.txt @@ -0,0 +1,29 @@ +FILENAME: `BIPs/2024-W23/BIP-613/BIP-613C-mode.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ea9e5dde-4285-4f56-87be-647c0777fd12) +``` ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 0 | +| Authorizer/renounceRole | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-613 | 2 | ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W23/BIP-613/BIP-613C-mode.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `a9b97c1552178659cef66c76ae4743bef2ecaede` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a693e1b6-0b3e-4381-8120-63d3a4a5fcf7) +``` ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-613 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0x013D4382F291be5688AFBcc741Ee8A24C66B2C92 (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W23/BIP-613/README.md b/BIPs/2024-W23/BIP-613/README.md new file mode 100644 index 000000000..98ca48d94 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/README.md @@ -0,0 +1 @@ +[See Here](BIP-613.md) for the governance contents. diff --git a/BIPs/2024-W23/BIP-613/function_descriptions.md b/BIPs/2024-W23/BIP-613/function_descriptions.md new file mode 100644 index 000000000..668f73d8c --- /dev/null +++ b/BIPs/2024-W23/BIP-613/function_descriptions.md @@ -0,0 +1,25 @@ +| function | description | +|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| withdrawCollectedFees(address[],uint256[],address) | Allows the withdrawal of collected protocol fees | +| setFlashLoanFeePercentage(uint256) | Sets the protocol fee charged on flash loans for this deployment | +| setPaused(bool) | Stops all trading activity involving the vault | +| setFeeTypePercentage(uint256,uint256) | Sets the protocol fee for a particular fee type for this deployment | +| add_reward(address,address) | Allows adding of an external reward token to gauges. | +| denylistToken(address) | Adds a token to the ProtocolFeeWithdrawer deny list which prevents the withdrawal of that token from the ProtocolFeeCollector | +| removePoolFactory(address) | Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| addPoolFactory(address) | Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| registerProtocolId(uint256,string) | Register a new DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | +| renameProtocolId(uint256,string) | Change the name of a DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | \ No newline at end of file diff --git a/BIPs/2024-W23/BIP-613/inputs.json b/BIPs/2024-W23/BIP-613/inputs.json new file mode 100644 index 000000000..ff8aac4d6 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/inputs.json @@ -0,0 +1,120 @@ +[ + { + "chain_map": { + "mode": 34443, + "fraxtal": 252 + }, + "deployments": [ + "weighted-pool-v4", + "composable-stable-pool-v6", + "composable-stable-pool-v5", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2" + ], + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "/pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + } + }, + { + "chain_map": { + "mode": 34443, + "fraxtal": 252 + }, + "deployments": ["20210418-vault"], + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "batch-relayer-v6/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "batch-relayer-v6/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "batch-relayer-v6/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "batch-relayer-v6/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "batch-relayer-v6/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "batch-relayer-v6/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + } + }, + { + "chain_map": { + "mode": 34443, + "fraxtal": 252 + }, + "deployments": ["20220725-protocol-fee-percentages-provider"], + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + } + }, + { + "chain_map": { + "mode": 34443, + "fraxtal": 252 + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"], + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + } + }, + { + "chain_map": { + "mode": 34443, + "fraxtal": 252 + }, + "deployments": ["20220517-protocol-fee-withdrawer"], + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + } + }, + { + "chain_map": { + "mode": 34443, + "fraxtal": 252 + }, + "deployments": ["20221123-pool-recovery-helper"], + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/lm"], + "addPoolFactory(address)": ["multisigs/lm"] + } + }, + { + "deployments": ["20230223-protocol-id-registry"], + "chain_map": { + "mode": 34443, + "fraxtal": 252 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + } + } +] diff --git a/BIPs/2024-W23/BIP-613/results_address_sorted.md b/BIPs/2024-W23/BIP-613/results_address_sorted.md new file mode 100644 index 000000000..b5eb4d76b --- /dev/null +++ b/BIPs/2024-W23/BIP-613/results_address_sorted.md @@ -0,0 +1,70 @@ +| deployment | function | role | chain | caller | caller_address | +|:-------------------------------------------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20220725-protocol-fee-percentages-provider | setFeeTypePercentage(uint256,uint256) | 0x6a0dbf850b77efe39084cc09b1e400307ad6949c5b87efdec8381b88592862fa | fraxtal | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20210418-vault | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | fraxtal | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20230320-weighted-pool-v4 | setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230316-child-chain-gauge-factory-v2 | add_reward(address,address) | 0x5136d1203b14ba22a937b7e444c8af4b759cc078fda17daabcc62cb16d44f770 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20220517-protocol-fee-withdrawer | withdrawCollectedFees(address[],uint256[],address) | 0x0e9dc9cb7f6c04b4bd6a3a1454fea541139560e67c2305a90fa5021b5a9654a6 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | removePoolFactory(address) | 0xe59f99daac75c9e44d591c49a65423101c290813a1ebd1ef8833a4dab984fa9a | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | addPoolFactory(address) | 0x8bd6c78035cf14d9a9eee5f76434919f54549515ffeb33ef262637ace4623751 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | registerProtocolId(uint256,string) | 0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | renameProtocolId(uint256,string) | 0x3ebf880359d778f39e7be152c0f9e08ca720deb5fec5c8d1f452538638a298db | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230320-weighted-pool-v4 | pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230320-weighted-pool-v4 | disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230411-managed-pool-v2 | pause() | 0xda3af9541f52be1def53d54294a906c129ad5721f0b79b6a7efa9d0b6ed49de5 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230411-managed-pool-v2 | disable() | 0xbd92af6a2dfb24acf76fcff3ee827e4d13aceb26a57d95e47b90581760c41049 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20210418-vault | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20220517-protocol-fee-withdrawer | denylistToken(address) | 0x3d2eef14850cbbadfbbe943f0365f71562f347a7f22272c6fde14bc3b2e8890b | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | fraxtal | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | +| 20210418-vault | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | fraxtal | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20220725-protocol-fee-percentages-provider | setFeeTypePercentage(uint256,uint256) | 0x1c81700c4527c26bb9aa170d0053c053b25de1492f19267ac6be7f8c62ef5569 | mode | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | +| 20230320-weighted-pool-v4 | pause() | 0x7533f5ec889e599162d5b62c7931b402430fe4e92f30ca02054986fc9ba5f0d5 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230320-weighted-pool-v4 | disable() | 0xd9801dfe2a5b9b3b528585abebb08cd61b35502437c6bec85414ff7aaa387f84 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | pause() | 0x7610899afab87ac343d3033932882e61b78ae3df6c6ca132e39b607f1761c624 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | disable() | 0x4d30cbc2e28f426257db0dd64beff2e6fd04e66b7453e947fecc1cf4d0b4eef7 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230411-managed-pool-v2 | pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230411-managed-pool-v2 | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20210418-vault | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20220517-protocol-fee-withdrawer | denylistToken(address) | 0xb402f1c527ae841a6ab9272b0b11576bb706145b9e1857103b96b31606cb995a | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20210418-vault | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | mode | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20210418-vault | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | mode | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20210418-vault | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | mode | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B | +| 20230320-weighted-pool-v4 | setSwapFeePercentage(uint256) | 0xa1d496e6430b89d0d1db0f2a465fa90c6869e0fa261764f9ded0fc763c7fe5a6 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0xa78f1cb63d3f446e1e9b8487adb64f8eb62fb54ea65fcacb2c71bd3984818985 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xe14e689f3fefda81a75d35b8e900ec0af04143ad3c43dfc6f460cfb0a45815f6 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x9a098720ece757a23df7742e3f16c6ad6e0610120f10c8edbd6ac53cd9b7c951 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230316-child-chain-gauge-factory-v2 | add_reward(address,address) | 0xf27822b70ee081744165c05eea053ce08242fb70b8c76d0839da1cf7a4f5fa01 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20220517-protocol-fee-withdrawer | withdrawCollectedFees(address[],uint256[],address) | 0x000dfb61af4938ab97859cfdca0fcf16419f15e36c90216b41d5e38d72ef208e | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | removePoolFactory(address) | 0x8cda99fc04bda5395d59be6ecac7c4311f4b7fd26fdc0a111934a1aeb5c4637f | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | addPoolFactory(address) | 0x921076734257eb232f70b5aff2cae0f998b4e1aa7a55ae3a0af1ce8629c33da9 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | registerProtocolId(uint256,string) | 0xcdf8a72988961264bb6330f6907f1a0833ad472cbc1d9522cc8e23d8b6e7fbb9 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | renameProtocolId(uint256,string) | 0xb484eabe5a2eb23a030770c8418e6b7ac968a740108f25f9360bc2bae2c41e4c | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | \ No newline at end of file diff --git a/BIPs/2024-W23/BIP-613/results_deployment_sorted.md b/BIPs/2024-W23/BIP-613/results_deployment_sorted.md new file mode 100644 index 000000000..a732acba7 --- /dev/null +++ b/BIPs/2024-W23/BIP-613/results_deployment_sorted.md @@ -0,0 +1,70 @@ +| deployment | function | role | chain | caller | caller_address | +|:-------------------------------------------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | fraxtal | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | +| 20210418-vault | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | fraxtal | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xf23b4DB826DbA14c0e857029dfF076b1c0264843 | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | fraxtal | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | fraxtal | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20220517-protocol-fee-withdrawer | denylistToken(address) | 0x3d2eef14850cbbadfbbe943f0365f71562f347a7f22272c6fde14bc3b2e8890b | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20220517-protocol-fee-withdrawer | withdrawCollectedFees(address[],uint256[],address) | 0x0e9dc9cb7f6c04b4bd6a3a1454fea541139560e67c2305a90fa5021b5a9654a6 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20220725-protocol-fee-percentages-provider | setFeeTypePercentage(uint256,uint256) | 0x6a0dbf850b77efe39084cc09b1e400307ad6949c5b87efdec8381b88592862fa | fraxtal | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | +| 20221123-pool-recovery-helper | addPoolFactory(address) | 0x8bd6c78035cf14d9a9eee5f76434919f54549515ffeb33ef262637ace4623751 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | removePoolFactory(address) | 0xe59f99daac75c9e44d591c49a65423101c290813a1ebd1ef8833a4dab984fa9a | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | registerProtocolId(uint256,string) | 0xafaf4ce764706ff75bea937f87b0d04970292af6c75a3e1bc4045bb9777dfa65 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | renameProtocolId(uint256,string) | 0x3ebf880359d778f39e7be152c0f9e08ca720deb5fec5c8d1f452538638a298db | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230316-child-chain-gauge-factory-v2 | add_reward(address,address) | 0x5136d1203b14ba22a937b7e444c8af4b759cc078fda17daabcc62cb16d44f770 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230320-weighted-pool-v4 | disable() | 0xf27a3cfffd6082308886cb5ef66425202d4b3180e84c6852d7d8109b4228a5ec | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0x55183eaafc9e607c22ca713ce26b115fe0e7e47216af41fcec2f0fff0d6f622a | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20230320-weighted-pool-v4 | pause() | 0x9fca6ce6b2733f09e22be866cbbfc8b9b4b6822e7ff1e1c9b5c10895e2bbb6b0 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230320-weighted-pool-v4 | setSwapFeePercentage(uint256) | 0x2ae3adc781b5bd1b6741f6a0d64c69c177a309fa771c818a298f437b11e338a9 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230411-managed-pool-v2 | disable() | 0xbd92af6a2dfb24acf76fcff3ee827e4d13aceb26a57d95e47b90581760c41049 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x1d087bf5277f83a51abd0bb650d0f671ec1075c10fc740f941334329621bb89d | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20230411-managed-pool-v2 | pause() | 0xda3af9541f52be1def53d54294a906c129ad5721f0b79b6a7efa9d0b6ed49de5 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | disable() | 0x3dd110fd101a1be6115ceb811a85535de6c9c019360c7d67c022c48a3dd685d9 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0x73c3332de64a6f7b137bea3255a221d779cc0f170ea4892ff0581faf799230ff | fraxtal | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 | +| 20240223-composable-stable-pool-v6 | pause() | 0x04221c483f49fe794f5ce394e0ffc086722e106b9fef863610ccfbe1a019b997 | fraxtal | multisigs/emergency | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0x22627da2e7670aed1292420d5f0a2a49a7bd5992e0aef001702aa3285b5979b3 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0x86f2cd537c832d7823d7b51e7f52288e383427c8c41180561f0f8054bc216f56 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x0c055dc6cd1d6558914ef49c536f751680f8c413a3563007992801443bcca7a5 | fraxtal | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20210418-vault | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | mode | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20210418-vault | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20210418-vault | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | mode | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x85a80afee867aDf27B50BdB7b76DA70f1E853062 | +| 20210418-vault | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | mode | 20231031-batch-relayer-v6/BalancerRelayer | 0xb541765F540447646A9545E0A4800A0Bacf9E13D | +| 20210418-vault | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | mode | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B | +| 20220517-protocol-fee-withdrawer | denylistToken(address) | 0xb402f1c527ae841a6ab9272b0b11576bb706145b9e1857103b96b31606cb995a | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20220517-protocol-fee-withdrawer | withdrawCollectedFees(address[],uint256[],address) | 0x000dfb61af4938ab97859cfdca0fcf16419f15e36c90216b41d5e38d72ef208e | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20220725-protocol-fee-percentages-provider | setFeeTypePercentage(uint256,uint256) | 0x1c81700c4527c26bb9aa170d0053c053b25de1492f19267ac6be7f8c62ef5569 | mode | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | +| 20221123-pool-recovery-helper | addPoolFactory(address) | 0x921076734257eb232f70b5aff2cae0f998b4e1aa7a55ae3a0af1ce8629c33da9 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20221123-pool-recovery-helper | removePoolFactory(address) | 0x8cda99fc04bda5395d59be6ecac7c4311f4b7fd26fdc0a111934a1aeb5c4637f | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | registerProtocolId(uint256,string) | 0xcdf8a72988961264bb6330f6907f1a0833ad472cbc1d9522cc8e23d8b6e7fbb9 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230223-protocol-id-registry | renameProtocolId(uint256,string) | 0xb484eabe5a2eb23a030770c8418e6b7ac968a740108f25f9360bc2bae2c41e4c | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230316-child-chain-gauge-factory-v2 | add_reward(address,address) | 0xf27822b70ee081744165c05eea053ce08242fb70b8c76d0839da1cf7a4f5fa01 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230320-weighted-pool-v4 | disable() | 0xd9801dfe2a5b9b3b528585abebb08cd61b35502437c6bec85414ff7aaa387f84 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20230320-weighted-pool-v4 | enableRecoveryMode() | 0xf0136d1b61d53c1164668375458dd86685a88c5324271349ace94b5f2743a932 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230320-weighted-pool-v4 | pause() | 0x7533f5ec889e599162d5b62c7931b402430fe4e92f30ca02054986fc9ba5f0d5 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230320-weighted-pool-v4 | setSwapFeePercentage(uint256) | 0xa1d496e6430b89d0d1db0f2a465fa90c6869e0fa261764f9ded0fc763c7fe5a6 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20230411-managed-pool-v2 | disable() | 0x209075578b0c6819e5f117c0e9c4cafdfb4bac956e8ea969ff11fb444cd95b08 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20230411-managed-pool-v2 | enableRecoveryMode() | 0x7f42c77cb4b9f8e5f51b922886e6f62e00feaf246cccf2927a0f00dd3150e1ae | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20230411-managed-pool-v2 | pause() | 0xb4dacaceeadf349e2eaf81fae99db22f312f7b8d19bd3aa0aae4d74e8c40460a | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | disable() | 0x4d30cbc2e28f426257db0dd64beff2e6fd04e66b7453e947fecc1cf4d0b4eef7 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | mode | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8 | +| 20240223-composable-stable-pool-v6 | enableRecoveryMode() | 0xccaf05adf78d1e0bda037c9eaa020571023c007befc81506bbe8ae647cdf260c | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | pause() | 0x7610899afab87ac343d3033932882e61b78ae3df6c6ca132e39b607f1761c624 | mode | multisigs/emergency | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 | +| 20240223-composable-stable-pool-v6 | setSwapFeePercentage(uint256) | 0xa78f1cb63d3f446e1e9b8487adb64f8eb62fb54ea65fcacb2c71bd3984818985 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | startAmplificationParameterUpdate(uint256,uint256) | 0xe14e689f3fefda81a75d35b8e900ec0af04143ad3c43dfc6f460cfb0a45815f6 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | +| 20240223-composable-stable-pool-v6 | stopAmplificationParameterUpdate() | 0x9a098720ece757a23df7742e3f16c6ad6e0610120f10c8edbd6ac53cd9b7c951 | mode | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | \ No newline at end of file diff --git a/BIPs/2024-W23/BIP-614.json b/BIPs/2024-W23/BIP-614.json new file mode 100644 index 000000000..21f05c27d --- /dev/null +++ b/BIPs/2024-W23/BIP-614.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717050492617, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbF39254fD93C81ac9F0ffd2E721c86C052793353", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-614.report.txt b/BIPs/2024-W23/BIP-614.report.txt new file mode 100644 index 000000000..56b977f0b --- /dev/null +++ b/BIPs/2024-W23/BIP-614.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W23/BIP-614.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `852fcb8d6653eccfc928481f366193413a9f1b7c` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e276a4ac-e762-4706-9862-96b7f0539a84) +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x87cf784ee055d0260ad3ab7ee40888d4a0a5d364000200000000000000000691 | 50ZRS-50WETH-BPT | 0xbF39254fD93C81ac9F0ffd2E721c86C052793353 | "ZRS (0x75e88B8c2d34a52a6d36deAda664D7dc9116e4EF)", | "0x0000000000000000000000000000000000000000", | BIP-614 | 0 | +| | pool_address: 0x87Cf784Ee055d0260AD3AB7EE40888D4a0A5d364 | fee: 1.0, a-factor: N/A | Style: mainnet, cap: 2.0% | "WETH (0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W23/BIP-615.json b/BIPs/2024-W23/BIP-615.json new file mode 100644 index 000000000..56e645e61 --- /dev/null +++ b/BIPs/2024-W23/BIP-615.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717050822602, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8806BdF4D6aEB1E3b35bea43835abFAA601BC7b5", + "gaugeType": "PolygonZkEvm" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xab973781729714Cf85849C00A015615997325985", + "gaugeType": "PolygonZkEvm" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-615.report.txt b/BIPs/2024-W23/BIP-615.report.txt new file mode 100644 index 000000000..dee676050 --- /dev/null +++ b/BIPs/2024-W23/BIP-615.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/2024-W23/BIP-615.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bdc1b04916838fdf35b55be46cb2297c6f5ee191` +CHAIN(S): `zkevm` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5db30ed3-c2d3-41f2-95ef-5c162fba016b) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xd4ec150896f1784b5be2b3af460d2cb2b8c0f522000200000000000000000069 | ECLP-GYD-USDC | 0x8806BdF4D6aEB1E3b35bea43835abFAA601BC7b5 | "USDC (0x37eAA0eF3549a5Bb7D431be78a3D99BD360d19e5)", | "0x0000000000000000000000000000000000000000", | BIP-615 | 0 | +| | pool_address: 0xD4Ec150896F1784b5BE2B3AF460D2cb2b8c0f522 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "GYD (0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xf596ac9c9b60f9c555b8290c2b039c275396afb4000200000000000000000068 | ECLP-GYD-USDT | 0xab973781729714Cf85849C00A015615997325985 | "USDT (0x1E4a5963aBFD975d8c9021ce480b42188849D41d)", | "0x0000000000000000000000000000000000000000", | BIP-615 | 1 | +| | pool_address: 0xF596ac9c9b60F9C555B8290c2b039C275396afb4 | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "GYD (0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W23/BIP-616.json b/BIPs/2024-W23/BIP-616.json new file mode 100644 index 000000000..d18bf88e2 --- /dev/null +++ b/BIPs/2024-W23/BIP-616.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717073989633, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-616.report.txt b/BIPs/2024-W23/BIP-616.report.txt new file mode 100644 index 000000000..aef510a52 --- /dev/null +++ b/BIPs/2024-W23/BIP-616.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W23/BIP-616.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `d57ee62e1ee7bada006bf1ec909e091a69ab1b91` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e46b2281-ea21-45f7-9a83-13ad1b834056) +``` ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x045200c6077f105023000d803f3f95b16b187d70000200000000000000000091 | ECLP-sDAI-AUSDC | 0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c | 0x270bA1f35D8b87510D24F693fcCc0da02e6E4EeB: stataGnoUSDC | 0x821aFE819450A359E29a5209C48f2Fa3321C8AD2 | !!NO REVIEW!! | BIP-616 | 0 | +| | pool_address: 0x045200C6077f105023000D803F3F95B16B187D70 | fee: 0.01 | Style: L0 sidechain | 0xaf204776c7245bF4147c2612BF6e5972Ee483701: sDAI | 0x89C80A4540A00b5270347E02e2E144c71da2EceD | !!NO REVIEW!! | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W23/BIP-617.json b/BIPs/2024-W23/BIP-617.json new file mode 100644 index 000000000..68d6a061f --- /dev/null +++ b/BIPs/2024-W23/BIP-617.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717074631214, + "meta": { + "name": "Transactions Batch", + "description": "Fund grants for Q4 2023", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "1000000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W23/BIP-617.report.txt b/BIPs/2024-W23/BIP-617.report.txt new file mode 100644 index 000000000..62e7c3ba6 --- /dev/null +++ b/BIPs/2024-W23/BIP-617.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W23/BIP-617.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `d377a02e123a905f6f26a9801ff18ac369bc2e8f` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1c7c64c9-8b11-488c-b1a5-47f650b7b00c) +``` ++------------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+======================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 1000.0 (RAW: 1000000000000000000000) | BIP-617 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W24/BIP-618.json b/BIPs/2024-W24/BIP-618.json new file mode 100644 index 000000000..846ecea0b --- /dev/null +++ b/BIPs/2024-W24/BIP-618.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717590908377, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBC5E2f2945Ff4a6568C4DBD3aA15D9e8FfDF0125", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W24/BIP-618.report.txt b/BIPs/2024-W24/BIP-618.report.txt new file mode 100644 index 000000000..d72a15269 --- /dev/null +++ b/BIPs/2024-W24/BIP-618.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W24/BIP-618.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `669d094a63980b6dcaff5929b9992e79d9ae707f` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c04a404e-c53a-4eef-820f-0180ef11810b) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x395aad0582cd035c6c75ae32043bb83423ddd6f800020000000000000000054c | 20GYD-80D2D | 0xBC5E2f2945Ff4a6568C4DBD3aA15D9e8FfDF0125 | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | BIP-618 | 0 | +| | pool_address: 0x395aaD0582Cd035C6C75ae32043bb83423DdD6f8 | fee: 1.0 | Style: L0 sidechain | 0xDD4AB36f31891fF25A69121FCCC732d93eB976Dd: D2D | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W24/BIP-619.json b/BIPs/2024-W24/BIP-619.json new file mode 100644 index 000000000..af2e8917c --- /dev/null +++ b/BIPs/2024-W24/BIP-619.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717591372680, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbd00C7CBE59DDDBD784c899aC173B7Ba514B9997", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W24/BIP-619.report.txt b/BIPs/2024-W24/BIP-619.report.txt new file mode 100644 index 000000000..1f0ec23ac --- /dev/null +++ b/BIPs/2024-W24/BIP-619.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W24/BIP-619.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `39af2871c773ac539b89e377372cbc9f044d7b51` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5f94ec96-43fd-487c-9150-f89445c0fb17) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xa8210885430aaa333c9f0d66ab5d0c312bed5e43000200000000000000000692 | 50wstETH-50sUSDe | 0xbd00C7CBE59DDDBD784c899aC173B7Ba514B9997 | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-619 | 0 | +| | pool_address: 0xa8210885430aaA333c9F0D66AB5d0c312beD5E43 | fee: 0.3 | Style: mainnet | 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497: sUSDe | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W25/BIP-620.json b/BIPs/2024-W25/BIP-620.json new file mode 100644 index 000000000..11bbec7f4 --- /dev/null +++ b/BIPs/2024-W25/BIP-620.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718172427016, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6d060a785530cB13795b3c5a43320c462811d43b", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2024-W25/BIP-620.report.txt b/BIPs/2024-W25/BIP-620.report.txt new file mode 100644 index 000000000..2ecaa2903 --- /dev/null +++ b/BIPs/2024-W25/BIP-620.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W25/BIP-620.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bfd85b7a5d55d2732ca83b5678c0443552fb502c` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ce6a8d06-349f-420e-aec8-5eee27fb0e9b) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+----------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+----------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c | ECLP-wstETH-WETH | 0x6d060a785530cB13795b3c5a43320c462811d43b | 0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1: WETH | | | BIP-620 | 0 | +| | pool_address: 0x8DD4df4Ce580b9644437f3375e54f1ab09808228 | fee: 0.01 | Style: L0 sidechain | 0x6C76971f98945AE98dD7d4DFcA8711ebea946eA6: wstETH | | | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+----------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W25/BIP-621-lock-safe-balance.json b/BIPs/2024-W25/BIP-621-lock-safe-balance.json new file mode 100644 index 000000000..421f97716 --- /dev/null +++ b/BIPs/2024-W25/BIP-621-lock-safe-balance.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717533167181, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x48916ffe5bf66ca70a8653d12bd984289d546a20b4a46580911f78c890daa5f2" + }, + "transactions": [ + { + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2", + "amount": "124374160017847396583275" + } + }, + { + "to": "0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "amount", + "type": "uint96", + "internalType": "uint96" + } + ], + "name": "lock", + "payable": false + }, + "contractInputsValues": { + "amount": "124374160017847396583275" + } + } + ] +} diff --git a/BIPs/2024-W25/BIP-621-lock-safe-balance.report.txt b/BIPs/2024-W25/BIP-621-lock-safe-balance.report.txt new file mode 100644 index 000000000..37a6de1bd --- /dev/null +++ b/BIPs/2024-W25/BIP-621-lock-safe-balance.report.txt @@ -0,0 +1,24 @@ +FILENAME: `BIPs/2024-W25/BIP-621-lock-safe-balance.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `5b05fa08565a5f3f39bd8055bcce659af47fe21a` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/6a2abb43-0617-4065-8172-931020ba3fc2) +``` ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x5aFE3855358E112B5647B952709E6165e1c1eEEe (Not Found) | 0 | { | BIP-621 | N/A | +| | | | "spender": [ | | | +| | | | "0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2 (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:124374160017847396583275, 18 decimals:124374.160017847396583275, 6 decimals: 124374160017847396.583275" | | | +| | | | ] | | | +| | | | } | | | +| lock | 0x0a7CB434f96f65972D46A5c1A64a9654dC9959b2 (Not Found) | 0 | { | BIP-621 | N/A | +| | | | "amount": [ | | | +| | | | "raw:124374160017847396583275, 18 decimals:124374.160017847396583275, 6 decimals: 124374160017847396.583275" | | | +| | | | ] | | | +| | | | } | | | ++---------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W25/BIP-622.json b/BIPs/2024-W25/BIP-622.json new file mode 100644 index 000000000..15983b828 --- /dev/null +++ b/BIPs/2024-W25/BIP-622.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718193885596, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W25/BIP-622.report.txt b/BIPs/2024-W25/BIP-622.report.txt new file mode 100644 index 000000000..9df7c5b04 --- /dev/null +++ b/BIPs/2024-W25/BIP-622.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W25/BIP-622.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `1c194a6e396640262068ff794376f5c6e40d4958` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e412e208-a798-44e0-ae25-e4a2878dfca8) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d | aETH/wstETH | 0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A | 0x47a4f5440Ab097CF3ec7abEeDF1afeCC5749a4E2: aETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-622 | 0 | +| | pool_address: 0x47a4f5440Ab097CF3ec7abEeDF1afeCC5749a4E2 | fee: 0.04 | Style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | !!NO REVIEW!! | | | +| | | a-factor: 200 | cap: 100.0% | 0xFC87753Df5Ef5C368b5FBA8D4C5043b77e8C5b39: aETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x38fe2b73612527eff3c5ac3bf2dcb73784ad927400000000000000000000068c | saETH/wstETH | 0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e | 0x38fe2B73612527eFf3C5aC3bF2Dcb73784aD9274: saETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-622 | 1 | +| | pool_address: 0x38fe2B73612527eFf3C5aC3bF2Dcb73784aD9274 | fee: 0.04 | Style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | !!NO REVIEW!! | | | +| | | a-factor: 200 | cap: 100.0% | 0xF1617882A71467534D14EEe865922de1395c9E89: saETH | 0x1aCB59d7c5D23C0310451bcd7bA5AE46d18c108C | !!NO REVIEW!! | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W25/BIP-623.json b/BIPs/2024-W25/BIP-623.json new file mode 100644 index 000000000..03fff2c13 --- /dev/null +++ b/BIPs/2024-W25/BIP-623.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718259232213, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W25/BIP-623.report.txt b/BIPs/2024-W25/BIP-623.report.txt new file mode 100644 index 000000000..cc0a5dbde --- /dev/null +++ b/BIPs/2024-W25/BIP-623.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W25/BIP-623.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `373372227703921d4c20e1cdc7cff8fc24e430ff` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c4f08588-4ec6-45e6-9a6b-a13c9aa84180) +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | ECLP-weETH-wstETH | 0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a | 0x35751007a407ca6FEFfE80b3cB397736D2cf4dbe: weETH | 0xCd9e3fb32c8F258555b8292531112bBb5B87E2F4 | !!NO REVIEW!! | BIP-623 | 0 | +| | pool_address: 0xCDCef9765D369954a4A936064535710f7235110A | fee: 0.01 | Style: L0 sidechain | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | !!NO REVIEW!! | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W25/BIP-624.json b/BIPs/2024-W25/BIP-624.json new file mode 100644 index 000000000..7df3544b2 --- /dev/null +++ b/BIPs/2024-W25/BIP-624.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718260210161, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W25/BIP-624.report.txt b/BIPs/2024-W25/BIP-624.report.txt new file mode 100644 index 000000000..ee0d65697 --- /dev/null +++ b/BIPs/2024-W25/BIP-624.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W25/BIP-624.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `19e9b4ef379f7481fbd911898d1e448531f63acf` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/845c8e04-f45b-4e69-9bd5-6c001ea17044) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c | rsETH/wETH | 0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9 | 0x4186BFC76E2E237523CBC30FD220FE055156b41F: rsETH | 0x3222d3De5A9a3aB884751828903044CC4ADC627e | !!NO REVIEW!! | BIP-624 | 0 | +| | pool_address: 0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739 | fee: 0.04 | Style: L0 sidechain | 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 100.0% | 0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739: rsETH/wETH | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-578-USDC-Jul.json b/BIPs/2024-W26/BIP-578-USDC-Jul.json new file mode 100644 index 000000000..a158075b6 --- /dev/null +++ b/BIPs/2024-W26/BIP-578-USDC-Jul.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712136301271, + "meta": { + "name": "Transactions Batch", + "description": "Fund Wonderland for July 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x74fea3fb0ed030e9228026e7f413d66186d3d107", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-578-USDC-Jul.report.txt b/BIPs/2024-W26/BIP-578-USDC-Jul.report.txt new file mode 100644 index 000000000..9eae59f37 --- /dev/null +++ b/BIPs/2024-W26/BIP-578-USDC-Jul.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-578-USDC-Jul.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `1ce1c13dc9280b30fc59375d7cb8861705267b23` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/43feae65-68de-4868-9f41-7c39b9747597) +``` ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x74fEa3FB0eD030e9228026E7F413D66186d3D107 | 30000.0 (RAW: 30000000000) | BIP-578 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W26/BIP-585/disable_arbitrum.json b/BIPs/2024-W26/BIP-585/disable_arbitrum.json new file mode 100644 index 000000000..d2aac0110 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_arbitrum.json @@ -0,0 +1,21 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA8920455934Da4D853faac1f94Fe7bEf72943eF1", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W26/BIP-585/disable_arbitrum.report.txt b/BIPs/2024-W26/BIP-585/disable_arbitrum.report.txt new file mode 100644 index 000000000..d01070221 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_arbitrum.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-585/disable_arbitrum.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/724304f4-dd71-4da3-8b70-7fd36627de31) +``` ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================================================================+=========+==========+==============+============+ +| disable | 0xA8920455934Da4D853faac1f94Fe7bEf72943eF1 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W26/BIP-585/disable_avalanche.json b/BIPs/2024-W26/BIP-585/disable_avalanche.json new file mode 100644 index 000000000..4ff36ce04 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_avalanche.json @@ -0,0 +1,21 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xE42FFA682A26EF8F25891db4882932711D42e467", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W26/BIP-585/disable_avalanche.report.txt b/BIPs/2024-W26/BIP-585/disable_avalanche.report.txt new file mode 100644 index 000000000..97f120b8d --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_avalanche.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-585/disable_avalanche.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `avalanche` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/a9834f4f-8c6f-4f4e-805a-217b5678e116) +``` ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================================================================+=========+==========+==============+============+ +| disable | 0xE42FFA682A26EF8F25891db4882932711D42e467 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W26/BIP-585/disable_base.json b/BIPs/2024-W26/BIP-585/disable_base.json new file mode 100644 index 000000000..90f1f1b0d --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_base.json @@ -0,0 +1,21 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x8df317a729fcaA260306d7de28888932cb579b88", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W26/BIP-585/disable_base.report.txt b/BIPs/2024-W26/BIP-585/disable_base.report.txt new file mode 100644 index 000000000..639a95aa0 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_base.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-585/disable_base.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/9bde3bf9-cb93-4f15-aabe-f05dee72e6b0) +``` ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================================================================+=========+==========+==============+============+ +| disable | 0x8df317a729fcaA260306d7de28888932cb579b88 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W26/BIP-585/disable_gnosis.json b/BIPs/2024-W26/BIP-585/disable_gnosis.json new file mode 100644 index 000000000..fc0b09853 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_gnosis.json @@ -0,0 +1,21 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x4bdCc2fb18AEb9e2d281b0278D946445070EAda7", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W26/BIP-585/disable_gnosis.report.txt b/BIPs/2024-W26/BIP-585/disable_gnosis.report.txt new file mode 100644 index 000000000..6194f789e --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_gnosis.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-585/disable_gnosis.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `21ceacb26cf6b303a5e23cb3e8255ec6e4300f80` +CHAIN(S): `gnosis` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/6e5ae463-dbd7-4f54-89dd-62050c560e9c) +``` ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================================================================+=========+==========+==============+============+ +| disable | 0x4bdCc2fb18AEb9e2d281b0278D946445070EAda7 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W26/BIP-585/disable_mainnet.json b/BIPs/2024-W26/BIP-585/disable_mainnet.json new file mode 100644 index 000000000..830e11c27 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_mainnet.json @@ -0,0 +1,21 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xDB8d758BCb971e482B2C45f7F8a7740283A1bd3A", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W26/BIP-585/disable_mainnet.report.txt b/BIPs/2024-W26/BIP-585/disable_mainnet.report.txt new file mode 100644 index 000000000..6854ef4e9 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_mainnet.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-585/disable_mainnet.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9954224dd763e8e2a28099d1996cf31fd62eaaa0` +CHAIN(S): `mainnet` +TENDERLY: [FAILURE]() +``` ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================================================================+=========+==========+==============+============+ +| disable | 0xDB8d758BCb971e482B2C45f7F8a7740283A1bd3A (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W26/BIP-585/disable_optimism.json b/BIPs/2024-W26/BIP-585/disable_optimism.json new file mode 100644 index 000000000..9eb8f1fd4 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_optimism.json @@ -0,0 +1,21 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x043A2daD730d585C44FB79D2614F295D2d625412", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W26/BIP-585/disable_optimism.report.txt b/BIPs/2024-W26/BIP-585/disable_optimism.report.txt new file mode 100644 index 000000000..7bf5e789d --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_optimism.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-585/disable_optimism.json` +MULTISIG: `multisigs/emergency (optimism:0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B)` +COMMIT: `048b49f20bb9e5b4b33ba6b1943d2dd3aa4ff2b6` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/af4a0048-8499-4c71-bfb4-e1b55b79a15e) +``` ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| disable | 0x043A2daD730d585C44FB79D2614F295D2d625412 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++---------+-------------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-585/disable_polygon.json b/BIPs/2024-W26/BIP-585/disable_polygon.json new file mode 100644 index 000000000..fcb1ec72b --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_polygon.json @@ -0,0 +1,21 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xe2fa4e1d17725e72dcdAfe943Ecf45dF4B9E285b", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W26/BIP-585/disable_polygon.report.txt b/BIPs/2024-W26/BIP-585/disable_polygon.report.txt new file mode 100644 index 000000000..b700cdcc0 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_polygon.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-585/disable_polygon.json` +MULTISIG: `multisigs/lm (polygon:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9954224dd763e8e2a28099d1996cf31fd62eaaa0` +CHAIN(S): `polygon` +TENDERLY: [FAILURE]() +``` ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=============================================================================================================+=========+==========+==============+============+ +| disable | 0xe2fa4e1d17725e72dcdAfe943Ecf45dF4B9E285b (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W26/BIP-585/disable_zkevm.json b/BIPs/2024-W26/BIP-585/disable_zkevm.json new file mode 100644 index 000000000..3760675d4 --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_zkevm.json @@ -0,0 +1,28 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1683301539083, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x577e5993B9Cc480F07F98B5Ebd055604bd9071C4", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + }, + { + "to": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "disable", "payable": false }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W26/BIP-585/disable_zkevm.report.txt b/BIPs/2024-W26/BIP-585/disable_zkevm.report.txt new file mode 100644 index 000000000..9fcd3cbbe --- /dev/null +++ b/BIPs/2024-W26/BIP-585/disable_zkevm.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W26/BIP-585/disable_zkevm.json` +MULTISIG: `multisigs/feesManager (zkevm:0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09)` +COMMIT: `9954224dd763e8e2a28099d1996cf31fd62eaaa0` +CHAIN(S): `zkevm` +TENDERLY: [FAILURE]() +``` ++-----------+-------------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+===================================================================================================================+=========+==========+==============+============+ +| disable | 0x577e5993B9Cc480F07F98B5Ebd055604bd9071C4 (20230711-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +| disable | 0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288 (20230711-zkevm-composable-stable-pool-v5/ComposableStablePoolFactory) | 0 | "N/A" | BIP-585 | N/A | ++-----------+-------------------------------------------------------------------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W26/BIP-625.json b/BIPs/2024-W26/BIP-625.json new file mode 100644 index 000000000..7a8a48df7 --- /dev/null +++ b/BIPs/2024-W26/BIP-625.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718291485777, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBf4116cEf22D4565A16696427Eaefc248F47Beb6", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-625.report.txt b/BIPs/2024-W26/BIP-625.report.txt new file mode 100644 index 000000000..668853de5 --- /dev/null +++ b/BIPs/2024-W26/BIP-625.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W26/BIP-625.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b1100f295e73256cf8d68b828bd7433cc442492f` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/8c0c96f5-329b-46d0-ab93-c947494c8bcb) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+----------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+----------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x71e1179c5e197fa551beec85ca2ef8693c61b85b0002000000000000000000a0 | ECLP-rETH-WETH | 0xBf4116cEf22D4565A16696427Eaefc248F47Beb6 | 0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1: WETH | | | BIP-625 | 0 | +| | pool_address: 0x71E1179C5e197FA551BEEC85ca2EF8693c61b85b | fee: 0.02 | Style: L0 sidechain | 0xc791240D1F2dEf5938E2031364Ff4ed887133C3d: rETH | | | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+----------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.json b/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.json new file mode 100644 index 000000000..b965a8187 --- /dev/null +++ b/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718692876184, + "meta": { + "name": "Transactions Batch", + "description": "Add Heroglyph Gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5fDEcB3bAA4d12Ac1190DF57C3c8347ccb0C4432", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x17a738D17a4ff98abAfde9C60D0d116D0D63021f", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf8aE0F56f7f95f6D3B773799ee85724efD651583", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC65086819f5d32185D9FFCeAe2AE9A6CDCe3F346", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.report.txt b/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.report.txt new file mode 100644 index 000000000..f1b0a5838 --- /dev/null +++ b/BIPs/2024-W26/BIP-626-Heroglyphs-gauges.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/2024-W26/BIP-626-Heroglyphs-gauges.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ef916367a9a476f88d675567ee8a82e1aa3b2a83` +CHAIN(S): `arbitrum, base, polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/3939aeb0-d289-4a4f-9c06-4aab06953cb2) +``` ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x7c173e2a341faf5c90bf0ff448cd925d3731c604000200000000000000000eb8 | 50WMATIC-50PORIGON | 0x5fDEcB3bAA4d12Ac1190DF57C3c8347ccb0C4432 | 0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270: WMATIC | 0x0000000000000000000000000000000000000000 | -- | BIP-626 | 0 | +| | pool_address: 0x7c173e2A341Faf5C90BF0fF448CD925D3731c604 | fee: 1.0 | Style: L0 sidechain | 0xC3323b6e71925b25943fB7369EE6769837e9C676: PORIGON | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x0dce7d1e1fbfc85c31bd04f890027738f00e580b000100000000000000000163 | 33WETH-33KABOSUCHAN-33DOG | 0x17a738D17a4ff98abAfde9C60D0d116D0D63021f | 0x4200000000000000000000000000000000000006: WETH | 0x0000000000000000000000000000000000000000 | -- | BIP-626 | 1 | +| | pool_address: 0x0DCE7d1E1fbfC85C31bd04F890027738F00e580B | fee: 1.0 | Style: L0 sidechain | 0x9e949461F9EC22C6032cE26Ea509824Fd2f6d98f: KABOSUCHAN | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | 0xAfb89a09D82FBDE58f18Ac6437B3fC81724e4dF6: DOG | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0xd2b6e489ce64691cb46967df6963a49f92764ba9000200000000000000000545 | 50OOGABOOGA-50USDC | 0xf8aE0F56f7f95f6D3B773799ee85724efD651583 | 0x4e6b45BB1C7D11402faf72c2d59cAbC4085E36f2: OogaBooga | 0x0000000000000000000000000000000000000000 | -- | BIP-626 | 2 | +| | pool_address: 0xd2B6E489ce64691cb46967Df6963a49f92764Ba9 | fee: 1.0 | Style: L0 sidechain | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0xfed111077e0905ef2b2fbf3060cfa9a34bab4383000200000000000000000544 | 50MOLANDAK-50USDT | 0xC65086819f5d32185D9FFCeAe2AE9A6CDCe3F346 | 0xA170Eaa9a74ab4b3218C736210b0421aF35C3c00: MOLANDAK | 0x0000000000000000000000000000000000000000 | -- | BIP-626 | 3 | +| | pool_address: 0xfeD111077E0905eF2B2fbf3060cFa9a34BaB4383 | fee: 1.0 | Style: L0 sidechain | 0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9: USDT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-627syrupUSD-sDAI-gauge-Mainnet.json b/BIPs/2024-W26/BIP-627syrupUSD-sDAI-gauge-Mainnet.json new file mode 100644 index 000000000..03c5712c2 --- /dev/null +++ b/BIPs/2024-W26/BIP-627syrupUSD-sDAI-gauge-Mainnet.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718779626917, + "meta": { + "name": "Transactions Batch", + "description": "Add syrupUSDC / sDAI gauge mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1A33F4e48fc9A6b015Ff44Fa7a592d3aC9F9B99e", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-627syrupUSD-sDAI-gauge-Mainnet.report.txt b/BIPs/2024-W26/BIP-627syrupUSD-sDAI-gauge-Mainnet.report.txt new file mode 100644 index 000000000..746a7f607 --- /dev/null +++ b/BIPs/2024-W26/BIP-627syrupUSD-sDAI-gauge-Mainnet.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W26/BIP-627syrupUSD-sDAI-gauge-Mainnet.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `N/A` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/82a96535-a8e6-404a-88d8-71ca58d383b2) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x48a5bfb5bd44345db0b31fa4b5a204890695c9b4000000000000000000000697 | syrupUSDC/sDAI | 0x1A33F4e48fc9A6b015Ff44Fa7a592d3aC9F9B99e | 0x48a5bFB5bd44345Db0B31FA4b5a204890695C9B4: syrupUSDC/sDAI | 0x0000000000000000000000000000000000000000 | -- | BIP-627 | 0 | +| | pool_address: 0x48a5bFB5bd44345Db0B31FA4b5a204890695C9B4 | fee: 0.1 | Style: mainnet | 0x80ac24aA929eaF5013f6436cdA2a7ba190f5Cc0b: syrupUSDC | 0xd2C59781F1Db84080A0592CE83Fe265642A4a8Eb | safe | | | +| | | a-factor: 500 | cap: 2.0% | 0x83F20F44975D03b1b09e64809B757c47f942BEeA: sDAI | 0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c | safe | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.json b/BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.json new file mode 100644 index 000000000..ed9dd5351 --- /dev/null +++ b/BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718695832420, + "meta": { + "name": "Transactions Batch", + "description": "Fund Maxis for Q3 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "172500000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "14464000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.report.txt b/BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.report.txt new file mode 100644 index 000000000..ae2e1f3fb --- /dev/null +++ b/BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W26/BIP-630-fund-maxis-q3-2024.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `216d5df917780c6bf07db9cc0190f06d081d7e4a` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/376d2212-4fd5-4a68-b66c-3c2611f3340b) +``` ++----------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 172500.0 (RAW: 172500000000) | BIP-630 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 14464.0 (RAW: 14464000000000000000000) | BIP-630 | 1 | ++----------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-631-beethoven-x-technical-q3-2024.json b/BIPs/2024-W26/BIP-631-beethoven-x-technical-q3-2024.json new file mode 100644 index 000000000..b2fa5a538 --- /dev/null +++ b/BIPs/2024-W26/BIP-631-beethoven-x-technical-q3-2024.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718696188182, + "meta": { + "name": "Transactions Batch", + "description": "Fund Beethoven-X Technical for Q3 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "87000000000" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-631-beethoven-x-technical-q3-2024.report.txt b/BIPs/2024-W26/BIP-631-beethoven-x-technical-q3-2024.report.txt new file mode 100644 index 000000000..7020674dd --- /dev/null +++ b/BIPs/2024-W26/BIP-631-beethoven-x-technical-q3-2024.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-631-beethoven-x-technical-q3-2024.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `f6e1ac7f36d37cf269781474cc38d9a71142e5af` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9b7617a4-33cf-48e1-94f1-b56472337812) +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 87000.0 (RAW: 87000000000) | BIP-631 | 0 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-632-fund-beethoven-x-marketing-q3-2024.json b/BIPs/2024-W26/BIP-632-fund-beethoven-x-marketing-q3-2024.json new file mode 100644 index 000000000..aefa9acd3 --- /dev/null +++ b/BIPs/2024-W26/BIP-632-fund-beethoven-x-marketing-q3-2024.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718697600734, + "meta": { + "name": "Transactions Batch", + "description": "Fund Beethoven-X Marketing for Q3 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "90000000000" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-632-fund-beethoven-x-marketing-q3-2024.report.txt b/BIPs/2024-W26/BIP-632-fund-beethoven-x-marketing-q3-2024.report.txt new file mode 100644 index 000000000..424f59300 --- /dev/null +++ b/BIPs/2024-W26/BIP-632-fund-beethoven-x-marketing-q3-2024.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-632-fund-beethoven-x-marketing-q3-2024.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `5e13da60af97b3cd180d363d5c6937d6c55e1349` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/53970350-94d7-4fd3-bc0f-698986678028) +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 90000.0 (RAW: 90000000000) | BIP-632 | 0 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-633-fund-grants-q3-2024.json b/BIPs/2024-W26/BIP-633-fund-grants-q3-2024.json new file mode 100644 index 000000000..a0057df24 --- /dev/null +++ b/BIPs/2024-W26/BIP-633-fund-grants-q3-2024.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718700616136, + "meta": { + "name": "Transactions Batch", + "description": "Fund grants for Q3 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "6900000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "33527000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-633-fund-grants-q3-2024.report.txt b/BIPs/2024-W26/BIP-633-fund-grants-q3-2024.report.txt new file mode 100644 index 000000000..017312ae9 --- /dev/null +++ b/BIPs/2024-W26/BIP-633-fund-grants-q3-2024.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W26/BIP-633-fund-grants-q3-2024.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `d712ad524dd5972083f571b38e131aeab6d64f51` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cfe9c976-839f-4963-9f91-7a0694cfcece) +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 6900.0 (RAW: 6900000000) | BIP-633 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 33527.0 (RAW: 33527000000000000000000) | BIP-633 | 1 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-634-fund-opco-admin-year3.json b/BIPs/2024-W26/BIP-634-fund-opco-admin-year3.json new file mode 100644 index 000000000..36b98fc9c --- /dev/null +++ b/BIPs/2024-W26/BIP-634-fund-opco-admin-year3.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718713991432, + "meta": { + "name": "Transactions Batch", + "description": "Fund OpCo for year 3 (2024-2025)", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "522168000000" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-634-fund-opco-admin-year3.report.txt b/BIPs/2024-W26/BIP-634-fund-opco-admin-year3.report.txt new file mode 100644 index 000000000..aa90de4e1 --- /dev/null +++ b/BIPs/2024-W26/BIP-634-fund-opco-admin-year3.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-634-fund-opco-admin-year3.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `2c322d2f95d93a4f5d3a4910bc2f20d6dd2fcf18` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/da88ffe6-5dd7-4a0d-9639-d864a8299f60) +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 522168.0 (RAW: 522168000000) | BIP-634 | 0 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-636A-Add-WAR-wETH-Gauge.json b/BIPs/2024-W26/BIP-636A-Add-WAR-wETH-Gauge.json new file mode 100644 index 000000000..ed89f41fd --- /dev/null +++ b/BIPs/2024-W26/BIP-636A-Add-WAR-wETH-Gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718840259993, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x37e129d1a4dd0f34355e53b0e34a3b9ae0d42a9f5f472f436931b396b934f296" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x07b914F3C6031D5499ac5bE828016b115fc68825", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-636A-Add-WAR-wETH-Gauge.report.txt b/BIPs/2024-W26/BIP-636A-Add-WAR-wETH-Gauge.report.txt new file mode 100644 index 000000000..cd9ef966f --- /dev/null +++ b/BIPs/2024-W26/BIP-636A-Add-WAR-wETH-Gauge.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W26/BIP-636A-Add-WAR-wETH-Gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `885f7a43d22dfe402a2c6dbf02f1c51e170b33e9` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b2e11985-4f46-4825-ada9-c89b0d1f6705) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x5002eb99f569405987d56e53cec01fbb5da28968000200000000000000000696 | 50WAR-50WETH | 0x07b914F3C6031D5499ac5bE828016b115fc68825 | 0xa8258deE2a677874a48F5320670A869D74f0cbC1: WAR | 0x0000000000000000000000000000000000000000 | -- | BIP-636 | 0 | +| | pool_address: 0x5002EB99f569405987d56e53Cec01FbB5DA28968 | fee: 1.0 | Style: mainnet | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W26/BIP-636B-Kill-PAL-USDC-Gauge.json b/BIPs/2024-W26/BIP-636B-Kill-PAL-USDC-Gauge.json new file mode 100644 index 000000000..1cb81c98e --- /dev/null +++ b/BIPs/2024-W26/BIP-636B-Kill-PAL-USDC-Gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718840306564, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x19c80f7061594c680d39a5652cb46669806a10c9b552adbd3cade10b4f62387f" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe2b680A8d02fbf48C7D9465398C4225d7b7A7f87", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-636B-Kill-PAL-USDC-Gauge.report.txt b/BIPs/2024-W26/BIP-636B-Kill-PAL-USDC-Gauge.report.txt new file mode 100644 index 000000000..390e6ab38 --- /dev/null +++ b/BIPs/2024-W26/BIP-636B-Kill-PAL-USDC-Gauge.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W26/BIP-636B-Kill-PAL-USDC-Gauge.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `885f7a43d22dfe402a2c6dbf02f1c51e170b33e9` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/8cd43777-7c62-43d1-a381-a41fa8fd18c0) +``` ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0xa7ff759dbef9f3efdd1d59beee44b966acafe214000200000000000000000180 | USDC-PAL | N/A | 0xe2b680A8d02fbf48C7D9465398C4225d7b7A7f87 | 1.0% | 2.0% | mainnet | BIP-636 | 0 | ['0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: USDC', '0xAB846Fb6C81370327e784Ae7CbB6d6a6af6Ff4BF: PAL'] | ++--------------------------+--------------------------------------------------------------------+----------+-----+--------------------------------------------+------+------+---------+---------+----------+---------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.json b/BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.json new file mode 100644 index 000000000..73000590c --- /dev/null +++ b/BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718716102306, + "meta": { + "name": "Transactions Batch", + "description": "Fund BD Unit for Q3 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "36000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "4386000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.report.txt b/BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.report.txt new file mode 100644 index 000000000..1f7065c83 --- /dev/null +++ b/BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W26/BIP-XXX-fund-bd-q3-2024.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e571705e5ca2a566eb9d5832caaf1dbb9680a4f5` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/bbf34dbf-f789-400a-a577-acc268859ddc) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 36000.0 (RAW: 36000000000) | N/A | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 4386.0 (RAW: 4386000000000000000000) | N/A | 1 | ++----------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+-----+----------+ +``` diff --git a/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json b/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json new file mode 100644 index 000000000..87c111dc3 --- /dev/null +++ b/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719265451781, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xea35f542c6535a7eced16776eaa5039958d38f0dec64d6c30e5d07240f00eef7" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166, 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGaugeType", + "payable": false + }, + "contractInputsValues": { "gaugeType": "Fraxtal" } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "setGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x18CC3C68A5e64b40c846Aa6E45312cbcBb94f71b", + "gaugeType": "Fraxtal" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166, 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151]", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.report.txt b/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.report.txt new file mode 100644 index 000000000..bde6acc5c --- /dev/null +++ b/BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.report.txt @@ -0,0 +1,39 @@ +FILENAME: `BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `4522a581b5e3fc0af5c6fd209465368cf5b0241f` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/bf697534-ef18-48e4-af4c-281926be43bf) +``` ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-637 | 0 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | +| Authorizer/revokeRoles | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20230519-gauge-adder-v4/GaugeAdder/setGaugeFactory(address,string) | 0x3f44776af02a9227991da37715b44e45db40735e216b3ab33144859bb6737166 | BIP-637 | 3 | +| | | | 20230519-gauge-adder-v4/GaugeAdder/addGaugeType(string) | 0x2960d085c4c968d7cad55c0da3f97014525b948fdce990ecaef4e832b5f0b151 | | | ++------------------------+---------------+--------------------------------------------+--------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W27/BIP-637A Fraxtal Gauges and Cross Chain Wire Up.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `4522a581b5e3fc0af5c6fd209465368cf5b0241f` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/79df4eb5-af46-47c5-8dbb-fcc4790caa9d) +``` ++-----------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +| addGaugeType | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-637 | N/A | +| | | | "gaugeType": [ | | | +| | | | "Fraxtal" | | | +| | | | ] | | | +| | | | } | | | +| setGaugeFactory | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-637 | N/A | +| | | | "factory": [ | | | +| | | | "0x18CC3C68A5e64b40c846Aa6E45312cbcBb94f71b (20240522-fraxtal-root-gauge-factory/OptimisticRootGaugeFactory)" | | | +| | | | ], | | | +| | | | "gaugeType": [ | | | +| | | | "Fraxtal" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+---------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.json b/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.json new file mode 100644 index 000000000..844187b55 --- /dev/null +++ b/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1719269218619, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "0xeb6bdcbaedfaa28fd0543d910dd4a333a9a082b17ef270e395334d76bcb59ef6" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f]", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + }, + { + "to": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IVeDelegation", + "name": "delegation", + "type": "address" + } + ], + "name": "setDelegation", + "payable": false + }, + "contractInputsValues": { + "delegation": "0x1702067424096F07A60e62cceE3dE9420068492D" + } + }, + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f]", + "account": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.report.txt b/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.report.txt new file mode 100644 index 000000000..a8ad8696c --- /dev/null +++ b/BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.report.txt @@ -0,0 +1,29 @@ +FILENAME: `BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `4522a581b5e3fc0af5c6fd209465368cf5b0241f` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a772244f-cad7-4b37-822c-8d444fb35a5a) +``` ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f | BIP-637 | 0 | +| Authorizer/revokeRoles | multisigs/dao | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e | 20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy/setDelegation(address) | 0xd6a470b7515ff20313e51cfcb0941cc9bc6de272c8ef76595ca93c330a626a2f | BIP-637 | 2 | ++------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W27/BIP-637B Fraxtal Gauges and Cross Chain Wire Up.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `4522a581b5e3fc0af5c6fd209465368cf5b0241f` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/64b409f8-2e96-4f36-9bf2-2d61d7da4b3b) +``` ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| setDelegation | 0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7 (20230316-l2-ve-delegation-proxy/VotingEscrowDelegationProxy) | 0 | { | BIP-637 | N/A | +| | | | "delegation": [ | | | +| | | | "0x1702067424096F07A60e62cceE3dE9420068492D (20230525-l2-veboost-v2/VeBoostV2)" | | | +| | | | ] | | | +| | | | } | | | ++---------------+----------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-637C Fraxtal Gauges and Cross Chain Wire Up.json b/BIPs/2024-W27/BIP-637C Fraxtal Gauges and Cross Chain Wire Up.json new file mode 100644 index 000000000..e40d4970f --- /dev/null +++ b/BIPs/2024-W27/BIP-637C Fraxtal Gauges and Cross Chain Wire Up.json @@ -0,0 +1,36 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719269294017, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x7d25d4fd16badedb36161c5fcd49a9f31ea3ce0f8d31d4263452f70bbf0c9a63" + }, + "transactions": [ + { + "to": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint16", + "name": "_remoteChainId", + "type": "uint16" + }, + { "internalType": "bytes", "name": "_remoteAddress", "type": "bytes" } + ], + "name": "setTrustedRemoteAddress", + "payable": false + }, + "contractInputsValues": { + "_remoteChainId": "255", + "_remoteAddress": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-637C Fraxtal Gauges and Cross Chain Wire Up.report.txt b/BIPs/2024-W27/BIP-637C Fraxtal Gauges and Cross Chain Wire Up.report.txt new file mode 100644 index 000000000..d283934be --- /dev/null +++ b/BIPs/2024-W27/BIP-637C Fraxtal Gauges and Cross Chain Wire Up.report.txt @@ -0,0 +1,19 @@ +FILENAME: `BIPs/2024-W27/BIP-637C Fraxtal Gauges and Cross Chain Wire Up.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4522a581b5e3fc0af5c6fd209465368cf5b0241f` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f2c6a85a-8866-4241-8f6d-4c2f65e85a44) +``` ++-------------------------+-------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------+-------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| setTrustedRemoteAddress | 0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (layerzero/OmniVotingEscrow) | 0 | { | BIP-637 | N/A | +| | | | "_remoteChainId": [ | | | +| | | | "255" | | | +| | | | ], | | | +| | | | "_remoteAddress": [ | | | +| | | | "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (layerzero/OmniVotingEscrow)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+-------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-638.json b/BIPs/2024-W27/BIP-638.json new file mode 100644 index 000000000..7aace120a --- /dev/null +++ b/BIPs/2024-W27/BIP-638.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719383753, + "meta": { + "name": "Claim AURA vest and bundle relock vlAURA", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xca94d855b2db96ef3d9e7c14d53801d78ed4712b84273141d1b20ae38fd2f59e" + }, + "transactions": [ + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_relock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "processExpiredLocks", + "payable": false + }, + "contractInputsValues": { + "_relock": "true" + } + }, + { + "to": "0xFd72170339AC6d7bdda09D1eACA346B21a30D422", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_lock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "_lock": "true" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-638.report.txt b/BIPs/2024-W27/BIP-638.report.txt new file mode 100644 index 000000000..5b7222006 --- /dev/null +++ b/BIPs/2024-W27/BIP-638.report.txt @@ -0,0 +1,21 @@ +FILENAME: `BIPs/2024-W27/BIP-638.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `84b22f4fe3804fb3df55e54767c80647766d3ada` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/0ae69947-81b9-4aca-84a0-4395f7b2ad03) +``` ++---------------------+----------------------------------------------------------------------+-------+----------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------------+----------------------------------------------------------------------+-------+----------------+------------+----------+ +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-638 | N/A | +| | | | "_relock": [ | | | +| | | | "true" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (aura/aura_vested_escrow) | 0 | { | BIP-638 | N/A | +| | | | "_lock": [ | | | +| | | | "true" | | | +| | | | ] | | | +| | | | } | | | ++---------------------+----------------------------------------------------------------------+-------+----------------+------------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-639.json b/BIPs/2024-W27/BIP-639.json new file mode 100644 index 000000000..74a6207d4 --- /dev/null +++ b/BIPs/2024-W27/BIP-639.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719384274411, + "meta": { + "name": "Transactions Batch", + "description": "Add weETH-wstETH gauge OP", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3Db8e1Ffe58EA99939efaeF084ca23Cc0195B531", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-639.report.txt b/BIPs/2024-W27/BIP-639.report.txt new file mode 100644 index 000000000..d20bd093e --- /dev/null +++ b/BIPs/2024-W27/BIP-639.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W27/BIP-639.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6faa49b2ba0c87cc541ba505e5e75ef159422d26` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/10fc1e09-c98e-4f93-9d61-9283a875ed8b) +``` ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+-------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+-------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2bb4712247d5f451063b5e4f6948abdfb925d93d000000000000000000000136 | bpt-weethwsteth | 0x3Db8e1Ffe58EA99939efaeF084ca23Cc0195B531 | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | BIP-639 | 0 | +| | pool_address: 0x2Bb4712247D5F451063b5E4f6948abDfb925d93D | fee: 0.04 | Style: L0 sidechain | 0x2Bb4712247D5F451063b5E4f6948abDfb925d93D: bpt-weethwsteth | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 100 | cap: 100.0% | 0x5A7fACB970D094B6C7FF1df0eA68D99E6e73CBFF: weETH | 0xef42D000a3e85C4e71C57e2C6A1E600e86f5a91B | safe | | | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+-------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-640-enable-USDC.e-USDT-sDAI-gauge-Gnosis.json b/BIPs/2024-W27/BIP-640-enable-USDC.e-USDT-sDAI-gauge-Gnosis.json new file mode 100644 index 000000000..23f6454bc --- /dev/null +++ b/BIPs/2024-W27/BIP-640-enable-USDC.e-USDT-sDAI-gauge-Gnosis.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718291485777, + "meta": { + "name": "Transactions Batch", + "description": "Add sDAI-stab3l gauge on Gnosis", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x81900935C04A3F7152BD6b0b3B894Ac5932c367F", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-641.json b/BIPs/2024-W27/BIP-641.json new file mode 100644 index 000000000..a223a5392 --- /dev/null +++ b/BIPs/2024-W27/BIP-641.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719402061585, + "meta": { + "name": "Transactions Batch", + "description": "wstETH-WETH ECLP", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-641.report.txt b/BIPs/2024-W27/BIP-641.report.txt new file mode 100644 index 000000000..cc16ee322 --- /dev/null +++ b/BIPs/2024-W27/BIP-641.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W27/BIP-641.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4f4cb93cf398764222908ebaf15b6dd94adf18da` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a121b1c6-e262-427d-9d5c-df6cdf2dcf9c) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | ECLP-wstETH-WETH | 0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5 | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-641 | 0 | +| | pool_address: 0x7967FA58B9501600D96bD843173b9334983EE6E6 | fee: 0.005 | Style: L0 sidechain | 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-642.json b/BIPs/2024-W27/BIP-642.json new file mode 100644 index 000000000..7a6555939 --- /dev/null +++ b/BIPs/2024-W27/BIP-642.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719402632550, + "meta": { + "name": "Transactions Batch", + "description": "Add GYD rehype ECLP gauges Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-642.report.txt b/BIPs/2024-W27/BIP-642.report.txt new file mode 100644 index 000000000..9d3942a96 --- /dev/null +++ b/BIPs/2024-W27/BIP-642.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W27/BIP-642.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0cfd6cd5c81bef5be0bb29d2d20e52187c3899bb` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c2269b82-9875-4076-8ce9-8b9cdfd5ff3c) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549 | ECLP-GYD-AUSDT | 0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb | 0xb165a74407fE1e519d6bCbDeC1Ed3202B35a4140: stataArbUSDT | 0x48942B49B5bB6f3E1d43c204a3F40a4c5F696ef6 | safe | BIP-642 | 0 | +| | pool_address: 0x7272163A931DaC5BBe1CB5feFaF959BB65F7346F | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548 | ECLP-GYD-AUSDC | 0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5 | 0x7CFaDFD5645B50bE87d546f42699d863648251ad: stataArbUSDCn | 0x87cD462A781c0ca843EAB131Bf368328848bB6fD | safe | BIP-642 | 1 | +| | pool_address: 0x6e822c64c00393b2078f2a5BB75c575aB505B55c | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.json b/BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.json new file mode 100644 index 000000000..9198d6350 --- /dev/null +++ b/BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719437001163, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xad5a8838bf7e39e30e59ee1465f8c4173f3343e8f6a97199708e18d8fdf68682" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6b9dE817875952Cb23d985AbF6fa9ec4b7f66ad5", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7C02ac2BAd481dC4E566D3D54359244f381d58dC", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.report.txt b/BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.report.txt new file mode 100644 index 000000000..78631a5d9 --- /dev/null +++ b/BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W27/BIP-643 Enable BAO 8020 Gauges.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6de08870b306a8c1b178b5069eba263914a9a949` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1a79be6f-fe74-455a-9f45-ac967ac82d55) +``` ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x9412206f58cc72b9b4e340422a95354372a3ec3d00020000000000000000069a | 20B-baoUSD-LUSD-BPT-80BAO | 0x6b9dE817875952Cb23d985AbF6fa9ec4b7f66ad5 | 0x7E9AfD25F5Ec0eb24d7d4b089Ae7EcB9651c8b1F: B-baoUSD-LUSD-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-643 | 0 | +| | pool_address: 0x9412206f58cc72b9b4e340422A95354372A3ec3D | fee: 1.0 | Style: mainnet | 0xCe391315b414D4c7555956120461D21808A69F3A: BAO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x19df5bb37380186bc8efc5ad91516373a2c5459f000200000000000000000698 | 20B-baoETH-ETH-BPT-80BAO | 0x7C02ac2BAd481dC4E566D3D54359244f381d58dC | 0x1A44E35d5451E0b78621A1B3e7a53DFaA306B1D0: B-baoETH-ETH-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-643 | 1 | +| | pool_address: 0x19DF5BB37380186bC8EFc5Ad91516373A2C5459f | fee: 1.0 | Style: mainnet | 0xCe391315b414D4c7555956120461D21808A69F3A: BAO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+----------------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-645.json b/BIPs/2024-W27/BIP-645.json new file mode 100644 index 000000000..47d2e92b5 --- /dev/null +++ b/BIPs/2024-W27/BIP-645.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719466929871, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-645.report.txt b/BIPs/2024-W27/BIP-645.report.txt new file mode 100644 index 000000000..df1bfe0ac --- /dev/null +++ b/BIPs/2024-W27/BIP-645.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W27/BIP-645.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c4581ebf12530fb0ef1db36e694961f5571469ec` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/79b4e67e-03d8-465b-b305-d0e1862757fb) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xb8cb384e65096386c1edaaf784e842c957fa3645000000000000000000000571 | inETH/wstETH | 0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729 | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-645 | 0 | +| | pool_address: 0xB8Cb384E65096386C1eDaaF784e842c957FA3645 | fee: 0.04 | Style: L0 sidechain | 0x5A7a183B6B44Dc4EC2E3d2eF43F98C5152b1d76d: inETH | 0x971b35225361535D04828F16442AAA54009efE1a | !!NO REVIEW!! | | | +| | | a-factor: 200 | cap: 100.0% | 0xB8Cb384E65096386C1eDaaF784e842c957FA3645: inETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W27/BIP-648.json b/BIPs/2024-W27/BIP-648.json new file mode 100644 index 000000000..a5086a685 --- /dev/null +++ b/BIPs/2024-W27/BIP-648.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719488806620, + "meta": { + "name": "Transactions Batch", + "description": "Karpatkey Financial Reporting Grant", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "5205000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W27/BIP-648.report.txt b/BIPs/2024-W27/BIP-648.report.txt new file mode 100644 index 000000000..7802e926b --- /dev/null +++ b/BIPs/2024-W27/BIP-648.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W27/BIP-648.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `8160172aaee9d9291fe56617a362890531e2f145` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/fa2382c7-ee83-45c1-b469-349ed31c1dbb) +``` ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 5205.0 (RAW: 5205000000000000000000) | BIP-648 | 0 | ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W27/[BIP-644] Enable amphrETH/rstETH/Re7LRT/steakLRT/[BIP-644] Enable trenSTETH Gauge [Ethereum].json b/BIPs/2024-W27/[BIP-644] Enable amphrETH/rstETH/Re7LRT/steakLRT/[BIP-644] Enable trenSTETH Gauge [Ethereum].json new file mode 100644 index 000000000..0d4068baf --- /dev/null +++ b/BIPs/2024-W27/[BIP-644] Enable amphrETH/rstETH/Re7LRT/steakLRT/[BIP-644] Enable trenSTETH Gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719437491465, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xaa1886e5d3c7edb5fcff2f074964cb0d08696584be47b9f6ce572d09962e38a7" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x03ac2920378A51d6CA78813b1d7578Dab08d3760", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W27/[BIP-644] Enable amphrETH/rstETH/Re7LRT/steakLRT/[BIP-644] Enable trenSTETH Gauge [Ethereum].report.txt b/BIPs/2024-W27/[BIP-644] Enable amphrETH/rstETH/Re7LRT/steakLRT/[BIP-644] Enable trenSTETH Gauge [Ethereum].report.txt new file mode 100644 index 000000000..5494fc393 --- /dev/null +++ b/BIPs/2024-W27/[BIP-644] Enable amphrETH/rstETH/Re7LRT/steakLRT/[BIP-644] Enable trenSTETH Gauge [Ethereum].report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W27/[BIP-644] Enable amphrETH/rstETH/Re7LRT/steakLRT/[BIP-644] Enable trenSTETH Gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `59fd5c03fb09cb655a6ad3f3535f5eaf24eff1fe` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b0ea2401-66d0-4276-a35a-c26fbee0030c) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | trenSTETH | 0x03ac2920378A51d6CA78813b1d7578Dab08d3760 | 0x4216d5900a6109bba48418b5e2AB6cc4e61Cf477: trenSTETH | 0x0000000000000000000000000000000000000000 | -- | BIP-644 | 0 | +| | pool_address: 0x4216d5900a6109bba48418b5e2AB6cc4e61Cf477 | fee: 0.04 | Style: mainnet | 0x5fD13359Ba15A84B76f7F87568309040176167cd: amphrETH | 0x3A2228C7B3Bc3A32AEa9338d0A890A5EbD7bc977 | !!NO REVIEW!! | | | +| | | a-factor: 200 | cap: 100.0% | 0x7a4EffD87C2f3C55CA251080b1343b605f327E3a: rstETH | 0x6984F8E8ce474B69A2F32bE7dEc4d003d644B4B7 | !!NO REVIEW!! | | | +| | | | | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | | | 0x84631c0d0081FDe56DeB72F6DE77abBbF6A9f93a: Re7LRT | 0x9D09c1E832102A23215e27E85B37b139aEe95Ff4 | !!NO REVIEW!! | | | +| | | | | 0xBEEF69Ac7870777598A04B2bd4771c71212E6aBc: steakLRT | 0x20EDB9299Ae83D9f22bE16279a4A2B422F34d020 | !!NO REVIEW!! | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W27/[BIP-646] Enable instETH-wstETH Gauge Arbitrum.json b/BIPs/2024-W27/[BIP-646] Enable instETH-wstETH Gauge Arbitrum.json new file mode 100644 index 000000000..26d93c14c --- /dev/null +++ b/BIPs/2024-W27/[BIP-646] Enable instETH-wstETH Gauge Arbitrum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719453944273, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xe89c7ee72dc7285fe5688eabff4aa7157813524eb06e3c97784436a9cd9367eb" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x82bc385C57447188de50Ba8237210cAaA43a0BB3", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W27/[BIP-646] Enable instETH-wstETH Gauge Arbitrum.report.txt b/BIPs/2024-W27/[BIP-646] Enable instETH-wstETH Gauge Arbitrum.report.txt new file mode 100644 index 000000000..1cc32dab2 --- /dev/null +++ b/BIPs/2024-W27/[BIP-646] Enable instETH-wstETH Gauge Arbitrum.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W27/[BIP-646] Enable instETH-wstETH Gauge Arbitrum.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `80cbc845595f9513d1cd1c55a67b065fe6991b36` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/27e171d9-d0f5-43a1-890c-199f01dc377b) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x5b89dc91e5a4dc6d4ab0d970af6a7f981971a443000000000000000000000572 | instETH/wstETH | 0x82bc385C57447188de50Ba8237210cAaA43a0BB3 | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-646 | 0 | +| | pool_address: 0x5b89dC91E5a4Dc6D4AB0D970AF6A7F981971a443 | fee: 0.04 | Style: L0 sidechain | 0x5b89dC91E5a4Dc6D4AB0D970AF6A7F981971a443: instETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 100.0% | 0xd08C3F25862077056cb1b710937576Af899a4959: InstETH | 0x57a5a0567187FF4A8dcC1A9bBa86155E355878F2 | !!NO REVIEW!! | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].json b/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].json new file mode 100644 index 000000000..9e3df2f7c --- /dev/null +++ b/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719499822701, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x33b5d354b1b7359f9e143c8cf7e5b13ac57a62ff515bfcc2950bc68c46012255" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xccDDC6cbBB003741EAC7A6635d7f3705c5bA6Bd1", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa532f5AAFB0B268D873443d621521ee0EEb8a6d3", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xDa993d62510043602DE20487E8ff409552724f0C", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].report.txt b/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].report.txt new file mode 100644 index 000000000..2bab73a85 --- /dev/null +++ b/BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].report.txt @@ -0,0 +1,20 @@ +FILENAME: `BIPs/2024-W27/[BIP-649] Enable TXAU & TXAG Gauges [Polygon].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4ac3fd93dd1fe56f5a9c7e771b21312ec70bf749` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/fe8daf9c-0684-4522-b43b-e06759266323) +``` ++-----------------------+---------------------------------------------------------------------+-----------------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x98f9220f128eed5e853cd3d23a2c33e1f98f8311000200000000000000000e55 | LP-TXAU-USDC | 0xccDDC6cbBB003741EAC7A6635d7f3705c5bA6Bd1 | 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359: USDC | | | BIP-649 | 0 | +| | pool_address: 0x98F9220f128Eed5e853cd3D23A2C33E1F98F8311 | fee: Not Found | Style: L0 sidechain | 0xA6da8C8999c094432c77E7d318951D34019AF24B: TXAU | | | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x31ac27805b0665695071b640bf2abfbe0736c02e000200000000000000000e56 | LP-TXAG-USDC | 0xa532f5AAFB0B268D873443d621521ee0EEb8a6d3 | 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359: USDC | | | BIP-649 | 1 | +| | pool_address: 0x31ac27805b0665695071b640BF2Abfbe0736c02E | fee: Not Found | Style: L0 sidechain | 0x57fCbd6503C8BE3B1AbAD191Bc7799ef414A5b31: TXAG | | | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0x418681127fb0c4fb5ee01202fbe4ab8c8f4eb84a000100000000000000000e59 | 33TXAG-33WETH-33TXAU | 0xDa993d62510043602DE20487E8ff409552724f0C | 0x57fCbd6503C8BE3B1AbAD191Bc7799ef414A5b31: TXAG | 0x0000000000000000000000000000000000000000 | -- | BIP-649 | 2 | +| | pool_address: 0x418681127fB0C4fb5EE01202fbE4Ab8c8F4eb84a | fee: 0.3 | Style: L0 sidechain | 0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | 0xA6da8C8999c094432c77E7d318951D34019AF24B: TXAU | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W28/BIP-650.json b/BIPs/2024-W28/BIP-650.json new file mode 100644 index 000000000..c9bf6a22c --- /dev/null +++ b/BIPs/2024-W28/BIP-650.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719454540198, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x035f8a6d3a843b475314f26a24fc845d34abe2acae1574f8e5184770500e6716" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE03b4CB39C54EedFe4E46677511989866A88dbE3", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x27213687F92cdA21F10cc09A3e860B6D817Ef096", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6DD48C4858dd84738E2A347881D66761C964CE3F", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W28/BIP-650.report.txt b/BIPs/2024-W28/BIP-650.report.txt new file mode 100644 index 000000000..38c29a8a4 --- /dev/null +++ b/BIPs/2024-W28/BIP-650.report.txt @@ -0,0 +1,24 @@ +FILENAME: `BIPs/2024-W28/BIP-650.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c70fefedbdc79fb8573b8fc02f78df10b2db8eec` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cecaafdd-9e31-48f8-a956-52e96b461c3d) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2b783cd37774bb77d387d35683e8388937712f0a00020000000000000000056b | ECLP-GHO-USDe | 0xE03b4CB39C54EedFe4E46677511989866A88dbE3 | 0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34: USDe | 0x0000000000000000000000000000000000000000 | -- | BIP-650 | 0 | +| | pool_address: 0x2B783cD37774BB77d387D35683e8388937712f0a | fee: 0.01 | Style: L0 sidechain | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c | ECLP-GHO-AUSDC | 0x27213687F92cdA21F10cc09A3e860B6D817Ef096 | 0x7CFaDFD5645B50bE87d546f42699d863648251ad: stataArbUSDCn | 0x87cD462A781c0ca843EAB131Bf368328848bB6fD | safe | BIP-650 | 1 | +| | pool_address: 0x46472CBA35E6800012aA9fcC7939Ff07478C473E | fee: 0.01 | Style: L0 sidechain | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xbc88fa2aeb274326ae3f2c66139d5eb33d1f5c2e00020000000000000000056d | ECLP-GHO-GYD | 0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180 | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | BIP-650 | 2 | +| | pool_address: 0xBc88FA2aeb274326ae3F2c66139D5Eb33D1F5C2E | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xf890360473c12d8015da8dbf7af11da87337a065000000000000000000000570 | GHO/USDC/USDT | 0x6DD48C4858dd84738E2A347881D66761C964CE3F | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | BIP-650 | 3 | +| | pool_address: 0xF890360473c12d8015DA8DBf7Af11dA87337A065 | fee: 0.01 | Style: L0 sidechain | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 750 | cap: 100.0% | 0xF890360473c12d8015DA8DBf7Af11dA87337A065: GHO/USDC/USDT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | | 0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9: USDT | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W28/BIP-654.json b/BIPs/2024-W28/BIP-654.json new file mode 100644 index 000000000..1c3f073ca --- /dev/null +++ b/BIPs/2024-W28/BIP-654.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1720004134409, + "meta": { + "name": "Transactions Batch", + "description": "Add baoETH gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF91BA601c53F831869DA4aCeAAEc11c479413972", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x17753fC89894A5eBD8b327F7d6121038e9240437", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W28/BIP-654.report.txt b/BIPs/2024-W28/BIP-654.report.txt new file mode 100644 index 000000000..33a08a02d --- /dev/null +++ b/BIPs/2024-W28/BIP-654.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/2024-W28/BIP-654.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b03f800d553bd2783466625f0bb0b935897a605c` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/614c61fd-304c-48bf-b366-a744de7fba8e) +``` ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------+-----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------+-----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8296057edb832feac03269e9fce8304ebcbabcaf00000000000000000000069c | B-baoETH-wstETH-BPT | 0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43 | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | BIP-654 | 0 | +| | pool_address: 0x8296057Edb832feac03269E9fCE8304EbCbAbCaF | fee: 0.04 | Style: mainnet | 0x8296057Edb832feac03269E9fCE8304EbCbAbCaF: B-baoETH-wstETH-BPT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 2.0% | 0xf4edfad26EE0D23B69CA93112eccE52704E0006f: baoETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0xabc7d08ef73fe3fb67efd900f4471cca788b089900000000000000000000069d | B-baoETH-rETH-BPT | 0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f | 0xAbC7d08EF73FE3Fb67eFd900F4471CCa788b0899: B-baoETH-rETH-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-654 | 1 | +| | pool_address: 0xAbC7d08EF73FE3Fb67eFd900F4471CCa788b0899 | fee: 0.04 | Style: mainnet | 0xae78736Cd615f374D3085123A210448E74Fc6393: rETH | 0x1a8F81c256aee9C640e14bB0453ce247ea0DFE6F | safe | | | +| | | a-factor: 200 | cap: 2.0% | 0xf4edfad26EE0D23B69CA93112eccE52704E0006f: baoETH | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x79af734562f741946566d5126bbded4cb699e35500000000000000000000069f | B-baoUSD-sUSDe-BPT | 0xF91BA601c53F831869DA4aCeAAEc11c479413972 | 0x7945b0A6674b175695e5d1D08aE1e6F13744Abb0: BaoUSD | 0x0000000000000000000000000000000000000000 | -- | BIP-654 | 2 | +| | pool_address: 0x79AF734562f741946566D5126bBDed4Cb699E355 | fee: 0.04 | Style: mainnet | 0x79AF734562f741946566D5126bBDed4Cb699E355: B-baoUSD-sUSDe-BPT | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 2.0% | 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497: sUSDe | 0x3A244e6B3cfed21593a5E5B347B593C0B48C7dA1 | safe | | | +| GaugeAdderV4/addGauge | 0xc5b3f108024da9776d024fd9cefa4b48e021f1a200000000000000000000069e | B-baoUSD-sDAI-BPT | 0x17753fC89894A5eBD8b327F7d6121038e9240437 | 0x7945b0A6674b175695e5d1D08aE1e6F13744Abb0: BaoUSD | 0x0000000000000000000000000000000000000000 | -- | BIP-654 | 3 | +| | pool_address: 0xC5B3F108024da9776D024fD9CEFa4b48e021f1A2 | fee: 0.04 | Style: mainnet | 0x83F20F44975D03b1b09e64809B757c47f942BEeA: sDAI | 0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c | safe | | | +| | | a-factor: 200 | cap: 2.0% | 0xC5B3F108024da9776D024fD9CEFa4b48e021f1A2: B-baoUSD-sDAI-BPT | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------+-----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Arbitrum.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Arbitrum.json new file mode 100644 index 000000000..66bf3358b --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Arbitrum.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1719967998941, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "createdFromOwnerAddress": "", + "checksum": "0xfe88c2fcce5e879f8fcc00d560c495fe65199e464865bd4de8bd1b6658c4b1ed" + }, + "transactions": [ + { + "to": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9", + "oldOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x606681E47afC7869482660eCD61bd45B53523D83", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Arbitrum.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Arbitrum.report.txt new file mode 100644 index 000000000..b3166f618 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Arbitrum.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Arbitrum.json` +MULTISIG: `multisigs/emergency (arbitrum:0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/18031a40-fe6e-4710-83e4-6b7f4ff2ca67) +``` ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264 (EOA/blabs_ops/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Avalanche.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Avalanche.json new file mode 100644 index 000000000..bc0e93160 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Avalanche.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1719969166524, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "createdFromOwnerAddress": "", + "checksum": "0x008b818ba823dfafdb6d8f494b2ca99a9655b8ea75aacd170f4b618eb042f216" + }, + "transactions": [ + { + "to": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x606681E47afC7869482660eCD61bd45B53523D83", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Avalanche.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Avalanche.report.txt new file mode 100644 index 000000000..36b48e27c --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Avalanche.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Avalanche.json` +MULTISIG: `multisigs/emergency (avalanche:0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/621708fd-9528-4ebb-8555-865bd0e4a59a) +``` ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264 (EOA/blabs_ops/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Base.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Base.json new file mode 100644 index 000000000..908c7f84d --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Base.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1719969604978, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a", + "createdFromOwnerAddress": "", + "checksum": "0x46fa9e594d7f570319e9df8113e141f9cbbcbac78eee0c5047c66cd1fe9ce5b1" + }, + "transactions": [ + { + "to": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xB5485e0F543eE6e01e221A57e58ED95268215Ac9", + "oldOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Base.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Base.report.txt new file mode 100644 index 000000000..8d26fe389 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Base.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Base.json` +MULTISIG: `multisigs/emergency (base:0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/50363daf-7cf4-4f37-9fc9-1d2bd792008b) +``` ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xB5485e0F543eE6e01e221A57e58ED95268215Ac9 (EOA/emergency/juani)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264 (EOA/blabs_ops/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Fraxtal.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Fraxtal.json new file mode 100644 index 000000000..5f28d7d1e --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Fraxtal.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1719970195691, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E", + "createdFromOwnerAddress": "", + "checksum": "0xb5f4be5e8f8f9e272e02c9d07db54752bfd86ca8b1e4723fb830d615aa2744d4" + }, + "transactions": [ + { + "to": "0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x6bB4720473d4D7133f944785e5EE1A650C07f34e", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x606681E47afC7869482660eCD61bd45B53523D83", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Fraxtal.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Fraxtal.report.txt new file mode 100644 index 000000000..84fee65b5 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Fraxtal.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Fraxtal.json` +MULTISIG: `multisigs/emergency (fraxtal:0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d4670775-ad2e-4122-9928-6831f4d43efe) +``` ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x6bB4720473d4D7133f944785e5EE1A650C07f34e (EOA/emergency/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xC66d0Ba27b8309D27cCa70064dfb40b73DB6de9E (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Gnosis.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Gnosis.json new file mode 100644 index 000000000..2fe9f5911 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Gnosis.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1719968679640, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "createdFromOwnerAddress": "", + "checksum": "0x38de8af8ac3b2c868aeaa534683a3e2c35880c384c1604d4b4131b7fec8c697c" + }, + "transactions": [ + { + "to": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x606681E47afC7869482660eCD61bd45B53523D83", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Gnosis.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Gnosis.report.txt new file mode 100644 index 000000000..422621115 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Gnosis.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Gnosis.json` +MULTISIG: `multisigs/emergency (gnosis:0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/43f5be1b-45fb-4160-b7e7-7e751a0ec51a) +``` ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264 (EOA/blabs_ops/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mainnet.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mainnet.json new file mode 100644 index 000000000..5fa3040a5 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mainnet.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719967330903, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "createdFromOwnerAddress": "", + "checksum": "0x2162cc57b740aea9a6d167ee25f2da9c1665767f9201319964f1674ae94b98db" + }, + "transactions": [ + { + "to": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x606681E47afC7869482660eCD61bd45B53523D83", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mainnet.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mainnet.report.txt new file mode 100644 index 000000000..a08aaa6f8 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mainnet.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mainnet.json` +MULTISIG: `multisigs/emergency (mainnet:0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/87450cee-2d0e-49fa-9630-b4df5dafa9c9) +``` ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264 (EOA/blabs_ops/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mode.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mode.json new file mode 100644 index 000000000..1727d2d8e --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mode.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1719970029125, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x66C4b8Ba38a7B57495b7D0581f25784E629516c2", + "createdFromOwnerAddress": "", + "checksum": "0x4567626c9502a2b47ddb9ed8889a57d84c9c512bc2b367ce68a9bd4648eee742" + }, + "transactions": [ + { + "to": "0x66C4b8Ba38a7B57495b7D0581f25784E629516c2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0x66C4b8Ba38a7B57495b7D0581f25784E629516c2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0x66C4b8Ba38a7B57495b7D0581f25784E629516c2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x6bB4720473d4D7133f944785e5EE1A650C07f34e", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + }, + { + "to": "0x66C4b8Ba38a7B57495b7D0581f25784E629516c2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mode.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mode.report.txt new file mode 100644 index 000000000..f339c3ead --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mode.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Mode.json` +MULTISIG: `multisigs/emergency (mode:0x66C4b8Ba38a7B57495b7D0581f25784E629516c2)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ac674e03-ba8a-4c21-acb5-354237832980) +``` ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x6bB4720473d4D7133f944785e5EE1A650C07f34e (EOA/emergency/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x66C4b8Ba38a7B57495b7D0581f25784E629516c2 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Optimism.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Optimism.json new file mode 100644 index 000000000..f5311ec45 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Optimism.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1719968259389, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "createdFromOwnerAddress": "", + "checksum": "0x25cfa17725531628b14116e0fe2371ff517a2625114045929268cd4afc92a068" + }, + "transactions": [ + { + "to": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9", + "oldOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x606681E47afC7869482660eCD61bd45B53523D83", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Optimism.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Optimism.report.txt new file mode 100644 index 000000000..774274ef7 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Optimism.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Optimism.json` +MULTISIG: `multisigs/emergency (optimism:0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/edbc4b9d-f559-4aa1-9b62-a7ef7198de16) +``` ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264 (EOA/blabs_ops/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Polygon.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Polygon.json new file mode 100644 index 000000000..08b40fdfa --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Polygon.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1719967823557, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "createdFromOwnerAddress": "", + "checksum": "0xd0d4acc91eeeffe62280e47f9678bb7cc4322b4138ef71c8c18974c1c86e31f8" + }, + "transactions": [ + { + "to": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9", + "oldOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x606681E47afC7869482660eCD61bd45B53523D83", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Polygon.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Polygon.report.txt new file mode 100644 index 000000000..41b706456 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Polygon.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-Polygon.json` +MULTISIG: `multisigs/emergency (polygon:0x3c58668054c299bE836a0bBB028Bee3aD4724846)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/46236502-d53c-4e0a-b600-a418cdc30a02) +``` ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264 (EOA/blabs_ops/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-PolygonzkEVM.json b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-PolygonzkEVM.json new file mode 100644 index 000000000..b081a6b2c --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-PolygonzkEVM.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1719969405957, + "meta": { + "name": "Replace Emergency DAO Signer Set", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "createdFromOwnerAddress": "", + "checksum": "0x6dc9c7f4af200c18b4f3865dca0c5b8ad0ed18bd44aac002e23264315ed517bc" + }, + "transactions": [ + { + "to": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "prevOwner", "type": "address", "internalType": "address" }, + { "name": "oldOwner", "type": "address", "internalType": "address" }, + { "name": "newOwner", "type": "address", "internalType": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0000000000000000000000000000000000000001", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0x202B1AA0d702898CA474aB6ED31d53BA309308D9" + } + }, + { + "to": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "prevOwner", "type": "address", "internalType": "address" }, + { "name": "oldOwner", "type": "address", "internalType": "address" }, + { "name": "newOwner", "type": "address", "internalType": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6" + } + }, + { + "to": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "prevOwner", "type": "address", "internalType": "address" }, + { "name": "oldOwner", "type": "address", "internalType": "address" }, + { "name": "newOwner", "type": "address", "internalType": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "newOwner": "0x606681E47afC7869482660eCD61bd45B53523D83" + } + }, + { + "to": "0x79b131498355daa2cC740936fcb9A7dF76A86223", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "prevOwner", "type": "address", "internalType": "address" }, + { "name": "oldOwner", "type": "address", "internalType": "address" }, + { "name": "newOwner", "type": "address", "internalType": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x606681E47afC7869482660eCD61bd45B53523D83", + "oldOwner": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + "newOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-PolygonzkEVM.report.txt b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-PolygonzkEVM.report.txt new file mode 100644 index 000000000..863406320 --- /dev/null +++ b/BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-PolygonzkEVM.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W28/[BIP-652] Swap Emergency subDAO Multisg Signers/BIP-652-PolygonzkEVM.json` +MULTISIG: `multisigs/emergency (zkevm:0x79b131498355daa2cC740936fcb9A7dF76A86223)` +COMMIT: `ba6f12a80d5a289958c9edc9b06e35ebb7644807` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': '9bf26820-b121-437d-b953-a3d979a8abd6', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x79b131498355daa2cC740936fcb9A7dF76A86223 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0000000000000000000000000000000000000001 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x202B1AA0d702898CA474aB6ED31d53BA309308D9 (EOA/emergency/hypernative)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x79b131498355daa2cC740936fcb9A7dF76A86223 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xF01Cc7154e255D20489E091a5aEA10Bc136696a8 (EOA/emergency/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x79b131498355daa2cC740936fcb9A7dF76A86223 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264 (EOA/blabs_ops/Markus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x79b131498355daa2cC740936fcb9A7dF76A86223 (multisigs/emergency) | 0 | { | BIP-652 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x606681E47afC7869482660eCD61bd45B53523D83 (N/A)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb (EOA/emergency/Fernando)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.json b/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.json new file mode 100644 index 000000000..27b523c80 --- /dev/null +++ b/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1720059938531, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf4166718cb3e8afc2073d9f95e9e6c26d7fcca30f7ccc3e2a211958fd5c02868" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x58e71Af9CE4378b79dAAf2C4E7be9765c442dFC2", + "gaugeType": "Fraxtal" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x259371cA8AC5E7F3163704Ce58B0dA58820173ed", + "gaugeType": "Fraxtal" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xEA8Ba6b0cB5908A5d803b01CeAea5a6E65D33508", + "gaugeType": "Fraxtal" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5f0a99997ab2AcC5097dc5349aDF6985761336ac", + "gaugeType": "Fraxtal" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.report.txt b/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.report.txt new file mode 100644 index 000000000..58186895c --- /dev/null +++ b/BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.report.txt @@ -0,0 +1,24 @@ +FILENAME: `BIPs/2024-W28/[BIP-655] Enable Initial Fraxtal Gauges.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `5a165387d8ec459d524e41e53598291dce33b274` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1fc93f61-6dfa-444a-bead-822ae04f81c0) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+--------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+--------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xa0b92b33beafce388ce0092afdcd0ca77323eb12000000000000000000000006 | sFRAX/sDAI | 0x58e71Af9CE4378b79dAAf2C4E7be9765c442dFC2 | 0x09eAdcBAa812A4C076c3a6cDe765DC4a22E0d775: sDAI | 0x95eedc9d10B6964a579948Fd717D34F45E15C0C6 | safe | BIP-655 | 0 | +| | pool_address: 0xA0b92B33BeafcE388Ce0092afDcd0cA77323Eb12 | fee: 0.01 | Style: L0 sidechain | 0xA0b92B33BeafcE388Ce0092afDcd0cA77323Eb12: sFRAX/sDAI | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | cap: 100.0% | 0xfc00000000000000000000000000000000000008: sFRAX | 0x3893E8e1584fF73188034D37Fc6B7d41A255E570 | safe | | | +| GaugeAdderV4/addGauge | 0xa0af0b88796c1aa67e93db89fead2ab7aa3d6747000000000000000000000007 | FRAX/USDe | 0x259371cA8AC5E7F3163704Ce58B0dA58820173ed | 0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34: USDe | 0x0000000000000000000000000000000000000000 | -- | BIP-655 | 1 | +| | pool_address: 0xa0Af0B88796C1aA67e93db89FEAd2Ab7aA3D6747 | fee: 0.01 | Style: L0 sidechain | 0xa0Af0B88796C1aA67e93db89FEAd2Ab7aA3D6747: FRAX/USDe | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | cap: 100.0% | 0xFc00000000000000000000000000000000000001: FRAX | 0x0000000000000000000000000000000000000000 | -- | | | +| GaugeAdderV4/addGauge | 0x33251abecb0364df98a27a8d5d7b5ccddc774c42000000000000000000000008 | sFRAX/sDAI/sUSDe | 0xEA8Ba6b0cB5908A5d803b01CeAea5a6E65D33508 | 0x09eAdcBAa812A4C076c3a6cDe765DC4a22E0d775: sDAI | 0x95eedc9d10B6964a579948Fd717D34F45E15C0C6 | safe | BIP-655 | 2 | +| | pool_address: 0x33251abeCb0364Df98a27A8D5d7b5CCddc774c42 | fee: 0.01 | Style: L0 sidechain | 0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2: sUSDe | 0x99D033888aCe9d8E01F793Cf85AE7d4EA56494F9 | safe | | | +| | | a-factor: 500 | cap: 100.0% | 0x33251abeCb0364Df98a27A8D5d7b5CCddc774c42: sFRAX/sDAI/sUSDe | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | | 0xfc00000000000000000000000000000000000008: sFRAX | 0x3893E8e1584fF73188034D37Fc6B7d41A255E570 | safe | | | +| GaugeAdderV4/addGauge | 0x1570315476480fa80cec1fff07a20c1df1adfd53000200000000000000000009 | sFRAX/sfrxETH | 0x5f0a99997ab2AcC5097dc5349aDF6985761336ac | 0xFC00000000000000000000000000000000000005: sfrxETH | 0x761efEF0347E23e2e75907A6e2df0Bbc6d3A3F38 | safe | BIP-655 | 3 | +| | pool_address: 0x1570315476480fA80ceC1FFF07A20c1df1aDfD53 | fee: 0.05 | Style: L0 sidechain | 0xfc00000000000000000000000000000000000008: sFRAX | 0x3893E8e1584fF73188034D37Fc6B7d41A255E570 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+--------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W28/[BIP-656] Enable gUSDC-USDC Gauge [Arbitrum].json b/BIPs/2024-W28/[BIP-656] Enable gUSDC-USDC Gauge [Arbitrum].json new file mode 100644 index 000000000..25797c1a0 --- /dev/null +++ b/BIPs/2024-W28/[BIP-656] Enable gUSDC-USDC Gauge [Arbitrum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1720104471313, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x4daf0ac3de9568a4a6ed678fd972ce7df8a499f4e539768063d9424b3a63f8bf" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W28/[BIP-656] Enable gUSDC-USDC Gauge [Arbitrum].report.txt b/BIPs/2024-W28/[BIP-656] Enable gUSDC-USDC Gauge [Arbitrum].report.txt new file mode 100644 index 000000000..23a3124fd --- /dev/null +++ b/BIPs/2024-W28/[BIP-656] Enable gUSDC-USDC Gauge [Arbitrum].report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W28/[BIP-656] Enable gUSDC-USDC Gauge [Arbitrum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8ca64a71f670672aa8857d78b0b6a13bfaef9f7f` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/34ba55af-3395-45c9-a9e6-7e42d29e24d8) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xe8a6026365254f779b6927f00f8724ea1b8ae5e0000000000000000000000580 | gUSDC/USDC | 0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7 | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | 0x0000000000000000000000000000000000000000 | -- | BIP-656 | 0 | +| | pool_address: 0xE8a6026365254f779b6927f00f8724EA1B8aE5E0 | fee: 0.02 | Style: L0 sidechain | 0xd3443ee1e91aF28e5FB858Fbd0D72A63bA8046E0: gUSDC | 0x601A3bC1A24d209A2C08D2d54eC3f3aa39c3a40A | safe | | | +| | | a-factor: 200 | cap: 100.0% | 0xE8a6026365254f779b6927f00f8724EA1B8aE5E0: gUSDC/USDC | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W29/BIP-651.json b/BIPs/2024-W29/BIP-651.json new file mode 100644 index 000000000..ec6b7e748 --- /dev/null +++ b/BIPs/2024-W29/BIP-651.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1719963953389, + "meta": { + "name": "Authorize Mimic Smart Vault for Optimism", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "0x0c3ff4cae497a985cea4cb909ca0a8eb988fca16e975a6c3a2d025a74b37b243" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2024-W29/BIP-651.report.txt b/BIPs/2024-W29/BIP-651.report.txt new file mode 100644 index 000000000..cb597a438 --- /dev/null +++ b/BIPs/2024-W29/BIP-651.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W29/BIP-651.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `51bc896a16ee0216715df1cd0a3e001b852acf4d` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1f562e8d-e0d7-4f55-a4bd-d816f2c56aec) +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0x5a57bdde85c7a823e064d8cdc9a9a1b617f739068ec8925eaf6a562aa22513c6 | BIP-651 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W29/BIP-653.report.txt b/BIPs/2024-W29/BIP-653.report.txt new file mode 100644 index 000000000..0078b5302 --- /dev/null +++ b/BIPs/2024-W29/BIP-653.report.txt @@ -0,0 +1,50 @@ +FILENAME: `BIPs/2024-W29/BIP-653.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0a256d8620d87ba86f0965756cd311af9167b313` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b1b6c6d5-6018-4198-8aef-17508286f82d) +``` ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 0 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 4 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W29/BIP-653.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0a256d8620d87ba86f0965756cd311af9167b313` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/09d00cc9-bf74-4ab6-9558-0efe989b43bc) +``` ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| set_reward_distributor | 0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b (gauges/DOLA-USDC BSP-gauge-bc02) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0xCD19892916929F013930ed628547Cc1F439b230e (gauges/sDOLA-DOLA BSP-gauge-cd19) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 (gauges/2BTC-gauge-21c3) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5 (tokens/T)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W29/BIP-657.json b/BIPs/2024-W29/BIP-657.json new file mode 100644 index 000000000..cb5e2233e --- /dev/null +++ b/BIPs/2024-W29/BIP-657.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1720595160899, + "meta": { + "name": "Transactions Batch", + "description": "Add AWP-WETH gauge on mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2fa29bbfd19314b3faf170dc7826ef69372203a6", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W29/BIP-657.report.txt b/BIPs/2024-W29/BIP-657.report.txt new file mode 100644 index 000000000..cfd3e2f32 --- /dev/null +++ b/BIPs/2024-W29/BIP-657.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W29/BIP-657.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ea7a22fce1d8b7dfea59f557f84fb45fee682993` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/bb78193a-ad90-4d56-bea2-67fa86a533bf) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x093254005743b7af89e24f645730ba2dd84413330002000000000000000006a4 | 50APW-50WETH | 0x2fa29bbfd19314b3faf170dc7826ef69372203a6 | 0x4104b135DBC9609Fc1A9490E61369036497660c8: APW | 0x0000000000000000000000000000000000000000 | -- | BIP-657 | 0 | +| | pool_address: 0x093254005743b7Af89e24F645730Ba2dD8441333 | fee: 1.0 | Style: mainnet | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W29/[BIP-659] Enable rsETH-wETH Gauge [Ethereum].json b/BIPs/2024-W29/[BIP-659] Enable rsETH-wETH Gauge [Ethereum].json new file mode 100644 index 000000000..8c5b28ef0 --- /dev/null +++ b/BIPs/2024-W29/[BIP-659] Enable rsETH-wETH Gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1720648992419, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x039ff5998bb0dbc9edcd4eaa9d4108f116192097be0a16e266707d639551c8a3" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdf04E3a7ab9857a16FB97174e0f1001aa44380AF", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W29/[BIP-659] Enable rsETH-wETH Gauge [Ethereum].report.txt b/BIPs/2024-W29/[BIP-659] Enable rsETH-wETH Gauge [Ethereum].report.txt new file mode 100644 index 000000000..bfe4218dc --- /dev/null +++ b/BIPs/2024-W29/[BIP-659] Enable rsETH-wETH Gauge [Ethereum].report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W29/[BIP-659] Enable rsETH-wETH Gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `cf369663a60a17a9e95c0b9177c25fafce45a516` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/41184b37-cc1c-4a20-a05a-eace2abda58b) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x58aadfb1afac0ad7fca1148f3cde6aedf5236b6d00000000000000000000067f | rsETH / WETH | 0xdf04E3a7ab9857a16FB97174e0f1001aa44380AF | 0x58AAdFB1Afac0ad7fca1148f3cdE6aEDF5236B6D: rsETH / WETH | 0x0000000000000000000000000000000000000000 | -- | BIP-659 | 0 | +| | pool_address: 0x58AAdFB1Afac0ad7fca1148f3cdE6aEDF5236B6D | fee: 0.01 | Style: mainnet | 0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7: rsETH | 0x746df66bc1Bb361b9E8E2a794C299c3427976e6C | safe | | | +| | | a-factor: 1000 | cap: 100.0% | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.json b/BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.json new file mode 100644 index 000000000..7f8fad4f4 --- /dev/null +++ b/BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.json @@ -0,0 +1,36 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1720649771513, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x0010d433c6b9fc9cba120b20ea40a688e99a36063c6d1b402d8af1b22b515b58" + }, + "transactions": [ + { + "to": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint16", + "name": "_remoteChainId", + "type": "uint16" + }, + { "internalType": "bytes", "name": "_remoteAddress", "type": "bytes" } + ], + "name": "setTrustedRemoteAddress", + "payable": false + }, + "contractInputsValues": { + "_remoteChainId": "101", + "_remoteAddress": "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad" + } + } + ] +} diff --git a/BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.report.txt b/BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.report.txt new file mode 100644 index 000000000..6d64865f3 --- /dev/null +++ b/BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.report.txt @@ -0,0 +1,19 @@ +FILENAME: `BIPs/2024-W29/[BIP-660] Revise LayerZero Fraxtal Wire Up.json` +MULTISIG: `multisigs/lm (fraxtal:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `7612754609de756b1746f87a44a367cde85b55c0` +CHAIN(S): `fraxtal` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e76ebffa-b676-4e1c-b040-40d113a1412b) +``` ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +| setTrustedRemoteAddress | 0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild) | 0 | { | BIP-660 | N/A | +| | | | "_remoteChainId": [ | | | +| | | | "101" | | | +| | | | ], | | | +| | | | "_remoteAddress": [ | | | +| | | | "0xE241C6e48CA045C7f631600a0f1403b2bFea05ad (20230524-lz-omni-voting-escrow-child/OmniVotingEscrowChild)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W29/[BIP-661] Enable 80TRUF-20LINK Gauge [Ethereum].json b/BIPs/2024-W29/[BIP-661] Enable 80TRUF-20LINK Gauge [Ethereum].json new file mode 100644 index 000000000..bb8f927f5 --- /dev/null +++ b/BIPs/2024-W29/[BIP-661] Enable 80TRUF-20LINK Gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1720650634912, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xac90b25ce8f9ec0cab2dc7329d99e036c63cf9572b0ec41a137b9a3accbb3cca" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA99280581D6520d336231687Fd8D673bBA97c115", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W29/[BIP-661] Enable 80TRUF-20LINK Gauge [Ethereum].report.txt b/BIPs/2024-W29/[BIP-661] Enable 80TRUF-20LINK Gauge [Ethereum].report.txt new file mode 100644 index 000000000..8d3d3a70b --- /dev/null +++ b/BIPs/2024-W29/[BIP-661] Enable 80TRUF-20LINK Gauge [Ethereum].report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W29/[BIP-661] Enable 80TRUF-20LINK Gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4bb24d37b6b4dff40b8e29bec57ad28d96608c71` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/8346594c-73d2-4e20-9032-2f61ffaf1b93) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xe96a45f66bdda121b24f0a861372a72e8889523d00020000000000000000069b | 80TRUF/20LINK | 0xA99280581D6520d336231687Fd8D673bBA97c115 | 0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA: TRUF | 0x0000000000000000000000000000000000000000 | -- | BIP-661 | 0 | +| | pool_address: 0xe96a45f66bdDA121B24F0a861372A72E8889523d | fee: 0.5 | Style: mainnet | 0x514910771AF9Ca656af840dff83E8264EcF986CA: LINK | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W3/BIP-518-2.json b/BIPs/2024-W3/BIP-518-2.json new file mode 100644 index 000000000..dadaa80d7 --- /dev/null +++ b/BIPs/2024-W3/BIP-518-2.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107040104, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1f440bb1b31ed23dce797e5957ac2a5749add1074f8540f0ff0a158e4b248003" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + } + } + ] +} diff --git a/BIPs/2024-W3/BIP-518-2.report.txt b/BIPs/2024-W3/BIP-518-2.report.txt new file mode 100644 index 000000000..bdd1e2cb7 --- /dev/null +++ b/BIPs/2024-W3/BIP-518-2.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W3/BIP-518-2.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `73f169f9819085d69691fab60c6dbcd3db296174` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W3/BIP-519-2.json b/BIPs/2024-W3/BIP-519-2.json new file mode 100644 index 000000000..eaa534ca3 --- /dev/null +++ b/BIPs/2024-W3/BIP-519-2.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107142345, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa1bc4667c4f7289ebd0f1a07a44e791e2bc9883cf3ee0650c966b12a685d8721" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2024-W3/BIP-519-2.report.txt b/BIPs/2024-W3/BIP-519-2.report.txt new file mode 100644 index 000000000..938799f48 --- /dev/null +++ b/BIPs/2024-W3/BIP-519-2.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W3/BIP-519-2.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `70da7b168a7d20d13c94ec02d6a5dcd3b8c0534e` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W3/BIP-528A.json b/BIPs/2024-W3/BIP-528A.json new file mode 100644 index 000000000..71bd86ce5 --- /dev/null +++ b/BIPs/2024-W3/BIP-528A.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704871780160, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1461C4a373d27977f0D343Ba33C22870c89F9dF0", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W3/BIP-528A.report.txt b/BIPs/2024-W3/BIP-528A.report.txt new file mode 100644 index 000000000..ce22932c4 --- /dev/null +++ b/BIPs/2024-W3/BIP-528A.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W3/BIP-528A.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c3edacdbc19bd0a96edb35a3992c41713a1b3e48` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=====================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xe25ecadca47419e9aee2700ceab4e7c4b01b94ca0002000000000000000004e4 | 20WETH-80PAL | 0x1461C4a373d27977f0D343Ba33C22870c89F9dF0 | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | BIP-528 | 0 | +| | pool_address: 0xe25EcAdcA47419E9aEE2700CeaB4e7c4b01B94ca | fee: 0.3, a-factor: N/A | Style: L0 sidechain, cap: 2.0% | "PAL(0xa7997F0eC9fa54E89659229fB26537B6A725b798)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-----------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W3/BIP-529.json b/BIPs/2024-W3/BIP-529.json new file mode 100644 index 000000000..7969406be --- /dev/null +++ b/BIPs/2024-W3/BIP-529.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704874585004, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8c596E8D1b3Be04a6cAa1B1152b51c495f799a16", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W3/BIP-529.report.txt b/BIPs/2024-W3/BIP-529.report.txt new file mode 100644 index 000000000..543636ef2 --- /dev/null +++ b/BIPs/2024-W3/BIP-529.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W3/BIP-529.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `74025793a9d830d0da13bebe9cd6dfdd9fc03cf0` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=========================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x2feb76966459d7841fa8a7ed0aa4bf574d6111bf00020000000000000000011d | bpt-yieldconcerto | 0x8c596E8D1b3Be04a6cAa1B1152b51c495f799a16 | "sFRAX(0x2Dd1B4D4548aCCeA497050619965f91f78b3b532)", | "0xDe3B7eC86B67B05D312ac8FD935B6F59836F2c41", | BIP-529 | 0 | +| | pool_address: 0x2FEb76966459d7841fa8A7Ed0aa4bf574d6111Bf | fee: 0.1, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sfrxETH(0x484c2D6e3cDd945a8B2DF735e079178C1036578c)" | "0xf752dd899F87a91370C1C8ac1488Aef6be687505" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+---------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W3/BIP-530.json b/BIPs/2024-W3/BIP-530.json new file mode 100644 index 000000000..54f22e582 --- /dev/null +++ b/BIPs/2024-W3/BIP-530.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704875400833, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W3/BIP-530.report.txt b/BIPs/2024-W3/BIP-530.report.txt new file mode 100644 index 000000000..49eac1cc2 --- /dev/null +++ b/BIPs/2024-W3/BIP-530.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W3/BIP-530.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a3c2340faa2b7e61f9ab08a865f7d289a8006aa4` +CHAIN(S): `arbitrum` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8 | sFRAX/FRAX | 0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF | "FRAX(0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F)", | "0x0000000000000000000000000000000000000000", | BIP-530 | 0 | +| | pool_address: 0xdfa752ca3fF49d4B6dBE08E2d5a111f51773D395 | fee: 0.04, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "sFRAX/FRAX(0xdfa752ca3fF49d4B6dBE08E2d5a111f51773D395)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | "0x320CFa1a78d37a13C5D1cA5aA51563fF6Bb0f686" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W3/BIP-531.json b/BIPs/2024-W3/BIP-531.json new file mode 100644 index 000000000..6e462660f --- /dev/null +++ b/BIPs/2024-W3/BIP-531.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704954902130, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB17F2F3dE17D5013E7cc8ceB4ec2BE02c6cc1501", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W3/BIP-531.report.txt b/BIPs/2024-W3/BIP-531.report.txt new file mode 100644 index 000000000..f94e2228b --- /dev/null +++ b/BIPs/2024-W3/BIP-531.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W3/BIP-531.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `1578be79c8dd32d508349eecd156aac1e1cb648e` +CHAIN(S): `optimism` +``` ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+=========================+============================================+=======================================================+================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x2a5139cd86c041aa3467e649f5ee0880a5de2f2f00020000000000000000011a | bpt-stadue | 0xB17F2F3dE17D5013E7cc8ceB4ec2BE02c6cc1501 | "wstETH(0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb)", | "0x9aa3cd420f830E049e2b223D0b07D8c809C94d15", | BIP-531 | 0 | +| | pool_address: 0x2a5139cd86C041aa3467e649F5Ee0880A5de2f2F | fee: 0.2, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "stERN(0x3eE6107d9C93955acBb3f39871D32B02F82B78AB)" | "0xBCEBb4dcdEc1c12bf7eB31bd26bc9C3b8F55C966" | | | ++-----------------------+---------------------------------------------------------------------+-------------------------+--------------------------------------------+-------------------------------------------------------+------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W3/BIP-532.json b/BIPs/2024-W3/BIP-532.json new file mode 100644 index 000000000..9379b3393 --- /dev/null +++ b/BIPs/2024-W3/BIP-532.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704955504937, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc40F4ABc616Ab3136A002A667A7830F3F7dEC5FA", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W3/BIP-532.report.txt b/BIPs/2024-W3/BIP-532.report.txt new file mode 100644 index 000000000..3d8e4c290 --- /dev/null +++ b/BIPs/2024-W3/BIP-532.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W3/BIP-532.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0bb2c605951f380e63dd9deb3e67edb99d09eacf` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xa2e9242163d54b536583368a01b5d232c95aa884000000000000000000000653 | ePENDLE/PENDLE | 0xc40F4ABc616Ab3136A002A667A7830F3F7dEC5FA | "ePendle(0x22Fc5A29bd3d6CCe19a06f844019fd506fCe4455)", | "0x0000000000000000000000000000000000000000", | BIP-532 | 0 | +| | pool_address: 0xA2E9242163d54b536583368a01b5D232C95aA884 | fee: 0.3, a-factor: 10 | Style: mainnet, cap: 2.0% | "PENDLE(0x808507121B80c02388fAd14726482e061B8da827)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "ePENDLE/PENDLE(0xA2E9242163d54b536583368a01b5D232C95aA884)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W3/BIP-533.json b/BIPs/2024-W3/BIP-533.json new file mode 100644 index 000000000..8a59d0922 --- /dev/null +++ b/BIPs/2024-W3/BIP-533.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1704957019300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0xbf85372921c35a4e62729c1fb0ea7cbf4936133ffd383e764a6ea1a78e85891c" + }, + "transactions": [ + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "startCooldown", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W3/BIP-533.report.txt b/BIPs/2024-W3/BIP-533.report.txt new file mode 100644 index 000000000..fc61d932f --- /dev/null +++ b/BIPs/2024-W3/BIP-533.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W3/BIP-533.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `29d5473545676313b925dc6382402f48acc9fe99` +CHAIN(S): `arbitrum` +``` ++---------------+--------------------------------------------------------+---------+----------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+========================================================+=========+==========+==============+============+ +| startCooldown | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (Not Found) | 0 | "N/A" | BIP-533 | N/A | ++---------------+--------------------------------------------------------+---------+----------+--------------+------------+ +``` diff --git a/BIPs/2024-W3/BIP-534.json b/BIPs/2024-W3/BIP-534.json new file mode 100644 index 000000000..fb89ec26a --- /dev/null +++ b/BIPs/2024-W3/BIP-534.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704988840438, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1db20ff4ed7164f7463707c8c7e06833a29f83db6f6d4bbedba288cb162891d3" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb", + "data": "0xd34fb267" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2024-W3/BIP-534.report.txt b/BIPs/2024-W3/BIP-534.report.txt new file mode 100644 index 000000000..55c7dfd6f --- /dev/null +++ b/BIPs/2024-W3/BIP-534.report.txt @@ -0,0 +1,57 @@ +FILENAME: `BIPs/2024-W3/BIP-534.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `4cf2de6f5055e7cfdc3e32394c8bd17ff0c494ca` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-534 | 0 | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-534 | 2 | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/2024-W3/BIP-534.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `4cf2de6f5055e7cfdc3e32394c8bd17ff0c494ca` +CHAIN(S): `mainnet` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+=========================================================+==============+============+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-534 | N/A | +| | | | "target": [ | | | +| | | | "0xF6FA773b5E54F4BD20E09d806AB483d58dD55dcb (N/A) " | | | +| | | | ], | | | +| | | | "data": "0xd34fb267" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/2024-W30/BIP-653.json b/BIPs/2024-W30/BIP-653.json new file mode 100644 index 000000000..8e689664c --- /dev/null +++ b/BIPs/2024-W30/BIP-653.json @@ -0,0 +1,132 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719444309555, + "meta": { + "name": "Update Paladins Reward Distributors", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xeeb50b8f3abf0c5f23b17181f1c01b629930f08c059f6685e08c564e84530b0a" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b", + "data": "0x058a3a2400000000000000000000000041d5d79431a913c4ae7d69a668ecdfe5ff9dfb68000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xCD19892916929F013930ed628547Cc1F439b230e", + "data": "0x058a3a2400000000000000000000000041d5d79431a913c4ae7d69a668ecdfe5ff9dfb68000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8", + "data": "0x058a3a24000000000000000000000000cdf7028ceab81fa0c6971208e83fa7872994bee5000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/2024-W30/BIP-653.report.txt b/BIPs/2024-W30/BIP-653.report.txt new file mode 100644 index 000000000..456087eac --- /dev/null +++ b/BIPs/2024-W30/BIP-653.report.txt @@ -0,0 +1,32 @@ +FILENAME: `BIPs/2024-W30/BIP-653.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0a256d8620d87ba86f0965756cd311af9167b313` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e9525a8d-ebee-46b2-ad18-42d622c02e36) +``` ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 0 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 4 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/2024-W30/BIP-653.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0a256d8620d87ba86f0965756cd311af9167b313` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7dede337-91eb-4156-b419-042d30dcd28c) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b (gauges/DOLA-USDC BSP-gauge-bc02) | set_reward_distributor(address,address) | 0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68: tokens/INV | BIP-653 | 1 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xCD19892916929F013930ed628547Cc1F439b230e (gauges/sDOLA-DOLA BSP-gauge-cd19) | set_reward_distributor(address,address) | 0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68: tokens/INV | BIP-653 | 2 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 (gauges/2BTC-gauge-21c3) | set_reward_distributor(address,address) | 0xCdF7028ceAB81fA0C6971208e83fa7872994beE5: tokens/T | BIP-653 | 3 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W30/BIP-662.json b/BIPs/2024-W30/BIP-662.json new file mode 100644 index 000000000..6711838ef --- /dev/null +++ b/BIPs/2024-W30/BIP-662.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1721198975828, + "meta": { + "name": "Transactions Batch", + "description": "Add shezETH:wstETH gauge mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB002073210698B0852E34DA6A5e432a04D299205", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W30/BIP-662.report.txt b/BIPs/2024-W30/BIP-662.report.txt new file mode 100644 index 000000000..f2c33293a --- /dev/null +++ b/BIPs/2024-W30/BIP-662.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W30/BIP-662.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `467921854b6826a6b2eabcd0695f80fb8ebc0176` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/06b9f127-d7a4-40d8-bc2f-1914bd2f9efc) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xdb1f2e1655477d08fb0992f82eede0053b8cd3820000000000000000000006ae | shezETH/wstETH | 0xB002073210698B0852E34DA6A5e432a04D299205 | 0x63a0964A36c34E81959da5894ad888800e17405b: ShezETH | 0x0000000000000000000000000000000000000000 | -- | BIP-662 | 0 | +| | pool_address: 0xDb1f2e1655477d08FB0992f82EEDe0053B8Cd382 | fee: 0.04 | Style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 200 | cap: 100.0% | 0xDb1f2e1655477d08FB0992f82EEDe0053B8Cd382: shezETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W30/[BIP-663] Enable GYD-wUSDM Gauge [Arbitrum].json b/BIPs/2024-W30/[BIP-663] Enable GYD-wUSDM Gauge [Arbitrum].json new file mode 100644 index 000000000..c848cc1fe --- /dev/null +++ b/BIPs/2024-W30/[BIP-663] Enable GYD-wUSDM Gauge [Arbitrum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1721260104178, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x35cbe27f45772f1303ce27aea9cb58ae329a81467265e2ccf0de6d94e928ecab" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9eCc698c20219Ea45697d82ca89cD044aEEACF60", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W30/[BIP-663] Enable GYD-wUSDM Gauge [Arbitrum].report.txt b/BIPs/2024-W30/[BIP-663] Enable GYD-wUSDM Gauge [Arbitrum].report.txt new file mode 100644 index 000000000..d8c74492a --- /dev/null +++ b/BIPs/2024-W30/[BIP-663] Enable GYD-wUSDM Gauge [Arbitrum].report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W30/[BIP-663] Enable GYD-wUSDM Gauge [Arbitrum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a65b912cd674e0cb1ce278ddf9b53c1a672e9e59` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/56e39e0b-612b-48e7-8e1c-7fb9f7f29f96) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x315dd595e82bdc0c194f3a38a08fde480d7e5d2100020000000000000000056a | ECLP-wUSDM-GYD | 0x9eCc698c20219Ea45697d82ca89cD044aEEACF60 | 0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812: wUSDM | 0x7F55E509006C9Df7594C4819Ba7ebfE6EfE4854b | safe | BIP-663 | 0 | +| | pool_address: 0x315dd595e82bDc0c194f3A38A08fDE480D7E5d21 | fee: 0.01 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W31/BIP-103-May-Jun.json b/BIPs/2024-W31/BIP-103-May-Jun.json new file mode 100644 index 000000000..cf7d5f523 --- /dev/null +++ b/BIPs/2024-W31/BIP-103-May-Jun.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715865196870, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "bip_number": "BIP-103" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "21724000000" + } + } + ] +} diff --git a/BIPs/2024-W31/BIP-103-May-Jun.report.txt b/BIPs/2024-W31/BIP-103-May-Jun.report.txt new file mode 100644 index 000000000..2ded21917 --- /dev/null +++ b/BIPs/2024-W31/BIP-103-May-Jun.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W31/BIP-103-May-Jun.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0e86f0d1d467a7b4930b600f894fe6a7465bde9c` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/34620556-232d-47d7-961e-e275f4a24c40) +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 21724.0 (RAW: 21724000000) | BIP-103 | 0 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W31/BIP-664.json b/BIPs/2024-W31/BIP-664.json new file mode 100644 index 000000000..f727c00f9 --- /dev/null +++ b/BIPs/2024-W31/BIP-664.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1721888610664, + "meta": { + "name": "Transactions Batch", + "description": "Transfer 1mln BAL to fund MM engagement", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "1000000000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W31/BIP-664.report.txt b/BIPs/2024-W31/BIP-664.report.txt new file mode 100644 index 000000000..90589da90 --- /dev/null +++ b/BIPs/2024-W31/BIP-664.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W31/BIP-664.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `eac0e90e1e72ebc84537def0519cb6db9d2802ec` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/99f7273e-a9ee-470b-a67b-e16ed160ad99) +``` ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 1000000.0 (RAW: 1000000000000000000000000) | BIP-664 | 0 | ++----------+------------------------------------------------+----------------------------------------------------------------------+--------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W32/BIP-665.json b/BIPs/2024-W32/BIP-665.json new file mode 100644 index 000000000..c9b4646b0 --- /dev/null +++ b/BIPs/2024-W32/BIP-665.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722426333156, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9fbfcb0547Dc7D57258b8Cf57A57624c6C3a61A1", + "gaugeType": "Polygon" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC8BA8e58Df99e974960789494a615c876F8190c9", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2024-W32/BIP-665.report.txt b/BIPs/2024-W32/BIP-665.report.txt new file mode 100644 index 000000000..76fddd21c --- /dev/null +++ b/BIPs/2024-W32/BIP-665.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W32/BIP-665.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `af5542ed7d232735838033da6e6fa4d1daa378b9` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/79dbc4ee-ec87-47f7-b875-f328602ad5e0) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xd4cc1afe3430c6c227f8f640d022bf5747538f53000200000000000000000ebb | LP-COPM-USDC | 0x9fbfcb0547Dc7D57258b8Cf57A57624c6C3a61A1 | 0x12050c705152931cFEe3DD56c52Fb09Dea816C23: COPM | | | BIP-665 | 0 | +| | pool_address: 0xd4Cc1Afe3430C6C227F8F640D022bf5747538F53 | fee: Not Found | Style: L0 sidechain | 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359: USDC | | | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | +| GaugeAdderV4/addGauge | 0xa2a6639815c2147ce904308ddfea38b6f1ab8ddd000200000000000000000ebc | 50COPM-50WETH | 0xC8BA8e58Df99e974960789494a615c876F8190c9 | 0x12050c705152931cFEe3DD56c52Fb09Dea816C23: COPM | 0x0000000000000000000000000000000000000000 | -- | BIP-665 | 1 | +| | pool_address: 0xA2a6639815C2147ce904308ddFea38B6F1Ab8Ddd | fee: 1.0 | Style: L0 sidechain | 0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W32/BIP-666-COWAMM-POL.json b/BIPs/2024-W32/BIP-666-COWAMM-POL.json new file mode 100644 index 000000000..78390e8de --- /dev/null +++ b/BIPs/2024-W32/BIP-666-COWAMM-POL.json @@ -0,0 +1,88 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722379034694, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1b927c6d59c25e2a5f14d94e180665f9c989f6cb2d6616bb8eec5104a3a69b96" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "125000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "213675210000000000000000" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "wad": "118260000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W32/BIP-666-COWAMM-POL.report.txt b/BIPs/2024-W32/BIP-666-COWAMM-POL.report.txt new file mode 100644 index 000000000..c1ab325a0 --- /dev/null +++ b/BIPs/2024-W32/BIP-666-COWAMM-POL.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W32/BIP-666-COWAMM-POL.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `93855f80055397b6251454c3c632faf040b73e90` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/733d8cc3-f39b-4e76-914d-6bfc06ea8a9b) +``` ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 125000.0 (RAW: 125000000000) | BIP-666 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 213675.21 (RAW: 213675210000000000000000) | BIP-666 | 1 | +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 118.26 (RAW: 118260000000000000000) | BIP-666 | 2 | ++----------+-------------------------------------------------+---------------------------------------------------------+-------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W32/BIP-667-RolesV2.json b/BIPs/2024-W32/BIP-667-RolesV2.json new file mode 100644 index 000000000..b893e4f09 --- /dev/null +++ b/BIPs/2024-W32/BIP-667-RolesV2.json @@ -0,0 +1,366 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714755380082, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "", + "checksum": "0xac654bde04827bf032e496187c74484e2119858952f2835e22284c00fba61451" + }, + "transactions": [ + { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "enableModule", + "payable": false + }, + "contractInputsValues": { + "module": "0x13c61a25DB73e7a94a244bD2205aDba8b4a60F4a" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x569d3489", + "conditions": "[[0,5,5,\"0x\"],[0,3,5,\"0x\"],[0,1,0,\"0x\"],[0,1,18,\"0x00000000000000000000000000000000000000000000000000000000000000c9\"],[1,0,2,\"0x\"],[1,0,2,\"0x\"],[1,1,15,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[4,1,16,\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[4,1,16,\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[4,1,16,\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[4,1,16,\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"],[4,1,16,\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"],[4,1,16,\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[4,1,16,\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[4,1,16,\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"],[4,1,16,\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[4,1,16,\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[4,1,16,\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[4,1,16,\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[5,1,16,\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[5,1,16,\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[5,1,16,\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[5,1,16,\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[5,1,16,\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[5,1,16,\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[5,1,16,\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[5,1,16,\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]]", + "options": "2" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x5a66c223", + "conditions": "[[0,5,5,\"0x\"],[0,3,5,\"0x\"],[1,0,2,\"0x\"],[1,0,2,\"0x\"],[1,1,15,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[1,1,0,\"0x\"],[2,1,16,\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[2,1,16,\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[2,1,16,\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[2,1,16,\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"],[2,1,16,\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"],[2,1,16,\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[2,1,16,\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[2,1,16,\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"],[2,1,16,\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[2,1,16,\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[2,1,16,\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[2,1,16,\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[3,1,16,\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[3,1,16,\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[3,1,16,\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[3,1,16,\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[3,1,16,\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[3,1,16,\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[3,1,16,\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[3,1,16,\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]]", + "options": "2" + } + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670220000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "data": "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc30000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "data": "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "data": "0x095ea7b30000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f50000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "data": "0x095ea7b3000000000000000000000000e65cdb6479bac1e22340e4e755fae7e509ecd06c0000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xFe2e637202056d30016725477c5da089Ab0A043A", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x20BC832ca081b91433ff6c17f85701B6e92486c5", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xc00e94Cb662C3520282E6f5717214004A7f26888", + "data": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xFe2e637202056d30016725477c5da089Ab0A043A", + "data": "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x095ea7b300000000000000000000000039aa39c021dfbae8fac545936693ac917d5e75630000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "data": "0x095ea7b30000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e36430000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + }, + { + "to": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000", + "value": "0" + } + ] +} diff --git a/BIPs/2024-W32/BIP-667-RolesV2.report.txt b/BIPs/2024-W32/BIP-667-RolesV2.report.txt new file mode 100644 index 000000000..dcbb12c10 --- /dev/null +++ b/BIPs/2024-W32/BIP-667-RolesV2.report.txt @@ -0,0 +1,372 @@ +FILENAME: `BIPs/2024-W32/BIP-667-RolesV2.json` +MULTISIG: `multisigs/karpatkey (mainnet:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `19a61ceb43a1bcf68b482af23338e705335bbca3` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `scopeFunction`, positional arguments with type(s) `str,address,str,(str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str),int` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `scopeFunction`: ['scopeFunction(bytes32,address,bytes4,(uint8,uint8,uint8,bytes)[],uint8)']\nFunction invocation failed due to no matching argument types."))` +``` ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| enableModule | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-667 | N/A | +| | | | "module": [ | | | +| | | | "0x13c61a25DB73e7a94a244bD2205aDba8b4a60F4a (karpatkey/roles_v2)" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-667 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-667 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x569d3489" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "0", | | | +| | | | "5", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "3", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "1", | | | +| | | | "18", | | | +| | | | "\"0x00000000000000000000000000000000000000000000000000000000000000c9\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "15", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[4", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[5", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-667 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5a66c223" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "0", | | | +| | | | "5", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[0", | | | +| | | | "3", | | | +| | | | "5", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "0", | | | +| | | | "2", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "15", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[1", | | | +| | | | "1", | | | +| | | | "0", | | | +| | | | "\"0x\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[2", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[3", | | | +| | | | "1", | | | +| | | | "16", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b3000000000000000000000000dc24316b9ae028f1497c275eb9192a3ea0f670220000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b30000000000000000000000005550d13389bb70f45fcef58f19f6b6e87f6e747d0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b3000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae78736Cd615f374D3085123A210448E74Fc6393 (tokens/RETH) | 0 | "0x095ea7b300000000000000000000000016d5a408e807db8ef7c578279beeee6b228f1c1c0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e20000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b3000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc30000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (tokens/wstETH) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b3000000000000000000000000889edc2edab5f40e902b864ad4d7ade8e412f9b10000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 (tokens/stETH) | 0 | "0x095ea7b30000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca00000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b30000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f50000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 (tokens/AAVE) | 0 | "0x095ea7b3000000000000000000000000e65cdb6479bac1e22340e4e755fae7e509ecd06c0000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 (tokens/wstETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 (tokens/WBTC) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xFe2e637202056d30016725477c5da089Ab0A043A (tokens/sETH2) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x48C3399719B582dD63eB5AADf12A40B4C3f52FA2 (tokens/SWISE) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x20BC832ca081b91433ff6c17f85701B6e92486c5 (tokens/rETH2) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xc00e94Cb662C3520282E6f5717214004A7f26888 (tokens/COMP) | 0 | "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xFe2e637202056d30016725477c5da089Ab0A043A (tokens/sETH2) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | "0x095ea7b300000000000000000000000039aa39c021dfbae8fac545936693ac917d5e75630000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI) | 0 | "0x095ea7b30000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e36430000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 (tokens/WETH) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | +| !!N/A!! | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 (tokens/WBTC) | 0 | "0x095ea7b3000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000000000000000000000000000000000000000000000" | BIP-667 | N/A | ++---------------+------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W33/BIP-668-Revoke-Wonderland-vest.json b/BIPs/2024-W33/BIP-668-Revoke-Wonderland-vest.json new file mode 100644 index 000000000..11aac4ed2 --- /dev/null +++ b/BIPs/2024-W33/BIP-668-Revoke-Wonderland-vest.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722844007869, + "meta": { + "name": "Transactions Batch", + "description": "Revoke BAL vest for Wonderland SP", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x2a86760104ebe330651927094e5d91b7afea9b38e9b466880f8819fc4345fbf0" + }, + "transactions": [ + { + "to": "0xD6208F3B61640baEbb71aa59b58Cc61E32F8Ddf5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "revoke", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/2024-W33/BIP-668-Revoke-Wonderland-vest.report.txt b/BIPs/2024-W33/BIP-668-Revoke-Wonderland-vest.report.txt new file mode 100644 index 000000000..9073c61e2 --- /dev/null +++ b/BIPs/2024-W33/BIP-668-Revoke-Wonderland-vest.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W33/BIP-668-Revoke-Wonderland-vest.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `440bfcf167dffa5853821fb61b8910120c31cfc5` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4e7554a0-05af-4ce8-8ba4-04d81ba1c597) +``` ++---------+--------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+--------+------------+----------+ +| revoke | 0xD6208F3B61640baEbb71aa59b58Cc61E32F8Ddf5 (Not Found) | 0 | "N/A" | BIP-668 | N/A | ++---------+--------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/2024-W33/BIP-669.json b/BIPs/2024-W33/BIP-669.json new file mode 100644 index 000000000..af8ab70fb --- /dev/null +++ b/BIPs/2024-W33/BIP-669.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722936911634, + "meta": { + "name": "Transactions Batch", + "description": "80BAL-20WETH:WETH POL Mainnet", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "21978000000000000000000" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "dst", + "type": "address" + }, + { + "internalType": "uint256", + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "wad": "24450000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W33/BIP-669.report.txt b/BIPs/2024-W33/BIP-669.report.txt new file mode 100644 index 000000000..136b0d65c --- /dev/null +++ b/BIPs/2024-W33/BIP-669.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W33/BIP-669.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `21db2cf35e8d4814b9ac2d07937b0c26ed673098` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7a84751c-d6f3-46a6-9e9d-6f70feaea1f2) +``` ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 21978.0 (RAW: 21978000000000000000000) | BIP-669 | 0 | +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 24.45 (RAW: 24450000000000000000) | BIP-669 | 1 | ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.json b/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.json new file mode 100644 index 000000000..41004d058 --- /dev/null +++ b/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.json @@ -0,0 +1,91 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1722984933621, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x9f8bd47fd7f91ec5129bada9eb4544bd7da1d329f02674837ae51ea9c673c84c" + }, + "transactions": [ + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "oldOwner": "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6", + "newOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17" + } + }, + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x693f30c37D5a0Db9258C636E93Ccf011ACd8c90c" + } + }, + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x693f30c37D5a0Db9258C636E93Ccf011ACd8c90c", + "oldOwner": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "newOwner": "0xa01Bfd7F1Be1ccF81A02CF7D722c30bDCc029718" + } + }, + { + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "removeOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "owner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "_threshold": "3" + } + } + ] +} diff --git a/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.report.txt b/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.report.txt new file mode 100644 index 000000000..893daa10d --- /dev/null +++ b/BIPs/2024-W33/BIP-670-optimism_beethoven_signers.report.txt @@ -0,0 +1,55 @@ +FILENAME: `BIPs/2024-W33/BIP-670-optimism_beethoven_signers.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `c5e47a3f2503ca486835d198c3d0e7c312b1a1cb` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/49222d43-7750-41db-b5d4-a5da66ef7b66) +``` ++-------------+-----------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+-----------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | { | BIP-670 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/emergency/xeonus)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6 (N/A)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/contributors-payees/zen_dragon)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | { | BIP-670 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/contributors-payees/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x693f30c37D5a0Db9258C636E93Ccf011ACd8c90c (EOA/beethoven/ardo)" | | | +| | | | ] | | | +| | | | } | | | +| swapOwner | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | { | BIP-670 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x693f30c37D5a0Db9258C636E93Ccf011ACd8c90c (EOA/beethoven/ardo)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D (EOA/maxi_deployers/mikeb)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0xa01Bfd7F1Be1ccF81A02CF7D722c30bDCc029718 (EOA/beethoven/netrim)" | | | +| | | | ] | | | +| | | | } | | | +| removeOwner | 0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm) | 0 | { | BIP-670 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F (EOA/dao/tritium)" | | | +| | | | ], | | | +| | | | "owner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "3" | | | +| | | | ] | | | +| | | | } | | | ++-------------+-----------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W33/BIP-671.json b/BIPs/2024-W33/BIP-671.json new file mode 100644 index 000000000..818293711 --- /dev/null +++ b/BIPs/2024-W33/BIP-671.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723039259821, + "meta": { + "name": "Transactions Batch", + "description": "Add inETH/wstETH gauge OP", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x24E9A49Ffd2B2189940E802e62f318382fAB395c", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W33/BIP-671.report.txt b/BIPs/2024-W33/BIP-671.report.txt new file mode 100644 index 000000000..d08d9e49a --- /dev/null +++ b/BIPs/2024-W33/BIP-671.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W33/BIP-671.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a3732492abc3f4a63a3f5805c829284f812201ce` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0c6d7e2c-2b5a-4491-85fb-914e4853d424) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+--------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+--------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x0ccb0c34d4898dfa8de3ece9d814074e60adefd0000000000000000000000142 | bpt-ineth-wsteth | 0x24E9A49Ffd2B2189940E802e62f318382fAB395c | 0x0Ccb0C34D4898dFA8de3ece9D814074E60aDEFd0: bpt-ineth-wsteth | 0x0000000000000000000000000000000000000000 | -- | BIP-671 | 0 | +| | pool_address: 0x0Ccb0C34D4898dFA8de3ece9D814074E60aDEFd0 | fee: 0.1 | Style: L0 sidechain | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | | | +| | | a-factor: 100 | cap: 100.0% | 0x5A7a183B6B44Dc4EC2E3d2eF43F98C5152b1d76d: inETH | 0x210ABdFD989f3eE5C08614a8f4e096Cf8408f5DF | safe | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+--------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W33/BIP-672.json b/BIPs/2024-W33/BIP-672.json new file mode 100644 index 000000000..ddda235d7 --- /dev/null +++ b/BIPs/2024-W33/BIP-672.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723039504685, + "meta": { + "name": "Transactions Batch", + "description": "Add instETH/wstETH gauge OP", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xAc1305f2C08E961dcEd925b585c3882afCa8C1c5", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W33/BIP-672.report.txt b/BIPs/2024-W33/BIP-672.report.txt new file mode 100644 index 000000000..dd689984f --- /dev/null +++ b/BIPs/2024-W33/BIP-672.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W33/BIP-672.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b2fd4ce9456f30ee0ddc32e6a4743dc362d35467` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d5be15e4-8162-497a-a0f7-df52ea110c17) +``` ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xc9eb4b8ce914ee451360b315ffd1d1af8df96be9000000000000000000000143 | bpt-insteth-wsteth | 0xAc1305f2C08E961dcEd925b585c3882afCa8C1c5 | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | BIP-672 | 0 | +| | pool_address: 0xC9Eb4b8ce914EE451360B315ffD1D1AF8df96bE9 | fee: 0.1 | Style: L0 sidechain | 0xC9Eb4b8ce914EE451360B315ffD1D1AF8df96bE9: bpt-insteth-wsteth | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 50 | cap: 100.0% | 0xd08C3F25862077056cb1b710937576Af899a4959: InstETH | 0xC092E0a4f5a2AdF3CF91E27cf4B7d7917D12CA2B | safe | | | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W33/BIP-674.json b/BIPs/2024-W33/BIP-674.json new file mode 100644 index 000000000..62fb7167d --- /dev/null +++ b/BIPs/2024-W33/BIP-674.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723042867193, + "meta": { + "name": "Transactions Batch", + "description": "Add gUSDC-aUSDC gauge on Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x86893f6829dA1296F739F50Ff9d3923453E9b48D", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W33/BIP-674.report.txt b/BIPs/2024-W33/BIP-674.report.txt new file mode 100644 index 000000000..78f479694 --- /dev/null +++ b/BIPs/2024-W33/BIP-674.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W33/BIP-674.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9ca2bc68786aaa72bec8d4a5b8d6ee8a6aa238d9` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ea57263a-96dd-4ae3-b6f1-1e9b5a1223ce) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x69d9bc07a19caad9ae4ca40af18d5a688839a29900020000000000000000058e | ECLP-gUSDC-AUSDC | 0x86893f6829dA1296F739F50Ff9d3923453E9b48D | 0x7CFaDFD5645B50bE87d546f42699d863648251ad: stataArbUSDCn | 0x87cD462A781c0ca843EAB131Bf368328848bB6fD | safe | BIP-674 | 0 | +| | pool_address: 0x69D9BC07A19CAAD9aE4ca40Af18d5A688839a299 | fee: 0.02 | Style: L0 sidechain | 0xd3443ee1e91aF28e5FB858Fbd0D72A63bA8046E0: gUSDC | 0x601A3bC1A24d209A2C08D2d54eC3f3aa39c3a40A | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json b/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json new file mode 100644 index 000000000..18470bd88 --- /dev/null +++ b/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723064795920, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf22b916697fa8851ff9bb1e7f5f029ec6382789867b241e6bc9a579390c8ce76" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5a47e3f2E5009168Af11C4b0198605f694805779", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xcb785286C9bEBeFF7654a8238Eb563666fD75338", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x00654F788342647A8Aa15f2eb2490e17d222aC85", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].report.txt b/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].report.txt new file mode 100644 index 000000000..8fe2914f5 --- /dev/null +++ b/BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].report.txt @@ -0,0 +1,26 @@ +FILENAME: `BIPs/2024-W33/[BIP-675] Enable Several E-CLPs [Arbitrum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `cd890a4612ba0a90d173cf3e289230afaaa98b1b` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c9d56238-400d-404d-a869-c4e7e0fcc36c) +``` ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f | ECLP-sUSDe-GYD | 0x5a47e3f2E5009168Af11C4b0198605f694805779 | 0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2: sUSDe | 0x3A236F67Fce401D87D7215695235e201966576E4 | safe | BIP-675 | 0 | +| | pool_address: 0xdeEaF8B0A8Cf26217261b813e085418C7dD8F1eE | fee: 0.15 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594 | ECLP-rETH-wstETH | 0xcb785286C9bEBeFF7654a8238Eb563666fD75338 | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-675 | 1 | +| | pool_address: 0xa899c63BA9ff275d6bfc83E43ee8E58fF6987584 | fee: 0.02 | Style: L0 sidechain | 0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8: rETH | 0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0xff38cc0ce0de4476c5a3e78675b48420a851035b000200000000000000000593 | ECLP-GHO-GYD-rh | 0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | BIP-675 | 2 | +| | pool_address: 0xff38cC0cE0DE4476C5a3e78675b48420A851035B | fee: 0.01 | Style: L0 sidechain | 0xD9FBA68D89178e3538e708939332c79efC540179: stataArbGHO | 0x177862A0242acD8b5F9cc757a963c1C8883da45E | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x71c64ac8ec1da03f8a05c3cfeb6493e6dad54a6f000200000000000000000592 | ECLP-wUSDM-USDC-rh | 0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E | 0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812: wUSDM | 0x7F55E509006C9Df7594C4819Ba7ebfE6EfE4854b | safe | BIP-675 | 3 | +| | pool_address: 0x71c64ac8Ec1DA03f8A05C3cfEB6493E6DAd54a6F | fee: 0.01 | Style: L0 sidechain | 0x7CFaDFD5645B50bE87d546f42699d863648251ad: stataArbUSDCn | 0x87cD462A781c0ca843EAB131Bf368328848bB6fD | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| GaugeAdderV4/addGauge | 0x36c2f879f446c3b6533f9703745c0504f3a84885000200000000000000000591 | ECLP-sFRAX-aFRAX | 0x00654F788342647A8Aa15f2eb2490e17d222aC85 | 0x89AEc2023f89E26Dbb7eaa7a98fe3996f9d112A8: stataArbFRAX | 0x183Ac1bCC538aa9729350f8a9C6357a268e1Bd03 | safe | BIP-675 | 4 | +| | pool_address: 0x36C2f879f446c3b6533f9703745C0504f3a84885 | fee: 0.01 | Style: L0 sidechain | 0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906: sFRAX | 0x155a25c8C3a9353d47BCDBc3650E19d1aEa13E54 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W34/BIP-677-Enable-osGNO-GNO-Gauge-Gnosis.json b/BIPs/2024-W34/BIP-677-Enable-osGNO-GNO-Gauge-Gnosis.json new file mode 100644 index 000000000..2dcbd9e36 --- /dev/null +++ b/BIPs/2024-W34/BIP-677-Enable-osGNO-GNO-Gauge-Gnosis.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718291485777, + "meta": { + "name": "Transactions Batch", + "description": "Add GNO-osGNO gauge on Gnosis", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x77bE4d39598962210b702514219fBCA4A6dc77Ba", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2024-W34/BIP-677-Enable-osGNO-GNO-Gauge-Gnosis.report.txt b/BIPs/2024-W34/BIP-677-Enable-osGNO-GNO-Gauge-Gnosis.report.txt new file mode 100644 index 000000000..b2592528f --- /dev/null +++ b/BIPs/2024-W34/BIP-677-Enable-osGNO-GNO-Gauge-Gnosis.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W34/BIP-677-Enable-osGNO-GNO-Gauge-Gnosis.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `97f1370791e6865f0a357204cde0fe4fd001dba4` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4f4d8875-9b94-462b-a746-17f2419b1e21) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x3220c83e953186f2b9ddfc0b5dd69483354edca20000000000000000000000b0 | osGNO/GNO-BPT | 0x77bE4d39598962210b702514219fBCA4A6dc77Ba | 0x3220C83e953186f2B9dDFc0B5dD69483354EDCA2: osGNO/GNO-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-677 | 0 | +| | pool_address: 0x3220C83e953186f2B9dDFc0B5dD69483354EDCA2 | fee: 0.01 | Style: L0 sidechain | 0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb: GNO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 1000 | cap: 100.0% | 0xF490c80aAE5f2616d3e3BDa2483E30C4CB21d1A0: osGNO | 0x9B1b13afA6a57e54C03AD0428a4766C39707D272 | safe | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W34/BIP-678-Enable-sUSX-USDC-Gauge-Arbitrum.json b/BIPs/2024-W34/BIP-678-Enable-sUSX-USDC-Gauge-Arbitrum.json new file mode 100644 index 000000000..6cc3e43d3 --- /dev/null +++ b/BIPs/2024-W34/BIP-678-Enable-sUSX-USDC-Gauge-Arbitrum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723599103820, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0f98b1309b70553ee253c0a4170dc6cc56543e33249636ef6c6b988aa91f7ab9" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4a0c9905b098842827fB09BaA4522721d4e14deE", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W34/BIP-678-Enable-sUSX-USDC-Gauge-Arbitrum.report.txt b/BIPs/2024-W34/BIP-678-Enable-sUSX-USDC-Gauge-Arbitrum.report.txt new file mode 100644 index 000000000..be8ebf763 --- /dev/null +++ b/BIPs/2024-W34/BIP-678-Enable-sUSX-USDC-Gauge-Arbitrum.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W34/BIP-678-Enable-sUSX-USDC-Gauge-Arbitrum.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ffab4dadd5078246ba8af8a7418df453990cde66` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/aa4d5443-e0f4-4ff5-b0fd-501202a76585) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c | sUSX/USDC | 0x4a0c9905b098842827fB09BaA4522721d4e14deE | 0x8d58755CA11d2c7273FED72AEb637e38A66c228c: sUSX/USDC | 0x0000000000000000000000000000000000000000 | -- | BIP-678 | 0 | +| | pool_address: 0x8d58755CA11d2c7273FED72AEb637e38A66c228c | fee: 0.01 | Style: L0 sidechain | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | cap: 100.0% | 0xbC404429558292eE2D769E57d57D6E74bbd2792d: sUSX | 0xf7ec24690fBCEc489E7C9A7055C04Db5C221c397 | safe | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W34/BIP-679-Enable-jEUR-EURe-Gauge-Gnosis.json b/BIPs/2024-W34/BIP-679-Enable-jEUR-EURe-Gauge-Gnosis.json new file mode 100644 index 000000000..7d70f5b39 --- /dev/null +++ b/BIPs/2024-W34/BIP-679-Enable-jEUR-EURe-Gauge-Gnosis.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723599397500, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xfa231c7dfd508c84674e3e1238dd23ca769e5c842ea51476d85e3304cabe85a9" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0Ad055942640eAF282179d89EB2F3D59136959C7", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2024-W34/BIP-679-Enable-jEUR-EURe-Gauge-Gnosis.report.txt b/BIPs/2024-W34/BIP-679-Enable-jEUR-EURe-Gauge-Gnosis.report.txt new file mode 100644 index 000000000..05a675d15 --- /dev/null +++ b/BIPs/2024-W34/BIP-679-Enable-jEUR-EURe-Gauge-Gnosis.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W34/BIP-679-Enable-jEUR-EURe-Gauge-Gnosis.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `538c4159ca08208e58270be169653617a9b121d2` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a054133a-e438-4c86-856e-cc8b62a4e337) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xc66936a47e6d40dd050a8419b4352825d9082241000000000000000000000090 | EURe-jEUR | 0x0Ad055942640eAF282179d89EB2F3D59136959C7 | 0x9fB1d52596c44603198fB0aee434fac3a679f702: jEUR | 0x0000000000000000000000000000000000000000 | -- | BIP-679 | 0 | +| | pool_address: 0xC66936a47E6D40DD050A8419B4352825D9082241 | fee: 0.04 | Style: L0 sidechain | 0xC66936a47E6D40DD050A8419B4352825D9082241: EURe-jEUR | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 100 | cap: 2.0% | 0xcB444e90D8198415266c6a2724b7900fb12FC56E: EURe | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W34/BIP-680 Enable weETH/wETH Gauge Arbitrum.json b/BIPs/2024-W34/BIP-680 Enable weETH/wETH Gauge Arbitrum.json new file mode 100644 index 000000000..388a4b286 --- /dev/null +++ b/BIPs/2024-W34/BIP-680 Enable weETH/wETH Gauge Arbitrum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723599594767, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0572293deb382d1fb6acf98b58c43fc9f179634f57b2a6f73933de48b9752584" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W34/BIP-680 Enable weETH/wETH Gauge Arbitrum.report.txt b/BIPs/2024-W34/BIP-680 Enable weETH/wETH Gauge Arbitrum.report.txt new file mode 100644 index 000000000..3299e54d3 --- /dev/null +++ b/BIPs/2024-W34/BIP-680 Enable weETH/wETH Gauge Arbitrum.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W34/BIP-680 Enable weETH/wETH Gauge Arbitrum.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4cd02b0516cb8a2e3e2441aef3eb30a52171698f` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0833eee8-e916-42c9-a417-743fd9555bb3) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595 | weETH/wETH | 0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef | 0x35751007a407ca6FEFfE80b3cB397736D2cf4dbe: weETH | 0xCd9e3fb32c8F258555b8292531112bBb5B87E2F4 | safe | BIP-680 | 0 | +| | pool_address: 0xF13758D6Edd1937dcb3F4Fe75889b579d400299A | fee: 0.04 | Style: L0 sidechain | 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 600 | cap: 10.0% | 0xF13758D6Edd1937dcb3F4Fe75889b579d400299A: weETH/wETH | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W34/[BIP-676] Enable Gauge for [CDCETH/[BIP-676] Enable Gauge for [CDCETH/BIP-676-Enable-cdcETH-wstETH-Gauge-Mainnet.json.json b/BIPs/2024-W34/[BIP-676] Enable Gauge for [CDCETH/[BIP-676] Enable Gauge for [CDCETH/BIP-676-Enable-cdcETH-wstETH-Gauge-Mainnet.json.json new file mode 100644 index 000000000..d20e0aac6 --- /dev/null +++ b/BIPs/2024-W34/[BIP-676] Enable Gauge for [CDCETH/[BIP-676] Enable Gauge for [CDCETH/BIP-676-Enable-cdcETH-wstETH-Gauge-Mainnet.json.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723596825207, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8c2a6274e4cd3a22e8199ba400dc1e5a68a96157c646fea752f29d04ca77d4c1" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x80A423a65a6a630943D9A34b8b78943af00c98cD", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W34/[BIP-676] Enable Gauge for [CDCETH/[BIP-676] Enable Gauge for [CDCETH/BIP-676-Enable-cdcETH-wstETH-Gauge-Mainnet.report.txt.report.txt b/BIPs/2024-W34/[BIP-676] Enable Gauge for [CDCETH/[BIP-676] Enable Gauge for [CDCETH/BIP-676-Enable-cdcETH-wstETH-Gauge-Mainnet.report.txt.report.txt new file mode 100644 index 000000000..da38fd9af --- /dev/null +++ b/BIPs/2024-W34/[BIP-676] Enable Gauge for [CDCETH/[BIP-676] Enable Gauge for [CDCETH/BIP-676-Enable-cdcETH-wstETH-Gauge-Mainnet.report.txt.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W34/[BIP-676] Enable Gauge for [CDCETH/[BIP-676] Enable Gauge for [CDCETH/BIP-676-Enable-cdcETH-wstETH-Gauge-Mainnet.json.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0c6f501134c006e912447837fca481c983d5aaee` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/85ea282e-274d-4261-833c-1e46249a59f6) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6 | cdcETH/wstETH | 0x80A423a65a6a630943D9A34b8b78943af00c98cD | 0x740A691bd31c4176BCb6B8A7a40f1A723537D99d: cdcETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-676 | 0 | +| | pool_address: 0x740A691bd31c4176BCb6B8A7a40f1A723537D99d | fee: 0.04 | Style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 500 | cap: 100.0% | 0xfe18aE03741a5b84e39C295Ac9C856eD7991C38e: CDCETH | 0x3f032432f239d86D36ccF01Fb0c86399a33BD004 | safe | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W35/BIP-682.json b/BIPs/2024-W35/BIP-682.json new file mode 100644 index 000000000..c25da61b0 --- /dev/null +++ b/BIPs/2024-W35/BIP-682.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308197460, + "meta": { + "name": "Transactions Batch", + "description": "Add sUSDE/GYD E-CLP gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x146b6030E6d6a6398B918E9854652a71C9537180", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W35/BIP-682.report.txt b/BIPs/2024-W35/BIP-682.report.txt new file mode 100644 index 000000000..2c90bf910 --- /dev/null +++ b/BIPs/2024-W35/BIP-682.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W35/BIP-682.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b5d63e80a01db017afd7ba18e054d1db0a9b640d` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2975e20a-84fa-466f-bfdb-be492760a0cf) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3 | ECLP-sUSDe-GYD | 0x146b6030E6d6a6398B918E9854652a71C9537180 | 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497: sUSDe | 0x3A244e6B3cfed21593a5E5B347B593C0B48C7dA1 | safe | BIP-682 | 0 | +| | pool_address: 0x8D93B853849b9884E2Bb413444Ec23eB5366eE91 | fee: 0.15 | Style: mainnet | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W35/BIP-683.json b/BIPs/2024-W35/BIP-683.json new file mode 100644 index 000000000..9095462f2 --- /dev/null +++ b/BIPs/2024-W35/BIP-683.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308423093, + "meta": { + "name": "Transactions Batch", + "description": "Enable aGHO-USDe ECLP gauge on Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD558C611B69a223767788B638717E868D8947Fd0", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W35/BIP-683.report.txt b/BIPs/2024-W35/BIP-683.report.txt new file mode 100644 index 000000000..d76e424a2 --- /dev/null +++ b/BIPs/2024-W35/BIP-683.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W35/BIP-683.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c2a04713a96d4e882f78f00b61c1a96275c686b0` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6a2f21f7-55a7-4c10-b31d-4bf79b2ef55c) +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x38161e9efb8de52d00a1eb0f773223fd28fdd7c20002000000000000000005a0 | ECLP-GHO-USDe-rh | 0xD558C611B69a223767788B638717E868D8947Fd0 | 0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34: USDe | 0x0000000000000000000000000000000000000000 | -- | BIP-683 | 0 | +| | pool_address: 0x38161e9eFb8De52D00A1eB0f773223FD28FDd7c2 | fee: 0.01 | Style: L0 sidechain | 0xD9FBA68D89178e3538e708939332c79efC540179: stataArbGHO | 0x177862A0242acD8b5F9cc757a963c1C8883da45E | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W35/BIP-684.json b/BIPs/2024-W35/BIP-684.json new file mode 100644 index 000000000..8d2c0d104 --- /dev/null +++ b/BIPs/2024-W35/BIP-684.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308782493, + "meta": { + "name": "Transactions Batch", + "description": "Add sdeUSD/deUSD ECLP gauge on Mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA00DB7d9c465e95e4AA814A9340B9A161364470a", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W35/BIP-684.report.txt b/BIPs/2024-W35/BIP-684.report.txt new file mode 100644 index 000000000..d7c11ef4a --- /dev/null +++ b/BIPs/2024-W35/BIP-684.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W35/BIP-684.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e84ad8465d0ae392bf5e8879507a8a42c3523250` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8cfa3b74-7fc4-4e76-b02e-101ac1e357b9) +``` ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be | ECLP-stdeUSD-deUSD | 0xA00DB7d9c465e95e4AA814A9340B9A161364470a | 0x15700B564Ca08D9439C58cA5053166E8317aa138: deUSD | 0x0000000000000000000000000000000000000000 | -- | BIP-684 | 0 | +| | pool_address: 0x41FDbea2E52790c0a1Dc374F07b628741f2E062D | fee: 0.01 | Style: mainnet | 0x5C5b196aBE0d54485975D1Ec29617D42D9198326: sdeUSD | 0x414aB7081D3C2d0BA75703A465744DF99c9f9B22 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Arbitrum.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Arbitrum.json new file mode 100644 index 000000000..f7f881186 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Arbitrum.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722981647416, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x4d22c2045d8025d7599ffb130bc16db5c7c5a7f890c7cb899eb2446419beda53" + }, + "transactions": [ + { + "to": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Arbitrum.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Arbitrum.report.txt new file mode 100644 index 000000000..6383484eb --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Arbitrum.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Arbitrum.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/3d206c48-44b7-4813-b207-f4a983918ff8) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Avalanche.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Avalanche.json new file mode 100644 index 000000000..919c084b9 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Avalanche.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1722981715563, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0x568385ec97952cbaed3a8b7257aecf8b3d15c49cd25c75f870674c8cf348b9bc" + }, + "transactions": [ + { + "to": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Avalanche.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Avalanche.report.txt new file mode 100644 index 000000000..149ef6648 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Avalanche.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Avalanche.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/49badf47-8767-487d-9d8b-ffac2dbf0593) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json new file mode 100644 index 000000000..bcba4f822 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json @@ -0,0 +1,117 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722983632304, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x2719129e1a7b62c211e04939e089eca8ba6cbb0d5c9baff1f1d16e445f043b43" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x72BA1965320ab5352FD6D68235Cc3C5306a6FFA2", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9F7dfAb2222A473284205cdDF08a677726d786A0", + "amount": "500000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.report.txt new file mode 100644 index 000000000..d656ca66e --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/BAL-Transfers.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/3493ea21-f1ab-495c-a37e-ed676e72411b) +``` ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/mounibec:0x0951FF0835302929d6c0162b3d2495A85e38ec3A | 500.0 (RAW: 500000000000000000000) | BIP-681 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xMaki:0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 1 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xSausageDoge:0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/tritium:0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | 500.0 (RAW: 500000000000000000000) | BIP-681 | 3 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/nanexcool_payments:0x72BA1965320ab5352FD6D68235Cc3C5306a6FFA2 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 4 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/StefanDGeorge:0x9F7dfAb2222A473284205cdDF08a677726d786A0 | 500.0 (RAW: 500000000000000000000) | BIP-681 | 5 | ++----------+------------------------------------------------+----------------------------------------------------------------------+------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Base.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Base.json new file mode 100644 index 000000000..c6e62310a --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Base.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1722981767470, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x5dea3322ed1d89c2127ec2a5d8db2d060d2e29fff20370b28807071d39416890" + }, + "transactions": [ + { + "to": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Base.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Base.report.txt new file mode 100644 index 000000000..0a5207421 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Base.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Base.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e3a8f6b8-144d-4409-a8a2-9460e9fce2dc) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xC40DCFB13651e64C8551007aa57F9260827B6462 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Fraxtal.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Fraxtal.json new file mode 100644 index 000000000..b5e7f131c --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Fraxtal.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1722981912797, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "0x4906b805aec847d0fedd277341b753703494dbdb88d56aaf6f29f079b6258178" + }, + "transactions": [ + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Fraxtal.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Fraxtal.report.txt new file mode 100644 index 000000000..c3b67f91b --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Fraxtal.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Fraxtal.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `fraxtal` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8840effc-e29f-43a5-827b-83cbe1c4e15c) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Gnosis.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Gnosis.json new file mode 100644 index 000000000..ebe6c204b --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Gnosis.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1722981993660, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0xf9984db01c606755ea9e297785c9f3ab0c92d1fcf846642959ad02b92751cd5c" + }, + "transactions": [ + { + "to": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Gnosis.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Gnosis.report.txt new file mode 100644 index 000000000..c2da46c31 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Gnosis.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Gnosis.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4f20958d-19a0-4ca9-8487-1415b7e9c66a) +``` ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x2a5AEcE0bb9EfFD7608213AE1745873385515c18 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA (EOA/dao/AlexLangeVC)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mainnet.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mainnet.json new file mode 100644 index 000000000..e6d70b505 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mainnet.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722981492850, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x2669969643e290cbf6824c243ededacd5b8954bfdf333f4100784ba1d9920ae2" + }, + "transactions": [ + { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "prevOwner", "type": "address", "internalType": "address" }, + { "name": "oldOwner", "type": "address", "internalType": "address" }, + { "name": "newOwner", "type": "address", "internalType": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mainnet.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mainnet.report.txt new file mode 100644 index 000000000..c7fadb1c3 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mainnet.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Mainnet.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6da4a59c-073a-428c-bc00-865f1445ab84) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mode.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mode.json new file mode 100644 index 000000000..9da8cb4d1 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mode.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1722982205675, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "0x9816ea584eaa987ab60a17ca35327c6da8838b168ce32b5b2c26e727124d2eaf" + }, + "transactions": [ + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mode.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mode.report.txt new file mode 100644 index 000000000..7d0f819a3 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Mode.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Mode.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `mode` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0ee2c070-ee5e-44bf-bf1a-35eaaf353c51) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Optimism.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Optimism.json new file mode 100644 index 000000000..935d2b5e6 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Optimism.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1722982343991, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "0x31ccd5562e2405ecdd527162ba9d9b7300555677e9facfddf585fa21a99a6984" + }, + "transactions": [ + { + "to": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Optimism.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Optimism.report.txt new file mode 100644 index 000000000..e8b8dd2a3 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Optimism.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Optimism.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7b47a2b5-9252-40ec-b9ad-52ee36406614) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x043f9687842771b3dF8852c1E9801DCAeED3f6bc (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon zkEVM.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon zkEVM.json new file mode 100644 index 000000000..75d539759 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon zkEVM.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1722982503475, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x6f8da18a063bfe16392b806b667e1a927ca2cf236119b518444ff8f269ad27f6" + }, + "transactions": [ + { + "to": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "prevOwner", "type": "address", "internalType": "address" }, + { "name": "oldOwner", "type": "address", "internalType": "address" }, + { "name": "newOwner", "type": "address", "internalType": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon zkEVM.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon zkEVM.report.txt new file mode 100644 index 000000000..3d5f7cc90 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon zkEVM.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Polygon zkEVM.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `zkevm` +TENDERLY: `🟪 SKIPPED (ValueError({'error': {'id': '80f2cbef-0728-4015-a032-a85e3de52b76', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}}))` +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon.json b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon.json new file mode 100644 index 000000000..39502d601 --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1722982429425, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0x6eb56645429e66ec6081636a2402b664cb94d667dcff8d595f6b3779c3f6a217" + }, + "transactions": [ + { + "to": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "prevOwner", "type": "address", "internalType": "address" }, + { "name": "oldOwner", "type": "address", "internalType": "address" }, + { "name": "newOwner", "type": "address", "internalType": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon.report.txt b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon.report.txt new file mode 100644 index 000000000..44d3a2fbb --- /dev/null +++ b/BIPs/2024-W36/BIP-681-Update-DAO-Multisig-Signers/Polygon.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W35/BIP-681-Update-DAO-Multisig-Signers/Polygon.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `9924328155415b7adad8527d01e08e1e30adcfa6` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/3de621a5-8e69-428a-880f-3d7b02756336) +``` ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +| swapOwner | 0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85 (multisigs/dao) | 0 | { | BIP-681 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------+-------+---------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Arbitrum.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Arbitrum.json new file mode 100644 index 000000000..fcbfa95bc --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Arbitrum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1724888745444, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0xfaef14eb0c57a4c9c399200c86b6a5ca21c4a0697adfd64ea274303809e9e931" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xa7ed295af0b197c9481510d6c8326ba2e2d17b2c1a89ab1834ac80de9220b60e", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Arbitrum.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Arbitrum.report.txt new file mode 100644 index 000000000..da24cc22b --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Arbitrum.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Arbitrum.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c6555836-982f-4d7c-a5c3-26e3d0619865) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0xa7ed295af0b197c9481510d6c8326ba2e2d17b2c1a89ab1834ac80de9220b60e | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Avalanche.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Avalanche.json new file mode 100644 index 000000000..533d01176 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Avalanche.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1724888787362, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "0xe744c45a5e299410afa7b0b774ea326687632758c5aef9f922cf1ba858fbf34f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "role", "type": "bytes32", "internalType": "bytes32" }, + { "name": "account", "type": "address", "internalType": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xce713085e9498c958964f4c64979785027e7a93323b68bca8e87296c696fa643", + "account": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Avalanche.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Avalanche.report.txt new file mode 100644 index 000000000..d7fdc25b0 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Avalanche.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Avalanche.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/306ba8d6-ef35-448d-93cf-4e241fda3c47) +``` ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/fees | 0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6 | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0xce713085e9498c958964f4c64979785027e7a93323b68bca8e87296c696fa643 | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | +| | | | 20230316-avax-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+----------------+--------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Base.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Base.json new file mode 100644 index 000000000..cab87621f --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Base.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1724888850259, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x399c8798d1547b1c45bbd03dece71d39c9deaa1b9c245f4a8155fcfd452e59e2" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x82f054fdfa86620d25b289d7f068681a5224bcfc083243cdb49512fe1574a36f", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Base.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Base.report.txt new file mode 100644 index 000000000..ee2c875d4 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Base.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Base.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7298d265-a4a4-4361-b356-a7fe5d1093b7) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x82f054fdfa86620d25b289d7f068681a5224bcfc083243cdb49512fe1574a36f | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Ethereum.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Ethereum.json new file mode 100644 index 000000000..0fcc991d6 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Ethereum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724888682711, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x73558105c0209523a86a240efaeb2bbdcd8a9ba0d0e1ec9d0577c0d3c4cbe316" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Ethereum.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Ethereum.report.txt new file mode 100644 index 000000000..5c5e5a500 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Ethereum.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Ethereum.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f73ddeb1-45c5-4c85-adae-ba8dffe4eb57) +``` ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-685 | 0 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Fraxtal.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Fraxtal.json new file mode 100644 index 000000000..27b2619a4 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Fraxtal.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1724889297042, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "0xd3fac7b540553969863e10b07058b0c433d327422b12fdc0702797e419602087" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x47c8a529e3b2e456350bd1fb2b5bdd61d0740858cd3fc3a95757ed080665b1b7", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Fraxtal.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Fraxtal.report.txt new file mode 100644 index 000000000..74b41adb6 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Fraxtal.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Fraxtal.json` +MULTISIG: `multisigs/dao (fraxtal:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `fraxtal` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c993bbcb-9fe3-4fbb-9a82-9fd1d1135713) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x47c8a529e3b2e456350bd1fb2b5bdd61d0740858cd3fc3a95757ed080665b1b7 | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Gnosis.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Gnosis.json new file mode 100644 index 000000000..1085d4bc9 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Gnosis.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1724888885884, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0x5ba8b8fb8807d6b703ccc56b12563ed7b127d0d97cf0d7c1da4a0bdd9ce156f8" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x9d575f62420250ec382e1e8e262ddae46d0d6817fab9fde48f9c6efd068e5844", + "account": "0x14969B55a675d13a1700F71A37511bc22D90155a" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Gnosis.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Gnosis.report.txt new file mode 100644 index 000000000..178108c18 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Gnosis.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Gnosis.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/bd9ad2f1-6213-432e-9a95-807671a80ccc) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x14969B55a675d13a1700F71A37511bc22D90155a | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0x9d575f62420250ec382e1e8e262ddae46d0d6817fab9fde48f9c6efd068e5844 | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Mode.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Mode.json new file mode 100644 index 000000000..528f5f807 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Mode.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1724889117212, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "0x13b05ae3c1b4c9e776f0515289cdb236270673103551da6ff11d60db2289d377" + }, + "transactions": [ + { + "to": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x603ba459e5bfca68c1b7b9babc9136a997eaffd125b314a7ca705cb943e36c3d", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Mode.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Mode.report.txt new file mode 100644 index 000000000..1d190ddbc --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Mode.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Mode.json` +MULTISIG: `multisigs/dao (mode:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `mode` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a0d70dde-e0ad-4052-b5aa-6b7f8a7479e5) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0x603ba459e5bfca68c1b7b9babc9136a997eaffd125b314a7ca705cb943e36c3d | BIP-685 | 0 | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Optimism.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Optimism.json new file mode 100644 index 000000000..4c6170c58 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Optimism.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1724889015969, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "0x0a0b37f35e04f42833588423e56e2cd80285adb9be9c1d336f4ca21e5672119b" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x09Df1626110803C7b3b07085Ef1E053494155089" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Optimism.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Optimism.report.txt new file mode 100644 index 000000000..f35e55a06 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Optimism.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Optimism.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a4fbcb05-044e-41a6-959b-9ce778f96d1e) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0x09Df1626110803C7b3b07085Ef1E053494155089 | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Polygon.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Polygon.json new file mode 100644 index 000000000..523651891 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Polygon.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1724888936212, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "0xf46dabf6ccf3968055447b73e33d9aee6a50ad5f11a54fffdd4869971491a759" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "role", "type": "bytes32", "internalType": "bytes32" }, + { "name": "account", "type": "address", "internalType": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x363cf2bd771efe16bd206d33a549d4698c4ad202ea6b5bf693722fbe151140a6", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Polygon.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Polygon.report.txt new file mode 100644 index 000000000..787f0300a --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Polygon.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/Polygon.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/bd6991d9-db6e-47aa-b4c3-6c3c0137207b) +``` ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220413-child-chain-gauge-factory/ChildChainStreamer/set_reward_distributor(address,address) | 0x363cf2bd771efe16bd206d33a549d4698c4ad202ea6b5bf693722fbe151140a6 | BIP-685 | 0 | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | | | | ++----------------------+--------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/PolygonzkEVM.json b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/PolygonzkEVM.json new file mode 100644 index 000000000..010b84031 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/PolygonzkEVM.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1724888976792, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x6539fcb210db6ea97d0d8f7c6a067dcf74bc7a22eef6b9751c338ef1277d8323" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "role", "type": "bytes32", "internalType": "bytes32" }, + { "name": "account", "type": "address", "internalType": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xa68f8859aea0e52f285bf8615e8d0b1c2421e59f342cfea2e496bb19738e86ea", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/PolygonzkEVM.report.txt b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/PolygonzkEVM.report.txt new file mode 100644 index 000000000..0e52cbe48 --- /dev/null +++ b/BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/PolygonzkEVM.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W36/BIP-685 set_reward_distributor Permissions/PolygonzkEVM.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `9f5e260d9e55e67adff534236e6534f96d2bfb8b` +CHAIN(S): `zkevm` +TENDERLY: `🟪 SKIPPED (ValueError({'error': {'id': 'c491bd94-7d13-4bfd-9238-7f1815af9a75', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}}))` +``` ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/set_reward_distributor(address,address) | 0xa68f8859aea0e52f285bf8615e8d0b1c2421e59f342cfea2e496bb19738e86ea | BIP-685 | 0 | ++----------------------+-----------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/BIP-686.json b/BIPs/2024-W36/BIP-686.json new file mode 100644 index 000000000..95b16bd3d --- /dev/null +++ b/BIPs/2024-W36/BIP-686.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724889804914, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xafbf48d20966167ceede0f520da09404bc6925a1a5b79cf05b992c95c1f24f92" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC219821b1FE1bBe436f62D911F00Ef1C8542A8F7", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W36/BIP-686.report.txt b/BIPs/2024-W36/BIP-686.report.txt new file mode 100644 index 000000000..7e481927f --- /dev/null +++ b/BIPs/2024-W36/BIP-686.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W36/BIP-686.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0f0dc68f16667e2afcc86730e8a69758ac2f08ba` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/92aba568-afdf-4708-9718-da11a9fd6365) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xcf8dfdb73e7434b05903b5599fb96174555f43530002000000000000000006c3 | 60GOLD-40WETH | 0xC219821b1FE1bBe436f62D911F00Ef1C8542A8F7 | 0x583019fF0f430721aDa9cfb4fac8F06cA104d0B4: st-yETH | 0x748d749c6Cd0cCA8f53F66A3A0D75a91E2978d65 | safe | BIP-686 | 0 | +| | pool_address: 0xcF8dFdb73e7434b05903B5599fB96174555F4353 | fee: 1.0 | Style: mainnet | 0x9DeB0fc809955b79c85e82918E8586d3b7d2695a: GOLD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 10.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W36/other b/BIPs/2024-W36/other new file mode 100644 index 000000000..e69de29bb diff --git a/BIPs/2024-W37/BIP-691-Enable-wstETH-E-CLP-Gauge-Arbitrum.json b/BIPs/2024-W37/BIP-691-Enable-wstETH-E-CLP-Gauge-Arbitrum.json new file mode 100644 index 000000000..396b9f947 --- /dev/null +++ b/BIPs/2024-W37/BIP-691-Enable-wstETH-E-CLP-Gauge-Arbitrum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1725491973109, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xbc16f7e8c20ac5387b1d6459560b0aadc2e92a58cf265bece7048fb9d9d0225d" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xC11442Cdbe8901b36aeB7bE7F3f95B6a8ade394e", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W37/BIP-691-Enable-wstETH-E-CLP-Gauge-Arbitrum.report.txt b/BIPs/2024-W37/BIP-691-Enable-wstETH-E-CLP-Gauge-Arbitrum.report.txt new file mode 100644 index 000000000..38b4507a5 --- /dev/null +++ b/BIPs/2024-W37/BIP-691-Enable-wstETH-E-CLP-Gauge-Arbitrum.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W37/BIP-691-Enable-wstETH-E-CLP-Gauge-Arbitrum.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a6b1469199483a9e663936b8664ea4bec8303e24` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d473b794-917c-4a63-b20d-5106c09ee89c) +``` ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x596a76a1ae4f7a6055f0c7d4e40737bfc19cfa2c00020000000000000000059f | ECLP-wstETH-GYD | 0xC11442Cdbe8901b36aeB7bE7F3f95B6a8ade394e | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-691 | 0 | +| | pool_address: 0x596a76a1AE4F7a6055F0C7D4e40737bFc19cFa2c | fee: 0.3 | Style: L0 sidechain | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x3a216B01db971Bf28D171C9dA44Cc8C89867697F | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W38/[BIP-692] Enable-sDAI-aUSDC-ECLP-Gnosis.json b/BIPs/2024-W38/[BIP-692] Enable-sDAI-aUSDC-ECLP-Gnosis.json new file mode 100644 index 000000000..f17d26232 --- /dev/null +++ b/BIPs/2024-W38/[BIP-692] Enable-sDAI-aUSDC-ECLP-Gnosis.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726082972380, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xc8f2600482cbbdd853f524da39d551e0d16937634b3a3c168f1f2bcb013a5567" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc0b75da8E6F6403804EFEFDE3101b02276C5f8EA", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2024-W38/[BIP-692] Enable-sDAI-aUSDC-ECLP-Gnosis.report.txt b/BIPs/2024-W38/[BIP-692] Enable-sDAI-aUSDC-ECLP-Gnosis.report.txt new file mode 100644 index 000000000..0665b2ec9 --- /dev/null +++ b/BIPs/2024-W38/[BIP-692] Enable-sDAI-aUSDC-ECLP-Gnosis.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W38/[BIP-692] Enable-sDAI-aUSDC-ECLP-Gnosis.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9e2cb43006046dc6dbbd19bb653d879f118135c2` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2b05ac2b-6072-46b8-8741-85024d170b22) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xaa56989be5e6267fc579919576948db3e1f108070002000000000000000000ca | ECLP-sDAI-USDC.e-rh | root: 0xc0b75da8E6F6403804EFEFDE3101b02276C5f8EA | 0xaf204776c7245bF4147c2612BF6e5972Ee483701: sDAI | 0x89C80A4540A00b5270347E02e2E144c71da2EceD | safe | BIP-692 | 0 | +| | pool_address: 0xaa56989Be5E6267fC579919576948DB3e1F10807 | fee: 0.01 | side: 0x9ED250d67c4E5F5B2b5F982a678eD1c0ba011207 | 0xf0E7eC247b918311afa054E0AEdb99d74c31b809: stataGnoUSDCe | 0x5F62fd24941B585b91EB059E0ea1a7e729357511 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+----------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/BIP-631-beethoven-x-technical-q4-2024.json b/BIPs/2024-W39/BIP-631-beethoven-x-technical-q4-2024.json new file mode 100644 index 000000000..efe1fc4a8 --- /dev/null +++ b/BIPs/2024-W39/BIP-631-beethoven-x-technical-q4-2024.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718696188182, + "meta": { + "name": "Transactions Batch", + "description": "Fund Beethoven-X Technical for Q4 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "87000000000" + } + } + ] +} diff --git a/BIPs/2024-W39/BIP-631-beethoven-x-technical-q4-2024.report.txt b/BIPs/2024-W39/BIP-631-beethoven-x-technical-q4-2024.report.txt new file mode 100644 index 000000000..9086ae396 --- /dev/null +++ b/BIPs/2024-W39/BIP-631-beethoven-x-technical-q4-2024.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W35/BIP-631-beethoven-x-technical-q4-2024.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `f6e1ac7f36d37cf269781474cc38d9a71142e5af` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/eff051a1-cadb-4df9-8d86-f8d1f2447b48) +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 87000.0 (RAW: 87000000000) | BIP-631 | 0 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/BIP-632-fund-beethoven-x-marketing-q4-2024.json b/BIPs/2024-W39/BIP-632-fund-beethoven-x-marketing-q4-2024.json new file mode 100644 index 000000000..b6c8f48d5 --- /dev/null +++ b/BIPs/2024-W39/BIP-632-fund-beethoven-x-marketing-q4-2024.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718697600734, + "meta": { + "name": "Transactions Batch", + "description": "Fund Beethoven-X Marketing for Q4 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "90000000000" + } + } + ] +} diff --git a/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.json b/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.json new file mode 100644 index 000000000..13e92476b --- /dev/null +++ b/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724911699969, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xed0bb13496ce24efff8f9734a9707d092d4be10c", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xbf8f01ebcf0a21c46d23ada2c86eb31c9965b2f0", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xa8d4b31225bd6faf1363db5a0ab6c016894985d1", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x86cf58bd7a64f2304227d1a490660d2954db4a91", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.report.txt b/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.report.txt new file mode 100644 index 000000000..5e7a4a938 --- /dev/null +++ b/BIPs/2024-W39/BIP-686-kill-old-gold-gauges.report.txt @@ -0,0 +1,30 @@ +FILENAME: `BIPs/2024-W37/BIP-686-kill-old-gold-gauges.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0f0dc68f16667e2afcc86730e8a69758ac2f08ba` +CHAIN(S): `arbitrum, base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7f00072e-542a-40b9-9d3f-12bdf7397005) +``` ++--------------------------+--------------------------------------------------------------------+------------------------+-----+--------------------------------------------+------+------+--------------+---------+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++--------------------------+--------------------------------------------------------------------+------------------------+-----+--------------------------------------------+------+------+--------------+---------+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x433f09ca08623e48bac7128b7105de678e37d988000100000000000000000047 | 50GOLD/25WETH/25USDC | N/A | 0xed0bb13496ce24efff8f9734a9707d092d4be10c | 0.5% | 5.0% | L0 sidechain | BIP-686 | 0 | ['0x4200000000000000000000000000000000000006: WETH', '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC', '0xbeFD5C25A59ef2C1316c5A4944931171F30Cd3E4: GOLD'] | +| AAEntrypoint/killGauge() | 0xb328b50f1f7d97ee8ea391ab5096dd7657555f49000100000000000000000048 | GOLD/BAL/USDC | N/A | 0xbf8f01ebcf0a21c46d23ada2c86eb31c9965b2f0 | 0.5% | 2.0% | L0 sidechain | BIP-686 | 1 | ['0x4158734D47Fc9692176B5085E0F52ee0Da5d47F1: BAL', '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC', '0xbeFD5C25A59ef2C1316c5A4944931171F30Cd3E4: GOLD'] | +| AAEntrypoint/killGauge() | 0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb0001000000000000000004bc | 50GOLD-25USDC-25WSTETH | N/A | 0xa8d4b31225bd6faf1363db5a0ab6c016894985d1 | 0.5% | 6.0% | L0 sidechain | BIP-686 | 2 | ['0x5979D7b546E38E414F7E9822514be443A4800529: wstETH', '0x8b5e4C9a188b1A187f2D1E80b1c2fB17fA2922e1: GOLD', '0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC'] | +| AAEntrypoint/killGauge() | 0x49b2de7d214070893c038299a57bac5acb8b8a340001000000000000000004be | GOLD-BAL-AURA-wstETH | N/A | 0x86cf58bd7a64f2304227d1a490660d2954db4a91 | 0.5% | 2.0% | L0 sidechain | BIP-686 | 3 | ['0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8: BAL', '0x1509706a6c66CA549ff0cB464de88231DDBe213B: AURA', '0x5979D7b546E38E414F7E9822514be443A4800529: wstETH', '0x8b5e4C9a188b1A187f2D1E80b1c2fB17fA2922e1: GOLD'] | ++--------------------------+--------------------------------------------------------------------+------------------------+-----+--------------------------------------------+------+------+--------------+---------+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/2024-W37/BIP-686-kill-old-gold-gauges.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0f0dc68f16667e2afcc86730e8a69758ac2f08ba` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/75952c25-6316-499d-b80d-a1ed067331b1) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xed0bb13496ce24EFFF8f9734A9707D092d4Be10c (root_gauges/50GOLD/25WETH/25USDC-base-root-ed0b) | killGauge() | | BIP-686 | 0 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xbf8F01EbCf0A21C46D23ADa2C86EB31c9965B2F0 (root_gauges/GOLD/BAL/USDC-base-root-bf8f) | killGauge() | | BIP-686 | 1 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xA8d4b31225BD6FAF1363DB5A0AB6c016894985d1 (root_gauges/50GOLD-25USDC-25WSTETH-arbitrum-root-a8d4) | killGauge() | | BIP-686 | 2 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x86Cf58bD7A64f2304227d1a490660D2954dB4a91 (root_gauges/GOLD-BAL-AURA-wstETH-arbitrum-root-86cf) | killGauge() | | BIP-686 | 3 | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Gnosis.json b/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Gnosis.json new file mode 100644 index 000000000..75d0ba471 --- /dev/null +++ b/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Gnosis.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1725376470260, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "", + "checksum": "0xaeee15637857460c443ce4c4cf6d5ee908d85e77b872265d0449c0e8e097b428" + }, + "transactions": [ + { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Gnosis.report.txt b/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Gnosis.report.txt new file mode 100644 index 000000000..dc605bf82 --- /dev/null +++ b/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Gnosis.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W37/BIP-688-Update-Karpatkey-Multisig-Signers/Gnosis.json` +MULTISIG: `!NOT FOUND (gnosis:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `6a5150d79dabce058641bfd232f8e3005420d611` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/de97bea2-a48c-4798-a23d-74925e781f48) +``` ++-----------+--------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+--------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (Not Found) | 0 | { | BIP-688 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x823DF0278e4998cD0D06FB857fBD51e85b18A250 (EOA/dao/nanexcool)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Mainnet.json b/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Mainnet.json new file mode 100644 index 000000000..571d03e3c --- /dev/null +++ b/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Mainnet.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1725324132649, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "", + "checksum": "0x9f2cbeb2821fa0c83b0ade203dae85ae373248fa481e65464e9bee3bb3be1952" + }, + "transactions": [ + { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "prevOwner", "type": "address", "internalType": "address" }, + { "name": "oldOwner", "type": "address", "internalType": "address" }, + { "name": "newOwner", "type": "address", "internalType": "address" } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "oldOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3", + "newOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b" + } + } + ] +} diff --git a/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Mainnet.report.txt b/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Mainnet.report.txt new file mode 100644 index 000000000..6258f5536 --- /dev/null +++ b/BIPs/2024-W39/BIP-688-Update-Karpatkey-Multisig-Signers/Mainnet.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W37/BIP-688-Update-Karpatkey-Multisig-Signers/Mainnet.json` +MULTISIG: `multisigs/karpatkey (mainnet:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `6a5150d79dabce058641bfd232f8e3005420d611` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f889a265-5499-467a-8d83-34db7d2f3d62) +``` ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +| swapOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-688 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x823DF0278e4998cD0D06FB857fBD51e85b18A250 (EOA/dao/nanexcool)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------+-------+----------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W39/BIP-689 Claim stkAAVe from Linear Pools.json b/BIPs/2024-W39/BIP-689 Claim stkAAVe from Linear Pools.json new file mode 100644 index 000000000..1fd522dd8 --- /dev/null +++ b/BIPs/2024-W39/BIP-689 Claim stkAAVe from Linear Pools.json @@ -0,0 +1,22 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1725411106398, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x30af54111a13cfcbfc2622a5000c3dc991f8c49089acbb29abcc9ee0e3f9f5c2" + }, + "transactions": [ + { + "to": "0x0e2d46fe246eb926d939A10efA96fB7d4EB14bB3", + "value": "0", + "data": null, + "contractMethod": { "inputs": [], "name": "retrieve", "payable": false }, + "contractInputsValues": {} + } + ] +} diff --git a/BIPs/2024-W39/BIP-689 Claim stkAAVe from Linear Pools.report.txt b/BIPs/2024-W39/BIP-689 Claim stkAAVe from Linear Pools.report.txt new file mode 100644 index 000000000..1c242fc81 --- /dev/null +++ b/BIPs/2024-W39/BIP-689 Claim stkAAVe from Linear Pools.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/2024-W37/BIP-689 Claim stkAAVe from Linear Pools.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `1ed1877c30875f85fa1bb844bd5cffa664719e8b` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/42077c5b-eada-43a9-862b-a6d604a411db) +``` ++----------+--------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------+--------------------------------------------------------+-------+--------+------------+----------+ +| retrieve | 0x0e2d46fe246eb926d939A10efA96fB7d4EB14bB3 (Not Found) | 0 | {} | BIP-689 | N/A | ++----------+--------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/2024-W39/BIP-696-RemoveEOA.json b/BIPs/2024-W39/BIP-696-RemoveEOA.json new file mode 100644 index 000000000..7a19d10b8 --- /dev/null +++ b/BIPs/2024-W39/BIP-696-RemoveEOA.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1723153116320, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "createdFromOwnerAddress": "", + "checksum": "0x91ac6b2c8aacdadf21e96a1a0e3f775f57663b3f97837cf5d845a2a2ab4eac1d" + }, + "transactions": [ + { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "removeOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3", + "owner": "0x7f87c1C42BeF332245F8B3cCAdD8224541CDaEcE", + "_threshold": "6" + } + } + ] +} diff --git a/BIPs/2024-W39/BIP-696-RemoveEOA.report.txt b/BIPs/2024-W39/BIP-696-RemoveEOA.report.txt new file mode 100644 index 000000000..e0ba4a61d --- /dev/null +++ b/BIPs/2024-W39/BIP-696-RemoveEOA.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W39/BIP-696-RemoveEOA.json` +MULTISIG: `multisigs/karpatkey (gnosis:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `6beec31e7de3b36ceb0828d15b3bfc36c647412f` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/70177405-c7af-4b46-a488-7489413f758c) +``` ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| removeOwner | 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey) | 0 | { | BIP-696 | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ], | | | +| | | | "owner": [ | | | +| | | | "0x7f87c1C42BeF332245F8B3cCAdD8224541CDaEcE (EOA/karpatkey/balancer_eoa)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | ++-------------+------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W39/BIP-696-stakeGNO.json b/BIPs/2024-W39/BIP-696-stakeGNO.json new file mode 100644 index 000000000..e94099e59 --- /dev/null +++ b/BIPs/2024-W39/BIP-696-stakeGNO.json @@ -0,0 +1,88 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724960331553, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x28e6614f37a5c671cb7c5ba638b0f5afc789b5b614d2fbeaeaa676dfa8b51cd2" + }, + "transactions": [ + { + "to": "0x4f8AD938eBA0CD19155a835f617317a6E788c868", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "withdraw", + "payable": false + }, + "contractInputsValues": { + "amount": "9051000000000000000000" + } + }, + { + "to": "0x6810e776880C02933D47DB1b9fc05908e5386b96", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0x88ad09518695c6c3712AC10a214bE5109a655671", + "_value": "9051000000000000000000" + } + }, + { + "to": "0x88ad09518695c6c3712AC10a214bE5109a655671", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "token", + "type": "address", + "internalType": "contract IERC677" + }, + { + "name": "_receiver", + "type": "address", + "internalType": "address" + }, + { + "name": "_value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "relayTokens", + "payable": false + }, + "contractInputsValues": { + "token": "0x6810e776880C02933D47DB1b9fc05908e5386b96", + "_receiver": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "_value": "9051000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W39/BIP-696-stakeGNO.report.txt b/BIPs/2024-W39/BIP-696-stakeGNO.report.txt new file mode 100644 index 000000000..315df83ee --- /dev/null +++ b/BIPs/2024-W39/BIP-696-stakeGNO.report.txt @@ -0,0 +1,35 @@ +FILENAME: `BIPs/2024-W39/BIP-696-stakeGNO.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6beec31e7de3b36ceb0828d15b3bfc36c647412f` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a73cccf3-d401-455e-8c91-174fcb288cb9) +``` ++-------------+----------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+----------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| withdraw | 0x4f8AD938eBA0CD19155a835f617317a6E788c868 (tokens/Locked GNO) | 0 | { | BIP-696 | N/A | +| | | | "amount": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x6810e776880C02933D47DB1b9fc05908e5386b96 (tokens/GNO) | 0 | { | BIP-696 | N/A | +| | | | "_spender": [ | | | +| | | | "0x88ad09518695c6c3712AC10a214bE5109a655671 (gnosis/omnibridge)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | +| relayTokens | 0x88ad09518695c6c3712AC10a214bE5109a655671 (gnosis/omnibridge) | 0 | { | BIP-696 | N/A | +| | | | "token": [ | | | +| | | | "0x6810e776880C02933D47DB1b9fc05908e5386b96 (tokens/GNO)" | | | +| | | | ], | | | +| | | | "_receiver": [ | | | +| | | | "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 (multisigs/karpatkey)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:9051000000000000000000, 18 decimals:9051, 6 decimals: 9051000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------+----------------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W39/BIP-698 Enable Gauge wrsETHwstETH Optimism.json b/BIPs/2024-W39/BIP-698 Enable Gauge wrsETHwstETH Optimism.json new file mode 100644 index 000000000..1887c960d --- /dev/null +++ b/BIPs/2024-W39/BIP-698 Enable Gauge wrsETHwstETH Optimism.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726681727265, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb2f2288df2af5fe01c99603b39f19db035b970115c5ec2239f3efe9c077d867d" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf99b2f358efeC751A9071f30E541ab6C42C25B93", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/2024-W39/BIP-698 Enable Gauge wrsETHwstETH Optimism.report.txt b/BIPs/2024-W39/BIP-698 Enable Gauge wrsETHwstETH Optimism.report.txt new file mode 100644 index 000000000..f08ede9c2 --- /dev/null +++ b/BIPs/2024-W39/BIP-698 Enable Gauge wrsETHwstETH Optimism.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W39/BIP-698 Enable Gauge wrsETHwstETH Optimism.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a72f2b0bfccc5ad5919a2a76eab3499912dcfd53` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/306de0c7-f083-4183-be55-ee4a7241d6de) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xcb7d357c84b101e3d559ff4845cef63d7d0753ef000000000000000000000150 | bpt-wrseth-wsteth | root: 0xf99b2f358efeC751A9071f30E541ab6C42C25B93 | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | BIP-698 | 0 | +| | pool_address: 0xcb7D357c84B101e3d559fF4845cef63D7D0753ef | fee: 0.2 | side: 0x028591C6e8DFeb2E315Ddc2647ADBfC5A62b4f77 | 0x87eEE96D50Fb761AD85B1c982d28A042169d61b1: wrsETH | 0x1373A61449C26CC3F48C1B4c547322eDAa36eB12 | safe | | | +| | | a-factor: 200 | style: L0 sidechain | 0xcb7D357c84B101e3d559fF4845cef63D7D0753ef: bpt-wrseth-wsteth | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.json b/BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.json new file mode 100644 index 000000000..8b9e79089 --- /dev/null +++ b/BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726618724927, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x99e745edcf327addcc0811a9716539d968eed9d22341e59700def1da042bbc70" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "398135000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x166f54F44F271407f24AA1BE415a730035637325", + "amount": "32738000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.report.txt b/BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.report.txt new file mode 100644 index 000000000..6e25cb3f8 --- /dev/null +++ b/BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W39/[BIP-694] Balancer Maxi Q4 2024 - Q1 2025.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `6b037363f8d0e7b4f2f135fc2aba0a49039917a9` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/af7d42de-4df8-446f-a4ee-0c1171941747) + +``` ++----------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 398135.0 (RAW: 398135000000) | BIP-694 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/maxi_ops:0x166f54F44F271407f24AA1BE415a730035637325 | 32738.0 (RAW: 32738000000000000000000) | BIP-694 | 1 | ++----------+-------------------------------------------------+---------------------------------------------------------------+----------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/[BIP-695] OpCo Funding Proposal Q4 2024 - Q1 2025.json b/BIPs/2024-W39/[BIP-695] OpCo Funding Proposal Q4 2024 - Q1 2025.json new file mode 100644 index 000000000..7292d91aa --- /dev/null +++ b/BIPs/2024-W39/[BIP-695] OpCo Funding Proposal Q4 2024 - Q1 2025.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726619022107, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xe00fcb375a9999979d3d82d12b3be4c068a9e898a3e19645d050c80d3a32566c" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "333325000000" + } + } + ] +} diff --git a/BIPs/2024-W39/[BIP-695] OpCo Funding Proposal Q4 2024 - Q1 2025.report.txt b/BIPs/2024-W39/[BIP-695] OpCo Funding Proposal Q4 2024 - Q1 2025.report.txt new file mode 100644 index 000000000..810c705d9 --- /dev/null +++ b/BIPs/2024-W39/[BIP-695] OpCo Funding Proposal Q4 2024 - Q1 2025.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W39/[BIP-695] OpCo Funding Proposal Q4 2024 - Q1 2025.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `94f94f02c7f078b0a2ccfdd00affb6ae32830fb8` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9e3429f0-6891-4b60-94bc-328f19ce2c52) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 333325.0 (RAW: 333325000000) | BIP-695 | 0 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.json b/BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.json new file mode 100644 index 000000000..66e092536 --- /dev/null +++ b/BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726618346454, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x8d1514e47e48665290f14d29a592773f5a50f4e725450ec53da62f591fee084e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "72000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "amount": "6780000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.report.txt b/BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.report.txt new file mode 100644 index 000000000..c6dc2da6b --- /dev/null +++ b/BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W39/[BIP-697] BD-SP-Proposal-Q4-2024-Q1-2025.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `dc4f8027c5e708d22487fb45c5fb88dce644e5da` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f2d5a6aa-ab27-4075-b5e9-95e73bdc05a7) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 72000.0 (RAW: 72000000000) | BIP-697 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 6780.0 (RAW: 6780000000000000000000) | BIP-697 | 1 | ++----------+-------------------------------------------------+-------------------------------------------------------------+--------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/[BIP-699] Enable wstETH-GYD Gauge [Arbitrum].json b/BIPs/2024-W39/[BIP-699] Enable wstETH-GYD Gauge [Arbitrum].json new file mode 100644 index 000000000..cca1a5308 --- /dev/null +++ b/BIPs/2024-W39/[BIP-699] Enable wstETH-GYD Gauge [Arbitrum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726682258060, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x04eb5e21562710cb9d9065fc30a89d3ebfb9f7edc67a483b92341a6e3a32a019" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9E965252d1b294aF358a232933A65Bd30645c34C", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W39/[BIP-699] Enable wstETH-GYD Gauge [Arbitrum].report.txt b/BIPs/2024-W39/[BIP-699] Enable wstETH-GYD Gauge [Arbitrum].report.txt new file mode 100644 index 000000000..2e05b394d --- /dev/null +++ b/BIPs/2024-W39/[BIP-699] Enable wstETH-GYD Gauge [Arbitrum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W39/[BIP-699] Enable wstETH-GYD Gauge [Arbitrum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3ed0bce7bd7376b790bb0985bfe5538d8b87499d` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9e01b79a-b93b-4aa7-b5ba-7f7c0ff82d1b) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x6ce1d1e46548ef657f8d7ebddfc4beadb04f72f30002000000000000000005a1 | ECLP-wstETH-GYD | root: 0x9E965252d1b294aF358a232933A65Bd30645c34C | 0x5979D7b546E38E414F7E9822514be443A4800529: wstETH | 0xf7c5c26B574063e7b098ed74fAd6779e65E3F836 | safe | BIP-699 | 0 | +| | pool_address: 0x6ce1D1e46548ef657f8D7Ebddfc4BEaDB04F72f3 | fee: 0.3 | side: 0x654a17A779B82BA7739cD3Adb2052e039c4366C5 | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x72F6Da3b4bd0Ab7028F52339Ee3B1f94fffe2dD0 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/[BIP-700] Enable a wstETH-GYD Gauge [Ethereum].json b/BIPs/2024-W39/[BIP-700] Enable a wstETH-GYD Gauge [Ethereum].json new file mode 100644 index 000000000..a63f70a26 --- /dev/null +++ b/BIPs/2024-W39/[BIP-700] Enable a wstETH-GYD Gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726682421283, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x6fb1bdfa848ace204da0aa7b3c9d5b9466c58025fa48b098f1ea46afca9018c8" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCda69C40176B98bB1773109d1fEa91e12F478451", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W39/[BIP-700] Enable a wstETH-GYD Gauge [Ethereum].report.txt b/BIPs/2024-W39/[BIP-700] Enable a wstETH-GYD Gauge [Ethereum].report.txt new file mode 100644 index 000000000..4b9243b0a --- /dev/null +++ b/BIPs/2024-W39/[BIP-700] Enable a wstETH-GYD Gauge [Ethereum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W39/[BIP-700] Enable a wstETH-GYD Gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `5e68605c29f5c93e1e4b7054feaf12f12e54116d` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/17f353ab-175c-447a-a89e-18bc72028b7e) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xc8cf54b0b70899ea846b70361e62f3f5b22b1f4b0002000000000000000006c7 | ECLP-wstETH-GYD | root: 0xCda69C40176B98bB1773109d1fEa91e12F478451 | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | BIP-700 | 0 | +| | pool_address: 0xC8cF54b0b70899Ea846B70361e62F3F5B22b1f4B | fee: 0.3 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0xD43F5a722e8e7355D790adda4642f392Dfb820a1 | safe | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W39/[BIP-701] Enable balETH-wstETH gauge [Ethereum].json b/BIPs/2024-W39/[BIP-701] Enable balETH-wstETH gauge [Ethereum].json new file mode 100644 index 000000000..ff7967741 --- /dev/null +++ b/BIPs/2024-W39/[BIP-701] Enable balETH-wstETH gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726745902826, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0fa4cfcfce24504931838b3de74217953d6e45bb4b2305f1a82f4855f3429dc7" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W39/[BIP-701] Enable balETH-wstETH gauge [Ethereum].report.txt b/BIPs/2024-W39/[BIP-701] Enable balETH-wstETH gauge [Ethereum].report.txt new file mode 100644 index 000000000..ed1799faf --- /dev/null +++ b/BIPs/2024-W39/[BIP-701] Enable balETH-wstETH gauge [Ethereum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W39/[BIP-701] Enable balETH-wstETH gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7fe6346c2621294e120b6f82a73363da310982c0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/21a059d9-e5a2-4b88-b1d0-0cbc6188e981) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xb757ddbc72155c0a41058e148969ba29ba071a2e0000000000000000000006ce | balETH/wstETH | root: 0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A | 0x6dC3ce9C57b20131347FDc9089D740DAf6eB34c5: balETH | 0xd4580a56e715F14Ed9d340Ff30147d66230d44Ba | safe | BIP-701 | 0 | +| | pool_address: 0xB757DdbC72155C0a41058E148969BA29BA071A2E | fee: 0.04 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 200 | style: mainnet | 0xB757DdbC72155C0a41058E148969BA29BA071A2E: balETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W4/BIP-520.json b/BIPs/2024-W4/BIP-520.json new file mode 100644 index 000000000..8a650d6ff --- /dev/null +++ b/BIPs/2024-W4/BIP-520.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703108246792, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xc89970ca0569367851a4d22c445d8b3a4902c3d3e0a870126b7f6860727c59b9" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "46474050000" + } + } + ] +} diff --git a/BIPs/2024-W4/BIP-520.report.txt b/BIPs/2024-W4/BIP-520.report.txt new file mode 100644 index 000000000..151b6d990 --- /dev/null +++ b/BIPs/2024-W4/BIP-520.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W4/BIP-520.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `ea87b29b0d7d9a451e2cfaaa633e797f77c95fb0` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+=============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 46474.05 (RAW: 46474050000) | BIP-520 | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W4/BIP-535.json b/BIPs/2024-W4/BIP-535.json new file mode 100644 index 000000000..49be86df2 --- /dev/null +++ b/BIPs/2024-W4/BIP-535.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705515128777, + "meta": { + "name": "Transactions Batch", + "description": "Fund grants for Q4 2023", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xde5cbe25c58c49ee7635216de6998f8dacd63b96", + "value": "4382140000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc4f95f674b393a49410ace864833abe836848526", + "value": "4088240000" + } + } + ] +} diff --git a/BIPs/2024-W4/BIP-535.report.txt b/BIPs/2024-W4/BIP-535.report.txt new file mode 100644 index 000000000..50b1a62ce --- /dev/null +++ b/BIPs/2024-W4/BIP-535.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W4/BIP-535.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `e682991074a94b53c2df8b05ece82d1a22154cc4` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+------------------------------------------------+---------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+===========================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xDe5cbE25c58c49Ee7635216de6998f8dAcD63b96 | 4382.14 (RAW: 4382140000) | BIP-535 | 0 | ++------------+-------------------------------------------------+------------------------------------------------+---------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xc4F95f674b393a49410acE864833abE836848526 | 4088.24 (RAW: 4088240000) | BIP-535 | 1 | ++------------+-------------------------------------------------+------------------------------------------------+---------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W4/BIP-536.json b/BIPs/2024-W4/BIP-536.json new file mode 100644 index 000000000..a12c06d38 --- /dev/null +++ b/BIPs/2024-W4/BIP-536.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705515525740, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6D560CbE3Cc25Eca8c930835Ec3d296a6C16B210", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W4/BIP-536.report.txt b/BIPs/2024-W4/BIP-536.report.txt new file mode 100644 index 000000000..43e949313 --- /dev/null +++ b/BIPs/2024-W4/BIP-536.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W4/BIP-536.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `f88abe3ad4fdf9c19ebc3bb1c016b6c3f0bec35e` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x383e7859271b2d0589b013b6d944572a0a8be3cb000000000000000000000657 | DOLA-mkUSD BSP | 0x6D560CbE3Cc25Eca8c930835Ec3d296a6C16B210 | "DOLA-mkUSD BSP(0x383e7859271B2D0589B013b6d944572a0a8bE3cB)", | "0x0000000000000000000000000000000000000000", | BIP-536 | 0 | +| | pool_address: 0x383e7859271B2D0589B013b6d944572a0a8bE3cB | fee: 0.04, a-factor: 100 | Style: mainnet, cap: 100.0% | "mkUSD(0x4591DBfF62656E7859Afe5e45f6f47D3669fBB28)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "DOLA(0x865377367054516e17014CcdED1e7d814EDC9ce4)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W4/BIP-537.json b/BIPs/2024-W4/BIP-537.json new file mode 100644 index 000000000..81c313637 --- /dev/null +++ b/BIPs/2024-W4/BIP-537.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705516006060, + "meta": { + "name": "Transactions Batch", + "description": "Pay BAL for GGP comp", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "6545000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W4/BIP-537.report.txt b/BIPs/2024-W4/BIP-537.report.txt new file mode 100644 index 000000000..6ebaed4b7 --- /dev/null +++ b/BIPs/2024-W4/BIP-537.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W4/BIP-537.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `5c5e5b1b3274ddd9687bf2c3f0b96de6330cdee5` +CHAIN(S): `mainnet` +``` ++------------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=========================================================+======================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 6545.0 (RAW: 6545000000000000000000) | BIP-537 | 0 | ++------------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W4/BIP-538.json b/BIPs/2024-W4/BIP-538.json new file mode 100644 index 000000000..b43c5b6bc --- /dev/null +++ b/BIPs/2024-W4/BIP-538.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705567015726, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W4/BIP-538.report.txt b/BIPs/2024-W4/BIP-538.report.txt new file mode 100644 index 000000000..3553b0b93 --- /dev/null +++ b/BIPs/2024-W4/BIP-538.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W4/BIP-538.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0554ed841f7d10f1c80a7f32bd62785063c94bdc` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | ezETH-WETH-BPT | 0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b | "ezETH-WETH-BPT(0x596192bB6e41802428Ac943D2f1476C1Af25CC0E)", | "0x0000000000000000000000000000000000000000", | BIP-538 | 0 | +| | pool_address: 0x596192bB6e41802428Ac943D2f1476C1Af25CC0E | fee: 0.01, a-factor: 200 | Style: mainnet, cap: 100.0% | "ezETH(0xbf5495Efe5DB9ce00f80364C8B423567e58d2110)", | "0x387dBc0fB00b26fb085aa658527D5BE98302c84C", | | | +| | | | | "WETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W40/[BIP-704] Enable MORE-GYD gauge [Arbitrum].json b/BIPs/2024-W40/[BIP-704] Enable MORE-GYD gauge [Arbitrum].json new file mode 100644 index 000000000..2d06d0f77 --- /dev/null +++ b/BIPs/2024-W40/[BIP-704] Enable MORE-GYD gauge [Arbitrum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727293552649, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x99ed6ecd46b5fa3d916db9785d35d637e8cd2152d7178e3c25c4fc5491e8f55c" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2400b9BAfb56Ec6D9eCeE50aF463A155Cf46db98", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W40/[BIP-704] Enable MORE-GYD gauge [Arbitrum].report.txt b/BIPs/2024-W40/[BIP-704] Enable MORE-GYD gauge [Arbitrum].report.txt new file mode 100644 index 000000000..cd97de24c --- /dev/null +++ b/BIPs/2024-W40/[BIP-704] Enable MORE-GYD gauge [Arbitrum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W40/[BIP-704] Enable MORE-GYD gauge [Arbitrum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `2b0ba798e165426ed0550a76082de888f2141ab4` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/050f345e-3f44-4a66-a84d-7286fe038439) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x4284c68f567903537e2d9ff726fdf8591e431ddc0002000000000000000005b5 | ECLP-MORE-GYD | root: 0x2400b9BAfb56Ec6D9eCeE50aF463A155Cf46db98 | 0x25ea98ac87A38142561eA70143fd44c4772A16b6: MORE | 0x0000000000000000000000000000000000000000 | -- | BIP-704 | 0 | +| | pool_address: 0x4284c68f567903537E2d9Ff726fdF8591E431DDC | fee: 0.05 | side: 0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W40/[BIP-707] Kill Shezmu Gauges.json b/BIPs/2024-W40/[BIP-707] Kill Shezmu Gauges.json new file mode 100644 index 000000000..47eba1428 --- /dev/null +++ b/BIPs/2024-W40/[BIP-707] Kill Shezmu Gauges.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xB002073210698B0852E34DA6A5e432a04D299205", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W40/[BIP-707] Kill Shezmu Gauges.report.txt b/BIPs/2024-W40/[BIP-707] Kill Shezmu Gauges.report.txt new file mode 100644 index 000000000..c88bb9d18 --- /dev/null +++ b/BIPs/2024-W40/[BIP-707] Kill Shezmu Gauges.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W44/[BIP-707] Kill Shezmu Gauges.json` +MULTISIG: `multisigs/emergency (mainnet:0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888)` +COMMIT: `7b0567584d523cbf4292105c308dc9689e2f3fe1` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/44556c94-8308-44a5-8ef1-ce5f58c2bca3) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01 (gauges/ShezUSD/sDAI-gauge-a71a) | killGauge() | | BIP-707 | 0 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xB002073210698B0852E34DA6A5e432a04D299205 (gauges/shezETH/wstETH-gauge-b002) | killGauge() | | BIP-707 | 1 | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` diff --git a/BIPs/2024-W41/[BIP-712] Enable UltraEths-wETH gauge [Ethereum].json b/BIPs/2024-W41/[BIP-712] Enable UltraEths-wETH gauge [Ethereum].json new file mode 100644 index 000000000..4855db76f --- /dev/null +++ b/BIPs/2024-W41/[BIP-712] Enable UltraEths-wETH gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727965215532, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x3190162fc8f7a0c74b9d6f39fce794ad4c31677cf7abe9476950f897f46efd41" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xae009634C214C23772a0E19F9AAfdFF12E89d19D", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W41/[BIP-712] Enable UltraEths-wETH gauge [Ethereum].report.txt b/BIPs/2024-W41/[BIP-712] Enable UltraEths-wETH gauge [Ethereum].report.txt new file mode 100644 index 000000000..85c82c196 --- /dev/null +++ b/BIPs/2024-W41/[BIP-712] Enable UltraEths-wETH gauge [Ethereum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W41/[BIP-712] Enable UltraEths-wETH gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `95963fa4215d671f78aa719e86df7ebd49d1aeea` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2f34b63d-3ba2-4439-9b21-60337a40b3d0) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xa7cbc1346c8bf4237487157c8bb97abc55a4fb810000000000000000000006d5 | UltraETHs/wETH | root: 0xae009634C214C23772a0E19F9AAfdFF12E89d19D | 0xa7CBC1346C8bf4237487157c8bB97aBc55A4fb81: UltraETHs/wETH | 0x0000000000000000000000000000000000000000 | -- | BIP-712 | 0 | +| | pool_address: 0xa7CBC1346C8bf4237487157c8bB97aBc55A4fb81 | fee: 0.04 | side: None | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | style: mainnet | 0xF0a949B935e367A94cDFe0F2A54892C2BC7b2131: ultraETHs | 0x4E4C0ea425bacc68cD2Acbf1cdaa234bE9Dd8742 | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.json b/BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.json new file mode 100644 index 000000000..7805b3853 --- /dev/null +++ b/BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727966124670, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xf499abae0af5ef0898a63dd9b3276019df439c870d35383536b4f03e75fe8486" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2", + "value": "265000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2", + "amount": "115250000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.report.txt b/BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.report.txt new file mode 100644 index 000000000..1005c4702 --- /dev/null +++ b/BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W41/[BIP-713] Spearbit Cantina Audit Competition Funding.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `f5074f9bce8ae95f0238556ba546cd46bec43262` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ab733c65-4d10-4ac6-b7f0-9f80c5804410) + +``` ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/cantina_payments:0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2 | 265000.0 (RAW: 265000000000) | BIP-713 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/cantina_payments:0x3Dcb7CFbB431A11CAbb6f7F2296E2354f488Efc2 | 115250.0 (RAW: 115250000000000000000000) | BIP-713 | 1 | ++----------+-------------------------------------------------+--------------------------------------------------------------------+------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W42/[BIP-716] Enable USDC-GYD Gauge [Ethereum].json b/BIPs/2024-W42/[BIP-716] Enable USDC-GYD Gauge [Ethereum].json new file mode 100644 index 000000000..0a8d9581a --- /dev/null +++ b/BIPs/2024-W42/[BIP-716] Enable USDC-GYD Gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728569239368, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xd2f9b4703203e5350c156d30eed1eed6702866ab54f2cec1c4336ddfd53a7785" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x9C1A157cf8B242F67b3c950EDA9A30b320bDe9cd", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W42/[BIP-716] Enable USDC-GYD Gauge [Ethereum].report.txt b/BIPs/2024-W42/[BIP-716] Enable USDC-GYD Gauge [Ethereum].report.txt new file mode 100644 index 000000000..cadd4593b --- /dev/null +++ b/BIPs/2024-W42/[BIP-716] Enable USDC-GYD Gauge [Ethereum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W42/[BIP-716] Enable USDC-GYD Gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `f39b627cb927130ee9c8a304e6d69e6471a2e7b5` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4314c378-3cf7-4af5-95d8-fbbf1de2455a) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2875f3effe9ec897d7e4c32680d77ca3e628f33a0002000000000000000006d1 | ECLP-GYD-USDC | root: 0x9C1A157cf8B242F67b3c950EDA9A30b320bDe9cd | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: USDC | 0x0000000000000000000000000000000000000000 | -- | BIP-716 | 0 | +| | pool_address: 0x2875f3eFfE9Ec897D7e4C32680D77cA3E628f33a | fee: 0.01 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W42/[BIP-717] Enable GHO-wUSDL Gauge on Arbitrum.json b/BIPs/2024-W42/[BIP-717] Enable GHO-wUSDL Gauge on Arbitrum.json new file mode 100644 index 000000000..d45191fdb --- /dev/null +++ b/BIPs/2024-W42/[BIP-717] Enable GHO-wUSDL Gauge on Arbitrum.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728571035448, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa0f00b336669b629d2afc8e30029383212a3cb792273d56af57ff33648d8424c" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W42/[BIP-717] Enable GHO-wUSDL Gauge on Arbitrum.report.txt b/BIPs/2024-W42/[BIP-717] Enable GHO-wUSDL Gauge on Arbitrum.report.txt new file mode 100644 index 000000000..b0cfefec0 --- /dev/null +++ b/BIPs/2024-W42/[BIP-717] Enable GHO-wUSDL Gauge on Arbitrum.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W42/[BIP-717] Enable GHO-wUSDL Gauge on Arbitrum.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a5e8a6d998723ba372f15b4f1efa7de6e35949fd` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/88279386-fa3d-4364-99e9-828358e73599) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xab297f94235de777b85024ed1208ff43852385d90000000000000000000005bb | wUSDL/GHO | root: 0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2 | 0x7751E2F4b8ae93EF6B79d86419d42FE3295A4559: wUSDL | 0x4d494eF5CB1143991F7F767567aD7f55bCfDc279 | safe | BIP-717 | 0 | +| | pool_address: 0xab297f94235De777B85024eD1208Ff43852385D9 | fee: 0.01 | side: 0xcC014e60585259dA1C8501b00789521659e7a4fC | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: L0 sidechain | 0xab297f94235De777B85024eD1208Ff43852385D9: wUSDL/GHO | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W42/[BIP-718] Enable Gauge for dvstETH-wstETH [Ethereum].json b/BIPs/2024-W42/[BIP-718] Enable Gauge for dvstETH-wstETH [Ethereum].json new file mode 100644 index 000000000..85327af64 --- /dev/null +++ b/BIPs/2024-W42/[BIP-718] Enable Gauge for dvstETH-wstETH [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728572273649, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2ee4e61aae3099bc7a9b9f339efc3058ec858a4bdac155f2e89d6436898af40c" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xbDBC5A69CC499F9286a55c48C9939cE1554d7A23", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W42/[BIP-718] Enable Gauge for dvstETH-wstETH [Ethereum].report.txt b/BIPs/2024-W42/[BIP-718] Enable Gauge for dvstETH-wstETH [Ethereum].report.txt new file mode 100644 index 000000000..b43768ccb --- /dev/null +++ b/BIPs/2024-W42/[BIP-718] Enable Gauge for dvstETH-wstETH [Ethereum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W42/[BIP-718] Enable Gauge for dvstETH-wstETH [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ab65c128ac26fb797bd8883df85ada82ffd06d95` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ffda6878-454b-4824-b5ca-1207c3f865d1) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x632aafc2d3d2ca1764e702aa25c065c273cd08ed0000000000000000000006d6 | DVstETH/wstETH | root: 0xbDBC5A69CC499F9286a55c48C9939cE1554d7A23 | 0x5E362eb2c0706Bd1d134689eC75176018385430B: DVstETH | 0x1a9DBa2dC3E82F53d040701F97DC0438d26A4320 | safe | BIP-718 | 0 | +| | pool_address: 0x632aafC2D3D2cA1764E702aa25c065c273Cd08eD | fee: 0.01 | side: None | 0x632aafC2D3D2cA1764E702aa25c065c273Cd08eD: DVstETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: mainnet | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W43/BIP-720-relock-vlAura-part3.json b/BIPs/2024-W43/BIP-720-relock-vlAura-part3.json new file mode 100644 index 000000000..3d7dbae0a --- /dev/null +++ b/BIPs/2024-W43/BIP-720-relock-vlAura-part3.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719383753, + "meta": { + "name": "Relock vlAura", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xca94d855b2db96ef3d9e7c14d53801d78ed4712b84273141d1b20ae38fd2f59e" + }, + "transactions": [ + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_relock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "processExpiredLocks", + "payable": false + }, + "contractInputsValues": { + "_relock": "true" + } + } + ] +} diff --git a/BIPs/2024-W43/BIP-720-relock-vlAura-part3.report.txt b/BIPs/2024-W43/BIP-720-relock-vlAura-part3.report.txt new file mode 100644 index 000000000..5c8dc9107 --- /dev/null +++ b/BIPs/2024-W43/BIP-720-relock-vlAura-part3.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W43/BIP-720-relock-vlAura-part3.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `323962e478e39f22b7e5ec6a2d035cc0f2a036d5` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b0dc6410-7aae-4eb2-af67-5f95f0d7fae2) + +``` ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-720 | N/A | +| | | | "_relock": [ | | | +| | | | "true" | | | +| | | | ] | | | +| | | | } | | | ++---------------------+----------------------------------------------------------+-------+----------------+------------+----------+ +``` diff --git a/BIPs/2024-W43/[BIP-719] Enable MORE-USDC gauge [BASE].json b/BIPs/2024-W43/[BIP-719] Enable MORE-USDC gauge [BASE].json new file mode 100644 index 000000000..dacfaa97b --- /dev/null +++ b/BIPs/2024-W43/[BIP-719] Enable MORE-USDC gauge [BASE].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729175738424, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xba81d048c0a4ca4ec81d49c76a863279615132b8967ea5482df943fabfc7a864" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF55ab397a9DB73D352A883eaC4777B14eE2E4bBf", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2024-W43/[BIP-719] Enable MORE-USDC gauge [BASE].report.txt b/BIPs/2024-W43/[BIP-719] Enable MORE-USDC gauge [BASE].report.txt new file mode 100644 index 000000000..79e46c023 --- /dev/null +++ b/BIPs/2024-W43/[BIP-719] Enable MORE-USDC gauge [BASE].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W43/[BIP-719] Enable MORE-USDC gauge [BASE].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `951708905b82ca04a1442379dc20b43c9481295a` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7eca8f97-f117-4462-981a-ee8f24f1a8d8) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x0008a59c1d2e5922790c929ea432ed02d4d3323a000200000000000000000190 | ECLP-MORE-USDC | root: 0xF55ab397a9DB73D352A883eaC4777B14eE2E4bBf | 0x25ea98ac87A38142561eA70143fd44c4772A16b6: MORE | 0x0000000000000000000000000000000000000000 | -- | BIP-719 | 0 | +| | pool_address: 0x0008A59C1d2E5922790C929ea432ed02D4D3323A | fee: 0.05 | side: 0x04eB463335845e8B8d46d410B344Fd2187BbF87C | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 2.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].json b/BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].json new file mode 100644 index 000000000..6bae975dc --- /dev/null +++ b/BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729174099399, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf0a017ab25442ea581c756c3c3e5be4abb4d472a456938f4c13532b2054e8f81" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xFa2F6BE7cF4da6FaE6A011A4EFC53180c9Cf0a1b", + "gaugeType": "Gnosis" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe2251F5cc98f8Ccd8812Be9c0aAe8A9bD29500F3", + "gaugeType": "Gnosis" + } + } + ] +} diff --git a/BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].report.txt b/BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].report.txt new file mode 100644 index 000000000..55b5deade --- /dev/null +++ b/BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].report.txt @@ -0,0 +1,27 @@ +FILENAME: `BIPs/2024-W43/[BIP-723] Enable two E-CLP gauges [Gnosis].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `f1a7cee7b318eadd1728c057c31821b2a98b1ab5` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4fea48b0-ec4f-4a17-be73-106f92efacc2) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x263a6edafa6444dc2ae550f9eff6344c1686d6aa0002000000000000000000d5 | ECLP-GYD-AUSDC.e | root: 0xFa2F6BE7cF4da6FaE6A011A4EFC53180c9Cf0a1b | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | BIP-723 | 0 | +| | pool_address: 0x263A6Edafa6444DC2ae550f9EFF6344c1686d6aA | fee: 0.01 | side: 0xeCC38A7E4EB20FB72BA1cDcF2fC7A6002C6C59f3 | 0xf0E7eC247b918311afa054E0AEdb99d74c31b809: stataGnoUSDCe | 0x5F62fd24941B585b91EB059E0ea1a7e729357511 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x1e8b447129984d8a6b652c807dfc3bd1359731330002000000000000000000d6 | ECLP-GYD-sDAI | root: 0xe2251F5cc98f8Ccd8812Be9c0aAe8A9bD29500F3 | 0xaf204776c7245bF4147c2612BF6e5972Ee483701: sDAI | 0x89C80A4540A00b5270347E02e2E144c71da2EceD | safe | BIP-723 | 1 | +| | pool_address: 0x1e8b447129984d8A6B652C807DfC3bd135973133 | fee: 0.01 | side: 0xEA71b7FDAA3683D2d307e8AF3e236FB7a395e88d | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W43/[BIP-724] Enable GYD-aUSDT gauge [Polygon PoS].json b/BIPs/2024-W43/[BIP-724] Enable GYD-aUSDT gauge [Polygon PoS].json new file mode 100644 index 000000000..aefde65f9 --- /dev/null +++ b/BIPs/2024-W43/[BIP-724] Enable GYD-aUSDT gauge [Polygon PoS].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729174650633, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xd4ae34866bcce180020d7388d4204d249f702f4aa6da369d2187e818f1fed820" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8E4debFB047eFCF6501665160739818E90eD621F", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/2024-W43/[BIP-724] Enable GYD-aUSDT gauge [Polygon PoS].report.txt b/BIPs/2024-W43/[BIP-724] Enable GYD-aUSDT gauge [Polygon PoS].report.txt new file mode 100644 index 000000000..5ff350b52 --- /dev/null +++ b/BIPs/2024-W43/[BIP-724] Enable GYD-aUSDT gauge [Polygon PoS].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W43/[BIP-724] Enable GYD-aUSDT gauge [Polygon PoS].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c31c4e0a27586922353c5ae04fe74574e6295096` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b6b8422d-c82d-45e3-820f-fe96d04abcae) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xa8cbbffe0d62797afaf7af0a23810bd5ba39a4dd000200000000000000000f04 | ECLP-GYD-AUSDT | root: 0x8E4debFB047eFCF6501665160739818E90eD621F | 0x87A1fdc4C726c459f597282be639a045062c0E46: stataPolUSDT | 0x9977a61a6aa950044d4dcD8aA0cAb76F84ea5aCd | safe | BIP-724 | 0 | +| | pool_address: 0xa8CbbfFE0d62797AFAF7af0A23810bd5ba39a4dD | fee: 0.01 | side: 0xCC322077D4056739FC11E950326b2a97aEcB0cc8 | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W43/[BIP-725] Enable hETH-wstETH Gauge [Ethereum].json b/BIPs/2024-W43/[BIP-725] Enable hETH-wstETH Gauge [Ethereum].json new file mode 100644 index 000000000..b9c8b2c87 --- /dev/null +++ b/BIPs/2024-W43/[BIP-725] Enable hETH-wstETH Gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729175326883, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb922e10d2cbebe805af57419d4f48a7efd5d2d5f8cf6ce3206d2289efa491222" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x60adB6A1D73b16F47EA3CCBa94f79cc95D2ba73B", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W43/[BIP-725] Enable hETH-wstETH Gauge [Ethereum].report.txt b/BIPs/2024-W43/[BIP-725] Enable hETH-wstETH Gauge [Ethereum].report.txt new file mode 100644 index 000000000..9cf035aed --- /dev/null +++ b/BIPs/2024-W43/[BIP-725] Enable hETH-wstETH Gauge [Ethereum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W43/[BIP-725] Enable hETH-wstETH Gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ca2adbfb3d54d05f54d1c1adeeaccd7e47d76da7` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b8dc5b8f-4a48-4480-8f3b-80a1283479de) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xa34bd98e54411494c55f6b12626204350d2d447f0000000000000000000006dc | hETH/wstETH | root: 0x60adB6A1D73b16F47EA3CCBa94f79cc95D2ba73B | 0x270B7748CdF8243bFe68FaCE7230ef0fCE695389: hETH | 0x388BeD0F17Ad5752EBC5b4034226D4c5D33bAA9e | safe | BIP-725 | 0 | +| | pool_address: 0xa34bD98E54411494C55F6b12626204350d2D447f | fee: 0.04 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 200 | style: mainnet | 0xa34bD98E54411494C55F6b12626204350d2D447f: hETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W44/BIP-702-Claim-COW-Rewards.json b/BIPs/2024-W44/BIP-702-Claim-COW-Rewards.json new file mode 100644 index 000000000..91de383de --- /dev/null +++ b/BIPs/2024-W44/BIP-702-Claim-COW-Rewards.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726858340422, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xaf31fbd6795e792a4816cd00c450084ec1e542e6f475b080f1e564824f951c55" + }, + "transactions": [ + { + "to": "0x64646f112FfD6F1B7533359CFaAF7998F23C8c40", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "index": "76", + "amount": "644468387507556000000000", + "merkleProof": "[0x094ad36ae546eed2259ef0fece65a547da0f0637fd0f4f2eada3f1d0683f38ec,0xd384949604f27f23a72c2f4a8b9685fbd5c7c73dff91a090dfe1b9f97d400901,0x08bbea027cafe80e4980174a6c737ea14a1f2112fc729dab0edbfc5c5f1db49a,0xad831294f8fdafb520d6d5bd541cf4dcda1a70296984bc3724ff6b4ced47031e,0x089e0540e28339fdc77e4fe34924a44c9118c931d327d6c93b50a855fcc0728b,0xec1729dc9432b2d6cf47739e615ea9047b354edd301f3ccdf9f99a4a76fc036e,0x39931438cd8162fd4c05032bbd0e02ea5b30be104554d8739d6af78e792935e5,0xe9067ae76891425e5e33c2a12d6a9cd062d5e2ab763ddd1283fba657d32bc623,0x9bf5615249d7ef7fe82e7039d7dc3c2a8c105cc491dca112246b549b24ad28d9,0xd84e4549adcf49890f091546b3f873d102368cb115fac46655102eff21a1291b]" + } + } + ] +} diff --git a/BIPs/2024-W44/BIP-702-Claim-COW-Rewards.report.txt b/BIPs/2024-W44/BIP-702-Claim-COW-Rewards.report.txt new file mode 100644 index 000000000..2bedf7659 --- /dev/null +++ b/BIPs/2024-W44/BIP-702-Claim-COW-Rewards.report.txt @@ -0,0 +1,32 @@ +FILENAME: `BIPs/2024-W44/BIP-702-Claim-COW-Rewards.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `f223cc3e002ccfffc80e2a560e7518ff8db7a45f` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0496fca1-9aee-44aa-b431-0a3b6cd71e40) + +``` ++---------+-----------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-----------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+------------+----------+ +| claim | 0x64646f112FfD6F1B7533359CFaAF7998F23C8c40 (cow/airdrop_merkle_distributor) | 0 | { | BIP-702 | N/A | +| | | | "index": [ | | | +| | | | "76" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:644468387507556000000000, 18 decimals:644468.387507556, 6 decimals: 644468387507556000" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x094ad36ae546eed2259ef0fece65a547da0f0637fd0f4f2eada3f1d0683f38ec", | | | +| | | | "0xd384949604f27f23a72c2f4a8b9685fbd5c7c73dff91a090dfe1b9f97d400901", | | | +| | | | "0x08bbea027cafe80e4980174a6c737ea14a1f2112fc729dab0edbfc5c5f1db49a", | | | +| | | | "0xad831294f8fdafb520d6d5bd541cf4dcda1a70296984bc3724ff6b4ced47031e", | | | +| | | | "0x089e0540e28339fdc77e4fe34924a44c9118c931d327d6c93b50a855fcc0728b", | | | +| | | | "0xec1729dc9432b2d6cf47739e615ea9047b354edd301f3ccdf9f99a4a76fc036e", | | | +| | | | "0x39931438cd8162fd4c05032bbd0e02ea5b30be104554d8739d6af78e792935e5", | | | +| | | | "0xe9067ae76891425e5e33c2a12d6a9cd062d5e2ab763ddd1283fba657d32bc623", | | | +| | | | "0x9bf5615249d7ef7fe82e7039d7dc3c2a8c105cc491dca112246b549b24ad28d9", | | | +| | | | "0xd84e4549adcf49890f091546b3f873d102368cb115fac46655102eff21a1291b" | | | +| | | | ] | | | +| | | | } | | | ++---------+-----------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.json b/BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.json new file mode 100644 index 000000000..1432d8726 --- /dev/null +++ b/BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728918043710, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x68d04a69a8afeb2dc3bcf939247af6673ec4a198e8bbe522eece42e378aca29e" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "amount": "2784420000000000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C", + "value": "28720000000" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.report.txt b/BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.report.txt new file mode 100644 index 000000000..ba50d3ea7 --- /dev/null +++ b/BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W44/[BIP-103] Q3_karpatkey_fees.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b0c083971c786888e1e7515b806aab779039bc0d` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/58d0067b-6c64-46d3-a501-84c7d50a2f11) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+---------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+---------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 2784.42 (RAW: 2784420000000000000000) | BIP-103 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/karpatkey_payments:0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C | 28720.0 (RAW: 28720000000) | BIP-103 | 1 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+---------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-703] Kill aUSDC-sDAI gauge [Gnosis].json b/BIPs/2024-W44/[BIP-703] Kill aUSDC-sDAI gauge [Gnosis].json new file mode 100644 index 000000000..8a04c62ce --- /dev/null +++ b/BIPs/2024-W44/[BIP-703] Kill aUSDC-sDAI gauge [Gnosis].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727291317533, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x70e928eb2b76a00dc1ea7a33985634b305b19055ced1822ecc49f53dfa6586ac" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-703] Kill aUSDC-sDAI gauge [Gnosis].report.txt b/BIPs/2024-W44/[BIP-703] Kill aUSDC-sDAI gauge [Gnosis].report.txt new file mode 100644 index 000000000..6a01dec65 --- /dev/null +++ b/BIPs/2024-W44/[BIP-703] Kill aUSDC-sDAI gauge [Gnosis].report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W44/[BIP-703] Kill aUSDC-sDAI gauge [Gnosis].json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `39965d0d302f2872c57899d1a4a3e37404da83cc` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c9fd4531-5d97-473a-8770-e5670e80e8f5) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc6710f32c9524b4C6736fEae17BE7c88bB8fF87c (root_gauges/ECLP-sDAI-AUSDC-gnosis-root-c671) | killGauge() | | BIP-703 | 0 | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.json b/BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.json new file mode 100644 index 000000000..fa085727a --- /dev/null +++ b/BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727295366956, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x349216048ea7a3c34d5759429c91b9a357d800c9f846ed8f25869c35f51bff45" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "value": "7800000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597", + "amount": "46113000000000000000000" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.report.txt b/BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.report.txt new file mode 100644 index 000000000..cd1d7bb65 --- /dev/null +++ b/BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W44/[BIP-705] Fund Balancer Grants Q4 2024.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `ae727c5d69a2f2e9dfcc0296f98cf0af0626db89` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9b6d6d85-d804-4927-b47d-dd74fcbe7b08) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 7800.0 (RAW: 7800000000) | BIP-705 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/grants_treasury:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | 46113.0 (RAW: 46113000000000000000000) | BIP-705 | 1 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-706] Kill GHO-USDC Wide Range ECLP Gauge.json b/BIPs/2024-W44/[BIP-706] Kill GHO-USDC Wide Range ECLP Gauge.json new file mode 100644 index 000000000..ee753aaa8 --- /dev/null +++ b/BIPs/2024-W44/[BIP-706] Kill GHO-USDC Wide Range ECLP Gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727311530898, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xfb271fd94f9a00a2afef0428d77b3fe98d54e7cf1062852bd8ad9d08e4b19e53" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-706] Kill GHO-USDC Wide Range ECLP Gauge.report.txt b/BIPs/2024-W44/[BIP-706] Kill GHO-USDC Wide Range ECLP Gauge.report.txt new file mode 100644 index 000000000..690d775d8 --- /dev/null +++ b/BIPs/2024-W44/[BIP-706] Kill GHO-USDC Wide Range ECLP Gauge.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W44/[BIP-706] Kill GHO-USDC Wide Range ECLP Gauge.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `267ea3ec4c31379682a03ff79a2612647a796d0b` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/58c04be5-aadc-442e-9a61-150dd48ed21f) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE (gauges/ECLP-GHO-USDC-gauge-80ae) | killGauge() | | BIP-706 | 0 | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-708] Transfer stkAAVE to karpatkey-managed SAFE and Delegate Voting Power.json b/BIPs/2024-W44/[BIP-708] Transfer stkAAVE to karpatkey-managed SAFE and Delegate Voting Power.json new file mode 100644 index 000000000..eacae1f75 --- /dev/null +++ b/BIPs/2024-W44/[BIP-708] Transfer stkAAVE to karpatkey-managed SAFE and Delegate Voting Power.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727363271941, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x485b45dd655ec9c9fc704d3801721adc8a478143984118bf4470504814e51dea" + }, + "transactions": [ + { + "to": "0x4da27a545c0c5B758a6BA100e3a049001de870f5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "amount": "1499850055174218445588" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-708] Transfer stkAAVE to karpatkey-managed SAFE and Delegate Voting Power.report.txt b/BIPs/2024-W44/[BIP-708] Transfer stkAAVE to karpatkey-managed SAFE and Delegate Voting Power.report.txt new file mode 100644 index 000000000..eb3cba7a7 --- /dev/null +++ b/BIPs/2024-W44/[BIP-708] Transfer stkAAVE to karpatkey-managed SAFE and Delegate Voting Power.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W44/[BIP-708] Transfer stkAAVE to karpatkey-managed SAFE and Delegate Voting Power.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `0449c395eb2ac2233182f730f26214bf1d3e1907` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/837e43f5-df45-41cc-bac9-277db4107892) + +``` ++----------+----------------------------------------------------+----------------------------------------------------------------+--------------------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+----------------------------------------------------+----------------------------------------------------------------+--------------------------------------------------+---------+----------+ +| transfer | stkAAVE:0x4da27a545c0c5B758a6BA100e3a049001de870f5 | multisigs/karpatkey:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 | 1499.8500551742184 (RAW: 1499850055174218445588) | BIP-708 | 0 | ++----------+----------------------------------------------------+----------------------------------------------------------------+--------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-714] sgyd_permissions.json b/BIPs/2024-W44/[BIP-714] sgyd_permissions.json new file mode 100644 index 000000000..a4ff4ee37 --- /dev/null +++ b/BIPs/2024-W44/[BIP-714] sgyd_permissions.json @@ -0,0 +1,1185 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727449990584, + "meta": { + "name": "Update permissions of \"MANAGER\" role", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89" + }, + "transactions": [ + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "selector": "0x6e553f65", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "selector": "0xba087652", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "selector": "0xb460af94", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816", + "selector": "0x6e553f65", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816", + "selector": "0xba087652", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xC36442b4a4522E871399CD717aBDD847Ab11FE88" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xC36442b4a4522E871399CD717aBDD847Ab11FE88", + "selector": "0x12210e8a", + "options": "1" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x569d3489", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"18\",\"0x00000000000000000000000000000000000000000000000000000000000000c9\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"4\",\"0\",\"2\",\"0x\"],[\"4\",\"0\",\"2\",\"0x\"],[\"4\",\"1\",\"15\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"5\",\"0\",\"2\",\"0x\"],[\"5\",\"0\",\"2\",\"0x\"],[\"5\",\"1\",\"15\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"6\",\"1\",\"16\",\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[\"7\",\"1\",\"16\",\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[\"7\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"7\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[\"18\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"18\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"18\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"18\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"18\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"18\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"19\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"19\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"19\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"19\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"19\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"19\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]]", + "options": "2" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x5a66c223", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"2\",\"0\",\"2\",\"0x\"],[\"2\",\"0\",\"2\",\"0x\"],[\"2\",\"1\",\"15\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"3\",\"0\",\"2\",\"0x\"],[\"3\",\"0\",\"2\",\"0x\"],[\"3\",\"1\",\"15\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"4\",\"1\",\"16\",\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"],[\"4\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[\"5\",\"1\",\"16\",\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"],[\"5\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"5\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"],[\"16\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"16\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"16\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"16\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"16\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"16\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"17\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"17\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"17\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]]", + "options": "2" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xBA12222222228d8Ba445958a75a0704d566BF2C8" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "selector": "0x52bbbe29", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"0\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"2\",\"1\",\"15\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"2\",\"1\",\"15\",\"0x\"],[\"2\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"16\",\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"3\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"3\",\"1\",\"0\",\"0x\"],[\"3\",\"2\",\"0\",\"0x\"],[\"4\",\"1\",\"16\",\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"2\",\"0\",\"0x\"],[\"5\",\"1\",\"16\",\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"2\",\"0\",\"0x\"],[\"6\",\"1\",\"16\",\"0x0b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"6\",\"1\",\"16\",\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"2\",\"0\",\"0x\"],[\"7\",\"1\",\"16\",\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"],[\"7\",\"1\",\"0\",\"0x\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"7\",\"1\",\"0\",\"0x\"],[\"7\",\"2\",\"0\",\"0x\"],[\"8\",\"1\",\"16\",\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"],[\"8\",\"1\",\"0\",\"0x\"],[\"8\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"8\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"8\",\"1\",\"0\",\"0x\"],[\"8\",\"2\",\"0\",\"0x\"],[\"9\",\"1\",\"16\",\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"],[\"9\",\"1\",\"0\",\"0x\"],[\"9\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"9\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"9\",\"1\",\"0\",\"0x\"],[\"9\",\"2\",\"0\",\"0x\"],[\"10\",\"1\",\"16\",\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"],[\"10\",\"1\",\"0\",\"0x\"],[\"10\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"10\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"10\",\"1\",\"0\",\"0x\"],[\"10\",\"2\",\"0\",\"0x\"],[\"11\",\"1\",\"16\",\"0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019\"],[\"11\",\"1\",\"0\",\"0x\"],[\"11\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"11\",\"1\",\"16\",\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"],[\"11\",\"1\",\"0\",\"0x\"],[\"11\",\"2\",\"0\",\"0x\"],[\"12\",\"1\",\"16\",\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"],[\"12\",\"1\",\"0\",\"0x\"],[\"12\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"12\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"12\",\"1\",\"0\",\"0x\"],[\"12\",\"2\",\"0\",\"0x\"],[\"13\",\"1\",\"16\",\"0xefaa1604e82e1b3af8430b90192c1b9e8197e377000200000000000000000021\"],[\"13\",\"1\",\"0\",\"0x\"],[\"13\",\"1\",\"16\",\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"],[\"13\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"13\",\"1\",\"0\",\"0x\"],[\"13\",\"2\",\"0\",\"0x\"],[\"14\",\"1\",\"16\",\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"],[\"14\",\"1\",\"0\",\"0x\"],[\"14\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"14\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"14\",\"1\",\"0\",\"0x\"],[\"14\",\"2\",\"0\",\"0x\"],[\"15\",\"1\",\"16\",\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"],[\"15\",\"1\",\"0\",\"0x\"],[\"15\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"15\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"15\",\"1\",\"0\",\"0x\"],[\"15\",\"2\",\"0\",\"0x\"],[\"16\",\"1\",\"16\",\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"],[\"16\",\"1\",\"0\",\"0x\"],[\"16\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"16\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"16\",\"1\",\"0\",\"0x\"],[\"16\",\"2\",\"0\",\"0x\"],[\"17\",\"1\",\"16\",\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"],[\"17\",\"1\",\"0\",\"0x\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"],[\"17\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"17\",\"1\",\"0\",\"0x\"],[\"17\",\"2\",\"0\",\"0x\"],[\"18\",\"1\",\"16\",\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"],[\"18\",\"1\",\"0\",\"0x\"],[\"18\",\"1\",\"16\",\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"],[\"18\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"18\",\"1\",\"0\",\"0x\"],[\"18\",\"2\",\"0\",\"0x\"],[\"19\",\"1\",\"16\",\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"],[\"19\",\"1\",\"0\",\"0x\"],[\"19\",\"1\",\"16\",\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"],[\"19\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"19\",\"1\",\"0\",\"0x\"],[\"19\",\"2\",\"0\",\"0x\"],[\"20\",\"1\",\"16\",\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"],[\"20\",\"1\",\"0\",\"0x\"],[\"20\",\"1\",\"16\",\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"],[\"20\",\"1\",\"16\",\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"],[\"20\",\"1\",\"0\",\"0x\"],[\"20\",\"2\",\"0\",\"0x\"],[\"21\",\"1\",\"16\",\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"],[\"21\",\"1\",\"0\",\"0x\"],[\"21\",\"1\",\"16\",\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"],[\"21\",\"1\",\"16\",\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"],[\"21\",\"1\",\"0\",\"0x\"],[\"21\",\"2\",\"0\",\"0x\"]]", + "options": "0" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-714] sgyd_permissions.txt b/BIPs/2024-W44/[BIP-714] sgyd_permissions.txt new file mode 100644 index 000000000..43fd4a04c --- /dev/null +++ b/BIPs/2024-W44/[BIP-714] sgyd_permissions.txt @@ -0,0 +1,1574 @@ +FILENAME: `BIPs/2024-W40/sgyd_permissions.json` +MULTISIG: `multisigs/karpatkey (mainnet:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `N/A` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `scopeFunction`, positional arguments with type(s) `str,address,str,(str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str),int` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `scopeFunction`: ['scopeFunction(bytes32,address,bytes4,(uint8,uint8,uint8,bytes)[],uint8)']\nFunction invocation failed due to no matching argument types."))` + +``` ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (tokens/GHO)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (tokens/GHO)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x6e553f65" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xba087652" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x83F20F44975D03b1b09e64809B757c47f942BEeA (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xb460af94" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x6e553f65" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xeA50f402653c41cAdbaFD1f788341dB7B7F37816 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xba087652" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6B175474E89094C44Da98b954EedeAC495271d0F (tokens/DAI)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000373238337bfe1146fb49989fc222523f83081ddb\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c3d688b66703497daa19211eedff47f25384cdc3\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000087870bca3f3fd6335c3f4ce8392d69350b4fa4e2\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xC36442b4a4522E871399CD717aBDD847Ab11FE88 (uniswap/NonfungiblePositionManager)" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xC36442b4a4522E871399CD717aBDD847Ab11FE88 (uniswap/NonfungiblePositionManager)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x12210e8a" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xdAC17F958D2ee523a2206206994597C13D831ec7 (tokens/USDT)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x569d3489" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"18\"", | | | +| | | | "\"0x00000000000000000000000000000000000000000000000000000000000000c9\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5a66c223" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004da27a545c0c5b758a6ba100e3a049001de870f5\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000048c3399719b582dd63eb5aadf12a40b4c3f52fa2\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (karpatkey/roles_v2) | 0 | { | N/A | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x52bbbe29" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"2\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"3\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0b09dea16768f0799065c475be02919503cb2a3500020000000000000000001a\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"8\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"9\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"10\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x96646936b91d6b9d7d0c47c496afbf3d6ec7b6f8000200000000000000000019\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"11\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"12\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xefaa1604e82e1b3af8430b90192c1b9e8197e377000200000000000000000021\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"13\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x2191df821c198600499aa1f0031b1a7514d7a7d9000200000000000000000639\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"14\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"15\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"16\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"17\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000083f20f44975d03b1b09e64809b757c47f942beea\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"18\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"19\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e07f9d810a48ab5c3c914ba3ca53af14e4491e8a\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"21\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-714] transferUSDT.json b/BIPs/2024-W44/[BIP-714] transferUSDT.json new file mode 100644 index 000000000..418b5195e --- /dev/null +++ b/BIPs/2024-W44/[BIP-714] transferUSDT.json @@ -0,0 +1,38 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727982808385, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xfa84f69523b50bb44483a9493a6057126527fc49a86ae4cc6e51adb246a24b6f" + }, + "transactions": [ + { + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "_value": "250000000000" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-714] transferUSDT.txt b/BIPs/2024-W44/[BIP-714] transferUSDT.txt new file mode 100644 index 000000000..12a1507dd --- /dev/null +++ b/BIPs/2024-W44/[BIP-714] transferUSDT.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W40/transferUSDT.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `N/A` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/81002d3e-7cfe-4a04-9f6e-4ecf2b5d9563) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------+------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------+------------------------------+-----+----------+ +| transfer | USDT:0xdAC17F958D2ee523a2206206994597C13D831ec7 | multisigs/karpatkey:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89 | 250000.0 (RAW: 250000000000) | N/A | 0 | ++----------+-------------------------------------------------+----------------------------------------------------------------+------------------------------+-----+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json b/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json new file mode 100644 index 000000000..8437643d7 --- /dev/null +++ b/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729172375955, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x9d03be58d2f6ccf1a24853b4ddd28b4afaec0952562967379e8b5c5e48e7ac5f" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE03b4CB39C54EedFe4E46677511989866A88dbE3", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc028EFDa059e040b42998c96FF7fe0b126FA87fA", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf", + "data": "0xab8f0945" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.report.txt b/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.report.txt new file mode 100644 index 000000000..8c44bbba5 --- /dev/null +++ b/BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W44/[BIP-722] Kill Stale Gyroscope ECLP Gauges.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `8b2fb471e3d8123279143462dbe965b02517bd5e` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/969e8e75-5f7f-4be0-bbe5-df109949719f) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xE03b4CB39C54EedFe4E46677511989866A88dbE3 (root_gauges/ECLP-GHO-USDe-arbitrum-root-e03b) | killGauge() | | BIP-722 | 0 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc028EFDa059e040b42998c96FF7fe0b126FA87fA (root_gauges/ECLP-sFRAX-FRAX-arbitrum-root-c028) | killGauge() | | BIP-722 | 1 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x9434c3955920A1FeD5e28ebCCEF80dCd54DEA180 (root_gauges/ECLP-GHO-GYD-arbitrum-root-9434) | killGauge() | | BIP-722 | 2 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x9dE7f79Ef7f28447E90051b60aBC5c2b1AdFE1cf (root_gauges/GDSRH-optimism-root-9de7) | killGauge() | | BIP-722 | 3 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1 (root_gauges/ECLP-sDAI-USDC-rh-base-root-39a6) | killGauge() | | BIP-722 | 4 | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-726] Adopt SEAL Whitehat Safe Harbor Agreement.json b/BIPs/2024-W44/[BIP-726] Adopt SEAL Whitehat Safe Harbor Agreement.json new file mode 100644 index 000000000..cdbef6ddb --- /dev/null +++ b/BIPs/2024-W44/[BIP-726] Adopt SEAL Whitehat Safe Harbor Agreement.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729225805956, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x4a6bbf44563a05b2da6cdb89c41788057421c21aa58e0724ef365c2f82dc7ae0" + }, + "transactions": [ + { + "to": "0x8f72fcf695523A6FC7DD97EafDd7A083c386b7b6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "string", + "name": "protocolName", + "type": "string" + }, + { + "components": [ + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "contact", + "type": "string" + } + ], + "internalType": "struct Contact[]", + "name": "contactDetails", + "type": "tuple[]" + }, + { + "components": [ + { + "internalType": "address", + "name": "assetRecoveryAddress", + "type": "address" + }, + { + "components": [ + { + "internalType": "address", + "name": "accountAddress", + "type": "address" + }, + { + "internalType": "enum ChildContractScope", + "name": "childContractScope", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "internalType": "struct Account[]", + "name": "accounts", + "type": "tuple[]" + }, + { + "internalType": "uint256", + "name": "id", + "type": "uint256" + } + ], + "internalType": "struct Chain[]", + "name": "chains", + "type": "tuple[]" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "bountyPercentage", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bountyCapUSD", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "retainable", + "type": "bool" + }, + { + "internalType": "enum IdentityRequirements", + "name": "identity", + "type": "uint8" + }, + { + "internalType": "string", + "name": "diligenceRequirements", + "type": "string" + } + ], + "internalType": "struct BountyTerms", + "name": "bountyTerms", + "type": "tuple" + }, + { + "internalType": "string", + "name": "agreementURI", + "type": "string" + } + ], + "internalType": "struct AgreementDetailsV1", + "name": "details", + "type": "tuple" + } + ], + "name": "adoptSafeHarbor", + "payable": false + }, + "contractInputsValues": { + "details": "[\"Balancer\",[[\"Telegram: Mikeisballin\",\"Mike B - Strategy\"]],[[\"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],1],[\"0xaF23DC5983230E9eEAf93280e312e57539D098D0\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],42161],[\"0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],43114],[\"0xC40DCFB13651e64C8551007aa57F9260827B6462\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],8453],[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],252],[\"0x2a5AEcE0bb9EfFD7608213AE1745873385515c18\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],100],[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],34443],[\"0x043f9687842771b3dF8852c1E9801DCAeED3f6bc\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],10],[\"0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],137],[\"0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],1101]],[10,1000000,false,2,\"KYC & Global Sanction Verification. Balancer requires all eligible whitehats to undergo Know Your Customer (KYC) verification and be screened against global sanctions lists, including OFAC, UK, and EU regulations. This process ensures that all bounty recipients are compliant with legal and regulatory standards before qualifying for payment.\"],\"https://bafybeiakxvysdvsvupqcibkpifugzwcnllzt2udjk3l4yhcix7dqxxqyp4.ipfs.w3s.link/agreement.pdf\"]" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-726] Adopt SEAL Whitehat Safe Harbor Agreement.report.txt b/BIPs/2024-W44/[BIP-726] Adopt SEAL Whitehat Safe Harbor Agreement.report.txt new file mode 100644 index 000000000..d79f15f0a --- /dev/null +++ b/BIPs/2024-W44/[BIP-726] Adopt SEAL Whitehat Safe Harbor Agreement.report.txt @@ -0,0 +1,78 @@ +FILENAME: `BIPs/2024-W44/[BIP-726] Adopt SEAL Whitehat Safe Harbor Agreement.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `490f749eba0d5d8d98d7076b9046d6e0cebbc419` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `adoptSafeHarbor`, positional arguments with type(s) `str` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `adoptSafeHarbor`: ['adoptSafeHarbor((string,(string,string)[],(address,(address,uint8,bytes)[],uint256)[],(uint256,uint256,bool,uint8,string),string))']\nFunction invocation failed due to no matching argument types."))` + +``` ++-----------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| adoptSafeHarbor | 0x8f72fcf695523A6FC7DD97EafDd7A083c386b7b6 (safe_harbor/registry) | 0 | { | BIP-726 | N/A | +| | | | "details": [ | | | +| | | | "\"Balancer\"", | | | +| | | | "[[\"Telegram:Mikeisballin\"", | | | +| | | | "\"MikeB-Strategy\"]]", | | | +| | | | "[[\"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "1]", | | | +| | | | "[\"0xaF23DC5983230E9eEAf93280e312e57539D098D0\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "42161]", | | | +| | | | "[\"0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "43114]", | | | +| | | | "[\"0xC40DCFB13651e64C8551007aa57F9260827B6462\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "8453]", | | | +| | | | "[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "252]", | | | +| | | | "[\"0x2a5AEcE0bb9EfFD7608213AE1745873385515c18\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "100]", | | | +| | | | "[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "34443]", | | | +| | | | "[\"0x043f9687842771b3dF8852c1E9801DCAeED3f6bc\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "10]", | | | +| | | | "[\"0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "137]", | | | +| | | | "[\"0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "1101]]", | | | +| | | | "[10", | | | +| | | | "1000000", | | | +| | | | "false", | | | +| | | | "2", | | | +| | | | "\"KYC&GlobalSanctionVerification.BalancerrequiresalleligiblewhitehatstoundergoKnowYourCustomer(KYC)verificationandbescreenedagainstglobalsanctionslists", | | | +| | | | "includingOFAC", | | | +| | | | "UK", | | | +| | | | "andEUregulations.Thisprocessensuresthatallbountyrecipientsarecompliantwithlegalandregulatorystandardsbeforequalifyingforpayment.\"]", | | | +| | | | "\"https://bafybeiakxvysdvsvupqcibkpifugzwcnllzt2udjk3l4yhcix7dqxxqyp4.ipfs.w3s.link/agreement.pdf\"" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W44/[BIP-727] Enable wstETH-weETHs Gauge [Ethereum].json b/BIPs/2024-W44/[BIP-727] Enable wstETH-weETHs Gauge [Ethereum].json new file mode 100644 index 000000000..90def8f49 --- /dev/null +++ b/BIPs/2024-W44/[BIP-727] Enable wstETH-weETHs Gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729771719104, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x51eda72168a664378063db4bae427d8bf9da0ff39c8ecb77c8359d8db5fcae55" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0Bb8B971AaF99eddfddE2e71736eBEBe8CC7769b", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W44/[BIP-727] Enable wstETH-weETHs Gauge [Ethereum].report.txt b/BIPs/2024-W44/[BIP-727] Enable wstETH-weETHs Gauge [Ethereum].report.txt new file mode 100644 index 000000000..3f0975597 --- /dev/null +++ b/BIPs/2024-W44/[BIP-727] Enable wstETH-weETHs Gauge [Ethereum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W44/[BIP-727] Enable wstETH-weETHs Gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9dd7309a3ebbe40413e34d892b5c74dc599e6025` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/bab7c143-5f9a-49e3-aa5d-5288bfd97413) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2ab8df7429f4fce60eb2c1233f0326767765e2f30000000000000000000006da | weETHs/wstETH | root: 0x0Bb8B971AaF99eddfddE2e71736eBEBe8CC7769b | 0x2AB8Df7429f4fCe60eb2C1233f0326767765e2F3: weETHs/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-727 | 0 | +| | pool_address: 0x2AB8Df7429f4fCe60eb2C1233f0326767765e2F3 | fee: 0.04 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: 500 | style: mainnet | 0x917ceE801a67f933F2e6b33fC0cD1ED2d5909D88: weETHs | 0x64C04442C4Bc85C49782525AbE92c8a6fB714b50 | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W45/BIP-728.json b/BIPs/2024-W45/BIP-728.json new file mode 100644 index 000000000..77a2a318c --- /dev/null +++ b/BIPs/2024-W45/BIP-728.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730271852430, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf697535848B535900c76f70F1e36EC3985D27862", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W45/BIP-728.report.txt b/BIPs/2024-W45/BIP-728.report.txt new file mode 100644 index 000000000..35ec665a6 --- /dev/null +++ b/BIPs/2024-W45/BIP-728.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W45/BIP-728.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `23cc82a44b93b73f1e66a48106263227a32ad4f0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c50f568a-8d6a-4b79-b4d9-849efc616c5f) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x1d13531bf6344c102280ce4c458781fbf14dad140000000000000000000006df | tETH/wstETH | root: 0xf697535848B535900c76f70F1e36EC3985D27862 | 0x1D13531bf6344c102280CE4c458781FBF14Dad14: tETH/wstETH | 0x0000000000000000000000000000000000000000 | -- | BIP-728 | 0 | +| | pool_address: 0x1D13531bf6344c102280CE4c458781FBF14Dad14 | fee: 0.05 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 200 | style: mainnet | 0xD11c452fc99cF405034ee446803b6F6c1F6d5ED8: tETH | 0x7C53f86d9a6B01821F916802A7606E9255DfE4e2 | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W45/BIP-729.json b/BIPs/2024-W45/BIP-729.json new file mode 100644 index 000000000..06b343669 --- /dev/null +++ b/BIPs/2024-W45/BIP-729.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730377931090, + "meta": { + "name": "Transactions Batch", + "description": "Enable WBTC/pumpBTC Gauge [Ethereum]", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2e50e8c818db3ddbe7957826cdba4ae1a151965d257ef2b2af806f7cc06b744e" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xDFaD195F91e1591ae8Eb4c1c7183185CeF58864D", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W45/BIP-729.report.txt b/BIPs/2024-W45/BIP-729.report.txt new file mode 100644 index 000000000..0e129e574 --- /dev/null +++ b/BIPs/2024-W45/BIP-729.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W45/BIP-729.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7e3739631572ab1b51902f0e87ad7ad3ec5cebed` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/830ebdd7-4c34-4ee7-8e53-6c2b1b67a893) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2238ab6c8c58473a5e81b86ec352322fb3f5edd80000000000000000000006de | pumpBTC/wBTC | root: 0xDFaD195F91e1591ae8Eb4c1c7183185CeF58864D | 0x2238aB6c8c58473a5e81b86ec352322fB3f5Edd8: pumpBTC/wBTC | 0x0000000000000000000000000000000000000000 | -- | BIP-729 | 0 | +| | pool_address: 0x2238aB6c8c58473a5e81b86ec352322fB3f5Edd8 | fee: 0.02 | side: None | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599: WBTC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: mainnet | 0xF469fBD2abcd6B9de8E169d128226C0Fc90a012e: pumpBTC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W45/BIP-730.json b/BIPs/2024-W45/BIP-730.json new file mode 100644 index 000000000..f46f1dea2 --- /dev/null +++ b/BIPs/2024-W45/BIP-730.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730309547524, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x655A2B240151b4fAb06dfb2B6329eF72647F89dd", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF3E9A97e5fEddf961A3d431627561bbFc7cFb6cf", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W45/BIP-730.report.txt b/BIPs/2024-W45/BIP-730.report.txt new file mode 100644 index 000000000..7ddf7be4e --- /dev/null +++ b/BIPs/2024-W45/BIP-730.report.txt @@ -0,0 +1,27 @@ +FILENAME: `BIPs/2024-W45/BIP-730.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `12485dee9c551c119a8d15820811eaab1d91a8e0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/beaa0981-cf68-45e2-a5ec-14602efc1c6a) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xc683955059e98350de4e5dc1c75971bd640829bb0002000000000000000006e1 | ECLP-cbETH-wstETH | root: 0x655A2B240151b4fAb06dfb2B6329eF72647F89dd | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | BIP-730 | 0 | +| | pool_address: 0xC683955059e98350DE4e5Dc1C75971bD640829Bb | fee: 0.03 | side: None | 0xBe9895146f7AF43049ca1c1AE358B0541Ea49704: cbETH | 0x7311E4BB8a72e7B300c5B8BDE4de6CdaA822a5b1 | safe | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x9d73398c54be236da189d937eace8e6dccad36160002000000000000000006e3 | ECLP-cbBTC-WBTC | root: 0xF3E9A97e5fEddf961A3d431627561bbFc7cFb6cf | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599: WBTC | 0x0000000000000000000000000000000000000000 | -- | BIP-730 | 1 | +| | pool_address: 0x9D73398C54be236da189d937EACE8E6dccaD3616 | fee: 0.02 | side: None | 0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf: cbBTC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W45/BIP-731.json b/BIPs/2024-W45/BIP-731.json new file mode 100644 index 000000000..883f3f701 --- /dev/null +++ b/BIPs/2024-W45/BIP-731.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730308452808, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3143F29F2d541B03D8526c265a54fBC727DA6565", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xe8BED31b0245Cd174a182D18CD0DE0355A77151F", + "gaugeType": "Base" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xE01347229d681C69f459176A042268Cf981DFaa4", + "gaugeType": "Base" + } + } + ] +} diff --git a/BIPs/2024-W45/BIP-731.report.txt b/BIPs/2024-W45/BIP-731.report.txt new file mode 100644 index 000000000..699613f71 --- /dev/null +++ b/BIPs/2024-W45/BIP-731.report.txt @@ -0,0 +1,37 @@ +FILENAME: `BIPs/2024-W45/BIP-731.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9ef529c571829563cfd1f1d6f79fb4384f0aa62d` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/77fa3946-4bde-424d-86a4-705c245ebfc6) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x54d86e177cdc664b5f9b17eb5fd6a76fa529e466000200000000000000000199 | ECLP-cbETH-wstETH | root: 0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC | 0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22: cbETH | 0x3786a6CAAB433f5dfE56503207DF31DF87C5b5C1 | safe | BIP-731 | 0 | +| | pool_address: 0x54D86E177cdC664B5F9B17eB5fd6A76Fa529e466 | fee: 0.01 | side: 0x0Cb9e522cA688C88af547A119279764F00F677C7 | 0xc1CBa3fCea344f92D9239c08C0568f6F2F0ee452: wstETH | 0x3b3dd5f913443bb5E70389F29c83F7DCA460CAe1 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xbbb4966335677ea24f7b86dc19a423412390e1fb00020000000000000000019a | ECLP-WETH-USDC | root: 0x3143F29F2d541B03D8526c265a54fBC727DA6565 | 0x4200000000000000000000000000000000000006: WETH | 0x5E10C2a55fB6E4C14c50C7f6B82bb28A813a4748 | safe | BIP-731 | 1 | +| | pool_address: 0xbbb4966335677Ea24F7B86DC19a423412390e1fb | fee: 0.3 | side: 0x5Ed3Cd1d293CC96E15216F90D83AeEB00340E2f1 | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x1529f6af353e180867f257820843425b49b1b47800020000000000000000019b | ECLP-WETH-USDC | root: 0xe8BED31b0245Cd174a182D18CD0DE0355A77151F | 0x4200000000000000000000000000000000000006: WETH | 0x3e89cc86307aF44A77EB29d0c4163d515D348313 | safe | BIP-731 | 2 | +| | pool_address: 0x1529f6Af353E180867F257820843425B49B1b478 | fee: 0.3 | side: 0x0AC2AB71E19fB0929da93dFceC8b0389377a5a25 | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x4c42b5057a8663e2b1ac21685d1502c937a0381700020000000000000000019c | ECLP-WETH-USDC | root: 0xE01347229d681C69f459176A042268Cf981DFaa4 | 0x4200000000000000000000000000000000000006: WETH | 0x3fA516CEB5d068b60FDC0c68a3B793Fc43B88f15 | safe | BIP-731 | 3 | +| | pool_address: 0x4c42B5057A8663E2b1ac21685D1502c937a03817 | fee: 0.3 | side: 0xEdf537FFbc7C5ED4042AEdE5c0d2E14a41FdC121 | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: USDC | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json b/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json new file mode 100644 index 000000000..c2c41afb5 --- /dev/null +++ b/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json @@ -0,0 +1,2429 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1729535447326, + "meta": { + "name": "Update permissions of \"MANAGER\" role", + "description": "", + "txBuilderVersion": "1.16.2", + "createdFromSafeAddress": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89" + }, + "transactions": [ + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xaf204776c7245bF4147c2612BF6e5972Ee483701" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xaf204776c7245bF4147c2612BF6e5972Ee483701", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000d499b51fcfc66bd31248ef4b28d656d67e591a94\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x569d3489", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"18\",\"0x00000000000000000000000000000000000000000000000000000000000000c9\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"1\",\"3\",\"5\",\"0x\"],[\"4\",\"0\",\"2\",\"0x\"],[\"4\",\"1\",\"16\",\"0x000000000000000000000000af204776c7245bf4147c2612bf6e5972ee483701\"],[\"4\",\"1\",\"15\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"4\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"16\",\"0x000000000000000000000000af204776c7245bf4147c2612bf6e5972ee483701\"],[\"5\",\"0\",\"2\",\"0x\"],[\"5\",\"1\",\"15\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"5\",\"1\",\"0\",\"0x\"],[\"6\",\"0\",\"2\",\"0x\"],[\"6\",\"0\",\"2\",\"0x\"],[\"6\",\"1\",\"15\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"6\",\"1\",\"0\",\"0x\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000e91d153e0b41518a2ce8dd3d7944fa863463a97d\"],[\"7\",\"1\",\"16\",\"0x0000000000000000000000004ecaba5870353805a9f068101a40e0f32ed605c6\"],[\"7\",\"1\",\"16\",\"0x000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a83\"],[\"20\",\"1\",\"16\",\"0x000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\"],[\"20\",\"1\",\"16\",\"0x0000000000000000000000004ecaba5870353805a9f068101a40e0f32ed605c6\"],[\"20\",\"1\",\"16\",\"0x000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a83\"],[\"31\",\"1\",\"16\",\"0x0000000000000000000000006a023ccd1ff6f2045c3309768ead9e68f978f6e1\"],[\"31\",\"1\",\"16\",\"0x0000000000000000000000009c58bacc331c9aa871afd802db6379a98e80cedb\"],[\"32\",\"1\",\"16\",\"0x0000000000000000000000006a023ccd1ff6f2045c3309768ead9e68f978f6e1\"],[\"32\",\"1\",\"16\",\"0x0000000000000000000000009c58bacc331c9aa871afd802db6379a98e80cedb\"]]", + "options": "2" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB", + "selector": "0x5a66c223", + "options": "2" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d", + "selector": "0xd0e30db0", + "options": "1" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000d499b51fcfc66bd31248ef4b28d656d67e591a94\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x4ECaBa5870353805a9F068101A40E0f32ed605C6" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x4ECaBa5870353805a9F068101A40E0f32ed605C6", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94", + "selector": "0xf716a92b", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "1" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94", + "selector": "0xd1ff8241", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94", + "selector": "0x6e553f65", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xD499b51fcFc66bd31248ef4b28d656d67E591A94", + "selector": "0x7bde82f2", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x2e2d2984", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x1a7ff553", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x201b9eb5", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x066055e0", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x8ceab9aa", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD", + "selector": "0x8697d2c2", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x2e2d2984", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x1a7ff553", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x201b9eb5", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x066055e0", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x8ceab9aa", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D", + "selector": "0x8697d2c2", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x2e2d2984", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x1a7ff553", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x201b9eb5", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x066055e0", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x8ceab9aa", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9eeB6be79899CfE45018866A2113c6b77fa96F35", + "selector": "0x8697d2c2", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x2e2d2984", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x1a7ff553", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x201b9eb5", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x066055e0", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x8ceab9aa", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "allowFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x3CB4692177525dB38D983DA0445d4EB25C3826dE", + "selector": "0x8697d2c2", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x7301CFA0e1756B71869E93d4e4Dca5c7d0eb0AA6" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x7301CFA0e1756B71869E93d4e4Dca5c7d0eb0AA6", + "selector": "0x5d1e9307", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"15\",\"0x\"]]", + "options": "1" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + } + ], + "name": "scopeTarget", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb", + "selector": "0x095ea7b3", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"0\",\"2\",\"0x\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"],[\"1\",\"1\",\"16\",\"0x0000000000000000000000003cb4692177525db38d983da0445d4eb25c3826de\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000000025c729a3364faef02c7d1f577068d87e90ba6\"],[\"1\",\"1\",\"16\",\"0x00000000000000000000000033c346928ed9249cf1d5fc16ae32a8cffa1671ad\"],[\"1\",\"1\",\"16\",\"0x000000000000000000000000e0a342ed4e0f0dbe97c4810534cfcb6550ea017d\"],[\"1\",\"1\",\"16\",\"0x0000000000000000000000004b4406ed8659d03423490d8b62a1639206da0a7a\"],[\"1\",\"1\",\"16\",\"0x0000000000000000000000002cd404d9d75436e7d6ddbccc2fb9cf7c06941bf1\"],[\"1\",\"1\",\"16\",\"0x0000000000000000000000009eeb6be79899cfe45018866a2113c6b77fa96f35\"]]", + "options": "0" + } + }, + { + "to": "0x13c61a25db73e7a94a244bd2205adba8b4a60f4a", + "value": "0", + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "roleKey", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "targetAddress", + "type": "address" + }, + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + }, + { + "internalType": "struct ConditionFlat[]", + "name": "conditions", + "type": "tuple[]", + "components": [ + { + "internalType": "uint8", + "name": "parent", + "type": "uint8" + }, + { + "internalType": "enum ParameterType", + "name": "paramType", + "type": "uint8" + }, + { + "internalType": "enum Operator", + "name": "operator", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "compValue", + "type": "bytes" + } + ] + }, + { + "internalType": "enum ExecutionOptions", + "name": "options", + "type": "uint8" + } + ], + "name": "scopeFunction", + "payable": false + }, + "contractInputsValues": { + "roleKey": "0x4d414e4147455200000000000000000000000000000000000000000000000000", + "targetAddress": "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb", + "selector": "0x4000aea0", + "conditions": "[[\"0\",\"5\",\"5\",\"0x\"],[\"0\",\"1\",\"16\",\"0x000000000000000000000000f6a78083ca3e2a662d6dd1703c939c8ace2e268d\"],[\"0\",\"1\",\"0\",\"0x\"],[\"0\",\"2\",\"16\",\"0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000140efccbb9e2c09ea29551879bd9da32362b32fc89000000000000000000000000\"]]", + "options": "0" + } + } + ] +} diff --git a/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.report.txt b/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.report.txt new file mode 100644 index 000000000..d45f367c5 --- /dev/null +++ b/BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.report.txt @@ -0,0 +1,1216 @@ +FILENAME: `BIPs/2024-W46/[BIP-732] Permissions Policy Update Request #6.json` +MULTISIG: `multisigs/karpatkey (gnosis:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89)` +COMMIT: `2de24fdfcc4183f3c5c2340da3664ef33ef25b60` +CHAIN(S): `gnosis` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `scopeFunction`, positional arguments with type(s) `str,address,str,(str,str,str,str,str,str,str,str,str,str,str,str,str,str,str,str),int` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `scopeFunction`: ['scopeFunction(bytes32,address,bytes4,(uint8,uint8,uint8,bytes)[],uint8)']\nFunction invocation failed due to no matching argument types."))` + +``` ++---------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xaf204776c7245bF4147c2612BF6e5972Ee483701 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xaf204776c7245bF4147c2612BF6e5972Ee483701 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000d499b51fcfc66bd31248ef4b28d656d67e591a94\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x569d3489" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"18\"", | | | +| | | | "\"0x00000000000000000000000000000000000000000000000000000000000000c9\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"3\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000af204776c7245bf4147c2612bf6e5972ee483701\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"4\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000af204776c7245bf4147c2612bf6e5972ee483701\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"5\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"6\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e91d153e0b41518a2ce8dd3d7944fa863463a97d\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004ecaba5870353805a9f068101a40e0f32ed605c6\"]", | | | +| | | | "[\"7\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a83\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004ecaba5870353805a9f068101a40e0f32ed605c6\"]", | | | +| | | | "[\"20\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000ddafbb505ad214d7b80b1f830fccc89b60fb7a83\"]", | | | +| | | | "[\"31\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006a023ccd1ff6f2045c3309768ead9e68f978f6e1\"]", | | | +| | | | "[\"31\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000009c58bacc331c9aa871afd802db6379a98e80cedb\"]", | | | +| | | | "[\"32\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000006a023ccd1ff6f2045c3309768ead9e68f978f6e1\"]", | | | +| | | | "[\"32\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000009c58bacc331c9aa871afd802db6379a98e80cedb\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x23dA9AdE38E4477b23770DeD512fD37b12381FAB (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5a66c223" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xd0e30db0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000d499b51fcfc66bd31248ef4b28d656d67e591a94\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xDDAfbb505ad214D7b80b1f830fcCc89B60fb7A83 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x4ECaBa5870353805a9F068101A40E0f32ed605C6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x4ECaBa5870353805a9F068101A40E0f32ed605C6 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x6A023CCd1ff6F2045C3309768eAd9E68F978f6e1 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xf716a92b" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0xd1ff8241" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x6e553f65" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xD499b51fcFc66bd31248ef4b28d656d67E591A94 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x7bde82f2" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x2e2d2984" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x1a7ff553" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x201b9eb5" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x066055e0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8ceab9aa" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x33C346928eD9249Cf1d5fc16aE32a8CFFa1671AD (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8697d2c2" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x2e2d2984" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x1a7ff553" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x201b9eb5" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x066055e0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8ceab9aa" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0xe0A342ED4e0F0dBe97C4810534CfCB6550EA017D (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8697d2c2" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x2e2d2984" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x1a7ff553" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x201b9eb5" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x066055e0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8ceab9aa" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9eeB6be79899CfE45018866A2113c6b77fa96F35 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8697d2c2" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x2e2d2984" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x1a7ff553" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x201b9eb5" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x066055e0" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8ceab9aa" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| allowFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x3CB4692177525dB38D983DA0445d4EB25C3826dE (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x8697d2c2" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x7301CFA0e1756B71869E93d4e4Dca5c7d0eb0AA6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x7301CFA0e1756B71869E93d4e4Dca5c7d0eb0AA6 (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x5d1e9307" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"15\"", | | | +| | | | "\"0x\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "1" | | | +| | | | ] | | | +| | | | } | | | +| scopeTarget | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x095ea7b3" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000003cb4692177525db38d983da0445d4eb25c3826de\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000000025c729a3364faef02c7d1f577068d87e90ba6\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x00000000000000000000000033c346928ed9249cf1d5fc16ae32a8cffa1671ad\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000e0a342ed4e0f0dbe97c4810534cfcb6550ea017d\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000004b4406ed8659d03423490d8b62a1639206da0a7a\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000002cd404d9d75436e7d6ddbccc2fb9cf7c06941bf1\"]", | | | +| | | | "[\"1\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x0000000000000000000000009eeb6be79899cfe45018866a2113c6b77fa96f35\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | +| scopeFunction | 0x13c61a25db73e7a94a244bd2205adba8b4a60f4a (Not Found) | 0 | { | BIP-732 | N/A | +| | | | "roleKey": [ | | | +| | | | "0x4d414e4147455200000000000000000000000000000000000000000000000000 (N/A)" | | | +| | | | ], | | | +| | | | "targetAddress": [ | | | +| | | | "0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb (N/A)" | | | +| | | | ], | | | +| | | | "selector": [ | | | +| | | | "0x4000aea0" | | | +| | | | ], | | | +| | | | "conditions": [ | | | +| | | | "\"0\"", | | | +| | | | "\"5\"", | | | +| | | | "\"5\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000f6a78083ca3e2a662d6dd1703c939c8ace2e268d\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"1\"", | | | +| | | | "\"0\"", | | | +| | | | "\"0x\"]", | | | +| | | | "[\"0\"", | | | +| | | | "\"2\"", | | | +| | | | "\"16\"", | | | +| | | | "\"0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000140efccbb9e2c09ea29551879bd9da32362b32fc89000000000000000000000000\"" | | | +| | | | ], | | | +| | | | "options": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | ++---------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W48/[BIP-733] Enable ynETH-wETH Gauge [Ethereum].json b/BIPs/2024-W48/[BIP-733] Enable ynETH-wETH Gauge [Ethereum].json new file mode 100644 index 000000000..e1cd018e8 --- /dev/null +++ b/BIPs/2024-W48/[BIP-733] Enable ynETH-wETH Gauge [Ethereum].json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1732114560309, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x7855ed7ffd6cff80aaf032999c4f09c97cec69a6b4dd6645e31c2f40d6c70b14" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf2c203a264dc05942CFbAeA16f712b2106c2fb02", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W48/[BIP-733] Enable ynETH-wETH Gauge [Ethereum].report.txt b/BIPs/2024-W48/[BIP-733] Enable ynETH-wETH Gauge [Ethereum].report.txt new file mode 100644 index 000000000..33190e1b1 --- /dev/null +++ b/BIPs/2024-W48/[BIP-733] Enable ynETH-wETH Gauge [Ethereum].report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W48/[BIP-733] Enable ynETH-wETH Gauge [Ethereum].json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a8fdbacf7e25a1924d00d20bba3562712a8c05bb` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/307c4e9e-4738-4262-9d5f-395aefe25724) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x398901c7a1a05a93499a40f88fca6381de912de80002000000000000000006c1 | ECLP-ynETH-wstETH | root: 0xf2c203a264dc05942CFbAeA16f712b2106c2fb02 | 0x09db87A538BD693E9d08544577d5cCfAA6373A48: ynETH | 0xF0207Ffa0b793E009DF9Df62fEE95B8FC6c93EcF | safe | BIP-733 | 0 | +| | pool_address: 0x398901C7a1a05a93499A40F88fca6381De912de8 | fee: 0.01 | side: None | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0: wstETH | 0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768 | safe | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W49/BIP-735.json b/BIPs/2024-W49/BIP-735.json new file mode 100644 index 000000000..df0f1312c --- /dev/null +++ b/BIPs/2024-W49/BIP-735.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1732696022046, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xb7bb16b58b04fe4f8d270430ce57d2a4753993de", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W49/BIP-735.report.txt b/BIPs/2024-W49/BIP-735.report.txt new file mode 100644 index 000000000..9230f3915 --- /dev/null +++ b/BIPs/2024-W49/BIP-735.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W49/BIP-735.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `dd6b3f9e4e55eedfda036cd00c03787031d9c7b6` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2e61d903-86cc-43ea-857c-d04c66bf4fe4) + +| Gauge Validator (0xB7Bb16B58b04fE4f8d270430cE57d2A4753993de) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xdcb5ed405a9b11250def047ae8016008fae7d69b0000000000000000000006d8 | WETH-lpETH | root: 0xB7Bb16B58b04fE4f8d270430cE57d2A4753993de | 0xa684EAf215ad323452e2B2bF6F817d4aa5C116ab: lpETH | 0x0000000000000000000000000000000000000000 | -- | BIP-735 | 0 | +| | pool_address: 0xdCb5ED405a9b11250deF047AE8016008Fae7D69b | fee: 0.3 | side: None | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: mainnet | 0xdCb5ED405a9b11250deF047AE8016008Fae7D69b: WETH-lpETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W49/BIP-736a.json b/BIPs/2024-W49/BIP-736a.json new file mode 100644 index 000000000..cd6433311 --- /dev/null +++ b/BIPs/2024-W49/BIP-736a.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1732734169241, + "meta": { + "name": "Transactions Batch", + "description": "Add GHO/PyUSD ECLP gauge mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xAf1b4bfA0a69B9e669d925888b99741E15e37253", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W49/BIP-736a.report.txt b/BIPs/2024-W49/BIP-736a.report.txt new file mode 100644 index 000000000..974f3f2d8 --- /dev/null +++ b/BIPs/2024-W49/BIP-736a.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W49/BIP-736a.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8a6a2c3b7f7d54926555d9449df4058be6df92b4` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0fa4d765-648e-405e-be1c-a2e7814a80d2) + +| Gauge Validator (0xAf1b4bfA0a69B9e669d925888b99741E15e37253) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8950e720eb51af9709a86941345844134517bcf40002000000000000000006e9 | ECLP-GHO-pyUSD | root: 0xAf1b4bfA0a69B9e669d925888b99741E15e37253 | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f: GHO | 0x0000000000000000000000000000000000000000 | -- | BIP-736 | 0 | +| | pool_address: 0x8950E720eB51AF9709A86941345844134517bcF4 | fee: 0.01 | side: None | 0x6c3ea9036406852006290770BEdFcAbA0e23A0e8: PYUSD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W49/BIP-737.json b/BIPs/2024-W49/BIP-737.json new file mode 100644 index 000000000..b34a90671 --- /dev/null +++ b/BIPs/2024-W49/BIP-737.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1732694705164, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0xcabcc4acbe3820fe0dd836b567b78d30d0564e63a6375fb9c67de6995598cbce" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "role", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d", + "account": "0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97" + } + } + ] +} diff --git a/BIPs/2024-W49/BIP-737.report.txt b/BIPs/2024-W49/BIP-737.report.txt new file mode 100644 index 000000000..228afb2b4 --- /dev/null +++ b/BIPs/2024-W49/BIP-737.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W49/BIP-737.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `f450a9f37d4d0a8709fa732bd790bb28afc8ac1e` +CHAIN(S): `zkevm` +TENDERLY: `🟪 SKIPPED (ValueError({'error': {'id': '28824d24-918a-4cf7-94fc-18db4eb79198', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}}))` + +``` ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | mimic/smartVaultV3 | 0x9e5D6427D2cdaDC68870197b099C2Df535Ec3c97 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | BIP-737 | 0 | ++----------------------+--------------------+--------------------------------------------+------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W49/BIP-738.json b/BIPs/2024-W49/BIP-738.json new file mode 100644 index 000000000..41c8079e1 --- /dev/null +++ b/BIPs/2024-W49/BIP-738.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1732776010055, + "meta": { + "name": "Transactions Batch", + "description": "Fund marketing and PR agency for v3 launch", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "60000000000" + } + } + ] +} diff --git a/BIPs/2024-W49/BIP-738.report.txt b/BIPs/2024-W49/BIP-738.report.txt new file mode 100644 index 000000000..4f972cef8 --- /dev/null +++ b/BIPs/2024-W49/BIP-738.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W49/BIP-738.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b685c656d5d4909bb903f38a528fa32b6520c976` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/cff7890d-9678-473c-9f91-15edefe60af0) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 60000.0 (RAW: 60000000000) | BIP-738 | 0 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+----------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W50/BIP-740.json b/BIPs/2024-W50/BIP-740.json new file mode 100644 index 000000000..036707646 --- /dev/null +++ b/BIPs/2024-W50/BIP-740.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733385893919, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4fd03b8c15e70e6b3413e4d2ff3825a19746e78b", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W50/BIP-740.report.txt b/BIPs/2024-W50/BIP-740.report.txt new file mode 100644 index 000000000..6525257d1 --- /dev/null +++ b/BIPs/2024-W50/BIP-740.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W50/BIP-740.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `edb57ec9e07ab6f39525271fcfcc4357cdc22bba` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/3fdaea3a-b083-460c-b0a5-b392fbf861a4) + +| Gauge Validator (0x4fd03B8C15E70E6b3413E4D2ff3825a19746e78B) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x62e57e37e3185871c13a422a363293780d17305b0002000000000000000006d3 | B-kaiAURA-AURA-WEIGHTED | root: 0x4fd03B8C15E70E6b3413E4D2ff3825a19746e78B | 0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF: AURA | 0x0000000000000000000000000000000000000000 | -- | BIP-740 | 0 | +| | pool_address: 0x62E57e37E3185871c13a422A363293780D17305B | fee: 1.0 | side: None | 0xFFd9c960bC303b8d3aAED58229ce8a7310bCc5b8: kaiAURA | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 2.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.json b/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.json new file mode 100644 index 000000000..f44fbba3d --- /dev/null +++ b/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733341716017, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xc73c26f0c49cc8ee7ffe350a99e9934e694c3c2288cd3a8d833533cc6b5726da" + }, + "transactions": [ + { + "to": "0xA2321E23B3060e160195E138b62F8498546B0247", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "_delegate", "type": "address" }, + { "internalType": "uint256", "name": "_amount", "type": "uint256" } + ], + "name": "delegateVote", + "payable": false + }, + "contractInputsValues": { + "_delegate": "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6", + "_amount": "20" + } + }, + { + "to": "0xA2321E23B3060e160195E138b62F8498546B0247", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "_delegate", "type": "address" }, + { "internalType": "uint256", "name": "_amount", "type": "uint256" } + ], + "name": "delegateVote", + "payable": false + }, + "contractInputsValues": { + "_delegate": "0x9f74662aD05840Ba35d111930501c617920dD68e", + "_amount": "20" + } + }, + { + "to": "0xA2321E23B3060e160195E138b62F8498546B0247", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "_delegate", "type": "address" }, + { "internalType": "uint256", "name": "_amount", "type": "uint256" } + ], + "name": "delegateVote", + "payable": false + }, + "contractInputsValues": { + "_delegate": "0x29430750d7c3Ff58c9615490485deA50bdFD15f7", + "_amount": "20" + } + } + ] +} diff --git a/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.report.txt b/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.report.txt new file mode 100644 index 000000000..4a7bf6e8f --- /dev/null +++ b/BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.report.txt @@ -0,0 +1,36 @@ +FILENAME: `BIPs/2024-W50/[BIP-739]-Delegate-Gyroscope-GGU-to-DAO-Participants.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `739f48f66ded90e0bcad7022bbec18eba4ad1dce` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fd771ca7-b617-4ed3-ab9b-5d62c2cf7ea6) + +``` ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | N/A | N/A | +| | | | "_delegate": [ | | | +| | | | "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6 (gyro/zen_dragon_delegate)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | N/A | N/A | +| | | | "_delegate": [ | | | +| | | | "0x9f74662aD05840Ba35d111930501c617920dD68e (N/A)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | +| delegateVote | 0xA2321E23B3060e160195E138b62F8498546B0247 (gyro/AssociatedDAOVault) | 0 | { | N/A | N/A | +| | | | "_delegate": [ | | | +| | | | "0x29430750d7c3Ff58c9615490485deA50bdFD15f7 (gyro/defi_naly_delegate)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:20, 18 decimals:2E-17, 6 decimals: 0.00002" | | | +| | | | ] | | | +| | | | } | | | ++--------------+----------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/2024-W50/[BIP-741] perms_v3_ethereum.json b/BIPs/2024-W50/[BIP-741] perms_v3_ethereum.json new file mode 100644 index 000000000..97db2c4ed --- /dev/null +++ b/BIPs/2024-W50/[BIP-741] perms_v3_ethereum.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733113186182, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xc46efd8b96f120018f988078f43bb02636f72c6328af55088c746f607fad28f2" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c,0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4,0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f,0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155,0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c,0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43,0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07,0xc1d77fef06a5acef26a30536474b98eb44840e5f17e86114c8aaa4274e206b3c,0xeeed27c13054947e3283c26fca5c34c2e514ef8caa98f1c6a6778c06f1d247da]", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886,0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e,0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272,0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5,0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9,0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc,0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e,0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa,0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2,0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d,0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16,0x2f54088e4f997de92b7bea3779089047980bab824c65d526fc075413ff373000,0xed6f8a5f0602534601834cae86e16a9424b7bf30c562d15bd781fbcd5026d9a1]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + } + ] +} diff --git a/BIPs/2024-W50/[BIP-741] perms_v3_ethereum.report.txt b/BIPs/2024-W50/[BIP-741] perms_v3_ethereum.report.txt new file mode 100644 index 000000000..f495030df --- /dev/null +++ b/BIPs/2024-W50/[BIP-741] perms_v3_ethereum.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/2024-W50/[BIP-741] perms_v3_ethereum.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `55bb116955e3b0842256bd41974bb689e57eef92` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c248b9a2-8a1c-4c1a-a160-9d61b663d999) + +``` ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/maxi_omni | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20241204-v3-vault/VaultAdmin/setStaticSwapFeePercentage(address,uint256) | 0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c | BIP-741 | 0 | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolSwapFeePercentage(uint256) | 0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolYieldFeePercentage(uint256) | 0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolSwapFeePercentage(address,uint256) | 0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolYieldFeePercentage(address,uint256) | 0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFees(address,address) | 0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFeesForToken(address,address,address) | 0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07 | | | +| | | | 20241205-v3-stable-pool/StablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xc1d77fef06a5acef26a30536474b98eb44840e5f17e86114c8aaa4274e206b3c | | | +| | | | 20241205-v3-stable-pool/StablePool/stopAmplificationParameterUpdate() | 0xeeed27c13054947e3283c26fca5c34c2e514ef8caa98f1c6a6778c06f1d247da | | | +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20241204-v3-vault/VaultAdmin/pauseVault() | 0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886 | BIP-741 | 1 | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVault() | 0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e | | | +| | | | 20241204-v3-vault/VaultAdmin/pausePool(address) | 0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpausePool(address) | 0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5 | | | +| | | | 20241204-v3-vault/VaultAdmin/pauseVaultBuffers() | 0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVaultBuffers() | 0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc | | | +| | | | 20241204-v3-vault/VaultAdmin/enableRecoveryMode(address) | 0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e | | | +| | | | 20241204-v3-vault/VaultAdmin/disableRecoveryMode(address) | 0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa | | | +| | | | 20241204-v3-vault/VaultAdmin/enableQuery() | 0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2 | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQuery() | 0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQueryPermanently() | 0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16 | | | +| | | | 20241205-v3-stable-pool/StablePoolFactory/disable() | 0x2f54088e4f997de92b7bea3779089047980bab824c65d526fc075413ff373000 | | | +| | | | 20241205-v3-weighted-pool/WeightedPoolFactory/disable() | 0xed6f8a5f0602534601834cae86e16a9424b7bf30c562d15bd781fbcd5026d9a1 | | | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W50/[BIP-741] perms_v3_gnosis.json b/BIPs/2024-W50/[BIP-741] perms_v3_gnosis.json new file mode 100644 index 000000000..e64147711 --- /dev/null +++ b/BIPs/2024-W50/[BIP-741] perms_v3_gnosis.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1733113567208, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "0x84b97dbe42ed2fb42adef45f5178f146b17ea392e708251e106c24c7685c3909" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c,0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4,0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f,0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155,0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c,0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43,0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07,0xd092c49bcc2e34f69b02005821b50d57632951029f4a20eb4fb8d6fcb2ef08a3,0x66a9e5de1de4dbcb0b1d3979ca06bd4bb8ba535a1f67873ed92779cfd976dcf0]", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886,0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e,0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272,0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5,0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9,0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc,0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e,0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa,0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2,0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d,0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16,0x918265b00e10f59d74df8af13287d5465c19a072459da4ae7d94b20d4e66c1e8,0x0b57c528b17bebb5b75282268198cc2f48585d04488cdc16020206499ed61769]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + } + ] +} diff --git a/BIPs/2024-W50/[BIP-741] perms_v3_gnosis.report.txt b/BIPs/2024-W50/[BIP-741] perms_v3_gnosis.report.txt new file mode 100644 index 000000000..c534ad725 --- /dev/null +++ b/BIPs/2024-W50/[BIP-741] perms_v3_gnosis.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/2024-W50/[BIP-741] perms_v3_gnosis.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `55bb116955e3b0842256bd41974bb689e57eef92` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/58c484a8-1429-4eea-831f-8455b68f434e) + +``` ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/maxi_omni | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e | 20241204-v3-vault/VaultAdmin/setStaticSwapFeePercentage(address,uint256) | 0x535f82655cb6a856d1452d97dc8e7b3393044c974f85cfcdd2c1d304c08ce34c | BIP-741 | 0 | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolSwapFeePercentage(uint256) | 0x31893078b6590802f57d29fae81f10113c336375df90db2aed0392af0c75d8d4 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setGlobalProtocolYieldFeePercentage(uint256) | 0x3bc669a22fd5eb10a81a9ab00e0cab660e6f703d7ae9185597386bbd2e849e3f | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolSwapFeePercentage(address,uint256) | 0x93100e2a70c799f7ba831633b6a5078fc649ca0c812caa633106f1948a819155 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/setProtocolYieldFeePercentage(address,uint256) | 0x131f9541f99a187d0a0db49756fb64345dec624e21579355e25b8b5a1b40b45c | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFees(address,address) | 0x4071255a8a5c23dae545fa9427571cfd2cbc2f7e623e863ec2c917ed09074e43 | | | +| | | | 20241204-v3-vault/ProtocolFeeController/withdrawProtocolFeesForToken(address,address,address) | 0xf830de585800a430465649def91ee4e68e52ef19d8734b6836b9a2237853fc07 | | | +| | | | 20241205-v3-stable-pool/StablePool/startAmplificationParameterUpdate(uint256,uint256) | 0xd092c49bcc2e34f69b02005821b50d57632951029f4a20eb4fb8d6fcb2ef08a3 | | | +| | | | 20241205-v3-stable-pool/StablePool/stopAmplificationParameterUpdate() | 0x66a9e5de1de4dbcb0b1d3979ca06bd4bb8ba535a1f67873ed92779cfd976dcf0 | | | +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20241204-v3-vault/VaultAdmin/pauseVault() | 0x461c5a059d49bcf53ff00ff0d6fe644f40cc96ff9f6012e75ea70824dba5f886 | BIP-741 | 1 | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVault() | 0xa3cc69d3a95a1b4020228f384f292c33a2db8f395442b06805d5195609d66b4e | | | +| | | | 20241204-v3-vault/VaultAdmin/pausePool(address) | 0xae26501f09c96de9e98977fff0d65a23cb22db73a58ddef38127af1a616cf272 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpausePool(address) | 0xa4443105bdb833cb364c9f76caa2adf3c6e62427cb693ffd6f1d8d7f44ad1bb5 | | | +| | | | 20241204-v3-vault/VaultAdmin/pauseVaultBuffers() | 0xe80d721d89f2236e9428bfba076cbbbb355faeb9d9b97b49890ebcf930d05bc9 | | | +| | | | 20241204-v3-vault/VaultAdmin/unpauseVaultBuffers() | 0xf923c4af23349707476c28766c280b0178ab3c4ebfa546da8c25a546a066a2dc | | | +| | | | 20241204-v3-vault/VaultAdmin/enableRecoveryMode(address) | 0xb1539e3ebdcf854dedf819f6232d1e447cfb129f7bf572e70295fb998bd8c85e | | | +| | | | 20241204-v3-vault/VaultAdmin/disableRecoveryMode(address) | 0x03aef606b4b82495d96af41cf1ed84b739a1de2bfb37bc1c0cfde2c53cf096aa | | | +| | | | 20241204-v3-vault/VaultAdmin/enableQuery() | 0x130ac25c06d0a78c43cee16ed4147a8a2337d8dc08571f397ca9ac15e1fc2ec2 | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQuery() | 0x7b9f4d9b9d0380987936892409571a5e0b6e9b538806ac662699a305304bd15d | | | +| | | | 20241204-v3-vault/VaultAdmin/disableQueryPermanently() | 0x6832812101826d0b63748615617865e97f09b944c344d3bbd7d50b5be617eb16 | | | +| | | | 20241205-v3-stable-pool/StablePoolFactory/disable() | 0x918265b00e10f59d74df8af13287d5465c19a072459da4ae7d94b20d4e66c1e8 | | | +| | | | 20241205-v3-weighted-pool/WeightedPoolFactory/disable() | 0x0b57c528b17bebb5b75282268198cc2f48585d04488cdc16020206499ed61769 | | | ++-----------------------+---------------------+--------------------------------------------+-----------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/2024-W51/BIP-743.json b/BIPs/2024-W51/BIP-743.json new file mode 100644 index 000000000..1d82e765a --- /dev/null +++ b/BIPs/2024-W51/BIP-743.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733930245035, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { "name": "gaugeType", "type": "string", "internalType": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xF8150d9599a9c994A9528d7a28AF1262BE4e3ebd", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W51/BIP-743.report.txt b/BIPs/2024-W51/BIP-743.report.txt new file mode 100644 index 000000000..d32d52cea --- /dev/null +++ b/BIPs/2024-W51/BIP-743.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/2024-W51/BIP-743.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3ced6cb745627ebe4360a389afa9a077aea0fdd5` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4be19793-23d5-4631-8701-d2cfa0febb37) + +| Gauge Validator (0xF8150d9599a9c994A9528d7a28AF1262BE4e3ebd) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8461537a9bfc5a1df57cf825f8a58049ef61557b0002000000000000000006ea | ECLP-USR-GYD | root: 0xF8150d9599a9c994A9528d7a28AF1262BE4e3ebd | 0x66a1E37c9b0eAddca17d3662D6c05F4DECf3e110: USR | 0x0000000000000000000000000000000000000000 | -- | BIP-743 | 0 | +| | pool_address: 0x8461537a9BfC5A1dF57cF825F8A58049eF61557B | fee: 0.01 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+-------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/2024-W52/BIP-736b.json b/BIPs/2024-W52/BIP-736b.json new file mode 100644 index 000000000..967016fc7 --- /dev/null +++ b/BIPs/2024-W52/BIP-736b.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1732734793152, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete pyUSD ECLP gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb71C90F165cf99d4004499fF058E265Aa68fAC85", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W52/BIP-736b.report.txt b/BIPs/2024-W52/BIP-736b.report.txt new file mode 100644 index 000000000..bd76b7547 --- /dev/null +++ b/BIPs/2024-W52/BIP-736b.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W52/BIP-736b.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `8a6a2c3b7f7d54926555d9449df4058be6df92b4` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/052d6a0d-1a7b-4764-b0ed-0d378c9ade0d) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xb71C90F165cf99d4004499fF058E265Aa68fAC85 (gauges/ECLP-GHO-pyUSD-gauge-b71c) | killGauge() | | BIP-736 | 0 | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` diff --git a/BIPs/2024-W52/BIP-744.json b/BIPs/2024-W52/BIP-744.json new file mode 100644 index 000000000..d518c2e02 --- /dev/null +++ b/BIPs/2024-W52/BIP-744.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733930438455, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6EE63656BbF5BE3fdF9Be4982BF9466F6a921b83", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W52/BIP-744.report.txt b/BIPs/2024-W52/BIP-744.report.txt new file mode 100644 index 000000000..f2f9ba057 --- /dev/null +++ b/BIPs/2024-W52/BIP-744.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W52/BIP-744.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `f3d96b9810d554595d46632a620157cf9bf5ed36` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8e629b86-a2c1-46c9-abdc-af97abd639ce) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x6EE63656BbF5BE3fdF9Be4982BF9466F6a921b83 (gauges/80wstETH/20GHO-gauge-6ee6) | killGauge() | | BIP-744 | 0 | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------+---------------+---------+----------+ +``` diff --git a/BIPs/2024-W6/BIP-539.json b/BIPs/2024-W6/BIP-539.json new file mode 100644 index 000000000..52e62e441 --- /dev/null +++ b/BIPs/2024-W6/BIP-539.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1706712091123, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa2F8bd6B95a0cB9094206075504CD0ED1Cc717Be", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x4a7475D32CCD29edD65b2a1712b091aA741ba9BB", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W6/BIP-539.report.txt b/BIPs/2024-W6/BIP-539.report.txt new file mode 100644 index 000000000..19f125057 --- /dev/null +++ b/BIPs/2024-W6/BIP-539.report.txt @@ -0,0 +1,18 @@ +FILENAME: `BIPs/2024-W6/BIP-539.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `49f96aa938be3b423d3d4bc6cb93a25969c6757f` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x3932b187f440ce7703653b3908edc5bb7676c283000200000000000000000664 | ECLP-GHO-USDC-2 | 0xa2F8bd6B95a0cB9094206075504CD0ED1Cc717Be | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | | BIP-539 | 0 | +| | pool_address: 0x3932b187f440cE7703653b3908EDc5bB7676C283 | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x99e7b15df044e1b62e2e1774fd4469d54d9409ac00020000000000000000065a | ECLP-GHO-USDC | 0x80AeF246F9926B52622f4e74cdc7Acb5C4344FfE | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | | BIP-539 | 1 | +| | pool_address: 0x99e7b15df044e1b62e2e1774fD4469d54D9409aC | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xaa7a70070e7495fe86c67225329dbd39baa2f63b000200000000000000000663 | ECLP-GHO-GYD | 0x4a7475D32CCD29edD65b2a1712b091aA741ba9BB | "GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f)", | | BIP-539 | 2 | +| | pool_address: 0xaA7a70070E7495fe86c67225329DbD39BAa2F63b | fee: 0.01, a-factor: N/A | Style: mainnet, cap: 100.0% | "GYD(0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2024-W6/BIP-540.json b/BIPs/2024-W6/BIP-540.json new file mode 100644 index 000000000..331cca3ae --- /dev/null +++ b/BIPs/2024-W6/BIP-540.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1706712430714, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x047301b311741ce6C007FFEF7f182Ec93ab07968", + "gaugeType": "PolygonZkEvm" + } + } + ] +} diff --git a/BIPs/2024-W6/BIP-540.report.txt b/BIPs/2024-W6/BIP-540.report.txt new file mode 100644 index 000000000..b2d5ed101 --- /dev/null +++ b/BIPs/2024-W6/BIP-540.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/2024-W6/BIP-540.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `13f4e495ececce1892ccedb3fec7eb4abaade1a1` +CHAIN(S): `mainnet, zkevm` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | rsETH / ETHx | 0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab | "rsETH / ETHx(0x7761b6E0Daa04E70637D81f1Da7d186C205C2aDE)", | "0x0000000000000000000000000000000000000000", | BIP-540 | 0 | +| | pool_address: 0x7761b6E0Daa04E70637D81f1Da7d186C205C2aDE | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "rsETH(0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7)", | "0x746df66bc1Bb361b9E8E2a794C299c3427976e6C", | | | +| | | | | "ETHx(0xA35b1B31Ce002FBF2058D22F30f95D405200A15b)" | "0xAAE054B9b822554dd1D9d1F48f892B4585D3bbf0" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xffc865fcb34e754fad4b0144139b9c28c81c3eff00000000000000000000005f | rsETH/wETH | 0x047301b311741ce6C007FFEF7f182Ec93ab07968 | "WETH(0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9)", | "0x0000000000000000000000000000000000000000", | BIP-540 | 1 | +| | pool_address: 0xfFC865fCb34e754Fad4B0144139b9c28c81C3eFF | fee: 0.04, a-factor: 200 | Style: L0 sidechain, cap: 100.0% | "rsETH(0x8C7D118B5c47a5BCBD47cc51789558B98dAD17c5)", | "0x4186BFC76E2E237523CBC30FD220FE055156b41F", | | | +| | | | | "rsETH/wETH(0xfFC865fCb34e754Fad4B0144139b9c28c81C3eFF)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W6/BIP-541.json b/BIPs/2024-W6/BIP-541.json new file mode 100644 index 000000000..8f99a24ad --- /dev/null +++ b/BIPs/2024-W6/BIP-541.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1706720444301, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W6/BIP-541.report.txt b/BIPs/2024-W6/BIP-541.report.txt new file mode 100644 index 000000000..5915a064d --- /dev/null +++ b/BIPs/2024-W6/BIP-541.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W6/BIP-541.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `97a1dfa24c3449d2c5ae73819dc4ab52db1e8325` +CHAIN(S): `mainnet` +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661 | vETH/wstETH | 0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02 | "vETH(0x38D64ce1Bdf1A9f24E0Ec469C9cAde61236fB4a0)", | "0x0000000000000000000000000000000000000000", | BIP-541 | 0 | +| | pool_address: 0xD3F8AB9C5928FDf53153e7757131aD7815fe3146 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "vETH/wstETH(0xD3F8AB9C5928FDf53153e7757131aD7815fe3146)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W7/BIP-518-3.json b/BIPs/2024-W7/BIP-518-3.json new file mode 100644 index 000000000..dadaa80d7 --- /dev/null +++ b/BIPs/2024-W7/BIP-518-3.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107040104, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x1f440bb1b31ed23dce797e5957ac2a5749add1074f8540f0ff0a158e4b248003" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + } + } + ] +} diff --git a/BIPs/2024-W7/BIP-518-3.report.txt b/BIPs/2024-W7/BIP-518-3.report.txt new file mode 100644 index 000000000..6675c81c8 --- /dev/null +++ b/BIPs/2024-W7/BIP-518-3.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W7/BIP-518-3.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `73f169f9819085d69691fab60c6dbcd3db296174` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W7/BIP-519-3.json b/BIPs/2024-W7/BIP-519-3.json new file mode 100644 index 000000000..eaa534ca3 --- /dev/null +++ b/BIPs/2024-W7/BIP-519-3.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703107142345, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa1bc4667c4f7289ebd0f1a07a44e791e2bc9883cf3ee0650c966b12a685d8721" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + } + } + ] +} diff --git a/BIPs/2024-W7/BIP-519-3.report.txt b/BIPs/2024-W7/BIP-519-3.report.txt new file mode 100644 index 000000000..f76f3c871 --- /dev/null +++ b/BIPs/2024-W7/BIP-519-3.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W7/BIP-519-3.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `70da7b168a7d20d13c94ec02d6a5dcd3b8c0534e` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=====================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 0 | ++------------+-------------------------------------------------+---------------------------------------------------------------------+----------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W7/BIP-528B.json b/BIPs/2024-W7/BIP-528B.json new file mode 100644 index 000000000..4f7e0647d --- /dev/null +++ b/BIPs/2024-W7/BIP-528B.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704871989221, + "meta": { + "name": "Transactions Batch", + "description": "Kill obsolete gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd758454bdf4df7ad85f7538dc9742648ef8e6d0a", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/2024-W7/BIP-528B.report.txt b/BIPs/2024-W7/BIP-528B.report.txt new file mode 100644 index 000000000..5ee60841e --- /dev/null +++ b/BIPs/2024-W7/BIP-528B.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/2024-W7/BIP-528B.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `c3edacdbc19bd0a96edb35a3992c41713a1b3e48` +CHAIN(S): `arbitrum` +``` ++--------------------------+--------------------------------------------------------------------+-------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=============+=====+============================================+=======+=======+==============+=========+============+========================================================================================================+ +| AAEntrypoint/killGauge() | 0x8d333f82e0693f53fa48c40d5d4547142e907e1d000200000000000000000437 | 80PAL-20OHM | N/A | 0xd758454bdf4df7ad85f7538dc9742648ef8e6d0a | 1.0% | 2.0% | L0 sidechain | BIP-528 | 0 | ['PAL(0xa7997F0eC9fa54E89659229fB26537B6A725b798)', 'OHM(0xf0cb2dc0db5e6c66B9a70Ac27B06b878da017028)'] | ++--------------------------+--------------------------------------------------------------------+-------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+--------------------------------------------------------------------------------------------------------+ +``` diff --git a/BIPs/2024-W7/BIP-542.json b/BIPs/2024-W7/BIP-542.json new file mode 100644 index 000000000..9ae21e6f9 --- /dev/null +++ b/BIPs/2024-W7/BIP-542.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1707309073444, + "meta": { + "name": "Transactions Batch", + "description": "Add svETH-wstETH gauge on mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD98ed0426D18B115d6388923803e33ad8aaF11F8", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W7/BIP-542.report.txt b/BIPs/2024-W7/BIP-542.report.txt new file mode 100644 index 000000000..f5d7cb2d3 --- /dev/null +++ b/BIPs/2024-W7/BIP-542.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W7/BIP-542.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `42766c41953a5afb9750348c194c804ef1f23c2c` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1b2ea422-4131-48de-8be1-05fd522bdc62) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+==============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | svETH/wstETH | 0xD98ed0426D18B115d6388923803e33ad8aaF11F8 | "svETH(0x6733F0283711F225A447e759D859a70b0c0Fd2bC)", | "0xad4bFaFAe75ECd3fED5cFad4E4E9847Cd47A1879", | BIP-542 | 0 | +| | pool_address: 0xdEdb11A6a23263469567C2881A9b9F8629eE0041 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | | | +| | | | | "svETH/wstETH(0xdEdb11A6a23263469567C2881A9b9F8629eE0041)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W7/BIP-543.json b/BIPs/2024-W7/BIP-543.json new file mode 100644 index 000000000..c0392814a --- /dev/null +++ b/BIPs/2024-W7/BIP-543.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1707309402364, + "meta": { + "name": "Transactions Batch", + "description": "Add sFRAX-FRAX gauge on Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xc028EFDa059e040b42998c96FF7fe0b126FA87fA", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W7/BIP-543.report.txt b/BIPs/2024-W7/BIP-543.report.txt new file mode 100644 index 000000000..ad641f04f --- /dev/null +++ b/BIPs/2024-W7/BIP-543.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W7/BIP-543.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `2bf2b9af10a5109726a377f7f45709d39650e90c` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c601329f-7f88-4892-887d-cc1a4b4bc1af) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+=======================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0xf8201d478418d6a67507e10880eafaaacd3230da000200000000000000000504 | ECLP-sFRAX-FRAX | 0xc028EFDa059e040b42998c96FF7fe0b126FA87fA | "FRAX(0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F)", | | BIP-543 | 0 | +| | pool_address: 0xf8201D478418D6A67507e10880EaFAAaCD3230da | fee: 0.01, a-factor: N/A | Style: L0 sidechain, cap: 100.0% | "sFRAX(0xe3b3FE7bcA19cA77Ad877A5Bebab186bEcfAD906)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2024-W7/BIP-544/BIP-544.csv b/BIPs/2024-W7/BIP-544/BIP-544.csv new file mode 100644 index 000000000..18b69a353 --- /dev/null +++ b/BIPs/2024-W7/BIP-544/BIP-544.csv @@ -0,0 +1,37 @@ +token_type,token_address,receiver,amount,id +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xea06e1b4259730724885a39CE3ca670eFB020E26,570.903896103896, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x0412ed8438b5fae246606909ef8ba365f9103783,9264.377275832330, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x4281e53938c3b1c1d3e8afd21c02ce8512cdbc93,8292.550901502570, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xbb19053e031d9b2b364351b21a8ed3568b21399b,5083.454531429230, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x6aee9dc09702dffab334f3f8e6f3f97c0e7261f4,3688.191661683030, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xda6b2a5e0c56542984d84a710f90eefd94ca1991,3583.283041144180, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x1c39babd4e0d7bff33bc27c6cc5a4f1d74c9f562,3340.269280346460, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x66c9e1e4fe518cebfe59c9de16e1c780ef5bacd3,3071.117383782660, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xe7a76d8513e55578c80e4b26fc61ee7d4906d4cd,2689.167917042790, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x91b9e59614995e13a32e36440ac524825f7ae39e,2645.733417543510, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x19ae63358648795aaf29e36733f04fcef683aa69,2229.034955339120, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xd519d5704b41511951c8cf9f65fee9ab9bef2611,2194.228700929120, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x9b71dbccd9ffb858899ef3244b09a5354b16048e,2189.234801335870, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x74c3646adad7e196102d1fe35267adfd401a568b,2154.816289796320, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xba5c2f2165ddd691f99e12a23ec75cc1519930b4,2151.930006878870, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x1cbad69d9cc22962a0a885921518c06ed2f04ffd,1958.759844590260, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x1c8bcb6348c84122e67a50e513a1e183c0e6929a,1747.121204211190, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x6724f3fbb16f542401bfc42c464ce91b6c31001e,1602.526326789670, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xff052381092420b7f24cc97fded9c0c17b2cbbb9,1474.153160303520, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x242d7cd78cce454946f35f0a263b54fbe228852c,1416.959993699480, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x6d5dda04760f0515dc131ff4df76a5188ffcdfcb,1052.888962858090, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x6e33b41e44ca2be27e8f65b5231ae61a21044b4a,1031.984190904610, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xf96cd1cf416b50b60358a17bc8593060148de422,984.748538359532, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x0a29500ccc6af0b11c72d4e171d925eb0bb7ee15,984.486653952069, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xd3238d8be92fd856146f53a8b6582bc88e887559,983.663429221023, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xfe73b5a595405bac396c329c674571a7a3db528c,966.440080208157, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x438fd34eab0e80814a231a983d8bfaf507ae16d4,898.248137560579, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xc9cea7a3984cefd7a8d2a0405999cb62e8d206dc,797.746457725601, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x0b177b7f10faeadd6eee6d2cc46d783f460566c8,760.533303236744, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xaa857ddce7b5b9cb17296c790cb40e8c11a3d4f0,739.781232389394, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xe68d7a6c421e2d220b5840116008c9abdbcf53b2,589.912447063721, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xd09ca75315e70bd3988a47958a0c6c5b30b830e1,570.002934675748, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x54c3c925b9d715af541b77f9817544bdc663345e,337.233278651500, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0x36cc7b13029b5dee4034745fb4f24034f3f2ffc6,320.180581563214, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xcaab2680d81df6b3e2ece585bb45cee97bf30cd7,280.644066290214, +erc20,0xba100000625a3754423978a60c9317c58a424e3D,0xcb926f497763ea5cf993912a442431e6a91d5a64,35.854762848568, diff --git a/BIPs/2024-W7/BIP-544/BIP-544.md b/BIPs/2024-W7/BIP-544/BIP-544.md new file mode 100644 index 000000000..017cff23a --- /dev/null +++ b/BIPs/2024-W7/BIP-544/BIP-544.md @@ -0,0 +1,116 @@ +# Payload + +https://github.com/BalancerMaxis/multisig-ops/pull/780 + +# TL;DR: + +This BIP is concerning what to do with $376k USD in losses reported pertaining to the linear pool hack from last year. + +It proposes back paying holders 75% of the lost value in BAL by way of a direct airdrop based on the discussion held here: https://forum.balancer.fi/t/rfc-linear-pool-hack-restitution/5504. + +If passed, BAL amounts will be finally calculated based on pricing before a direct airdrop TX is loaded. Based on current pricing the total amount is 75,475 $BAL. + +If any users bring up concerns about being dropped BAL, they may request themselves to be removed before the final payload is loaded on Monday. We can then handle that in separate governance. + +# Background: + +Last year, Balancer, a whitehat found a [vulnerability in Balancer’s linear pools ](https://medium.com/balancer-protocol/rate-manipulation-in-balancer-boosted-pools-technical-postmortem-53db4b642492). Mitigations were put in place for many pools, and a strong [comms effort](https://twitter.com/functi0nZer0/status/1694107340079792477) was initiated to try to reach depositors in the pools that could be mitigated, asking them to withdraw. 5 days after the vulnerability was announced, hackers figured out the exploit and remaining funds in vulnerable pools were drained. + +Following the passage of [BIP-445](https://forum.balancer.fi/t/bip-445-decide-on-direction-of-restitution-for-affected-lps-in-boosted-pool-incident), a 90 day collection period was completed. Multiple reminders were sent out over various channels, the most recent of which was this [Tweet](https://twitter.com/Balancer/status/1738158848827912214). This RFC presents the results of the research on the resulting dataset of claims, and asks veBAL voters to decide on how to restitute the victims. Once final details are decided in this RFC, a BIP will be posted with similar contents to approve the decision. + +# Details + +## The Claims Data set: + +Users were sent to an [UI element](https://app.balancer.fi/#/ethereum/claim-submission) that requested transaction IDs withdraws from hacked pools. These requests were submitted on chain to this [Smart Contract ](https://etherscan.io/address/0x70b55Af71B29c5Ca7e67bD1995250364C4bE5554#events), which generated events for each claim. Note that the claims period is now closed, using the UI element to report a loss now will not result in it being considered. + +The events were collected and imported into this [google sheet ](https://docs.google.com/spreadsheets/d/1oAAqh2fJnR4EwnHYiKzuJoWZfy1GxmOPTkDj2SAR71I/edit#gid=1476637663), where research was conducted and results were obtained. In the end 41 addresses reported losses. Of those, 4 addresses did not show any on-chain evidence of loss. A vast majority of the losses came from the bb-a-usd pool. The total USD value lost, based on pricing at time of hack adds up to $376,032.42. $5,861.27 of these losses were from 2 wallets on Optimism, the rest from mainnet. + +The shape and style of Compensation: + +## The form of payment: + +A major narrative over the last year at Balancer has been building/maintaining a stable USD runway. Things have improved recently, but Balancer is not USD rich. For that reason, it is proposed that restitution be paid in BAL tokens. The amount of BAL tokens paid should be based on a 24 hour TWAP preceding the posting of the snapshot (on a Thursday). + +## The delivery of payment: + +On mainnet, payment will be directly airdropped to affected wallets in the same week that voting ends. +The addresses on Optimism do not look like they have gas on mainnet. Further, Beets has signalled its willingness to assist with distribution, and potentially cover half of the costs of repayment for Beets users on OP. For this reason, it is suggested that 50% of the BAL due to OP users is sent to Beethoven X on mainnet, and Beethoven then takes responsibility for restitution to the users for the full amount due directly on Optimsm. If beet governance decides not to pay half of the costs, the final proposal will be changed such that 100% of the BAL due to OP users is sent to beets. + +## The amount of payment: + +An [RFC was held](https://forum.balancer.fi/t/rfc-linear-pool-hack-restitution/5504) to collect community feedback around this issue. A poll was staged asking if this BIP should offer 75% of the amount lost or 100% and opened the floor to discuss other options. + +As a [result of said conversation](https://forum.balancer.fi/t/rfc-linear-pool-hack-restitution/5504/15?u=tritium), this BIP proposes that 75% of the amount lost is paid back. This results in a total of `376_032.42 * .75 = 282_024.32` USD of value, which results in a total of `282_024.32 / 3.57 = 78_998.40896359` BAL at the time of this vote. If the price of BAL moves by more than 5 cents by noon on Monday after a successful yes vote, the payload will be regenerated using new BAL pricing and the total amount of BAL paid out may change. + +# Extra decisions and details surrounding this matter + +## Beethoven helps out with losses on Optimism +Beethoven has agreed to pay half of the `5_861.28 * .75 = 4_395.96` USD due to victims as decided by Balancer, which is 50% of the final value owed to Optimsim based victims will be sent to the Beets Treasury on Mainnet `0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86`. This reduces the total amount due by Balancer by `615.68067227` BAL (see first row of the airdrop csv). + +## Addition of a late reporter on Arbitrum with special handling +A user with the address [0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5](https://arbiscan.io/address/0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5) showed up on Discord after the end of the claim period reporting [losses](https://arbiscan.io/tx/0xe135f72acc1214b05fb68a1977d11a951960bb3fa323b2ab2b3fdf8f4d159c96) from the USD+ pool on Arbitrum. The total losses were calculated using the same methods as other claimants: + +``` +pre-hack value = 2_312.80701209198413362 BPTs * 1.01542668 USDperBPT = 2_348.48594577 USD +recpvered value USD = (106.19 USD in USD+) + (66.35 USDC) = 172.54 +total loss = 2_312.8070120919841336 - 172.54 = 2140.267012092 in USD value lost +``` + +Support and the Balancer Maxis agreed to include this address in this restitution BIP barring any strong objections stated in comments before snapshot. + +Based on the 75% payback at the currently used BAL price this equates to `2140.267012092 * .75 / 3.57 = 449.6359269101 $BAL`. As with other claims this amount will be recalculated if the price of BAL drops more than 5 cents. + +Further this user is the sole Arbitrum claimant, and does not have gas on mainnet. The Balancer Maxis still have 1,287 $BAL in the [Op LM Multisig](https://app.safe.global/balances?safe=oeth:0x09Df1626110803C7b3b07085Ef1E053494155089). This BAL was left over from the [entry into BAL/ETH LP](https://forum.balancer.fi/t/bip-524-seed-bal-liquidity-on-optimism/5474) due to price movements between snapshot and deposit. The plan was to bridge these assets back to the DAO multisig on mainnet, but this BIP proposes that this BAL is instead held on Op to be used there as instructed by governance, with a portion of it being used to pay back the affected user described above. The user has agreed to accept payment on Optimsim for their Arbitrum based losses. + + + +# Specification + +Around Noon GMT on Monday the final price of BAL should be checked. If it deviates from the current payload price of `$3.57` by more then 5 cents, the payload CSV will be renegerated from the google sheet using the new current price. The final payload will then be reviewed by at least 2 Balancer Maxis on github before being loaded into the DAO multisig as part of the regular process. + +The Maxis are authorized to hold upto 1300 BAL in the Op LM multisig, and use a portion of that to pay back `1605.200259069` USD worth of BAL to `0x8484e288b7c2edad1b5214ed9df3bae4af7dadf5` on Optimism. Remaining BAL in this safe will stay put until future governance specifies otherwise. + + +# The List of Payouts + +The current CSV, that may be revised based on BAL pricing and does not include Optimsim victims, but does include the Beethoven Treasury is below. If you reported, please check this. If you will be unable to access $BAL sent to this address, please comment on this forum post or contact @gosuto or myself or any of the Maxis here or on [Discord](https://discord.balancer.fi). + +| receiver | amount (BAL) | +| ------------------------------------------ |------------------------| +| 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 615.680672270000000000 | +| 0x0412ed8438b5fae246606909ef8ba365f9103783 | 9990.995101387800 | +| 0x4281e53938c3b1c1d3e8afd21c02ce8512cdbc93 | 8942.947050640030 | +| 0xbb19053e031d9b2b364351b21a8ed3568b21399b | 5482.156847619760 | +| 0x6aee9dc09702dffab334f3f8e6f3f97c0e7261f4 | 3977.461595932680 | +| 0xda6b2a5e0c56542984d84a710f90eefd94ca1991 | 3864.324848292750 | +| 0x1c39babd4e0d7bff33bc27c6cc5a4f1d74c9f562 | 3602.251184687360 | +| 0x66c9e1e4fe518cebfe59c9de16e1c780ef5bacd3 | 3311.989335451880 | +| 0xe7a76d8513e55578c80e4b26fc61ee7d4906d4cd | 2900.083047791250 | +| 0x91b9e59614995e13a32e36440ac524825f7ae39e | 2853.241920880260 | +| 0x19ae63358648795aaf29e36733f04fcef683aa69 | 2403.861226346110 | +| 0xd519d5704b41511951c8cf9f65fee9ab9bef2611 | 2366.325069629450 | +| 0x9b71dbccd9ffb858899ef3244b09a5354b16048e | 2360.939491636720 | +| 0x74c3646adad7e196102d1fe35267adfd401a568b | 2323.821488996030 | +| 0xba5c2f2165ddd691f99e12a23ec75cc1519930b4 | 2320.708830947810 | +| 0x1cbad69d9cc22962a0a885921518c06ed2f04ffd | 2112.388067695380 | +| 0x1c8bcb6348c84122e67a50e513a1e183c0e6929a | 1884.150318266970 | +| 0x6724f3fbb16f542401bfc42c464ce91b6c31001e | 1728.214666145720 | +| 0xff052381092420b7f24cc97fded9c0c17b2cbbb9 | 1589.773016013600 | +| 0x242d7cd78cce454946f35f0a263b54fbe228852c | 1528.094110852380 | +| 0x6d5dda04760f0515dc131ff4df76a5188ffcdfcb | 1135.468489356770 | +| 0x6e33b41e44ca2be27e8f65b5231ae61a21044b4a | 1112.924127446140 | +| 0xf96cd1cf416b50b60358a17bc8593060148de422 | 1061.983717838710 | +| 0x0a29500ccc6af0b11c72d4e171d925eb0bb7ee15 | 1061.701293477720 | +| 0xd3238d8be92fd856146f53a8b6582bc88e887559 | 1060.813502101100 | +| 0xfe73b5a595405bac396c329c674571a7a3db528c | 1042.239302185270 | +| 0x438fd34eab0e80814a231a983d8bfaf507ae16d4 | 968.698971879056 | +| 0xc9cea7a3984cefd7a8d2a0405999cb62e8d206dc | 860.314807351138 | +| 0x0b177b7f10faeadd6eee6d2cc46d783f460566c8 | 820.182974078841 | +| 0xaa857ddce7b5b9cb17296c790cb40e8c11a3d4f0 | 797.803289831699 | +| 0xe68d7a6c421e2d220b5840116008c9abdbcf53b2 | 636.180089970680 | +| 0xd09ca75315e70bd3988a47958a0c6c5b30b830e1 | 614.709047199336 | +| 0x54c3c925b9d715af541b77f9817544bdc663345e | 363.682947565343 | +| 0x36cc7b13029b5dee4034745fb4f24034f3f2ffc6 | 345.292784038761 | +| 0xcaab2680d81df6b3e2ece585bb45cee97bf30cd7 | 302.655365607094 | +| 0xcb926f497763ea5cf993912a442431e6a91d5a64 | 38.666901111201 | diff --git a/BIPs/2024-W7/BIP-544/BIP-544.report.txt b/BIPs/2024-W7/BIP-544/BIP-544.report.txt new file mode 100644 index 000000000..dab003a82 --- /dev/null +++ b/BIPs/2024-W7/BIP-544/BIP-544.report.txt @@ -0,0 +1,11 @@ +FILENAME: `BIPs/00proposed/BIP-XXX.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `fb8815a99ebf6a8d149c0cae07c066111c40f330` +CHAIN(S): `mainnet` +``` ++------------+------------------------------------------------+---------------------------------------------------------------------+-------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+=====================================================================+===========================================+=======+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/beets_treasury:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 602.18630137 (RAW: 602186301370000000000) | N/A | 0 | ++------------+------------------------------------------------+---------------------------------------------------------------------+-------------------------------------------+-------+------------+ +``` diff --git a/BIPs/2024-W8/BIP-546.json b/BIPs/2024-W8/BIP-546.json new file mode 100644 index 000000000..3144f224b --- /dev/null +++ b/BIPs/2024-W8/BIP-546.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1707893192125, + "meta": { + "name": "Transactions Batch", + "description": "Enable weETH-ezETH-rswETH gauge on mainnet with a 10% cap", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x253ED65fff980AEE7E94a0dC57BE304426048b35", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W8/BIP-546.report.txt b/BIPs/2024-W8/BIP-546.report.txt new file mode 100644 index 000000000..36cc22c58 --- /dev/null +++ b/BIPs/2024-W8/BIP-546.report.txt @@ -0,0 +1,15 @@ +FILENAME: `BIPs/2024-W8/BIP-546.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9281b98542693ad73120660691d45583da098afc` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f7e2184e-cf16-4990-8b70-1bb1b2dc7818) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | weETH/ezETH/rswETH | 0x253ED65fff980AEE7E94a0dC57BE304426048b35 | "weETH/ezETH/rswETH(0x848a5564158d84b8A8fb68ab5D004Fae11619A54)", | "0x0000000000000000000000000000000000000000", | BIP-546 | 0 | +| | pool_address: 0x848a5564158d84b8A8fb68ab5D004Fae11619A54 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "ezETH(0xbf5495Efe5DB9ce00f80364C8B423567e58d2110)", | "0x387dBc0fB00b26fb085aa658527D5BE98302c84C", | | | +| | | | | "weETH(0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee)", | "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee", | | | +| | | | | "rswETH(0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0)" | "0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+-------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W8/BIP-547A.json b/BIPs/2024-W8/BIP-547A.json new file mode 100644 index 000000000..b25c7c211 --- /dev/null +++ b/BIPs/2024-W8/BIP-547A.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1707894026213, + "meta": { + "name": "Transactions Batch", + "description": "Enable new rETH gauges on Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf8A95653CC7ee59AfA2304DcC518c431a15C292C", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8", + "gaugeType": "Arbitrum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xBE0967E7510604302b0F974E21A625D9f762B8bb", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/2024-W8/BIP-547A.report.txt b/BIPs/2024-W8/BIP-547A.report.txt new file mode 100644 index 000000000..408fa65dd --- /dev/null +++ b/BIPs/2024-W8/BIP-547A.report.txt @@ -0,0 +1,23 @@ +FILENAME: `BIPs/2024-W8/BIP-547A.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8abd7d5a5d22fdeeed5b4044a44e36fda465a6fe` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/77b7990e-9f49-4956-ae8a-c2da3603b67c) +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+====================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | rETH/wETH BPT | 0xf8A95653CC7ee59AfA2304DcC518c431a15C292C | "WETH(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | BIP-547 | 0 | +| | pool_address: 0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069 | fee: 0.02, a-factor: 500 | Style: L0 sidechain, cap: 100.0% | "rETH/wETH BPT(0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | wstETH/sfrxETH | 0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8 | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | BIP-547 | 1 | +| | pool_address: 0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3 | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "sfrxETH(0x95aB45875cFFdba1E5f451B950bC2E42c0053f39)", | "0x2237a270E87F81A30a1980422185f806e4549346", | | | +| | | | | "wstETH/sfrxETH(0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | cbETH/rETH/wstETH | 0xBE0967E7510604302b0F974E21A625D9f762B8bb | "cbETH(0x1DEBd73E752bEaF79865Fd6446b0c970EaE7732f)", | "0xd983d5560129475bFC210332422FAdCb4EcD09B0", | BIP-547 | 2 | +| | pool_address: 0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "cbETH/rETH/wstETH(0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH(0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "rETH(0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+--------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W8/BIP-548.json b/BIPs/2024-W8/BIP-548.json new file mode 100644 index 000000000..f1d5b3e0b --- /dev/null +++ b/BIPs/2024-W8/BIP-548.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1707935758804, + "meta": { + "name": "Transactions Batch", + "description": "Add sDOLA/DOLA gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCD19892916929F013930ed628547Cc1F439b230e", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W8/BIP-548.report.txt b/BIPs/2024-W8/BIP-548.report.txt new file mode 100644 index 000000000..832f967de --- /dev/null +++ b/BIPs/2024-W8/BIP-548.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W8/BIP-548.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `0072b2f92ad76ee1053cbab24074763012e7315f` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/295e01be-875c-4542-96ad-a05bc4ff47c9) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+===============================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | sDOLA-DOLA BSP | 0xCD19892916929F013930ed628547Cc1F439b230e | "sDOLA-DOLA BSP(0x264062CA46A1322c2E6464471764089E01F22F19)", | "0x0000000000000000000000000000000000000000", | BIP-548 | 0 | +| | pool_address: 0x264062CA46A1322c2E6464471764089E01F22F19 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "DOLA(0x865377367054516e17014CcdED1e7d814EDC9ce4)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "sDOLA(0xb45ad160634c528Cc3D2926d9807104FA3157305)" | "0xD02011C6C8AEE310D0aA42AA98BFE9DCa547fCc0" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+---------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W9/BIP-549.json b/BIPs/2024-W9/BIP-549.json new file mode 100644 index 000000000..7f171cf75 --- /dev/null +++ b/BIPs/2024-W9/BIP-549.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1708502502541, + "meta": { + "name": "Transactions Batch", + "description": "Add insETH gauge on mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCDA1B6704B108dF230d2a36da4C088C6afd6f335", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W9/BIP-549.report.txt b/BIPs/2024-W9/BIP-549.report.txt new file mode 100644 index 000000000..ca0cf5eea --- /dev/null +++ b/BIPs/2024-W9/BIP-549.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/2024-W9/BIP-549.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `09985f745db65c5c0243ba222d541dfd2f3f16ca` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/cdd9ab05-a71a-4156-8e27-b91697fad801) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670 | InstETH/wstETH | 0xCDA1B6704B108dF230d2a36da4C088C6afd6f335 | "wstETH(0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)", | "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", | BIP-549 | 0 | +| | pool_address: 0xE3E0022d25194431a98e8bf5034D2617C96e1D44 | fee: 0.04, a-factor: 200 | Style: mainnet, cap: 100.0% | "InstETH(0x7FA768E035F956c41d6aeaa3Bd857e7E5141CAd5)", | "0x343281Bb5029C4b698fE736D800115ac64D5De39", | | | +| | | | | "InstETH/wstETH(0xE3E0022d25194431a98e8bf5034D2617C96e1D44)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+----------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/2024-W9/BIP-550.json b/BIPs/2024-W9/BIP-550.json new file mode 100644 index 000000000..69857955d --- /dev/null +++ b/BIPs/2024-W9/BIP-550.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1708517662910, + "meta": { + "name": "Transactions Batch", + "description": "Add E-CLP pxETH-frxETH gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x21693d09df79D4297A1ED9622Fb1D2E4Eeec5BC5", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/2024-W9/BIP-550.report.txt b/BIPs/2024-W9/BIP-550.report.txt new file mode 100644 index 000000000..ead76843a --- /dev/null +++ b/BIPs/2024-W9/BIP-550.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/2024-W9/BIP-550.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `963a90216b079026ac9124090cc2961bb62edab1` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/87b61400-669f-4324-b1a3-cc12ee28d2d0) +``` ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+==========================+============================================+========================================================+==================+=========+============+ +| GaugeAdderV4/addGauge | 0x767cb26e38bebddfd857d4ad426d8ff5bc0fac2f00020000000000000000066e | ECLP-pxETH-frxETH | 0x21693d09df79D4297A1ED9622Fb1D2E4Eeec5BC5 | "pxETH(0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6)", | | BIP-550 | 0 | +| | pool_address: 0x767CB26E38beBddfd857d4Ad426d8ff5Bc0fAc2f | fee: 0.04, a-factor: N/A | Style: mainnet, cap: 100.0% | "frxETH(0x5E8422345238F34275888049021821E8E08CAa1f)" | | | | ++-----------------------+---------------------------------------------------------------------+--------------------------+--------------------------------------------+--------------------------------------------------------+------------------+---------+------------+ +``` diff --git a/BIPs/2024-W9/README.md b/BIPs/2024-W9/README.md new file mode 100644 index 000000000..72ff8e544 --- /dev/null +++ b/BIPs/2024-W9/README.md @@ -0,0 +1,3 @@ +## DAO Multisig Holiday + +Note there will be no DAO multisig executions this week. Please schedule in W10. Gauge adds can be completed via the LM multisig by the Maxis. \ No newline at end of file diff --git a/BIPs/4269-W69/BIP-343/arbitrum.json b/BIPs/4269-W69/BIP-343/arbitrum.json new file mode 100644 index 000000000..f020e1523 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/arbitrum.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x3f9dc3da8a6332271be3fccd1a107fd3117a1a988666ff673241edc8c12279ac, 0x0fb35afbdd369d25e1e13986af342dd66f4af22e88628aded66fc015fddee9e6, 0x6849898f08c7f64552f27ae1a4dfcc908200c4d6901ee3945a8c62dbf9cefb8f, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0x0585ff33fe95b333f37198850856b5b788891cbc6fd99c447b8d7625c94a33b9, 0x2cdef929bdc29c7b9ca832b8a8f62ce592fee150df38b736a8cab1d2918fc179]", + "account": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-343/arbitrum.report.txt b/BIPs/4269-W69/BIP-343/arbitrum.report.txt new file mode 100644 index 000000000..9ce3d3ad4 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/arbitrum.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/4269-W69/BIP-343/arbitrum.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/c01cdb1f-a026-42d5-a006-ac3538b495cf) +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D | 20230320-weighted-pool-v4/WeightedPool/disableRecoveryMode() | 0x3f9dc3da8a6332271be3fccd1a107fd3117a1a988666ff673241edc8c12279ac | BIP-343 | 0 | +| | | | 20230206-weighted-pool-v3/WeightedPool/disableRecoveryMode() | 0x0fb35afbdd369d25e1e13986af342dd66f4af22e88628aded66fc015fddee9e6 | | | +| | | | 20220906-composable-stable-pool/ComposableStablePool/disableRecoveryMode() | 0x6849898f08c7f64552f27ae1a4dfcc908200c4d6901ee3945a8c62dbf9cefb8f | | | +| | | | 20221122-composable-stable-pool-v2/ComposableStablePool/disableRecoveryMode() | 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6 | | | +| | | | 20230206-composable-stable-pool-v3/ComposableStablePool/disableRecoveryMode() | 0x0585ff33fe95b333f37198850856b5b788891cbc6fd99c447b8d7625c94a33b9 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/disableRecoveryMode() | 0x2cdef929bdc29c7b9ca832b8a8f62ce592fee150df38b736a8cab1d2918fc179 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/BIP-343/avalanche.json b/BIPs/4269-W69/BIP-343/avalanche.json new file mode 100644 index 000000000..804746c3f --- /dev/null +++ b/BIPs/4269-W69/BIP-343/avalanche.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 43114, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa, 0x57a99f3ed4c936dc3acc397e914c860702345856a9cca3a5be4c01fefa6a7674, 0xe41196603a4830aa78064fa1ce052e42607bc0a162707e1ce030e7fd9757f0b1]", + "account": "0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-343/avalanche.report.txt b/BIPs/4269-W69/BIP-343/avalanche.report.txt new file mode 100644 index 000000000..34860e4f3 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/avalanche.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/BIP-343/avalanche.json` +MULTISIG: `multisigs/dao (avalanche:0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b4076da7-2bbf-4eef-91a4-af132aa4be7a) +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x308f8d3536261C32c97D2f85ddc357f5cCdF33F0 | 20230320-weighted-pool-v4/WeightedPool/disableRecoveryMode() | 0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa | BIP-343 | 0 | +| | | | 20230206-weighted-pool-v3/WeightedPool/disableRecoveryMode() | 0x57a99f3ed4c936dc3acc397e914c860702345856a9cca3a5be4c01fefa6a7674 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/disableRecoveryMode() | 0xe41196603a4830aa78064fa1ce052e42607bc0a162707e1ce030e7fd9757f0b1 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/BIP-343/gnosis.json b/BIPs/4269-W69/BIP-343/gnosis.json new file mode 100644 index 000000000..e489fa52f --- /dev/null +++ b/BIPs/4269-W69/BIP-343/gnosis.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 100, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x29596d20dcc54c557d94ae57af84f08715a588be1d756198eec61a3dc368b6c1, 0x9023a208ea63197b4da99dc4a096d44fb3152b807b6e4d37f15239d9fff8beb2, 0x478e7f53087deab85ae5870218c02821a6bafa4a75984797ac58cdfd513a385b, 0x4b0cfb0e3afde1903ef88f0072b490a0d78f1027a165371b1b4732daa84a9559, 0x338ff79f4b040df80f9cbc5217e904e2c8dbb7fb58beb6100c837ffa25ab4197]", + "account": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-343/gnosis.report.txt b/BIPs/4269-W69/BIP-343/gnosis.report.txt new file mode 100644 index 000000000..6821e7047 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/gnosis.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/4269-W69/BIP-343/gnosis.json` +MULTISIG: `multisigs/dao (gnosis:0x2a5AEcE0bb9EfFD7608213AE1745873385515c18)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/6b430511-e17b-45c3-8b06-5bbdeea78fb8) +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962 | 20230320-weighted-pool-v4/WeightedPool/disableRecoveryMode() | 0x29596d20dcc54c557d94ae57af84f08715a588be1d756198eec61a3dc368b6c1 | BIP-343 | 0 | +| | | | 20230206-weighted-pool-v3/WeightedPool/disableRecoveryMode() | 0x9023a208ea63197b4da99dc4a096d44fb3152b807b6e4d37f15239d9fff8beb2 | | | +| | | | 20221122-composable-stable-pool-v2/ComposableStablePool/disableRecoveryMode() | 0x478e7f53087deab85ae5870218c02821a6bafa4a75984797ac58cdfd513a385b | | | +| | | | 20230206-composable-stable-pool-v3/ComposableStablePool/disableRecoveryMode() | 0x4b0cfb0e3afde1903ef88f0072b490a0d78f1027a165371b1b4732daa84a9559 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/disableRecoveryMode() | 0x338ff79f4b040df80f9cbc5217e904e2c8dbb7fb58beb6100c837ffa25ab4197 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/BIP-343/inputs.json b/BIPs/4269-W69/BIP-343/inputs.json new file mode 100644 index 000000000..216cc1b05 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/inputs.json @@ -0,0 +1,26 @@ +[ + { + "chain_map": { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "zkevm": 1101, + "avalanche": 43114 + }, + + "function_caller_map": { + "disableRecoveryMode()": ["multisigs/emergency"] + }, + "deployments": [ + "20230320-weighted-pool-v4", + "20230206-weighted-pool-v3", + "20220908-weighted-pool-v2'", + "20220906-composable-stable-pool", + "20221122-composable-stable-pool-v2", + "20230206-composable-stable-pool-v3", + "20230320-composable-stable-pool-v4" + ] + } +] diff --git a/BIPs/4269-W69/BIP-343/mainnet.json b/BIPs/4269-W69/BIP-343/mainnet.json new file mode 100644 index 000000000..6689cca1a --- /dev/null +++ b/BIPs/4269-W69/BIP-343/mainnet.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x883ac0fb54f0b07161f4c1d1132c7179cf4fd457dec4d2cf15af62bfe93d6402, 0xd1cab845861601849b43df194d75e16c676ee31cf20296f392e9d44dd3793ef3, 0xdcae01a1d3143e115458cda9b816ea278dd5daf08d9b6d3ec668632aa7b82dad, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0xa35b682012cf580f34e9cd41e4bf1c0210b6ebfc1a952fb582842c0e23b8c069, 0xb6f4ab951143da625c0c25d6eca1ce9e007e3139abfd9cfec3a301bad7238e15]", + "account": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-343/mainnet.report.txt b/BIPs/4269-W69/BIP-343/mainnet.report.txt new file mode 100644 index 000000000..712c98606 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/mainnet.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/4269-W69/BIP-343/mainnet.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/818d7a96-f465-4443-806d-c69d3610a50e) +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888 | 20230320-weighted-pool-v4/WeightedPool/disableRecoveryMode() | 0x883ac0fb54f0b07161f4c1d1132c7179cf4fd457dec4d2cf15af62bfe93d6402 | BIP-343 | 0 | +| | | | 20230206-weighted-pool-v3/WeightedPool/disableRecoveryMode() | 0xd1cab845861601849b43df194d75e16c676ee31cf20296f392e9d44dd3793ef3 | | | +| | | | 20220906-composable-stable-pool/ComposableStablePool/disableRecoveryMode() | 0xdcae01a1d3143e115458cda9b816ea278dd5daf08d9b6d3ec668632aa7b82dad | | | +| | | | 20221122-composable-stable-pool-v2/ComposableStablePool/disableRecoveryMode() | 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6 | | | +| | | | 20230206-composable-stable-pool-v3/ComposableStablePool/disableRecoveryMode() | 0xa35b682012cf580f34e9cd41e4bf1c0210b6ebfc1a952fb582842c0e23b8c069 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/disableRecoveryMode() | 0xb6f4ab951143da625c0c25d6eca1ce9e007e3139abfd9cfec3a301bad7238e15 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/BIP-343/optimism.json b/BIPs/4269-W69/BIP-343/optimism.json new file mode 100644 index 000000000..cb93d2c0a --- /dev/null +++ b/BIPs/4269-W69/BIP-343/optimism.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 10, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa, 0x94d058c565b594a202b88b57a685b093db0fd3406b926f2033a3443a6d8e1b50, 0x53a0625529c519f2e4a706b874baf30797466df455c9d39cd3ee19e6fe5bc6e2, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0xe4efb851c410e171273aee46d6939a91154b536e375e6fe59c09a4e617072339, 0xf65bca6198c80a6fc89409c116db12c0427a0b571cd0d2ee5dd614145d006810]", + "account": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-343/optimism.report.txt b/BIPs/4269-W69/BIP-343/optimism.report.txt new file mode 100644 index 000000000..ad11bc7d6 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/optimism.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/4269-W69/BIP-343/optimism.json` +MULTISIG: `multisigs/dao (optimism:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b3a7bccb-b918-4be6-b9de-4ef98b5e186a) +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B | 20230320-weighted-pool-v4/WeightedPool/disableRecoveryMode() | 0xd674de2cecb3a543953d0844369358124e617428c5e1bbff8924a84e7e4128fa | BIP-343 | 0 | +| | | | 20230206-weighted-pool-v3/WeightedPool/disableRecoveryMode() | 0x94d058c565b594a202b88b57a685b093db0fd3406b926f2033a3443a6d8e1b50 | | | +| | | | 20220906-composable-stable-pool/ComposableStablePool/disableRecoveryMode() | 0x53a0625529c519f2e4a706b874baf30797466df455c9d39cd3ee19e6fe5bc6e2 | | | +| | | | 20221122-composable-stable-pool-v2/ComposableStablePool/disableRecoveryMode() | 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6 | | | +| | | | 20230206-composable-stable-pool-v3/ComposableStablePool/disableRecoveryMode() | 0xe4efb851c410e171273aee46d6939a91154b536e375e6fe59c09a4e617072339 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/disableRecoveryMode() | 0xf65bca6198c80a6fc89409c116db12c0427a0b571cd0d2ee5dd614145d006810 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/BIP-343/polygon.json b/BIPs/4269-W69/BIP-343/polygon.json new file mode 100644 index 000000000..a0f6489d2 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/polygon.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 137, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x70d81f1b0f71c8c3037ee34b69ad6980888bab8b2e32959f8c6aac274a7f10cb, 0x70ea65bcadbec99c10058d43f9acdc9a5ad05cde666b7d0065818feb763e7cb2, 0x2bd529cf8062fa0ff07c2054e5dc654a104415c2ae171092c450a88c9ff098a9, 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6, 0x3f743640e5e338ede5771590dab93e6860616f4318ca6d5a578c84be2c329844, 0xdb63b0c040446fcfa9503943eff986bc051fb5e7cb8f83a8bcebb7115c535b60]", + "account": "0x3c58668054c299bE836a0bBB028Bee3aD4724846" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-343/polygon.report.txt b/BIPs/4269-W69/BIP-343/polygon.report.txt new file mode 100644 index 000000000..1ac9be58f --- /dev/null +++ b/BIPs/4269-W69/BIP-343/polygon.report.txt @@ -0,0 +1,17 @@ +FILENAME: `BIPs/4269-W69/BIP-343/polygon.json` +MULTISIG: `multisigs/dao (polygon:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/915b510f-9e61-4719-aadf-2b1b1b638983) +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x3c58668054c299bE836a0bBB028Bee3aD4724846 | 20230320-weighted-pool-v4/WeightedPool/disableRecoveryMode() | 0x70d81f1b0f71c8c3037ee34b69ad6980888bab8b2e32959f8c6aac274a7f10cb | BIP-343 | 0 | +| | | | 20230206-weighted-pool-v3/WeightedPool/disableRecoveryMode() | 0x70ea65bcadbec99c10058d43f9acdc9a5ad05cde666b7d0065818feb763e7cb2 | | | +| | | | 20220906-composable-stable-pool/ComposableStablePool/disableRecoveryMode() | 0x2bd529cf8062fa0ff07c2054e5dc654a104415c2ae171092c450a88c9ff098a9 | | | +| | | | 20221122-composable-stable-pool-v2/ComposableStablePool/disableRecoveryMode() | 0x85896342da44e8444ef54be6c4643b51c1e23270bb9ec1f0257cd03d72a80cb6 | | | +| | | | 20230206-composable-stable-pool-v3/ComposableStablePool/disableRecoveryMode() | 0x3f743640e5e338ede5771590dab93e6860616f4318ca6d5a578c84be2c329844 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/disableRecoveryMode() | 0xdb63b0c040446fcfa9503943eff986bc051fb5e7cb8f83a8bcebb7115c535b60 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/BIP-343/zkevm.json b/BIPs/4269-W69/BIP-343/zkevm.json new file mode 100644 index 000000000..8765652d7 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/zkevm.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xd21198f97672ee6118c9598a1b4c2053515bf28a40c4df5cf02365c4ff3d5ba7, 0x5610aeafaa3f5c4ef9b9b45ee9c0810b2f7bd64b7b504f19d1a8a3bde062a966]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-343/zkevm.report.txt b/BIPs/4269-W69/BIP-343/zkevm.report.txt new file mode 100644 index 000000000..118b783e5 --- /dev/null +++ b/BIPs/4269-W69/BIP-343/zkevm.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/4269-W69/BIP-343/zkevm.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': 'e20fef0f-31dc-43ac-a81e-ff6a9f4b562b', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+=====================+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20230320-weighted-pool-v4/WeightedPool/disableRecoveryMode() | 0xd21198f97672ee6118c9598a1b4c2053515bf28a40c4df5cf02365c4ff3d5ba7 | BIP-343 | 0 | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/disableRecoveryMode() | 0x5610aeafaa3f5c4ef9b9b45ee9c0810b2f7bd64b7b504f19d1a8a3bde062a966 | | | ++-----------------------+---------------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/BIP-388/BIP-388.md b/BIPs/4269-W69/BIP-388/BIP-388.md new file mode 100644 index 000000000..9d72b70da --- /dev/null +++ b/BIPs/4269-W69/BIP-388/BIP-388.md @@ -0,0 +1,38 @@ +## Payload PR - BIP-388 +https://github.com/BalancerMaxis/multisig-ops/pull/405 + +## Background +Contracts are deployed, and everything is looking good for Balancers launch on Base Chain. This BIP includes a number of final steps that must be taken to get everything working. + +Along with the typical wireup of permissions, the Gauge Factory and Authorizer Wrapper are also being configured, and a 50% protocol fee is being set. +## English Specification + +The transaction details for `base.json` were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-388) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|-----------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [base.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/base.json) | Permissions Changes on base described by the outputs above | + | [BIP-388A.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/BIP-388A.json) | Sets 50% Protocol Fees on Base Chain as per current standards | + | [BIP-388B.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/BIP-388B.json) | Wires up the Gauge Factory to allow Gauges receive bal. | + | [BIP-388C.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/2023-W30/BIP-388/BIP-388C.json) | Enables the Authroizer Wrapper - see [BIP-277](https://forum.balancer.fi/t/bip-277-enable-authorizer-wrapper/4718) | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification +- `base.json` applies the standard permissions described in the tables above. +- `BIP-388A.json` sets protocol fees to 50%. +- `BIP-388B.json` Wires the Gauge Factory up to the Psuedominter, adding and removing permisisons to do so in the process. +- `BIP-388C.json` Enables the authorizer wrapper, adding and removing permissions to do so in the process. +## Risk Assessment +This is all part of the standard process for provisioning a new chain. There are currently no deposits on base chain, this presents to risk to current protocol operations. + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/4269-W69/BIP-388/BIP-388A.json b/BIPs/4269-W69/BIP-388/BIP-388A.json new file mode 100644 index 000000000..6665d8fe8 --- /dev/null +++ b/BIPs/4269-W69/BIP-388/BIP-388A.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1686067971268, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x59381d53c574f2657107abe890b25a810d77cb46b581386c7fe77535cc956861" + }, + "transactions": [ + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-388/BIP-388A.report.txt b/BIPs/4269-W69/BIP-388/BIP-388A.report.txt new file mode 100644 index 000000000..4192b2d0f --- /dev/null +++ b/BIPs/4269-W69/BIP-388/BIP-388A.report.txt @@ -0,0 +1,27 @@ +FILENAME: `BIPs/4269-W69/BIP-388/BIP-388A.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/073ab930-d12e-4b2e-9b37-876b62efe87e) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +| setFeeTypePercentage | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-388 | N/A | +| | | | "feeType": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | +| setFeeTypePercentage | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-388 | N/A | +| | | | "feeType": [ | | | +| | | | "2" | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/BIP-388/BIP-388B.json b/BIPs/4269-W69/BIP-388/BIP-388B.json new file mode 100644 index 000000000..c5384b778 --- /dev/null +++ b/BIPs/4269-W69/BIP-388/BIP-388B.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1686068663750, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0x01048d1c790c6db6c7895fdf16f9fcc502ee906857b307aed2247177f9948769" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + }, + { + "to": "0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-388/BIP-388B.report.txt b/BIPs/4269-W69/BIP-388/BIP-388B.report.txt new file mode 100644 index 000000000..53c12a289 --- /dev/null +++ b/BIPs/4269-W69/BIP-388/BIP-388B.report.txt @@ -0,0 +1,29 @@ +FILENAME: `BIPs/4269-W69/BIP-388/BIP-388B.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/d07e21b2-e2d5-4500-82be-6e170bf0a793) +``` ++------------------------------+---------------+--------------------------------------------+----------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++------------------------------+---------------+--------------------------------------------+----------+--------------------------------------------------------------------+---------+----------+ +| !!!!NOT-FOUND??/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | | 0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8 | BIP-388 | 0 | +| !!!!NOT-FOUND??/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | | 0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8 | BIP-388 | 2 | ++------------------------------+---------------+--------------------------------------------+----------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/4269-W69/BIP-388/BIP-388B.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/de0c0332-b01b-4efc-b314-909cdd16add0) +``` ++-----------------+--------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+--------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +| addGaugeFactory | 0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7 (Not Found) | 0 | { | BIP-388 | N/A | +| | | | "factory": [ | | | +| | | | "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/BIP-388/BIP-388C.json b/BIPs/4269-W69/BIP-388/BIP-388C.json new file mode 100644 index 000000000..2ef3d5446 --- /dev/null +++ b/BIPs/4269-W69/BIP-388/BIP-388C.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1686068946662, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "0xeab75e48deff14b80dee97f3e36117ad773a19fea0bfcee5b957428e6a610603" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-388/BIP-388C.report.txt b/BIPs/4269-W69/BIP-388/BIP-388C.report.txt new file mode 100644 index 000000000..e6da24b24 --- /dev/null +++ b/BIPs/4269-W69/BIP-388/BIP-388C.report.txt @@ -0,0 +1,29 @@ +FILENAME: `BIPs/4269-W69/BIP-388/BIP-388C.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/dfb0230f-2515-4510-bc0f-06b5495da3c6) +``` ++------------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++------------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| !!!!NOT-FOUND??/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 0 | +| !!!!NOT-FOUND??/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 2 | ++------------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/4269-W69/BIP-388/BIP-388C.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/479da2d9-db31-4d77-9af3-394adfd80af7) +``` ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-388 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/BIP-388/README.md b/BIPs/4269-W69/BIP-388/README.md new file mode 100644 index 000000000..bf038efdb --- /dev/null +++ b/BIPs/4269-W69/BIP-388/README.md @@ -0,0 +1 @@ +[See Here](BIP-388.md) for the governance contents. diff --git a/BIPs/4269-W69/BIP-388/base.json b/BIPs/4269-W69/BIP-388/base.json new file mode 100644 index 000000000..fd8203324 --- /dev/null +++ b/BIPs/4269-W69/BIP-388/base.json @@ -0,0 +1,190 @@ +{ + "version": "1.0", + "chainId": 8453, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9, 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e, 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717, 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157, 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7, 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01, 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01, 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e, 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed, 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c, 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3, 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03]", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df, 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4, 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0, 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5, 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d, 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4, 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34]", + "account": "0x76f7204B62f554b79d444588EDac9dfA7032c71a" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d]", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/4269-W69/BIP-388/base.report.txt b/BIPs/4269-W69/BIP-388/base.report.txt new file mode 100644 index 000000000..e99bfaa4b --- /dev/null +++ b/BIPs/4269-W69/BIP-388/base.report.txt @@ -0,0 +1,69 @@ +FILENAME: `BIPs/4269-W69/BIP-388/base.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/eb6707a0-cf09-4211-a5a4-bdc7e4bf7a14) +``` ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRoles | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-388 | 0 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | | | +| Authorizer/grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | BIP-388 | 1 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPoolFactory/disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPoolFactory/disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPoolFactory/disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPoolFactory/disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | BIP-388 | 2 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | +| Authorizer/grantRoles | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BIP-388 | 3 | +| | | | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-388 | 4 | +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | BIP-388 | 5 | +| | | | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | | | +| Authorizer/grantRoles | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | BIP-388 | 6 | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/BIP-388/function_descriptions.md b/BIPs/4269-W69/BIP-388/function_descriptions.md new file mode 100644 index 000000000..26a94aaec --- /dev/null +++ b/BIPs/4269-W69/BIP-388/function_descriptions.md @@ -0,0 +1,26 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| setTargets(uint256,uint256) | Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens. | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| withdrawCollectedFees(address[],uint256[],address) | Allows the withdrawal of collected protocol fees | +| setFlashLoanFeePercentage(uint256) | Sets the protocol fee charged on flash loans for this deployment | +| setPaused(bool) | Stops all trading activity involving the vault | +| setFeeTypePercentage(uint256,uint256) | Sets the protocol fee for a particular fee type for this deployment | +| add_reward(address,address) | Allows adding of an external reward token to gauges. | +| denylistToken(address) | Adds a token to the ProtocolFeeWithdrawer deny list which prevents the withdrawal of that token from the ProtocolFeeCollector | +| removePoolFactory(address) | Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| addPoolFactory(address) | Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| registerProtocolId(uint256,string) | Register a new DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | +| renameProtocolId(uint256,string) | Change the name of a DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | diff --git a/BIPs/4269-W69/BIP-388/inputs.json b/BIPs/4269-W69/BIP-388/inputs.json new file mode 100644 index 000000000..9d55490ed --- /dev/null +++ b/BIPs/4269-W69/BIP-388/inputs.json @@ -0,0 +1,112 @@ +[ + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "/pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + }, + "deployments": [ + "weighted-pool-v4", + "composable-stable-pool-v5", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2" + ] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "batch-relayer-v5/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + }, + "deployments": ["20210418-vault"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/lm"], + "addPoolFactory(address)": ["multisigs/lm"] + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "base": 8453 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + }, + "deployments": ["20230223-protocol-id-registry"] + } +] diff --git a/BIPs/4269-W69/BIP-388/results_address_sorted.md b/BIPs/4269-W69/BIP-388/results_address_sorted.md new file mode 100644 index 000000000..faa48c067 --- /dev/null +++ b/BIPs/4269-W69/BIP-388/results_address_sorted.md @@ -0,0 +1,60 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20230320-weighted-pool-v4 | base | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230711-composable-stable-pool-v5 | base | enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-erc4626-linear-pool-v4 | base | enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-gearbox-linear-pool-v2 | base | enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-yearn-linear-pool-v2 | base | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230410-aave-linear-pool-v5 | base | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230411-managed-pool-v2 | base | enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230320-weighted-pool-v4 | base | pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20210418-vault | base | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20220517-protocol-fee-withdrawer | base | denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-erc4626-linear-pool-v4 | base | setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-erc4626-linear-pool-v4 | base | setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-gearbox-linear-pool-v2 | base | setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-gearbox-linear-pool-v2 | base | setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-yearn-linear-pool-v2 | base | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-yearn-linear-pool-v2 | base | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230410-aave-linear-pool-v5 | base | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230410-aave-linear-pool-v5 | base | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230316-child-chain-gauge-factory-v2 | base | add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20220517-protocol-fee-withdrawer | base | withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20221123-pool-recovery-helper | base | removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20221123-pool-recovery-helper | base | addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230223-protocol-id-registry | base | registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230223-protocol-id-registry | base | renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20210418-vault | base | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | +| 20220725-protocol-fee-percentages-provider | base | setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | +| 20210418-vault | base | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | +| 20210418-vault | base | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | \ No newline at end of file diff --git a/BIPs/4269-W69/BIP-388/results_deployment_sorted.md b/BIPs/4269-W69/BIP-388/results_deployment_sorted.md new file mode 100644 index 000000000..4bb1867ca --- /dev/null +++ b/BIPs/4269-W69/BIP-388/results_deployment_sorted.md @@ -0,0 +1,60 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | base | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | +| 20210418-vault | base | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20210418-vault | base | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | +| 20210418-vault | base | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | +| 20210418-vault | base | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | +| 20220517-protocol-fee-withdrawer | base | denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20220517-protocol-fee-withdrawer | base | withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20220725-protocol-fee-percentages-provider | base | setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | +| 20221123-pool-recovery-helper | base | addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20221123-pool-recovery-helper | base | removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230223-protocol-id-registry | base | registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230223-protocol-id-registry | base | renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230316-child-chain-gauge-factory-v2 | base | add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230320-weighted-pool-v4 | base | disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230320-weighted-pool-v4 | base | pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230320-weighted-pool-v4 | base | setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-erc4626-linear-pool-v4 | base | disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-erc4626-linear-pool-v4 | base | pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-erc4626-linear-pool-v4 | base | setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-erc4626-linear-pool-v4 | base | setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-gearbox-linear-pool-v2 | base | disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-gearbox-linear-pool-v2 | base | pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-gearbox-linear-pool-v2 | base | setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-gearbox-linear-pool-v2 | base | setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-yearn-linear-pool-v2 | base | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230409-yearn-linear-pool-v2 | base | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230409-yearn-linear-pool-v2 | base | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230409-yearn-linear-pool-v2 | base | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230410-aave-linear-pool-v5 | base | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230410-aave-linear-pool-v5 | base | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230410-aave-linear-pool-v5 | base | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230410-aave-linear-pool-v5 | base | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230411-managed-pool-v2 | base | disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230411-managed-pool-v2 | base | enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230411-managed-pool-v2 | base | pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | +| 20230711-composable-stable-pool-v5 | base | pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | +| 20230711-composable-stable-pool-v5 | base | setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | +| 20230711-composable-stable-pool-v5 | base | stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | \ No newline at end of file diff --git a/BIPs/4269-W69/brib_payloads/2024-01-05.json b/BIPs/4269-W69/brib_payloads/2024-01-05.json new file mode 100644 index 000000000..6c13121cb --- /dev/null +++ b/BIPs/4269-W69/brib_payloads/2024-01-05.json @@ -0,0 +1,2480 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "222127060001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "77744470000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4184700000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14052630000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "601080000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1727580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16311870000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "818340000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2108710000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1933430000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4990870000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1827400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1550880000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3946220000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2519310000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1615460000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1616610000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3067730000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "897750000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "18714660000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "963880000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1099050000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2534620000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3828210000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1646820000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4350760000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1181870000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "668380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3720020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1488900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2510380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5690060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4298940000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14436250000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1774750000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16757160000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2166270000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1986220000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5127120000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1877280000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1593210000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4053950000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2588080000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1659570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1660750000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3151470000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "19225540000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1129060000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2603810000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3932720000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1691770000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4469540000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3821570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1529550000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2578910000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5845390000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "144382542962" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "8816648566492391320475" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "foobar broken test", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2578910000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + } + ] +} diff --git a/BIPs/4269-W69/brib_payloads/2024-01-05.report.txt b/BIPs/4269-W69/brib_payloads/2024-01-05.report.txt new file mode 100644 index 000000000..aabcc8509 --- /dev/null +++ b/BIPs/4269-W69/brib_payloads/2024-01-05.report.txt @@ -0,0 +1,204 @@ +FILENAME: `BIPs/4269-W69/brib_payloads/2024-01-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `5a8d4a0f3d458a54c84f514d097b9ac8679247b0` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 77744.47 (RAW: 77744470000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 144382.542962 (RAW: 144382542962) | N/A | 56 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 8816.648566492391 (RAW: 8816648566492391320475) | N/A | 57 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `BIPs/4269-W69/brib_payloads/2024-01-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `5a8d4a0f3d458a54c84f514d097b9ac8679247b0` +CHAIN(S): `mainnet` +``` ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+========================================================================+============================+====================================================================+===========+============+ +| depositBribe | WETH wstETH | USDC 4184.7(4184700000) | balancer | 2 | 2 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH WETH | USDC 14052.63(14052630000) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH swETH | USDC 601.08(601080000) | balancer | 2 | 4 | +| | 0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca | | 0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | cbETH wstETH (GYROE) | USDC 1727.58(1727580000) | balancer | 2 | 5 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 16311.87(16311870000) | balancer | 2 | 6 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | staFi rETH WETH | USDC 818.34(818340000) | balancer | 2 | 7 | +| | 0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445 | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 2108.71(2108710000) | balancer | 2 | 8 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH-50% RPL-50% | USDC 1933.43(1933430000) | balancer | 2 | 9 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-50% STG-50% | USDC 4990.87(4990870000) | balancer | 2 | 10 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 1827.4(1827400000) | balancer | 2 | 11 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 1550.88(1550880000) | balancer | 2 | 12 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH wstETH sfrxETH | USDC 3946.22(3946220000) | balancer | 2 | 13 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% RDNT-80% | USDC 2519.31(2519310000) | balancer | 2 | 14 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH rETH | USDC 1615.46(1615460000) | balancer | 2 | 15 | +| | 0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497 | | 0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH WETH | USDC 1616.61(1616610000) | balancer | 2 | 16 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH cbETH wstETH | USDC 3067.73(3067730000) | balancer | 2 | 17 | +| | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | | 0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) USDC DAI USDT USDC.e | USDC 897.75(897750000) | balancer | 2 | 18 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 18714.66(18714660000) | balancer | 2 | 19 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sfrxETH rETH wstETH | USDC 963.88(963880000) | balancer | 2 | 20 | +| | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | | 0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 1099.05(1099050000) | balancer | 2 | 21 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) RDNT-WETH plsRDNT | USDC 2534.62(2534620000) | balancer | 2 | 22 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC stMATIC (GYROE) | USDC 3828.21(3828210000) | balancer | 2 | 23 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 1646.82(1646820000) | balancer | 2 | 24 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) MaticX WMATIC | USDC 4350.76(4350760000) | balancer | 2 | 25 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH cbETH | USDC 1181.87(1181870000) | balancer | 2 | 26 | +| | 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026 | | 0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 668.38(668380000) | balancer | 2 | 27 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) sAVAX WAVAX | USDC 3720.02(3720020000) | balancer | 2 | 28 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX ggAVAX | USDC 1488.9(1488900000) | balancer | 2 | 29 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX yyAVAX | USDC 2510.38(2510380000) | balancer | 2 | 30 | +| | 0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f | | 0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 5690.06(5690060000) | balancer | 2 | 31 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | PhantomStable WETH/wstETH | USDC 4298.94(4298940000) | aura | 1 | 32 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable rETH/WETH | USDC 14436.25(14436250000) | aura | 1 | 33 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe cbETH/wstETH | USDC 1774.75(1774750000) | aura | 1 | 34 | +| | Not Found | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 16757.16(16757160000) | aura | 1 | 35 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | PhantomStable wstETH/ankrETH | USDC 2166.27(2166270000) | aura | 1 | 36 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 rETH/RPL | USDC 1986.22(1986220000) | aura | 1 | 37 | +| | Not Found | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 USDC/STG | USDC 5127.12(5127120000) | aura | 1 | 38 | +| | Not Found | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 1877.28(1877280000) | aura | 1 | 39 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 1593.21(1593210000) | aura | 1 | 40 | +| | Not Found | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | PhantomStable rETH/wstETH/sfrxETH | USDC 4053.95(4053950000) | aura | 1 | 41 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 2588.08(2588080000) | aura | 1 | 42 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable WETH/rETH | USDC 1659.57(1659570000) | aura | 1 | 43 | +| | Not Found | | 0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable wstETH/WETH | USDC 1660.75(1660750000) | aura | 1 | 44 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable rETH/cbETH/wstETH | USDC 3151.47(3151470000) | aura | 1 | 45 | +| | Not Found | | 0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 19225.54(19225540000) | aura | 1 | 46 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable ankrETH/wstETH | USDC 1129.06(1129060000) | aura | 1 | 47 | +| | Not Found | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-PhantomStable RDNT-WETH/plsRDNT | USDC 2603.81(2603810000) | aura | 1 | 48 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 3932.72(3932720000) | aura | 1 | 49 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/MaticX | USDC 1691.77(1691770000) | aura | 1 | 50 | +| | Not Found | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-PhantomStable MaticX/WMATIC | USDC 4469.54(4469540000) | aura | 1 | 51 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-PhantomStable sAVAX/WAVAX | USDC 3821.57(3821570000) | aura | 1 | 52 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-PhantomStable WAVAX/ggAVAX | USDC 1529.55(1529550000) | aura | 1 | 53 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-PhantomStable WAVAX/yyAVAX | USDC 2578.91(2578910000) | aura | 1 | 54 | +| | Not Found | | 0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-PhantomStable WETH/wstETH | USDC 5845.39(5845390000) | aura | 1 | 55 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Can not find proposal foobar broken test on the aura incentive market. | N/A | 58 | | | ++--------------+------------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `BIPs/4269-W69/brib_payloads/2024-01-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `5a8d4a0f3d458a54c84f514d097b9ac8679247b0` +CHAIN(S): `mainnet` +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "222127060001" | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/brib_payloads/brokenprops.json b/BIPs/4269-W69/brib_payloads/brokenprops.json new file mode 100644 index 000000000..3c2139c5c --- /dev/null +++ b/BIPs/4269-W69/brib_payloads/brokenprops.json @@ -0,0 +1,144 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x00000e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5690060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba44000000", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4298940000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x000569f067c8ce7105bddd07c2dd92a25798c53e61290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14436250000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + } + ] +} diff --git a/BIPs/4269-W69/brib_payloads/brokenprops.report.txt b/BIPs/4269-W69/brib_payloads/brokenprops.report.txt new file mode 100644 index 000000000..c80746f1f --- /dev/null +++ b/BIPs/4269-W69/brib_payloads/brokenprops.report.txt @@ -0,0 +1,15 @@ +FILENAME: `BIPs/4269-W69/brib_payloads/brokenprops.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `5a8d4a0f3d458a54c84f514d097b9ac8679247b0` +CHAIN(S): `mainnet` +``` ++--------------+----------------------------------------------------------------------------------------------------------------------------+-------+------------+ +| function | error | bip | tx_index | ++==============+============================================================================================================================+=======+============+ +| depositBribe | Can not find proposal 0x00000e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 on the balancer incentive market. | N/A | 0 | ++--------------+----------------------------------------------------------------------------------------------------------------------------+-------+------------+ +| depositBribe | Can not find proposal 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba44000000 on the aura incentive market. | N/A | 1 | ++--------------+----------------------------------------------------------------------------------------------------------------------------+-------+------------+ +| depositBribe | Can not find proposal 0x000569f067c8ce7105bddd07c2dd92a25798c53e61290d7c202d27e7072cbf on the aura incentive market. | N/A | 2 | ++--------------+----------------------------------------------------------------------------------------------------------------------------+-------+------------+ +``` diff --git a/BIPs/4269-W69/rate_providers/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json b/BIPs/4269-W69/rate_providers/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json new file mode 100644 index 000000000..4549fb44c --- /dev/null +++ b/BIPs/4269-W69/rate_providers/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467092198, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x87306F713EaB296f87CA4519295668fb4Bd51F04", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/4269-W69/rate_providers/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.report.txt b/BIPs/4269-W69/rate_providers/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.report.txt new file mode 100644 index 000000000..afe80119f --- /dev/null +++ b/BIPs/4269-W69/rate_providers/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/rate_providers/BIP-601-paUSD-stataPolUSDCn-gauge-polygon.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `polygon` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/e8d3f25a-2d53-4779-976b-b0b97c02f2a2) +``` ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xc77a0c0998816f7862aba46f19be6dda7cbb65a8000200000000000000000e77 | ECLP-paUSD-USDC-rh | 0x87306F713EaB296f87CA4519295668fb4Bd51F04 | 0x2dCa80061632f3F87c9cA28364d1d0c30cD79a19: stataPolUSDCn | 0x7d10050F608c8EFFf118eDd1416D82a0EF2d7531 | !!NO REVIEW!! | BIP-601 | 0 | +| | pool_address: 0xc77A0c0998816f7862aba46F19be6DDa7cbb65a8 | fee: 0.01 | Style: L0 sidechain | 0x8054d4D130C3A84852f379424Bcac75673a7486B: paUSD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+-----------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/rate_providers/BIP-603-enable-par-eura-gauge-polygon.json b/BIPs/4269-W69/rate_providers/BIP-603-enable-par-eura-gauge-polygon.json new file mode 100644 index 000000000..db929212d --- /dev/null +++ b/BIPs/4269-W69/rate_providers/BIP-603-enable-par-eura-gauge-polygon.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714467092198, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x7f5A5c80cEeB1C91718a71030F67788F3810be98", + "gaugeType": "Polygon" + } + } + ] +} diff --git a/BIPs/4269-W69/rate_providers/BIP-603-enable-par-eura-gauge-polygon.report.txt b/BIPs/4269-W69/rate_providers/BIP-603-enable-par-eura-gauge-polygon.report.txt new file mode 100644 index 000000000..f0e0625cd --- /dev/null +++ b/BIPs/4269-W69/rate_providers/BIP-603-enable-par-eura-gauge-polygon.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/rate_providers/BIP-603-enable-par-eura-gauge-polygon.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `polygon` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/bab0cab1-5124-4454-a6fb-bf199b698be9) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xba773022202887379f0733f111e4580f53296ada000200000000000000000e76 | ECLP-PAR-EUROe | 0x7f5A5c80cEeB1C91718a71030F67788F3810be98 | 0x820802Fa8a99901F52e39acD21177b0BE6EE2974: EUROe | 0x0000000000000000000000000000000000000000 | -- | BIP-603 | 0 | +| | pool_address: 0xBA773022202887379f0733f111E4580F53296ada | fee: 0.01 | Style: L0 sidechain | 0xE2Aa7db6dA1dAE97C5f5C6914d285fBfCC32A128: PAR | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/rate_providers/BIP-605-inankrETH-ankrETH-Gauge.json b/BIPs/4269-W69/rate_providers/BIP-605-inankrETH-ankrETH-Gauge.json new file mode 100644 index 000000000..3196f4b30 --- /dev/null +++ b/BIPs/4269-W69/rate_providers/BIP-605-inankrETH-ankrETH-Gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715204879583, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x5e4815b7ae668c5838388742529594458279d3b5e3e609d3e7d3ee7e4704bcc5" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xCC9723faDed81a9448a9664c39C0Df2e77FDfA2E", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/rate_providers/BIP-605-inankrETH-ankrETH-Gauge.report.txt b/BIPs/4269-W69/rate_providers/BIP-605-inankrETH-ankrETH-Gauge.report.txt new file mode 100644 index 000000000..4d45e40c4 --- /dev/null +++ b/BIPs/4269-W69/rate_providers/BIP-605-inankrETH-ankrETH-Gauge.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/rate_providers/BIP-605-inankrETH-ankrETH-Gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `mainnet` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/1d513c7c-c8b0-4761-be76-c8c670d97e54) +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xdb3575310dd8f6c9e51be290fed9a2db32743fde00000000000000000000068e | inankrETH/ankrETH | 0xCC9723faDed81a9448a9664c39C0Df2e77FDfA2E | 0xdB3575310Dd8F6c9E51be290FeD9a2Db32743FDE: inankrETH/ankrETH | 0x0000000000000000000000000000000000000000 | -- | BIP-605 | 0 | +| | pool_address: 0xdB3575310Dd8F6c9E51be290FeD9a2Db32743FDE | fee: 0.04 | Style: mainnet | 0xE95A203B1a91a908F9B9CE46459d101078c2c3cb: ankrETH | 0x00F8e64a8651E3479A0B20F46b1D462Fe29D6aBc | safe | | | +| | | a-factor: 200 | cap: 100.0% | 0xfa2629B9cF3998D52726994E0FcdB750224D8B9D: InankrETH | 0x8bC73134A736437da780570308d3b37b67174ddb | safe | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/rate_providers/BIP-606-wOETH-wETH-Gauge.json b/BIPs/4269-W69/rate_providers/BIP-606-wOETH-wETH-Gauge.json new file mode 100644 index 000000000..ed5b6db50 --- /dev/null +++ b/BIPs/4269-W69/rate_providers/BIP-606-wOETH-wETH-Gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715205467820, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb1806db12c8a5fb1931c85d64fce6558b2ba928fce9bef1c614279fb56c1086c" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/4269-W69/rate_providers/BIP-606-wOETH-wETH-Gauge.report.txt b/BIPs/4269-W69/rate_providers/BIP-606-wOETH-wETH-Gauge.report.txt new file mode 100644 index 000000000..27662b9c5 --- /dev/null +++ b/BIPs/4269-W69/rate_providers/BIP-606-wOETH-wETH-Gauge.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/rate_providers/BIP-606-wOETH-wETH-Gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/3f639f21-2034-42d0-bf93-b13dc215addd) +``` ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a | ECLP-WOETH-WETH | 0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b | 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1: WETH | 0x0000000000000000000000000000000000000000 | -- | BIP-606 | 0 | +| | pool_address: 0xef0c116A2818A5b1A5D836A291856A321f43C2Fb | fee: 0.04 | Style: L0 sidechain | 0xD8724322f44E5c58D7A815F542036fb17DbbF839: WOETH | 0xEfA422c31fc71A636c2C630d226DbA4ccEd1073a | !!NO REVIEW!! | | | +| | | a-factor: N/A | cap: 2.0% | | | | | | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..ec0d266f5 --- /dev/null +++ b/BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,447 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9F7dfAb2222A473284205cdDF08a677726d786A0", + "amount": "500000000000000000000" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-526.json", + "bip_number": "BIP-526" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "wad": "8480000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-524.json", + "bip_number": "BIP-524" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "17170000000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-524.json", + "bip_number": "BIP-524" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2", + "value": "5000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-525.json", + "bip_number": "BIP-525" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "20000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-525.json", + "bip_number": "BIP-525" + } + }, + { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "300000000000000000", + "data": "0x", + "contractMethod": null, + "contractInputsValues": { + "spender": "", + "value": "" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-525.json", + "bip_number": "BIP-525" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-527.json", + "bip_number": "BIP-527" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x16289F675Ca54312a8fCF99341e7439982888077", + "data": "0xd34fb267" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-527.json", + "bip_number": "BIP-527" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-527.json", + "bip_number": "BIP-527" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x790DE8ABE859f399023BCe73B5FE5C4870cD816A", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W2/BIP-527.json", + "bip_number": "BIP-527" + } + } + ] +} diff --git a/BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..b73f08339 --- /dev/null +++ b/BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,121 @@ +FILENAME: `BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e96289e4-afdf-495a-a1e2-b5d80c1e8c4e) +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+==============+=====+============================================+=======+=======+==============+=========+============+======================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a | 2eur (agEUR) | 200 | 0x790DE8ABE859f399023BCe73B5FE5C4870cD816A | 0.05% | 2.0% | L0 sidechain | BIP-527 | 14 | ['jEUR(0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c)', '2eur (agEUR)(0x77e97D4908Be63394bc5DFf72C8C7Bddf1699882)', 'EURA(0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4)'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+-------+--------------+---------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/32b5bb62-2220-48c1-804d-b9e783669ca7) +``` ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+==================================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/mounibec:0x0951FF0835302929d6c0162b3d2495A85e38ec3A | 500.0 (RAW: 500000000000000000000) | BIP-526 | 0 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xMaki:0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 1 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xSausageDoge:0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 2 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/tritium:0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | 500.0 (RAW: 500000000000000000000) | BIP-526 | 3 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/nanexcool:0x823DF0278e4998cD0D06FB857fBD51e85b18A250 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 4 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/StefanDGeorge:0x9F7dfAb2222A473284205cdDF08a677726d786A0 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 5 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 8.48 (RAW: 8480000000000000000) | BIP-524 | 6 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 17170.0 (RAW: 17170000000000000000000) | BIP-524 | 7 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors/json:0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2 | 5000.0 (RAW: 5000000000) | BIP-525 | 8 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 20000.0 (RAW: 20000000000) | BIP-525 | 9 | ++------------+-------------------------------------------------+------------------------------------------------------------------+----------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/859bf789-b96a-4899-80fc-ed5dd4d6fed6) +``` ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===============+============================================+===============================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 11 | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 13 | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/4269-W69/test/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/056014bb-dd06-4f03-a0bc-7de0a8afa2d3) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------+----------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+===============================+==============================================================================================+==============+============+ +| !!N/A!! | 0xC7E84373FC63A17B5B22EBaF86219141B630cD7a (multisigs/bizdev) | 300000000000000000/1e18 = 0.3 | { | BIP-525 | N/A | +| | | | "spender": [ | | | +| | | | [ | | | +| | | | "" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | [ | | | +| | | | "" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------+----------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | BIP-527 | N/A | +| | | | "target": [ | | | +| | | | "0x16289F675Ca54312a8fCF99341e7439982888077 (root_gauges/2eur (PAR)-polygon-root-1628) " | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | [ | | | +| | | | "0xd34fb267" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------+----------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/test/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/4269-W69/test/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..0eb299b3b --- /dev/null +++ b/BIPs/4269-W69/test/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA4DAA3498677D655E359b0Fc83EbDbd8dbF76a50", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-384A.json", + "bip_number": "BIP-384" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x56c0626E6E3931af90EbB679A321225180d4b32B", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-380.json", + "bip_number": "BIP-380" + } + } + ] +} diff --git a/BIPs/4269-W69/test/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/4269-W69/test/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..46164ce87 --- /dev/null +++ b/BIPs/4269-W69/test/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,19 @@ +FILENAME: `BIPs/4269-W69/test/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c0463760e3552964de82a8183db19e455bb6ba28` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/d49fbdc0-6d72-47ad-94c9-78afd682b8da) +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+=====================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x84a1038d55e887c2abb8cb02ccf4c9d3871c859a000000000000000000000489 | Stafi rETH/WETH | 0xA4DAA3498677D655E359b0Fc83EbDbd8dbF76a50 | "rETH (0x6CDA1D3D092811b2d48F7476adb59A6239CA9b95)", | "0x728bbE0668398F229c64eE95B34c4DBcA32699c0", | BIP-384 | 0 | +| | pool_address: 0x84A1038D55e887c2ABb8cB02ccf4C9d3871C859a | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 10.0% | "WETH (0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "Stafi rETH/WETH (0x84A1038D55e887c2ABb8cB02ccf4C9d3871C859a)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | wstETH/rETH/cbETH | 0x56c0626E6E3931af90EbB679A321225180d4b32B | "cbETH (0x1DEBd73E752bEaF79865Fd6446b0c970EaE7732f)", | "0xd983d5560129475bFC210332422FAdCb4EcD09B0", | BIP-380 | 1 | +| | pool_address: 0x4a2F6Ae7F3e5D715689530873ec35593Dc28951B | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "wstETH/rETH/cbETH (0x4a2F6Ae7F3e5D715689530873ec35593Dc28951B)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH (0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "rETH (0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xA73ec45Fe405B5BFCdC0bF4cbc9014Bb32a01cd2" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/test/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/4269-W69/test/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..8b478f517 --- /dev/null +++ b/BIPs/4269-W69/test/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,452 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9, 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e, 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717, 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157, 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7, 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01, 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01, 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e, 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed, 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c, 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3, 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03]", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df, 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4, 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0, 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5, 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d, 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4, 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34]", + "account": "0x76f7204B62f554b79d444588EDac9dfA7032c71a" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d]", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388A.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388A.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + } + ] +} diff --git a/BIPs/4269-W69/test/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/4269-W69/test/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..2b1bab28d --- /dev/null +++ b/BIPs/4269-W69/test/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,123 @@ +FILENAME: `BIPs/4269-W69/test/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `c0463760e3552964de82a8183db19e455bb6ba28` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/a1dc0d01-7412-4855-ab4b-4a8ddd8bd836) +``` ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++==============================+===========================================================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-388 | 0 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | BIP-388 | 1 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPoolFactory/disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPoolFactory/disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPoolFactory/disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPoolFactory/disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | BIP-388 | 2 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BIP-388 | 3 | +| | | | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-388 | 4 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | BIP-388 | 5 | +| | | | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | BIP-388 | 6 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| !!!!NOT-FOUND??/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | | 0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8 | BIP-388 | 9 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| !!!!NOT-FOUND??/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | | 0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8 | BIP-388 | 11 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| !!!!NOT-FOUND??/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 12 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| !!!!NOT-FOUND??/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 14 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/4269-W69/test/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `c0463760e3552964de82a8183db19e455bb6ba28` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/e542a761-0bea-4b96-8d5b-c8235a8fe213) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++======================+========================================================================================================================+=========+================================================================================================================+==============+============+ +| setFeeTypePercentage | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-388 | N/A | +| | | | "feeType": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setFeeTypePercentage | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-388 | N/A | +| | | | "feeType": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| addGaugeFactory | 0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7 (Not Found) | 0 | { | BIP-388 | N/A | +| | | | "factory": [ | | | +| | | | "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-388 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/test/BIP-303/BIP-303.md b/BIPs/4269-W69/test/BIP-303/BIP-303.md new file mode 100644 index 000000000..1cbdd7c6a --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/BIP-303.md @@ -0,0 +1,98 @@ +## [Payload PR - BIP-303](https://github.com/BalancerMaxis/multisig-ops/pull/201) + +## Background +Talk about the background of this BIP here +## English Specification + +The transaction details were generated by [this script](https://github.com/BalancerMaxis/multisig-ops/blob/main/action-scripts/gen_add_permissions_payload.py) with inputs and outputs in [this directory](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-303) + +The following files can be found both linked below and in the payload PR linked above: + +| Filename | Description of Contents | +|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------| +| [inputs.json](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-303/inputs.json) | The inputs to the script mapping functions and deployments to target addresses that can execute them. | +| [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-303/results_address_sorted.md) | The resulting changes printed in a table sorted by target chain and target address. (to easily understand permisisons granted) | +| [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-303/results_deployment_sorted.md) | The resulting changes printed in a table sorted by target chain and target deployment. (for verification against action ids) | +| [function_descriptions.md](https://github.com/BalancerMaxis/multisig-ops/blob/staging/BIPs/BIP-303/function_descriptions.md) | A table that describes what each function that is being granted privileged access to allows. | | +| [`chainname`.json](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-303/) | For each change with changes, a transaction builder json named after said chain exists to apply the changes described in the tables. | + +_More information about the various Balancer Multisigs and their functions can be found in the [multisig-ops repo](https://github.com/BalancerMaxis/multisig-ops/blob/staging/multisigs.md)_ + +# Specification + +As described in the payload json, the authorizer will be called to grant the roles as described. + +The change can be reviewed by the below by comparing the [results_deployment_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-183/results_deployment_sorted.md) file to the source of truth, which should match the order found in the source of truth for actionIds on the [balancer-deployments](https://github.com/balancer/balancer-deployments/tree/master/action-ids). + +For record, the contents of [results_address_sorted.md](https://github.com/BalancerMaxis/multisig-ops/tree/staging/BIPs/BIP-303/results_address_sorted.md) are printed here: + + + +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | zkevm | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a | +| 20220725-protocol-fee-percentages-provider | zkevm | setFeeTypePercentage(uint256,uint256) | 0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8 | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | +| 20210418-vault | zkevm | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20230320-weighted-pool-v4 | zkevm | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | disable() | 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | pause() | 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | disable() | 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | pause() | 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | disable() | 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | pause() | 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20210418-vault | zkevm | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20220517-protocol-fee-withdrawer | zkevm | denylistToken(address) | 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | stopAmplificationParameterUpdate() | 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setTargets(uint256,uint256) | 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setTargets(uint256,uint256) | 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230316-child-chain-gauge-factory-v2 | zkevm | add_reward(address,address) | 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20220517-protocol-fee-withdrawer | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | addPoolFactory(address) | 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | removePoolFactory(address) | 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | registerProtocolId(uint256,string) | 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | renameProtocolId(uint256,string) | 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +## Risk Assessment +This BIP is routine operation for provisioning a new factory. The new factories are themselves a risk mitigation. + + +## References + +[Balancer Deployments](https://github.com/balancer/balancer-deployments) +[BAL Addresses](https://github.com/BalancerMaxis/bal_addresses) diff --git a/BIPs/4269-W69/test/BIP-303/BIP-303A.json b/BIPs/4269-W69/test/BIP-303/BIP-303A.json new file mode 100644 index 000000000..a247d2697 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/BIP-303A.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684510645066, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0xe0954a327a51b9eb182d82a208febb00525cd26ecb38156f545e7ae1c13c2957" + }, + "transactions": [ + { + "to": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + } + }, + { + "to": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "feeType", "type": "uint256" }, + { "internalType": "uint256", "name": "newValue", "type": "uint256" } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-303/BIP-303A.report.txt b/BIPs/4269-W69/test/BIP-303/BIP-303A.report.txt new file mode 100644 index 000000000..7b411cd99 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/BIP-303A.report.txt @@ -0,0 +1,28 @@ +FILENAME: `BIPs/4269-W69/test/BIP-303/BIP-303A.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': 'de3bcc04-6f7c-4c7d-81a2-4931e09e3838', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+-------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++======================+========================================================================================================================+=========+=========================================================================+==============+============+ +| setFeeTypePercentage | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-303 | N/A | +| | | | "feeType": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+-------------------------------------------------------------------------+--------------+------------+ +| setFeeTypePercentage | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-303 | N/A | +| | | | "feeType": [ | | | +| | | | "2" | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+-------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/test/BIP-303/BIP-303B.json b/BIPs/4269-W69/test/BIP-303/BIP-303B.json new file mode 100644 index 000000000..ac0ac6891 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/BIP-303B.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684511152320, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x58189c93f6a7a5b182c9ac43fcc7aa7e65c042ecd570d6f2d428b0ef4cfa78f2" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0x475D18169BE8a89357A9ee3Ab00ca386d20fA229", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-303/BIP-303B.report.txt b/BIPs/4269-W69/test/BIP-303/BIP-303B.report.txt new file mode 100644 index 000000000..8edb8aa8d --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/BIP-303B.report.txt @@ -0,0 +1,30 @@ +FILENAME: `BIPs/4269-W69/test/BIP-303/BIP-303B.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': 'aae3aaa4-2729-465c-b2b0-684d2cf46a2e', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=========================+===============+============================================+====================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d | BIP-303 | 0 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/renounceRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | 20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter/addGaugeFactory(address) | 0x28eae42992658aefe28d2ca017a285a62376e3196f2ea3207d6e25d2dd31822d | BIP-303 | 2 | ++-------------------------+---------------+--------------------------------------------+------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/4269-W69/test/BIP-303/BIP-303B.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': '4501ba97-e5d4-4a4d-84fb-6e19a4b853b5', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++-----------------+--------------------------------------------------------------------------------------------------------+---------+-----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================================================================+=========+=================================================================================================================+==============+============+ +| addGaugeFactory | 0x475D18169BE8a89357A9ee3Ab00ca386d20fA229 (20230316-l2-balancer-pseudo-minter/L2BalancerPseudoMinter) | 0 | { | BIP-303 | N/A | +| | | | "factory": [ | | | +| | | | "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95 (20230316-child-chain-gauge-factory-v2/ChildChainGaugeFactory)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------------------------------------------------------+---------+-----------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/test/BIP-303/BIP-303C.json b/BIPs/4269-W69/test/BIP-303/BIP-303C.json new file mode 100644 index 000000000..9c07a0f55 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/BIP-303C.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1684511322475, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "0x236bc882129c879364d75680b94d8e2b7f0d08a7fd63554e039871a3cf632c8f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0x8df317a729fcaA260306d7de28888932cb579b88" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-303/BIP-303C.report.txt b/BIPs/4269-W69/test/BIP-303/BIP-303C.report.txt new file mode 100644 index 000000000..f2640cad5 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/BIP-303C.report.txt @@ -0,0 +1,30 @@ +FILENAME: `BIPs/4269-W69/test/BIP-303/BIP-303C.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': '9c53062a-d162-44c0-a266-2de86dd4074e', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=========================+===============+============================================+=============================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-303 | 0 | ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/renounceRole | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-303 | 2 | ++-------------------------+---------------+--------------------------------------------+---------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/4269-W69/test/BIP-303/BIP-303C.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `ac20d205d9ad4471d927528e74cd795bd447819e` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': '46beabc2-0e82-4166-aec5-ffe75a40f39e', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++---------------+-------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+===================================================================+=========+================================================================================================================+==============+============+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-303 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0x8df317a729fcaA260306d7de28888932cb579b88 (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/test/BIP-303/README.md b/BIPs/4269-W69/test/BIP-303/README.md new file mode 100644 index 000000000..1e1ff72e3 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/README.md @@ -0,0 +1 @@ +[See Here](BIP-303.md) for the governance contents. diff --git a/BIPs/4269-W69/test/BIP-303/function_descriptions.md b/BIPs/4269-W69/test/BIP-303/function_descriptions.md new file mode 100644 index 000000000..2796503f5 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/function_descriptions.md @@ -0,0 +1,26 @@ +| function | description | +| :---------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| disable() | Disables new creation of pools from a pool factory. | +| enableRecoveryMode() | Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72) | +| pause() | Stops trading in a pool. Proportinal withdraws are still possible. | +| setSwapFeePercentage(uint256) | **Pools:** Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1... | +| | **Deployments**: Sets the protocol fee charged on swaps for this deployment | +| startAmplificationParameterUpdate(uint256,uint256) | Start ramping up or down the A factor of a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| stopAmplificationParameterUpdate() | Stop A-factor change leaving the A-Factor at its currently set value on a stableswap pool that delegated ownership to Balancer Governance: 0xba1ba1... | +| setTargets(uint256,uint256) | Allows setting the targets of the linear pools. Targets determine the ideal amount of unwrapped tokens. | +| batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | Allow a relayer to make a multihop trade or source liquidity from multiple pools on a users behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to remove liquidity from a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | Allow a relayer to add liquidity to a pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| manageUserBalance((uint8,address,uint256,address,address)[]) | Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setPaused(bool) | Stops all trading activity involving the vault | +| setRelayerApproval(address,address,bool) | Approve the relayer on the user's behalf (user must still provide a signed message). [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | Allow a relayer to trade within a single pool on the user's behalf. [Relayer permissions notes](https://github.com/BalancerMaxis/multisig-ops/blob/main/docs/Authorizer/vault_permissions.md) | +| setFlashLoanFeePercentage(uint256) | Sets the protocol fee charged on flash loans for this deployment | +| withdrawCollectedFees(address[],uint256[],address) | Allows the withdrawal of collected protocol fees | +| setFeeTypePercentage(uint256,uint256) | Sets the protocol fee for a particular fee type for this deployment | +| add_reward(address,address) | Allows adding of an external reward token to gauges. | +| denylistToken(address) | Adds a token to the ProtocolFeeWithdrawer deny list which prevents the withdrawal of that token from the ProtocolFeeCollector | +| addPoolFactory(address) | Adds a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| removePoolFactory(address) | Removes a Pool Factory and all pools it created to the [poolRecoveryHelper](https://forum.balancer.fi/t/bip-121-permission-granting-recovery-mode/4045#grant-the-following-roles-to-the-balancer-labs-ops-multisigs-on-each-network-5) for monitoring | +| registerProtocolId(uint256,string) | Register a new DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | +| renameProtocolId(uint256,string) | Change the name of a DeFi protocol in the [linear pool registry](https://forum.balancer.fi/t/bip-xxx-grant-balancer-maxis-the-authorisation-to-register-protocolids-for-linearpools/4435) | diff --git a/BIPs/4269-W69/test/BIP-303/inputs.json b/BIPs/4269-W69/test/BIP-303/inputs.json new file mode 100644 index 000000000..d7c55cc3d --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/inputs.json @@ -0,0 +1,113 @@ +[ + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "setSwapFeePercentage(uint256)": ["multisigs/lm"], + "startAmplificationParameterUpdate(uint256,uint256)": ["multisigs/lm"], + "stopAmplificationParameterUpdate()": ["multisigs/lm"], + "pause()": ["multisigs/emergency"], + "disable()": ["multisigs/emergency"], + "enableRecoveryMode()": [ + "multisigs/emergency", + "20221123-pool-recovery-helper/PoolRecoveryHelper" + ], + "setTargets(uint256,uint256)": ["multisigs/lm"] + }, + "deployments": [ + "20230320-weighted-pool-v4", + "20230320-composable-stable-pool-v4", + "20230409-erc4626-linear-pool-v4", + "20230409-gearbox-linear-pool-v2", + "20230409-yearn-linear-pool-v2", + "20230410-aave-linear-pool-v5", + "20230411-managed-pool-v2", + "20230410-silo-linear-pool-v2" + ] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "exitPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "joinPool(bytes32,address,address,(address[],uint256[],bytes,bool))": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "manageUserBalance((uint8,address,uint256,address,address)[])": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "setRelayerApproval(address,address,bool)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256)": [ + "20230314-batch-relayer-v5/BalancerRelayer" + ], + "withdrawCollectedFees(address[],uint256[],address)": [ + "20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer" + ], + "setSwapFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setFlashLoanFeePercentage(uint256)": [ + "20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider" + ], + "setPaused(bool)": ["multisigs/emergency"] + }, + "deployments": ["20210418-vault"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "setFeeTypePercentage(uint256,uint256)": ["multisigs/dao"] + }, + "deployments": ["20220725-protocol-fee-percentages-provider"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "add_reward(address,address)": ["multisigs/lm"] + }, + "deployments": ["20230316-child-chain-gauge-factory-v2"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "denylistToken(address)": ["multisigs/emergency"], + "withdrawCollectedFees(address[],uint256[],address)": ["multisigs/lm"] + }, + "deployments": ["20220517-protocol-fee-withdrawer"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "removePoolFactory(address)": ["multisigs/lm"], + "addPoolFactory(address)": ["multisigs/lm"] + }, + "deployments": ["20221123-pool-recovery-helper"] + }, + { + "chain_map": { + "zkevm": 1101 + }, + "function_caller_map": { + "registerProtocolId(uint256,string)": ["multisigs/lm"], + "renameProtocolId(uint256,string)": ["multisigs/lm"] + }, + "deployments": ["20230223-protocol-id-registry"] + } +] diff --git a/BIPs/4269-W69/test/BIP-303/results_address_sorted.md b/BIPs/4269-W69/test/BIP-303/results_address_sorted.md new file mode 100644 index 000000000..f28cefcb6 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/results_address_sorted.md @@ -0,0 +1,60 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | zkevm | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a | +| 20220725-protocol-fee-percentages-provider | zkevm | setFeeTypePercentage(uint256,uint256) | 0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8 | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | +| 20210418-vault | zkevm | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20230320-weighted-pool-v4 | zkevm | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | disable() | 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | pause() | 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | disable() | 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | pause() | 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | disable() | 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | pause() | 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20210418-vault | zkevm | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20220517-protocol-fee-withdrawer | zkevm | denylistToken(address) | 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | stopAmplificationParameterUpdate() | 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setTargets(uint256,uint256) | 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setTargets(uint256,uint256) | 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230316-child-chain-gauge-factory-v2 | zkevm | add_reward(address,address) | 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20220517-protocol-fee-withdrawer | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | addPoolFactory(address) | 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | removePoolFactory(address) | 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | registerProtocolId(uint256,string) | 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | renameProtocolId(uint256,string) | 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | \ No newline at end of file diff --git a/BIPs/4269-W69/test/BIP-303/results_deployment_sorted.md b/BIPs/4269-W69/test/BIP-303/results_deployment_sorted.md new file mode 100644 index 000000000..8ce0b1d40 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/results_deployment_sorted.md @@ -0,0 +1,60 @@ +| deployment | chain | function | role | caller | caller_address | +|:-------------------------------------------|:--------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------|:-------------------------------------------| +| 20210418-vault | zkevm | batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20210418-vault | zkevm | setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | +| 20210418-vault | zkevm | swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | +| 20210418-vault | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a | +| 20220517-protocol-fee-withdrawer | zkevm | denylistToken(address) | 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20220517-protocol-fee-withdrawer | zkevm | withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20220725-protocol-fee-percentages-provider | zkevm | setFeeTypePercentage(uint256,uint256) | 0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8 | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | +| 20221123-pool-recovery-helper | zkevm | addPoolFactory(address) | 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20221123-pool-recovery-helper | zkevm | removePoolFactory(address) | 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | registerProtocolId(uint256,string) | 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230223-protocol-id-registry | zkevm | renameProtocolId(uint256,string) | 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230316-child-chain-gauge-factory-v2 | zkevm | add_reward(address,address) | 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230320-composable-stable-pool-v4 | zkevm | pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-composable-stable-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | startAmplificationParameterUpdate(uint256,uint256) | 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-composable-stable-pool-v4 | zkevm | stopAmplificationParameterUpdate() | 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230320-weighted-pool-v4 | zkevm | disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230320-weighted-pool-v4 | zkevm | pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230320-weighted-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | disable() | 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-erc4626-linear-pool-v4 | zkevm | pause() | 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setSwapFeePercentage(uint256) | 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-erc4626-linear-pool-v4 | zkevm | setTargets(uint256,uint256) | 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-gearbox-linear-pool-v2 | zkevm | pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-gearbox-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230409-yearn-linear-pool-v2 | zkevm | pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230409-yearn-linear-pool-v2 | zkevm | setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230409-yearn-linear-pool-v2 | zkevm | setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | disable() | 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230410-aave-linear-pool-v5 | zkevm | pause() | 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230410-aave-linear-pool-v5 | zkevm | setSwapFeePercentage(uint256) | 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230410-aave-linear-pool-v5 | zkevm | setTargets(uint256,uint256) | 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93 | multisigs/lm | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | +| 20230411-managed-pool-v2 | zkevm | disable() | 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | +| 20230411-managed-pool-v2 | zkevm | enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | +| 20230411-managed-pool-v2 | zkevm | pause() | 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256 | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | \ No newline at end of file diff --git a/BIPs/4269-W69/test/BIP-303/zkevm.json b/BIPs/4269-W69/test/BIP-303/zkevm.json new file mode 100644 index 000000000..a03446f8c --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/zkevm.json @@ -0,0 +1,135 @@ +{ + "version": "1.0", + "chainId": 1101, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa", + "createdFromOwnerAddress": "", + "checksum": "", + "createFromSafeAddress": {} + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12, 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922, 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846, 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc, 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd, 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791]", + "account": "0x79b131498355daa2cC740936fcb9A7dF76A86223" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86, 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61, 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1, 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd]", + "account": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779, 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b, 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7, 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f, 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae, 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc, 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93, 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439, 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d, 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168, 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2, 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9, 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968]", + "account": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff]", + "account": "0x4678731DC41142A902a114aC5B2F77b63f4a259D" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0x1802953277FD955f9a254B80Aa0582f193cF1d77" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32[]", "name": "roles", "type": "bytes32[]" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8]", + "account": "0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-303/zkevm.report.txt b/BIPs/4269-W69/test/BIP-303/zkevm.report.txt new file mode 100644 index 000000000..04a8befb3 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-303/zkevm.report.txt @@ -0,0 +1,75 @@ +FILENAME: `BIPs/4269-W69/test/BIP-303/zkevm.json` +MULTISIG: `multisigs/dao (zkevm:0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa)` +COMMIT: `b1bc93d2ec9b1d40416acaf37eaa87557a4b01b4` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': 'ea22db3d-78b7-4ca7-822e-1c9f28e29c45', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/emergency | 0x79b131498355daa2cC740936fcb9A7dF76A86223 | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xc286c677f812387602b94d5dee672097cae543d80e175977381fbdbcdb9b2c12 | BIP-303 | 0 | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/pause() | 0xe67bef3cfb0ba409959647fa3d8ff78b267a1c13f5434c2f32219ced33fec922 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePoolFactory/disable() | 0x8d305e761700b38cf2bc3f9e2c4ad60807e843cf2efd2415b902b1163f8f9a22 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/pause() | 0x6c331c074092fbc25cd1032630ed25155aa5b81afa1d296bf5a0f0e9e0c6e846 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPoolFactory/disable() | 0x5b9fa6724045ae552732087c24c3eabd3d760a41440cf37d3646a5325241b40f | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/pause() | 0xca88ea7c3ad439ada200e7ec242c17b97994dda6cc1d6c944b4efbea82b7e479 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPoolFactory/disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPoolFactory/disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPoolFactory/disable() | 0x7dc4d368b1715140a72ae8d3535a67a2a12cf4671cad76b40860d2d66d514303 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/pause() | 0xfb4212380dd0e89902957b9e27258f6ca18cb800e3669b8603b6904ac59e98dc | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x7dc87d34e4d9603c093467dcbbf3a46c73c3cc593d90bd69353bfef0be8e12a4 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xfb08e1536837d0f69d82dc0a71f05d5e9ea8b7cfb7b429091b10dd68dadb2256 | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xdbc8f1f973e905b408bd874b7b2dd4ac3a8b6d6494b51da5c28de0ec4ac21791 | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0x2aa887a92d3d18f30f198214d2c197b7d148bb735c610372199c51c6a4866b86 | BIP-303 | 1 | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/enableRecoveryMode() | 0xb213b9fefdba263a47d6449bab5d563a39489f656d504fd24d5b9efe6fe23a61 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0xecb7a0b42168ed1b4327ddb3a6fc128facd2fd4c066e2d9d5817452f5f445a4c | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x226f4cdd3b2ef4ab0d183f2b048476bdf13ac41bc5d16b620a5c9801f07284c1 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x3ce3b3d8a6d2e5a3432dba62d502f9309c00298258a5c2a68371fca06e6ea0dd | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/feesManager | 0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09 | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0xdf1065695aeed28f2f774ad5c0032a5d8fb873b2c325e8204d3ec2076d913779 | BIP-303 | 2 | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/setSwapFeePercentage(uint256) | 0xcf555cc0ffe0f3255e6e21b7f9236c3c9fa8f7bbeb3c8796df9d3b5b6b630f1b | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x3005acc2387c9b240d98175714c97d50f7215ed66a79cafb014a53b74250b3a7 | | | +| | | | 20230320-composable-stable-pool-v4/ComposableStablePool/stopAmplificationParameterUpdate() | 0xc5cc9cd4aa2b8c41b752cd191bc035c569522e23523abd0cc53c6a229165589f | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0x4223f854b20ca267ff7b134cf89c74ad7ad53e42dcef38dd11350fa25e3d83ae | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x30329a0bf89785c711811ca02c5e649b59ef6706cd7e707ff91290a62f22996d | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0xb851a779bb251247ffc9b445a0fac56af908e4560fe43517739bb79e73f94ddc | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xe3fccd861cb8896c55052a07fa6c8a620343c50e5b7971d6a5ea70a41feb7e93 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xdc8b557d7b464894c525e5de06257694247b2b789b4948326752177399475439 | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xcd3768eb08cdc2de2d040f74fb351ccbef01df1d042fa8033e12f224ecc27c4d | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x4133838a02bd2b8ed714d2c6f9b67c9edc60b2a48cdffca2fc4908545c9ea168 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0xe54abf8b88dbe1bc275b3ffd3f7ab1b0ad3541db2664b78940b7fb9c05526bf2 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xc26e21fc0aba43b199202ad3de0ba39a17c1006c1f7b3791ca2a3b9f86a4f0b9 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0x717d11aa4cee062d5f4a3262a493c6cb8b8d7985b98d3a3fd2f80631feb89968 | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20230314-batch-relayer-v5/BalancerRelayer | 0x4678731DC41142A902a114aC5B2F77b63f4a259D | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BIP-303 | 3 | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| | | | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0x1802953277FD955f9a254B80Aa0582f193cF1d77 | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | BIP-303 | 4 | +| | | | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-303 | 5 | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/dao | 0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xbeb10dd1f094c0751dc69e30b35c3f37cee8a9303f6e7380c83d31adcba39ea8 | BIP-303 | 6 | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/test/BIP-314 july.report.txt b/BIPs/4269-W69/test/BIP-314 july.report.txt new file mode 100644 index 000000000..62cd40e44 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-314 july.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/4269-W69/test/BIP-314 july.json +COMMIT: `3431077c38f3e7ef92ff6908baf9c26a6a38ae09` +CHAIN(S): `mainnet` +``` ++----------+---------+--------------+--------------------------+---------+--------------------------------------------+--------------------------------------------+-------------+---------+----------+ +| function | chain | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | tx_index | ++----------+---------+--------------+--------------------------+---------+--------------------------------------------+--------------------------------------------+-------------+---------+----------+ +| transfer | mainnet | USDC | multisigs/beets_treasury | 55000.0 | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | 0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 55000000000 | BIP-314 | N/A | ++----------+---------+--------------+--------------------------+---------+--------------------------------------------+--------------------------------------------+-------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-340B.report.txt b/BIPs/4269-W69/test/BIP-340B.report.txt new file mode 100644 index 000000000..f0b403f37 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-340B.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/4269-W69/test/BIP-340B.json +COMMIT: `3431077c38f3e7ef92ff6908baf9c26a6a38ae09` +CHAIN(S): `mainnet` +``` ++-------------+---------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+---------+----------+ +| function | chain | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | tx_index | ++-------------+---------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+---------+----------+ +| killGauge() | mainnet | 0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d0000000000000000000004f8 | B-vETH-STABLE | 0x793F2D5Cd52dfafe7a1a1B0B3988940Ba2d6a63D | 50 | 0x8a88C1f44854C61a466aB55614F6A7778473418b | 0.04% | 10.0% | mainnet | BIP-340 | N/A | ++-------------+---------+--------------------------------------------------------------------+---------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+---------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-344.json b/BIPs/4269-W69/test/BIP-344.json new file mode 100644 index 000000000..0e749b8ca --- /dev/null +++ b/BIPs/4269-W69/test/BIP-344.json @@ -0,0 +1,116 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687970751948, + "meta": { + "name": "Transactions Batching", + "description": " ", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x871c352af1dd23f5c4a8947fcb69f0c3e46347ece6e76df395964fa1c91a7d5e", + "bipNumber": 344 + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73", + "gaugeType": "Optimism" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xdc08146530DD9910F8ab4D0aD2C184f87e903540", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-344.report.txt b/BIPs/4269-W69/test/BIP-344.report.txt new file mode 100644 index 000000000..8c4f155c1 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-344.report.txt @@ -0,0 +1,52 @@ +FILENAME: `BIPs/4269-W69/test/BIP-344.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8cd9c88618fffe4cb78d05eb379e2f3cfa133a66` +CHAIN(S): `optimism` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/506442ed-e8cb-4002-b84a-ac5e5005c83d) + +| Gauge Validator (0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +| Gauge Validator (0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +| Gauge Validator (0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +| Gauge Validator (0xdc08146530DD9910F8ab4D0aD2C184f87e903540) | Result | +| :------------------------------------------------------------| :------: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ❌ ❌ ❌ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x39965c9dab5448482cf7e002f583c812ceb53046000100000000000000000003 | BPT-ROAD | root: 0x1Ce5bf7e6C16C567DeFd625e0911Bfd0FC7f2d7d | 0x4200000000000000000000000000000000000006: WETH | | | BIP-344 | 0 | +| | pool_address: 0x39965c9dAb5448482Cf7e002F583c812Ceb53046 | fee: 0.5 | side: 0x92F714Ae8C2150b7a7a75c6C97656BD4B348ca9E | 0x4200000000000000000000000000000000000042: OP | | | | | +| | | a-factor: N/A | style: L0 sidechain | 0x7F5c764cBc14f9669B88837ca1490cCa17c31607: USDC | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x1d95129c18a8c91c464111fdf7d0eb241b37a9850002000000000000000000c1 | BPT-RESERVE | root: 0xd0b6787589d33B4F7aA5a27f36497e091e78a2ad | 0x7F5c764cBc14f9669B88837ca1490cCa17c31607: USDC | | | BIP-344 | 1 | +| | pool_address: 0x1D95129c18a8c91C464111FDf7d0Eb241B37a985 | fee: 0.05 | side: 0x02ab6fE6B3aF13B4F859001486dC75F2dAC79026 | 0xc5b001DC33727F8F26880B184090D3E252470D45: ERN | | | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 2.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xd20f6f1d8a675cdca155cb07b5dc9042c467153f0002000000000000000000bc | BPT-BOATH | root: 0x0BFcF593C149Ddbeedb190667d24D30D2E38AF73 | 0x39FdE572a18448F8139b7788099F0a0740f51205: OATH | | | BIP-344 | 2 | +| | pool_address: 0xd20f6F1D8a675cDCa155Cb07b5dC9042c467153f | fee: 0.5 | side: 0x5E0ead6739baA486039a3B0f0133aF0f70182140 | 0x4200000000000000000000000000000000000006: WETH | | | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 2.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0x098f32d98d0d64dba199fc1923d3bf4192e787190001000000000000000000d2 | bb-rf-SOTRI | root: 0xdc08146530DD9910F8ab4D0aD2C184f87e903540 | 0x6af3737F6d58Ae8Bcb9f2B597125D37244596E59: bb-rf-soWBTC | 0x6af3737F6d58Ae8Bcb9f2B597125D37244596E59 | !!NO REVIEW!! | BIP-344 | 3 | +| | pool_address: 0x098f32D98d0D64Dba199FC1923D3BF4192E78719 | fee: 0.4 | side: 0x880d9B16398C161098D58F9CE77792eB35a24f88 | 0x7e9250cC13559eB50536859e8C076Ef53e275Fb3: bb-rf-soWSTETH | 0x5B043A12936777Cf18fC7Ba259673C795DE932a6 | !!NO REVIEW!! | | | +| | | a-factor: N/A | style: L0 sidechain | 0xEdcfaF390906a8f91fb35B7bAC23f3111dBaEe1C: bb-rf-soUSDC | 0xEdcfaF390906a8f91fb35B7bAC23f3111dBaEe1C | !!NO REVIEW!! | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-345.report.txt b/BIPs/4269-W69/test/BIP-345.report.txt new file mode 100644 index 000000000..0c37d6048 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-345.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/4269-W69/test_delete/BIP-345.json +COMMIT: `3fe508c6712e33968b92783ec72cfba2d86aa3b4` +CHAIN(S): `optimism` +``` ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | bip | transaction_index | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +| addGauge | 0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb200020000000000000000008b | BPT-WSTETH-WETH | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 | 500 | 0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87 | 0.01% | 100.0% | L0 sidechain | BIP-345 | N/A | ++----------+--------------------------------------------------------------------+-----------------+--------------------------------------------+---------+--------------------------------------------+-------+--------+--------------+---------+-------------------+ +``` diff --git a/BIPs/4269-W69/test/BIP-346.json b/BIPs/4269-W69/test/BIP-346.json new file mode 100644 index 000000000..96038ab1f --- /dev/null +++ b/BIPs/4269-W69/test/BIP-346.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687971407113, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2c48ebbddf51c59d79499b8d63146f47049c37f2bcd231d1d6c2d04d3b058252" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x730A168cF6F501cf302b803FFc57FF3040f378Bf", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-346.report.txt b/BIPs/4269-W69/test/BIP-346.report.txt new file mode 100644 index 000000000..fe375b922 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-346.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/2023-W26/BIP-346.json +COMMIT: `ef789dccde4cc0b34ff608c9ab8cdb7ef50e94ee` +CHAIN(S): `optimism` +``` ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +| function | pool_id | symbol | pool_address | aFactor | gauge_address | fee | cap | style | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +| addGauge | 0x7ca75bdea9dede97f8b13c6641b768650cb837820002000000000000000000d5 | ECLP-wstETH-WETH | 0x7Ca75bdEa9dEde97F8B13C6641B768650CB83782 | N/A | 0x730A168cF6F501cf302b803FFc57FF3040f378Bf | 0.02% | 10.0% | L0 sidechain | ++----------+--------------------------------------------------------------------+------------------+--------------------------------------------+---------+--------------------------------------------+-------+-------+--------------+ +``` diff --git a/BIPs/4269-W69/test/BIP-347.json b/BIPs/4269-W69/test/BIP-347.json new file mode 100644 index 000000000..fda314170 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-347.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "132630000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "25400000000000000000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-348.json b/BIPs/4269-W69/test/BIP-348.json new file mode 100644 index 000000000..bf64e264c --- /dev/null +++ b/BIPs/4269-W69/test/BIP-348.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "93750000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-388-newchain.json b/BIPs/4269-W69/test/BIP-388-newchain.json new file mode 100644 index 000000000..fd8203324 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-388-newchain.json @@ -0,0 +1,190 @@ +{ + "version": "1.0", + "chainId": 8453, + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9, 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e, 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717, 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157, 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7, 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01, 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01, 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e, 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed, 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c, 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3, 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03]", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df, 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4, 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0, 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5, 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d, 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4, 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34]", + "account": "0x76f7204B62f554b79d444588EDac9dfA7032c71a" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d]", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-388-newchain.report.txt b/BIPs/4269-W69/test/BIP-388-newchain.report.txt new file mode 100644 index 000000000..cfaa61d6b --- /dev/null +++ b/BIPs/4269-W69/test/BIP-388-newchain.report.txt @@ -0,0 +1,75 @@ +FILENAME: `BIPs/4269-W69/test/BIP-388-newchain.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `c0463760e3552964de82a8183db19e455bb6ba28` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/861fde67-1da8-4e98-b6bf-f34f240963db) +``` ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++=======================+===========================================================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-388 | 0 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | BIP-388 | 1 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPoolFactory/disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPoolFactory/disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPoolFactory/disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPoolFactory/disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | BIP-388 | 2 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BIP-388 | 3 | +| | | | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-388 | 4 | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | BIP-388 | 5 | +| | | | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | | | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | BIP-388 | 6 | ++-----------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/test/BIP-535.json b/BIPs/4269-W69/test/BIP-535.json new file mode 100644 index 000000000..49be86df2 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-535.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705515128777, + "meta": { + "name": "Transactions Batch", + "description": "Fund grants for Q4 2023", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xde5cbe25c58c49ee7635216de6998f8dacd63b96", + "value": "4382140000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc4f95f674b393a49410ace864833abe836848526", + "value": "4088240000" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-535.report.txt b/BIPs/4269-W69/test/BIP-535.report.txt new file mode 100644 index 000000000..57d6eb4cc --- /dev/null +++ b/BIPs/4269-W69/test/BIP-535.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/4269-W69/test/BIP-535.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `ae088b4beb46018fb71670d841fa127dbbc89066` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/832a081f-ab40-44b6-85c7-279af783371f) +``` ++----------+-------------------------------------------------+------------------------------------------------+---------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+------------------------------------------------+---------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xDe5cbE25c58c49Ee7635216de6998f8dAcD63b96 | 4382.14 (RAW: 4382140000) | BIP-535 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0xc4F95f674b393a49410acE864833abE836848526 | 4088.24 (RAW: 4088240000) | BIP-535 | 1 | ++----------+-------------------------------------------------+------------------------------------------------+---------------------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-536.json b/BIPs/4269-W69/test/BIP-536.json new file mode 100644 index 000000000..a12c06d38 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-536.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705515525740, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x6D560CbE3Cc25Eca8c930835Ec3d296a6C16B210", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-536.report.txt b/BIPs/4269-W69/test/BIP-536.report.txt new file mode 100644 index 000000000..bf778e42f --- /dev/null +++ b/BIPs/4269-W69/test/BIP-536.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/test/BIP-536.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ae088b4beb46018fb71670d841fa127dbbc89066` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/74aa0f95-3a5b-4be4-81fa-4f7dddb55e1a) +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x383e7859271b2d0589b013b6d944572a0a8be3cb000000000000000000000657 | DOLA-mkUSD BSP | 0x6D560CbE3Cc25Eca8c930835Ec3d296a6C16B210 | 0x383e7859271B2D0589B013b6d944572a0a8bE3cB: DOLA-mkUSD BSP | 0x0000000000000000000000000000000000000000 | -- | BIP-536 | 0 | +| | pool_address: 0x383e7859271B2D0589B013b6d944572a0a8bE3cB | fee: 0.04 | Style: mainnet | 0x4591DBfF62656E7859Afe5e45f6f47D3669fBB28: mkUSD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 100 | cap: 100.0% | 0x865377367054516e17014CcdED1e7d814EDC9ce4: DOLA | 0x0000000000000000000000000000000000000000 | -- | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-537.json b/BIPs/4269-W69/test/BIP-537.json new file mode 100644 index 000000000..81c313637 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-537.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705516006060, + "meta": { + "name": "Transactions Batch", + "description": "Pay BAL for GGP comp", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "6545000000000000000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-537.report.txt b/BIPs/4269-W69/test/BIP-537.report.txt new file mode 100644 index 000000000..e967926e9 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-537.report.txt @@ -0,0 +1,12 @@ +FILENAME: `BIPs/4269-W69/test/BIP-537.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `ae088b4beb46018fb71670d841fa127dbbc89066` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/18cc3280-bb5b-4ef4-8219-a187a2110da1) +``` ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 6545.0 (RAW: 6545000000000000000000) | BIP-537 | 0 | ++----------+------------------------------------------------+---------------------------------------------------------+--------------------------------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-653.json b/BIPs/4269-W69/test/BIP-653.json new file mode 100644 index 000000000..2cd33f6eb --- /dev/null +++ b/BIPs/4269-W69/test/BIP-653.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719444309556, + "meta": { + "name": "Update Paladins Reward Distributors", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xeeb50b8f3abf0c5f23b17181f1c01b629930f08c059f6685e08c564e84530b0a" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xCD19892916929F013930ed628547Cc1F439b230e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-653.report.txt b/BIPs/4269-W69/test/BIP-653.report.txt new file mode 100644 index 000000000..19595697a --- /dev/null +++ b/BIPs/4269-W69/test/BIP-653.report.txt @@ -0,0 +1,50 @@ +FILENAME: `BIPs/4269-W69/test/BIP-653.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `ae088b4beb46018fb71670d841fa127dbbc89066` +CHAIN(S): `mainnet` +TENDERLY: [`🟨 PARTIAL`](https://www.tdly.co/shared/simulation/ddddda96-0d69-4996-b624-52a31d1f1d32) +``` ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 0 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/set_reward_distributor(address,address) | 0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6 | BIP-653 | 4 | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/set_reward_distributor(address,address) | | | | ++-----------------------+---------------+--------------------------------------------+--------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/4269-W69/test/BIP-653.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `ae088b4beb46018fb71670d841fa127dbbc89066` +CHAIN(S): `mainnet` +TENDERLY: [`🟨 PARTIAL`](https://www.tdly.co/shared/simulation/6c8eb11c-6269-41c0-bcb9-e2d637f1af15) +``` ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +| set_reward_distributor | 0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b (gauges/DOLA-USDC BSP-gauge-bc02) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0xCD19892916929F013930ed628547Cc1F439b230e (gauges/sDOLA-DOLA BSP-gauge-cd19) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 (tokens/INV)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8 (gauges/2BTC-gauge-21c3) | 0 | { | BIP-653 | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5 (tokens/T)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB (paladin/QuestBoardV2_1)" | | | +| | | | ] | | | +| | | | } | | | ++------------------------+-------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-682.json b/BIPs/4269-W69/test/BIP-682.json new file mode 100644 index 000000000..c25da61b0 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-682.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308197460, + "meta": { + "name": "Transactions Batch", + "description": "Add sUSDE/GYD E-CLP gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x146b6030E6d6a6398B918E9854652a71C9537180", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-682.report.txt b/BIPs/4269-W69/test/BIP-682.report.txt new file mode 100644 index 000000000..fb57342cb --- /dev/null +++ b/BIPs/4269-W69/test/BIP-682.report.txt @@ -0,0 +1,21 @@ +FILENAME: `BIPs/4269-W69/test/BIP-682.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `58bb42f52aab3a17f69c498f189871ebbcb3aaaa` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/b13258fc-3797-4863-9094-7ad6be06d341) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3 | ECLP-sUSDe-GYD | 0x146b6030E6d6a6398B918E9854652a71C9537180 | 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497: sUSDe | 0x3A244e6B3cfed21593a5E5B347B593C0B48C7dA1 | safe | BIP-682 | 0 | +| | pool_address: 0x8D93B853849b9884E2Bb413444Ec23eB5366eE91 | fee: 0.15 | style: mainnet | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-683.json b/BIPs/4269-W69/test/BIP-683.json new file mode 100644 index 000000000..664cfa9d0 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-683.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308423095, + "meta": { + "name": "Transactions Batch", + "description": "Enable aGHO-USDe ECLP gauge on Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD558C611B69a223767788B638717E868D8947Fd0", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-683.report.txt b/BIPs/4269-W69/test/BIP-683.report.txt new file mode 100644 index 000000000..94a4675b6 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-683.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/test/BIP-683.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8c7fa5500cd22646c15993fdf16c133e35e9b8bb` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/56389eb6-f17c-4e5a-b74d-cb4163ca69aa) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x38161e9efb8de52d00a1eb0f773223fd28fdd7c20002000000000000000005a0 | ECLP-GHO-USDe-rh | root: 0xD558C611B69a223767788B638717E868D8947Fd0 | 0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34: USDe | 0x0000000000000000000000000000000000000000 | -- | BIP-683 | 0 | +| | pool_address: 0x38161e9eFb8De52D00A1eB0f773223FD28FDd7c2 | fee: 0.01 | side: 0xcfab2efeF3aFfdd158568DC896115Eac26B3C498 | 0xD9FBA68D89178e3538e708939332c79efC540179: stataArbGHO | 0x177862A0242acD8b5F9cc757a963c1C8883da45E | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/BIP-684.json b/BIPs/4269-W69/test/BIP-684.json new file mode 100644 index 000000000..8d2c0d104 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-684.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308782493, + "meta": { + "name": "Transactions Batch", + "description": "Add sdeUSD/deUSD ECLP gauge on Mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA00DB7d9c465e95e4AA814A9340B9A161364470a", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/test/BIP-684.report.txt b/BIPs/4269-W69/test/BIP-684.report.txt new file mode 100644 index 000000000..4a6a74130 --- /dev/null +++ b/BIPs/4269-W69/test/BIP-684.report.txt @@ -0,0 +1,21 @@ +FILENAME: `BIPs/4269-W69/test/BIP-684.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `58bb42f52aab3a17f69c498f189871ebbcb3aaaa` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/f2ed429b-784d-4390-9e37-8b9ded426069) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be | ECLP-stdeUSD-deUSD | 0xA00DB7d9c465e95e4AA814A9340B9A161364470a | 0x15700B564Ca08D9439C58cA5053166E8317aa138: deUSD | 0x0000000000000000000000000000000000000000 | -- | BIP-684 | 0 | +| | pool_address: 0x41FDbea2E52790c0a1Dc374F07b628741f2E062D | fee: 0.01 | style: mainnet | 0x5C5b196aBE0d54485975D1Ec29617D42D9198326: sdeUSD | 0x414aB7081D3C2d0BA75703A465744DF99c9f9B22 | safe | | | +| | | a-factor: N/A | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test/linea-maxi-safe-setup.json b/BIPs/4269-W69/test/linea-maxi-safe-setup.json new file mode 100644 index 000000000..106355759 --- /dev/null +++ b/BIPs/4269-W69/test/linea-maxi-safe-setup.json @@ -0,0 +1,57 @@ +{ + "version": "1.0", + "chainId": "59144", + "createdAt": 1715167035913, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x1d59424549659c351dae53383c573bca3b67bd575e18dfc50ab81f21953cb302" + }, + "transactions": [ + { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "prevOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "owner", + "type": "address", + "internalType": "address" + }, + { + "name": "_threshold", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "removeOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "owner": "0x8053484489b110181a6DBA0b59Dda887e433F470", + "_threshold": "3" + } + }, + { + "to": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-314 july.json b/BIPs/4269-W69/test3/BIP-314 july.json new file mode 100644 index 000000000..dc5cfa68d --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-314 july.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 168799987659, + "meta": { + "name": "Transactions Batches", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xae285cf93451a8c1bdba7452f6a6ce50166759e6e2683f1a68cc772e9d13dd9b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "55000000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-314 july.report.txt b/BIPs/4269-W69/test3/BIP-314 july.report.txt new file mode 100644 index 000000000..228354ba0 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-314 july.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-314 july.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1e8036b0-862c-4161-9a1c-a9608743f441) + +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 55000.0 (RAW: 55000000000) | BIP-314 | 0 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-345.json b/BIPs/4269-W69/test3/BIP-345.json new file mode 100644 index 000000000..65d3f65ce --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-345.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687971111550, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8d49ee364f019130de078e2a9086d723ab565bc8067a0fb5ea6bb931be5bb27e" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-345.report.txt b/BIPs/4269-W69/test3/BIP-345.report.txt new file mode 100644 index 000000000..ea1022dbd --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-345.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-345.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `optimism` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/e69608c8-2f29-4c91-95e6-854e97f76322) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb200020000000000000000008b | BPT-WSTETH-WETH | root: 0x1b8C2C972c67f4A5B43C2EbE07E64fCB88ACee87 | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb: wstETH | 0x9aa3cd420f830E049e2b223D0b07D8c809C94d15 | safe | BIP-345 | 0 | +| | pool_address: 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 | fee: 0.01 | side: 0xA30992B40a0cb4B2Da081ddBd843f9CcE25c2fe3 | 0x4200000000000000000000000000000000000006: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 500 | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-388-newchain.report.txt b/BIPs/4269-W69/test3/BIP-388-newchain.report.txt new file mode 100644 index 000000000..b33c13364 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-388-newchain.report.txt @@ -0,0 +1,73 @@ +File name: BIPs/4269-W69/BIP-388-newchain.json +COMMIT: `57d815bde7247457494681a456f1dd05a09570bb` +CHAIN(S): `base` +``` ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | chain | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++============+=========+===========================================================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| grantRoles | base | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-388 | N/A | +| | | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | | | +| | | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | | | +| | | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | | | +| | | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | | | +| | | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | | | +| | | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | BIP-388 | N/A | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | | | +| | | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPoolFactory/disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | | | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | | | +| | | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPoolFactory/disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPoolFactory/disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | | | +| | | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | | | +| | | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPoolFactory/disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | | | +| | | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | BIP-388 | N/A | +| | | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BIP-388 | N/A | +| | | | | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | | | +| | | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| | | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-388 | N/A | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | BIP-388 | N/A | +| | | | | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | | | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| grantRoles | base | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | BIP-388 | N/A | ++------------+---------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-491.json b/BIPs/4269-W69/test3/BIP-491.json new file mode 100644 index 000000000..bea96ddde --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-491.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700665920164, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xf21Fa4Fb30cA6eAFDF567A02aAD92E49D6d0752D", + "gaugeType": "Ethereum" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xfC7D964f1676831d8105506b1F0c3B3e2B55c467", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-491.report.txt b/BIPs/4269-W69/test3/BIP-491.report.txt new file mode 100644 index 000000000..a25f5519e --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-491.report.txt @@ -0,0 +1,32 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-491.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/b0ccd126-6fb8-4188-aab7-28b16cda8509) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | ECLP-GYD-sDAI | root: 0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c | 0x83F20F44975D03b1b09e64809B757c47f942BEeA: sDAI | 0xc7177B6E18c1Abd725F5b75792e5F7A3bA5DBC2c | safe | BIP-491 | 0 | +| | pool_address: 0x1CCE5169bDe03f3d5aD0206f6BD057953539DAE6 | fee: 0.005 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xc2aa60465bffa1a88f5ba471a59ca0435c3ec5c100020000000000000000062c | ECLP-GYD-USDC | root: 0xf21Fa4Fb30cA6eAFDF567A02aAD92E49D6d0752D | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: USDC | 0x0000000000000000000000000000000000000000 | -- | BIP-491 | 1 | +| | pool_address: 0xC2AA60465BfFa1A88f5bA471a59cA0435c3ec5c1 | fee: 0.005 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | +| GaugeAdderV4/addGauge | 0xfbfad5fa9e99081da6461f36f229b5cc88a64c6300020000000000000000062d | ECLP-GYD-USDT | root: 0xfC7D964f1676831d8105506b1F0c3B3e2B55c467 | 0xdAC17F958D2ee523a2206206994597C13D831ec7: USDT | 0x0000000000000000000000000000000000000000 | -- | BIP-491 | 2 | +| | pool_address: 0xfbfaD5fa9E99081da6461F36f229B5cC88A64c63 | fee: 0.005 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-492.json b/BIPs/4269-W69/test3/BIP-492.json new file mode 100644 index 000000000..d7ac20315 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-492.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1700755298284, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x5D7C0521DB5a6F37aD839d0eEfbaF8205389adD8", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-492.report.txt b/BIPs/4269-W69/test3/BIP-492.report.txt new file mode 100644 index 000000000..eb4c34fbb --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-492.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-492.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/37b3b7fb-d1f3-4044-b722-b92302cc76eb) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xb9debddf1d894c79d2b2d09f819ff9b856fca55200000000000000000000062a | weETH-WETH-BPT | root: 0x5D7C0521DB5a6F37aD839d0eEfbaF8205389adD8 | 0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552: weETH-WETH-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-492 | 0 | +| | pool_address: 0xb9dEbDDF1d894c79D2B2d09f819FF9B856FCa552 | fee: 0.04 | side: None | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: 600 | style: mainnet | 0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee: weETH | 0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee | safe | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-520.json b/BIPs/4269-W69/test3/BIP-520.json new file mode 100644 index 000000000..8a650d6ff --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-520.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703108246792, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xc89970ca0569367851a4d22c445d8b3a4902c3d3e0a870126b7f6860727c59b9" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "46474050000" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-520.report.txt b/BIPs/4269-W69/test3/BIP-520.report.txt new file mode 100644 index 000000000..cacedf5e4 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-520.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-520.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/935b67f7-fe08-488a-8240-5ac6fad80b39) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 46474.05 (RAW: 46474050000) | BIP-520 | 0 | ++----------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-524.json b/BIPs/4269-W69/test3/BIP-524.json new file mode 100644 index 000000000..9b15fd464 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-524.json @@ -0,0 +1,57 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1703086650513, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xa7d09b2b22232e0162c7f945099648f7e91e1a4aee3d3fc61155d3df7530ee1d" + }, + "transactions": [ + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "dst", "type": "address" }, + { "name": "wad", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "dst": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "wad": "8480000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "17170000000000000000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-524.report.txt b/BIPs/4269-W69/test3/BIP-524.report.txt new file mode 100644 index 000000000..60af95185 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-524.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-524.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5777f01a-edc6-42c9-9f28-8a6f8cc221cd) + +``` ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 8.48 (RAW: 8480000000000000000) | BIP-524 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 17170.0 (RAW: 17170000000000000000000) | BIP-524 | 1 | ++----------+-------------------------------------------------+---------------------------------------------------------+----------------------------------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-525.json b/BIPs/4269-W69/test3/BIP-525.json new file mode 100644 index 000000000..8edbe8912 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-525.json @@ -0,0 +1,56 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704201602059, + "meta": { + "name": "Transactions Batch", + "description": "[BIP-XXX] Business Development Funding Proposal Q1-2024 and Retroactive Q4-2023 Funding", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x3e172d8a9c00fe1479e8fd9a6ce95f01528e1c053fae439f064d486258f32b28" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2", + "value": "5000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "20000000000" + } + }, + { + "to": "0xC7E84373FC63A17B5B22EBaF86219141B630cD7a", + "value": "300000000000000000", + "data": "0x", + "contractMethod": null, + "contractInputsValues": { "spender": "", "value": "" } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-525.report.txt b/BIPs/4269-W69/test3/BIP-525.report.txt new file mode 100644 index 000000000..0f13772d9 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-525.report.txt @@ -0,0 +1,34 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-525.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d75f0621-9789-405e-ba6c-e8401a1329ee) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+----------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+----------------------------+---------+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/json:0xE2A4DE267cdD4fF5ED9Ba13552F5c624b12db9b2 | 5000.0 (RAW: 5000000000) | BIP-525 | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/bizdev:0xC7E84373FC63A17B5B22EBaF86219141B630cD7a | 20000.0 (RAW: 20000000000) | BIP-525 | 1 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+----------------------------+---------+----------+ +``` +FILENAME: `BIPs/4269-W69/test3/BIP-525.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b24491a4-dac5-4916-958a-0a4a76dac61b) + +``` ++---------+---------------------------------------------------------------+-------------------------------+----------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------------+-------------------------------+----------------+------------+----------+ +| !!N/A!! | 0xC7E84373FC63A17B5B22EBaF86219141B630cD7a (multisigs/bizdev) | 300000000000000000/1e18 = 0.3 | { | BIP-525 | N/A | +| | | | "spender": [ | | | +| | | | "" | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | "" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------------+-------------------------------+----------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-526.json b/BIPs/4269-W69/test3/BIP-526.json new file mode 100644 index 000000000..0e7082d49 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-526.json @@ -0,0 +1,117 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704203200837, + "meta": { + "name": "Transactions Batch", + "description": "[BIP-XXX] Pay BAL to DAO Multisig signers, H2-2023", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xc5a7d38a574224f0f0216c9a1167f7e3ae930cb4667e8bf4b4c0f2fd9bf44b7e" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250", + "amount": "500000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9F7dfAb2222A473284205cdDF08a677726d786A0", + "amount": "500000000000000000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-526.report.txt b/BIPs/4269-W69/test3/BIP-526.report.txt new file mode 100644 index 000000000..93bfe28c6 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-526.report.txt @@ -0,0 +1,18 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-526.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7de7381e-f861-48e5-be8b-99bde11fc6ea) + +``` ++----------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/mounibec:0x0951FF0835302929d6c0162b3d2495A85e38ec3A | 500.0 (RAW: 500000000000000000000) | BIP-526 | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xMaki:0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 1 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/0xSausageDoge:0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/tritium:0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | 500.0 (RAW: 500000000000000000000) | BIP-526 | 3 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/nanexcool:0x823DF0278e4998cD0D06FB857fBD51e85b18A250 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 4 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | EOA/dao/StefanDGeorge:0x9F7dfAb2222A473284205cdDF08a677726d786A0 | 500.0 (RAW: 500000000000000000000) | BIP-526 | 5 | ++----------+------------------------------------------------+------------------------------------------------------------------+------------------------------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-527.report.txt b/BIPs/4269-W69/test3/BIP-527.report.txt new file mode 100644 index 000000000..e58a7a449 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-527.report.txt @@ -0,0 +1,71 @@ +FILENAME: `BIPs/4269-W69/test2/BIP-527.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `d6b41be7996bbdad507389e675c9ad047d78d91a` +CHAIN(S): `polygon` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f6c57601-8c7e-47ce-bc32-d02152ba16ad) + +``` ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+------+--------------+---------+----------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+------+--------------+---------+----------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| AAEntrypoint/killGauge() | 0x77e97d4908be63394bc5dff72c8c7bddf1699882000000000000000000000a6a | 2eur (agEUR) | 200 | 0x790DE8ABE859f399023BCe73B5FE5C4870cD816A | 0.05% | 2.0% | L0 sidechain | BIP-527 | 3 | ['0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c: jEUR', '0x77e97D4908Be63394bc5DFf72C8C7Bddf1699882: 2eur (agEUR)', '0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4: EURA'] | ++--------------------------+--------------------------------------------------------------------+--------------+-----+--------------------------------------------+-------+------+--------------+---------+----------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/4269-W69/test2/BIP-527.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `d6b41be7996bbdad507389e675c9ad047d78d91a` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c898e4af-44c9-4c01-9b4e-7f13916f0389) + +``` ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| Authorizer/grantRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 0 | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20240522-fraxtal-root-gauge-factory/OptimisticRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | +| Authorizer/revokeRole | multisigs/dao | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 20220325-single-recipient-gauge-factory/SingleRecipientGauge/unkillGauge() | 0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea | BIP-527 | 2 | +| | | | 20220413-arbitrum-root-gauge-factory/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20220628-optimism-root-gauge-factory/OptimismRootGauge/unkillGauge() | | | | +| | | | 20220413-polygon-root-gauge-factory/PolygonRootGauge/unkillGauge() | | | | +| | | | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20220823-polygon-root-gauge-factory-v2/PolygonRootGauge/unkillGauge() | | | | +| | | | 20230217-gnosis-root-gauge-factory/GnosisRootGauge/unkillGauge() | | | | +| | | | 20240522-fraxtal-root-gauge-factory/OptimisticRootGauge/unkillGauge() | | | | +| | | | 20230526-zkevm-root-gauge-factory/PolygonZkEVMRootGauge/unkillGauge() | | | | +| | | | 20220823-arbitrum-root-gauge-factory-v2/ArbitrumRootGauge/unkillGauge() | | | | +| | | | 20230811-avalanche-root-gauge-factory-v2/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20230529-avalanche-root-gauge-factory/AvalancheRootGauge/unkillGauge() | | | | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/unkillGauge() | | | | +| | | | 20230911-base-root-gauge-factory/BaseRootGauge/unkillGauge() | | | | +| | | | 20220823-optimism-root-gauge-factory-v2/OptimismRootGauge/unkillGauge() | | | | +| | | | 20230215-single-recipient-gauge-factory-v2/SingleRecipientGauge/unkillGauge() | | | | ++-----------------------+---------------+--------------------------------------------+-------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/4269-W69/test2/BIP-527.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `d6b41be7996bbdad507389e675c9ad047d78d91a` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/536a1414-ae55-41aa-89a9-a6e6fef3f5bd) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------+---------------+---------------+---------+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------+---------------+---------------+---------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x16289F675Ca54312a8fCF99341e7439982888077 (root_gauges/2eur (PAR)-polygon-root-1628) | unkillGauge() | | BIP-527 | 1 | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x790DE8ABE859f399023BCe73B5FE5C4870cD816A (None) | killGauge() | | BIP-527 | 3 | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------+---------------+---------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-528A.json b/BIPs/4269-W69/test3/BIP-528A.json new file mode 100644 index 000000000..71bd86ce5 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-528A.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704871780160, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x1461C4a373d27977f0D343Ba33C22870c89F9dF0", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-528A.report.txt b/BIPs/4269-W69/test3/BIP-528A.report.txt new file mode 100644 index 000000000..2828f8bd2 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-528A.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-528A.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/60674005-3825-4f46-a31a-71475cebb9d4) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | -- | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xe25ecadca47419e9aee2700ceab4e7c4b01b94ca0002000000000000000004e4 | 20WETH-80PAL | root: 0x1461C4a373d27977f0D343Ba33C22870c89F9dF0 | 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1: WETH | 0x0000000000000000000000000000000000000000 | -- | BIP-528 | 0 | +| | pool_address: 0xe25EcAdcA47419E9aEE2700CeaB4e7c4b01B94ca | fee: 0.3 | side: 0x2cFBD7aCC62709396b3C8c7698808384720A0BbF | 0xa7997F0eC9fa54E89659229fB26537B6A725b798: PAL | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 2.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+--------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-529.json b/BIPs/4269-W69/test3/BIP-529.json new file mode 100644 index 000000000..7969406be --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-529.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704874585004, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x8c596E8D1b3Be04a6cAa1B1152b51c495f799a16", + "gaugeType": "Optimism" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-529.report.txt b/BIPs/4269-W69/test3/BIP-529.report.txt new file mode 100644 index 000000000..71ad81fe3 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-529.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-529.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `optimism` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/e39fcf74-c6f8-492b-b3c7-4eab9962186f) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x2feb76966459d7841fa8a7ed0aa4bf574d6111bf00020000000000000000011d | bpt-yieldconcerto | root: 0x8c596E8D1b3Be04a6cAa1B1152b51c495f799a16 | 0x2Dd1B4D4548aCCeA497050619965f91f78b3b532: sFRAX | 0xDe3B7eC86B67B05D312ac8FD935B6F59836F2c41 | safe | BIP-529 | 0 | +| | pool_address: 0x2FEb76966459d7841fa8A7Ed0aa4bf574d6111Bf | fee: 0.1 | side: 0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E | 0x484c2D6e3cDd945a8B2DF735e079178C1036578c: sfrxETH | 0xf752dd899F87a91370C1C8ac1488Aef6be687505 | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------------+-----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-533.json b/BIPs/4269-W69/test3/BIP-533.json new file mode 100644 index 000000000..8a59d0922 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-533.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1704957019300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0xbf85372921c35a4e62729c1fb0ea7cbf4936133ffd383e764a6ea1a78e85891c" + }, + "transactions": [ + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "startCooldown", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-533.report.txt b/BIPs/4269-W69/test3/BIP-533.report.txt new file mode 100644 index 000000000..e023acd0a --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-533.report.txt @@ -0,0 +1,13 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-533.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/2878d554-b5f5-46a7-bc2e-9fb47afdeee4) + +``` ++---------------+-----------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| startCooldown | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (TreasuryExtentions/AURA_ARB_BAL_LP_BIP_322) | 0 | "N/A" | BIP-533 | N/A | ++---------------+-----------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-538.json b/BIPs/4269-W69/test3/BIP-538.json new file mode 100644 index 000000000..b43c5b6bc --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-538.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705567015726, + "meta": { + "name": "Transactions Batch", + "description": "Add new gauges", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-538.report.txt b/BIPs/4269-W69/test3/BIP-538.report.txt new file mode 100644 index 000000000..a5f4d8d46 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-538.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-538.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/fe01f777-ec7a-41e4-b09c-66671c2e5e86) + +| Gauge Validator | Result | +| :--------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | ezETH-WETH-BPT | root: 0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b | 0x596192bB6e41802428Ac943D2f1476C1Af25CC0E: ezETH-WETH-BPT | 0x0000000000000000000000000000000000000000 | -- | BIP-538 | 0 | +| | pool_address: 0x596192bB6e41802428Ac943D2f1476C1Af25CC0E | fee: 0.04 | side: None | 0xbf5495Efe5DB9ce00f80364C8B423567e58d2110: ezETH | 0x387dBc0fB00b26fb085aa658527D5BE98302c84C | safe | | | +| | | a-factor: 1000 | style: mainnet | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: WETH | 0x0000000000000000000000000000000000000000 | -- | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-578-BAL-Vest.json b/BIPs/4269-W69/test3/BIP-578-BAL-Vest.json new file mode 100644 index 000000000..c2ff5e2a1 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-578-BAL-Vest.json @@ -0,0 +1,93 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712146834833, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x9472f72d847a5259def6cb04bca4a5239e1de4e1a6cb6cb9e16f6089d9d06058" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF", + "amount": "275000000000000000000000" + } + }, + { + "to": "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "token", + "type": "address" + }, + { + "name": "recipient", + "type": "address" + }, + { + "name": "amount", + "type": "uint256" + }, + { + "name": "vesting_duration", + "type": "uint256" + }, + { + "name": "vesting_start", + "type": "uint256" + }, + { + "name": "cliff_length", + "type": "uint256" + }, + { + "name": "open_claim", + "type": "bool" + }, + { + "name": "support_vyper", + "type": "uint256" + } + ], + "name": "deploy_vesting_contract", + "payable": false + }, + "contractInputsValues": { + "token": "0xba100000625a3754423978a60c9317c58a424e3D", + "recipient": "0x74fEa3FB0eD030e9228026E7F413D66186d3D107", + "amount": "275000000000000000000000", + "vesting_duration": "126144000", + "vesting_start": "1707868800", + "cliff_length": "0", + "open_claim": "false", + "support_vyper": "0" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-578-BAL-Vest.report.txt b/BIPs/4269-W69/test3/BIP-578-BAL-Vest.report.txt new file mode 100644 index 000000000..d416c4954 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-578-BAL-Vest.report.txt @@ -0,0 +1,46 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-578-BAL-Vest.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/017cbc3d-ce4e-4ec4-b471-66526f83c049) + +``` ++-------------------------+---------------------------------------------------------+-------+----------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------+---------------------------------------------------------+-------+----------------------------------------------------------------------------------------+------------+----------+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | BIP-578 | N/A | +| | | | "spender": [ | | | +| | | | "0x200C92Dd85730872Ab6A1e7d5E40A067066257cF (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:275000000000000000000000, 18 decimals:275000, 6 decimals: 275000000000000000" | | | +| | | | ] | | | +| | | | } | | | +| deploy_vesting_contract | 0x200C92Dd85730872Ab6A1e7d5E40A067066257cF (Not Found) | 0 | { | BIP-578 | N/A | +| | | | "token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL)" | | | +| | | | ], | | | +| | | | "recipient": [ | | | +| | | | "0x74fEa3FB0eD030e9228026E7F413D66186d3D107 (multisigs/wonderland)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:275000000000000000000000, 18 decimals:275000, 6 decimals: 275000000000000000" | | | +| | | | ], | | | +| | | | "vesting_duration": [ | | | +| | | | "126144000" | | | +| | | | ], | | | +| | | | "vesting_start": [ | | | +| | | | "1707868800" | | | +| | | | ], | | | +| | | | "cliff_length": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "open_claim": [ | | | +| | | | "false" | | | +| | | | ], | | | +| | | | "support_vyper": [ | | | +| | | | "0" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------+---------------------------------------------------------+-------+----------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-592.json b/BIPs/4269-W69/test3/BIP-592.json new file mode 100644 index 000000000..7c843c9b7 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-592.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1714026165308, + "meta": { + "name": "ARB Tx Batch", + "description": "Withdraw full position from AuraArbBalGrant contract", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "createdFromOwnerAddress": "", + "checksum": "0x9d72467150d93ae3bb733a7d0f2c37ac3690d71451f7c6821f6634f2accd9080" + }, + "transactions": [ + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256[]", + "name": "_minOuts", + "type": "uint256[]" + } + ], + "name": "exit", + "payable": false + }, + "contractInputsValues": { + "_minOuts": "[36283773870000002039808, 2058925925750633987571712, 128719428660000012107776]" + } + }, + { + "to": "0x8D803f7f7e26E586ee90E5A872cf7830e21f7727", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "withdrawBalances", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-592.report.txt b/BIPs/4269-W69/test3/BIP-592.report.txt new file mode 100644 index 000000000..2afd0627d --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-592.report.txt @@ -0,0 +1,20 @@ +FILENAME: `BIPs/4269-W69/test3/BIP-592.json` +MULTISIG: `multisigs/dao (arbitrum:0xaF23DC5983230E9eEAf93280e312e57539D098D0)` +COMMIT: `b855036692c3f386e86c660ca5969c17552e9f46` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/ad25c7d9-3066-4c1d-b6e5-c6eb69d1fa4a) + +``` ++------------------+-----------------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------+-----------------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------+------------+----------+ +| exit | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (TreasuryExtentions/AURA_ARB_BAL_LP_BIP_322) | 0 | { | BIP-592 | N/A | +| | | | "_minOuts": [ | | | +| | | | "raw:36283773870000002039808, 18 decimals:36283.773870000002039808, 6 decimals: 36283773870000002.039808", | | | +| | | | "raw:2058925925750633987571712, 18 decimals:2058925.925750633987571712, 6 decimals: 2058925925750633987.571712", | | | +| | | | "raw:128719428660000012107776, 18 decimals:128719.428660000012107776, 6 decimals: 128719428660000012.107776" | | | +| | | | ] | | | +| | | | } | | | +| withdrawBalances | 0x8D803f7f7e26E586ee90E5A872cf7830e21f7727 (TreasuryExtentions/AURA_ARB_BAL_LP_BIP_322) | 0 | "N/A" | BIP-592 | N/A | ++------------------+-----------------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-605-corrupt.json b/BIPs/4269-W69/test3/BIP-605-corrupt.json new file mode 100644 index 000000000..a475202f6 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-605-corrupt.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715204879583, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x5e4815b7ae668c5838388742529594458279d3b5e3e609d3e7d3ee7e4704bcc5" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "gauge", "type": "address" }, + { "internalType": "string", "name": "gaugeType", "type": "string" } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": [], + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-605-corrupt.report.txt b/BIPs/4269-W69/test3/BIP-605-corrupt.report.txt new file mode 100644 index 000000000..1479601e5 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-605-corrupt.report.txt @@ -0,0 +1,16 @@ +FILENAME: `BIPs/4269-W69/BIP-605-corrupt.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ae088b4beb46018fb71670d841fa127dbbc89066` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (TypeError("Unsupported type: ''. Must be one of: bool, str, bytes, bytearrayor int."))` +``` ++----------+---------------------------------------------------------------------------------+-------+------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------+---------------------------------------------------------------------------------+-------+------------------+------------+----------+ +| addGauge | 0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd (20230519-gauge-adder-v4/GaugeAdder) | 0 | { | BIP-605 | N/A | +| | | | "gaugeType": [ | | | +| | | | "Ethereum" | | | +| | | | ] | | | +| | | | } | | | ++----------+---------------------------------------------------------------------------------+-------+------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-605-corrupt.txt b/BIPs/4269-W69/test3/BIP-605-corrupt.txt new file mode 100644 index 000000000..1728bce22 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-605-corrupt.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/BIP-605-inankrETH-ankrETH-Gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bbba6e1f171efe7872be897b16842428424d9f75` +CHAIN(S): `mainnet` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/0e4ce31c-7ef9-4b4a-b295-2ea1a163aa8b) +``` ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0xdb3575310dd8f6c9e51be290fed9a2db32743fde00000000000000000000068e | inankrETH/ankrETH | 0xCC9723faDed81a9448a9664c39C0Df2e77FDfA2E | 0xdB3575310Dd8F6c9E51be290FeD9a2Db32743FDE: inankrETH/ankrETH | 0x0000000000000000000000000000000000000000 | -- | BIP-605 | 0 | +| | pool_address: 0xdB3575310Dd8F6c9E51be290FeD9a2Db32743FDE | fee: 0.04 | Style: mainnet | 0xE95A203B1a91a908F9B9CE46459d101078c2c3cb: ankrETH | 0x00F8e64a8651E3479A0B20F46b1D462Fe29D6aBc | safe | | | +| | | a-factor: 200 | cap: 100.0% | 0xfa2629B9cF3998D52726994E0FcdB750224D8B9D: InankrETH | 0x8bC73134A736437da780570308d3b37b67174ddb | safe | | | ++-----------------------+---------------------------------------------------------------------+--------------------+--------------------------------------------+---------------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/test3/BIP-699-test-delete.json b/BIPs/4269-W69/test3/BIP-699-test-delete.json new file mode 100644 index 000000000..1d1c5be52 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-699-test-delete.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "28958330000000000000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/BIP-699-test-delete.report.txt b/BIPs/4269-W69/test3/BIP-699-test-delete.report.txt new file mode 100644 index 000000000..0fd8e4368 --- /dev/null +++ b/BIPs/4269-W69/test3/BIP-699-test-delete.report.txt @@ -0,0 +1,10 @@ +File name: BIPs/4269-W69/BIP-699-test-delete.json +COMMIT: `63f0a9ae6d4fe130514d4b7a354ebea8a11506c6` +CHAIN(S): `mainnet` +``` ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| function | token_symbol | recipient_name | amount | token_address | recipient_address | raw_amount | bip | transaction_index | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +| transfer | BAL | multisigs/foundation | 28958.33 | 0xba100000625a3754423978a60c9317c58a424e3D | 0x3B8910F378034FD6E103Df958863e5c684072693 | 28958330000000000000000 | BIP-699 | N/A | ++----------+--------------+----------------------+----------+--------------------------------------------+--------------------------------------------+-------------------------+---------+-------------------+ +``` diff --git a/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_aura_direct_stream.json b/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_aura_direct_stream.json new file mode 100644 index 000000000..4cf86e5f1 --- /dev/null +++ b/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_aura_direct_stream.json @@ -0,0 +1,410 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1718736336954, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x2a185C8A3C63d7bFe63aD5d950244FFe9d0a4b60", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "amount": "23999999999999500000000" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "50", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "3580158249278400000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "56", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "2498515369551000000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "62", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "1770083299862200000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "52", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "5000000000000000000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "44", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "2921857519184900000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "54", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "865643985086200000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "26", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "1110140196449100000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "51", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "1513967213132800000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "64", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "1879985747170300000000", + "_periods": "1" + } + }, + { + "to": "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_pid", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "fundPool", + "payable": false + }, + "contractInputsValues": { + "_pid": "29", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "2859648420284600000000", + "_periods": "1" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_aura_direct_stream.report.txt b/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_aura_direct_stream.report.txt new file mode 100644 index 000000000..13ebaa8d1 --- /dev/null +++ b/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_aura_direct_stream.report.txt @@ -0,0 +1,50 @@ +FILENAME: `BIPs/4269-W69/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_aura_direct_stream.json` +MULTISIG: `!NOT FOUND (arbitrum:0x2a185C8A3C63d7bFe63aD5d950244FFe9d0a4b60)` +COMMIT: `94f42134551d55252d31b4779ea0306bf56d2a47` +CHAIN(S): `arbitrum` +TENDERLY: SKIPPED (`BadFunctionCallOutput('Could not transact with/call contract function, is contract deployed correctly and chain synced?')`) +``` ++----------+-------------------------------------------------------+--------+------------------------------------------------+-----------------------------------------------+---------+----------+ +| function | injector | symbol | gauge_info | amount_per_period | periods | tx_index | ++----------+-------------------------------------------------------+--------+------------------------------------------------+-----------------------------------------------+---------+----------+ +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 50(0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E) | 3580158249278400000000/1e18 = 3580.1582492784 | 1 | 1 | +| | | | Balancer cbETH/rETH/wstETH Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 56(0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b) | 2498515369551000000000/1e18 = 2498.515369551 | 1 | 2 | +| | | | Balancer ECLP-AUSDC-AUSDT Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 62(0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69) | 1770083299862200000000/1e18 = 1770.0832998622 | 1 | 3 | +| | | | Balancer jitoSOL/wstETH Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 52(0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68) | 5000000000000000000000/1e18 = 5000.0 | 1 | 4 | +| | | | Balancer rETH/wETH BPT Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 44(0x050fBe33699E56B577c3D6f090eCE9870A0966bd) | 2921857519184900000000/1e18 = 2921.8575191849 | 1 | 5 | +| | | | Balancer sFRAX/4POOL Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 54(0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912) | 865643985086200000000/1e18 = 865.6439850862 | 1 | 6 | +| | | | Balancer ezETH/wstETH Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 26(0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE) | 1110140196449100000000/1e18 = 1110.1401964491 | 1 | 7 | +| | | | Balancer ankrETH/wstETH-BPT Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 51(0x06eaf7bAabEac962301eE21296e711B3052F2c0d) | 1513967213132800000000/1e18 = 1513.9672131328 | 1 | 8 | +| | | | Balancer wstETH/sfrxETH Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 64(0x40e86216712cB9871B9C698EA3AFB22f88c00E6e) | 1879985747170300000000/1e18 = 1879.9857471703 | 1 | 9 | +| | | | Balancer ECLP-WOETH-WETH Gauge Deposit | | | | +| fundPool | 0xcA85e2cE206b48ee28A87b0a06f9519ABE627451(Not Found) | ARB | 29(0x260cbb867359a1084eC97de4157d06ca74e89415) | 2859648420284600000000/1e18 = 2859.6484202846 | 1 | 10 | +| | | | Balancer wstETH-WETH-BPT Gauge Deposit | | | | ++----------+-------------------------------------------------------+--------+------------------------------------------------+-----------------------------------------------+---------+----------+ +``` +FILENAME: `BIPs/4269-W69/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_aura_direct_stream.json` +MULTISIG: `!NOT FOUND (arbitrum:0x2a185C8A3C63d7bFe63aD5d950244FFe9d0a4b60)` +COMMIT: `94f42134551d55252d31b4779ea0306bf56d2a47` +CHAIN(S): `arbitrum` +TENDERLY: SKIPPED (`BadFunctionCallOutput('Could not transact with/call contract function, is contract deployed correctly and chain synced?')`) +``` ++---------+---------------------------------------------------------+-------+------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------+-------+------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xcA85e2cE206b48ee28A87b0a06f9519ABE627451 (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:23999999999999500000000, 18 decimals:23999.9999999995, 6 decimals: 23999999999999500" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------+-------+------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_bal_injector_stream.json b/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_bal_injector_stream.json new file mode 100644 index 000000000..d0f3e8eff --- /dev/null +++ b/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x2a185C8A3C63d7bFe63aD5d950244FFe9d0a4b60", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x59907f88C360D576Aa38dba84F26578367F96b6C,0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0x260cbb867359a1084eC97de4157d06ca74e89415]", + "amountsPerPeriod": "[1000000000000000000000,3580158249278400000000,1000000000000000000000,2498515369551000000000,1770083299862200000000,5000000000000000000000,2921857519184900000000,865643985086200000000,1110140196449100000000,1513967213132800000000,1879985747170300000000,2859648420284600000000]", + "maxPeriods": "[1,1,1,1,1,1,1,1,1,1,1,1]" + } + }, + { + "to": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "25999999999999500000000" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_bal_injector_stream.report.txt b/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_bal_injector_stream.report.txt new file mode 100644 index 000000000..026e8c327 --- /dev/null +++ b/BIPs/4269-W69/test3/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_bal_injector_stream.report.txt @@ -0,0 +1,37 @@ +FILENAME: `BIPs/4269-W69/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_bal_injector_stream.json` +MULTISIG: `!NOT FOUND (arbitrum:0x2a185C8A3C63d7bFe63aD5d950244FFe9d0a4b60)` +COMMIT: `94f42134551d55252d31b4779ea0306bf56d2a47` +CHAIN(S): `arbitrum` +TENDERLY: SKIPPED (`BadFunctionCallOutput('Could not transact with/call contract function, is contract deployed correctly and chain synced?')`) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 25999.9999999995 (RAW: 25999999999999500000000) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `BIPs/4269-W69/arbitrum_stip_bridge_start_q2_2024_2024-05-29_2024-06-12_bal_injector_stream.json` +MULTISIG: `!NOT FOUND (arbitrum:0x2a185C8A3C63d7bFe63aD5d950244FFe9d0a4b60)` +COMMIT: `94f42134551d55252d31b4779ea0306bf56d2a47` +CHAIN(S): `arbitrum` +TENDERLY: SKIPPED (`BadFunctionCallOutput('Could not transact with/call contract function, is contract deployed correctly and chain synced?')`) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+---------------------------------------------------+---------+------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+---------------------------------------------------+---------+------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 25999999999999500000000/1e18 = 25999.9999999995 | 0 | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "1000000000000000000000/1e18 = 1000.0", | 1, | | | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "3580158249278400000000/1e18 = 3580.1582492784", | 1, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)", | "1000000000000000000000/1e18 = 1000.0", | 1, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)", | "2498515369551000000000/1e18 = 2498.515369551", | 1, | | | +| | | | "0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69 (gauges/jitoSOL/wstETH-gauge-fa7c)", | "1770083299862200000000/1e18 = 1770.0832998622", | 1, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "5000000000000000000000/1e18 = 5000.0", | 1, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "2921857519184900000000/1e18 = 2921.8575191849", | 1, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "865643985086200000000/1e18 = 865.6439850862", | 1, | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "1110140196449100000000/1e18 = 1110.1401964491", | 1, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "1513967213132800000000/1e18 = 1513.9672131328", | 1, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "1879985747170300000000/1e18 = 1879.9857471703", | 1, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)" | "2859648420284600000000/1e18 = 2859.6484202846" | 1 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+---------------------------------------------------+---------+------------------------------------------------------+----------+ +``` diff --git a/BIPs/4269-W69/test3/eth_transfer_and_aura_relock.json b/BIPs/4269-W69/test3/eth_transfer_and_aura_relock.json new file mode 100644 index 000000000..7c09bcac2 --- /dev/null +++ b/BIPs/4269-W69/test3/eth_transfer_and_aura_relock.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_relock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "processExpiredLocks", + "payable": false + }, + "contractInputsValues": { + "_relock": "true" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-551.json", + "bip_number": "BIP-551" + } + }, + { + "to": "0xFd72170339AC6d7bdda09D1eACA346B21a30D422", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_lock", + "type": "bool", + "internalType": "bool" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "_lock": "true" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-551.json", + "bip_number": "BIP-551" + } + }, + { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "50000000000000000000", + "data": null, + "contractMethod": null, + "contractInputsValues": null, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-556.json", + "bip_number": "BIP-556" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "29000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-518-4.json", + "bip_number": "BIP-518" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86", + "value": "30000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2024-W11/BIP-519-4.json", + "bip_number": "BIP-519" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/eth_transfer_and_aura_relock.report.txt b/BIPs/4269-W69/test3/eth_transfer_and_aura_relock.report.txt new file mode 100644 index 000000000..f9c0a4f10 --- /dev/null +++ b/BIPs/4269-W69/test3/eth_transfer_and_aura_relock.report.txt @@ -0,0 +1,42 @@ +FILENAME: `BIPs/4269-W69/eth_transfer_and_aura_relock.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/df72a096-623c-45dc-af4e-c14eced1bedd) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=============================================================================+============================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 29000.0 (RAW: 29000000000) | BIP-518 | 3 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/beets_service_provider:0x811912c19eEF91b9Dc3cA52fc426590cFB84FC86 | 30000.0 (RAW: 30000000000) | BIP-519 | 4 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------+----------------------------+---------+------------+ +``` +FILENAME: `BIPs/4269-W69/eth_transfer_and_aura_relock.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5bbc64cf-03e9-4a49-b44a-f5c03f41da9a) +``` ++---------------------+-----------------------------------------------------------------+----------------------------------+----------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=====================+=================================================================+==================================+================+==============+============+ +| processExpiredLocks | 0x3Fa73f1E5d8A792C80F426fc8F84FBF7Ce9bBCAC (aura/vlAURA) | 0 | { | BIP-551 | N/A | +| | | | "_relock": [ | | | +| | | | [ | | | +| | | | true | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------+----------------------------------+----------------+--------------+------------+ +| claim | 0xFd72170339AC6d7bdda09D1eACA346B21a30D422 (Not Found) | 0 | { | BIP-551 | N/A | +| | | | "_lock": [ | | | +| | | | [ | | | +| | | | true | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++---------------------+-----------------------------------------------------------------+----------------------------------+----------------+--------------+------------+ +| !!N/A!! | 0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops) | 50000000000000000000/1e18 = 50.0 | "N/A" | BIP-556 | N/A | ++---------------------+-----------------------------------------------------------------+----------------------------------+----------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/test3/setRecipientList_avax_sAVAX_QI.json b/BIPs/4269-W69/test3/setRecipientList_avax_sAVAX_QI.json new file mode 100644 index 000000000..0dbc8a422 --- /dev/null +++ b/BIPs/4269-W69/test3/setRecipientList_avax_sAVAX_QI.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1708589438916, + "meta": { + "name": "Set new sAVAX QI rewards schedule", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0xb5ffe360573be6bd7f48618b285cccff758ede51f4ea29edd09de81fdbed95e4" + }, + "transactions": [ + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xf9aE6D2D56f02304f72dcC61694eAD0dC8DB51f7]", + "amountsPerPeriod": "[700000000000000000000000]", + "maxPeriods": "[4]" + } + } + ] +} diff --git a/BIPs/4269-W69/test3/setRecipientList_avax_sAVAX_QI.report.txt b/BIPs/4269-W69/test3/setRecipientList_avax_sAVAX_QI.report.txt new file mode 100644 index 000000000..c6c97e114 --- /dev/null +++ b/BIPs/4269-W69/test3/setRecipientList_avax_sAVAX_QI.report.txt @@ -0,0 +1,14 @@ +FILENAME: `BIPs/4269-W69/setRecipientList_avax_sAVAX_QI.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `763e60eb6d9ee9e83853d279895435c866a52f86` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/dfef53f4-e38b-4672-87c0-bf41d302bfcc) +``` ++------------------+----------------------------------------------------------------------------------+----------+-----------------------------------------------------------------------------------+---------------------------------------------+-----------+-----------------------------------------------+------------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++==================+==================================================================================+==========+===================================================================================+=============================================+===========+===============================================+============+ +| setRecipientList | 0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE(maxiKeepers/gaugeRewardsInjectors/qi) | QI | [ | [ | [ | raw: 700000000000000000000000/1e18 = 700000.0 | 0 | +| | | | "0xf9aE6D2D56f02304f72dcC61694eAD0dC8DB51f7 (gauges/sAVAX-WAVAX-BPT-gauge-f9ae)" | "700000000000000000000000/1e18 = 700000.0" | "4" | | | +| | | | ] | ] | ] | | | ++------------------+----------------------------------------------------------------------------------+----------+-----------------------------------------------------------------------------------+---------------------------------------------+-----------+-----------------------------------------------+------------+ +``` diff --git a/BIPs/4269-W69/unit_test/BIP-348.json b/BIPs/4269-W69/unit_test/BIP-348.json new file mode 100644 index 000000000..bf64e264c --- /dev/null +++ b/BIPs/4269-W69/unit_test/BIP-348.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "93750000000" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/Chainlink_automation/change_forwarder_usdc_injector_gno.json b/BIPs/4269-W69/unit_test/Chainlink_automation/change_forwarder_usdc_injector_gno.json new file mode 100644 index 000000000..06af15f6c --- /dev/null +++ b/BIPs/4269-W69/unit_test/Chainlink_automation/change_forwarder_usdc_injector_gno.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1726054496497, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0x0d67514658807d8388819a0c777240657cfc7f3736f69a7586ee9f3423f59880" + }, + "transactions": [ + { + "to": "0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x00B58Cc97dDb8865DED9b1d4f79A81c45d23c96d" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/Chainlink_automation/loose_ends_arb1_1.json b/BIPs/4269-W69/unit_test/Chainlink_automation/loose_ends_arb1_1.json new file mode 100644 index 000000000..52ee250c8 --- /dev/null +++ b/BIPs/4269-W69/unit_test/Chainlink_automation/loose_ends_arb1_1.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1720446355402, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x376b99aad2d92f5f625145f2cdc4228815f4ce23bc8e3e1241d8a60368b371c2" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_gas_polygon_part2.json b/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_gas_polygon_part2.json new file mode 100644 index 000000000..c6ea0668e --- /dev/null +++ b/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_gas_polygon_part2.json @@ -0,0 +1,37 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1717674719187, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x041e4a9811e5c132339b771af07c1721b8b431f82593eaa42fe0fb21940b9e96" + }, + "transactions": [ + { + "to": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x08a8eea76D2395807Ce7D1FC942382515469cCA1", + "value": "0", + "data": "0xc8048022b85c6cd900000000000000000000000042b230ef457e927d56e259ba3c3a8ed3", + "contractMethod": { + "inputs": [], + "name": "ArrayHasNoEntries", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_injectors_avax_part1.json b/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_injectors_avax_part1.json new file mode 100644 index 000000000..8ce114d0f --- /dev/null +++ b/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_injectors_avax_part1.json @@ -0,0 +1,219 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1718216835367, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x6a7db7d984daafe735726a3a9b4ec3ae358ebcf8719f19f6f3a15f18bb52e187" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x53AD3148Dd5783ea760072C0fD5d9A86021598C5" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "keeperRegistryAddress", + "type": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0xf60A86480b845750373F0fF249cb052E519a35d8" + } + }, + { + "to": "0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "keeperRegistryAddress", + "type": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0xd99F8A5f151b2806a1f075bD97f998E81771ad32" + } + }, + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x95008946F2773f24588AEEE44d643016381265FF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x9A9e9124CC043332E08b5333c78036244e95930E" + } + }, + { + "to": "0x95008946F2773f24588AEEE44d643016381265FF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x2ddE382f350241DbF00bc9B192dc53E3dbd58996" + } + }, + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x10087761Ebd0Da939d2123A0B18D69F11f5Ea67f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x822352259CBE2f610C8D99a97Ad560D9d0a13AB0" + } + }, + { + "to": "0x10087761Ebd0Da939d2123A0B18D69F11f5Ea67f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_mainnet_part1.json b/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_mainnet_part1.json new file mode 100644 index 000000000..8f996406c --- /dev/null +++ b/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_mainnet_part1.json @@ -0,0 +1,64 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718374455159, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90b3a77a95b4dac16871cb3b9fa6452d54cf4535f016b07e6911487884643fb4" + }, + "transactions": [ + { + "to": "0xdDd5FF0E581f097573B13f247F6BE736f602F839", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_keeperRegistry", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistry", + "payable": false + }, + "contractInputsValues": { + "_keeperRegistry": "0x4249093e75b2eECA9f3ba3171eA1f3fA186ABE9D" + } + }, + { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_mainnet_part2.json b/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_mainnet_part2.json new file mode 100644 index 000000000..703e02add --- /dev/null +++ b/BIPs/4269-W69/unit_test/Chainlink_automation/migrate_mainnet_part2.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718374706344, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x8925d4b1be872c5d132f3bcb556074f35f7bb15b51851f3cc3c9b85a0e15e7b1" + }, + "transactions": [ + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperAddress", + "payable": false + }, + "contractInputsValues": { + "keeperAddress": "0x9795368b9DA5caaE45f214fF1d2Fdf0c9bbC56aa" + } + }, + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/Chainlink_automation/top_up_arb_injector.json b/BIPs/4269-W69/unit_test/Chainlink_automation/top_up_arb_injector.json new file mode 100644 index 000000000..ca97eaab7 --- /dev/null +++ b/BIPs/4269-W69/unit_test/Chainlink_automation/top_up_arb_injector.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722942173369, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xfe7ea49014a7b7aed6f3b8419c3ecf307c3856df72bc2faad72ee7718ef4feeb" + }, + "transactions": [ + { + "to": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "_to", "type": "address" }, + { "internalType": "uint256", "name": "_value", "type": "uint256" }, + { "internalType": "bytes", "name": "_data", "type": "bytes" } + ], + "name": "transferAndCall", + "payable": false + }, + "contractInputsValues": { + "_to": "0x37D9dC70bfcd8BC77Ec2858836B923c560E891D1", + "_value": "3000000000000000000", + "_data": "0x478c776000000000000000000000000015883228345c62d279ec41332795cc0f" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-682.json b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-682.json new file mode 100644 index 000000000..c25da61b0 --- /dev/null +++ b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-682.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308197460, + "meta": { + "name": "Transactions Batch", + "description": "Add sUSDE/GYD E-CLP gauge", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x146b6030E6d6a6398B918E9854652a71C9537180", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-682.report.txt b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-682.report.txt new file mode 100644 index 000000000..fb9f78326 --- /dev/null +++ b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-682.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-682.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e48b0d846281edf7817d908dd966c1727f70f6d2` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/b08cbf1e-e460-4687-9789-05f64d9822eb) + +| Gauge Validator (0x146b6030E6d6a6398B918E9854652a71C9537180) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3 | ECLP-sUSDe-GYD | root: 0x146b6030E6d6a6398B918E9854652a71C9537180 | 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497: sUSDe | 0x3A244e6B3cfed21593a5E5B347B593C0B48C7dA1 | safe | BIP-682 | 0 | +| | pool_address: 0x8D93B853849b9884E2Bb413444Ec23eB5366eE91 | fee: 0.15 | side: None | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | 0x0000000000000000000000000000000000000000 | -- | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-----------------+--------------------------------------------------+---------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-683.json b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-683.json new file mode 100644 index 000000000..9095462f2 --- /dev/null +++ b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-683.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308423093, + "meta": { + "name": "Transactions Batch", + "description": "Enable aGHO-USDe ECLP gauge on Arbitrum", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xD558C611B69a223767788B638717E868D8947Fd0", + "gaugeType": "Arbitrum" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-683.report.txt b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-683.report.txt new file mode 100644 index 000000000..c600e1606 --- /dev/null +++ b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-683.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-683.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e48b0d846281edf7817d908dd966c1727f70f6d2` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/12e242d4-694c-4177-88a8-d6c871e729f0) + +| Gauge Validator (0xD558C611B69a223767788B638717E868D8947Fd0) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x38161e9efb8de52d00a1eb0f773223fd28fdd7c20002000000000000000005a0 | ECLP-GHO-USDe-rh | root: 0xD558C611B69a223767788B638717E868D8947Fd0 | 0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34: USDe | 0x0000000000000000000000000000000000000000 | -- | BIP-683 | 0 | +| | pool_address: 0x38161e9eFb8De52D00A1eB0f773223FD28FDd7c2 | fee: 0.01 | side: 0xcfab2efeF3aFfdd158568DC896115Eac26B3C498 | 0xD9FBA68D89178e3538e708939332c79efC540179: stataArbGHO | 0x177862A0242acD8b5F9cc757a963c1C8883da45E | safe | | | +| | | a-factor: N/A | style: L0 sidechain | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+-------------------+--------------------------------------------------+---------------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-684.json b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-684.json new file mode 100644 index 000000000..8d2c0d104 --- /dev/null +++ b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-684.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724308782493, + "meta": { + "name": "Transactions Batch", + "description": "Add sdeUSD/deUSD ECLP gauge on Mainnet", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gauge", + "type": "address", + "internalType": "address" + }, + { + "name": "gaugeType", + "type": "string", + "internalType": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA00DB7d9c465e95e4AA814A9340B9A161364470a", + "gaugeType": "Ethereum" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-684.report.txt b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-684.report.txt new file mode 100644 index 000000000..bebb3a72c --- /dev/null +++ b/BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-684.report.txt @@ -0,0 +1,22 @@ +FILENAME: `BIPs/4269-W69/unit_test/add_gauge_eclps/BIP-684.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e48b0d846281edf7817d908dd966c1727f70f6d2` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/a45b4440-e243-4db3-a45c-78169f259eb8) + +| Gauge Validator (0xA00DB7d9c465e95e4AA814A9340B9A161364470a) | Result | +| :------------------------------------------------------------| :----: | +| `validate_preferential_gauge` | ✅ | +| `validate_rate_providers_safety` | ✅ | + +``` ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | review_summary | bip | tx_index | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +| GaugeAdderV4/addGauge | 0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be | ECLP-stdeUSD-deUSD | root: 0xA00DB7d9c465e95e4AA814A9340B9A161364470a | 0x15700B564Ca08D9439C58cA5053166E8317aa138: deUSD | 0x0000000000000000000000000000000000000000 | -- | BIP-684 | 0 | +| | pool_address: 0x41FDbea2E52790c0a1Dc374F07b628741f2E062D | fee: 0.01 | side: None | 0x5C5b196aBE0d54485975D1Ec29617D42D9198326: sdeUSD | 0x414aB7081D3C2d0BA75703A465744DF99c9f9B22 | safe | | | +| | | a-factor: N/A | style: mainnet | | | | | | +| | | | cap: 100.0% | | | | | | +| | | | preferential: True | | | | | | ++-----------------------+---------------------------------------------------------------------+---------------------+--------------------------------------------------+----------------------------------------------------+--------------------------------------------+----------------+---------+----------+ +``` diff --git a/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json new file mode 100644 index 000000000..213f419ed --- /dev/null +++ b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json @@ -0,0 +1,194 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-387.json", + "bip_number": "BIP-387" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "125961000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-352A.json", + "bip_number": "BIP-352" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3B8910F378034FD6E103Df958863e5c684072693", + "value": "62230580000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-352A.json", + "bip_number": "BIP-352" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B", + "data": "0xab8f0945" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP365B.json", + "bip_number": "BIP365" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca", + "account": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-369-1-cowswap.json", + "bip_number": "BIP-369" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "value": "50000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-386.json", + "bip_number": "BIP-386" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt new file mode 100644 index 000000000..1687c9b00 --- /dev/null +++ b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt @@ -0,0 +1,43 @@ +FILENAME: `BIPs/4269-W69/test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b1bc93d2ec9b1d40416acaf37eaa87557a4b01b4` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/bc30cc03-e2f0-427d-a352-755c8fc998ba) +``` ++--------------------------+--------------------------------------------------------------------+-------------------------+-----+--------------------------------------------+---------+--------+---------+--------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| function | pool_id | symbol | a | gauge_address | fee | cap | style | bip | tx_index | tokens | ++==========================+====================================================================+=========================+=====+============================================+=========+========+=========+========+============+==============================================================================================================================================================================================================================================+ +| AAEntrypoint/killGauge() | 0x5aee1e99fe86960377de9f88689616916d5dcabe000000000000000000000467 | wstETH-rETH-sfrxETH-BPT | 700 | 0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B | 0.0001% | 100.0% | mainnet | BIP365 | 3 | ['wstETH-rETH-sfrxETH-BPT (0x5aEe1e99fE86960377DE9f88689616916D5DcaBe)', 'wstETH (0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0)', 'sfrxETH (0xac3E018457B222d93114458476f3E3416Abbe38F)', 'rETH (0xae78736Cd615f374D3085123A210448E74Fc6393)'] | ++--------------------------+--------------------------------------------------------------------+-------------------------+-----+--------------------------------------------+---------+--------+---------+--------+------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +``` +FILENAME: `BIPs/4269-W69/test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b1bc93d2ec9b1d40416acaf37eaa87557a4b01b4` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/74c99efb-506a-45c7-80eb-509cd3fc1138) +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+======================================================================+=========================================+=========+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 125961.0 (RAW: 125961000000) | BIP-352 | 1 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------------------+---------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/foundation_opco:0x3B8910F378034FD6E103Df958863e5c684072693 | 62230.58 (RAW: 62230580000000000000000) | BIP-352 | 2 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------------------+---------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 50000.0 (RAW: 50000000000) | BIP-386 | 5 | ++------------+-------------------------------------------------+----------------------------------------------------------------------+-----------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/4269-W69/test/base_setup_week-shortened/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.json` +MULTISIG: `multisigs/dao (mainnet:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f)` +COMMIT: `b1bc93d2ec9b1d40416acaf37eaa87557a4b01b4` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9dc3ef73-1f32-4055-914a-bf74598cff80) +``` ++----------------------+----------------+--------------------------------------------+---------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++======================+================+============================================+=======================================================================================+====================================================================+=========+============+ +| Authorizer/grantRole | multisigs/lm | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | 20220325-mainnet-gauge-factory/LiquidityGaugeV5/add_reward(address,address) | 0x3bf29175652a3f0fac5abb715d0b7fe2e7b597e2e2eff555dac6b21a20a7c83e | BIP-387 | 0 | +| | | | 20220822-mainnet-gauge-factory-v2/LiquidityGaugeV5/add_reward(address,address) | | | | ++----------------------+----------------+--------------------------------------------+---------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRole | cow/settlement | 0x9008D19f58AAbD9eD0D60971565AA8510560ab41 | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x42bc3b76ebdb675c6f7836b464d27c7517e14b05dc08bb944a4837563fc805ca | BIP-369 | 4 | ++----------------------+----------------+--------------------------------------------+---------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json new file mode 100644 index 000000000..0eb299b3b --- /dev/null +++ b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xA4DAA3498677D655E359b0Fc83EbDbd8dbF76a50", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-384A.json", + "bip_number": "BIP-384" + } + }, + { + "to": "0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + } + ], + "name": "addGauge", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x56c0626E6E3931af90EbB679A321225180d4b32B", + "gaugeType": "Arbitrum" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-380.json", + "bip_number": "BIP-380" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt new file mode 100644 index 000000000..0c39aa366 --- /dev/null +++ b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.report.txt @@ -0,0 +1,19 @@ +FILENAME: `BIPs/4269-W69/test/base_setup_week-shortened/1-0xc38c5f97B34E175FFd35407fc91a937300E33860.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b1bc93d2ec9b1d40416acaf37eaa87557a4b01b4` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/cca952e9-e8a9-4b5a-8f99-2cdff3d088f8) +``` ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| function | pool_id_and_address | symbol_and_info | gauge_address_and_info | tokens | rate_providers | bip | tx_index | ++=======================+=====================================================================+===========================+============================================+=====================================================================+=================================================+=========+============+ +| GaugeAdderV4/addGauge | 0x84a1038d55e887c2abb8cb02ccf4c9d3871c859a000000000000000000000489 | Stafi rETH/WETH | 0xA4DAA3498677D655E359b0Fc83EbDbd8dbF76a50 | "rETH (0x6CDA1D3D092811b2d48F7476adb59A6239CA9b95)", | "0x728bbE0668398F229c64eE95B34c4DBcA32699c0", | BIP-384 | 0 | +| | pool_address: 0x84A1038D55e887c2ABb8cB02ccf4C9d3871C859a | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 10.0% | "WETH (0x82aF49447D8a07e3bd95BD0d56f35241523fBab1)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "Stafi rETH/WETH (0x84A1038D55e887c2ABb8cB02ccf4C9d3871C859a)" | "0x0000000000000000000000000000000000000000" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +| GaugeAdderV4/addGauge | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | wstETH/rETH/cbETH | 0x56c0626E6E3931af90EbB679A321225180d4b32B | "cbETH (0x1DEBd73E752bEaF79865Fd6446b0c970EaE7732f)", | "0xd983d5560129475bFC210332422FAdCb4EcD09B0", | BIP-380 | 1 | +| | pool_address: 0x4a2F6Ae7F3e5D715689530873ec35593Dc28951B | fee: 0.04, a-factor: 1500 | Style: L0 sidechain, cap: 100.0% | "wstETH/rETH/cbETH (0x4a2F6Ae7F3e5D715689530873ec35593Dc28951B)", | "0x0000000000000000000000000000000000000000", | | | +| | | | | "wstETH (0x5979D7b546E38E414F7E9822514be443A4800529)", | "0xf7c5c26B574063e7b098ed74fAd6779e65E3F836", | | | +| | | | | "rETH (0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8)" | "0xA73ec45Fe405B5BFCdC0bF4cbc9014Bb32a01cd2" | | | ++-----------------------+---------------------------------------------------------------------+---------------------------+--------------------------------------------+---------------------------------------------------------------------+-------------------------------------------------+---------+------------+ +``` diff --git a/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-anySafeWillDo.json b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-anySafeWillDo.json new file mode 100644 index 000000000..b34cfb040 --- /dev/null +++ b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-anySafeWillDo.json @@ -0,0 +1,70 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Optimism", + "gauges": [ + "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6" + ] + } + }, + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Optimism", + "gauges": [ + "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2", + "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6" + ] + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-anySafeWillDo.report.txt b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-anySafeWillDo.report.txt new file mode 100644 index 000000000..b154bddfe --- /dev/null +++ b/BIPs/4269-W69/unit_test/base_setup_week-shortened/1-anySafeWillDo.report.txt @@ -0,0 +1,30 @@ +FILENAME: `BIPs/4269-W69/test/base_setup_week-shortened/1-anySafeWillDo.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b1bc93d2ec9b1d40416acaf37eaa87557a4b01b4` +CHAIN(S): `mainnet` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/bf4e04b5-9851-4ac0-bb82-633f242aa1a6) +``` ++-----------+-------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+=================================================================================================+=========+=========================================================+==============+============+ +| addGauges | 0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC (20230527-l2-gauge-checkpointer/L2GaugeCheckpointer) | 0 | { | N/A | N/A | +| | | | "gaugeType": [ | | | +| | | | "Optimism" | | | +| | | | ], | | | +| | | | "gauges": [ | | | +| | | | "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2 (N/A)", | | | +| | | | "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| addGauges | 0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC (20230527-l2-gauge-checkpointer/L2GaugeCheckpointer) | 0 | { | N/A | N/A | +| | | | "gaugeType": [ | | | +| | | | "Optimism" | | | +| | | | ], | | | +| | | | "gauges": [ | | | +| | | | "0xE9816654a37aaBAEC2A742f1a1cE4c99D42c08D2 (N/A)", | | | +| | | | "0xAb6b60F389218AFf06DE279BF8c69A246568b5a6 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+-------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/unit_test/base_setup_week-shortened/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json b/BIPs/4269-W69/unit_test/base_setup_week-shortened/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json new file mode 100644 index 000000000..8b478f517 --- /dev/null +++ b/BIPs/4269-W69/unit_test/base_setup_week-shortened/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json @@ -0,0 +1,452 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xC40DCFB13651e64C8551007aa57F9260827B6462", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9, 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd, 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde, 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e, 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717, 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157, 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7, 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01, 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01, 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e, 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed, 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c, 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3, 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1, 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d, 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14, 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86, 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03]", + "account": "0x65226673F3D202E0f897C862590d7e1A992B2048" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df, 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4, 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0, 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5, 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e, 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e, 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e, 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d, 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb, 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4, 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b, 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24, 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8, 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1, 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf, 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0, 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be, 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b, 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab]", + "account": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30, 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8, 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653, 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498, 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff, 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34]", + "account": "0x76f7204B62f554b79d444588EDac9dfA7032c71a" + }, + "meta": { + "tx_index": 3, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796]", + "account": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + }, + "meta": { + "tx_index": 4, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e, 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083]", + "account": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d" + }, + "meta": { + "tx_index": 5, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0x809B79b53F18E9bc08A961ED4678B901aC93213a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d]", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 6, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/base.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "0", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388A.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newValue", + "type": "uint256" + } + ], + "name": "setFeeTypePercentage", + "payable": false + }, + "contractInputsValues": { + "feeType": "2", + "newValue": "500000000000000000" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388A.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract ILiquidityGaugeFactory", + "name": "factory", + "type": "address" + } + ], + "name": "addGaugeFactory", + "payable": false + }, + "contractInputsValues": { + "factory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388B.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 0, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "payable": false + }, + "contractInputsValues": { + "newAuthorizer": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE" + }, + "meta": { + "tx_index": 1, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0", + "account": "0xC40DCFB13651e64C8551007aa57F9260827B6462" + }, + "meta": { + "tx_index": 2, + "origin_file_name": "/home/runner/work/multisig-ops/multisig-ops/BIPs/2023-W30/BIP-388/BIP-388C.json", + "bip_number": "BIP-388" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/base_setup_week-shortened/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt b/BIPs/4269-W69/unit_test/base_setup_week-shortened/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt new file mode 100644 index 000000000..0588222f4 --- /dev/null +++ b/BIPs/4269-W69/unit_test/base_setup_week-shortened/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.report.txt @@ -0,0 +1,123 @@ +FILENAME: `BIPs/4269-W69/test/base_setup_week-shortened/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `b1bc93d2ec9b1d40416acaf37eaa87557a4b01b4` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/878cb2be-42a7-4d76-a94c-7ec85afecea0) +``` ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| function | caller_name | caller_address | fx_paths | action_ids | bip | tx_index | ++==============================+===========================================================================+============================================+========================================================================================================================================+====================================================================+=========+============+ +| Authorizer/grantRoles | multisigs/lm | 0x65226673F3D202E0f897C862590d7e1A992B2048 | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/withdrawCollectedFees(address[],uint256[],address) | 0xe4041b7c17d9c1871f2ba2855b724e8cdbb7c190bc2fbfaab37f914aa5ead4e9 | BIP-388 | 0 | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/removePoolFactory(address) | 0x3a5fbda603e92fb625ac204c5e4dc0e375c53b53fa42682287bdce2bca35a5dd | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setSwapFeePercentage(uint256) | 0xcb96c6dcd233b49f5decb6e39b3a91d415076c7d8c78ef46aad6e1823ba2dfde | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setSwapFeePercentage(uint256) | 0x9d318591426ef81869bafdd882644eabf74f1bb29f17f1f7625ceaeb7bf7014e | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/setSwapFeePercentage(uint256) | 0x82082fa8e750c32535c8828ada82d6f47fd7ec82740773fc3bb3f7eb88a11717 | | | +| | | | 20230316-child-chain-gauge-factory-v2/ChildChainGauge/add_reward(address,address) | 0xf88b0410ed2535c2978ede956e8b17ef2738d8d5f57956886f4e9b7b0d9fd157 | | | +| | | | 20221123-pool-recovery-helper/PoolRecoveryHelper/addPoolFactory(address) | 0x1b92428da72954e7ad3b364e59fbb88fdbec99e68976683c4a272d59c3e157c7 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/registerProtocolId(uint256,string) | 0xe99afce61168d320ec93ef86518f2e0e3d8c360af8d08e02ed8dd11dd0e7ba01 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setTargets(uint256,uint256) | 0x20596e561f7373b0d1b94c593a358474e02401a7b56de09f5af901470e652c01 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/setSwapFeePercentage(uint256) | 0x54f4400937c49ea26409a0ee7262a49aea8d784bd16e12ac7e403ea500fe5d7e | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/startAmplificationParameterUpdate(uint256,uint256) | 0x19453697f1a22fa9bd43b56478d27bf8d43290be524f46ffbb6ae41dc88948ed | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/setSwapFeePercentage(uint256) | 0xd27b2ac43e0623100afea54ac906bb9f0959b26cca33f836b228af779026310c | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/stopAmplificationParameterUpdate() | 0xd0adf54c46ef81c9626969a3de810f8e445983f029319bc6caaf459eba91c1a3 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/setTargets(uint256,uint256) | 0x7bad87ee9adce89c39ca6f50f383bb054fe8919b6238a928b0741e707443b4b1 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/setTargets(uint256,uint256) | 0xf037bfa1f407c134bc46cd288ab93d47b13cd73831c019707c6fed5162cf1b2d | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setTargets(uint256,uint256) | 0xf8e0160362ea0d3bd75a137e0a65022b2a4db29686269ff6e2857f869f477f14 | | | +| | | | 20230223-protocol-id-registry/ProtocolIdRegistry/renameProtocolId(uint256,string) | 0xe6687796e86abcc8eb0900861ae06a0a5b13fe61e2fe525abba33a1b685a6d86 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/setSwapFeePercentage(uint256) | 0xe716f33bb1aed7ca21a3a428a38e0fec5f3ea274a3fa22d8171e5b5e849c7f03 | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/emergency | 0x183C55A0dc7A7Da0f3581997e764D85Fd9E9f63a | 20230320-weighted-pool-v4/WeightedPool/pause() | 0x0cce170c212bd2a0cb239b2e279b6a7527ddab4a9bfe5a6801db9f4e55b3f0df | BIP-388 | 1 | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePoolFactory/disable() | 0xdaaee19ea07a42ead195d8bb23af2bef543fbc6c68646c53eac48ccce223ebd4 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/pause() | 0x4a4361641d901585c4fa979102d0b24a0ee5aa41b6fd013b52a7bc7192d2c9e0 | | | +| | | | 20230411-managed-pool-v2/ManagedPoolFactory/disable() | 0x32c99c7bebe997132d11c52792aa8f98dfe9af3d95068a00fb2839cced101ba5 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/pause() | 0x787ddd9e3759641f3bd348d3b62449470d43dd976a461ab987b2120963a72164 | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer/denylistToken(address) | 0xd4d02fac00eec9b98c87b3cad7aa928f3de03afab5ef9b4a9c9d8e51a866f57e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPoolFactory/disable() | 0xca1bf022f0a4111e9e6995ddb177d334178b978208cdf454fe8b8a81eaa50b1e | | | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/pause() | 0xb8f99692f0cb1e9dbabcb6d9e154bf55ee4fc003eb5e75a94b3acd8c3628ec7e | | | +| | | | 20230411-managed-pool-v2/ManagedPool/pause() | 0xe55f0ed468a8366ce0223a459aaa4103989d9a28ca371feafc378638c54fd44d | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPoolFactory/disable() | 0x9ddfaeb59ec91a3946f847e3d4a82332a9787c8b6c76e3073e4552cffe96a919 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20210418-vault/Vault/setPaused(bool) | 0xb5593fe09464f360ecf835d5b9319ce69900ae1b29d13844b73c250b1f5f92fb | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPoolFactory/disable() | 0x3a974164b03a634d51c05b0322775609d8e50216de1c030b3840bbc63a2228a4 | | | +| | | | 20230320-weighted-pool-v4/WeightedPoolFactory/disable() | 0xa8ff4830c7bf9a4c5c71257a9e4272ae652308e2fadfe8e0b2b862f77ead95d7 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230711-composable-stable-pool-v5/ComposableStablePool/pause() | 0x891df90c5c3658e1ebd9ae73664a3921ffecb5a9fb19becfbeb1977bbd03316b | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPoolFactory/disable() | 0x54d04f96e1384dacfbc4bb06d4876678ad3ba07c255782bd693bc9df4b367e24 | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/pause() | 0x18d598983407d1a7c8ee21df73bf1fa9f89919b69f6a712b8521f5d82c211609 | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20221123-pool-recovery-helper/PoolRecoveryHelper | 0x03F3Fb107e74F2EAC9358862E91ad3c692712054 | 20230711-composable-stable-pool-v5/ComposableStablePool/enableRecoveryMode() | 0xe932f711f092053ab6fe1738927dfacaaf05f6678a02b1f4bca7e680b95acbe8 | BIP-388 | 2 | +| | | | 20230410-aave-linear-pool-v5/AaveLinearPool/enableRecoveryMode() | 0x71485a098a59b05ec94c66ce65941514fde1427b10f7a920bef592a077d2e4f1 | | | +| | | | 20230409-erc4626-linear-pool-v4/ERC4626LinearPool/enableRecoveryMode() | 0x1f390a6bbefbf397ddd270894b05f728b32aa8fcfe7a254edeacf8543c7fffdf | | | +| | | | 20230409-gearbox-linear-pool-v2/GearboxLinearPool/enableRecoveryMode() | 0xbae6301afc9430e95e6f4cfefe17850ed273dd8ace6e64a66b455d7e2f1c5de0 | | | +| | | | 20230411-managed-pool-v2/ManagedPool/enableRecoveryMode() | 0x323573210e98fc815a7d8caa19fc8ffc709a296389c4a9cf54ea2c4a2cf945be | | | +| | | | 20230409-yearn-linear-pool-v2/YearnLinearPool/enableRecoveryMode() | 0xe439de626f6f6121ebeb2d7f9b3ad6fdb8b2c645d3b1de4de1d2624bf95aea4b | | | +| | | | 20230320-weighted-pool-v4/WeightedPool/enableRecoveryMode() | 0xadbf17d5cbdfa6f1473b5c3fae1de6e9959223e464815fc481499cd58a591bab | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20230314-batch-relayer-v5/BalancerRelayer | 0x76f7204B62f554b79d444588EDac9dfA7032c71a | 20210418-vault/Vault/batchSwap(uint8,(bytes32,uint256,uint256,uint256,bytes)[],address[],(address,bool,address,bool),int256[],uint256) | 0x1282ab709b2b70070f829c46bc36f76b32ad4989fecb2fcb09a1b3ce00bbfc30 | BIP-388 | 3 | +| | | | 20210418-vault/Vault/setRelayerApproval(address,address,bool) | 0x0014a06d322ff07fcc02b12f93eb77bb76e28cdee4fc0670b9dec98d24bbfec8 | | | +| | | | 20210418-vault/Vault/joinPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0x78ad1b68d148c070372f8643c4648efbb63c6a8a338f3c24714868e791367653 | | | +| | | | 20210418-vault/Vault/manageUserBalance((uint8,address,uint256,address,address)[]) | 0xeba777d811cd36c06d540d7ff2ed18ed042fd67bbf7c9afcf88c818c7ee6b498 | | | +| | | | 20210418-vault/Vault/swap((bytes32,uint8,address,address,uint256,bytes),(address,bool,address,bool),uint256,uint256) | 0x7b8a1d293670124924a0f532213753b89db10bde737249d4540e9a03657d1aff | | | +| | | | 20210418-vault/Vault/exitPool(bytes32,address,address,(address[],uint256[],bytes,bool)) | 0xc149e88b59429ded7f601ab52ecd62331cac006ae07c16543439ed138dcb8d34 | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer | 0xAcf05BE5134d64d150d153818F8C67EE36996650 | 20210418-vault/ProtocolFeesCollector/withdrawCollectedFees(address[],uint256[],address) | 0xb2b6e48fa160a7c887d9d7a68b6a9bb9d47d4953d33e07f3a39e175d75e97796 | BIP-388 | 4 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d | 20210418-vault/ProtocolFeesCollector/setFlashLoanFeePercentage(uint256) | 0xbe2a180d5cc5d803a8eec4cea569989fc1c593d7eeadd1f262f360a68b0e842e | BIP-388 | 5 | +| | | | 20210418-vault/ProtocolFeesCollector/setSwapFeePercentage(uint256) | 0xb28b769768735d011b267f781c3be90bce51d5059ba015bc7a28b3e882fb2083 | | | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| Authorizer/grantRoles | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider/setFeeTypePercentage(uint256,uint256) | 0xa7a697ce17c1edf53a1754af59c8baa28cfcd12e0754ebe7be741c788cc6eb1d | BIP-388 | 6 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| !!!!NOT-FOUND??/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | | 0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8 | BIP-388 | 9 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| !!!!NOT-FOUND??/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | | 0x0ef8ea2b42045389168267f5aa92f66dc8baf6891085bddd27d3e7ebd53402b8 | BIP-388 | 11 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| !!!!NOT-FOUND??/grantRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 12 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +| !!!!NOT-FOUND??/renounceRole | multisigs/dao | 0xC40DCFB13651e64C8551007aa57F9260827B6462 | 20210418-vault/Vault/setAuthorizer(address) | 0x1cbb503dcc0f4acaedf71a098211ff8b15a220fc26a6974a8d9deaab040fa6e0 | BIP-388 | 14 | ++------------------------------+---------------------------------------------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------+---------+------------+ +``` +FILENAME: `BIPs/4269-W69/test/base_setup_week-shortened/8453-0xC40DCFB13651e64C8551007aa57F9260827B6462.json` +MULTISIG: `multisigs/dao (base:0xC40DCFB13651e64C8551007aa57F9260827B6462)` +COMMIT: `b1bc93d2ec9b1d40416acaf37eaa87557a4b01b4` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/d2c571ad-335a-49bb-8e78-be6b5136e232) +``` ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++======================+========================================================================================================================+=========+================================================================================================================+==============+============+ +| setFeeTypePercentage | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-388 | N/A | +| | | | "feeType": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setFeeTypePercentage | 0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d (20220725-protocol-fee-percentages-provider/ProtocolFeePercentagesProvider) | 0 | { | BIP-388 | N/A | +| | | | "feeType": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "newValue": [ | | | +| | | | "raw:500000000000000000, 18 decimals:0.5, 6 decimals: 500000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| addGaugeFactory | 0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7 (Not Found) | 0 | { | BIP-388 | N/A | +| | | | "factory": [ | | | +| | | | "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setAuthorizer | 0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault) | 0 | { | BIP-388 | N/A | +| | | | "newAuthorizer": [ | | | +| | | | "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE (20230414-authorizer-wrapper/AuthorizerWithAdaptorValidation)" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/BIPs/4269-W69/unit_test/cctp/USDC_Arbi_CowPools-9-13-2024.json b/BIPs/4269-W69/unit_test/cctp/USDC_Arbi_CowPools-9-13-2024.json new file mode 100644 index 000000000..fae46c26e --- /dev/null +++ b/BIPs/4269-W69/unit_test/cctp/USDC_Arbi_CowPools-9-13-2024.json @@ -0,0 +1,77 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726243666370, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x301f5a7132d04fe310a2eaaac8a7303393ed01c2ca5fbbca2c2a09b1de2755f4" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "15000000000" + } + }, + { + "to": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "destinationDomain", + "type": "uint32", + "internalType": "uint32" + }, + { + "name": "mintRecipient", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "burnToken", + "type": "address", + "internalType": "address" + } + ], + "name": "depositForBurn", + "payable": false + }, + "contractInputsValues": { + "amount": "15000000000", + "destinationDomain": "3", + "mintRecipient": "0x000000000000000000000000c38c5f97B34E175FFd35407fc91a937300E33860", + "burnToken": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/cctp/claimArbiUSDC.json b/BIPs/4269-W69/unit_test/cctp/claimArbiUSDC.json new file mode 100644 index 000000000..b1ae70bd3 --- /dev/null +++ b/BIPs/4269-W69/unit_test/cctp/claimArbiUSDC.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1715193245588, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x383bbde1a0fa18089fef4d0f07fca15a785b14563241a3e34530459e2fdddc97" + }, + "transactions": [ + { + "to": "0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "message", "type": "bytes", "internalType": "bytes" }, + { "name": "attestation", "type": "bytes", "internalType": "bytes" } + ], + "name": "receiveMessage", + "payable": false + }, + "contractInputsValues": { + "message": "0x000000000000000000000003000000000000D6E2000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF315500000000000000000000000019330D10D9CC8751218EAF51E8885D058642E08A000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB48000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E3386000000000000000000000000000000000000000000000000000000000BEBC2000000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860", + "attestation": "0xaa6fd30f1a8b66ad584d31d2c5db9b7094a417981a92789baef99467877d7efe0f7791fff2a0ef0f10da34ade24543df1d55375458da75b6bc8a7db0aa099ef41ba462bb0a93541c726b3bcfe719bb272aa4faebd3937881fbfe81c65ea319eec27d0b3eb0a28bd07e769351033d898bcd769c4b057761c79448403b3f4ce079bc1c" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/data_type_casting/more_tuples.json b/BIPs/4269-W69/unit_test/data_type_casting/more_tuples.json new file mode 100644 index 000000000..e651b4f58 --- /dev/null +++ b/BIPs/4269-W69/unit_test/data_type_casting/more_tuples.json @@ -0,0 +1,134 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729225805956, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x4a6bbf44563a05b2da6cdb89c41788057421c21aa58e0724ef365c2f82dc7ae0" + }, + "transactions": [ + { + "to": "0x8f72fcf695523A6FC7DD97EafDd7A083c386b7b6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "string", + "name": "protocolName", + "type": "string" + }, + { + "components": [ + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "contact", + "type": "string" + } + ], + "internalType": "struct Contact[]", + "name": "contactDetails", + "type": "tuple[]" + }, + { + "components": [ + { + "internalType": "address", + "name": "assetRecoveryAddress", + "type": "address" + }, + { + "components": [ + { + "internalType": "address", + "name": "accountAddress", + "type": "address" + }, + { + "internalType": "enum ChildContractScope", + "name": "childContractScope", + "type": "uint8" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "internalType": "struct Account[]", + "name": "accounts", + "type": "tuple[]" + }, + { + "internalType": "uint256", + "name": "id", + "type": "uint256" + } + ], + "internalType": "struct Chain[]", + "name": "chains", + "type": "tuple[]" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "bountyPercentage", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bountyCapUSD", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "retainable", + "type": "bool" + }, + { + "internalType": "enum IdentityRequirements", + "name": "identity", + "type": "uint8" + }, + { + "internalType": "string", + "name": "diligenceRequirements", + "type": "string" + } + ], + "internalType": "struct BountyTerms", + "name": "bountyTerms", + "type": "tuple" + }, + { + "internalType": "string", + "name": "agreementURI", + "type": "string" + } + ], + "internalType": "struct AgreementDetailsV1", + "name": "details", + "type": "tuple" + } + ], + "name": "adoptSafeHarbor", + "payable": false + }, + "contractInputsValues": { + "details": "[\"Balancer\",[[\"Telegram: Mikeisballin\",\"Mike B - Strategy\"]],[[\"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],1],[\"0xaF23DC5983230E9eEAf93280e312e57539D098D0\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],42161],[\"0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],43114],[\"0xC40DCFB13651e64C8551007aa57F9260827B6462\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],8453],[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],252],[\"0x2a5AEcE0bb9EfFD7608213AE1745873385515c18\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],100],[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],34443],[\"0x043f9687842771b3dF8852c1E9801DCAeED3f6bc\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],10],[\"0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],137],[\"0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa\",[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\",0,\"0x\"]],1101]],[10,1000000,false,2,\"KYC & Global Sanction Verification. Balancer requires all eligible whitehats to undergo Know Your Customer (KYC) verification and be screened against global sanctions lists, including OFAC, UK, and EU regulations. This process ensures that all bounty recipients are compliant with legal and regulatory standards before qualifying for payment.\"],\"https://bafybeiakxvysdvsvupqcibkpifugzwcnllzt2udjk3l4yhcix7dqxxqyp4.ipfs.w3s.link/agreement.pdf\"]" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/data_type_casting/more_tuples.report.txt b/BIPs/4269-W69/unit_test/data_type_casting/more_tuples.report.txt new file mode 100644 index 000000000..ed7b8bb13 --- /dev/null +++ b/BIPs/4269-W69/unit_test/data_type_casting/more_tuples.report.txt @@ -0,0 +1,78 @@ +FILENAME: `BIPs/4269-W69/unit_test/data_type_casting/more_tuples.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `5764604a606bb54b5d243af62bcd6967e20766e3` +CHAIN(S): `mainnet` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `adoptSafeHarbor`, positional arguments with type(s) `((str,str,str,str,str))` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `adoptSafeHarbor`: ['adoptSafeHarbor((string,(string,string)[],(address,(address,uint8,bytes)[],uint256)[],(uint256,uint256,bool,uint8,string),string))']\nFunction invocation failed due to no matching argument types."))` + +``` ++-----------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| adoptSafeHarbor | 0x8f72fcf695523A6FC7DD97EafDd7A083c386b7b6 (safe_harbor/registry) | 0 | { | N/A | N/A | +| | | | "details": [ | | | +| | | | "\"Balancer\"", | | | +| | | | "[[\"Telegram:Mikeisballin\"", | | | +| | | | "\"MikeB-Strategy\"]]", | | | +| | | | "[[\"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "1]", | | | +| | | | "[\"0xaF23DC5983230E9eEAf93280e312e57539D098D0\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "42161]", | | | +| | | | "[\"0x17b11FF13e2d7bAb2648182dFD1f1cfa0E4C7cf3\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "43114]", | | | +| | | | "[\"0xC40DCFB13651e64C8551007aa57F9260827B6462\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "8453]", | | | +| | | | "[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "252]", | | | +| | | | "[\"0x2a5AEcE0bb9EfFD7608213AE1745873385515c18\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "100]", | | | +| | | | "[\"0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "34443]", | | | +| | | | "[\"0x043f9687842771b3dF8852c1E9801DCAeED3f6bc\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "10]", | | | +| | | | "[\"0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "137]", | | | +| | | | "[\"0x2f237e7643a3bF6Ef265dd6FCBcd26a7Cc38dbAa\"", | | | +| | | | "[[\"0xBA12222222228d8Ba445958a75a0704d566BF2C8\"", | | | +| | | | "0", | | | +| | | | "\"0x\"]]", | | | +| | | | "1101]]", | | | +| | | | "[10", | | | +| | | | "1000000", | | | +| | | | "false", | | | +| | | | "2", | | | +| | | | "\"KYC&GlobalSanctionVerification.BalancerrequiresalleligiblewhitehatstoundergoKnowYourCustomer(KYC)verificationandbescreenedagainstglobalsanctionslists", | | | +| | | | "includingOFAC", | | | +| | | | "UK", | | | +| | | | "andEUregulations.Thisprocessensuresthatallbountyrecipientsarecompliantwithlegalandregulatorystandardsbeforequalifyingforpayment.\"]", | | | +| | | | "\"https://bafybeiakxvysdvsvupqcibkpifugzwcnllzt2udjk3l4yhcix7dqxxqyp4.ipfs.w3s.link/agreement.pdf\"" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+-------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/unit_test/data_type_casting/simple_tuple.json b/BIPs/4269-W69/unit_test/data_type_casting/simple_tuple.json new file mode 100644 index 000000000..bb9c5e730 --- /dev/null +++ b/BIPs/4269-W69/unit_test/data_type_casting/simple_tuple.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1730139390525, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x53531d16f59ade450f97769d73da6668e00604c1b5430f89f2a0ed5f590a20cd" + }, + "transactions": [ + { + "to": "0x2aA8A5C1Af4EA11A1f1F10f3b73cfB30419F77Fb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_tokenId", "type": "uint256" }, + { + "components": [ + { + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { "internalType": "address", "name": "gauge", "type": "address" } + ], + "internalType": "struct IGaugeVote.GaugeVote[]", + "name": "_votes", + "type": "tuple[]" + } + ], + "name": "vote", + "payable": false + }, + "contractInputsValues": { + "_tokenId": "98", + "_votes": "[[1,\"0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e\"]]" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/data_type_casting/simple_tuple.report.txt b/BIPs/4269-W69/unit_test/data_type_casting/simple_tuple.report.txt new file mode 100644 index 000000000..cb44bd86c --- /dev/null +++ b/BIPs/4269-W69/unit_test/data_type_casting/simple_tuple.report.txt @@ -0,0 +1,21 @@ +FILENAME: `BIPs/4269-W69/unit_test/data_type_casting/simple_tuple.json` +MULTISIG: `multisigs/lm (mode:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `5764604a606bb54b5d243af62bcd6967e20766e3` +CHAIN(S): `mode` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a04f1e83-2b77-465d-87f3-71d9bb2d8d24) + +``` ++---------+---------------------------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| vote | 0x2aA8A5C1Af4EA11A1f1F10f3b73cfB30419F77Fb (modeGovernance/mode8020BPTVotingContract) | 0 | { | N/A | N/A | +| | | | "_tokenId": [ | | | +| | | | "98" | | | +| | | | ], | | | +| | | | "_votes": [ | | | +| | | | "1", | | | +| | | | "\"0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e\"" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +``` diff --git a/BIPs/4269-W69/unit_test/empty_injector_lists.json b/BIPs/4269-W69/unit_test/empty_injector_lists.json new file mode 100644 index 000000000..7249e528d --- /dev/null +++ b/BIPs/4269-W69/unit_test/empty_injector_lists.json @@ -0,0 +1,57 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726832144524, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "0x18103990e1e45507505d50b7e4a18f9527873d7b69374a77c2e6944cdaabf4bb" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[]", + "amountsPerPeriod": "[]", + "maxPeriods": "[]" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/grant_role_change_reward_distributor.json b/BIPs/4269-W69/unit_test/grant_role_change_reward_distributor.json new file mode 100644 index 000000000..dcc5dd96a --- /dev/null +++ b/BIPs/4269-W69/unit_test/grant_role_change_reward_distributor.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719444309555, + "meta": { + "name": "Update Paladins Reward Distributors", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xeeb50b8f3abf0c5f23b17181f1c01b629930f08c059f6685e08c564e84530b0a" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xBC02eF87f4E15EF78A571f3B2aDcC726Fee70d8b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xCD19892916929F013930ed628547Cc1F439b230e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0x21c377cBB2bEdDd8534308E5CdfeBE35fDF817E8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5", + "_distributor": "0xfEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0xd0090a09f425bba74e6c801fba7c6d15b44147ab0bd319e40076ce07e95168b6", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/kill_gauges/BIP-340B.json b/BIPs/4269-W69/unit_test/kill_gauges/BIP-340B.json new file mode 100644 index 000000000..e95033b21 --- /dev/null +++ b/BIPs/4269-W69/unit_test/kill_gauges/BIP-340B.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687369387414, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xde4880d111042fc16b66016756ed82c4dc099f73bd9f0f07d054ee2167ad8f67" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8a88C1f44854C61a466aB55614F6A7778473418b", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/kill_gauges/BIP-527.json b/BIPs/4269-W69/unit_test/kill_gauges/BIP-527.json new file mode 100644 index 000000000..364888002 --- /dev/null +++ b/BIPs/4269-W69/unit_test/kill_gauges/BIP-527.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1704378156791, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0xfce229b389ca02b21a37a4372c5a0d9c7e39648a05f1974658f3090880c80b8f" + }, + "transactions": [ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "grantRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x16289F675Ca54312a8fCF99341e7439982888077", + "data": "0xd34fb267" + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "role", "type": "bytes32" }, + { "internalType": "address", "name": "account", "type": "address" } + ], + "name": "revokeRole", + "payable": false + }, + "contractInputsValues": { + "role": "0x076e9815202aa39577192023cfa569d6504b003183b2bc13cd0046523dfa23ea", + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x790DE8ABE859f399023BCe73B5FE5C4870cD816A", + "data": "0xab8f0945" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/maxi_pay.json b/BIPs/4269-W69/unit_test/maxi_pay.json new file mode 100644 index 000000000..2449f2ba3 --- /dev/null +++ b/BIPs/4269-W69/unit_test/maxi_pay.json @@ -0,0 +1,167 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1713554830263, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0xa67a909f2818606d56c7140227e1a255eef31169c2b4f77ba00dff12a772ff6f" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "amount": "157970787600000000000" + } + }, + { + "to": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "157970787600000000000", + "_vestingPeriod": "29980800" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "amount": "605728479500000000000" + } + }, + { + "to": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "605728479500000000000", + "_vestingPeriod": "29980800" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "263284646100000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "263284646100000000000", + "_vestingPeriod": "29980800" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "210627716800000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "210627716800000000000", + "_vestingPeriod": "29980800" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/replaceDAOTemplateOwners.json b/BIPs/4269-W69/unit_test/replaceDAOTemplateOwners.json new file mode 100644 index 000000000..32c2aa048 --- /dev/null +++ b/BIPs/4269-W69/unit_test/replaceDAOTemplateOwners.json @@ -0,0 +1,307 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1715095980758, + "meta": { + "name": "Transactions Batch", + "description": "Tenderly: https://dashboard.tenderly.co/public/safe/safe-apps/simulator/584b6cac-2739-4965-bf80-6744af9b9705", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0xAc1aA53108712d7f38093A67d380aD54B562a650" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "oldOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "newOwner": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x9BE6ff2A1D5139Eda96339E2644dC1F05d803600" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "oldOwner": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "newOwner": "0x9F7dfAb2222A473284205cdDF08a677726d786A0" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438", + "oldOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "newOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "oldOwner": "0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438", + "newOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "oldOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "newOwner": "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "_threshold": "2" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "_threshold": "2" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA", + "_threshold": "6" + } + } + ] +} diff --git a/BIPs/4269-W69/unit_test/transfer_1.json b/BIPs/4269-W69/unit_test/transfer_1.json new file mode 100644 index 000000000..fda314170 --- /dev/null +++ b/BIPs/4269-W69/unit_test/transfer_1.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1687972768, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "createdFromOwnerAddress": "", + "checksum": "0x6f23bb3c406ccd336ce8c412cf9fe4f0d25d1bf6b3a83773481d518968971a1e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "132630000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "25400000000000000000000" + } + } + ] +} diff --git a/Bribs/2023-03-03.csv b/Bribs/2023-03-03.csv new file mode 100644 index 000000000..daadc2f00 --- /dev/null +++ b/Bribs/2023-03-03.csv @@ -0,0 +1,39 @@ +target,platform,amount,, +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,67554.8055,wstETH/weth,Ethereum +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,24356.4945,wstETH/weth,Ethereum +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,31960.04175,rETH/weth,Ethereum +0x79eF6103A513951a3b25743DB509E267685726B7,aura,11523.00825,rETH/weth,Ethereum +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,0,RBN/USDC,Ethereum +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,0,RBN/USDC,Ethereum +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,11540.83725,cbETH/wstETH,Ethereum +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,2180.51275,cbETH/wstETH,Ethereum +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,3025.59075,sfrxETH,Ethereum +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,1090.85925,sfrxETH,Ethereum +0xD973e86547e810117Db131B94708F429A463535E,balancer,0,wstETH/APE,Ethereum +0xD973e86547e810117Db131B94708F429A463535E,aura,0,wstETH/APE,Ethereum +0x623F3Dbc761B46F64aE7951700Dd7724cB7d6075,balancer,0,wstETH/bbeUSD,Ethereum +0x623F3Dbc761B46F64aE7951700Dd7724cB7d6075,aura,0,wstETH/bbeUSD,Ethereum +0xE96924D293b9e2961f9763cA058E389D27341D3d,balancer,0,rETH/bbeUSD,Ethereum +0xE96924D293b9e2961f9763cA058E389D27341D3d,aura,0,rETH/bbeUSD,Ethereum +0xf53f2fEE2A34f7f8d1BFe1B774A95Cc79C121B34,balancer,0,bbeUSD,Ethereum +0xf53f2fEE2A34f7f8d1BFe1B774A95Cc79C121B34,aura,0,bbeUSD,Ethereum +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0,LDO/wstETH,Ethereum +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0,LDO/wstETH,Ethereum +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0,badger/reth,Ethereum +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0,badger/reth,Ethereum +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0,reth/rpl,Ethereum +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0,reth/rpl,Ethereum +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,3586.46925,RBN/USDC,Ethereum +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,1293.08075,RBN/USDC,Ethereum +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,balancer,1545.774239,tricrypto ,Polygon +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,aura,557.3199636,tricrypto ,Polygon +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,balancer,2717.226736,weth/matic/bal/usdc,Polygon +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,aura,979.6803876,weth/matic/bal/usdc,Polygon +0x21a3De9292569F599e4cf83c741862705bf4f108,balancer,1368,wUSDR/USDC,Polygon +0x21a3De9292569F599e4cf83c741862705bf4f108,aura,0,wUSDR/USDC,Polygon +0x359EA8618c405023Fc4B98dAb1B01F373792a126,balancer,1989.18718,tricrypto,Arbitrum +0x359EA8618c405023Fc4B98dAb1B01F373792a12,aura,717.1899357,tricrypto,Arbitrum +0x519cCe718FCD11AC09194CFf4517F12D263BE067,balancer,12738.84636,wstETH/weth,Arbitrum +0x519cCe718FCD11AC09194CFf4517F12D263BE067,aura,4592.917396,wstETH/weth,Arbitrum +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,balancer,338,bbrfUSD,Arbitrum +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,aura,0,bbrfUSD,Arbitrum \ No newline at end of file diff --git a/Bribs/2023-03-17.csv b/Bribs/2023-03-17.csv new file mode 100644 index 000000000..e39a6afb2 --- /dev/null +++ b/Bribs/2023-03-17.csv @@ -0,0 +1,31 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,112365.9849 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,43050.3151 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,29905.26825 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,11457.48175 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,4245.99825 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,1626.75175 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,4605.97995 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,7338.67005 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,10861.4844 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,4161.3156 +0xD973e86547e810117Db131B94708F429A463535E,balancer,0 +0xD973e86547e810117Db131B94708F429A463535E,aura,4622.5156 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,8666.8179 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,3320.4821 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,10837.047 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,4151.953 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,balancer,2290.372785 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,aura,877.5010531 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,balancer,4230.508672 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,aura,1620.817292 +0x21a3De9292569F599e4cf83c741862705bf4f108,balancer,691.9111429 +0x21a3De9292569F599e4cf83c741862705bf4f108,aura,265.0890548 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,balancer,3285.454816 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,aura,1258.742717 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,balancer,18674.35022 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,aura,7154.626571 +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,balancer,1031.558815 +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,aura,395.2168629 diff --git a/Bribs/2023-03-31.csv b/Bribs/2023-03-31.csv new file mode 100644 index 000000000..b60e8e7d7 --- /dev/null +++ b/Bribs/2023-03-31.csv @@ -0,0 +1,37 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,77438.32005 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,29965.72995 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,19758.75265 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,7645.89735 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,0 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,3327.1493 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,11017.0242 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,4263.1758 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,17397.69395 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,6732.25605 +0xD973e86547e810117Db131B94708F429A463535E,balancer,0 +0xD973e86547e810117Db131B94708F429A463535E,aura,4391 +0x21D8dB8a46393FEdE4e91eAfBc0cCf092faCb469,balancer,4318.60975 +0x21D8dB8a46393FEdE4e91eAfBc0cCf092faCb469,aura,1671.14025 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3495.66035 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,1352.68965 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,3658.75055 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,1415.79945 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,5749.3982 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,2224.8018 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,3110.43005 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,1203.61995 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,balancer,4130.026327 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,aura,1598.165527 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,balancer,7044.35622 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,aura,2725.90206 +0x21a3De9292569F599e4cf83c741862705bf4f108,balancer,1243.905154 +0x21a3De9292569F599e4cf83c741862705bf4f108,aura,481.3447127 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,balancer,3644.827132 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,aura,1410.411609 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,balancer,17385.13697 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,aura,6727.396969 +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,balancer,899.1066973 +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,aura,347.9206221 +0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B,balancer,80051.9811 +0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B,aura,30977.1189 diff --git a/Bribs/2023-04-14.csv b/Bribs/2023-04-14.csv new file mode 100644 index 000000000..f3f90008e --- /dev/null +++ b/Bribs/2023-04-14.csv @@ -0,0 +1,39 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,86220.576 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,33530.224 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,23228.244 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,9033.206 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,0 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,0 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,16601.832 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,6456.268 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,23866.128 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,9281.272 +0xD973e86547e810117Db131B94708F429A463535E,aura,3939 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,4260.204 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,1656.746 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,0 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,220533 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,5670.288 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,2205.112 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,balancer,607.3969806 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,aura,236.2099369 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,balancer,862.4676739 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,aura,335.4040954 +0x21a3De9292569F599e4cf83c741862705bf4f108,balancer,199.9634719 +0x21a3De9292569F599e4cf83c741862705bf4f108,aura,77.76357239 +0xBD734b38F2dc864fe00DF51fc4F17d310eD7dA4D,aura,26987 +0x87F678f4F84e5665e1A85A22392fF5A84adC22cD,aura,6118 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,balancer,3040.73833 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,aura,1182.50935 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,balancer,17777.57749 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,aura,6913.502358 +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,balancer,586.1321786 +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,aura,227.9402917 +0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B,balancer,25473.708 +0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B,aura,9906.442 diff --git a/Bribs/2023-04-28.csv b/Bribs/2023-04-28.csv new file mode 100644 index 000000000..54d8436f7 --- /dev/null +++ b/Bribs/2023-04-28.csv @@ -0,0 +1,45 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,60508.9368 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,24955.6632 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,20763.3036 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,8563.3964 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,0 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,0 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,14619.6336 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,6029.5664 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,20332.5564 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,8385.7436 +0xD973e86547e810117Db131B94708F429A463535E,balancer, +0xD973e86547e810117Db131B94708F429A463535E,aura,5408 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,2546.7468 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,1050.3532 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,0 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,199581 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,4232.9196 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1745.7804 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,5687.6118 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,2345.7382 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,balancer,452.81926 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,aura,0 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,balancer,492.0743876 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,aura,0 +0x21a3De9292569F599e4cf83c741862705bf4f108,balancer,148.0879727 +0x21a3De9292569F599e4cf83c741862705bf4f108,aura,0 +0x28D4FE67c68d340fe66CfbCBe8e2cd279d8AA6dD,balancer,623.7624758 +0x28D4FE67c68d340fe66CfbCBe8e2cd279d8AA6dD,aura,0 +0xBD734b38F2dc864fe00DF51fc4F17d310eD7dA4D,balancer,7714.089131 +0xBD734b38F2dc864fe00DF51fc4F17d310eD7dA4D,aura,3181.516986 +0x87F678f4F84e5665e1A85A22392fF5A84adC22cD,balancer,0 +0x87F678f4F84e5665e1A85A22392fF5A84adC22cD,aura,2492.756815 +0x304a75f78C96767a814c36Aaa74d622ECf875d36,aura,245.8242164 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,balancer,534.7802775 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,aura,0 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,balancer,11590.34335 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,aura,4780.198105 +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,balancer,716.3585718 +0x5b0C1b84566708Dd391Ae0FecE1a32e33682EE3d,aura,0 +0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B,balancer,47182.4652 +0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B,aura,19459.4348 diff --git a/Bribs/2023-05-12.csv b/Bribs/2023-05-12.csv new file mode 100644 index 000000000..e5474e3f0 --- /dev/null +++ b/Bribs/2023-05-12.csv @@ -0,0 +1,48 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,57059.626 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,23761.374 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,19500.4966 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,8120.6034 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,3596.8582 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,1497.8418 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,19851.5551 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,8266.7949 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,22184.6027 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,9238.3473 +0xD973e86547e810117Db131B94708F429A463535E,balancer,0 +0xD973e86547e810117Db131B94708F429A463535E,aura,3272 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,1977.859 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,823.641 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,0 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,181195 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,8751.223 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,3644.277 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1326.156 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x454eb2f12242397688DbfdA241487e67ed80507a,balancer,7965.1273 +0x454eb2f12242397688DbfdA241487e67ed80507a,aura,3316.9227 +0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1,balancer,895.7519958 +0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1,aura,0 +0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A,balancer,0 +0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A,aura,1074.560027 +0xc534C30749b6C198D35a7836E26076E7745D8936,balancer,208.5686158 +0xc534C30749b6C198D35a7836E26076E7745D8936,aura,0 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,balancer,1575.80879 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,aura,0 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,balancer,10740.71833 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,aura,4472.763724 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,balancer,3246.97891 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,aura,1352.141359 +0x4944b07977A42C15c6a06CF4e204e24c60564104,balancer,1748.841481 +0x4944b07977A42C15c6a06CF4e204e24c60564104,aura,0 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,balancer,16143.14157 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,aura,6722.498048 +0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d,balancer,391.3588485 +0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d,aura,0 +0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7,balancer,0 +0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7,aura,721.9122561 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,16520.4 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,6879.6 diff --git a/Bribs/2023-05-26.csv b/Bribs/2023-05-26.csv new file mode 100644 index 000000000..1fa86a270 --- /dev/null +++ b/Bribs/2023-05-26.csv @@ -0,0 +1,60 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,36007.05485 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,15652.99515 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,24295.2593 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,10561.6407 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,0 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,0 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,13553.4438 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,5891.9562 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,19734.40495 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,8578.94505 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,6003.0302 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x0052688295413b32626D226a205b95cDB337DE86,balancer,4360.60625 +0x0052688295413b32626D226a205b95cDB337DE86,aura,1895.64375 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,146474 +0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da,balancer,0 +0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da,aura,4139 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,3287.07385 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,3113.3596 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1353.4404 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,3603.25615 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x454eb2f12242397688DbfdA241487e67ed80507a,balancer,4061.1402 +0x454eb2f12242397688DbfdA241487e67ed80507a,aura,1765.4598 +0x2fC4506354166e8B9183FBB6A68cd9C5F3Fb9Bc5,balancer, +0x2fC4506354166e8B9183FBB6A68cd9C5F3Fb9Bc5,aura,4198 +0x19A13793af96f534F0027b4b6a3eB699647368e7,balancer,3232.51175 +0x19A13793af96f534F0027b4b6a3eB699647368e7,aura,1405.23825 +0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1,balancer,0 +0x1604b7E80975555e0aCEaca9C81807FbB4D65Cf1,aura,0 +0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A,balancer,0 +0xF5C7F74103d4E9D1fF8FBa3420c6319723e3473A,aura,0 +0x6b641e334f63f0D882538Fe189efC0702d961696,balancer,0 +0x6b641e334f63f0D882538Fe189efC0702d961696,aura,0 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,balancer,1632.949428 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,aura,0 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,balancer,14642.31961 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,aura,6365.312543 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,balancer,4925.704109 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,aura,2141.303221 +0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f,balancer,0 +0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f,aura,2737 +0x4944b07977A42C15c6a06CF4e204e24c60564104,balancer,1029.09646 +0x4944b07977A42C15c6a06CF4e204e24c60564104,aura,0 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,balancer,7244.472275 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,aura,3149.31865 +0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d,balancer,1367.484746 +0x09D1036B04ef49BC155D258D7360FA7aE8F5B84d,aura,0 +0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7,balancer,0 +0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7,aura,1063 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,11944.66325 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,5192.58675 +0xB5044FD339A7b858095324cC3F239C212956C179,balancer,0 +0xB5044FD339A7b858095324cC3F239C212956C179,aura,0 +0xd40a3C414Bb6f82fC5625e32895F49E53220f73b,balancer,0 +0xd40a3C414Bb6f82fC5625e32895F49E53220f73b,aura,0 diff --git a/Bribs/2023-06-09.csv b/Bribs/2023-06-09.csv new file mode 100644 index 000000000..370c17523 --- /dev/null +++ b/Bribs/2023-06-09.csv @@ -0,0 +1,52 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,23763.6048 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,10826.7952 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,19043.12475 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,8676.12525 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,balancer,0 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,aura,6041.75 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,13123.65795 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,5979.19205 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,15553.78305 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,7086.36695 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,3042.7917 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,1386.3083 +0x0052688295413b32626D226a205b95cDB337DE86,balancer,5721.1986 +0x0052688295413b32626D226a205b95cDB337DE86,aura,2606.6014 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,140776 +0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da,balancer,0 +0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,4119.42375 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1876.82625 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x454eb2f12242397688DbfdA241487e67ed80507a,balancer,5173.28175 +0x454eb2f12242397688DbfdA241487e67ed80507a,aura,2356.96825 +0x2D42910D826e5500579D121596E98A6eb33C0a1b,aura,3636.0993 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3114.42105 +0x6b641e334f63f0D882538Fe189efC0702d961696,balancer,0 +0x6b641e334f63f0D882538Fe189efC0702d961696,aura,0 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,balancer,1268.557152 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,aura,0 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,balancer,10503.16312 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,aura,4785.283923 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,balancer,3254.335284 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,aura,1482.688419 +0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f,balancer,0 +0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f,aura,2771 +0x4944b07977A42C15c6a06CF4e204e24c60564104,balancer,3549.75471 +0x4944b07977A42C15c6a06CF4e204e24c60564104,aura,0 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,balancer,11114.47616 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,aura,5063.800639 +0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7,balancer,0 +0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7,aura,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,13613.5233 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,6202.3767 +0xB5044FD339A7b858095324cC3F239C212956C179,balancer,0 +0xB5044FD339A7b858095324cC3F239C212956C179,aura,2623.067099 +0xd40a3C414Bb6f82fC5625e32895F49E53220f73b,balancer,0 +0xd40a3C414Bb6f82fC5625e32895F49E53220f73b,aura,2297 diff --git a/Bribs/2023-06-23.csv b/Bribs/2023-06-23.csv new file mode 100644 index 000000000..e16fe5584 --- /dev/null +++ b/Bribs/2023-06-23.csv @@ -0,0 +1,53 @@ +target,platform,amount +0x5f838591A5A8048F0E4C4c7fCca8fD9A25BF0590,balancer,0 +0x5f838591A5A8048F0E4C4c7fCca8fD9A25BF0590,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,13933.166 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,6556.784 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,balancer,0 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,aura,3045.48 +0x70c6A653e273523FADfB4dF99558737906c230c6,balancer,10092.186 +0x70c6A653e273523FADfB4dF99558737906c230c6,aura,4749.264 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,15045.68 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,7080.32 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x0052688295413b32626D226a205b95cDB337DE86,balancer,5382.676 +0x0052688295413b32626D226a205b95cDB337DE86,aura,2533.024 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,120423 +0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da,balancer,0 +0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da,aura,0 +0x19A13793af96f534F0027b4b6a3eB699647368e7,balancer,0 +0x19A13793af96f534F0027b4b6a3eB699647368e7,aura,2967.52 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,3092.674 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1455.376 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,2793.274 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x454eb2f12242397688DbfdA241487e67ed80507a,balancer,0 +0x454eb2f12242397688DbfdA241487e67ed80507a,aura,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,3364.062 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,1583.088 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,23844.574 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,11220.976 +0x6b641e334f63f0D882538Fe189efC0702d961696,balancer,0 +0x6b641e334f63f0D882538Fe189efC0702d961696,aura,0 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,balancer,1394.327545 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,aura,0 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,balancer,10449.57312 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,aura,4917.446176 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,balancer,3466.900108 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,aura,1631.482404 +0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f,balancer,0 +0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f,aura,2216.327634 +0x4944b07977A42C15c6a06CF4e204e24c60564104,balancer,1802.835754 +0x4944b07977A42C15c6a06CF4e204e24c60564104,aura,0 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,balancer,5211.229912 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,aura,2452.343488 +0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7,aura,1320.516606 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,10422.36 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,4904.64 +0xB5044FD339A7b858095324cC3F239C212956C179,balancer,3682.148551 +0xB5044FD339A7b858095324cC3F239C212956C179,aura,0 +0xd40a3C414Bb6f82fC5625e32895F49E53220f73b,balancer,0 +0xd40a3C414Bb6f82fC5625e32895F49E53220f73b,aura,0 diff --git a/Bribs/2023-07-07.csv b/Bribs/2023-07-07.csv new file mode 100644 index 000000000..291018a4b --- /dev/null +++ b/Bribs/2023-07-07.csv @@ -0,0 +1,50 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,17499.0101 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,8934.5399 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,13274.3247 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,6777.5253 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,balancer,0 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,aura,0 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,6013.0122 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,3070.0878 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,0 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,5212.7743 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,3307.2858 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,1688.6142 +0x0052688295413b32626D226a205b95cDB337DE86,balancer,967.7447 +0x0052688295413b32626D226a205b95cDB337DE86,aura,494.1053 +0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da,balancer,0 +0xc43bF12A008d3Cc48AF7da1e8e87622A78dc64da,aura,0 +0x19A13793af96f534F0027b4b6a3eB699647368e7,balancer,0 +0x19A13793af96f534F0027b4b6a3eB699647368e7,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x454eb2f12242397688DbfdA241487e67ed80507a,balancer,10937.7957 +0x454eb2f12242397688DbfdA241487e67ed80507a,aura,5584.5543 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0 +0x6b641e334f63f0D882538Fe189efC0702d961696,balancer,0 +0x6b641e334f63f0D882538Fe189efC0702d961696,aura,0 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,balancer,0 +0x39cEEbb561a65216A4B776ea752d3137e9d6C0F0,aura,0 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,balancer,9975.741225 +0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6,aura,5093.354281 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,balancer,3719.868814 +0x082AACfaf4db8AC0642CBED50df732D3C309E679,aura,1899.268367 +0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f,balancer,1402.996061 +0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f,aura,0 +0x4944b07977A42C15c6a06CF4e204e24c60564104,balancer,0 +0x4944b07977A42C15c6a06CF4e204e24c60564104,aura,0 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,balancer,10538.4773 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,aura,5380.6727 +0x54BeFB03BB58687cDE09cd082Bd78410e309D8C7,aura,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,12001.01 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,6127.02 +0xB5044FD339A7b858095324cC3F239C212956C179,aura,0 +0xd40a3C414Bb6f82fC5625e32895F49E53220f73b,balancer,0 +0xd40a3C414Bb6f82fC5625e32895F49E53220f73b,aura,0 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,103808 diff --git a/Bribs/2023-07-21.csv b/Bribs/2023-07-21.csv new file mode 100644 index 000000000..a673159fa --- /dev/null +++ b/Bribs/2023-07-21.csv @@ -0,0 +1,44 @@ +target,platform,amount +0x29488df9253171AcD0a0598FDdA92C5F6E767a38,balancer,16665.27 +0x29488df9253171AcD0a0598FDdA92C5F6E767a38,aura,8470.88 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,14629.46 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,7436.09 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,balancer,0.00 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,aura,0.00 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,0.00 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,0.00 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,0.00 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,0.00 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0.00 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0.00 +0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2,balancer,0.00 +0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2,aura,0.00 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,67891.00 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,4217.28 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2143.62 +0x19A13793af96f534F0027b4b6a3eB699647368e7,balancer,0.00 +0x19A13793af96f534F0027b4b6a3eB699647368e7,aura,0.00 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,3576.89 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1818.12 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0.00 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0.00 +0x454eb2f12242397688DbfdA241487e67ed80507a,balancer,4953.77 +0x454eb2f12242397688DbfdA241487e67ed80507a,aura,2517.98 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0.00 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0.00 +0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7,balancer,3787.45 +0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7,aura,1925.15 +0xb7b9B9D35e7F9E324C762235FB69848175C03A19,balancer,0.00 +0xb7b9B9D35e7F9E324C762235FB69848175C03A19,aura,2114.44 +0xb12ADA23eE766bd6b596E2bE556ea2046758b87c,balancer,0.00 +0xb12ADA23eE766bd6b596E2bE556ea2046758b87c,aura,0.00 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,balancer,7118.00 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,aura,3618.05 +0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6,balancer,10983.00 +0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6,aura,0.00 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,7460.00 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,3792.00 +0x80aed5C5C683FEC86817C98da334DD72424E7297,balancer,5000.00 +0x80aed5C5C683FEC86817C98da334DD72424E7297,aura,0.00 diff --git a/Bribs/2023-08-04.csv b/Bribs/2023-08-04.csv new file mode 100644 index 000000000..e417d53c7 --- /dev/null +++ b/Bribs/2023-08-04.csv @@ -0,0 +1,46 @@ +target,platform,amount +0x29488df9253171AcD0a0598FDdA92C5F6E767a38,balancer,12811.18 +0x29488df9253171AcD0a0598FDdA92C5F6E767a38,aura,6898.33 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,13202.48 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,7109.03 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,balancer,0.00 +0x11Ff498C7c2A29fc4638BF45D9fF995C3297fcA5,aura,0.00 +0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07,balancer,3592.13 +0x6d5AF3414a73E498039a3720aFb4A376aE9C5a07,aura,0.00 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,0.00 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,5450.50 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0.00 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,3399.18 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,1830.33 +0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2,balancer,0.00 +0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2,aura,0.00 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,40607.00 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,4635.08 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,0.00 +0x19A13793af96f534F0027b4b6a3eB699647368e7,balancer,0.00 +0x19A13793af96f534F0027b4b6a3eB699647368e7,aura,0.00 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,3064.10 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1649.90 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,2940.00 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0.00 +0x454eb2f12242397688DbfdA241487e67ed80507a,balancer,2731.63 +0x454eb2f12242397688DbfdA241487e67ed80507a,aura,1470.88 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0.00 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0.00 +0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7,balancer,4020.82 +0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7,aura,0.00 +0xb7b9B9D35e7F9E324C762235FB69848175C03A19,balancer,0.00 +0xb7b9B9D35e7F9E324C762235FB69848175C03A19,aura,0.00 +0xb12ADA23eE766bd6b596E2bE556ea2046758b87c,balancer,1400.78 +0xb12ADA23eE766bd6b596E2bE556ea2046758b87c,aura,0.00 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,balancer,0.00 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,aura,2714.69 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,2042.00 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,0.00 +0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6,balancer,10280.00 +0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6,aura,0.00 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,4023.00 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,3028.00 +0x80aed5C5C683FEC86817C98da334DD72424E7297,balancer,3600.00 +0x80aed5C5C683FEC86817C98da334DD72424E7297,aura,0.00 diff --git a/Bribs/2023-08-18.csv b/Bribs/2023-08-18.csv new file mode 100644 index 000000000..b9fd57c91 --- /dev/null +++ b/Bribs/2023-08-18.csv @@ -0,0 +1,46 @@ +target,platform,amount +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,10054.53 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,5413.98 +0x5669736FD1dF3572f9D519FcCf7536A750CFAc62,balancer,0.00 +0x5669736FD1dF3572f9D519FcCf7536A750CFAc62,aura,4352.20 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,21136.10 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,11380.90 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0.00 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,2558.30 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0.00 +0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2,balancer,1873.95 +0x5Db1Fe5A1652f095eBc3f6065E9DB3f3d492bfC2,aura,1009.05 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,43524.00 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1961.05 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1055.95 +0x9e3f4FB69058244066801404e50889592d33cA11,balancer,0.00 +0x9e3f4FB69058244066801404e50889592d33cA11,aura,2793.73 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,3140.80 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1691.20 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,3226.23 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0.00 +0x454eb2f12242397688DbfdA241487e67ed80507a,balancer,2851.55 +0x454eb2f12242397688DbfdA241487e67ed80507a,aura,1535.45 +0x2fC4506354166e8B9183FBB6A68cd9C5F3Fb9Bc5,balancer,4399.85 +0x2fC4506354166e8B9183FBB6A68cd9C5F3Fb9Bc5,aura,2369.15 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,1750.78 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,942.73 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,3728.97 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,2190.03 +0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7,balancer,0.00 +0x24E8787B4AC5325Fd082BC30b9fe7eb2F01304c7,aura,0.00 +0xb7b9B9D35e7F9E324C762235FB69848175C03A19,balancer,0.00 +0xb7b9B9D35e7F9E324C762235FB69848175C03A19,aura,0.00 +0xb12ADA23eE766bd6b596E2bE556ea2046758b87c,balancer,0.00 +0xb12ADA23eE766bd6b596E2bE556ea2046758b87c,aura,0.00 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,balancer,4536.48 +0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf,aura,3838.88 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,0.00 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,2550.92 +0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6,balancer,0.00 +0x9ab40B6e1330Ce70B9e07cD691f281c1539944E6,aura,0.00 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,5099.85 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,2995.15 +0x80aed5C5C683FEC86817C98da334DD72424E7297,balancer,0.00 +0x80aed5C5C683FEC86817C98da334DD72424E7297,aura,0.00 diff --git a/Bribs/2023-09-02.csv b/Bribs/2023-09-02.csv new file mode 100644 index 000000000..d691ad050 --- /dev/null +++ b/Bribs/2023-09-02.csv @@ -0,0 +1,47 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4153.094 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,2523.906 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,7509.095 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,4563.405 +0xd66aBAD5516f668D8Ea6157666B74862546E6e80,balancer,3461.073 +0xd66aBAD5516f668D8Ea6157666B74862546E6e80,aura,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,8392.957 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,5100.543 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,1643.243 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,45631 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,3234.641 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,2122.195 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,1165.941 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1819.418 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97,balancer,1867.274 +0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97,aura,0 +0x2fC4506354166e8B9183FBB6A68cd9C5F3Fb9Bc5,balancer,2915.441 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,1852.769377 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,1452.251623 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,959.7280142 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,0 +0xb6d101874B975083C76598542946Fe047f059066,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,2842.208497 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,0 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,1828.190031 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,2368.392688 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,4665 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,2835 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,2525.631 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,1534.869 diff --git a/Bribs/2023-09-15.csv b/Bribs/2023-09-15.csv new file mode 100644 index 000000000..8ce5bc7e0 --- /dev/null +++ b/Bribs/2023-09-15.csv @@ -0,0 +1,70 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,7226.7 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,3891.3 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,5467.475 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,2944.025 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,4953.725 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,6567.925 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,3536.575 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,0 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,34263 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,3329.95 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1793.05 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97,balancer,0 +0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,1966.741444 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,608.5053988 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,836.16 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,0.00 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1183.03 +0xb6d101874B975083C76598542946Fe047f059066,aura,0.00 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,1165.80 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,0.00 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,849.47 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0.00 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,3121.37 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,2063.63 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0.00 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0.00 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,299.00 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,0.00 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,12046.07 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,7964.01 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,4263.92 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,2819.01 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,3892.52 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,2573.46 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,0.00 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1407.18 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,0.00 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,1423.82 +0x956074628A64a316086f7125074a8A52d3306321,balancer,581.00 +0x956074628A64a316086f7125074a8A52d3306321,aura,0.00 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0.00 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,1315.36 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,balancer,420.00 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,aura,0.00 \ No newline at end of file diff --git a/Bribs/2023-09-30.csv b/Bribs/2023-09-30.csv new file mode 100644 index 000000000..e2dbcc867 --- /dev/null +++ b/Bribs/2023-09-30.csv @@ -0,0 +1,60 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,3112.85 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,1676.15 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,5527.60 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,2976.40 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0.00 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0.00 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0.00 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0.00 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,6571.83 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,3538.68 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,5658.25 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,3046.75 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0.00 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,0.00 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,0.00 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,32410.00 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,3821.68 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2057.83 +0x274fda0d445097dccc55c7f7ef85bfd3877a132e,balancer,3062.30 +0x274fda0d445097dccc55c7f7ef85bfd3877a132e,aura,0.00 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,2376.73 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,1279.78 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0.00 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0.00 +0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97,balancer,3364.73 +0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97,aura,1811.78 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0.00 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0.00 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0.00 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,1977.38 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0.00 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,1318.58 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0.00 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0.00 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,0.00 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,0.00 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0.00 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0.00 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,1740.31 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,0.00 +0xb6d101874B975083C76598542946Fe047f059066,balancer,2140.61 +0xb6d101874B975083C76598542946Fe047f059066,aura,1340.06 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,1605.46 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,1005.04 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,1605.46 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,1005.04 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,5688.75 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,3561.25 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0.00 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0.00 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,769.67 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,481.83 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,2052.00 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0.00 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,1026.00 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0.00 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,2052.00 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0.00 diff --git a/Bribs/2023-10-13.csv b/Bribs/2023-10-13.csv new file mode 100644 index 000000000..860747cc8 --- /dev/null +++ b/Bribs/2023-10-13.csv @@ -0,0 +1,70 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,6500 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,3500 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,4875 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,2625 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,5000 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,9750 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,5250 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,0 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,29434 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,3218.8 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1733.2 +0x274fda0d445097dccc55c7f7ef85bfd3877a132e,balancer,0 +0x274fda0d445097dccc55c7f7ef85bfd3877a132e,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97,balancer,0 +0x4f3F3501F376D93E4E5FD61d4168f871CBf67C97,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,5000 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,1222.49 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,788.18 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,611.24 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,394.09 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,1112.41 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,717.21 +0xb6d101874B975083C76598542946Fe047f059066,balancer,2224.82 +0xb6d101874B975083C76598542946Fe047f059066,aura,1434.43 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,3337.24 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,2151.64 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,2224.82 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,1434.43 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,9640.45 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,6215.55 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3410.83 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,2199.09 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,888.9 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,573.1 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,0 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,888.9 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,573.1 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1245.31 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,802.89 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1245.31 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,802.89 +0x956074628A64a316086f7125074a8A52d3306321,balancer,622.65 +0x956074628A64a316086f7125074a8A52d3306321,aura,401.45 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,balancer,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,aura,0 diff --git a/Bribs/2023-10-28.csv b/Bribs/2023-10-28.csv new file mode 100644 index 000000000..c8cf81bf6 --- /dev/null +++ b/Bribs/2023-10-28.csv @@ -0,0 +1,82 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,8228.44 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,11457.18 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,8256.63 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,11496.45 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,1163.52 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,1620.07 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,969.84 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,1350.39 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,1285.32 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1789.65 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,1054.59 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,899.84 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,1252.93 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2430.61 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,3384.35 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0.00 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,942.16 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,1050.06 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0.00 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,1287.64 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,1792.89 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,1283.34 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1786.91 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,0.00 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,1175.54 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,7913.28 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,11018.34 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,aura,1305.52 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,balancer,1817.80 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98,aura,0.00 +0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98,balancer,564.03 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,520.98 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,755.92 +0xb6d101874B975083C76598542946Fe047f059066,aura,677.83 +0xb6d101874B975083C76598542946Fe047f059066,balancer,983.51 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,1530.62 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,2220.86 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6abfd42707a87a7b94c5cfa3529f9b432ad,aura,4084.29 +0x8135d6abfd42707a87a7b94c5cfa3529f9b432ad,balancer,5926.16 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,701.46 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1017.80 +0x25DDcad849de576c2A6c124984cE59e62739156D,aura,0 +0x25DDcad849de576c2A6c124984cE59e62739156D,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,1844.31 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,2584.66 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,543.09 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,761.10 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,1287.96 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1804.98 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,1060.80 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,1196.59 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0.00 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,624.55 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,898.29 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1073.26 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0.00 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,847.52 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,aura,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,1662.86 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,2330.36 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,43930.96 diff --git a/Bribs/2023-11-10.csv b/Bribs/2023-11-10.csv new file mode 100644 index 000000000..4878e2737 --- /dev/null +++ b/Bribs/2023-11-10.csv @@ -0,0 +1,98 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,5392.65 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,6812.14 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,7856.93 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,9925.09 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,665.88 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,841.16 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1309.53 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,1654.24 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,993.48 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1254.99 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,852.23 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,537.74 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,0.00 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1466.80 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1852.90 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,5741.19 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,7252.42 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,1002.11 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1265.90 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,7962.20 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,10058.06 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,1324.01 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1672.53 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,709.84 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,896.68 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,6960.62 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,8792.83 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,aura,1160.57 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,balancer,1466.06 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98,aura,833.80 +0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98,balancer,1053.28 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,aura,0 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,balancer,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,3356.79 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,4240.38 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,604.10 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,781.81 +0xb6d101874B975083C76598542946Fe047f059066,aura,861.05 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1114.34 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,2472.41 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,3199.72 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6abfd42707a87a7b94c5cfa3529f9b432ad,aura,11112.35 +0x8135d6abfd42707a87a7b94c5cfa3529f9b432ad,balancer,14381.23 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,844.31 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1092.68 +0x25DDcad849de576c2A6c124984cE59e62739156D,aura,0 +0x25DDcad849de576c2A6c124984cE59e62739156D,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,1568.69 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,1982.17 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0.00 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,649.41 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,848.26 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1071.85 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,1876.42 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,2371.01 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0.00 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,724.74 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,856.90 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0.00 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1305.78 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1601.05 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,635.74 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,779.49 +0x956074628A64a316086f7125074a8A52d3306321,aura,0.00 +0x956074628A64a316086f7125074a8A52d3306321,balancer,571.58 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,aura,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,4104.42 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,5186.29 +0x255912af1bA318527eDC69b4D56152d8c133288E,aura,0 +0x255912af1bA318527eDC69b4D56152d8c133288E,balancer,0 +0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4,aura,0 +0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4,balancer,0 +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,aura,1739.88 +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,balancer,2198.50 +0x54f220a891f468629027C3Cc8A58722D4F576402,aura,690.19 +0x54f220a891f468629027C3Cc8A58722D4F576402,balancer,872.12 +0xce99399fb4De36056A6831b159572E271360ea40,aura,1788.90 +0xce99399fb4De36056A6831b159572E271360ea40,balancer,2260.45 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,62759.47 diff --git a/Bribs/2023-11-11.csv b/Bribs/2023-11-11.csv new file mode 100644 index 000000000..287e48147 --- /dev/null +++ b/Bribs/2023-11-11.csv @@ -0,0 +1,98 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,5392.65 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,6812.14 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,7856.93 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,9925.09 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,665.88 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,841.16 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1309.53 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,1654.24 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,993.48 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1254.99 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,852.23 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,537.74 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,0.00 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1466.80 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1852.90 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,5741.19 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,7252.42 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,1002.11 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1265.90 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,7962.20 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,10058.06 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,1324.01 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1672.53 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,709.84 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,896.68 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,aura,1160.57 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,balancer,1466.06 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98,aura,0 +0x3b861B81B086Ef0CfFA0B00Cd2dDB3d545ec9B98,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,7794.42 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,9846.11 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,aura,0 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,balancer,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,3356.79 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,4240.38 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,604.10 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,781.81 +0xb6d101874B975083C76598542946Fe047f059066,aura,861.05 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1114.34 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,2472.41 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,3199.72 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B,aura,11112.35 +0x19ff30f9B2d32bfb0F21f2DB6c6A3A8604Eb8C2B,balancer,14381.23 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,844.31 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1092.68 +0x25DDcad849de576c2A6c124984cE59e62739156D,aura,0 +0x25DDcad849de576c2A6c124984cE59e62739156D,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,1568.69 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,1982.17 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0.00 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,649.41 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,848.26 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1071.85 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,1876.42 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,2371.01 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0.00 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,724.74 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,856.90 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0.00 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1305.78 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1601.05 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,635.74 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,779.49 +0x956074628A64a316086f7125074a8A52d3306321,aura,0.00 +0x956074628A64a316086f7125074a8A52d3306321,balancer,571.58 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,aura,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,4104.42 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,5186.29 +0x255912af1bA318527eDC69b4D56152d8c133288E,aura,0 +0x255912af1bA318527eDC69b4D56152d8c133288E,balancer,0 +0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4,aura,0 +0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4,balancer,0 +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,aura,1739.88 +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,balancer,2198.50 +0x54f220a891f468629027C3Cc8A58722D4F576402,aura,690.19 +0x54f220a891f468629027C3Cc8A58722D4F576402,balancer,872.12 +0xce99399fb4De36056A6831b159572E271360ea40,aura,1788.90 +0xce99399fb4De36056A6831b159572E271360ea40,balancer,2260.45 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,62759.47 diff --git a/Bribs/2023-11-23.csv b/Bribs/2023-11-23.csv new file mode 100644 index 000000000..b288c7ee2 --- /dev/null +++ b/Bribs/2023-11-23.csv @@ -0,0 +1,100 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,6362.58 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,7137.11 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,12398.62 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,13907.93 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,950.59 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,1066.30 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1801.38 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,2020.67 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,1490.93 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1672.42 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0.00 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,1039.84 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,550.07 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,0.00 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2843.04 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,3189.13 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,3108.87 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,3487.32 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,758.67 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,851.02 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,8756.62 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,9822.58 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,1688.41 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1893.94 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,840.30 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,942.60 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,8142.39 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,9133.59 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,aura,0 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,balancer,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,aura,0 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,balancer,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,2233.67 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,2505.59 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0xC6C69b977329D93E34fDBD2c37Ab8e70b8decFCD,aura,0 +0xC6C69b977329D93E34fDBD2c37Ab8e70b8decFCD,balancer,0 +0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7,aura,0 +0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7,balancer,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,777.68 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,900.96 +0xb6d101874B975083C76598542946Fe047f059066,aura,1076.14 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1246.74 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,2791.98 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,3234.59 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6abfd42707a87a7b94c5cfa3529f9b432ad,aura,10823.51 +0x8135d6abfd42707a87a7b94c5cfa3529f9b432ad,balancer,12539.34 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,1292.04 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1496.87 +0x25DDcad849de576c2A6c124984cE59e62739156D,aura,0 +0x25DDcad849de576c2A6c124984cE59e62739156D,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,2540.85 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,2871.72 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,855.68 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,967.11 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,2718.28 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,3072.25 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,1429.89 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,1639.98 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1887.49 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,2115.00 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,793.09 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,888.68 +0x956074628A64a316086f7125074a8A52d3306321,aura,0.00 +0x956074628A64a316086f7125074a8A52d3306321,balancer,787.02 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,aura,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,6872.30 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,7767.10 +0x255912af1bA318527eDC69b4D56152d8c133288E,aura,0 +0x255912af1bA318527eDC69b4D56152d8c133288E,balancer,0 +0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4,aura,0 +0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4,balancer,0 +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,aura,0 +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,balancer,0 +0x54f220a891f468629027C3Cc8A58722D4F576402,aura,0 +0x54f220a891f468629027C3Cc8A58722D4F576402,balancer,0 +0xce99399fb4De36056A6831b159572E271360ea40,aura,0 +0xce99399fb4De36056A6831b159572E271360ea40,balancer,0 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,64393.84 diff --git a/Bribs/2023-12-07.csv b/Bribs/2023-12-07.csv new file mode 100644 index 000000000..362d799ae --- /dev/null +++ b/Bribs/2023-12-07.csv @@ -0,0 +1,106 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,5945.30 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,6524.40 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,11188.41 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,12278.24 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,836.49 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,917.97 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1369.20 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,1502.58 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,3999.01 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,4388.54 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,736.83 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,808.59 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,0.00 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,741.55 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2144.49 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,2353.39 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0.00 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,827.13 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,909.93 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,998.55 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,2424.87 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,2661.06 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,4157.08 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,4561.99 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,8010.83 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,8791.14 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,aura,0 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,balancer,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,aura,0 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,balancer,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,2280.75 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,2502.92 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0xC6C69b977329D93E34fDBD2c37Ab8e70b8decFCD,aura,0 +0xC6C69b977329D93E34fDBD2c37Ab8e70b8decFCD,balancer,0 +0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7,aura,0 +0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7,balancer,0 +0x5D7C0521DB5a6F37aD839d0eEfbaF8205389adD8,aura,0 +0x5D7C0521DB5a6F37aD839d0eEfbaF8205389adD8,balancer,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,960.01 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,1055.71 +0xb6d101874B975083C76598542946Fe047f059066,aura,918.08 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1009.59 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,2320.67 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,2552.00 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0.00 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,518.84 +0x8135d6abfd42707a87a7b94c5cfa3529f9b432ad,aura,8823.92 +0x8135d6abfd42707a87a7b94c5cfa3529f9b432ad,balancer,9703.51 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,1232.53 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1355.39 +0x25DDcad849de576c2A6c124984cE59e62739156D,aura,0 +0x25DDcad849de576c2A6c124984cE59e62739156D,balancer,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,2872.37 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,3173.46 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,1127.41 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,1245.59 +0x6054A132020f48012C63D2cb83813327378F9423,aura,0 +0x6054A132020f48012C63D2cb83813327378F9423,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,2785.89 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,3077.92 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,aura,0 +0x205dAdDbAd79EC680451DE55e2CC744ff8cbabd0,balancer,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,930.56 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,1229.76 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1581.80 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,2083.19 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,754.03 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,993.05 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,aura,0 +0x40B4C2E260f803F868053789bD4A6C7Edd1cdc39,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,8457.73 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,9344.30 +0x255912af1bA318527eDC69b4D56152d8c133288E,aura,0 +0x255912af1bA318527eDC69b4D56152d8c133288E,balancer,0 +0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4,aura,0 +0x42a3290a65CA16Adaf161c6FfAfDBE0913A169F4,balancer,0 +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,aura,0 +0xF7d515DC47d5BD57786494628ed766d6bF31cd39,balancer,0 +0x54f220a891f468629027C3Cc8A58722D4F576402,aura,0 +0x54f220a891f468629027C3Cc8A58722D4F576402,balancer,0 +0xce99399fb4De36056A6831b159572E271360ea40,aura,0 +0xce99399fb4De36056A6831b159572E271360ea40,balancer,0 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,57388.98 diff --git a/Bribs/2023-12-07_review.csv b/Bribs/2023-12-07_review.csv new file mode 100644 index 000000000..1be9f271a --- /dev/null +++ b/Bribs/2023-12-07_review.csv @@ -0,0 +1,28 @@ +pool_id,bribe +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,23466.65 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,827.13 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,18527.43 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,8719.07 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,2587.92 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,1908.48 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,518.84 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,16801.97 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,4872.67 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,741.55 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,12469.7 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,1927.67 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,2015.72 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,1545.42 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,17802.03 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,1747.08 +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,5863.8099999999995 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,4783.67 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,4497.879999 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,1754.46 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,2373.0 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,5085.93 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,6045.83 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,8387.55 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,2871.7799999999997 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,2160.3199999999997 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,3664.99 diff --git a/Bribs/2023-12-22.csv b/Bribs/2023-12-22.csv new file mode 100644 index 000000000..83d775951 --- /dev/null +++ b/Bribs/2023-12-22.csv @@ -0,0 +1,6 @@ +target,platform,amount,rounds +0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,aura,2408.68,1 +0x49f530b45ae792cdf5cbd5d25c5a9b9e59c6c3b8,aura,4721.01,2 +0xb66e8d615f8109ca52d47d9cb65fc4edcf9c1342,aura,2505.02,1 + + diff --git a/Bribs/2024-01-05_review.csv b/Bribs/2024-01-05_review.csv new file mode 100644 index 000000000..03af56df1 --- /dev/null +++ b/Bribs/2024-01-05_review.csv @@ -0,0 +1,31 @@ +pool_id,bribe +0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e,963.88 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,28488.879999999997 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,37940.2 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,3144.09 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,2228.1099999999997 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,10117.99 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,897.75 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,8000.17 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,5138.43 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,6219.2 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,8483.64 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,3277.3599999999997 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,3919.65 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,5089.29 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,3275.0299999999997 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,818.34 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,11535.45 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,3018.45 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,668.38 +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,8820.3 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,5107.389999999999 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,4274.98 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,601.08 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,3338.59 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,3704.6800000000003 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,7760.93 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,33069.03 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,3502.33 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,1181.87 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,7541.59 diff --git a/Bribs/feb-17-2023.csv b/Bribs/feb-17-2023.csv new file mode 100644 index 000000000..aa26767e3 --- /dev/null +++ b/Bribs/feb-17-2023.csv @@ -0,0 +1,37 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,57881.54 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,19707.66 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,22599.25 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,7694.65 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,0 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,0 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,0 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,5085 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,balancer,5689.82 +0xA2a9Ebd6f4dEA4802083F2C8D08066A4e695e64B,aura,1937.28 +0xD973e86547e810117Db131B94708F429A463535E,balancer,0 +0xD973e86547e810117Db131B94708F429A463535E,aura,0 +0x623F3Dbc761B46F64aE7951700Dd7724cB7d6075,balancer,0 +0x623F3Dbc761B46F64aE7951700Dd7724cB7d6075,aura,0 +0xE96924D293b9e2961f9763cA058E389D27341D3d,balancer,0 +0xE96924D293b9e2961f9763cA058E389D27341D3d,aura,0 +0xf53f2fEE2A34f7f8d1BFe1B774A95Cc79C121B34,balancer,0 +0xf53f2fEE2A34f7f8d1BFe1B774A95Cc79C121B34,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,4044.55 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,1377.1 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,5989.97 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,2039.48 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,0 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,0 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,balancer,2348.91 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,aura,799.76 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,balancer,4709.71 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,aura,1603.57 +0x21a3De9292569F599e4cf83c741862705bf4f108,balancer,1442.16 +0x21a3De9292569F599e4cf83c741862705bf4f108,aura,491.03 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,balancer,6071.8 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,aura,2067.34 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,balancer,22037.86 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,aura,7503.51 diff --git a/Bribs/feb-5-2023.csv b/Bribs/feb-5-2023.csv new file mode 100644 index 000000000..75a1148d1 --- /dev/null +++ b/Bribs/feb-5-2023.csv @@ -0,0 +1,19 @@ +target,platform,amount +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,balancer,60852.78 +0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE,aura,19853.82 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,28186.63 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,9196.17 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,balancer,0.00 +0x81C452E84B103555C2Dd2DEc0bFABC0c4d6B3065,aura,0.00 +0x01A9502C11f411b494c62746D37e89d6f7078657,balancer,9743.87 +0x01A9502C11f411b494c62746D37e89d6f7078657,aura,1617.23 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,balancer,2945.59 +0x88D07558470484c03d3bb44c3ECc36CAfCF43253,aura,961.03 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,balancer,5867.74 +0xA5A0B6598B90d214eAf4d7a6b72d5a89C3b9A72c,aura,1914.41 +0x21a3De9292569F599e4cf83c741862705bf4f108,balancer,606.40 +0x21a3De9292569F599e4cf83c741862705bf4f108,aura,0.00 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,balancer,4393.83 +0x359EA8618c405023Fc4B98dAb1B01F373792a126,aura,1433.53 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,balancer,16541.78 +0x519cCe718FCD11AC09194CFf4517F12D263BE067,aura,5396.92 diff --git a/Bribs/partner_lm/gear/2023-04-13.json b/Bribs/partner_lm/gear/2023-04-13.json new file mode 100644 index 000000000..e5df6e333 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-04-13.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "uint256", "name": "index", "type": "uint256"}, {"internalType": "address", "name": "account", "type": "address"}, {"internalType": "uint256", "name": "totalAmount", "type": "uint256"}, {"internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]"}], "name": "claim", "payable": false}, "contractInputsValues": {"index": "6874", "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "totalAmount": "1027233024068506624882187", "merkleProof": "['0xe8e682a8198a3de8c3704d63a86e90e141ebeaa83879471cc33d2ab7177fd681', '0xc41a5220f79b35f57a1b2d281ed4fc0aac6eb2a614318896459ec49b31133e35', '0xc8f835380180821d811a52fa448a1a28bc00503b5762b7d054d8c7d2f65648c7', '0x39b3b358ebbcfcd706d4b22c7a5e2e50253ef0fd4cdf105975cbb2419a116bf7', '0xfb5f6740c14a086c22b6560acce30ac58842bac053628074de5fa0294db8f5f4', '0x59065fa2150beed280576d6fe21bc7c86926c2aa9fd8f276e86c177b18f0dd80', '0x749ccfeef2b724f7d5febd235f3bb8895c39416f6891634f9d4baa8111d535a2', '0x3453fc459decd0854249f6d95783fe2348ca8c514165bd123d9e3b985e2b01a9', '0x7ae531e836dc41bdfe205374d8cec96730b36f2f82afd9fea722a17793fa1eeb', '0x075bf99aeefcbe11b7d660624d7cf630bc07475769257c7263c46fca2166fbf5', '0x42202a184a622372047f6117f3fa1f09097d0d556a1380aa72405cee5660b522', '0xcec699a561455af8f1133d6b6330f25b75a0a8e9f2ebf158564ce4508a608f92', '0x2c1690d90dee89671bac2d4bcb3714d044ae7cbd84318208bfe18d8cf87295b0']"}}, {"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "610961064121192792576718"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x30c4435f204abe662454c5ec861983c5682af0928cb5953658c83610a15f4fc7", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "305480532060596407894016"}}, {"to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "305480532060596384682702"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-04-27-1m-gear.json b/Bribs/partner_lm/gear/2023-04-27-1m-gear.json new file mode 100644 index 000000000..2fd311b07 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-04-27-1m-gear.json @@ -0,0 +1,101 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", + "rawAmount": "542695031927841866482477" + } + }, + { + "to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "depositBribeERC20", + "payable": false + }, + "contractInputsValues": { + "proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", + "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", + "amount": "10101010101010100649984" + } + }, + { + "to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "depositBribeERC20", + "payable": false + }, + "contractInputsValues": { + "proposal": "0xaf115a58c45e37d92502eef6fbc55fa5098602a3c96e2507898eedc1b361acf5", + "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", + "amount": "999999999999999983222784" + } + } + ] +} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-04-27.json b/Bribs/partner_lm/gear/2023-04-27.json new file mode 100644 index 000000000..639888bd6 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-04-27.json @@ -0,0 +1,138 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "totalAmount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "index": "6915", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "totalAmount": "1569928055996348491364664", + "merkleProof": "['0x11aa8ae448088fdb8a1efda71febbda71c4d73c3378446443ce2820cc2e3c1bc', '0xed730cb542effd1467050d93b99a45185e2b80472d2d686aeebd94e586cd567c', '0xa6ec70ee26cf1e42992785de1123c5de86fff042e997ad3cd5ffe5442d3ea975', '0x89e2a1341fb1ec16397ce79ed6b9d15d071be37d59573288cf50156cc7de0a27', '0xafb078e9689ea8d2ba9a72062e9638b3ad33bba8f56da96ebf78cefd5593667a', '0x950f0a7f2d35d3905b8eb0053d0c4326adeab20043a884df1f3235456b02c86b', '0x4e5ecb9adbeb76c75ab335d4f1cd959411f550c0debef21495941de057e2f8be', '0xb1e0d4d601bc19a8623340c51a286ebcd0711c58c5e2da93272acd66180ef6d6', '0x18560be87047eea6b0ef2dee48b3a6ad0be4180a7d41dc2eaa825338d3e45ab3', '0xccb1394b3b8b5e3467e8a187146479f33dc5ed82b7bb2a472efede792181b71b', '0xa5e9b54cfa42eb1563fb5b9afc62aa4279c7e682fa7e61bcdf95805e88328923', '0xa611a3107b8fab183251911559ba415506549ee1e7ddd9a4d9324904038b8177', '0x1df10ec847722b6888174de07368bb4b2f621a70d940f6ea5ade6878824d459a']" + } + }, + { + "to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", + "rawAmount": "542695031927841866482477" + } + }, + { + "to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "depositBribeERC20", + "payable": false + }, + "contractInputsValues": { + "proposal": "0xaf115a58c45e37d92502eef6fbc55fa5098602a3c96e2507898eedc1b361acf5", + "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", + "amount": "271347515963920932143104" + } + }, + { + "to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "depositBribeERC20", + "payable": false + }, + "contractInputsValues": { + "proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", + "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", + "amount": "271347515963920934339373" + } + } + ] +} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-05-11-1m-gear.json b/Bribs/partner_lm/gear/2023-05-11-1m-gear.json new file mode 100644 index 000000000..650e48705 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-05-11-1m-gear.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "403550568091251484929271"}}, {"to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "10101010101010100649984"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0xc3232191a86bea1ff4aeb8c8fe180cbd3ca0503d1176a47b622f4b2434da055a", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "999999999999999983222784"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-05-11.json b/Bribs/partner_lm/gear/2023-05-11.json new file mode 100644 index 000000000..1d41757a8 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-05-11.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "uint256", "name": "index", "type": "uint256"}, {"internalType": "address", "name": "account", "type": "address"}, {"internalType": "uint256", "name": "totalAmount", "type": "uint256"}, {"internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]"}], "name": "claim", "payable": false}, "contractInputsValues": {"index": "6925", "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "totalAmount": "1973478624087599976293935", "merkleProof": "['0xf4881143d564fd086825dc77f5b6048af08e3440aabc84759710ec10913744c4', '0xcb4c61bf1bb4d2e329bf121e5a23f56bbfce7f7a8fd4248817f2131fb74626ea', '0x493b082bd50dcf6c2c78676d093adb56eb6737e544ec57d7a4c820f717e1f5ce', '0x17064d645d65de6fe1bc92d3855d8751ac836378105806af15bc8cecc84b1e10', '0x2cb719e69b947387a060cd3454f9ee6fefc94887d0e4d5f95edcd6e5e97b15a3', '0x20db4fd2015d047d587f064a9fea4ad988673d4eb215ecc05d9a3cacc86827e2', '0x76d6c14eb69e8fde4712bc84ab3e32a9501e0bb336b70cbcea5abbe16c5d88b1', '0xc66beea9a58c1abbd3165654f051abe5b360428ad639d9a8a711657affe531cc', '0x66bedf688d9fdc083d76e056766f4447c0037b32cceb21ecfad411337e8142ee', '0x68ad8427e12e301e63db09eba968236bf806d442a9299f41644dd5dc7319fdc3', '0xca170d37c43ee1368d389a3613185046a9b68c915d5e402ad93168debb612816', '0xb638b931a3f01f8b70e6ab6eb2e18e635850853e5407c0cde7e7c5ccef4e0d3d', '0x595bb7955bf177c9bbf90cf8d80694423e6559781c55e4b4e449290c10cec7e9']"}}, {"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "403550568091251484929271"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0xc3232191a86bea1ff4aeb8c8fe180cbd3ca0503d1176a47b622f4b2434da055a", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "201775284045625746784256"}}, {"to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "201775284045625738145015"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-05-25-1m-gear.json b/Bribs/partner_lm/gear/2023-05-25-1m-gear.json new file mode 100644 index 000000000..e7d454df8 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-05-25-1m-gear.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "536762369557919301460190"}}, {"to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "10101010101010100649984"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x3512436da14ed8278b9dfa252f13a38cdb9e86ff219d1e520507486858cfc891", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "999999999999999983222784"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-05-25.json b/Bribs/partner_lm/gear/2023-05-25.json new file mode 100644 index 000000000..ca1752da3 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-05-25.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "uint256", "name": "index", "type": "uint256"}, {"internalType": "address", "name": "account", "type": "address"}, {"internalType": "uint256", "name": "totalAmount", "type": "uint256"}, {"internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]"}], "name": "claim", "payable": false}, "contractInputsValues": {"index": "6974", "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "totalAmount": "2510240993645519277754125", "merkleProof": "['0x0fbfc64ec2d1cba10000487b552fe2f6075c50b39a70c8fe170142f47eedafe9', '0xc71cb4e5cb4b35004c6998221d385f1b0302bddabfd5b5928600bf51b60b2922', '0xd6b3fa0b2fc01374d74d4933e53dc88f63715587c4f86203e7eb365b2474c62c', '0x7a6e8ab2af29364597f59e262a0153c0b226ea2c9cfd55ae1558c5c44832298f', '0x0fa35504b313bf22d641640428638bca0a3a45e08cf1a983437b90e3ed3c1bbc', '0xf9d93310e51eaf9f0a3e2f1b439fb889e774d892d98a52e02cc12cf2d3b0b8c5', '0x160ed0f65b6ed84f185fbd050a25b0967e3016711fa177596a2f494d33c4b638', '0xf2c4a87a46839404f73d568f777347407e3b732f8bd77fc39b2aa8cbaa3777f7', '0x03eb82de5816dac018d14948433213c83ea81bf949861be9a8863de885d45d62', '0x67f486382ecabe2f3c9046ad405c2f027a2668cde58fe5505c628500d8ebd19d', '0x74cd1709d93721d1093f230895a50b44d4c78e8bdad90b0e670aa966e7d83fd3', '0x5d8fd6beff3a724dd33742b5642e86ba9fa142aeaa553ec9c135b4bfce20a51d', '0x33519c1af7c0a07c3730f0a7e7b3281d3f77ef948d944ea0ae5f38d0e7235646']"}}, {"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "536762369557919301460190"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x3512436da14ed8278b9dfa252f13a38cdb9e86ff219d1e520507486858cfc891", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "268381184778959662874624"}}, {"to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "268381184778959638585566"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-06-09-1m-gear.json b/Bribs/partner_lm/gear/2023-06-09-1m-gear.json new file mode 100644 index 000000000..1126091c8 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-06-09-1m-gear.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "581807805455544860009211"}}, {"to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "10101010101010100649984"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0xa32c79d4aa1155a2f26001cfb9e493484ce3f4346475a0c149a3009835d8d048", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "999999999999999983222784"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-06-09.json b/Bribs/partner_lm/gear/2023-06-09.json new file mode 100644 index 000000000..0789352ba --- /dev/null +++ b/Bribs/partner_lm/gear/2023-06-09.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "uint256", "name": "index", "type": "uint256"}, {"internalType": "address", "name": "account", "type": "address"}, {"internalType": "uint256", "name": "totalAmount", "type": "uint256"}, {"internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]"}], "name": "claim", "payable": false}, "contractInputsValues": {"index": "7053", "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "totalAmount": "3092048799101064137763336", "merkleProof": "['0x68fd69afdaed8ea6ea55c87264181dd81032d0a3ae38b80633d9bb2716286518', '0xabc498e32ce0e9e05b1c6768b955e0b48d95d977f23c09f2e467a798d7c9a24a', '0x99e43c1631a61f0017505d74aae5e44a56f40cdbc91cd1cb2f6fb214fac21430', '0xe1e5209b1b506fb7540272305937f9386408d17b9b658850ad3c93e5b698112b', '0x75d448b9fb7a3d9bc0caf9d3943a09191acce806a14c7be2c0bc69fabf008cb3', '0x675de46409eaa7d0fc623363ee2d37ad9d6b7c576353bc296a2ef4041c8099ca', '0xeef034dfef751b86b7a14cc02e179f0e69cb44fa7543a015d9dbeeb6f1330fb7', '0xcfc23ea4feaa8068719992d037ac646af00bb61eba7693c192570766d5bcac3d', '0x9637c82b29f6c7f31bcb02ea691ceeb385f4acf68c6b79f5d29e90bda4bcc1ef', '0xed674fde0a0eb46c80f0c424817acde0815db9dafdeb886530e380528e01a3af', '0x4b1a7ad9dc14b1899013394370154662da8080d6625969479e7bf1268cd637ae', '0x138e0de14ddb0d4ec4e8b54690d8660e407b5a8174097aa2571405861149339c', '0xa2e3fecd2bff4441b49c982ae65bf5bcea77e8592703cf161b0497c0c9ceca89']"}}, {"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "581807805455544860009211"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0xa32c79d4aa1155a2f26001cfb9e493484ce3f4346475a0c149a3009835d8d048", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "581807805455544860009211"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-06-23-1m-gear.json b/Bribs/partner_lm/gear/2023-06-23-1m-gear.json new file mode 100644 index 000000000..02cdf53eb --- /dev/null +++ b/Bribs/partner_lm/gear/2023-06-23-1m-gear.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "645961668989991440043479"}}, {"to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "10101010101010100649984"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0xfc49c68286e76cb87ebb35fcc44aa64db21dd4cbaecdae059c1baaba582dc291", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "999999999999999983222784"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-06-23.json b/Bribs/partner_lm/gear/2023-06-23.json new file mode 100644 index 000000000..11b9abd4a --- /dev/null +++ b/Bribs/partner_lm/gear/2023-06-23.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "uint256", "name": "index", "type": "uint256"}, {"internalType": "address", "name": "account", "type": "address"}, {"internalType": "uint256", "name": "totalAmount", "type": "uint256"}, {"internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]"}], "name": "claim", "payable": false}, "contractInputsValues": {"index": "7118", "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "totalAmount": "3738010468091055577806815", "merkleProof": "['0xc37f77c404d45466a897e920b1e5abbee6a9ebb6c75806e2e5d2d42a98459832', '0xda1197255ba89eb0fd440623d64b65640e973c2c21f38588b5a11b0236ecf441', '0xb8d9b1548d8e7e9ef62fd89560d8d435f3dff9524c2f22827ffc9dcc7d4171cf', '0xc2702830ff1ce49e5f2d841ca3d4cd4c0552225eab599f7db5086a7bb8a5ea3c', '0x2aa871c06ba3638ea3d070921b5c4c355b0e447dc4bbff4aca7360ffc57f5ba4', '0x5f538ebaee0fee5d10fe0ee81d108f96942326e7402f29a6166a8b6fd8adaa86', '0xa891bca3109e446a9c6ba50b7160554a5d119ac5bf5eb3c583938619b37a6947', '0x47be586e176bed3a19ebacfdbca92458bb8cbe3de656d60c20d696970106eff0', '0x054b680d5fd270f09089efceb222a6b67a215abe32220d015e795cae4dc389e7', '0xac2b415fda28471d0c852cd12036ac3edc5da842b45a19a130844c396808b3b2', '0x2bd5e5479310234d13e8f759ff7ee0a058b5e35e1076d92194fb1af74ddff564', '0x3a034dda22310e739591d33d78e6469ddfa130c2217e0bdc8cf69687a37e8126', '0x7f538230702d91bfb59f21559b22e46ebc3add5fca9c127af311d0ee0510e5f3']"}}, {"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "645961668989991440043479"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0xfc49c68286e76cb87ebb35fcc44aa64db21dd4cbaecdae059c1baaba582dc291", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "645961668989991440043479"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-07-06-1m-gear.json b/Bribs/partner_lm/gear/2023-07-06-1m-gear.json new file mode 100644 index 000000000..2b9a2bc78 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-07-06-1m-gear.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "994630064110494435460932"}}, {"to": "0x7Cdf753b45AB0729bcFe33DC12401E55d28308A9", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "10101010101010100649984"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "999999999999999983222784"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-07-06.json b/Bribs/partner_lm/gear/2023-07-06.json new file mode 100644 index 000000000..8154e65ad --- /dev/null +++ b/Bribs/partner_lm/gear/2023-07-06.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "uint256", "name": "index", "type": "uint256"}, {"internalType": "address", "name": "account", "type": "address"}, {"internalType": "uint256", "name": "totalAmount", "type": "uint256"}, {"internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]"}], "name": "claim", "payable": false}, "contractInputsValues": {"index": "7152", "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "totalAmount": "4732640532201550013267747", "merkleProof": "['0xe988b1e31ebe3039a2959f628a8cea4e7f9ae978cc84f3cbcee952241e65277a', '0xb3f4a986e641db633cce06b424bc980340cbb472fca41d26c8ff642086b85584', '0x5cb3e2869aa6ca05761b8353ea90edf5e018e66906a7415af29e9542a24eecc4', '0x83993ae4ea64d59076a0d1c7b3eb1cb2581598a2f143844dc759974a6e54d838', '0xaf85cd2dda98bf3e677bec5298e1810ea3c552cfeda5458c10d647bf9b787d06', '0x8c57575b611127f9aad836c8f3216edd7056497ac02b2d0bdb4fce549dcba7c4', '0xf766a5354f8642e52eb0188d7e3d61f45c1003995483dd82488440fa11c2898c', '0x78eb7b12710ab7c6e64bbb3a955b685c35b89ccbbe6c23c40e2e436172dd24e7', '0x75fbd6ce1359e224a12e18009910ee62a7b89eacb564ef641e801f9a43e120b5', '0x946236c4426cccb03ce7378eae7ee5335b9eb01d658784230906f54611e76384', '0x5c6a56e26d88a99974056dc2820f246f30f2aac08d979f643fa12d6d0f50a1a6', '0x27a0cf32f4517efa1004b49ae4523ab367adfaf594e5e952a45ea12f6c52ae18', '0x9fd4fcf782b8522b70365f8faffdf754e42c23be92f4772c2cf50f2c7f6d614b']"}}, {"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "994630064110494435460932"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0x4735553b91be8926bebb90d63080bc66942e8b953232f2257272e60476f1d7dd", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "994630064110494435460932"}}]} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023-09-18.json b/Bribs/partner_lm/gear/2023-09-18.json new file mode 100644 index 000000000..5c1a7eb10 --- /dev/null +++ b/Bribs/partner_lm/gear/2023-09-18.json @@ -0,0 +1,76 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "totalAmount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "index": "7254", + "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "totalAmount": "9738818785230600642703572", + "merkleProof": "['0x0da3be7ff077290c3a1efba29595087cefe9e346ec42e8ef1014b555553ec0c6', '0x894b07294a9fca2409fcec6f05800604d6099646ed0f0d7580ed3d3470be6571', '0xa5a7fbca81917b604b001447b7025cdae97831d568a583ab86b9178731ba6aa4', '0x9ca706558ad217ce018c24e238844542d922d8f85573f3a5d5a1ee32d6dfc1ba', '0xf0c4cf9533f8f66275b278e653234df8a1ef3b1a21f80b0c7c04ccdc73c6992f', '0x57a66cacee4fd65a8641a95c1c197028b34baab0bea9c03a2f162f6fbdd76884', '0xaeba46f7ecef35ec9260fa550a2f16865fb8d3083b5aee4133d10fea8511c5bc', '0xe173758a54b9652fbbe6ef5e524f77d6f34b9e5eb89ee55604b2a5f8a4403901', '0x7655928fa280bd1af14066f538635bdb2fb45be35ba00357283c31fc8604d782', '0xc4d254d5650c84c681a6cbfe2c1435a5f238b76d40dbbd0acefa8a398dd5994e', '0xb4abdaeee71c33fa38f9c978c68fd7349b7374e601d070507a8a00870694f7a3', '0x7ea93b38956f929ff070e01d941ae39afabc1d358695296f95d1a3367aa02b12', '0x8d4d4c04765307a1960722f3d56e727fb40d65dff38d60cdcf485ba81945481a', '0x3337c08e09c030b2fdbaae2aa9ac3df918562196af766b563a1ff58a5bb0e4e7']" + } + }, + { + "to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x7b065Fcb0760dF0CEA8CFd144e08554F3CeA73D1", + "value": "2458459376291492112521187" + } + } + ] +} \ No newline at end of file diff --git a/Bribs/partner_lm/gear/2023w14.json b/Bribs/partner_lm/gear/2023w14.json new file mode 100644 index 000000000..57daf7f7d --- /dev/null +++ b/Bribs/partner_lm/gear/2023w14.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "", "createdAt": 1675891944772, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.13.2", "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "createdFromOwnerAddress": ""}, "transactions": [{"to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "uint256", "name": "index", "type": "uint256"}, {"internalType": "address", "name": "account", "type": "address"}, {"internalType": "uint256", "name": "totalAmount", "type": "uint256"}, {"internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]"}], "name": "claim", "payable": false}, "contractInputsValues": {"index": "6806", "account": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "totalAmount": "416271959947313832305469", "merkleProof": "['0xec6f005c15bb25048151d3bc5e598375683389f6a9d117156bc0b9fcf98dcc35', '0x4fe53dce1380840aa785a51adaf5a4aa5419b7da87eeca700caa8c0527acfef4', '0xbecf4350a9c734e8bd779c785653e7af8a16e79679b0ce78b4b80959f5728842', '0x783826f97c90f5995cc60b1ab84652076be83d8a578e2d9ef3f984fdf8135ca7', '0xf8ff00b226cfe853b1c6c44ca24b5c677e7d782847821144a61ac056152b9ff7', '0x0d195522927f986188ad404b5c92ceea8712baeb7829af166404c5a61f843d07', '0xd6ff23f10ba5b0863a180b39e70680b34cc43d23d9fba52e23e1aaff08f5e9f7', '0xc52bcf3ccee5ca9105767d9c2af35a28c162605af26b7f5e1d9c8379b3fb42b2', '0xe33d9520e8e26b90e01cc32ffdc33ef51ff51383b72910946a671c4cc3dc8a76', '0x9382e3f33083b6bffbfc6a4c19e08c05822d269a363fada4d15531e1b2a7f7e4', '0x225df2ad29044831e712457da6d930edbc027755f9bb5c1ee4435ab27ecef91d', '0xe59ea687e0a49d9a2f25c9d58901e492db5974efa6c5dc9fbb0a92793a3376e6', '0x50bb21d18451d47d1ed531f5334899630e4bb5743bb9650cde0f3258c0132f72']"}}, {"to": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "address", "name": "spender", "type": "address"}, {"internalType": "uint256", "name": "rawAmount", "type": "uint256"}], "name": "approve", "payable": false}, "contractInputsValues": {"spender": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "rawAmount": "274355306128900402472271"}}, {"to": "0x642c59937A62cf7dc92F70Fd78A13cEe0aa2Bd9c", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "bytes32", "name": "proposal", "type": "bytes32"}, {"internalType": "address", "name": "token", "type": "address"}, {"internalType": "uint256", "name": "amount", "type": "uint256"}], "name": "depositBribeERC20", "payable": false}, "contractInputsValues": {"proposal": "0xc2c2b087ede3b2fbc654591bf43272f81da9be9bd6e604a1a91f79c6e5b0f2c5", "token": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", "amount": "274355306128900402472271"}}]} \ No newline at end of file diff --git a/Bribs/whatsGoingON.txt b/Bribs/whatsGoingON.txt new file mode 100644 index 000000000..fc0d6e75b --- /dev/null +++ b/Bribs/whatsGoingON.txt @@ -0,0 +1,243 @@ + +******** Summary Report +*** Aura USDC: 50262.496448 +*** Balancer USDC: 89637.2566 +*** Payment USDC: 103808.0 +*** Total USDC: 243707.75304799998 +*** Total mantissa: 243707753047 +*** Curent USDC mantissa: 267162887509 + + +Current USDC: 139899.753047 +******* Posting Balancer Bribe: +*** Gauge Address: 0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE +*** Proposal hash: 0xf3fec055538f5295abee2981cf7db080513028b5a5ccc5040aa6bdb4e7b91e44 +*** Amount: 17499.0101 +*** Mantissa Amount: 17499010100 +Current USDC: 163354.887509 +Transaction sent: 0xda68e32452e48ec525c6f903bf5823d44f98807e8e7c20cbf64d0aff1fbc4fe2 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 3 + BribeMarket.depositBribe confirmed Block: 17643020 Gas used: 262310 (2.19%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0x79eF6103A513951a3b25743DB509E267685726B7 +*** Proposal hash: 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf +*** Amount: 13274.3247 +*** Mantissa Amount: 13274324700 +Current USDC: 145855.877409 +Transaction sent: 0xd713739fed993555240324f960aa1b62cde9591c0efade7c13bd597448cf7a27 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 4 + BribeMarket.depositBribe confirmed Block: 17643021 Gas used: 247310 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0x01A9502C11f411b494c62746D37e89d6f7078657 +*** Proposal hash: 0x0691bba8591cf4d6b98e7b855ec125b8595988b58fecca53a2747a6a7f6cd869 +*** Amount: 6013.0122 +*** Mantissa Amount: 6013012200 +Current USDC: 132581.552709 +Transaction sent: 0x9e263ae280d75269a65b8ebc7c7461afe6d44b76d14d347eb1b43d86849ca001 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 5 + BribeMarket.depositBribe confirmed Block: 17643022 Gas used: 247310 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0x10a361766e64D7983a97202ac3a0F4cee06Eb717 +*** Proposal hash: 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d +*** Amount: 3307.2858 +*** Mantissa Amount: 3307285800 +Current USDC: 126568.540509 +Transaction sent: 0xbd95e7f2fb6a4d22933f8f299622fe84d1685a0a70bc301344add37bf01881b5 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 6 + BribeMarket.depositBribe confirmed Block: 17643023 Gas used: 247298 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0x0052688295413b32626D226a205b95cDB337DE86 +*** Proposal hash: 0xbae4b8953eee0d00607c9a142045ce7b9fe01f8b6a090e7d6e3bbffe6e2ab994 +*** Amount: 967.7447 +*** Mantissa Amount: 967744700 +Current USDC: 123261.254709 +Transaction sent: 0xeb0768c8d057f9b2b85e9fd917359b1a93d586fe337a5be168135fcc3c6a81ba + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 7 + BribeMarket.depositBribe confirmed Block: 17643024 Gas used: 247286 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0x454eb2f12242397688DbfdA241487e67ed80507a +*** Proposal hash: 0x02cf6f237a0708724f9a7f21225b322c1a3bd40c5e65e825ef70f458ef79e67a +*** Amount: 10937.7957 +*** Mantissa Amount: 10937795700 +Current USDC: 122293.510009 +Transaction sent: 0x00108827c1e0fedf83583f621dc534012da846bd1991957748ce783f24e8ff6c + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 8 + BribeMarket.depositBribe confirmed Block: 17643025 Gas used: 247310 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6 +*** Proposal hash: 0x33a43f055af4bfd3d3160983ffd5bcdef73584d1e8d79733344449bb8f9ac520 +*** Amount: 9975.741225 +*** Mantissa Amount: 9975741225 +Current USDC: 111355.714309 +Transaction sent: 0x30d8b2354576c0ab706f58372ff5cf8460dce1bf0b180b5f062bb6ee9e3df6ee + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 9 + BribeMarket.depositBribe confirmed Block: 17643026 Gas used: 247310 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0x082AACfaf4db8AC0642CBED50df732D3C309E679 +*** Proposal hash: 0x685786003f99a6c99e307633c44c9274a2952ef4671feb9d2f7e906f07578f3a +*** Amount: 3719.868814 +*** Mantissa Amount: 3719868814 +Current USDC: 101379.973084 +Transaction sent: 0x498e50a64238d81c926cbd4a666ff346a43aa9d76a47b6cef27bae70f76807d1 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 10 + BribeMarket.depositBribe confirmed Block: 17643027 Gas used: 247286 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0x47D7269829Ba9571D98Eb6DDc34e9C8f1A4C327f +*** Proposal hash: 0x0f7fcd816b160d915b5ceb8739986b285b214affbe0bfeab13e6280f9df8f9c8 +*** Amount: 1402.996061 +*** Mantissa Amount: 1402996061 +Current USDC: 97660.10427 +Transaction sent: 0x4a92e4f508cc5d2c6fb843a76f2c037075d31c7d4736ee4f0ac0769b2f290ea2 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 11 + BribeMarket.depositBribe confirmed Block: 17643028 Gas used: 247298 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf +*** Proposal hash: 0x362484b2ad0dc28ccde1d23f5bc41590042f7f77e7749c781e88c3fe53a6f745 +*** Amount: 10538.4773 +*** Mantissa Amount: 10538477300 +Current USDC: 96257.108209 +Transaction sent: 0x20bcffe63b0be0d75d85b84f58caad984f11d25fa828e6f38bbaebd8b57b5c0e + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 12 + BribeMarket.depositBribe confirmed Block: 17643029 Gas used: 247310 (2.06%) + +******* Posting Balancer Bribe: +*** Gauge Address: 0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD +*** Proposal hash: 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe +*** Amount: 12001.0 +*** Mantissa Amount: 12001000000 +Current USDC: 85718.630909 +Transaction sent: 0x59407d5e991afcf7cafc2c11ae458dd4ca1a671a15c820374172fa4d3a381eb5 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 13 + BribeMarket.depositBribe confirmed Block: 17643030 Gas used: 247310 (2.06%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0xcD4722B7c24C29e0413BDCd9e51404B4539D14aE +*** Target Gauge name: MetaStable wstETH/WETH +*** Proposal hash: 0xf3fec055538f5295abee2981cf7db080513028b5a5ccc5040aa6bdb4e7b91e44 +*** Amount: 8934.5399 +*** Mantissa Amount: 8934539900 +Current USDC: 50262.496447 +Transaction sent: 0x5a1db2c2815f06ac92cb888111a41ad13f456e51fe3c2dae747ec9558a89fe8c + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 14 + BribeMarket.depositBribe confirmed Block: 17643031 Gas used: 167329 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0x79eF6103A513951a3b25743DB509E267685726B7 +*** Target Gauge name: MetaStable rETH/WETH +*** Proposal hash: 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf +*** Amount: 6777.5253 +*** Mantissa Amount: 6777525300 +Current USDC: 41327.956547 +Transaction sent: 0x05a5cf9e5a20a66331a8573edc54574b12b7cd087ccd27a1ad5e0936eb9465d4 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 15 + BribeMarket.depositBribe confirmed Block: 17643032 Gas used: 167329 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0x01A9502C11f411b494c62746D37e89d6f7078657 +*** Target Gauge name: MetaStable wstETH/cbETH +*** Proposal hash: 0x0691bba8591cf4d6b98e7b855ec125b8595988b58fecca53a2747a6a7f6cd869 +*** Amount: 3070.0878 +*** Mantissa Amount: 3070087800 +Current USDC: 34550.431247 +Transaction sent: 0x6d5264cb4eae5cf95a0b7c5a1f915b2ac08547bfe89fcb63ae8526ec33a10311 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 16 + BribeMarket.depositBribe confirmed Block: 17643033 Gas used: 167317 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0x183D73dA7adC5011EC3C46e33BB50271e59EC976 +*** Target Gauge name: 80/20 ALCX/WETH +*** Proposal hash: 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e +*** Amount: 5212.7743 +*** Mantissa Amount: 5212774300 +Current USDC: 31480.343447 +Transaction sent: 0xc3e1c0f6375247ca5fb3cf4bf63f42b12cad1b94e5ff511a574dc6c37fc53834 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 17 + BribeMarket.depositBribe confirmed Block: 17643034 Gas used: 167317 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0x10a361766e64D7983a97202ac3a0F4cee06Eb717 +*** Target Gauge name: MetaStable StaFi rETH/WETH +*** Proposal hash: 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d +*** Amount: 1688.6142 +*** Mantissa Amount: 1688614200 +Current USDC: 26267.569147 +Transaction sent: 0xefe345b266a93c298a56a0aaf6837ee8759a99f326353752d631c07d182a13db + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 18 + BribeMarket.depositBribe confirmed Block: 17643035 Gas used: 167317 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0x0052688295413b32626D226a205b95cDB337DE86 +*** Target Gauge name: ComposableStable bb-a-DAI/bb-a-USDT/bb-a-USDC +*** Proposal hash: 0xbae4b8953eee0d00607c9a142045ce7b9fe01f8b6a090e7d6e3bbffe6e2ab994 +*** Amount: 494.1053 +*** Mantissa Amount: 494105300 +Current USDC: 24578.954947 +Transaction sent: 0xe84f9f9d04a9160008d04075abb529970392b23a2535f074933e407ab1752a5a + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 19 + BribeMarket.depositBribe confirmed Block: 17643036 Gas used: 167305 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0x454eb2f12242397688DbfdA241487e67ed80507a +*** Target Gauge name: 50/50 STG/bb-a-USD +*** Proposal hash: 0x02cf6f237a0708724f9a7f21225b322c1a3bd40c5e65e825ef70f458ef79e67a +*** Amount: 5584.5543 +*** Mantissa Amount: 5584554300 +Current USDC: 24084.849647 +Transaction sent: 0x3573bad8d6d26de0552e05f140113d669ff66035d7c3b4dfeb037373c7153f3b + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 20 + BribeMarket.depositBribe confirmed Block: 17643037 Gas used: 167329 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0xDd3b4161D2a4c609884E20Ed71b4e85BE44572E6 +*** Target Gauge name: p-ComposableStable stMATIC/bb-a-WMATIC +*** Proposal hash: 0x33a43f055af4bfd3d3160983ffd5bcdef73584d1e8d79733344449bb8f9ac520 +*** Amount: 5093.354281 +*** Mantissa Amount: 5093354281 +Current USDC: 18500.295347 +Transaction sent: 0x8e11d112792825823b8dd91208a04142216d2650fc42b6c16b41bd9a086b7813 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 21 + BribeMarket.depositBribe confirmed Block: 17643038 Gas used: 167329 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0x082AACfaf4db8AC0642CBED50df732D3C309E679 +*** Target Gauge name: p-ComposableStable bb-a-WMATIC/MaticX +*** Proposal hash: 0x685786003f99a6c99e307633c44c9274a2952ef4671feb9d2f7e906f07578f3a +*** Amount: 1899.268367 +*** Mantissa Amount: 1899268367 +Current USDC: 13406.941066 +Transaction sent: 0xd6574c30f25d53d69dedbbccbebddd25857991f4b252e02aac9a42d214af5397 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 22 + BribeMarket.depositBribe confirmed Block: 17643039 Gas used: 167305 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0xDf464348c4EC2Bf0e5D6926b9f707c8e02301adf +*** Target Gauge name: a-MetaStable wstETH/WETH +*** Proposal hash: 0x362484b2ad0dc28ccde1d23f5bc41590042f7f77e7749c781e88c3fe53a6f745 +*** Amount: 5380.6727 +*** Mantissa Amount: 5380672700 +Current USDC: 11507.672699 +Transaction sent: 0x3b4d3b4d550b05e842af806d337f91198372abfb99b0e1e87a5cd1fbf1b80b17 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 23 + BribeMarket.depositBribe confirmed Block: 17643040 Gas used: 167329 (1.39%) + +******* Posting AURA Bribe: +*** Target Gauge Address: 0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD +*** Target Gauge name: a-80/20 RDNT/WETH +*** Proposal hash: 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe +*** Amount: 6127.0 +*** Mantissa Amount: 6127000000 +Current USDC: 6126.999999 +Transaction sent: 0xa38be826bb92330054121aa1a9f1dc4da4f06650d73aacc54c5a2ebba32f5944 + Gas price: 0.0 gwei Gas limit: 12000000 Nonce: 24 + BribeMarket.depositBribe confirmed (ERC20: transfer amount exceeds allowance) Block: 17643041 Gas used: 62081 (0.52%) + + File "brownie/_cli/run.py", line 50, in main diff --git a/FeeSwap/2023-02-03-eth.json b/FeeSwap/2023-02-03-eth.json deleted file mode 100644 index ce7fe331e..000000000 --- a/FeeSwap/2023-02-03-eth.json +++ /dev/null @@ -1,4467 +0,0 @@ -[ - { - "id": "0x000b87c8a4c6cbcef7a2577e8aa0dc134c67c3d8", - "chain": "eth", - "name": "Compound USD Coin Adapter", - "symbol": "cUSDC-adapter", - "display_symbol": null, - "optimized_symbol": "cUSDC-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647839442, - "amount": 92.53104793919937, - "raw_amount": 92531047939199370000, - "raw_amount_hex_str": "0x5042051d9a69e7981" - }, - { - "id": "0x038a68ff68c393373ec894015816e33ad41bd564", - "chain": "eth", - "name": "Glitch", - "symbol": "GLCH", - "display_symbol": null, - "optimized_symbol": "GLCH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x038a68ff68c393373ec894015816e33ad41bd564/f4ba4174614971f177c220d931b0bf68.png", - "protocol_id": "", - "price": 0.08988064080913975, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1608173369, - "amount": 76.08624061003349, - "raw_amount": 76086240610033480000, - "raw_amount_hex_str": "0x41fe8a0b66ff249d4" - }, - { - "id": "0x0391d2021f89dc339f60fff84546ea23e337750f", - "chain": "eth", - "name": "BarnBridge Governance Token", - "symbol": "BOND", - "display_symbol": null, - "optimized_symbol": "BOND", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0391d2021f89dc339f60fff84546ea23e337750f/160c85e7f4ed44ee16fd35d53008ea3c.png", - "protocol_id": "barnbridge", - "price": 4.622004756272697, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1599494104, - "amount": 1749.2295774711617, - "raw_amount": 1.7492295774711618e21, - "raw_amount_hex_str": "0x5ed36fd8e4ff3b36da" - }, - { - "id": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "chain": "eth", - "name": "Rai Reflex Index", - "symbol": "RAI", - "display_symbol": null, - "optimized_symbol": "RAI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x03ab458634910aad20ef5f1c8ee96f1d6ac54919/89f0c429b594592724ea3cbf3d08a8ea.png", - "protocol_id": "reflexer", - "price": 2.770483445159544, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1613221351, - "amount": 0.239279960732774, - "raw_amount": 239279960732773980, - "raw_amount_hex_str": "0x35217db4558ae6c" - }, - { - "id": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", - "chain": "eth", - "name": "UMA Voting Token v1", - "symbol": "UMA", - "display_symbol": null, - "optimized_symbol": "UMA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x04fa0d235c4abf4bcf4787af4cf447de572ef828/cabffedd327aaea32dd7bcf155f9cbd6.png", - "protocol_id": "uma", - "price": 2.132560679709888, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1578581061, - "amount": 1970.75442934834, - "raw_amount": 1.97075442934834e21, - "raw_amount_hex_str": "0x6ad5b637fce3784aad" - }, - { - "id": "0x06325440d014e39736583c165c2963ba99faf14e", - "chain": "eth", - "name": "Curve.fi ETH/stETH", - "symbol": "steCRV", - "display_symbol": null, - "optimized_symbol": "steCRV", - "decimals": 18, - "logo_url": null, - "protocol_id": "curve", - "price": 1753.544323494702, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1609806378, - "amount": 0.3811705528225494, - "raw_amount": 381170552822549400, - "raw_amount_hex_str": "0x54a309927d3cb92" - }, - { - "id": "0x06c55dad9a50adbc824ea50ef7acf54a290e5493", - "chain": "eth", - "name": "Compound USD Coin Adapter", - "symbol": "cUSDC-adapter", - "display_symbol": null, - "optimized_symbol": "cUSDC-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647501192, - "amount": 11.574551385596456, - "raw_amount": 11574551385596455000, - "raw_amount_hex_str": "0xa0a111291cfb67d9" - }, - { - "id": "0x06c985ff69f7257e212a89828f79497a3c8b6edf", - "chain": "eth", - "name": "Coin", - "symbol": "COIN", - "display_symbol": null, - "optimized_symbol": "COIN", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0.007873983657921808, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1653961493, - "amount": 95053, - "raw_amount": 95053, - "raw_amount_hex_str": "0x1734d" - }, - { - "id": "0x0740a6cfb9468b8b53070c0b327099293dccb82d", - "chain": "eth", - "name": "Element Principal Token yvCurveLUSD-29APR22", - "symbol": "ePyvCurveLUSD-29APR22", - "display_symbol": null, - "optimized_symbol": "ePyvCurveLUSD-29APR22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1.0192569157541262, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1639513942, - "amount": 768.3981828286567, - "raw_amount": 768398182828656700000, - "raw_amount_hex_str": "0x29a7aabc2275bd2ae1" - }, - { - "id": "0x09459654777bb2669ad8ad0b54e876d4b5ff77f4", - "chain": "eth", - "name": "Element Principal Token yvDAI-24FEB23", - "symbol": "ePyvDAI-24FEB23", - "display_symbol": null, - "optimized_symbol": "ePyvDAI-24FEB23", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 0.9997, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1661282295, - "amount": 18.282468482843157, - "raw_amount": 18282468482843159000, - "raw_amount_hex_str": "0xfdb8603871242633" - }, - { - "id": "0x097f9f108ee0db2cb266aa16ccfb4831ec4d770b", - "chain": "eth", - "name": "Element Principal Token yvCurve-3Crypto-16SEP22", - "symbol": "ePyvCurve-3Crypto-16SEP22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-3Crypto-16SEP22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1044.0545089312416, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1650481210, - "amount": 0.018352290212467388, - "raw_amount": 18352290212467388, - "raw_amount_hex_str": "0x41334f8aedd2bb" - }, - { - "id": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", - "chain": "eth", - "name": "yearn.finance", - "symbol": "YFI", - "display_symbol": null, - "optimized_symbol": "YFI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e/a8a3b38327037a6804e199afb97a1815.png", - "protocol_id": "yearn3", - "price": 7729.766655037934, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1594972885, - "amount": 1.3133905747596744, - "raw_amount": 1313390574759674400, - "raw_amount_hex_str": "0x123a19c4e3e58210" - }, - { - "id": "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", - "chain": "eth", - "name": "Decentralized USD", - "symbol": "USDD", - "display_symbol": null, - "optimized_symbol": "USDD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6/70890e6172f62f4430bfeaff32680884.png", - "protocol_id": "", - "price": 0.99465, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1651325080, - "amount": 41.741035429420634, - "raw_amount": 41741035429420640000, - "raw_amount_hex_str": "0x24345f291cf9c98de" - }, - { - "id": "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e", - "chain": "eth", - "name": "PoolTogether", - "symbol": "POOL", - "display_symbol": null, - "optimized_symbol": "POOL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0cec1a9154ff802e7934fc916ed7ca50bde6844e/2484f4a3952ba986b8a7016cb697dccc.png", - "protocol_id": "pooltogether", - "price": 1.074916756353612, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1613508749, - "amount": 0.021435254557757296, - "raw_amount": 21435254557757296, - "raw_amount_hex_str": "0x4c27401d95cf6f" - }, - { - "id": "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da", - "chain": "eth", - "name": "BlackPool Token", - "symbol": "BPT", - "display_symbol": null, - "optimized_symbol": "BPT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da/8b4ad02c904251c1e2858a65c5c49e74.png", - "protocol_id": "", - "price": 0.32414205187488193, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1622152335, - "amount": 0.16840921670672093, - "raw_amount": 168409216706720930, - "raw_amount_hex_str": "0x2564f4a52b4b4ac" - }, - { - "id": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942", - "chain": "eth", - "name": "Decentraland MANA", - "symbol": "MANA", - "display_symbol": null, - "optimized_symbol": "MANA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f5d2fb29fb7d3cfee444a200298f468908cc942/c83dcbf8bae0f6cd1e31c6e176ce5155.png", - "protocol_id": "decentraland", - "price": 0.7893364955210322, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1502824689, - "amount": 4480.662407882081, - "raw_amount": 4.480662407882082e21, - "raw_amount_hex_str": "0xf2e5aea066e1e4686a" - }, - { - "id": "0x0fd5663d4893ae0d579d580584806aadd2dd0b8b", - "chain": "eth", - "name": "Balancer 50rETH-50RPL", - "symbol": "50rETH-50RPL", - "display_symbol": null, - "optimized_symbol": "50rETH-50RPL", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 269.874587848019, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662739812, - "amount": 39.39382468834249, - "raw_amount": 39393824688342490000, - "raw_amount_hex_str": "0x222b2fad62caadcdf" - }, - { - "id": "0x10010078a54396f62c96df8532dc2b4847d47ed3", - "chain": "eth", - "name": "Hundred Finance", - "symbol": "HND", - "display_symbol": null, - "optimized_symbol": "HND", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x10010078a54396f62c96df8532dc2b4847d47ed3/cae168ae659748f245f0d57b76521952.png", - "protocol_id": "", - "price": 0.04502482495134515, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1631627706, - "amount": 2755.380409112071, - "raw_amount": 2.755380409112071e21, - "raw_amount_hex_str": "0x955e95ab74d37f0ce1" - }, - { - "id": "0x114f1388fab456c4ba31b1850b244eedcd024136", - "chain": "eth", - "name": "Cool Cats", - "symbol": "COOL", - "display_symbol": null, - "optimized_symbol": "COOL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x114f1388fab456c4ba31b1850b244eedcd024136/8915648a58d5afd9e481419f29a2b0f8.png", - "protocol_id": "nftx", - "price": 3071.963209830322, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1625256758, - "amount": 0.0988388687433541, - "raw_amount": 98838868743354100, - "raw_amount_hex_str": "0x15f256d6d72f6ed" - }, - { - "id": "0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa", - "chain": "eth", - "name": "Starwire", - "symbol": "STR", - "display_symbol": null, - "optimized_symbol": "STR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa/be315e8b8faeb413e73b8f1d2e4c28c2.png", - "protocol_id": "", - "price": 0.00559256539478552, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1602981353, - "amount": 47424.83682999189, - "raw_amount": 4.742483682999188e22, - "raw_amount_hex_str": "0xa0ae7d28552c0a2a4a6" - }, - { - "id": "0x13c99770694f07279607a6274f28a28c33086424", - "chain": "eth", - "name": "Material", - "symbol": "MTRL", - "display_symbol": null, - "optimized_symbol": "MTRL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x13c99770694f07279607a6274f28a28c33086424/7428f5af9cc4e9770678a2b36c501a73.png", - "protocol_id": "", - "price": 0.0014663824030529524, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1638790558, - "amount": 9828.526723452862, - "raw_amount": 9.828526723452862e21, - "raw_amount_hex_str": "0x214ce355536c9cc3468" - }, - { - "id": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b", - "chain": "eth", - "name": "DefiPulse Index", - "symbol": "DPI", - "display_symbol": null, - "optimized_symbol": "DPI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b/feb43f922f3e344d42afbb598d0b2e7c.png", - "protocol_id": "tokensets", - "price": 88.8388515029452, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1599694252, - "amount": 0.9190830163663766, - "raw_amount": 919083016366376600, - "raw_amount_hex_str": "0xcc13d22459cc652" - }, - { - "id": "0x173063a30e095313eee39411f07e95a8a806014e", - "chain": "eth", - "name": "Balancer 50TEMPLE-50bb-a-USD", - "symbol": "50TEMPLE-50bb-a-USD", - "display_symbol": null, - "optimized_symbol": "50TEMPLE-50bb-a-USD", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 0.9860169667964616, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1666877015, - "amount": 4583.886786370441, - "raw_amount": 4.5838867863704405e21, - "raw_amount_hex_str": "0xf87e3549bb19022c23" - }, - { - "id": "0x18aaa7115705e8be94bffebde57af9bfc265b998", - "chain": "eth", - "name": "Audius", - "symbol": "AUDIO", - "display_symbol": null, - "optimized_symbol": "AUDIO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x18aaa7115705e8be94bffebde57af9bfc265b998/8c4d2409af350ab696f37b9fde9d378d.png", - "protocol_id": "", - "price": 0.2834898281368267, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1603333709, - "amount": 5.5795443874753765, - "raw_amount": 5579544387475376000, - "raw_amount_hex_str": "0x4d6e860f07fe8833" - }, - { - "id": "0x194ebd173f6cdace046c53eacce9b953f28411d1", - "chain": "eth", - "name": "Curve.fi EURS/sEUR", - "symbol": "eursCRV", - "display_symbol": null, - "optimized_symbol": "eursCRV", - "decimals": 18, - "logo_url": null, - "protocol_id": "curve", - "price": 1.089754378982421, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1608157510, - "amount": 2.248196352882993, - "raw_amount": 2248196352882993000, - "raw_amount_hex_str": "0x1f3332abe6eb672e" - }, - { - "id": "0x1b808f49add4b8c6b5117d9681cf7312fcf0dc1d", - "chain": "eth", - "name": "Euler Pool: Wrapped Ether", - "symbol": "eWETH", - "display_symbol": null, - "optimized_symbol": "eWETH", - "decimals": 18, - "logo_url": null, - "protocol_id": "euler", - "price": 1692.0152027803795, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1638232700, - "amount": 0.000049766272902455, - "raw_amount": 49766272902455, - "raw_amount_hex_str": "0x2d431d04a537" - }, - { - "id": "0x1cf0f3aabe4d12106b27ab44df5473974279c524", - "chain": "eth", - "name": "xSNX", - "symbol": "xSNXa", - "display_symbol": null, - "optimized_symbol": "xSNXa", - "decimals": 18, - "logo_url": null, - "protocol_id": "xtoken", - "price": 0.3845990461073915, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1621899341, - "amount": 43.41040285143447, - "raw_amount": 43410402851434470000, - "raw_amount_hex_str": "0x25a70bb652c5b1bf0" - }, - { - "id": "0x1d1b44a4c5a047bdc9b3f06842566e5ea9c1966d", - "chain": "eth", - "name": "Balancer USDC-USDT Fixed Rate Pool", - "symbol": "B-USDC-USDT-FIXED-RATE", - "display_symbol": null, - "optimized_symbol": "B-USDC-USDT-FIXED-RATE", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667287751, - "amount": 8.639631653279508, - "raw_amount": 8639631653279507000, - "raw_amount_hex_str": "0x77e62336c3f22577" - }, - { - "id": "0x1e5193ccc53f25638aa22a940af899b692e10b09", - "chain": "eth", - "name": "Alluo Token", - "symbol": "ALLUO", - "display_symbol": null, - "optimized_symbol": "ALLUO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e5193ccc53f25638aa22a940af899b692e10b09/0181c06bfff0edd1585037e86b02c978.png", - "protocol_id": "", - "price": 0.050101642763383525, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1639219884, - "amount": 2743.9128871410508, - "raw_amount": 2.743912887141051e21, - "raw_amount_hex_str": "0x94bf70d8fb32d52e33" - }, - { - "id": "0x1e83916ea2ef2d7a6064775662e163b2d4c330a7", - "chain": "eth", - "name": "EthereumGasLimit", - "symbol": "EGL", - "display_symbol": null, - "optimized_symbol": "EGL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e83916ea2ef2d7a6064775662e163b2d4c330a7/61c37afbb6b52ba182266f62d47b8258.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1628861140, - "amount": 216579.38247266778, - "raw_amount": 2.165793824726678e23, - "raw_amount_hex_str": "0x2ddccab6a824d93715f6" - }, - { - "id": "0x1f068a896560632a4d2e05044bd7f03834f1a465", - "chain": "eth", - "name": "EthFork2.com", - "symbol": "EthFork2.com", - "display_symbol": null, - "optimized_symbol": "EthFork2.com", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1661588028, - "amount": 350, - "raw_amount": 350000000000000000000, - "raw_amount_hex_str": "0x12f939c99edab80000" - }, - { - "id": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", - "chain": "eth", - "name": "Uniswap", - "symbol": "UNI", - "display_symbol": null, - "optimized_symbol": "UNI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984/fcee0c46fc9864f48ce6a40ed1cdd135.png", - "protocol_id": "uniswap3", - "price": 7.108168030728025, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1600107086, - "amount": 411.92718264190677, - "raw_amount": 411927182641906800000, - "raw_amount_hex_str": "0x1654a356210a4eae33" - }, - { - "id": "0x21fb757c2d3a5c574e8721027c3d7a506d77b6b3", - "chain": "eth", - "name": "Element Principal Token yvCurve-stETH-16SEP22", - "symbol": "ePyvCurve-stETH-16SEP22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-stETH-16SEP22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1749.1723366771569, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1648481776, - "amount": 0.10358715027583056, - "raw_amount": 103587150275830560, - "raw_amount_hex_str": "0x17003f6df7c6318" - }, - { - "id": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "chain": "eth", - "name": "Wrapped BTC", - "symbol": "WBTC", - "display_symbol": null, - "optimized_symbol": "WBTC", - "decimals": 8, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599/d3c52e7c7449afa8bd4fad1c93f50d93.png", - "protocol_id": "", - "price": 23536.68, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1543095952, - "amount": 0.08600239, - "raw_amount": 8600239, - "raw_amount_hex_str": "0x833aaf" - }, - { - "id": "0x226f7b842e0f0120b7e194d05432b3fd14773a9d", - "chain": "eth", - "name": "UNION Protocol Governance Token", - "symbol": "UNN", - "display_symbol": null, - "optimized_symbol": "UNN", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x226f7b842e0f0120b7e194d05432b3fd14773a9d/353c0f098023ed2b6984fad42e786f36.png", - "protocol_id": "unn", - "price": 0.0003550785271816724, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1606475731, - "amount": 322242.86286043323, - "raw_amount": 3.2224286286043324e23, - "raw_amount_hex_str": "0x443cd212c7b4510e11b4" - }, - { - "id": "0x2361102893ccabfb543bc55ac4cc8d6d0824a67e", - "chain": "eth", - "name": "Element Principal Token yvcrvSTETH-15APR22", - "symbol": "ePyvcrvSTETH-15APR22", - "display_symbol": null, - "optimized_symbol": "ePyvcrvSTETH-15APR22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1749.1723366771566, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1634646386, - "amount": 0.11170361717852023, - "raw_amount": 111703617178520240, - "raw_amount_hex_str": "0x18cd9d9160d4aad" - }, - { - "id": "0x24a82db9e1d0e96d9cafa84a58825fbe9701ced2", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0 Adapter", - "symbol": "wstETH-adapter", - "display_symbol": null, - "optimized_symbol": "wstETH-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647499039, - "amount": 0.00000572017923657, - "raw_amount": 5720179236570, - "raw_amount_hex_str": "0x533d5405eda" - }, - { - "id": "0x24e79e946dea5482212c38aab2d0782f04cdb0e0", - "chain": "eth", - "name": "Paladin stkAAVE", - "symbol": "palStkAAVE", - "display_symbol": null, - "optimized_symbol": "palStkAAVE", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x24e79e946dea5482212c38aab2d0782f04cdb0e0/add608fe8a15b03368f48fb40a42d8cf.png", - "protocol_id": "paladin", - "price": 99.30665193641299, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1632993706, - "amount": 8.908628448077591, - "raw_amount": 8908628448077592000, - "raw_amount_hex_str": "0x7ba1ce5fa39ab3e6" - }, - { - "id": "0x25f8087ead173b73d6e8b84329989a8eea16cf73", - "chain": "eth", - "name": "Yield Guild Games Token", - "symbol": "YGG", - "display_symbol": null, - "optimized_symbol": "YGG", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x25f8087ead173b73d6e8b84329989a8eea16cf73/3ae20ef6e886e0eccb62c6332f965510.png", - "protocol_id": "", - "price": 0.3117018116436772, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1627299017, - "amount": 36.50446330372646, - "raw_amount": 36504463303726460000, - "raw_amount_hex_str": "0x1fa99e7f73ee5f1d7" - }, - { - "id": "0x27054b13b1b798b345b591a4d22e6562d47ea75a", - "chain": "eth", - "name": "AirSwap Token", - "symbol": "AST", - "display_symbol": null, - "optimized_symbol": "AST", - "decimals": 4, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27054b13b1b798b345b591a4d22e6562d47ea75a/8193d103d453bab7acd302740b9cd0a1.png", - "protocol_id": "airswap", - "price": 0.10909024762004026, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1507599220, - "amount": 16025.9886, - "raw_amount": 160259886, - "raw_amount_hex_str": "0x98d5f2e" - }, - { - "id": "0x27c70cd1946795b66be9d954418546998b546634", - "chain": "eth", - "name": "DOGE KILLER", - "symbol": "LEASH", - "display_symbol": null, - "optimized_symbol": "LEASH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27c70cd1946795b66be9d954418546998b546634/e2b22820fe3164795e5803e3ef64a9d0.png", - "protocol_id": "", - "price": 401.9512126932763, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1598998068, - "amount": 0.004320528144273535, - "raw_amount": 4320528144273535, - "raw_amount_hex_str": "0xf597f5948107f" - }, - { - "id": "0x285328906d0d33cb757c1e471f5e2176683247c2", - "chain": "eth", - "name": "Element Principal Token yvcrv3crypto-29APR22", - "symbol": "ePyvcrv3crypto-29APR22", - "display_symbol": null, - "optimized_symbol": "ePyvcrv3crypto-29APR22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1044.0545089312418, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1636034117, - "amount": 0.16870319386359234, - "raw_amount": 168703193863592350, - "raw_amount_hex_str": "0x2575aa936b6999b" - }, - { - "id": "0x2930e74d4634ae54519ae0ccd69ce728531c252e", - "chain": "eth", - "name": "Your Dreams Token", - "symbol": "YOO", - "display_symbol": null, - "optimized_symbol": "YOO", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1650555914, - "amount": 12416367592.041399, - "raw_amount": 1.24163675920414e28, - "raw_amount_hex_str": "0x281e941be22cb79343f845b7" - }, - { - "id": "0x2a8f5649de50462ff9699ccc75a2fb0b53447503", - "chain": "eth", - "name": "Element Principal Token yvCurve-EURS-11FEB22", - "symbol": "ePyvCurve-EURS-11FEB22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-EURS-11FEB22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1.0902386018147798, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1634236922, - "amount": 1.9061332050874682, - "raw_amount": 1906133205087468000, - "raw_amount_hex_str": "0x1a73f20d07d0ba65" - }, - { - "id": "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884", - "chain": "eth", - "name": "Aladdin cvxCRV", - "symbol": "aCRV", - "display_symbol": null, - "optimized_symbol": "aCRV", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884/6cf5b1bce4ec79f2cdf773b127c96e85.png", - "protocol_id": "concentrator", - "price": 1.3730156077587559, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1646643085, - "amount": 1259.9461008136443, - "raw_amount": 1.2599461008136444e21, - "raw_amount_hex_str": "0x444d43bf359fc65d1b" - }, - { - "id": "0x2ba592f78db6436527729929aaf6c908497cb200", - "chain": "eth", - "name": "Cream", - "symbol": "CREAM", - "display_symbol": null, - "optimized_symbol": "CREAM", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2ba592f78db6436527729929aaf6c908497cb200/a5587c34049aadbc312d1847428235d9.png", - "protocol_id": "cream2", - "price": 13.141971724096663, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1596553617, - "amount": 35.04279261690979, - "raw_amount": 35042792616909790000, - "raw_amount_hex_str": "0x1e65102386c96e05f" - }, - { - "id": "0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0", - "chain": "eth", - "name": "TUSD bb-a-usd Stable Pool", - "symbol": "TUSD-bbausd", - "display_symbol": null, - "optimized_symbol": "TUSD-bbausd", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 1.0012056322101852, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1666633715, - "amount": 0.001585337226757161, - "raw_amount": 1585337226757161, - "raw_amount_hex_str": "0x5a1db16400429" - }, - { - "id": "0x2c72692e94e757679289ac85d3556b2c0f717e0e", - "chain": "eth", - "name": "Element Principal Token yvDAI-29APR22", - "symbol": "ePyvDAI-29APR22", - "display_symbol": null, - "optimized_symbol": "ePyvDAI-29APR22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 0.9997, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1641339630, - "amount": 60.97677550935169, - "raw_amount": 60976775509351694000, - "raw_amount_hex_str": "0x34e390641c7a578ab" - }, - { - "id": "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198", - "chain": "eth", - "name": "Bankless Token", - "symbol": "BANK", - "display_symbol": null, - "optimized_symbol": "BANK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198/83da02d114aa95ca785cbd6a51635280.png", - "protocol_id": "", - "price": 0.008320148917623537, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1620099970, - "amount": 230845.8888410688, - "raw_amount": 2.308458888410688e23, - "raw_amount_hex_str": "0x30e22e42fb03b0d473cc" - }, - { - "id": "0x30d20208d987713f46dfd34ef128bb16c404d10f", - "chain": "eth", - "name": "Stader", - "symbol": "SD", - "display_symbol": null, - "optimized_symbol": "SD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x30d20208d987713f46dfd34ef128bb16c404d10f/4fa0cf4070995d65eb86d01a2b68a893.png", - "protocol_id": "", - "price": 1.188427593164302, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1642382824, - "amount": 14.820261164065066, - "raw_amount": 14820261164065067000, - "raw_amount_hex_str": "0xcdac2501f29d8da1" - }, - { - "id": "0x3301ee63fb29f863f2333bd4466acb46cd8323e6", - "chain": "eth", - "name": "Akita Inu", - "symbol": "AKITA", - "display_symbol": null, - "optimized_symbol": "AKITA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3301ee63fb29f863f2333bd4466acb46cd8323e6/6173e15b13a34a6e42bda133ac37a6ed.png", - "protocol_id": "", - "price": 2.0434665519064294e-7, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1612076328, - "amount": 21979455.20877644, - "raw_amount": 2.197945520877644e25, - "raw_amount_hex_str": "0x122e54a784cd8fbbab59c0" - }, - { - "id": "0x333a4823466879eef910a04d473505da62142069", - "chain": "eth", - "name": "Nation3", - "symbol": "NATION", - "display_symbol": null, - "optimized_symbol": "NATION", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x333a4823466879eef910a04d473505da62142069/2415be916c6835d9c24d3f47506a5e18.png", - "protocol_id": "nation3", - "price": 884.6210625906707, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1649799318, - "amount": 9.350736782199144, - "raw_amount": 9350736782199144000, - "raw_amount_hex_str": "0x81c47d8fa328be8a" - }, - { - "id": "0x3472a5a71965499acd81997a54bba8d852c6e53d", - "chain": "eth", - "name": "Badger", - "symbol": "BADGER", - "display_symbol": null, - "optimized_symbol": "BADGER", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3472a5a71965499acd81997a54bba8d852c6e53d/0e7643dba053739569d5b9f82225f4e5.png", - "protocol_id": "badger", - "price": 3.120409136909802, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1606584722, - "amount": 3168.6827739622745, - "raw_amount": 3.1686827739622744e21, - "raw_amount_hex_str": "0xabc64ea28490c3fb9a" - }, - { - "id": "0x34d179259336812a1c7d320a0972e949da5fa26d", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0 Adapter", - "symbol": "wstETH-adapter", - "display_symbol": null, - "optimized_symbol": "wstETH-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1648172795, - "amount": 0.025958318074766215, - "raw_amount": 25958318074766216, - "raw_amount_hex_str": "0x5c38f3e7d02387" - }, - { - "id": "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232", - "chain": "eth", - "name": "SideShift Token", - "symbol": "XAI", - "display_symbol": null, - "optimized_symbol": "XAI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x35e78b3982e87ecfd5b3f3265b601c046cdbe232/21a070376acfb15790c0d09b5d21b9ab.png", - "protocol_id": "sideshift", - "price": 0.1422213887792566, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1600064905, - "amount": 27418.075293090198, - "raw_amount": 2.74180752930902e22, - "raw_amount_hex_str": "0x5ce563b23e07365875a" - }, - { - "id": "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe", - "chain": "eth", - "name": "DSLA", - "symbol": "DSLA", - "display_symbol": null, - "optimized_symbol": "DSLA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe/920656e6a4fe6c869d9ad35551e08af8.png", - "protocol_id": "", - "price": 0.0005723717527854096, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1550581410, - "amount": 1767153.0614928761, - "raw_amount": 1.7671530614928762e24, - "raw_amount_hex_str": "0x176358f3619949a076d46" - }, - { - "id": "0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432", - "chain": "eth", - "name": "Candle", - "symbol": "CNDL", - "display_symbol": null, - "optimized_symbol": "CNDL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432/e9d1773a4453ca6646909bd2a3c56517.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1651750698, - "amount": 2258.9097301624, - "raw_amount": 2.2589097301624e21, - "raw_amount_hex_str": "0x7a74ab7f5db357e24c" - }, - { - "id": "0x3e1f8fc2fbab8695b5749afb1f390d30bb33c880", - "chain": "eth", - "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A7", - "symbol": "SPACE-sP-wstETH:01-06-2027:7", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:7", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1652969783, - "amount": 0.073424296266805, - "raw_amount": 73424296266805000, - "raw_amount_hex_str": "0x104db0228ddaf02" - }, - { - "id": "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7", - "chain": "eth", - "name": "Gro DAO Token", - "symbol": "GRO", - "display_symbol": null, - "optimized_symbol": "GRO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7/85aaee7416a5ecebc565f9bd79c9c360.png", - "protocol_id": "gro", - "price": 0.04599708560480299, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1632174690, - "amount": 1570.5119131179888, - "raw_amount": 1.5705119131179887e21, - "raw_amount_hex_str": "0x55233b280d54ddbbd8" - }, - { - "id": "0x3f9fee026fcebb40719a69416c72b714d89a17d9", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0 Adapter", - "symbol": "wstETH-adapter", - "display_symbol": null, - "optimized_symbol": "wstETH-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1648167646, - "amount": 0.000006016443385795, - "raw_amount": 6016443385795, - "raw_amount_hex_str": "0x578cff887c3" - }, - { - "id": "0x408e41876cccdc0f92210600ef50372656052a38", - "chain": "eth", - "name": "Republic Token", - "symbol": "REN", - "display_symbol": null, - "optimized_symbol": "REN", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x408e41876cccdc0f92210600ef50372656052a38/d0ef6c3fa48075b6f129bfe11f6b3364.png", - "protocol_id": "ren", - "price": 0.100133, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1514688568, - "amount": 23771.76975115774, - "raw_amount": 2.377176975115774e22, - "raw_amount_hex_str": "0x508ab939071a4f1656c" - }, - { - "id": "0x418de6227499181b045cadf554030722e460881a", - "chain": "eth", - "name": "Element Principal Token yvCurve-MIM-11FEB22", - "symbol": "ePyvCurve-MIM-11FEB22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-MIM-11FEB22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1.0093000641882357, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1634061105, - "amount": 162.22004811443406, - "raw_amount": 162220048114434080000, - "raw_amount_hex_str": "0x8cb4162480b9e46bf" - }, - { - "id": "0x41c37a4683d6a05adb31c39d71348a8403b13ca9", - "chain": "eth", - "name": "Chain", - "symbol": "CHN", - "display_symbol": null, - "optimized_symbol": "CHN", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41c37a4683d6a05adb31c39d71348a8403b13ca9/dfee7bb5fbe50c6450ff8cfa4b17546d.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1605706401, - "amount": 1.0374047068213375, - "raw_amount": 1037404706821337300, - "raw_amount_hex_str": "0xe659a159e677103" - }, - { - "id": "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68", - "chain": "eth", - "name": "Inverse DAO", - "symbol": "INV", - "display_symbol": null, - "optimized_symbol": "INV", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68/b95fe3266be734e29d0385cadc44681c.png", - "protocol_id": "inverse", - "price": 70.79112531332777, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1608575013, - "amount": 120.26745314964889, - "raw_amount": 120267453149648880000, - "raw_amount_hex_str": "0x6850bd36f71c18316" - }, - { - "id": "0x41e5560054824ea6b0732e656e3ad64e20e94e45", - "chain": "eth", - "name": "Civic", - "symbol": "CVC", - "display_symbol": null, - "optimized_symbol": "CVC", - "decimals": 8, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41e5560054824ea6b0732e656e3ad64e20e94e45/f44e161ad5413bd61785905f6a724b61.png", - "protocol_id": "", - "price": 0.11102069394716735, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1499817451, - "amount": 29717.65246442, - "raw_amount": 2971765246442, - "raw_amount_hex_str": "0x2b3eb0309ea" - }, - { - "id": "0x43b4fdfd4ff969587185cdb6f0bd875c5fc83f8c", - "chain": "eth", - "name": "Curve.fi Factory USD Metapool: Alchemix USD", - "symbol": "alUSD3CRV-f", - "display_symbol": null, - "optimized_symbol": "alUSD3CRV-f", - "decimals": 18, - "logo_url": null, - "protocol_id": "curve", - "price": 1.0218117329460998, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1614641897, - "amount": 84.79787428041467, - "raw_amount": 84797874280414670000, - "raw_amount_hex_str": "0x498ce91613059972a" - }, - { - "id": "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad", - "chain": "eth", - "name": "Prime", - "symbol": "D2D", - "display_symbol": null, - "optimized_symbol": "D2D", - "decimals": 18, - "logo_url": "https://static.debank.com/image/token/logo_url/0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad/8a54f7a353e7d3d9a5124320838ae0ce.png", - "protocol_id": "", - "price": 0.03487345603125991, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1638439594, - "amount": 75159.00084862759, - "raw_amount": 7.515900084862759e22, - "raw_amount_hex_str": "0xfea60aa665fb1ebc439" - }, - { - "id": "0x449d7c2e096e9f867339078535b15440d42f78e8", - "chain": "eth", - "name": "Element Principal Token yvDAI-28JAN22", - "symbol": "ePyvDAI-28JAN22", - "display_symbol": null, - "optimized_symbol": "ePyvDAI-28JAN22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 0.9997, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1632229871, - "amount": 1.6345684269036274, - "raw_amount": 1634568426903627300, - "raw_amount_hex_str": "0x16af2752eea8e60d" - }, - { - "id": "0x45804880de22913dafe09f4980848ece6ecbaf78", - "chain": "eth", - "name": "Paxos Gold", - "symbol": "PAXG", - "display_symbol": null, - "optimized_symbol": "PAXG", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x45804880de22913dafe09f4980848ece6ecbaf78/c67db744859c16615fa81fcb3a71b3ae.png", - "protocol_id": "", - "price": 1907.7017557700403, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1566830180, - "amount": 0.000195449382386424, - "raw_amount": 195449382386424, - "raw_amount_hex_str": "0xb1c29b023af8" - }, - { - "id": "0x467bccd9d29f223bce8043b84e8c8b282827790f", - "chain": "eth", - "name": "Telcoin", - "symbol": "TEL", - "display_symbol": null, - "optimized_symbol": "TEL", - "decimals": 2, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x467bccd9d29f223bce8043b84e8c8b282827790f/161a26f47e94d3a29876733cccefa868.png", - "protocol_id": "", - "price": 0.0022947516871682015, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1580196479, - "amount": 9812.17, - "raw_amount": 981217, - "raw_amount_hex_str": "0xef8e1" - }, - { - "id": "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7", - "chain": "eth", - "name": "Temple", - "symbol": "TEMPLE", - "display_symbol": null, - "optimized_symbol": "TEMPLE", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7/5e88fad758a4fd99011c1bb7221c5c1a.png", - "protocol_id": "temple", - "price": 0.9649045228858555, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1632930767, - "amount": 4008.4210026063365, - "raw_amount": 4.0084210026063363e21, - "raw_amount_hex_str": "0xd94c04205885d2e03b" - }, - { - "id": "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0", - "chain": "eth", - "name": "The 4th Pillar Token", - "symbol": "FOUR", - "display_symbol": null, - "optimized_symbol": "FOUR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0/ff4b54e2c0cc9f9d2f32083d31e7f8d7.png", - "protocol_id": "", - "price": 0.0014409802395496472, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1524482071, - "amount": 15357.181701667683, - "raw_amount": 1.5357181701667682e22, - "raw_amount_hex_str": "0x34083b57fd4b72b70ff" - }, - { - "id": "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff", - "chain": "eth", - "name": "Serum", - "symbol": "SRM", - "display_symbol": null, - "optimized_symbol": "SRM", - "decimals": 6, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x476c5e26a75bd202a9683ffd34359c0cc15be0ff/6458883add3412a15a0ace2fb0e6c780.png", - "protocol_id": "", - "price": 0.5179081399947834, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1596238023, - "amount": 6267.260831, - "raw_amount": 6267260831, - "raw_amount_hex_str": "0x1758ecf9f" - }, - { - "id": "0x478bbc744811ee8310b461514bdc29d03739084d", - "chain": "eth", - "name": "veCRV Stake DAO", - "symbol": "sdveCRV-DAO", - "display_symbol": null, - "optimized_symbol": "sdveCRV-DAO", - "decimals": 18, - "logo_url": null, - "protocol_id": "stakedao", - "price": 1.105, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1614598819, - "amount": 157.94985960428522, - "raw_amount": 157949859604285230000, - "raw_amount_hex_str": "0x88ffea074b43dda49" - }, - { - "id": "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054", - "chain": "eth", - "name": "South African Tether", - "symbol": "XZAR", - "display_symbol": null, - "optimized_symbol": "XZAR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x48f07301e9e29c3c38a80ae8d9ae771f224f1054/9f75b8fcd7755ec78c71fb3449c8e1cb.png", - "protocol_id": "", - "price": 0.05702793156863021, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1527678390, - "amount": 33441.670484221104, - "raw_amount": 3.3441670484221107e22, - "raw_amount_hex_str": "0x714e0682bd5d0746122" - }, - { - "id": "0x496ff26b76b8d23bbc6cf1df1eee4a48795490f7", - "chain": "eth", - "name": "Balancer 50COMP-50wstETH", - "symbol": "50COMP-50WSTETH", - "display_symbol": null, - "optimized_symbol": "50COMP-50WSTETH", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 313.06802557991676, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1663944443, - "amount": 10.866337872271028, - "raw_amount": 10866337872271028000, - "raw_amount_hex_str": "0x96ccfcb8f616adca" - }, - { - "id": "0x49e9e169f0b661ea0a883f490564f4cc275123ed", - "chain": "eth", - "name": "Element Principal Token yvWBTC-29APR22", - "symbol": "ePyvWBTC-29APR22", - "display_symbol": null, - "optimized_symbol": "ePyvWBTC-29APR22", - "decimals": 8, - "logo_url": null, - "protocol_id": "element", - "price": 23502.530000000002, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1639082867, - "amount": 0.00257344, - "raw_amount": 257344, - "raw_amount_hex_str": "0x3ed40" - }, - { - "id": "0x4a220e6096b25eadb88358cb44068a3248254675", - "chain": "eth", - "name": "Quant", - "symbol": "QNT", - "display_symbol": null, - "optimized_symbol": "QNT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4a220e6096b25eadb88358cb44068a3248254675/0fa0af99171fcb3a9a4b3e3189f6791b.png", - "protocol_id": "", - "price": 145.84116242912066, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1523044361, - "amount": 0.9111315334198574, - "raw_amount": 911131533419857400, - "raw_amount_hex_str": "0xca4fd4d6125c5d5" - }, - { - "id": "0x4b13006980acb09645131b91d259eaa111eaf5ba", - "chain": "eth", - "name": "Mycelium", - "symbol": "MYC", - "display_symbol": null, - "optimized_symbol": "MYC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4b13006980acb09645131b91d259eaa111eaf5ba/c34229f594e7de5f89c43b886a86c2c5.png", - "protocol_id": "", - "price": 0.014708690841613197, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1660182677, - "amount": 9340.018375535334, - "raw_amount": 9.340018375535334e21, - "raw_amount_hex_str": "0x1fa52cb0b02dc94f68d" - }, - { - "id": "0x4cc46a45b49a5073a6c1e0636cbad48efa35cdd3", - "chain": "eth", - "name": "24K GAMES", - "symbol": "24K", - "display_symbol": null, - "optimized_symbol": "24K", - "decimals": 8, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1646971567, - "amount": 31.64091782, - "raw_amount": 3164091782, - "raw_amount_hex_str": "0xbc983586" - }, - { - "id": "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227", - "chain": "eth", - "name": "Quasacoin", - "symbol": "QUA", - "display_symbol": null, - "optimized_symbol": "QUA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227/a67c193307d12eb4011a5a4c662ef0df.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1512380881, - "amount": 1247.3744351518874, - "raw_amount": 1.2473744351518875e21, - "raw_amount_hex_str": "0x439ecc37e5cbc74fe1" - }, - { - "id": "0x4edcb2b46377530bc18bb4d2c7fe46a992c73e10", - "chain": "eth", - "name": "cbETH-wstETH StablePool", - "symbol": "cbETH-wstETH-BPT", - "display_symbol": null, - "optimized_symbol": "cbETH-wstETH-BPT", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 1634.4842818373768, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669221107, - "amount": 6.181038221630698, - "raw_amount": 6181038221630697000, - "raw_amount_hex_str": "0x55c775839768effa" - }, - { - "id": "0x4ee4ddfb958416ca2afca3a894c3c3ed9a3cdda1", - "chain": "eth", - "name": "Sense Space 1st Aug 2022 wstETH Sense Principal Token, A7", - "symbol": "SPACE-sP-wstETH:01-08-2022:7", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-wstETH:01-08-2022:7", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 1561.4318969418512, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1656634308, - "amount": 0.000266315308888279, - "raw_amount": 266315308888279, - "raw_amount_hex_str": "0xf2365d6270d7" - }, - { - "id": "0x4fabb145d64652a948d72533023f6e7a623c7c53", - "chain": "eth", - "name": "Binance USD", - "symbol": "BUSD", - "display_symbol": null, - "optimized_symbol": "BUSD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4fabb145d64652a948d72533023f6e7a623c7c53/588ad5043e23b6c46aeda945852c3273.png", - "protocol_id": "", - "price": 0.9999, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1567727777, - "amount": 4.866814267563016, - "raw_amount": 4866814267563016000, - "raw_amount_hex_str": "0x438a65ca75e57e1f" - }, - { - "id": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", - "chain": "eth", - "name": "solace", - "symbol": "SOLACE", - "display_symbol": null, - "optimized_symbol": "SOLACE", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40/06d669f7d8a66cc1d92a277e9fa541a6.png", - "protocol_id": "solace", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1637651732, - "amount": 6142.490743441953, - "raw_amount": 6.142490743441952e21, - "raw_amount_hex_str": "0x14cfc2ee2d986a55e93" - }, - { - "id": "0x514910771af9ca656af840dff83e8264ecf986ca", - "chain": "eth", - "name": "ChainLink Token", - "symbol": "LINK", - "display_symbol": null, - "optimized_symbol": "LINK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x514910771af9ca656af840dff83e8264ecf986ca/69425617db0ef93a7c21c4f9b81c7ca5.png", - "protocol_id": "chainlink", - "price": 7.225910836871418, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1505597189, - "amount": 199.12846907055336, - "raw_amount": 199128469070553380000, - "raw_amount_hex_str": "0xacb766f9781b16211" - }, - { - "id": "0x51fa2efd62ee56a493f24ae963eace7d0051929e", - "chain": "eth", - "name": "POSEIDON OCEAN", - "symbol": "psdnOCEAN", - "display_symbol": null, - "optimized_symbol": "psdnOCEAN", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x51fa2efd62ee56a493f24ae963eace7d0051929e/ba7ad5b1cdffba533c15373060ec9d93.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1666000007, - "amount": 365.6666218855391, - "raw_amount": 365666621885539100000, - "raw_amount_hex_str": "0x13d2a4cf3858a2a13d" - }, - { - "id": "0x525fc44cbe181c1108c209091b5eec5a5028190d", - "chain": "eth", - "name": "$ Evmosia.com", - "symbol": "$ Evmosia.com", - "display_symbol": null, - "optimized_symbol": "$ Evmosia.com", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1671409715, - "amount": 40000, - "raw_amount": 40000, - "raw_amount_hex_str": "0x9c40" - }, - { - "id": "0x52c9886d5d87b0f06ebacbeff750b5ffad5d17d9", - "chain": "eth", - "name": "Element Principal Token yvUSDC-29APR22", - "symbol": "ePyvUSDC-29APR22", - "display_symbol": null, - "optimized_symbol": "ePyvUSDC-29APR22", - "decimals": 6, - "logo_url": null, - "protocol_id": "element", - "price": 1.0000000000000002, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1637083548, - "amount": 2162.160966, - "raw_amount": 2162160966, - "raw_amount_hex_str": "0x80dff546" - }, - { - "id": "0x55096a35bf827919b3bb0a5e6b5e2af8095f3d4d", - "chain": "eth", - "name": "Element Principal Token yvCurve-alUSD-28JAN22", - "symbol": "ePyvCurve-alUSD-28JAN22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-alUSD-28JAN22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1.0201565484026218, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1632836406, - "amount": 4.1474331168929295, - "raw_amount": 4147433116892929000, - "raw_amount_hex_str": "0x398ea4721e181c81" - }, - { - "id": "0x586aa273f262909eef8fa02d90ab65f5015e0516", - "chain": "eth", - "name": "Fixed Income Asset Token", - "symbol": "FIAT", - "display_symbol": null, - "optimized_symbol": "FIAT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x586aa273f262909eef8fa02d90ab65f5015e0516/43d28043429b71370c3685bc469e6d2d.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1649548526, - "amount": 513.1279109913753, - "raw_amount": 513127910991375300000, - "raw_amount_hex_str": "0x1bd1148c60e32f5f06" - }, - { - "id": "0x58b6a8a3302369daec383334672404ee733ab239", - "chain": "eth", - "name": "Livepeer Token", - "symbol": "LPT", - "display_symbol": null, - "optimized_symbol": "LPT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x58b6a8a3302369daec383334672404ee733ab239/3bf454e30e5f4b18011ea5e31d2e0e59.png", - "protocol_id": "", - "price": 8.130988650296823, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1525118631, - "amount": 9.555853627801113, - "raw_amount": 9555853627801113000, - "raw_amount_hex_str": "0x849d363ed2b69308" - }, - { - "id": "0x59d1e836f7b7210a978b25a855085cc46fd090b5", - "chain": "eth", - "name": "AssangeDAO", - "symbol": "JUSTICE", - "display_symbol": null, - "optimized_symbol": "JUSTICE", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x59d1e836f7b7210a978b25a855085cc46fd090b5/18a7cd6e19eb1a3cdbad5407156d2800.png", - "protocol_id": "", - "price": 0.000068555948414617, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1644405370, - "amount": 146820.75531783528, - "raw_amount": 1.4682075531783528e23, - "raw_amount_hex_str": "0x1f172b49bfdee428ba12" - }, - { - "id": "0x5a6a4d54456819380173272a5e8e9b9904bdf41b", - "chain": "eth", - "name": "Curve.fi Factory USD Metapool: Magic Internet Money 3Pool", - "symbol": "MIM-3LP3CRV-f", - "display_symbol": null, - "optimized_symbol": "MIM-3LP3CRV-f", - "decimals": 18, - "logo_url": null, - "protocol_id": "curve", - "price": 1.009264956749823, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1622664003, - "amount": 1180.8151976726856, - "raw_amount": 1.1808151976726857e21, - "raw_amount_hex_str": "0x40031a4e0e67179fbd" - }, - { - "id": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", - "chain": "eth", - "name": "Lido DAO Token", - "symbol": "LDO", - "display_symbol": null, - "optimized_symbol": "LDO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5a98fcbea516cf06857215779fd812ca3bef1b32/3a1a90da5ccd4849de3e83755f1fd8b5.png", - "protocol_id": "lido", - "price": 2.228622153643449, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1608242396, - "amount": 383.67824865828914, - "raw_amount": 383678248658289100000, - "raw_amount_hex_str": "0x14cc9af6571951459f" - }, - { - "id": "0x5ad5f864b346445a16fc95c59174269ed288e640", - "chain": "eth", - "name": "Sense Space 1st Apr 2023 wstETH Sense Principal Token, A8", - "symbol": "SPACE-sP-wstETH:01-04-2023:8", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-wstETH:01-04-2023:8", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1659544214, - "amount": 0.006361283127475698, - "raw_amount": 6361283127475698, - "raw_amount_hex_str": "0x16998da520fdf2" - }, - { - "id": "0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64", - "chain": "eth", - "name": "Balancer DOLA bb-a-usd Stable", - "symbol": "DOLA BSP", - "display_symbol": null, - "optimized_symbol": "DOLA BSP", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 1.0039717191266408, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1664261567, - "amount": 3844.606784883615, - "raw_amount": 3.8446067848836153e21, - "raw_amount_hex_str": "0xd06aa31d407c875f7f" - }, - { - "id": "0x5bfe65bca476bda0d0d393372394ae352ec0627b", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0 Adapter", - "symbol": "wstETH-adapter", - "display_symbol": null, - "optimized_symbol": "wstETH-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1651433369, - "amount": 0.000001034241951247, - "raw_amount": 1034241951247, - "raw_amount_hex_str": "0xf0cd9fc60f" - }, - { - "id": "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56", - "chain": "eth", - "name": "Balancer 80 BAL 20 WETH", - "symbol": "B-80BAL-20WETH", - "display_symbol": null, - "optimized_symbol": "B-80BAL-20WETH", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 17.739402963285325, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1620153071, - "amount": 0.694139928503487, - "raw_amount": 694139928503487100, - "raw_amount_hex_str": "0x9a2149656dd8a67" - }, - { - "id": "0x5e8422345238f34275888049021821e8e08caa1f", - "chain": "eth", - "name": "Frax Ether", - "symbol": "frxETH", - "display_symbol": null, - "optimized_symbol": "frxETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5e8422345238f34275888049021821e8e08caa1f/13d03220f9528e9ec247bf363ab64731.png", - "protocol_id": "frax", - "price": 1649.3239526915263, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1665022895, - "amount": 3.214543369e-9, - "raw_amount": 3214543369, - "raw_amount_hex_str": "0xbf9a0a09" - }, - { - "id": "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e", - "chain": "eth", - "name": "Page", - "symbol": "PAGE", - "display_symbol": null, - "optimized_symbol": "PAGE", - "decimals": 8, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x60e683c6514edd5f758a55b6f393bebbafaa8d5e/c8bb13815f5143b60a2a38ab610a3e45.png", - "protocol_id": "", - "price": 0.003120832563867257, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1627438213, - "amount": 60.23798321, - "raw_amount": 6023798321, - "raw_amount_hex_str": "0x1670bde31" - }, - { - "id": "0x6123b0049f904d730db3c36a31167d9d4121fa6b", - "chain": "eth", - "name": "Ribbon", - "symbol": "RBN", - "display_symbol": null, - "optimized_symbol": "RBN", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6123b0049f904d730db3c36a31167d9d4121fa6b/d01dd0342160eeee21906b1dba45a327.png", - "protocol_id": "ribbonlend", - "price": 0.25819425012445046, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1621861922, - "amount": 13253.824991865888, - "raw_amount": 1.3253824991865887e22, - "raw_amount_hex_str": "0x2ce7dc55853e0c5b87a" - }, - { - "id": "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d", - "chain": "eth", - "name": "Aura BAL", - "symbol": "auraBAL", - "display_symbol": null, - "optimized_symbol": "auraBAL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x616e8bfa43f920657b3497dbf40d6b1a02d4608d/05fa7bfd9613c2c4799bd4f0cebd620a.png", - "protocol_id": "", - "price": 16.854060273293836, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1654771930, - "amount": 334.7729457204755, - "raw_amount": 334772945720475500000, - "raw_amount_hex_str": "0x1225e86c6e0011b5f8" - }, - { - "id": "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414", - "chain": "eth", - "name": "E-RADIX", - "symbol": "eXRD", - "display_symbol": null, - "optimized_symbol": "eXRD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6468e79a80c0eab0f9a2b574c8d5bc374af59414/2e02f4e196ecbfdc48156256092ea745.png", - "protocol_id": "radix", - "price": 0.05862635420850729, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1603805479, - "amount": 71.05679786474816, - "raw_amount": 71056797864748170000, - "raw_amount_hex_str": "0x3da1c752ed50cb3b7" - }, - { - "id": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", - "chain": "eth", - "name": "Olympus", - "symbol": "OHM", - "display_symbol": null, - "optimized_symbol": "OHM", - "decimals": 9, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5/0ad387f86fba0c16654cfb0f720df5d6.png", - "protocol_id": "olympusdao", - "price": 10.15660713189128, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1639209014, - "amount": 2590.083290103, - "raw_amount": 2590083290103, - "raw_amount_hex_str": "0x25b0cfe93f7" - }, - { - "id": "0x64db005d040ee62e8fa202291c73e8a6151a0399", - "chain": "eth", - "name": "Compound USD Coin Adapter", - "symbol": "cUSDC-adapter", - "display_symbol": null, - "optimized_symbol": "cUSDC-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649095346, - "amount": 2.0231805286517366, - "raw_amount": 2023180528651736300, - "raw_amount_hex_str": "0x1c13c7f8b6c61547" - }, - { - "id": "0x667102bd3413bfeaa3dffb48fa8288819e480a88", - "chain": "eth", - "name": "Tokenize Emblem", - "symbol": "TKX", - "display_symbol": null, - "optimized_symbol": "TKX", - "decimals": 8, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x667102bd3413bfeaa3dffb48fa8288819e480a88/76c73234de2cd64ad7d946222611fd70.png", - "protocol_id": "", - "price": 6.775389045261309, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1518449139, - "amount": 0.00034175, - "raw_amount": 34175, - "raw_amount_hex_str": "0x857f" - }, - { - "id": "0x67f8db40638d8e06ac78e1d04a805f59d11adf9b", - "chain": "eth", - "name": "Sense Space 1st July 2023 maDAI Sense Principal Token, A11", - "symbol": "SPACE-sP-maDAI:01-07-2023:11", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-maDAI:01-07-2023:11", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1665427199, - "amount": 3.3914452595565705, - "raw_amount": 3391445259556570600, - "raw_amount_hex_str": "0x2f10d57eb30d45b6" - }, - { - "id": "0x68037790a0229e9ce6eaa8a99ea92964106c4703", - "chain": "eth", - "name": "PAR Stablecoin", - "symbol": "PAR", - "display_symbol": null, - "optimized_symbol": "PAR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x68037790a0229e9ce6eaa8a99ea92964106c4703/3141498258ab923e325c2b7d0483bd31.png", - "protocol_id": "mimo", - "price": 1.0984085441416904, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1607062049, - "amount": 2963.7198307872636, - "raw_amount": 2.9637198307872636e21, - "raw_amount_hex_str": "0xa0a9dffba3efa595a6" - }, - { - "id": "0x6810e776880c02933d47db1b9fc05908e5386b96", - "chain": "eth", - "name": "Gnosis Token", - "symbol": "GNO", - "display_symbol": null, - "optimized_symbol": "GNO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6810e776880c02933d47db1b9fc05908e5386b96/69e5fedeca09913fe078a8dca5b7e48c.png", - "protocol_id": "gnosis", - "price": 117.8, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1492523116, - "amount": 12.529046636876508, - "raw_amount": 12529046636876510000, - "raw_amount_hex_str": "0xade01d88d553ad2a" - }, - { - "id": "0x68ca006db91312cd60a2238ce775be5f9f738bba", - "chain": "eth", - "name": "$ USDCGift.com", - "symbol": "$ USDCGift.com <- Visit to claim bonus", - "display_symbol": null, - "optimized_symbol": "$ USDCGift.com <- Visit to claim bonus", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668158975, - "amount": 7000, - "raw_amount": 7000, - "raw_amount_hex_str": "0x1b58" - }, - { - "id": "0x6a556a2c2511e605a6c464ab5dccfdc0b19822e7", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0 Adapter", - "symbol": "wstETH-adapter", - "display_symbol": null, - "optimized_symbol": "wstETH-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647837528, - "amount": 0.000017053807901899, - "raw_amount": 17053807901899, - "raw_amount_hex_str": "0xf82a6297ccb" - }, - { - "id": "0x6a5ead5433a50472642cd268e584dafa5a394490", - "chain": "eth", - "name": "Balancer 50wstETH-50LDO", - "symbol": "50WSTETH-50LDO", - "display_symbol": null, - "optimized_symbol": "50WSTETH-50LDO", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 63.994470779230696, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662739551, - "amount": 114.24534793897548, - "raw_amount": 114245347938975480000, - "raw_amount_hex_str": "0x6317902a7178a1760" - }, - { - "id": "0x6a9603e481fb8f2c09804ea9adab49a338855b90", - "chain": "eth", - "name": "Balancer graviAURA Stable Pool", - "symbol": "B-graviAURA-STABLE", - "display_symbol": null, - "optimized_symbol": "B-graviAURA-STABLE", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 3.039915637446407, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1666780871, - "amount": 17.256669599237974, - "raw_amount": 17256669599237974000, - "raw_amount_hex_str": "0xef7c01921cdca6be" - }, - { - "id": "0x6b175474e89094c44da98b954eedeac495271d0f", - "chain": "eth", - "name": "Dai Stablecoin", - "symbol": "DAI", - "display_symbol": "", - "optimized_symbol": "DAI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6b175474e89094c44da98b954eedeac495271d0f/549c4205dbb199f1b8b03af783f35e71.png", - "protocol_id": "makerdao", - "price": 0.9997, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1573672677, - "amount": 5836.330752285307, - "raw_amount": 5.836330752285308e21, - "raw_amount_hex_str": "0x13c635c18ff761c460d" - }, - { - "id": "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8", - "chain": "eth", - "name": "Silo Governance Token", - "symbol": "Silo", - "display_symbol": null, - "optimized_symbol": "Silo", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8/09fe11bd3f4cef64f9bd378ba3958402.png", - "protocol_id": "silo", - "price": 0.04797185864223034, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1638296826, - "amount": 111753.08439410271, - "raw_amount": 1.1175308439410272e23, - "raw_amount_hex_str": "0x17aa2597933825f64509" - }, - { - "id": "0x7152a37bbf363262bad269ec4de2269dd0e84ca3", - "chain": "eth", - "name": "50DC50WETH", - "symbol": "50DC50WETH", - "display_symbol": null, - "optimized_symbol": "50DC50WETH", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 1.7785496422960594, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667605751, - "amount": 1.142e-15, - "raw_amount": 1142, - "raw_amount_hex_str": "0x476" - }, - { - "id": "0x720465a4ae6547348056885060eeb51f9cadb571", - "chain": "eth", - "name": "Element Principal Token yvcrvSTETH-28JAN22", - "symbol": "ePyvcrvSTETH-28JAN22", - "display_symbol": null, - "optimized_symbol": "ePyvcrvSTETH-28JAN22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1749.1723366771569, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1631804744, - "amount": 0.11136072164257546, - "raw_amount": 111360721642575470, - "raw_amount_hex_str": "0x18ba1fc7f6fd669" - }, - { - "id": "0x724e3073317d4b1a8d0c6e89b137ea5af1f4051e", - "chain": "eth", - "name": "Element Principal Token yvCurve-stETH-24FEB23", - "symbol": "ePyvCurve-stETH-24FEB23", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-stETH-24FEB23", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1749.1723366771566, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1661789184, - "amount": 0.026602557625892042, - "raw_amount": 26602557625892044, - "raw_amount_hex_str": "0x5e82e29d687ccb" - }, - { - "id": "0x758b4684be769e92eefea93f60dda0181ea303ec", - "chain": "eth", - "name": "Phonon DAO", - "symbol": "PHONON", - "display_symbol": null, - "optimized_symbol": "PHONON", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x758b4684be769e92eefea93f60dda0181ea303ec/f305fb475c9f724396997a1a9aa3b02d.png", - "protocol_id": "", - "price": 0.0013513397790932526, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1639714953, - "amount": 416974.10794615577, - "raw_amount": 4.169741079461558e23, - "raw_amount_hex_str": "0x584c363101858f5f4fdd" - }, - { - "id": "0x76e5f9860bd5b8666de322496f114b8a89183a2e", - "chain": "eth", - "name": "Compound USD Coin Adapter", - "symbol": "cUSDC-adapter", - "display_symbol": null, - "optimized_symbol": "cUSDC-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649095788, - "amount": 0.000741912453313964, - "raw_amount": 741912453313964, - "raw_amount_hex_str": "0x2a2c3f43bf5ac" - }, - { - "id": "0x798b112420ad6391a4129ac25ef59663a44c88bb", - "chain": "eth", - "name": "Balancer 50wstETH-50ACX Pool", - "symbol": "wstETH-ACX", - "display_symbol": null, - "optimized_symbol": "wstETH-ACX", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 10.618593557210804, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669644575, - "amount": 251.66881627708779, - "raw_amount": 251668816277087780000, - "raw_amount_hex_str": "0xda49b3f0166dd3e42" - }, - { - "id": "0x799ebfabe77a6e34311eeee9825190b9ece32824", - "chain": "eth", - "name": "BTRST", - "symbol": "BTRST", - "display_symbol": null, - "optimized_symbol": "BTRST", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x799ebfabe77a6e34311eeee9825190b9ece32824/e6385202dd2bd0c1b0b3d28cb5bc459b.png", - "protocol_id": "", - "price": 1.0643, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1628607475, - "amount": 2468.4058564265565, - "raw_amount": 2.4684058564265567e21, - "raw_amount_hex_str": "0x85d003403ec6c83045" - }, - { - "id": "0x79c71d3436f39ce382d0f58f1b011d88100b9d91", - "chain": "eth", - "name": "Xeonbit Token", - "symbol": "XNS", - "display_symbol": null, - "optimized_symbol": "XNS", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x79c71d3436f39ce382d0f58f1b011d88100b9d91/46f0db9a119b111002c5f1c8ec7bd156.png", - "protocol_id": "", - "price": 0.0089441237531363, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1554428953, - "amount": 89.69343767614153, - "raw_amount": 89693437676141530000, - "raw_amount_hex_str": "0x4dcbf1a59aa0dd33d" - }, - { - "id": "0x7a6b87d7a874fce4c2d923b09c0e09e4936bcf57", - "chain": "eth", - "name": "$ USTBonus.com", - "symbol": "$ Visit USTBonus.com to claim", - "display_symbol": null, - "optimized_symbol": "$ Visit USTBonus.com to claim", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669300319, - "amount": 7000, - "raw_amount": 7000, - "raw_amount_hex_str": "0x1b58" - }, - { - "id": "0x7b4328c127b85369d9f82ca0503b000d09cf9180", - "chain": "eth", - "name": "Dogechain Token", - "symbol": "DC", - "display_symbol": null, - "optimized_symbol": "DC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b4328c127b85369d9f82ca0503b000d09cf9180/b3b8446c1a6ee2ef9e7ce6c28d433130.png", - "protocol_id": "", - "price": 0.0019059416078895787, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1661076494, - "amount": 6331.425637225221, - "raw_amount": 6.331425637225221e21, - "raw_amount_hex_str": "0x1573a2e77b9c2833e4c" - }, - { - "id": "0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2", - "chain": "eth", - "name": "Balancer Aave Boosted StablePool (USD)", - "symbol": "bb-a-USD", - "display_symbol": null, - "optimized_symbol": "bb-a-USD", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 1.0166233162106184, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1639435704, - "amount": 143.81279664606467, - "raw_amount": 143812796646064670000, - "raw_amount_hex_str": "0x7cbcdb098c42c3de8" - }, - { - "id": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", - "chain": "eth", - "name": "Matic Token", - "symbol": "MATIC", - "display_symbol": null, - "optimized_symbol": "MATIC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0/20aac20baa9069bd39342edd8c5cc801.png", - "protocol_id": "", - "price": 1.2042, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1555778052, - "amount": 5349.12727086573, - "raw_amount": 5.34912727086573e21, - "raw_amount_hex_str": "0x121fa0d9ff6228e9eae" - }, - { - "id": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH", - "display_symbol": null, - "optimized_symbol": "wstETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0/7e931af8cb34b6f5671ca2eb1b847849.png", - "protocol_id": "lido", - "price": 1823.6428537020215, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1613752640, - "amount": 58.0112510674581, - "raw_amount": 58011251067458100000, - "raw_amount_hex_str": "0x325115d7d33d71e18" - }, - { - "id": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", - "chain": "eth", - "name": "Aave Token", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9/eee087b66747b09dbfb4ba0b34fd3697.png", - "protocol_id": "aave", - "price": 89.43715898983436, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1600970788, - "amount": 2.0814284726382213, - "raw_amount": 2081428472638221300, - "raw_amount_hex_str": "0x1ce2b82b00fc2c3d" - }, - { - "id": "0x809d62f1c6e35720fd88df1c9fa7dec82b6ada52", - "chain": "eth", - "name": "ASAHI", - "symbol": "SUN", - "display_symbol": null, - "optimized_symbol": "SUN", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1650730353, - "amount": 197971097.59001258, - "raw_amount": 1.979710975900126e26, - "raw_amount_hex_str": "0xa3c202b46f2fc6d175b1de" - }, - { - "id": "0x81b7f92c7b7d9349b989b4982588761bfa1aa627", - "chain": "eth", - "name": "4Pool Chainlink V2", - "symbol": "BUSD-DAI-USDC-BPT-USDT", - "display_symbol": null, - "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 0.540576225710001, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669068491, - "amount": 5.25596e-13, - "raw_amount": 525596, - "raw_amount_hex_str": "0x8051c" - }, - { - "id": "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321", - "chain": "eth", - "name": "VitaDAO Token", - "symbol": "VITA", - "display_symbol": null, - "optimized_symbol": "VITA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321/ed46cc2757ddd792be9ec3b7218ef336.png", - "protocol_id": "", - "price": 1.5737842500426813, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623977434, - "amount": 7184.2193687789095, - "raw_amount": 7.184219368778909e21, - "raw_amount_hex_str": "0x18575126c4763f40b32" - }, - { - "id": "0x83d392a7be901892a8c861c96ea430b8d9c2bd51", - "chain": "eth", - "name": "Element Principal Token yvCurve-LUSD-16SEP22", - "symbol": "ePyvCurve-LUSD-16SEP22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-LUSD-16SEP22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1.0192569157541265, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1650388639, - "amount": 31.23523832948818, - "raw_amount": 31235238329488180000, - "raw_amount_hex_str": "0x1b179dbc4efcefd6d" - }, - { - "id": "0x865377367054516e17014ccded1e7d814edc9ce4", - "chain": "eth", - "name": "Dola USD Stablecoin", - "symbol": "DOLA", - "display_symbol": null, - "optimized_symbol": "DOLA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x865377367054516e17014ccded1e7d814edc9ce4/0c348eedfa7f89d3db2919e0a18988ea.png", - "protocol_id": "inverse", - "price": 0.9994295153327812, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614116357, - "amount": 229.7133118702557, - "raw_amount": 229713311870255700000, - "raw_amount_hex_str": "0xc73e9a0129d1ce5b8" - }, - { - "id": "0x8888801af4d980682e47f1a9036e589479e835c5", - "chain": "eth", - "name": "88mph.app", - "symbol": "MPH", - "display_symbol": null, - "optimized_symbol": "MPH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8888801af4d980682e47f1a9036e589479e835c5/32058e0e8684004754562c90f458e744.png", - "protocol_id": "88mph2", - "price": 1.5696400817651446, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1605809018, - "amount": 552.3588056745388, - "raw_amount": 552358805674538800000, - "raw_amount_hex_str": "0x1df184af3d15e7aedb" - }, - { - "id": "0x888888435fde8e7d4c54cab67f206e4199454c60", - "chain": "eth", - "name": "DFX Token", - "symbol": "DFX", - "display_symbol": null, - "optimized_symbol": "DFX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x888888435fde8e7d4c54cab67f206e4199454c60/eaad30c2bb118c5cfee13eac513aa1a8.png", - "protocol_id": "dfx", - "price": 0.2702988427126873, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1610615371, - "amount": 1682.449673881539, - "raw_amount": 1.682449673881539e21, - "raw_amount_hex_str": "0x5b34adf86514f033c1" - }, - { - "id": "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab", - "chain": "eth", - "name": "Alchemist", - "symbol": "⚗️", - "display_symbol": "MIST", - "optimized_symbol": "MIST", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab/bd99a167b17de42b302a00d8ec78f32f.png", - "protocol_id": "crucible", - "price": 1.8018956506083113, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1612643126, - "amount": 11.493286646362273, - "raw_amount": 11493286646362274000, - "raw_amount_hex_str": "0x9f805b4f9229f606" - }, - { - "id": "0x89045d0af6a12782ec6f701ee6698beaf17d0ea2", - "chain": "eth", - "name": "iUPixel", - "symbol": "PIXEL", - "display_symbol": null, - "optimized_symbol": "PIXEL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x89045d0af6a12782ec6f701ee6698beaf17d0ea2/964c07a3fb571d24f5aa601e9d3fe80f.png", - "protocol_id": "", - "price": 0.00039342448071812825, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1602981698, - "amount": 419218.0905333874, - "raw_amount": 4.192180905333874e23, - "raw_amount_hex_str": "0x58c5dbb4a37ac7406a75" - }, - { - "id": "0x8987a07ba83607a66c7351266e771fb865c9ca6c", - "chain": "eth", - "name": "Cage Governance Token", - "symbol": "CGT", - "display_symbol": null, - "optimized_symbol": "CGT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8987a07ba83607a66c7351266e771fb865c9ca6c/c80a5505fccd765c0a1ba4b67a6e4e3d.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1637143700, - "amount": 15.790961789893558, - "raw_amount": 15790961789893558000, - "raw_amount_hex_str": "0xdb24c415745f3ee7" - }, - { - "id": "0x8a2228705ec979961f0e16df311debcf097a2766", - "chain": "eth", - "name": "Element Principal Token yvUSDC-28JAN22", - "symbol": "ePyvUSDC-28JAN22", - "display_symbol": null, - "optimized_symbol": "ePyvUSDC-28JAN22", - "decimals": 6, - "logo_url": null, - "protocol_id": "element", - "price": 0.9999999999999998, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1631632129, - "amount": 31.567058, - "raw_amount": 31567058, - "raw_amount_hex_str": "0x1e1acd2" - }, - { - "id": "0x8d6cebd76f18e1558d4db88138e2defb3909fad6", - "chain": "eth", - "name": "Mai Stablecoin", - "symbol": "MAI", - "display_symbol": null, - "optimized_symbol": "MAI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8d6cebd76f18e1558d4db88138e2defb3909fad6/be77e8e47016b1e9d3f01b7edc9b8d4f.png", - "protocol_id": "", - "price": 0.9909322360533069, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1658859288, - "amount": 1540.9757561122135, - "raw_amount": 1.5409757561122136e21, - "raw_amount_hex_str": "0x538955a5be9d77a18a" - }, - { - "id": "0x8d7acc5d07818f187ab70b6033c690fd67c96d98", - "chain": "eth", - "name": "PlannerDAO", - "symbol": "PLAN", - "display_symbol": null, - "optimized_symbol": "PLAN", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1621455716, - "amount": 4.27784690352388, - "raw_amount": 4277846903523880000, - "raw_amount_hex_str": "0x3b5df718000bac1a" - }, - { - "id": "0x8e85e97ed19c0fa13b2549309965291fbbc0048b", - "chain": "eth", - "name": "sfrxETH-stETH-rETH StablePool", - "symbol": "sfrxETH-stETH-rETH-BPT", - "display_symbol": null, - "optimized_symbol": "sfrxETH-stETH-rETH-BPT", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 1666.6873458603147, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667418911, - "amount": 6.916174844754651, - "raw_amount": 6916174844754651000, - "raw_amount_hex_str": "0x5ffb3060ba17e6b8" - }, - { - "id": "0x900db999074d9277c5da2a43f252d74366230da0", - "chain": "eth", - "name": "Giveth", - "symbol": "GIV", - "display_symbol": null, - "optimized_symbol": "GIV", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x900db999074d9277c5da2a43f252d74366230da0/48a1779d740e93397c6204755092a146.png", - "protocol_id": "giveth", - "price": 0.01823590308518804, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1639666178, - "amount": 6848.213219735739, - "raw_amount": 6.848213219735739e21, - "raw_amount_hex_str": "0x1733e0cc7f602d155bb" - }, - { - "id": "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc", - "chain": "eth", - "name": "MIMO Parallel Governance Token", - "symbol": "MIMO", - "display_symbol": null, - "optimized_symbol": "MIMO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc/72fe5c216bc97d2a3d70ac9b4ec5bb25.png", - "protocol_id": "mimo", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1615370586, - "amount": 50249.521778060465, - "raw_amount": 5.024952177806046e22, - "raw_amount_hex_str": "0xaa408335fc4f509b136" - }, - { - "id": "0x92915c346287ddfbcec8f86c8eb52280ed05b3a3", - "chain": "eth", - "name": "Amplesense Elastic Finance token", - "symbol": "EEFI", - "display_symbol": null, - "optimized_symbol": "EEFI", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1644855585, - "amount": 132.0300205468087, - "raw_amount": 132030020546808680000, - "raw_amount_hex_str": "0x72848dc298c0e90f7" - }, - { - "id": "0x95a4492f028aa1fd432ea71146b433e7b4446611", - "chain": "eth", - "name": "APY Governance Token", - "symbol": "APY", - "display_symbol": null, - "optimized_symbol": "APY", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x95a4492f028aa1fd432ea71146b433e7b4446611/31f5a55b09524c2f39c8fbab8b9eb25d.png", - "protocol_id": "apy", - "price": 0.00478814873783527, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1604545092, - "amount": 5.32007461666674, - "raw_amount": 5320074616666740000, - "raw_amount_hex_str": "0x49d4b3ad48fe5524" - }, - { - "id": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", - "chain": "eth", - "name": "TenX Community JAPAN", - "symbol": "TXJP", - "display_symbol": null, - "optimized_symbol": "TXJP", - "decimals": 8, - "logo_url": null, - "protocol_id": "", - "price": 77.80088704642216, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1508827879, - "amount": 0.29865578, - "raw_amount": 29865578, - "raw_amount_hex_str": "0x1c7b66a" - }, - { - "id": "0x97e6e31afb2d93d437301e006d9da714616766a5", - "chain": "eth", - "name": "Midas", - "symbol": "MIDAS", - "display_symbol": null, - "optimized_symbol": "MIDAS", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x97e6e31afb2d93d437301e006d9da714616766a5/9804ef6af458909c9f41570042527eaa.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1667822315, - "amount": 1.4449879581191298, - "raw_amount": 1444987958119129900, - "raw_amount_hex_str": "0x140da0e45c686335" - }, - { - "id": "0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63", - "chain": "eth", - "name": "SONM Token", - "symbol": "SNM", - "display_symbol": null, - "optimized_symbol": "SNM", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1497526685, - "amount": 70.76889600927694, - "raw_amount": 70768896009276940000, - "raw_amount_hex_str": "0x3d61d9ff88382e0ce" - }, - { - "id": "0x9b532ab955417afd0d012eb9f7389457cd0ea712", - "chain": "eth", - "name": "Balancer Aave Boosted StablePool", - "symbol": "bb-a-USD", - "display_symbol": null, - "optimized_symbol": "bb-a-USD", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1660860422, - "amount": 0.020381305014858703, - "raw_amount": 20381305014858704, - "raw_amount_hex_str": "0x4868b05d7833d0" - }, - { - "id": "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050", - "chain": "eth", - "name": "Tracer", - "symbol": "TCR", - "display_symbol": null, - "optimized_symbol": "TCR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050/9b533f8265c54ab60417e8e06767c30c.png", - "protocol_id": "", - "price": 0.014807294395604529, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1609975395, - "amount": 103481.01736957845, - "raw_amount": 1.0348101736957846e23, - "raw_amount_hex_str": "0x15e9b799e7b4368d6a15" - }, - { - "id": "0x9d1089802ee608ba84c5c98211afe5f37f96b36c", - "chain": "eth", - "name": "Fluid USDC", - "symbol": "fUSDC", - "display_symbol": null, - "optimized_symbol": "fUSDC", - "decimals": 6, - "logo_url": null, - "protocol_id": "", - "price": 1.0050294233493682, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662012933, - "amount": 0.017477, - "raw_amount": 17477, - "raw_amount_hex_str": "0x4445" - }, - { - "id": "0x9f41a3d1ec37090e52a9102b24bc6921a813925f", - "chain": "eth", - "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A8", - "symbol": "SPACE-sP-wstETH:01-06-2027:8", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:8", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1659544897, - "amount": 0.02404538815125318, - "raw_amount": 24045388151253180, - "raw_amount_hex_str": "0x556d27333de8bc" - }, - { - "id": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", - "chain": "eth", - "name": "Maker", - "symbol": "MKR", - "display_symbol": null, - "optimized_symbol": "MKR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2/1d0390168de63ca803e8db7990e4f6ec.png", - "protocol_id": "makerdao", - "price": 680.2794613226391, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1511634257, - "amount": 7.0966413947270945, - "raw_amount": 7096641394727094000, - "raw_amount_hex_str": "0x627c55bfb70a89ab" - }, - { - "id": "0xa00486f88c98e2131e043e6b28fa53d46db7e6c7", - "chain": "eth", - "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A7", - "symbol": "SPACE-sP-wstETH:01-12-2022:7", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:7", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 899.1813633017326, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1652967472, - "amount": 0.03866396606896321, - "raw_amount": 38663966068963210, - "raw_amount_hex_str": "0x895cac1b25f789" - }, - { - "id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "chain": "eth", - "name": "USD Coin", - "symbol": "USDC", - "display_symbol": null, - "optimized_symbol": "USDC", - "decimals": 6, - "logo_url": "https://static.debank.com/image/coin/logo_url/usdc/e87790bfe0b3f2ea855dc29069b38818.png", - "protocol_id": "", - "price": 1, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1533324504, - "amount": 3073.279354, - "raw_amount": 3073279354, - "raw_amount_hex_str": "0xb72e857a" - }, - { - "id": "0xa279dab6ec190ee4efce7da72896eb58ad533262", - "chain": "eth", - "name": "yfu.finance", - "symbol": "YFU", - "display_symbol": null, - "optimized_symbol": "YFU", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa279dab6ec190ee4efce7da72896eb58ad533262/4cae6b44cb432fd05b4ed4b6986bbc86.png", - "protocol_id": "", - "price": 0.011916531950245784, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1600162041, - "amount": 15243.5826819643, - "raw_amount": 1.5243582681964301e22, - "raw_amount_hex_str": "0x33a5b34b548ba85339d" - }, - { - "id": "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9", - "chain": "eth", - "name": "Tempus", - "symbol": "TEMP", - "display_symbol": null, - "optimized_symbol": "TEMP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9/9d092f467bded810ccd2a1f8a7a341b3.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1635510955, - "amount": 147390.3126221194, - "raw_amount": 1.4739031262211942e23, - "raw_amount_hex_str": "0x1f360b7bc67920eed0e1" - }, - { - "id": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2", - "chain": "eth", - "name": "Meta", - "symbol": "MTA", - "display_symbol": null, - "optimized_symbol": "MTA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2/17557a59ad21559db3e23e16ec1a16bd.png", - "protocol_id": "mstable", - "price": 0.033480708667523, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1594635836, - "amount": 93958.16955162646, - "raw_amount": 9.395816955162645e22, - "raw_amount_hex_str": "0x13e57b8a337c9a528923" - }, - { - "id": "0xa68ccd2c3805c175c9f9caf30ae497e173dab30e", - "chain": "eth", - "name": "Sense Space 1st July 2023 cUSDC Sense Principal Token, A9", - "symbol": "SPACE-sP-cUSDC:01-07-2023:9", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-cUSDC:01-07-2023:9", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1660068889, - "amount": 46.48430189201742, - "raw_amount": 46484301892017420000, - "raw_amount_hex_str": "0x285196a4951b77244" - }, - { - "id": "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf", - "chain": "eth", - "name": "Paladin Token", - "symbol": "PAL", - "display_symbol": null, - "optimized_symbol": "PAL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf/445fbd915f5573ff4783b39329ca7bc1.png", - "protocol_id": "paladin", - "price": 0.17107649651413412, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1635408659, - "amount": 8660.472809613299, - "raw_amount": 8.660472809613299e21, - "raw_amount_hex_str": "0x1d57c34373119e54300" - }, - { - "id": "0xabe580e7ee158da464b51ee1a83ac0289622e6be", - "chain": "eth", - "name": "Offshift", - "symbol": "XFT", - "display_symbol": null, - "optimized_symbol": "XFT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xabe580e7ee158da464b51ee1a83ac0289622e6be/ee34c8bec4551ca91087ef18d8337273.png", - "protocol_id": "", - "price": 2.9738826657834703, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1594831562, - "amount": 157.62779756475396, - "raw_amount": 157627797564753940000, - "raw_amount_hex_str": "0x88b866ebcbe57bb5c" - }, - { - "id": "0xae78736cd615f374d3085123a210448e74fc6393", - "chain": "eth", - "name": "Rocket Pool ETH", - "symbol": "rETH", - "display_symbol": null, - "optimized_symbol": "rETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xae78736cd615f374d3085123a210448e74fc6393/0a56aa87c04449332f88702b2bd5f45c.png", - "protocol_id": "rocketpool", - "price": 1747.3452088126605, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1632980684, - "amount": 0.000240704865359075, - "raw_amount": 240704865359075, - "raw_amount_hex_str": "0xdaeb77fed4e3" - }, - { - "id": "0xb17548c7b510427baac4e267bea62e800b247173", - "chain": "eth", - "name": "Swarm Markets", - "symbol": "SMT", - "display_symbol": null, - "optimized_symbol": "SMT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb17548c7b510427baac4e267bea62e800b247173/9582e5b9b72518371bb342c0efc49c1f.png", - "protocol_id": "", - "price": 0.011182793192754704, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1625232545, - "amount": 1108.1762058273564, - "raw_amount": 1.1081762058273564e21, - "raw_amount_hex_str": "0x3c1308c3d4afbe27b4" - }, - { - "id": "0xb4efd85c19999d84251304bda99e90b92300bd93", - "chain": "eth", - "name": "Rocket Pool", - "symbol": "RPL", - "display_symbol": "RPL(old)", - "optimized_symbol": "RPL(old)", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb4efd85c19999d84251304bda99e90b92300bd93/0dac0c5e1dd543fb62581f0756e0b11f.png", - "protocol_id": "rocketpool", - "price": 41.70724411941512, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1504750041, - "amount": 0.0086061706836381, - "raw_amount": 8606170683638101, - "raw_amount_hex_str": "0x1e934442798155" - }, - { - "id": "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206", - "chain": "eth", - "name": "Nexo", - "symbol": "NEXO", - "display_symbol": null, - "optimized_symbol": "NEXO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206/0fed72ccc71d9596a9c90536c8da2b95.png", - "protocol_id": "", - "price": 0.8057865731019598, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1524250249, - "amount": 676.4372781409888, - "raw_amount": 676437278140988800000, - "raw_amount_hex_str": "0x24ab73f88d09bea141" - }, - { - "id": "0xb65df73fc4f6591ebe00494a4bd47ed339a81210", - "chain": "eth", - "name": "AAA METAVERSE TOKEN", - "symbol": "AMT", - "display_symbol": null, - "optimized_symbol": "AMT", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.0028251310328638404, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1653030386, - "amount": 562.5772921108754, - "raw_amount": 562577292110875460000, - "raw_amount_hex_str": "0x1e7f540a8339e63546" - }, - { - "id": "0xb7dff8b71e62bff9f850795bcea61ffbca7c87a3", - "chain": "eth", - "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A8", - "symbol": "SPACE-sP-wstETH:01-12-2022:8", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:8", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1659543677, - "amount": 0.016823993980989112, - "raw_amount": 16823993980989112, - "raw_amount_hex_str": "0x3bc55558f0aeb9" - }, - { - "id": "0xb83809806a076a1413437ea3e553d6bf41993a21", - "chain": "eth", - "name": "Element Principal Token yvUSDC-24FEB23", - "symbol": "ePyvUSDC-24FEB23", - "display_symbol": null, - "optimized_symbol": "ePyvUSDC-24FEB23", - "decimals": 6, - "logo_url": null, - "protocol_id": "element", - "price": 0.9999999999999998, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1661486935, - "amount": 16.074283, - "raw_amount": 16074283, - "raw_amount_hex_str": "0xf5462b" - }, - { - "id": "0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6", - "chain": "eth", - "name": "Balancer 50wstETH-50bb-a-USD", - "symbol": "50wstETH-50bb-a-USD", - "display_symbol": null, - "optimized_symbol": "50wstETH-50bb-a-USD", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 42.678854538199126, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1664906015, - "amount": 0.0125422532991523, - "raw_amount": 12542253299152300, - "raw_amount_hex_str": "0x2c8f1ce89435ac" - }, - { - "id": "0xba100000625a3754423978a60c9317c58a424e3d", - "chain": "eth", - "name": "Balancer", - "symbol": "BAL", - "display_symbol": null, - "optimized_symbol": "BAL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba100000625a3754423978a60c9317c58a424e3d/52990c207f4001bd9090dfd90e54374a.png", - "protocol_id": "balancer", - "price": 7.075932192587953, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1592616779, - "amount": 7621.2371434707275, - "raw_amount": 7.621237143470727e21, - "raw_amount_hex_str": "0x19d25e972f11173bae8" - }, - { - "id": "0xba485b556399123261a5f9c95d413b4f93107407", - "chain": "eth", - "name": "Gravitationally Bound AURA", - "symbol": "graviAURA", - "display_symbol": null, - "optimized_symbol": "graviAURA", - "decimals": 18, - "logo_url": null, - "protocol_id": "badger", - "price": 3.033842297913024, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1655385807, - "amount": 2356.071647233326, - "raw_amount": 2.356071647233326e21, - "raw_amount_hex_str": "0x7fb90ff827f7d9d33e" - }, - { - "id": "0xbb6c7b5e0804d07ae31a43e6e83ea66fb128a3bb", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0 Adapter", - "symbol": "wstETH-adapter", - "display_symbol": null, - "optimized_symbol": "wstETH-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1648172657, - "amount": 0.005585389870334592, - "raw_amount": 5585389870334592, - "raw_amount_hex_str": "0x13d7e1eb274280" - }, - { - "id": "0xbc396689893d065f41bc2c6ecbee5e0085233447", - "chain": "eth", - "name": "Perpetual", - "symbol": "PERP", - "display_symbol": null, - "optimized_symbol": "PERP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbc396689893d065f41bc2c6ecbee5e0085233447/ccb9a7014a682d32c7fe19ce6c66070d.png", - "protocol_id": "perpetual", - "price": 0.7032332063210909, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1599343689, - "amount": 0.009363496712110932, - "raw_amount": 9363496712110932, - "raw_amount_hex_str": "0x21440cf7618353" - }, - { - "id": "0xbd482ffb3e6e50dc1c437557c3bea2b68f3683ee", - "chain": "eth", - "name": "4Pool Chainlink", - "symbol": "BUSD-DAI-USDC-BPT-USDT", - "display_symbol": null, - "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 0.4279639177931369, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668203063, - "amount": 137.930014803117, - "raw_amount": 137930014803117000000, - "raw_amount_hex_str": "0x77a29d9adcc28c1a7" - }, - { - "id": "0xbe1f8b3493570501cb32bc87ae3150f4e1a9f0e4", - "chain": "eth", - "name": "GonczyPolski", - "symbol": "GP", - "display_symbol": null, - "optimized_symbol": "GP", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1659962474, - "amount": 18707.03543949801, - "raw_amount": 1.8707035439498009e22, - "raw_amount_hex_str": "0x3f61c44b21a124b9e94" - }, - { - "id": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", - "chain": "eth", - "name": "Coinbase Wrapped Staked ETH", - "symbol": "cbETH", - "display_symbol": null, - "optimized_symbol": "cbETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbe9895146f7af43049ca1c1ae358b0541ea49704/1f287272a7d8439af0f6b281ebf0143e.png", - "protocol_id": "", - "price": 1650.5498416650382, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1643901537, - "amount": 0.733616586649076, - "raw_amount": 733616586649076100, - "raw_amount_hex_str": "0xa2e5466108d815c" - }, - { - "id": "0xbfa9180729f1c549334080005ca37093593fb7aa", - "chain": "eth", - "name": "$ ClaimLIDO.com", - "symbol": "$ ClaimLIDO.com", - "display_symbol": null, - "optimized_symbol": "$ ClaimLIDO.com", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667825063, - "amount": 400, - "raw_amount": 400, - "raw_amount_hex_str": "0x190" - }, - { - "id": "0xc00e94cb662c3520282e6f5717214004a7f26888", - "chain": "eth", - "name": "Compound", - "symbol": "COMP", - "display_symbol": null, - "optimized_symbol": "COMP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc00e94cb662c3520282e6f5717214004a7f26888/dd174d3d7083fa027a433dc50edaf0bc.png", - "protocol_id": "compound3", - "price": 54.06334193371102, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1583280535, - "amount": 98.66151814650372, - "raw_amount": 98661518146503720000, - "raw_amount_hex_str": "0x559342005eb1c4f4a" - }, - { - "id": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", - "chain": "eth", - "name": "Synthetix Network Token", - "symbol": "SNX", - "display_symbol": null, - "optimized_symbol": "SNX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f/fb568c26c7902169572abe8fa966e791.png", - "protocol_id": "synthetix", - "price": 2.560927360494572, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1565329008, - "amount": 3040.090154593327, - "raw_amount": 3.040090154593327e21, - "raw_amount_hex_str": "0xa4cdb9e083c19f4b58" - }, - { - "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "chain": "eth", - "name": "Wrapped Ether", - "symbol": "WETH", - "display_symbol": null, - "optimized_symbol": "WETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2/61844453e63cf81301f845d7864236f6.png", - "protocol_id": "", - "price": 1652.99, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1513077455, - "amount": 27.52205241088964, - "raw_amount": 27522052410889640000, - "raw_amount_hex_str": "0x17df1f8d980c29a20" - }, - { - "id": "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf", - "chain": "eth", - "name": "Aura", - "symbol": "AURA", - "display_symbol": null, - "optimized_symbol": "AURA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc0c293ce456ff0ed870add98a0828dd4d2903dbf/f5bdc54131498b4bda381d301e855962.png", - "protocol_id": "aurafinance", - "price": 2.8754538108389482, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1654771511, - "amount": 1618.4546099264694, - "raw_amount": 1.6184546099264695e21, - "raw_amount_hex_str": "0x57bc91d4c9c09c0a25" - }, - { - "id": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72", - "chain": "eth", - "name": "Ethereum Name Service", - "symbol": "ENS", - "display_symbol": null, - "optimized_symbol": "ENS", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc18360217d8f7ab5e7c516566761ea12ce7f9d72/034d454d78d7be7f9675066fdb63e114.png", - "protocol_id": "", - "price": 16.02655507241747, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1635800117, - "amount": 417.23410877511543, - "raw_amount": 417234108775115460000, - "raw_amount_hex_str": "0x169e4953547572d614" - }, - { - "id": "0xc4ad29ba4b3c580e6d59105fff484999997675ff", - "chain": "eth", - "name": "Curve.fi USD-BTC-ETH", - "symbol": "crv3crypto", - "display_symbol": null, - "optimized_symbol": "crv3crypto", - "decimals": 18, - "logo_url": null, - "protocol_id": "curve", - "price": 1045.0591661655699, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1626210526, - "amount": 0.17372243489947023, - "raw_amount": 173722434899470240, - "raw_amount_hex_str": "0x2692fa255b2e79b" - }, - { - "id": "0xc63958d9d01efa6b8266b1df3862c6323cbdb52b", - "chain": "eth", - "name": "Element Principal Token yvCurve-MIM-29APR22", - "symbol": "ePyvCurve-MIM-29APR22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-MIM-29APR22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1.0093000641882357, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1636645562, - "amount": 691.7806591217435, - "raw_amount": 691780659121743500000, - "raw_amount_hex_str": "0x2580629c429d1be771" - }, - { - "id": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", - "chain": "eth", - "name": "Graph Token", - "symbol": "GRT", - "display_symbol": null, - "optimized_symbol": "GRT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc944e90c64b2c07662a292be6244bdf05cda44a7/8a3fcf468cdf3ae0c7a56cfb12ab4816.png", - "protocol_id": "thegraph", - "price": 0.09875458953100871, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1607890633, - "amount": 4.061181313170579, - "raw_amount": 4061181313170579000, - "raw_amount_hex_str": "0x385c36e323fc9de6" - }, - { - "id": "0xc9b88361c09ec184bdd32cf52cffc79a1452f79d", - "chain": "eth", - "name": "Element Principal Token yvCurve-alUSD-16SEP22", - "symbol": "ePyvCurve-alUSD-16SEP22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-alUSD-16SEP22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1.0201565484026218, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1651238498, - "amount": 3.4140435605437474, - "raw_amount": 3414043560543747000, - "raw_amount_hex_str": "0x2f611e87a9eb7c99" - }, - { - "id": "0xc9c5ff67bb2fae526ae2467c359609d6bcb4c532", - "chain": "eth", - "name": "Tranchess qETH/ETH Balancer Pool", - "symbol": "qETH-BPT", - "display_symbol": null, - "optimized_symbol": "qETH-BPT", - "decimals": 18, - "logo_url": null, - "protocol_id": "balancer2", - "price": 742.9037866052959, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668491783, - "amount": 0.1122426227770841, - "raw_amount": 112242622777084110, - "raw_amount_hex_str": "0x18ec4121b4948c9" - }, - { - "id": "0xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf", - "chain": "eth", - "name": "Curve.fi USD-BTC-ETH", - "symbol": "crvTricrypto", - "display_symbol": null, - "optimized_symbol": "crvTricrypto", - "decimals": 18, - "logo_url": null, - "protocol_id": "curve", - "price": 1037.1882667466834, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1622187277, - "amount": 9.13523352988e-7, - "raw_amount": 913523352988, - "raw_amount_hex_str": "0xd4b23c259c" - }, - { - "id": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", - "chain": "eth", - "name": "ParaSwap", - "symbol": "PSP", - "display_symbol": null, - "optimized_symbol": "PSP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcafe001067cdef266afb7eb5a286dcfd277f3de5/142412ec7069ec0a4806f2bfc2855022.png", - "protocol_id": "paraswap", - "price": 0.03868369417332324, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1636966698, - "amount": 101493.2564476807, - "raw_amount": 1.014932564476807e23, - "raw_amount_hex_str": "0x157df5e07cd8c0783a5c" - }, - { - "id": "0xcce00da653eb50133455d4075fe8bca36750492c", - "chain": "eth", - "name": "Element Principal Token yvDAI-16SEP22", - "symbol": "ePyvDAI-16SEP22", - "display_symbol": null, - "optimized_symbol": "ePyvDAI-16SEP22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 0.9997000000000001, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649796306, - "amount": 846.7169215907458, - "raw_amount": 846716921590745800000, - "raw_amount_hex_str": "0x2de68eca1698ae3e57" - }, - { - "id": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5", - "chain": "eth", - "name": "Threshold Network Token", - "symbol": "T", - "display_symbol": null, - "optimized_symbol": "T", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcdf7028ceab81fa0c6971208e83fa7872994bee5/415842bd4135e852704aea093ce139d0.png", - "protocol_id": "threshold", - "price": 0.04985035061973818, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1640944196, - "amount": 375666.66045186267, - "raw_amount": 3.7566666045186267e23, - "raw_amount_hex_str": "0x4f8cee3341b2e04edf8b" - }, - { - "id": "0xce621fc54d2547294a46b4d5c142bdeb2d0f0aeb", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0 Adapter", - "symbol": "wstETH-adapter", - "display_symbol": null, - "optimized_symbol": "wstETH-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647499081, - "amount": 0.000003220458669281, - "raw_amount": 3220458669281, - "raw_amount_hex_str": "0x2edd24b84e1" - }, - { - "id": "0xcfe60a1535ecc5b0bc628dc97111c8bb01637911", - "chain": "eth", - "name": "Element Principal Token yvUSDC-16SEP22", - "symbol": "ePyvUSDC-16SEP22", - "display_symbol": null, - "optimized_symbol": "ePyvUSDC-16SEP22", - "decimals": 6, - "logo_url": null, - "protocol_id": "element", - "price": 1, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647458268, - "amount": 251.4586, - "raw_amount": 251458600, - "raw_amount_hex_str": "0xefcf428" - }, - { - "id": "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5", - "chain": "eth", - "name": "Notional", - "symbol": "NOTE", - "display_symbol": null, - "optimized_symbol": "NOTE", - "decimals": 8, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5/ebf0bbcfaf39b581a04aacbc502101a4.png", - "protocol_id": "notional", - "price": 0.17336323191421996, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1629899104, - "amount": 43706.09569597, - "raw_amount": 4370609569597, - "raw_amount_hex_str": "0x3f99ca17f3d" - }, - { - "id": "0xd31a59c85ae9d8edefec411d448f90841571b89c", - "chain": "eth", - "name": "Wrapped SOL (Wormhole)", - "symbol": "SOL", - "display_symbol": null, - "optimized_symbol": "SOL", - "decimals": 9, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd31a59c85ae9d8edefec411d448f90841571b89c/7c5db5c2eae571da837b65f5b9ae1a5c.png", - "protocol_id": "", - "price": 24.356342187419905, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1632316757, - "amount": 0.065785808, - "raw_amount": 65785808, - "raw_amount_hex_str": "0x3ebcfd0" - }, - { - "id": "0xd33526068d116ce69f19a9ee46f0bd304f21a51f", - "chain": "eth", - "name": "Rocket Pool Protocol", - "symbol": "RPL", - "display_symbol": null, - "optimized_symbol": "RPL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd33526068d116ce69f19a9ee46f0bd304f21a51f/0dac0c5e1dd543fb62581f0756e0b11f.png", - "protocol_id": "rocketpool", - "price": 41.64690543669197, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1632980703, - "amount": 402.6717234898153, - "raw_amount": 402671723489815300000, - "raw_amount_hex_str": "0x15d431571158c20886" - }, - { - "id": "0xd40954a9ff856f9a2c6efa88ad45623157a7dff0", - "chain": "eth", - "name": "Compound USD Coin Adapter", - "symbol": "cUSDC-adapter", - "display_symbol": null, - "optimized_symbol": "cUSDC-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647839269, - "amount": 91.46765848880472, - "raw_amount": 91467658488804700000, - "raw_amount_hex_str": "0x4f55e66c775f29be1" - }, - { - "id": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", - "chain": "eth", - "name": "NFT Worlds", - "symbol": "WRLD", - "display_symbol": null, - "optimized_symbol": "WRLD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9/7e8c2ceca870a77f8910d33d85163f0d.png", - "protocol_id": "", - "price": 0.017548942519178996, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1640650326, - "amount": 4.0949999999418525, - "raw_amount": 4094999999941852700, - "raw_amount_hex_str": "0x38d45ccdbfc23e02" - }, - { - "id": "0xd8dc4cc15945a16aa5201bcabfa1d32d2cb39fd6", - "chain": "eth", - "name": "Sense Space 1st June 2023 wstETH Sense Principal Token, A7", - "symbol": "SPACE-sP-wstETH:01-06-2023:7", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-wstETH:01-06-2023:7", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1652969144, - "amount": 0.02239942514047281, - "raw_amount": 22399425140472810, - "raw_amount_hex_str": "0x4f942892abbbea" - }, - { - "id": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "chain": "eth", - "name": "Tether USD", - "symbol": "USDT", - "display_symbol": "", - "optimized_symbol": "USDT", - "decimals": 6, - "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", - "protocol_id": "", - "price": 1, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1511829681, - "amount": 2778.656765, - "raw_amount": 2778656765, - "raw_amount_hex_str": "0xa59eeffd" - }, - { - "id": "0xdbbfb4ccd10a0828b95ce6fbe8a7502a9e6a76f5", - "chain": "eth", - "name": "Sense Space 1st July 2023 cDAI Sense Principal Token, A10", - "symbol": "SPACE-sP-cDAI:01-07-2023:10", - "display_symbol": null, - "optimized_symbol": "SPACE-sP-cDAI:01-07-2023:10", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1660069123, - "amount": 1.788701278148237, - "raw_amount": 1788701278148237000, - "raw_amount_hex_str": "0x18d2be55e55016d7" - }, - { - "id": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f", - "chain": "eth", - "name": "Gitcoin", - "symbol": "GTC", - "display_symbol": "", - "optimized_symbol": "GTC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f/18bdb51197eaa8954b3467dcf0a5c5e9.png", - "protocol_id": "gitcoin", - "price": 1.97416292019335, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1620856082, - "amount": 486.37705159214147, - "raw_amount": 486377051592141500000, - "raw_amount_hex_str": "0x1a5dd6677cab6eceec" - }, - { - "id": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab", - "chain": "eth", - "name": "CoW Protocol Token", - "symbol": "COW", - "display_symbol": null, - "optimized_symbol": "COW", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab/01b4a8c7bfa381d0f47d140d58d06d54.png", - "protocol_id": "", - "price": 0.10346770338303682, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1644608664, - "amount": 3.740292097500236, - "raw_amount": 3740292097500236000, - "raw_amount_hex_str": "0x33e82fd883b3c8c8" - }, - { - "id": "0xe29797910d413281d2821d5d9a989262c8121cc2", - "chain": "eth", - "name": "elimu.ai", - "symbol": "ELIMU", - "display_symbol": null, - "optimized_symbol": "ELIMU", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.0008522756896531499, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1623928435, - "amount": 543.1183640393148, - "raw_amount": 543118364039314800000, - "raw_amount_hex_str": "0x1d71480a8782a65456" - }, - { - "id": "0xe41d2489571d322189246dafa5ebde1f4699f498", - "chain": "eth", - "name": "0x Protocol Token", - "symbol": "ZRX", - "display_symbol": null, - "optimized_symbol": "ZRX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe41d2489571d322189246dafa5ebde1f4699f498/6399b265ac056e5168a1144d39e5ab16.png", - "protocol_id": "0x", - "price": 0.24822087993328057, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1502476756, - "amount": 19.965979726938276, - "raw_amount": 19965979726938276000, - "raw_amount_hex_str": "0x1151568c700ce85cd" - }, - { - "id": "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532", - "chain": "eth", - "name": "ZEON", - "symbol": "ZEON", - "display_symbol": null, - "optimized_symbol": "ZEON", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532/132ae9ab3cb6f2e332d748726ea96ec2.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1539621663, - "amount": 985.9709680218301, - "raw_amount": 985970968021830100000, - "raw_amount_hex_str": "0x3573188b848d35f70b" - }, - { - "id": "0xe72c7d093ac50c57e47f4f2674243a4fff68f0f2", - "chain": "eth", - "name": "stDai.xyz", - "symbol": "https://stdai.xyz", - "display_symbol": null, - "optimized_symbol": "https://stdai.xyz", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1663927511, - "amount": 777, - "raw_amount": 777, - "raw_amount_hex_str": "0x309" - }, - { - "id": "0xe89c2dccfa045f3538ae3ebbfff3daec6a40a73a", - "chain": "eth", - "name": "$ USDCXMAS.com", - "symbol": "$ Visit USDCXMAS.com to claim", - "display_symbol": null, - "optimized_symbol": "$ Visit USDCXMAS.com to claim", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1672053143, - "amount": 9000, - "raw_amount": 9000, - "raw_amount_hex_str": "0x2328" - }, - { - "id": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb", - "chain": "eth", - "name": "Ankr Staked ETH", - "symbol": "ankrETH", - "display_symbol": "ankrETH", - "optimized_symbol": "ankrETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe95a203b1a91a908f9b9ce46459d101078c2c3cb/943011b2bba8d1d0a9c815caee4baf84.png", - "protocol_id": "ankr", - "price": 1814.5672349607464, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1604948706, - "amount": 0.019528743016216595, - "raw_amount": 19528743016216596, - "raw_amount_hex_str": "0x456149ce643813" - }, - { - "id": "0xea34b59a4e7075203a93f97178b2581d5f3f9919", - "chain": "eth", - "name": "Compound USD Coin Adapter", - "symbol": "cUSDC-adapter", - "display_symbol": null, - "optimized_symbol": "cUSDC-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1651434899, - "amount": 0.000075732300716355, - "raw_amount": 75732300716355, - "raw_amount_hex_str": "0x44e0cce1d943" - }, - { - "id": "0xea912e1afa137c15f1638142e32f978e92fbce39", - "chain": "eth", - "name": "Balancer DAI-USDT Fixed Rate Pool", - "symbol": "B-DAI-USDT-FIXED-RATE", - "display_symbol": null, - "optimized_symbol": "B-DAI-USDT-FIXED-RATE", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667292155, - "amount": 2.52799920533739, - "raw_amount": 2527999205337390000, - "raw_amount_hex_str": "0x231541e2229adb33" - }, - { - "id": "0xeaa1cba8cc3cf01a92e9e853e90277b5b8a23e07", - "chain": "eth", - "name": "Element Principal Token yvCurve-alUSD-29APR22", - "symbol": "ePyvCurve-alUSD-29APR22", - "display_symbol": null, - "optimized_symbol": "ePyvCurve-alUSD-29APR22", - "decimals": 18, - "logo_url": null, - "protocol_id": "element", - "price": 1.0201565484026218, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1637702559, - "amount": 15.528525296983258, - "raw_amount": 15528525296983257000, - "raw_amount_hex_str": "0xd780677be45ab12a" - }, - { - "id": "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d", - "chain": "eth", - "name": "renBTC", - "symbol": "renBTC", - "display_symbol": null, - "optimized_symbol": "renBTC", - "decimals": 8, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xeb4c2781e4eba804ce9a9803c67d0893436bb27d/7ec502c1a24ea6d4cee9f31595acf6d7.png", - "protocol_id": "", - "price": 24648.516551845347, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1585090944, - "amount": 0.18223074, - "raw_amount": 18223074, - "raw_amount_hex_str": "0x1160fe2" - }, - { - "id": "0xecf2c7a432e5f7d8ba0a85b12f2ae3e4874ec690", - "chain": "eth", - "name": "Wrapped liquid staked Ether 2.0 Adapter", - "symbol": "wstETH-adapter", - "display_symbol": null, - "optimized_symbol": "wstETH-adapter", - "decimals": 18, - "logo_url": null, - "protocol_id": "sense", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647837401, - "amount": 0.0000119498554493, - "raw_amount": 11949855449300, - "raw_amount_hex_str": "0xade4ae3a0d4" - }, - { - "id": "0xed1480d12be41d92f36f5f7bdd88212e381a3677", - "chain": "eth", - "name": "FIAT DAO Token", - "symbol": "FDT", - "display_symbol": null, - "optimized_symbol": "FDT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed1480d12be41d92f36f5f7bdd88212e381a3677/3b6713634ee6c7285619f5d6f77329f9.png", - "protocol_id": "fiatdao", - "price": 0.0031760429778028903, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1635920329, - "amount": 419865.4653142888, - "raw_amount": 4.1986546531428884e23, - "raw_amount_hex_str": "0x58e8f3d5e0c557245e62" - }, - { - "id": "0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca", - "chain": "eth", - "name": "Curve.fi Factory USD Metapool: Liquity", - "symbol": "LUSD3CRV-f", - "display_symbol": null, - "optimized_symbol": "LUSD3CRV-f", - "decimals": 18, - "logo_url": null, - "protocol_id": "curve", - "price": 1.0203070789974393, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1617695155, - "amount": 419.9876956078656, - "raw_amount": 419987695607865600000, - "raw_amount_hex_str": "0x16c48007f715b6ea31" - }, - { - "id": "0xedb171c18ce90b633db442f2a6f72874093b49ef", - "chain": "eth", - "name": "Wrapped Ampleforth", - "symbol": "WAMPL", - "display_symbol": null, - "optimized_symbol": "WAMPL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xedb171c18ce90b633db442f2a6f72874093b49ef/60204bc28b7d18732faa55afcdd29196.png", - "protocol_id": "", - "price": 5.64495339441424, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1632315593, - "amount": 504.5573060269827, - "raw_amount": 504557306026982700000, - "raw_amount_hex_str": "0x1b5a23a492865d2db3" - }, - { - "id": "0xede11d3d5dd7d5454844f6f121cc106bf1144a45", - "chain": "eth", - "name": "$ LPBalancer.com", - "symbol": "LPBalancer.com", - "display_symbol": null, - "optimized_symbol": "LPBalancer.com", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1657981900, - "amount": 500, - "raw_amount": 500, - "raw_amount_hex_str": "0x1f4" - }, - { - "id": "0xf05e58fcea29ab4da01a495140b349f8410ba904", - "chain": "eth", - "name": "CLever CVX", - "symbol": "clevCVX", - "display_symbol": null, - "optimized_symbol": "clevCVX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf05e58fcea29ab4da01a495140b349f8410ba904/f1f9772044bbf5e8c3f5ab288d96e2ac.png", - "protocol_id": "clevercvx", - "price": 6.618277791213814, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1650535428, - "amount": 3.6856823614115934, - "raw_amount": 3685682361411593000, - "raw_amount_hex_str": "0x33262c9482dc641a" - }, - { - "id": "0xf17e65822b568b3903685a7c9f496cf7656cc6c2", - "chain": "eth", - "name": "Biconomy Token", - "symbol": "BICO", - "display_symbol": null, - "optimized_symbol": "BICO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf17e65822b568b3903685a7c9f496cf7656cc6c2/69060a56ebfc5a4cecd43b64c8910d22.png", - "protocol_id": "biconomy", - "price": 0.39848818259358776, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1633376291, - "amount": 4765.288347241246, - "raw_amount": 4.765288347241246e21, - "raw_amount_hex_str": "0x10253a9183c76bfca44" - }, - { - "id": "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", - "chain": "eth", - "name": "Rally", - "symbol": "RLY", - "display_symbol": null, - "optimized_symbol": "RLY", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b/052a631e8e9ba5e59f9434548ea6f91c.png", - "protocol_id": "rally", - "price": 0.012264409579332806, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1601929393, - "amount": 0.7120994357331588, - "raw_amount": 712099435733158800, - "raw_amount_hex_str": "0x9e1e2a9f7a18b85" - }, - { - "id": "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817", - "chain": "eth", - "name": "Wrapped NCG", - "symbol": "WNCG", - "display_symbol": null, - "optimized_symbol": "WNCG", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf203ca1769ca8e9e8fe1da9d147db68b6c919817/eae7a52224ab744dbe7df7635b36bd1a.png", - "protocol_id": "", - "price": 0.10552181026788007, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1628244716, - "amount": 55874.97577641164, - "raw_amount": 5.5874975776411635e22, - "raw_amount_hex_str": "0xbd4fd0ebe564bb006bb" - }, - { - "id": "0xf2051511b9b121394fa75b8f7d4e7424337af687", - "chain": "eth", - "name": "DAOhaus Token", - "symbol": "HAUS", - "display_symbol": null, - "optimized_symbol": "HAUS", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf2051511b9b121394fa75b8f7d4e7424337af687/445ed9b4d899940d75305b98e2697f0a.png", - "protocol_id": "", - "price": 3.428552964506586, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1599234880, - "amount": 186.86765996300934, - "raw_amount": 186867659963009340000, - "raw_amount_hex_str": "0xa214f4aab47a81b3a" - }, - { - "id": "0xf24d8651578a55b0c119b9910759a351a3458895", - "chain": "eth", - "name": "Stake DAO Balancer", - "symbol": "sdBal", - "display_symbol": null, - "optimized_symbol": "sdBal", - "decimals": 18, - "logo_url": null, - "protocol_id": "stakedao", - "price": 17.72703499310064, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1653567793, - "amount": 12.173034787347591, - "raw_amount": 12173034787347591000, - "raw_amount_hex_str": "0xa8ef4ea4c2536d4c" - }, - { - "id": "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80", - "chain": "eth", - "name": "Jelly Token", - "symbol": "JELLY", - "display_symbol": null, - "optimized_symbol": "JELLY", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80/aff641efef043d373dc74d0a6a74ca02.png", - "protocol_id": "", - "price": 0.0011683287562618391, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1635421158, - "amount": 18423.751965036692, - "raw_amount": 1.8423751965036694e22, - "raw_amount_hex_str": "0x3e6c0eb9efabd134d6e" - }, - { - "id": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c", - "chain": "eth", - "name": "Enjin Coin", - "symbol": "ENJ", - "display_symbol": null, - "optimized_symbol": "ENJ", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c/5e91ff13592f1420dc3d25f0b1526ae7.png", - "protocol_id": "", - "price": 0.46522320431474457, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1506906127, - "amount": 1489.6785814742284, - "raw_amount": 1.4896785814742284e21, - "raw_amount_hex_str": "0x50c1717932072fde21" - }, - { - "id": "0xf65b5c5104c4fafd4b709d9d60a185eae063276c", - "chain": "eth", - "name": "Truebit", - "symbol": "TRU", - "display_symbol": null, - "optimized_symbol": "TRU", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf65b5c5104c4fafd4b709d9d60a185eae063276c/c01f397719a7ef63a6754ee0f5f887b7.png", - "protocol_id": "", - "price": 0.10728188517208526, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1618138342, - "amount": 4601.55958217724, - "raw_amount": 4.601559582177241e21, - "raw_amount_hex_str": "0xf97377abe1f55569a8" - }, - { - "id": "0xf660870bd38d106e61f0d3539ed25b1320bc90e8", - "chain": "eth", - "name": "ApeWL.io (Otherside Beta)", - "symbol": "Otherside Beta Access (ApeWL.io)", - "display_symbol": null, - "optimized_symbol": "Otherside Beta Access (ApeWL.io)", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1651990300, - "amount": 1, - "raw_amount": 1000000000000000000, - "raw_amount_hex_str": "0xde0b6b3a7640000" - }, - { - "id": "0xfd0205066521550d7d7ab19da8f72bb004b4c341", - "chain": "eth", - "name": "Liquidity Incentive Token", - "symbol": "LIT", - "display_symbol": null, - "optimized_symbol": "LIT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfd0205066521550d7d7ab19da8f72bb004b4c341/975226f93f2d8402ee4662af6e42223d.png", - "protocol_id": "", - "price": 0.06534144231161343, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1672973831, - "amount": 473534.64662721934, - "raw_amount": 4.7353464662721936e23, - "raw_amount_hex_str": "0x64465d58755f2f8a9736" - }, - { - "id": "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6", - "chain": "eth", - "name": "Synth sBTC", - "symbol": "sBTC", - "display_symbol": null, - "optimized_symbol": "sBTC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6/3e0d9a14a6f727b7bec8586c40d7b4c3.png", - "protocol_id": "", - "price": 23537.93, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1569481945, - "amount": 0.33063353699880194, - "raw_amount": 330633536998801900, - "raw_amount_hex_str": "0x496a5733ba50201" - }, - { - "id": "0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462", - "chain": "eth", - "name": "pub.finance", - "symbol": "PINT", - "display_symbol": null, - "optimized_symbol": "PINT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462/47dba101f922e80f0aceac36a98db7ef.png", - "protocol_id": "", - "price": 0.15765823825204556, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1604354259, - "amount": 12.988481226315663, - "raw_amount": 12988481226315663000, - "raw_amount_hex_str": "0xb4405adc0260075d" - }, - { - "id": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", - "chain": "eth", - "name": "Amp", - "symbol": "AMP", - "display_symbol": null, - "optimized_symbol": "AMP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xff20817765cb7f73d4bde2e66e067e58d11095c2/c76dd38f00542547f74cd6a66a230287.png", - "protocol_id": "", - "price": 0.004762201497598489, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1597105639, - "amount": 167.132070499232, - "raw_amount": 167132070499232000000, - "raw_amount_hex_str": "0x90f6c649d8a43de79" - } -] diff --git a/FeeSwap/2023-02-03-matic.json b/FeeSwap/2023-02-03-matic.json deleted file mode 100644 index 2009dc7a7..000000000 --- a/FeeSwap/2023-02-03-matic.json +++ /dev/null @@ -1,4505 +0,0 @@ -[ - { - "id": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", - "chain": "matic", - "name": "Chi Gastoken by 1inch", - "symbol": "CHI", - "display_symbol": null, - "optimized_symbol": "CHI", - "decimals": 0, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1620924200, - "amount": 476, - "raw_amount": 476, - "raw_amount_hex_str": "0x1dc" - }, - { - "id": "0x0075a4610de0a3778265a910ba5d2269f2b10145", - "chain": "matic", - "name": "worm5", - "symbol": "worm5", - "display_symbol": null, - "optimized_symbol": "worm5", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1657349481, - "amount": 0.07368293508490016, - "raw_amount": 73682935084900160, - "raw_amount_hex_str": "0x105c63d33be5f3e" - }, - { - "id": "0x00e5646f60ac6fb446f621d146b6e1886f002905", - "chain": "matic", - "name": "Rai Reflex Index (PoS)", - "symbol": "RAI", - "display_symbol": null, - "optimized_symbol": "RAI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x00e5646f60ac6fb446f621d146b6e1886f002905/57a7ea8eca0147dccd9c23577ff62a8a.png", - "protocol_id": "", - "price": 2.8313114883508903, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614315673, - "amount": 0.011470374753298445, - "raw_amount": 11470374753298444, - "raw_amount_hex_str": "0x28c03ebc9c680d" - }, - { - "id": "0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6", - "chain": "matic", - "name": "Algebra", - "symbol": "ALGB", - "display_symbol": null, - "optimized_symbol": "ALGB", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6/c17cf7def347fb9539f238fa66d27af9.png", - "protocol_id": "", - "price": 0.005768073318272329, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1635429378, - "amount": 3.5861834146808755, - "raw_amount": 3586183414680875500, - "raw_amount_hex_str": "0x31c4aed0b37371e0" - }, - { - "id": "0x0297e37f1873d2dab4487aa67cd56b58e2f27875", - "chain": "matic", - "name": "Balancer Polygon Base Pool", - "symbol": "B-POLYBASE", - "display_symbol": null, - "optimized_symbol": "B-POLYBASE", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 12.873848971153874, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1624480165, - "amount": 0.00160813879928757, - "raw_amount": 1608138799287570, - "raw_amount_hex_str": "0x5b697fde18d12" - }, - { - "id": "0x02d2e2d7a89d6c5cb3681cfcb6f7dac02a55eda4", - "chain": "matic", - "name": "Balancer csMATIC Stable Pool", - "symbol": "B-csMATIC-Stable", - "display_symbol": null, - "optimized_symbol": "B-csMATIC-Stable", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.2058483482463693, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667478958, - "amount": 1216.592301769843, - "raw_amount": 1.2165923017698433e21, - "raw_amount_hex_str": "0x41f39c1cad6a564ebb" - }, - { - "id": "0x033d942a6b495c4071083f4cde1f17e986fe856c", - "chain": "matic", - "name": "AGA Token (PoS)", - "symbol": "AGA", - "display_symbol": null, - "optimized_symbol": "AGA", - "decimals": 4, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x033d942a6b495c4071083f4cde1f17e986fe856c/8bee453fd14f25c1b68e3a45a1468bfc.png", - "protocol_id": "", - "price": 0.05769983332138276, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614168122, - "amount": 40796.9866, - "raw_amount": 407969866, - "raw_amount_hex_str": "0x1851204a" - }, - { - "id": "0x034b2090b579228482520c589dbd397c53fc51cc", - "chain": "matic", - "name": "Vision Token (PoS)", - "symbol": "VISION", - "display_symbol": null, - "optimized_symbol": "VISION", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x034b2090b579228482520c589dbd397c53fc51cc/3b7732925419fac1ffa0176ebf974d1e.png", - "protocol_id": "", - "price": 0.6572931657939126, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1611740444, - "amount": 4422.958595058485, - "raw_amount": 4.422958595058485e21, - "raw_amount_hex_str": "0xefc4e1805de1cb2dbd" - }, - { - "id": "0x04977e869e56f75b7816efd41c75cc4f7d4325af", - "chain": "matic", - "name": "Bancor USD Token (Wormhole)", - "symbol": "USDB", - "display_symbol": null, - "optimized_symbol": "USDB", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1643050996, - "amount": 0.000533591955354068, - "raw_amount": 533591955354068, - "raw_amount_hex_str": "0x1e54c8ef431d4" - }, - { - "id": "0x05f21bacc4fd8590d1eaca9830a64b66a733316c", - "chain": "matic", - "name": "Balancer tetuQi StablePool", - "symbol": "B-tetuQi-Stable", - "display_symbol": null, - "optimized_symbol": "B-tetuQi-Stable", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 0.10776422651210163, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667222474, - "amount": 2665.309711399179, - "raw_amount": 2.665309711399179e21, - "raw_amount_hex_str": "0x907c9a4519faf7395f" - }, - { - "id": "0x0749902ae8ed9c6a508271bad18f185dba7185d4", - "chain": "matic", - "name": "Wrapped Ether", - "symbol": "WETH", - "display_symbol": null, - "optimized_symbol": "WETH", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1640319665, - "amount": 3.3099089810636584, - "raw_amount": 3309908981063658500, - "raw_amount_hex_str": "0x2def28ae7f2cab25" - }, - { - "id": "0x07c204761e3278c67b881eab804dc9e126011d88", - "chain": "matic", - "name": "Australian Dollar", - "symbol": "AUD", - "display_symbol": null, - "optimized_symbol": "AUD", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1646585191, - "amount": 208737526.19923773, - "raw_amount": 2.087375261992377e26, - "raw_amount_hex_str": "0xaca9e3f81f028377e40e9d" - }, - { - "id": "0x0839ded1edc8ae842574f0fe3ced4dcb456352dd", - "chain": "matic", - "name": "TheSandBox.PRO", - "symbol": "TheSandBox.PRO", - "display_symbol": null, - "optimized_symbol": "TheSandBox.PRO", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1673603743, - "amount": 52, - "raw_amount": 5200, - "raw_amount_hex_str": "0x1450" - }, - { - "id": "0x089443665084fc50aa6f1d0dc0307333fd481b85", - "chain": "matic", - "name": "Balancer csMATIC Stable Pool", - "symbol": "B-csMATIC-Stable", - "display_symbol": null, - "optimized_symbol": "B-csMATIC-Stable", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.208068894440978, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667288762, - "amount": 0.00017526065290032, - "raw_amount": 175260652900320, - "raw_amount_hex_str": "0x9f660cf58fe0" - }, - { - "id": "0x089d0ffb1ca0776d5b0a4f14c2ac95fc7b23f68b", - "chain": "matic", - "name": "UNI", - "symbol": "www.uniswap.cab", - "display_symbol": null, - "optimized_symbol": "www.uniswap.cab", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668793920, - "amount": 38.48, - "raw_amount": 3848, - "raw_amount_hex_str": "0xf08" - }, - { - "id": "0x08e6d1f0c4877ef2993ad733fc6f1d022d0e9dbf", - "chain": "matic", - "name": "Jarvis Synthetic Polish Zloty", - "symbol": "jPLN", - "display_symbol": null, - "optimized_symbol": "jPLN", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": null, - "amount": 1.5107369408375697, - "raw_amount": 1510736940837569800, - "raw_amount_hex_str": "0x14f7373e53af04f3" - }, - { - "id": "0x0aa7e58f2e8439d99b325501d857feaca8d8fd58", - "chain": "matic", - "name": "zBud", - "symbol": "ZBUD", - "display_symbol": null, - "optimized_symbol": "ZBUD", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649118900, - "amount": 0.00014382500598632, - "raw_amount": 143825005986320, - "raw_amount_hex_str": "0x82cede644210" - }, - { - "id": "0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a", - "chain": "matic", - "name": "SushiToken (PoS)", - "symbol": "SUSHI", - "display_symbol": null, - "optimized_symbol": "SUSHI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a/930cd4a36e687eaeddbcf9f3fd22d023.png", - "protocol_id": "matic_sushiswap_lending", - "price": 1.541426824003695, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1612502308, - "amount": 660.2095382721567, - "raw_amount": 660209538272156700000, - "raw_amount_hex_str": "0x23ca3f751e548f11ac" - }, - { - "id": "0x0b8319061732b34cab22445fa83b81f950e4b7ed", - "chain": "matic", - "name": "Balancer stMATIC Stable Pool", - "symbol": "B-stMATIC-Stable", - "display_symbol": null, - "optimized_symbol": "B-stMATIC-Stable", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1661013919, - "amount": 0.000486214953024705, - "raw_amount": 486214953024705, - "raw_amount_hex_str": "0x1ba35bd8f3cc1" - }, - { - "id": "0x0bb33cfe1ffebde0d59d6dcc80f29c14921f04d4", - "chain": "matic", - "name": "Wrapped BNB (Wormhole)", - "symbol": "WBNB", - "display_symbol": null, - "optimized_symbol": "WBNB", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1661638841, - "amount": 0.44784462197714187, - "raw_amount": 447844621977141900, - "raw_amount_hex_str": "0x637104f97844276" - }, - { - "id": "0x0d0b8488222f7f83b23e365320a4021b12ead608", - "chain": "matic", - "name": "NextEarthToken", - "symbol": "NXTT", - "display_symbol": null, - "optimized_symbol": "NXTT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0d0b8488222f7f83b23e365320a4021b12ead608/2cb30f9b653fb3e5520b516e99112f16.png", - "protocol_id": "", - "price": 0.0011624016390560418, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1642939663, - "amount": 97.64193334249352, - "raw_amount": 97641933342493500000, - "raw_amount_hex_str": "0x54b0dd50bbdb20abb" - }, - { - "id": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", - "chain": "matic", - "name": "Wrapped Matic", - "symbol": "WMATIC", - "display_symbol": "WMATIC", - "optimized_symbol": "WMATIC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270/f6e604ba0324726a3d687c618aa4f163.png", - "protocol_id": "", - "price": 1.189098, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1601030209, - "amount": 4443.494248093509, - "raw_amount": 4.4434942480935084e21, - "raw_amount_hex_str": "0xf0e1decbffe10764c2" - }, - { - "id": "0x0e1ebcd5f01940dd4d7d5566b093739279dd9037", - "chain": "matic", - "name": "FauxETH", - "symbol": "FETH", - "display_symbol": null, - "optimized_symbol": "FETH", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1660866904, - "amount": 0.04724874921097777, - "raw_amount": 47248749210977770, - "raw_amount_hex_str": "0xa7dc7cb0cd45ea" - }, - { - "id": "0x0e7be86d89eea872b81dfd92967e3d46ca04e638", - "chain": "matic", - "name": "Dumb", - "symbol": "DMB", - "display_symbol": null, - "optimized_symbol": "DMB", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1673730932, - "amount": 52.12036035794216, - "raw_amount": 52120360357942160000, - "raw_amount_hex_str": "0x2d350b7999c7e6a80" - }, - { - "id": "0x0e9b89007eee9c958c0eda24ef70723c2c93dd58", - "chain": "matic", - "name": "Ankr MATIC Reward Bearing Certif", - "symbol": "aMATICc", - "display_symbol": null, - "optimized_symbol": "aMATICc", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0e9b89007eee9c958c0eda24ef70723c2c93dd58/e6f00926feecfec6a30471ad8e66a87b.png", - "protocol_id": "", - "price": 1.3302201278423451, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1652363702, - "amount": 7.752596085127681, - "raw_amount": 7752596085127682000, - "raw_amount_hex_str": "0x6b96c1107d1e96d5" - }, - { - "id": "0x0ec3854a9bae95e4c5ccce224a1257e1feb5372b", - "chain": "matic", - "name": "Taxi", - "symbol": "TAXI", - "display_symbol": null, - "optimized_symbol": "TAXI", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1642383009, - "amount": 121.67006580407893, - "raw_amount": 121670065804078940000, - "raw_amount_hex_str": "0x69882e8369286ebb5" - }, - { - "id": "0x104592a158490a9228070e0a8e5343b499e125d0", - "chain": "matic", - "name": "Frax (PoS)", - "symbol": "FRAX", - "display_symbol": null, - "optimized_symbol": "FRAX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x104592a158490a9228070e0a8e5343b499e125d0/0df22754441275abbc3810bd384c1bca.png", - "protocol_id": "", - "price": 0.999491186115572, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1612970680, - "amount": 0.000101343418296087, - "raw_amount": 101343418296087, - "raw_amount_hex_str": "0x5c2bda72a717" - }, - { - "id": "0x10d92f4e83d852cb0421edf0363b55a507cac838", - "chain": "matic", - "name": "VitalikHugeCock", - "symbol": "VHC", - "display_symbol": null, - "optimized_symbol": "VHC", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1661954108, - "amount": 0.001069272432652004, - "raw_amount": 1069272432652004, - "raw_amount_hex_str": "0x3cc7f63842ee4" - }, - { - "id": "0x122409bd62da65f9ef89111ec26c387755eb5651", - "chain": "matic", - "name": "AnyCoin", - "symbol": "AYS", - "display_symbol": null, - "optimized_symbol": "AYS", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 2.007901883464219, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1640168307, - "amount": 1.4028587294383916, - "raw_amount": 1402858729438391600, - "raw_amount_hex_str": "0x1377f494ee3b2d27" - }, - { - "id": "0x1250a45076bbbf9527f35fbca5edd71e21507647", - "chain": "matic", - "name": "Region1", - "symbol": "Region1", - "display_symbol": null, - "optimized_symbol": "Region1", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1644912110, - "amount": 0.001360869458339711, - "raw_amount": 1360869458339711, - "raw_amount_hex_str": "0x4d5b41ca6677f" - }, - { - "id": "0x130ce4e4f76c2265f94a961d70618562de0bb8d2", - "chain": "matic", - "name": "Inverse BTC Flexible Leverage Index", - "symbol": "iBTC-FLI-P", - "display_symbol": null, - "optimized_symbol": "iBTC-FLI-P", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_tokensets", - "price": 178.44984674740002, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1646671544, - "amount": 5.631601589579065, - "raw_amount": 5631601589579065000, - "raw_amount_hex_str": "0x4e2777cee762a867" - }, - { - "id": "0x14f2c84a58e065c846c5fdddade0d3548f97a517", - "chain": "matic", - "name": "MATICSWAP.NET", - "symbol": "MATICSWAP.NET", - "display_symbol": null, - "optimized_symbol": "MATICSWAP.NET", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1643927340, - "amount": 5800, - "raw_amount": 5.8e21, - "raw_amount_hex_str": "0x13a6b2b564871a00000" - }, - { - "id": "0x1599fe55cda767b1f631ee7d414b41f5d6de393d", - "chain": "matic", - "name": "Milk", - "symbol": "MILK", - "display_symbol": null, - "optimized_symbol": "MILK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1599fe55cda767b1f631ee7d414b41f5d6de393d/90af6c99b9bd7e8bcaf24029eda2c80e.png", - "protocol_id": "", - "price": 0.0002177405607199935, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1644922085, - "amount": 4.8036594422e-8, - "raw_amount": 48036594422, - "raw_amount_hex_str": "0xb2f3442f6" - }, - { - "id": "0x1659ffb2d40dfb1671ac226a0d9dcc95a774521a", - "chain": "matic", - "name": "Daily COP", - "symbol": "DLYCOP", - "display_symbol": null, - "optimized_symbol": "DLYCOP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1659ffb2d40dfb1671ac226a0d9dcc95a774521a/8a4871757290653b6f8e3a2cc438953d.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1630156574, - "amount": 219025.6001574322, - "raw_amount": 2.190256001574322e23, - "raw_amount_hex_str": "0x2e6166cdafd20815597d" - }, - { - "id": "0x172370d5cd63279efa6d502dab29171933a610af", - "chain": "matic", - "name": "CRV (PoS)", - "symbol": "CRV", - "display_symbol": null, - "optimized_symbol": "CRV", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x172370d5cd63279efa6d502dab29171933a610af/9f6990ab9d8be30fc1ff159ebf45e638.png", - "protocol_id": "matic_curve", - "price": 1.091, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1615352367, - "amount": 0.8923096569367024, - "raw_amount": 892309656936702500, - "raw_amount_hex_str": "0xc621ee7c35ce1d5" - }, - { - "id": "0x197e5d6ccff265ac3e303a34db360ee1429f5d1a", - "chain": "matic", - "name": "Jarvis Synthetic Swedish Krona", - "symbol": "jSEK", - "display_symbol": null, - "optimized_symbol": "jSEK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x197e5d6ccff265ac3e303a34db360ee1429f5d1a/80750a30b954db616e7bebfd9d8ff60f.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": null, - "amount": 3.5849701641623724, - "raw_amount": 3584970164162372600, - "raw_amount_hex_str": "0x31c05f5ecd45a34c" - }, - { - "id": "0x1a13f4ca1d028320a707d99520abfefca3998b7f", - "chain": "matic", - "name": "Aave Matic Market USDC", - "symbol": "amUSDC", - "display_symbol": null, - "optimized_symbol": "amUSDC", - "decimals": 6, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1a13f4ca1d028320a707d99520abfefca3998b7f/3b059e5f3e870c53601cac8acd6e24f3.png", - "protocol_id": "matic_aave", - "price": 1, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1617181351, - "amount": 0.000604, - "raw_amount": 604, - "raw_amount_hex_str": "0x25c" - }, - { - "id": "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6", - "chain": "matic", - "name": "(PoS) Wrapped BTC", - "symbol": "WBTC", - "display_symbol": null, - "optimized_symbol": "WBTC", - "decimals": 8, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6/d3c52e7c7449afa8bd4fad1c93f50d93.png", - "protocol_id": "", - "price": 23379.25, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1599513849, - "amount": 0.00329865, - "raw_amount": 329865, - "raw_amount_hex_str": "0x50889" - }, - { - "id": "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c", - "chain": "matic", - "name": "Kyber Network Crystal v2 (PoS)", - "symbol": "KNC", - "display_symbol": null, - "optimized_symbol": "KNC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c/1d25e188deb06e642ea6f4f4f8eb0a0c.png", - "protocol_id": "matic_dmm_exchange", - "price": 0.83, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623044638, - "amount": 1.1307949138971207, - "raw_amount": 1130794913897120600, - "raw_amount_hex_str": "0xfb163fba4a8036b" - }, - { - "id": "0x1ed0855c93bb3eb531232d4350f49861b026d087", - "chain": "matic", - "name": "Curve.fi Factory USD Metapool: SoftMiner", - "symbol": "SoftMiner3CRV-f", - "display_symbol": null, - "optimized_symbol": "SoftMiner3CRV-f", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_curve", - "price": 0.0003806064180879446, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647086256, - "amount": 0.04496430877135173, - "raw_amount": 44964308771351730, - "raw_amount_hex_str": "0x9fbeccf3e32cb0" - }, - { - "id": "0x20d3922b4a1a8560e1ac99fba4fade0c849e2142", - "chain": "matic", - "name": "Matic Aave interest bearing WETH", - "symbol": "maWETH", - "display_symbol": null, - "optimized_symbol": "maWETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x20d3922b4a1a8560e1ac99fba4fade0c849e2142/532c85fc1f3769c2bf4714ed21dc2a17.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": null, - "amount": 0.000003729209497841, - "raw_amount": 3729209497841, - "raw_amount_hex_str": "0x364463518f1" - }, - { - "id": "0x235737dbb56e8517391473f7c964db31fa6ef280", - "chain": "matic", - "name": "KastaToken", - "symbol": "KASTA", - "display_symbol": null, - "optimized_symbol": "KASTA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x235737dbb56e8517391473f7c964db31fa6ef280/ca4f5b799ca31300dded34b823020d65.png", - "protocol_id": "", - "price": 0.036159946080445406, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1639574595, - "amount": 0.004694687464146373, - "raw_amount": 4694687464146373, - "raw_amount_hex_str": "0x10adcb1aa1c5c5" - }, - { - "id": "0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57", - "chain": "matic", - "name": "Wrapped LUNA Token (PoS)", - "symbol": "LUNA", - "display_symbol": null, - "optimized_symbol": "LUNA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57/b33049dfcb0a2382ffb36284f4c29814.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614315957, - "amount": 5130.541080210441, - "raw_amount": 5.13054108021044e21, - "raw_amount_hex_str": "0x116208f79ae04352c2c" - }, - { - "id": "0x253f34dc019d41082ddc12d3a960cbc99e7380fd", - "chain": "matic", - "name": "Doaibu", - "symbol": "DOA", - "display_symbol": null, - "optimized_symbol": "DOA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x253f34dc019d41082ddc12d3a960cbc99e7380fd/13a5e0fc57115de4b2c98ba3e28b8212.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1640955073, - "amount": 15.934603631953523, - "raw_amount": 15934603631953523000, - "raw_amount_hex_str": "0xdd231593ff3d31f3" - }, - { - "id": "0x2551a4269f2147d0485b09eacc6a4f3e4bb4bd64", - "chain": "matic", - "name": "UNI", - "symbol": "uni-router.app", - "display_symbol": null, - "optimized_symbol": "uni-router.app", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668450234, - "amount": 10, - "raw_amount": 1000, - "raw_amount_hex_str": "0x3e8" - }, - { - "id": "0x255707b70bf90aa112006e1b07b9aea6de021424", - "chain": "matic", - "name": "TETU Reward Token", - "symbol": "TETU", - "display_symbol": null, - "optimized_symbol": "TETU", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x255707b70bf90aa112006e1b07b9aea6de021424/fec6ade5dff80728a4eeeb56a79d9634.png", - "protocol_id": "matic_tetu", - "price": 0.0193894975088641, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1627742131, - "amount": 86003.48025834507, - "raw_amount": 8.600348025834507e22, - "raw_amount_hex_str": "0x1236420cbcff5a0e3ff0" - }, - { - "id": "0x25a88c235b406498bac270650c52086611e551d6", - "chain": "matic", - "name": "Balancer", - "symbol": "BalancerV2.com", - "display_symbol": null, - "optimized_symbol": "BalancerV2.com", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670158391, - "amount": 400, - "raw_amount": 40000, - "raw_amount_hex_str": "0x9c40" - }, - { - "id": "0x263026e7e53dbfdce5ae55ade22493f828922965", - "chain": "matic", - "name": "Ricochet", - "symbol": "RIC", - "display_symbol": null, - "optimized_symbol": "RIC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x263026e7e53dbfdce5ae55ade22493f828922965/322aa7d2d694f9455b0207d4f806f379.png", - "protocol_id": "", - "price": 0.013686229645257163, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1625856356, - "amount": 20.14831825837788, - "raw_amount": 20148318258377880000, - "raw_amount_hex_str": "0x1179d34b4a4217691" - }, - { - "id": "0x27610a91b1b620dd7130593d47b781ac5f8448b1", - "chain": "matic", - "name": "FFA", - "symbol": "FFA", - "display_symbol": null, - "optimized_symbol": "FFA", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1657151346, - "amount": 0.000295335548531078, - "raw_amount": 295335548531078, - "raw_amount_hex_str": "0x10c9b2a75b186" - }, - { - "id": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174", - "chain": "matic", - "name": "USD Coin (PoS)", - "symbol": "USDC", - "display_symbol": null, - "optimized_symbol": "USDC", - "decimals": 6, - "logo_url": "https://static.debank.com/image/coin/logo_url/usdc/e87790bfe0b3f2ea855dc29069b38818.png", - "protocol_id": "", - "price": 1, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1601199611, - "amount": 630.835406, - "raw_amount": 630835406, - "raw_amount_hex_str": "0x2599c8ce" - }, - { - "id": "0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015", - "chain": "matic", - "name": "THX Network (PoS)", - "symbol": "THX", - "display_symbol": null, - "optimized_symbol": "THX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015/0939518c154bd60a34da6785c93c412d.png", - "protocol_id": "", - "price": 0.03616266032800164, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1635705305, - "amount": 55281.76142754461, - "raw_amount": 5.528176142754461e22, - "raw_amount_hex_str": "0xbb4d48e0306e00883fe" - }, - { - "id": "0x2a227fc77bb2cf8f1881a04ecc8fa01ec57ec9fc", - "chain": "matic", - "name": "Jarvis Synthetic Turkish Lira", - "symbol": "jTRY", - "display_symbol": null, - "optimized_symbol": "jTRY", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1664900882, - "amount": 3.8974219169202837, - "raw_amount": 3897421916920283600, - "raw_amount_hex_str": "0x36166c9581db027c" - }, - { - "id": "0x2b4fa97b84698dc1540d13d33754757bac3c8115", - "chain": "matic", - "name": "PlannerDAO Opportunity Index (PoS)", - "symbol": "PDAO", - "display_symbol": null, - "optimized_symbol": "PDAO", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.2732800508190191, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1646654414, - "amount": 9.94455980779099, - "raw_amount": 9944559807790990000, - "raw_amount_hex_str": "0x8a022c74e7024141" - }, - { - "id": "0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b", - "chain": "matic", - "name": "Avalanche Token", - "symbol": "AVAX", - "display_symbol": null, - "optimized_symbol": "AVAX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b/8da43cd8fbb77a5dd325a3c4f40e082b.png", - "protocol_id": "", - "price": 21.15, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1627047264, - "amount": 31.872334953555217, - "raw_amount": 31872334953555220000, - "raw_amount_hex_str": "0x1ba5147c5fceccff5" - }, - { - "id": "0x2d46979fd4c5f7a04f65111399cff3da2dab5bd9", - "chain": "matic", - "name": "Balancer aMATICc Composable Stable Pool", - "symbol": "B-aMATICc-Stable", - "display_symbol": null, - "optimized_symbol": "B-aMATICc-Stable", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.2485427675165262, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1665413166, - "amount": 0.003311758571077835, - "raw_amount": 3311758571077835, - "raw_amount_hex_str": "0xbc406e13600cb" - }, - { - "id": "0x2e1ad108ff1d8c782fcbbb89aad783ac49586756", - "chain": "matic", - "name": "TrueUSD (PoS)", - "symbol": "TUSD", - "display_symbol": null, - "optimized_symbol": "TUSD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x2e1ad108ff1d8c782fcbbb89aad783ac49586756/27ee4a21b4710859ac742c37eb84a21f.png", - "protocol_id": "", - "price": 0.9999, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1620793831, - "amount": 1634.2080786739425, - "raw_amount": 1.6342080786739424e21, - "raw_amount_hex_str": "0x589731652601f470e6" - }, - { - "id": "0x2fd23d735860bc64090d9807ff6c0d1a3d721f08", - "chain": "matic", - "name": "softbalanced.com", - "symbol": "USBL", - "display_symbol": null, - "optimized_symbol": "USBL", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1632299164, - "amount": 0.001334074306642412, - "raw_amount": 1334074306642412, - "raw_amount_hex_str": "0x4bd556126c1ec" - }, - { - "id": "0x329434fe066ac71d5fb93489f955a6959658097b", - "chain": "matic", - "name": "Aave interest bearing DAI (PoS)", - "symbol": "aDAI", - "display_symbol": null, - "optimized_symbol": "aDAI", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1621230074, - "amount": 0.001407130919444456, - "raw_amount": 1407130919444456, - "raw_amount_hex_str": "0x4ffc7329b1fe8" - }, - { - "id": "0x340f412860da7b7823df372a2b59ff78b7ae6abc", - "chain": "matic", - "name": "Inverse MATIC Flexible Leverage Index", - "symbol": "iMATIC-FLI-P", - "display_symbol": null, - "optimized_symbol": "iMATIC-FLI-P", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x340f412860da7b7823df372a2b59ff78b7ae6abc/695c068ccc48dff7a5716ce39b7527e0.png", - "protocol_id": "matic_tokensets", - "price": 63.31257958397797, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1643923390, - "amount": 1.7859084717761378, - "raw_amount": 1785908471776137700, - "raw_amount_hex_str": "0x18c8d24afd93d1f2" - }, - { - "id": "0x360873c9b6080962bb4f96bb2089728b6761a1fc", - "chain": "matic", - "name": "Aave Matic Market USDT", - "symbol": "amUSDT ", - "display_symbol": null, - "optimized_symbol": "amUSDT ", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1659664487, - "amount": 7.816116463518676, - "raw_amount": 7816116463518676000, - "raw_amount_hex_str": "0x6c786c83131cf4ee" - }, - { - "id": "0x37b8e1152fb90a867f3dcca6e8d537681b04705e", - "chain": "matic", - "name": "Proto Gyro Dollar", - "symbol": "p-GYD", - "display_symbol": null, - "optimized_symbol": "p-GYD", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670004490, - "amount": 0.02255977034286656, - "raw_amount": 22559770342866564, - "raw_amount_hex_str": "0x5025fdd9803e83" - }, - { - "id": "0x3809dcdd5dde24b37abe64a5a339784c3323c44f", - "chain": "matic", - "name": "TrustSwap Token (PoS)", - "symbol": "SWAP", - "display_symbol": null, - "optimized_symbol": "SWAP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x3809dcdd5dde24b37abe64a5a339784c3323c44f/ef086c4baf41e0e99532f23320adbe3a.png", - "protocol_id": "", - "price": 0.21838557125730063, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1612673727, - "amount": 457.87987107753844, - "raw_amount": 457879871077538460000, - "raw_amount_hex_str": "0x18d25c14cb2255bd5e" - }, - { - "id": "0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7", - "chain": "matic", - "name": "Aavegotchi GHST Token (PoS)", - "symbol": "GHST", - "display_symbol": null, - "optimized_symbol": "GHST", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7/70918cb9df86b2f332c9649077756581.png", - "protocol_id": "matic_aavegotchi", - "price": 1.168322647297486, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1609946620, - "amount": 1.3341067516371565, - "raw_amount": 1334106751637156400, - "raw_amount_hex_str": "0x1283b305afc87261" - }, - { - "id": "0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4", - "chain": "matic", - "name": "Staked MATIC (PoS)", - "symbol": "stMATIC", - "display_symbol": null, - "optimized_symbol": "stMATIC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4/8f7443e9c28581c4a108b8232d426332.png", - "protocol_id": "", - "price": 1.2653434589759471, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1645815648, - "amount": 1041.7870464740931, - "raw_amount": 1.041787046474093e21, - "raw_amount_hex_str": "0x3879b31724d3ae4924" - }, - { - "id": "0x3ce9db0a41807f32ece5758305bc9da239687ec6", - "chain": "matic", - "name": "Shimagnum", - "symbol": "SHM", - "display_symbol": null, - "optimized_symbol": "SHM", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647802193, - "amount": 1721.5933631803925, - "raw_amount": 1.7215933631803925e21, - "raw_amount_hex_str": "0x5d53e84a6b855d8154" - }, - { - "id": "0x3d468ab2329f296e1b9d8476bb54dd77d8c2320f", - "chain": "matic", - "name": "20WETH-80BAL", - "symbol": "20WETH-80BAL", - "display_symbol": null, - "optimized_symbol": "20WETH-80BAL", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 17.572964667672075, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1648637234, - "amount": 1.8752152232461576, - "raw_amount": 1875215223246157600, - "raw_amount_hex_str": "0x1a061a4f6afdf745" - }, - { - "id": "0x3ddf130b136ae0b5c47d55ad9b800208d345e88d", - "chain": "matic", - "name": "quick-v2.xyz", - "symbol": " QuickSwap Token", - "display_symbol": null, - "optimized_symbol": " QuickSwap Token", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667616274, - "amount": 8933, - "raw_amount": 8.933e21, - "raw_amount_hex_str": "0x1e442474af004740000" - }, - { - "id": "0x3eae5bd24b2038fb40688e5f0b4682a773db3733", - "chain": "matic", - "name": "Poly Luna Classic ", - "symbol": "PLUNC", - "display_symbol": null, - "optimized_symbol": "PLUNC", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1663121924, - "amount": 210.13605500398623, - "raw_amount": 210136055003986230000, - "raw_amount_hex_str": "0xb64393cad768b6393" - }, - { - "id": "0x403e967b044d4be25170310157cb1a4bf10bdd0f", - "chain": "matic", - "name": "Aavegotchi FUD", - "symbol": "FUD", - "display_symbol": null, - "optimized_symbol": "FUD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x403e967b044d4be25170310157cb1a4bf10bdd0f/9ee3711b83317d404722ab0fa5a59f03.png", - "protocol_id": "", - "price": 0.0016403282951976343, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1648566392, - "amount": 0.7486273693632914, - "raw_amount": 748627369363291400, - "raw_amount_hex_str": "0xa63a8a04408bd19" - }, - { - "id": "0x4227c55bf21e95a87c00988fec98c50e9aba866c", - "chain": "matic", - "name": "Fluffy Corgi Inu", - "symbol": "FluffyCorgi", - "display_symbol": null, - "optimized_symbol": "FluffyCorgi", - "decimals": 9, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1638530028, - "amount": 9746.866254216, - "raw_amount": 9746866254216, - "raw_amount_hex_str": "0x8dd5e803188" - }, - { - "id": "0x42e5e06ef5b90fe15f853f59299fc96259209c5c", - "chain": "matic", - "name": "Aavegotchi KEK", - "symbol": "KEK", - "display_symbol": null, - "optimized_symbol": "KEK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x42e5e06ef5b90fe15f853f59299fc96259209c5c/4f2a4b19f6724aa0b444551f29e933c5.png", - "protocol_id": "", - "price": 0.020532418983106277, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1648566500, - "amount": 0.005256985673352816, - "raw_amount": 5256985673352816, - "raw_amount_hex_str": "0x12ad335ba64670" - }, - { - "id": "0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f", - "chain": "matic", - "name": "Rainbow Token", - "symbol": "RBW", - "display_symbol": null, - "optimized_symbol": "RBW", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f/ed0f2b630b10a8c2049d5d2ec4c27a22.png", - "protocol_id": "matic_cryptounicorns", - "price": 0.027649795005189014, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1645813586, - "amount": 59451.93482586192, - "raw_amount": 5.945193482586192e22, - "raw_amount_hex_str": "0xc96e556164556b58ca8" - }, - { - "id": "0x438374ea6e7aafee3be6f925ba50071dd22ed70b", - "chain": "matic", - "name": "Galaxy Coin", - "symbol": "GLXY", - "display_symbol": null, - "optimized_symbol": "GLXY", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.1478432265752501, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1630071752, - "amount": 21405.51970680741, - "raw_amount": 2.140551970680741e22, - "raw_amount_hex_str": "0x4886542aa098f352e11" - }, - { - "id": "0x438f1479ce240424f3ccaea5c112338075c4eede", - "chain": "matic", - "name": "t.me/maticroll", - "symbol": "t.me/maticroll", - "display_symbol": null, - "optimized_symbol": "t.me/maticroll", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1645355794, - "amount": 224.34022654796, - "raw_amount": 224340226547960000000, - "raw_amount_hex_str": "0xc295897709dd02e00" - }, - { - "id": "0x45c32fa6df82ead1e2ef74d17b76547eddfaff89", - "chain": "matic", - "name": "Frax", - "symbol": "FRAX", - "display_symbol": null, - "optimized_symbol": "FRAX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x45c32fa6df82ead1e2ef74d17b76547eddfaff89/aa8e1bfa48ac5f3c6929273a41cc5f8f.png", - "protocol_id": "", - "price": 0.999491186115572, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1632204114, - "amount": 953.2421720019092, - "raw_amount": 953242172001909200000, - "raw_amount_hex_str": "0x33ace480f1379bcf2b" - }, - { - "id": "0x46c2c34c8a9722da85ba2f5efa7c7283d56b8c75", - "chain": "matic", - "name": "SKRSKR", - "symbol": "SKR", - "display_symbol": null, - "optimized_symbol": "SKR", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1640617323, - "amount": 525.9419383648042, - "raw_amount": 525941938364804200000, - "raw_amount_hex_str": "0x1c82e91e620a8b3f61" - }, - { - "id": "0x4731479cd56e3a55f8207db9734e3fdb5e136d43", - "chain": "matic", - "name": "u suck d", - "symbol": "usd", - "display_symbol": null, - "optimized_symbol": "usd", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1641207400, - "amount": 0.006920745651050211, - "raw_amount": 6920745651050211, - "raw_amount_hex_str": "0x189661aa1c96e3" - }, - { - "id": "0x47401399b2eca91930c99126df20a11531f99465", - "chain": "matic", - "name": "3BRL", - "symbol": "3BRL", - "display_symbol": null, - "optimized_symbol": "3BRL", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1666467911, - "amount": 6.99997816852e-7, - "raw_amount": 699997816852, - "raw_amount_hex_str": "0xa2fb1f0814" - }, - { - "id": "0x479d3214079c38ed9ab296d96b88bfe23eed0002", - "chain": "matic", - "name": "Brilliant", - "symbol": "BRL", - "display_symbol": null, - "optimized_symbol": "BRL", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1627661543, - "amount": 162.52742585394253, - "raw_amount": 162527425853942530000, - "raw_amount_hex_str": "0x8cf8568b4fae1f2d2" - }, - { - "id": "0x486880fb16408b47f928f472f57bec55ac6089d1", - "chain": "matic", - "name": "Jarvis Synthetic Philippine Peso", - "symbol": "jPHP", - "display_symbol": null, - "optimized_symbol": "jPHP", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": null, - "amount": 14.67107479433844, - "raw_amount": 14671074794338440000, - "raw_amount_hex_str": "0xcb9a20cb75bad33a" - }, - { - "id": "0x48e6b98ef6329f8f0a30ebb8c7c960330d648085", - "chain": "matic", - "name": "Balancer Aave Boosted StablePool", - "symbol": "bb-am-usd", - "display_symbol": null, - "optimized_symbol": "bb-am-usd", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.0025009599313575, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662565651, - "amount": 2530.8428366803405, - "raw_amount": 2.5308428366803407e21, - "raw_amount_hex_str": "0x89327ff6fb11a64695" - }, - { - "id": "0x4973f591784d9c94052a6c3ebd553fcd37bb0e55", - "chain": "matic", - "name": "Balancer 80SD-20maticX", - "symbol": "80SD-20maticX", - "display_symbol": null, - "optimized_symbol": "80SD-20maticX", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.0424593395614976, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667226107, - "amount": 694.3375099066374, - "raw_amount": 694337509906637400000, - "raw_amount_hex_str": "0x25a3de5e8096630b48" - }, - { - "id": "0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b", - "chain": "matic", - "name": "1337 (PoS)", - "symbol": "1337", - "display_symbol": null, - "optimized_symbol": "1337", - "decimals": 4, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1615178029, - "amount": 1.1063, - "raw_amount": 11063, - "raw_amount_hex_str": "0x2b37" - }, - { - "id": "0x4ace9026454357e2edc6d3582f5d25cdb4aa7392", - "chain": "matic", - "name": "AAVEPool.org", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1673523487, - "amount": 50.28, - "raw_amount": 5028, - "raw_amount_hex_str": "0x13a4" - }, - { - "id": "0x4c815d49301a82685862b15b67e05bbac0df3e4b", - "chain": "matic", - "name": "NODE", - "symbol": "NODE", - "display_symbol": null, - "optimized_symbol": "NODE", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647722115, - "amount": 0.000311541049977788, - "raw_amount": 311541049977788, - "raw_amount_hex_str": "0x11b584d9debbc" - }, - { - "id": "0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c", - "chain": "matic", - "name": "Jarvis Synthetic Euro", - "symbol": "jEUR", - "display_symbol": null, - "optimized_symbol": "jEUR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c/e530ffb2b377ed7b886a5768cae968c1.png", - "protocol_id": "", - "price": 1.0973000628824099, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": null, - "amount": 3.500282177434658, - "raw_amount": 3500282177434658300, - "raw_amount_hex_str": "0x30938018579fa53b" - }, - { - "id": "0x4e78011ce80ee02d2c3e649fb657e45898257815", - "chain": "matic", - "name": "Klima DAO", - "symbol": "KLIMA", - "display_symbol": null, - "optimized_symbol": "KLIMA", - "decimals": 9, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x4e78011ce80ee02d2c3e649fb657e45898257815/197079d025a14e33e533c512e6e158c6.png", - "protocol_id": "matic_klimadao", - "price": 1.925670531458322, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1633375647, - "amount": 0.000458678, - "raw_amount": 458678, - "raw_amount_hex_str": "0x6ffb6" - }, - { - "id": "0x4f025829c4b13df652f38abd2ab901185ff1e609", - "chain": "matic", - "name": "Inverse ETH Flexible Leverage Index", - "symbol": "iETH-FLI-P", - "display_symbol": null, - "optimized_symbol": "iETH-FLI-P", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_tokensets", - "price": 118.95031594158, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1643913869, - "amount": 2.885639402363928, - "raw_amount": 2885639402363927600, - "raw_amount_hex_str": "0x280bd9bf67c5bc50" - }, - { - "id": "0x4f9dd10e3e70991ee978037c164cd3141c425c7f", - "chain": "matic", - "name": "AAVEPool.com", - "symbol": "pAAVE", - "display_symbol": null, - "optimized_symbol": "pAAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1674658624, - "amount": 37.28, - "raw_amount": 3728, - "raw_amount_hex_str": "0xe90" - }, - { - "id": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", - "chain": "matic", - "name": "solace", - "symbol": "SOLACE", - "display_symbol": null, - "optimized_symbol": "SOLACE", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40/06d669f7d8a66cc1d92a277e9fa541a6.png", - "protocol_id": "matic_solace", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1643945879, - "amount": 28465.253814502325, - "raw_amount": 2.8465253814502324e22, - "raw_amount_hex_str": "0x6071ac098e9581b3dbf" - }, - { - "id": "0x505c1bbab813870a65e067c2fb4adcbfcbd0f850", - "chain": "matic", - "name": "MoonDAO test", - "symbol": "MooneyX", - "display_symbol": null, - "optimized_symbol": "MooneyX", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1658105160, - "amount": 4175.455725544422, - "raw_amount": 4.175455725544423e21, - "raw_amount_hex_str": "0xe25a16abdebe3f1802" - }, - { - "id": "0x50b728d8d964fd00c2d0aad81718b71311fef68a", - "chain": "matic", - "name": "Synthetix Network Token (PoS)", - "symbol": "SNX", - "display_symbol": null, - "optimized_symbol": "SNX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x50b728d8d964fd00c2d0aad81718b71311fef68a/fb568c26c7902169572abe8fa966e791.png", - "protocol_id": "", - "price": 2.560927360494572, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614597917, - "amount": 0.000158480674379362, - "raw_amount": 158480674379362, - "raw_amount_hex_str": "0x9023284cd662" - }, - { - "id": "0x5229cadb824fd5117f00e3614c138b62f2bd3156", - "chain": "matic", - "name": "XXPP.org", - "symbol": "XXPP.org", - "display_symbol": null, - "optimized_symbol": "XXPP.org", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1660157146, - "amount": 50000, - "raw_amount": 5e22, - "raw_amount_hex_str": "0xa968163f0a57b400000" - }, - { - "id": "0x52f3b30922d252151d72746dd325390a4e3fa1fb", - "chain": "matic", - "name": "quicks.exchange", - "symbol": "quicks.exchange", - "display_symbol": null, - "optimized_symbol": "quicks.exchange", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1659086201, - "amount": 2200, - "raw_amount": 2.2e21, - "raw_amount_hex_str": "0x77432217e683600000" - }, - { - "id": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", - "chain": "matic", - "name": "ChainLink Token", - "symbol": "LINK", - "display_symbol": null, - "optimized_symbol": "LINK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39/69425617db0ef93a7c21c4f9b81c7ca5.png", - "protocol_id": "", - "price": 7.187514966661612, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1598767775, - "amount": 119.72663965006102, - "raw_amount": 119726639650061010000, - "raw_amount_hex_str": "0x67d8a786c3d15cfe3" - }, - { - "id": "0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2", - "chain": "matic", - "name": "bZx Protocol Token (PoS)", - "symbol": "BZRX", - "display_symbol": null, - "optimized_symbol": "BZRX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2/de8708b026fb8f3f787c15b2346df189.png", - "protocol_id": "matic_bzx2", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1622179072, - "amount": 372.9085422062209, - "raw_amount": 372908542206220900000, - "raw_amount_hex_str": "0x1437254761e68efc04" - }, - { - "id": "0x55110c24859411822932a5263c6e44318cc3e682", - "chain": "matic", - "name": "SWAPQ.org", - "symbol": "SWAPQ.org", - "display_symbol": null, - "optimized_symbol": "SWAPQ.org", - "decimals": 8, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1651760905, - "amount": 95000, - "raw_amount": 9500000000000, - "raw_amount_hex_str": "0x8a3e4201800" - }, - { - "id": "0x5522962dce6be2a009d29e5699a67c38b392beb9", - "chain": "matic", - "name": "Balancer", - "symbol": "BalancerV2.com", - "display_symbol": null, - "optimized_symbol": "BalancerV2.com", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669993762, - "amount": 450, - "raw_amount": 45000, - "raw_amount_hex_str": "0xafc8" - }, - { - "id": "0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d", - "chain": "matic", - "name": "Distant Universe Stardust Token", - "symbol": "DUST", - "display_symbol": null, - "optimized_symbol": "DUST", - "decimals": 8, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d/852bddae11c8ac68e7e2340f80bef7d7.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1598984109, - "amount": 8832.63440924, - "raw_amount": 883263440924, - "raw_amount_hex_str": "0xcda69a881c" - }, - { - "id": "0x576cf361711cd940cd9c397bb98c4c896cbd38de", - "chain": "matic", - "name": "USD Coin (Wormhole)", - "symbol": "USDC", - "display_symbol": "USDCso", - "optimized_symbol": "USDCso", - "decimals": 6, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x576cf361711cd940cd9c397bb98c4c896cbd38de/cebdd996dd1b6ea6c0537c6f773cd31b.png", - "protocol_id": "", - "price": 1.0030066194390503, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1636467417, - "amount": 0.000092, - "raw_amount": 92, - "raw_amount_hex_str": "0x5c" - }, - { - "id": "0x580a84c73811e1839f75d86d75d88cca0c241ff4", - "chain": "matic", - "name": "Qi Dao", - "symbol": "QI", - "display_symbol": null, - "optimized_symbol": "QI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x580a84c73811e1839f75d86d75d88cca0c241ff4/be77e8e47016b1e9d3f01b7edc9b8d4f.png", - "protocol_id": "matic_mai", - "price": 0.10494445454444974, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1620071746, - "amount": 3644.803844793997, - "raw_amount": 3.644803844793997e21, - "raw_amount_hex_str": "0xc595d079d77c3198e5" - }, - { - "id": "0x58db49376fec6fca063f510d6eca078ee149aee4", - "chain": "matic", - "name": "USD Coin (PoS)", - "symbol": "USDC", - "display_symbol": null, - "optimized_symbol": "USDC", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1656431441, - "amount": 10232.655089257103, - "raw_amount": 1.0232655089257104e22, - "raw_amount_hex_str": "0x22ab69db4bfc6b336c0" - }, - { - "id": "0x596ebe76e2db4470966ea395b0d063ac6197a8c5", - "chain": "matic", - "name": "Jarvis Reward Token (PoS)", - "symbol": "JRT", - "display_symbol": null, - "optimized_symbol": "JRT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x596ebe76e2db4470966ea395b0d063ac6197a8c5/daf3e9c8675f61832bff1059e5116de6.png", - "protocol_id": "", - "price": 0.011986708987651534, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614167970, - "amount": 83923.92804600645, - "raw_amount": 8.392392804600645e22, - "raw_amount_hex_str": "0x11c5867725d0b8e85aa8" - }, - { - "id": "0x5a0801bad20b6c62d86c566ca90688a6b9ea1d3f", - "chain": "matic", - "name": "Moo Curve aTriCrypto3", - "symbol": "mooCurveATriCrypto3", - "display_symbol": null, - "optimized_symbol": "mooCurveATriCrypto3", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_beefy", - "price": 1279.2355534643523, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1630045733, - "amount": 0.000083865600902223, - "raw_amount": 83865600902223, - "raw_amount_hex_str": "0x4c467b59c44f" - }, - { - "id": "0x5f0197ba06860dac7e31258bdf749f92b6a636d4", - "chain": "matic", - "name": "Flare Token", - "symbol": "1FLR", - "display_symbol": null, - "optimized_symbol": "1FLR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x5f0197ba06860dac7e31258bdf749f92b6a636d4/051ee183887b4918b3362c71e04fd423.png", - "protocol_id": "", - "price": 0.0004492065772628427, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1631465015, - "amount": 228.4123907664559, - "raw_amount": 228412390766455880000, - "raw_amount_hex_str": "0xc61dbd338ac5120aa" - }, - { - "id": "0x5fe2b58c013d7601147dcdd68c143a77499f5531", - "chain": "matic", - "name": "Graph Token (PoS)", - "symbol": "GRT", - "display_symbol": null, - "optimized_symbol": "GRT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x5fe2b58c013d7601147dcdd68c143a77499f5531/9446e7f2fa061e831c95096d5d435fa4.png", - "protocol_id": "", - "price": 0.09875458953100871, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614317452, - "amount": 55.566195699373075, - "raw_amount": 55566195699373070000, - "raw_amount_hex_str": "0x30322c89614f8617d" - }, - { - "id": "0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05", - "chain": "matic", - "name": "Impermax (PoS)", - "symbol": "IMX", - "display_symbol": null, - "optimized_symbol": "IMX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05/3ce65bd522f6b93f3381795bd6d421ed.png", - "protocol_id": "matic_impermax", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1624288634, - "amount": 0.3519650218749413, - "raw_amount": 351965021874941250, - "raw_amount_hex_str": "0x4e26e529637ed46" - }, - { - "id": "0x60e49e3b837eaba8ab3b110ae3e964ba09048722", - "chain": "matic", - "name": "long", - "symbol": "long", - "display_symbol": null, - "optimized_symbol": "long", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1673661610, - "amount": 0.39224142738449796, - "raw_amount": 392241427384497900, - "raw_amount_hex_str": "0x57185800171f712" - }, - { - "id": "0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2", - "chain": "matic", - "name": "Elemental Particles", - "symbol": "EP", - "display_symbol": null, - "optimized_symbol": "EP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2/9cbd7383ce02539e86ff2197ded9f810.png", - "protocol_id": "matic_firebot", - "price": 190.27387584108993, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1666856669, - "amount": 0.1525375645831615, - "raw_amount": 152537564583161500, - "raw_amount_hex_str": "0x21dec1b57e1eea5" - }, - { - "id": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", - "chain": "matic", - "name": "Aave Polygon USDC", - "symbol": "aPolUSDC", - "display_symbol": null, - "optimized_symbol": "aPolUSDC", - "decimals": 6, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x625e7708f30ca75bfd92586e17077590c60eb4cd/edbff4857cf186c17bfdac67f2b0e6b1.png", - "protocol_id": "matic_aave3", - "price": 1, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1646995017, - "amount": 0.602017, - "raw_amount": 602017, - "raw_amount_hex_str": "0x92fa1" - }, - { - "id": "0x62646b12ff5080d19584e9aef449279522a37f8d", - "chain": "matic", - "name": "AAVEPool.com", - "symbol": "pAAVE", - "display_symbol": null, - "optimized_symbol": "pAAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1674081453, - "amount": 58.22, - "raw_amount": 5822, - "raw_amount_hex_str": "0x16be" - }, - { - "id": "0x628d90d8a3937f50c71cabc76ca790095763d484", - "chain": "matic", - "name": "Crypto Yacht Club", - "symbol": "CYC", - "display_symbol": null, - "optimized_symbol": "CYC", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1658762023, - "amount": 15.483648122805311, - "raw_amount": 15483648122805311000, - "raw_amount_hex_str": "0xd6e0f7ee8af4557a" - }, - { - "id": "0x64060ab139feaae7f06ca4e63189d86adeb51691", - "chain": "matic", - "name": "Unicorn Milk", - "symbol": "UNIM", - "display_symbol": null, - "optimized_symbol": "UNIM", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x64060ab139feaae7f06ca4e63189d86adeb51691/07c302121eea0493e38cf8f3b6ff3db6.png", - "protocol_id": "", - "price": 0.0023955094566498352, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1643228771, - "amount": 582977.4658079179, - "raw_amount": 5.829774658079178e23, - "raw_amount_hex_str": "0x7b734591354f4837e191" - }, - { - "id": "0x6553c62167a8457724bfd89533d2b09164202652", - "chain": "matic", - "name": "Smart", - "symbol": "SMT", - "display_symbol": null, - "optimized_symbol": "SMT", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1647816603, - "amount": 10.04089758910648, - "raw_amount": 10040897589106480000, - "raw_amount_hex_str": "0x8b586f2888c49357" - }, - { - "id": "0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70", - "chain": "matic", - "name": "Fitmint Token", - "symbol": "FITT", - "display_symbol": null, - "optimized_symbol": "FITT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70/5cd03e9cee7fe8aa1fd1947ebb3af975.png", - "protocol_id": "", - "price": 0.00143309510106627, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1656025175, - "amount": 333027.95689466415, - "raw_amount": 3.330279568946641e23, - "raw_amount_hex_str": "0x46857b51e1f5cc73cfab" - }, - { - "id": "0x6749441fdc8650b5b5a854ed255c82ef361f1596", - "chain": "matic", - "name": "Luchadores.io LUCHA Token", - "symbol": "LUCHA", - "display_symbol": null, - "optimized_symbol": "LUCHA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x6749441fdc8650b5b5a854ed255c82ef361f1596/c79c35d481e723830df3d6c4d41075b1.png", - "protocol_id": "", - "price": 0.030237393977506515, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1639668924, - "amount": 140.63220445466385, - "raw_amount": 140632204454663860000, - "raw_amount_hex_str": "0x79fa9f4d9a458ad1a" - }, - { - "id": "0x6b526daf03b4c47af2bcc5860b12151823ff70e0", - "chain": "matic", - "name": "Jarvis Synthetic New Zealand Dollar", - "symbol": "jNZD", - "display_symbol": null, - "optimized_symbol": "jNZD", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": null, - "amount": 0.4622668907067951, - "raw_amount": 462266890706795100, - "raw_amount_hex_str": "0x66a4d49b400ba53" - }, - { - "id": "0x6b9a80572382159d3656ea43bea144f1151ccce7", - "chain": "matic", - "name": "Rotomico", - "symbol": "RTM", - "display_symbol": null, - "optimized_symbol": "RTM", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1645350364, - "amount": 420000, - "raw_amount": 4.2e23, - "raw_amount_hex_str": "0x58f03ee118a13e800000" - }, - { - "id": "0x6df922bcbea7a7b8e22518dd8317139deeee73bf", - "chain": "matic", - "name": "The Great Coins", - "symbol": "TGC", - "display_symbol": null, - "optimized_symbol": "TGC", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1641177963, - "amount": 7.17516956852e-7, - "raw_amount": 717516956852, - "raw_amount_hex_str": "0xa70f57e4b4" - }, - { - "id": "0x6e14790535c04b1a58592fbee6109d9bc57a51ad", - "chain": "matic", - "name": "Gotchi Vault DAO Token", - "symbol": "VLT", - "display_symbol": null, - "optimized_symbol": "VLT", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1642361880, - "amount": 0.03469425924334323, - "raw_amount": 34694259243343236, - "raw_amount_hex_str": "0x7b423eb5f1dd84" - }, - { - "id": "0x6e853072505c1c88d7f2a28dcb1c0efddb8f3b16", - "chain": "matic", - "name": "Plox Monero Bog Brothers", - "symbol": "plox", - "display_symbol": null, - "optimized_symbol": "plox", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1641281774, - "amount": 174531.0974563406, - "raw_amount": 1.745310974563406e23, - "raw_amount_hex_str": "0x24f559894f2807dc3fa8" - }, - { - "id": "0x6f2c60dbfce1a872878b685a4c2297af52636feb", - "chain": "matic", - "name": "AAVEPool.com", - "symbol": "pAAVE", - "display_symbol": null, - "optimized_symbol": "pAAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1674308550, - "amount": 55.17, - "raw_amount": 5517, - "raw_amount_hex_str": "0x158d" - }, - { - "id": "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec", - "chain": "matic", - "name": "SHIBA INU (PoS)", - "symbol": "SHIB", - "display_symbol": null, - "optimized_symbol": "SHIB", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.000012536861796381241, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1620022377, - "amount": 3425.469566004346, - "raw_amount": 3.4254695660043454e21, - "raw_amount_hex_str": "0xb9b1f0955d8882d7b1" - }, - { - "id": "0x71c3f47a6e571da30084a984c430d2bb000cff74", - "chain": "matic", - "name": "AAVEPool.org", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1672922829, - "amount": 59.29, - "raw_amount": 5929, - "raw_amount_hex_str": "0x1729" - }, - { - "id": "0x726e324c29a1e49309672b244bdc4ff62a270407", - "chain": "matic", - "name": "BPT-XSGD-USDC", - "symbol": "BPT", - "display_symbol": null, - "optimized_symbol": "BPT", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1660876171, - "amount": 116.10143022578828, - "raw_amount": 116101430225788270000, - "raw_amount_hex_str": "0x64b3b23a89ae908e7" - }, - { - "id": "0x72928d5436ff65e57f72d5566dcd3baedc649a88", - "chain": "matic", - "name": "humanDAO (PoS)", - "symbol": "HDAO", - "display_symbol": null, - "optimized_symbol": "HDAO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x72928d5436ff65e57f72d5566dcd3baedc649a88/b31af6fb52cba52831e0ebd1cea1d52e.png", - "protocol_id": "", - "price": 0.011529833580662306, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1638364261, - "amount": 156481.22618656803, - "raw_amount": 1.5648122618656802e23, - "raw_amount_hex_str": "0x2122dd40bf9d64fa3331" - }, - { - "id": "0x7419b5961aef8097a9fd1573f8e3b4cd5800f7ae", - "chain": "matic", - "name": "60iBTC-FLI-P-20WBTC-20BTC2x-FLI-P", - "symbol": "60iBTC-FLI-P-20WBTC-20BTC2x-FLI-P", - "display_symbol": null, - "optimized_symbol": "60iBTC-FLI-P-20WBTC-20BTC2x-FLI-P", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 119034.86436830446, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1652212554, - "amount": 1.978597075e-9, - "raw_amount": 1978597075, - "raw_amount_hex_str": "0x75eefed3" - }, - { - "id": "0x767058f11800fba6a682e73a6e79ec5eb74fac8c", - "chain": "matic", - "name": "Jarvis Synthetic British Pound", - "symbol": "jGBP", - "display_symbol": null, - "optimized_symbol": "jGBP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x767058f11800fba6a682e73a6e79ec5eb74fac8c/65a8ec523d827d3aec41d332b0b24f7d.png", - "protocol_id": "", - "price": 1.223742224135512, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": null, - "amount": 0.19034369461359554, - "raw_amount": 190343694613595550, - "raw_amount_hex_str": "0x2a43c94eeadc5a2" - }, - { - "id": "0x7afc28a39638d2d885ec314f2f8114f9db8b9b73", - "chain": "matic", - "name": "UNI", - "symbol": "app.uniswap.cab", - "display_symbol": null, - "optimized_symbol": "app.uniswap.cab", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668551988, - "amount": 20, - "raw_amount": 2000, - "raw_amount_hex_str": "0x7d0" - }, - { - "id": "0x7b367a058f370c0057762280547d0b974cf3ac10", - "chain": "matic", - "name": "PAR Stablecoin (PoS)", - "symbol": "PAR", - "display_symbol": null, - "optimized_symbol": "PAR", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1625028044, - "amount": 0.019836020712003972, - "raw_amount": 19836020712003972, - "raw_amount_hex_str": "0x4678c1784bd985" - }, - { - "id": "0x7bda64742bacbfd6d9312921f6b072ed08fcb7c0", - "chain": "matic", - "name": "Alpha Beta Coin", - "symbol": "ABC", - "display_symbol": null, - "optimized_symbol": "ABC", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1641027531, - "amount": 2524363.1222577863, - "raw_amount": 2.5243631222577863e24, - "raw_amount_hex_str": "0x2168dffc2b46c62008f3c" - }, - { - "id": "0x7bfe43e475ebea07fa03337da551e18502c8793c", - "chain": "matic", - "name": "Stepn.fitness", - "symbol": "GMT", - "display_symbol": null, - "optimized_symbol": "GMT", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649282339, - "amount": 245.3, - "raw_amount": 245300000000000000000, - "raw_amount_hex_str": "0xd4c38aa584b520000" - }, - { - "id": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619", - "chain": "matic", - "name": "Wrapped Ether", - "symbol": "WETH", - "display_symbol": null, - "optimized_symbol": "WETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619/61844453e63cf81301f845d7864236f6.png", - "protocol_id": "", - "price": 1642.52, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1598443525, - "amount": 1.5551634311133367, - "raw_amount": 1555163431113336600, - "raw_amount_hex_str": "0x15950ce6a7302733" - }, - { - "id": "0x7d60a4cb5ca92e2da965637025122296ea6854f9", - "chain": "matic", - "name": "2EUR (PAR)", - "symbol": "2EUR (PAR)", - "display_symbol": null, - "optimized_symbol": "2EUR (PAR)", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.099595709733888, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1666541785, - "amount": 0.000489924061893403, - "raw_amount": 489924061893403, - "raw_amount_hex_str": "0x1bd9555ad131b" - }, - { - "id": "0x7d645cbbcade2a130bf1bf0528b8541d32d3f8cf", - "chain": "matic", - "name": "Alerto", - "symbol": "ALRTO", - "display_symbol": null, - "optimized_symbol": "ALRTO", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1641008069, - "amount": 11279553.725796085, - "raw_amount": 1.1279553725796084e25, - "raw_amount_hex_str": "0x95489d52c66a1bfb85396" - }, - { - "id": "0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4", - "chain": "matic", - "name": "SOL", - "symbol": "SOL", - "display_symbol": null, - "optimized_symbol": "SOL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4/9aa4990a19587f9bc17f1a514e0afed7.png", - "protocol_id": "", - "price": 24.352071836473613, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1625586165, - "amount": 110.6023002855827, - "raw_amount": 110602300285582700000, - "raw_amount_hex_str": "0x5feea4e1d173df96c" - }, - { - "id": "0x7f1d09d44511323c51fe803763c59ff929d7c1fb", - "chain": "matic", - "name": "AAVEPool.com", - "symbol": "pAAVE", - "display_symbol": null, - "optimized_symbol": "pAAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1674403404, - "amount": 57.08, - "raw_amount": 5708, - "raw_amount_hex_str": "0x164c" - }, - { - "id": "0x7f4c2f7671e6817bb01195d24e4eafc94435f5d0", - "chain": "matic", - "name": "$0Bets.io", - "symbol": "0Bets.io", - "display_symbol": null, - "optimized_symbol": "0Bets.io", - "decimals": 8, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662659082, - "amount": 3000000, - "raw_amount": 300000000000000, - "raw_amount_hex_str": "0x110d9316ec000" - }, - { - "id": "0x7fc9e0aa043787bfad28e29632ada302c790ce33", - "chain": "matic", - "name": "TETU_ST_BAL", - "symbol": "tetuBAL", - "display_symbol": null, - "optimized_symbol": "tetuBAL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x7fc9e0aa043787bfad28e29632ada302c790ce33/1d3a9bc0fbd5d721688604b80c3638d1.png", - "protocol_id": "matic_tetu", - "price": 17.572964667672075, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1649155501, - "amount": 86.67928683325309, - "raw_amount": 86679286833253090000, - "raw_amount_hex_str": "0x4b2eab020d83e84b5" - }, - { - "id": "0x80ab6dc6e6ca99f2319213cd97fa02c14e4bd434", - "chain": "matic", - "name": "Focused Sharpe Index ", - "symbol": "FSI", - "display_symbol": null, - "optimized_symbol": "FSI", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_dhedge", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1629225482, - "amount": 0.00000564571260968, - "raw_amount": 5645712609680, - "raw_amount_hex_str": "0x5227eb1d190" - }, - { - "id": "0x8159462d255c1d24915cb51ec361f700174cd994", - "chain": "matic", - "name": "Balancer stMATIC Stable Pool", - "symbol": "B-stMATIC-Stable", - "display_symbol": null, - "optimized_symbol": "B-stMATIC-Stable", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.2072821927527486, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662566113, - "amount": 6.505799512178996, - "raw_amount": 6505799512178996000, - "raw_amount_hex_str": "0x5a493e2fe756b3b5" - }, - { - "id": "0x831753dd7087cac61ab5644b308642cc1c33dc13", - "chain": "matic", - "name": "Quickswap", - "symbol": "QUICK", - "display_symbol": null, - "optimized_symbol": "QUICK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x831753dd7087cac61ab5644b308642cc1c33dc13/3f40a8915d99b9dd0e24d5205c89eb34.png", - "protocol_id": "matic_quickswap", - "price": 58.90161498716359, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1602175296, - "amount": 0.005125994240309156, - "raw_amount": 5125994240309156, - "raw_amount_hex_str": "0x12361089d077a4" - }, - { - "id": "0x84072c5d4150b9d2eea0e3345d343d5333673125", - "chain": "matic", - "name": "Panda Panda", - "symbol": "PP", - "display_symbol": null, - "optimized_symbol": "PP", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1640611205, - "amount": 376.0840950112882, - "raw_amount": 376084095011288200000, - "raw_amount_hex_str": "0x1463371bd5761724cc" - }, - { - "id": "0x8439e5dfefa4aeefec51dc8ba49585b61cf0a387", - "chain": "matic", - "name": "Lithereum", - "symbol": "Lithereum", - "display_symbol": null, - "optimized_symbol": "Lithereum", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 3.717321476599741, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1671446929, - "amount": 0.008312727111562964, - "raw_amount": 8312727111562965, - "raw_amount_hex_str": "0x1d88619a9976d5" - }, - { - "id": "0x8440178087c4fd348d43d0205f4574e0348a06f0", - "chain": "matic", - "name": "STAR", - "symbol": "STAR", - "display_symbol": null, - "optimized_symbol": "STAR", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 5.437270063478821, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1641959576, - "amount": 0.21404732240262886, - "raw_amount": 214047322402628860, - "raw_amount_hex_str": "0x2f872e7d8eea500" - }, - { - "id": "0x852555976ff18c2a888bd27ff311c9ec904de9c3", - "chain": "matic", - "name": "Usd penny", - "symbol": "USDP", - "display_symbol": null, - "optimized_symbol": "USDP", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1653021277, - "amount": 1227471.3504096803, - "raw_amount": 1.2274713504096804e24, - "raw_amount_hex_str": "0x103ed5af0efaa6ed890d4" - }, - { - "id": "0x85955046df4668e1dd369d2de9f3aeb98dd2a369", - "chain": "matic", - "name": "DefiPulse Index (PoS)", - "symbol": "DPI", - "display_symbol": null, - "optimized_symbol": "DPI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x85955046df4668e1dd369d2de9f3aeb98dd2a369/cac4b8786465385d6d4c4b7620db33f7.png", - "protocol_id": "", - "price": 91.45986735655332, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614144342, - "amount": 0.003319029213046614, - "raw_amount": 3319029213046614, - "raw_amount_hex_str": "0xbcaa3b53e2756" - }, - { - "id": "0x8a6b62f5501410d179641e731a8f1cecef1c28ec", - "chain": "matic", - "name": "PolygonClassics.com", - "symbol": "PolygonClassics.com", - "display_symbol": null, - "optimized_symbol": "PolygonClassics.com", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1665788585, - "amount": 1497, - "raw_amount": 1.497e21, - "raw_amount_hex_str": "0x51270c608dd7c40000" - }, - { - "id": "0x8ac5fafe2e52e52f5352aec64b64ff8b305e1d4a", - "chain": "matic", - "name": "Balancer 50THX-50stMATIC", - "symbol": "B-50THX-50stMATIC", - "display_symbol": null, - "optimized_symbol": "B-50THX-50stMATIC", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 0.21447688114039481, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1664224189, - "amount": 2572.2657853989076, - "raw_amount": 2.5722657853989076e21, - "raw_amount_hex_str": "0x8b715bd75f41129b66" - }, - { - "id": "0x8c92e38eca8210f4fcbf17f0951b198dd7668292", - "chain": "matic", - "name": "dHedge DAO Token (PoS)", - "symbol": "DHT", - "display_symbol": null, - "optimized_symbol": "DHT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x8c92e38eca8210f4fcbf17f0951b198dd7668292/0f08e26a6166f8b39b59f64ed9fef096.png", - "protocol_id": "", - "price": 0.09854653127722864, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1618204861, - "amount": 564.89, - "raw_amount": 564890000000000000000, - "raw_amount_hex_str": "0x1e9f6c6e15a2690000" - }, - { - "id": "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063", - "chain": "matic", - "name": "(PoS) Dai Stablecoin", - "symbol": "DAI", - "display_symbol": null, - "optimized_symbol": "DAI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x8f3cf7ad23cd3cadbd9735aff958023239c6a063/549c4205dbb199f1b8b03af783f35e71.png", - "protocol_id": "", - "price": 0.9997, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1599854803, - "amount": 2751.5930464207486, - "raw_amount": 2.751593046420749e21, - "raw_amount_hex_str": "0x952a064127a7a88988" - }, - { - "id": "0x8fd0195469b51a935dc3c48617ced6b400e38c9c", - "chain": "matic", - "name": "Crypto 4 A Cause Fund", - "symbol": "C4C", - "display_symbol": null, - "optimized_symbol": "C4C", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.002883, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1656218092, - "amount": 7078.2522694616355, - "raw_amount": 7.078252269461636e21, - "raw_amount_hex_str": "0x17fb67ba8e3374e6170" - }, - { - "id": "0x91bd4023a21bc12814905f251eb348e298dbc0f0", - "chain": "matic", - "name": "UNI", - "symbol": "www.uniswap.cab - Claim UNI", - "display_symbol": null, - "optimized_symbol": "www.uniswap.cab - Claim UNI", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668964697, - "amount": 328.88, - "raw_amount": 32888, - "raw_amount_hex_str": "0x8078" - }, - { - "id": "0x925a8aa33c970a7046dfdc8932adf32b8587dd41", - "chain": "matic", - "name": "xeth", - "symbol": "xeth", - "display_symbol": null, - "optimized_symbol": "xeth", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1654508931, - "amount": 19.029449012803394, - "raw_amount": 19029449012803396000, - "raw_amount_hex_str": "0x108162f0e078dde4e" - }, - { - "id": "0x92bc61bd96f275ea5507a3e1e5fbf0bc69cc98dc", - "chain": "matic", - "name": "2SGD", - "symbol": "2SGD", - "display_symbol": null, - "optimized_symbol": "2SGD", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 0.781824853170021, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1666541632, - "amount": 3.403233592192304, - "raw_amount": 3403233592192303600, - "raw_amount_hex_str": "0x2f3ab6ebc64c82f8" - }, - { - "id": "0x943120412e22d196db99968cb928d68daac7fc3b", - "chain": "matic", - "name": "miMATIC", - "symbol": "miMATIC", - "display_symbol": null, - "optimized_symbol": "miMATIC", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1658431467, - "amount": 0.2985294688628851, - "raw_amount": 298529468862885100, - "raw_amount_hex_str": "0x42496f8628eed08" - }, - { - "id": "0x951806a2581c22c478ac613a675e6c898e2abe21", - "chain": "matic", - "name": "GMONEY", - "symbol": "SGCOIN", - "display_symbol": null, - "optimized_symbol": "SGCOIN", - "decimals": 9, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1643738173, - "amount": 1796.540875224, - "raw_amount": 1796540875224, - "raw_amount_hex_str": "0x1a24a2e41d8" - }, - { - "id": "0x95e9464b5cc3bf81210259812b51665a437aa11b", - "chain": "matic", - "name": "wPGX.app", - "symbol": "wPGX.app", - "display_symbol": null, - "optimized_symbol": "wPGX.app", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1644892146, - "amount": 7936, - "raw_amount": 7.936e21, - "raw_amount_hex_str": "0x1ae361fc1451c000000" - }, - { - "id": "0x9715a23d25399ef10d819e4999689de3d14eb7e2", - "chain": "matic", - "name": "AAVEPool.org", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1672175868, - "amount": 92.84, - "raw_amount": 9284, - "raw_amount_hex_str": "0x2444" - }, - { - "id": "0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3", - "chain": "matic", - "name": "Balancer (PoS)", - "symbol": "BAL", - "display_symbol": null, - "optimized_symbol": "BAL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3/52990c207f4001bd9090dfd90e54374a.png", - "protocol_id": "matic_balancer2", - "price": 7.075932192587953, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1620794191, - "amount": 609.3261588939883, - "raw_amount": 609326158893988400000, - "raw_amount_hex_str": "0x210819612a6d673cc8" - }, - { - "id": "0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f", - "chain": "matic", - "name": "1Inch (PoS)", - "symbol": "1INCH", - "display_symbol": null, - "optimized_symbol": "1INCH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f/73b05710c95a431e9e3c62dd5b8096ae.png", - "protocol_id": "", - "price": 0.5585732817280176, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614146614, - "amount": 0.5268812693499771, - "raw_amount": 526881269349977150, - "raw_amount_hex_str": "0x74fdbb912698c5b" - }, - { - "id": "0x9cd6746665d9557e1b9a775819625711d0693439", - "chain": "matic", - "name": "LUNA (Wormhole)", - "symbol": "LUNA", - "display_symbol": null, - "optimized_symbol": "LUNA", - "decimals": 6, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x9cd6746665d9557e1b9a775819625711d0693439/6facb6ecdec3ccf5ec9bcc98be286b71.png", - "protocol_id": "", - "price": 0.0001892, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1636835455, - "amount": 870.681181, - "raw_amount": 870681181, - "raw_amount_hex_str": "0x33e58a5d" - }, - { - "id": "0x9d47b3faa5ff227d2bd404f572ef0ab0c8409161", - "chain": "matic", - "name": "Validator (PoS)", - "symbol": "VALX", - "display_symbol": null, - "optimized_symbol": "VALX", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1623646433, - "amount": 468.2853783999758, - "raw_amount": 468285378399975800000, - "raw_amount_hex_str": "0x1962c3de928ff03092" - }, - { - "id": "0x9d75cc71555ddabcb89b52c818c2c689e2191401", - "chain": "matic", - "name": "Python Test Weighted Pool V2", - "symbol": "PTWPv2", - "display_symbol": null, - "optimized_symbol": "PTWPv2", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.0970385013912094, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662736399, - "amount": 0.000250027429854575, - "raw_amount": 250027429854575, - "raw_amount_hex_str": "0xe3660c23fd6f" - }, - { - "id": "0x9da313d30f6da94114c21c9c3c174c4fc75c6644", - "chain": "matic", - "name": "Polygon Power Index", - "symbol": "PPI", - "display_symbol": null, - "optimized_symbol": "PPI", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_tokensets", - "price": 1.0634553942456435, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1658117479, - "amount": 0.021109675133348726, - "raw_amount": 21109675133348730, - "raw_amount_hex_str": "0x4aff233fa5ab76" - }, - { - "id": "0x9feeebe28b8626a8607d4fa5443e13c39d445bb8", - "chain": "matic", - "name": "uniswap.cab", - "symbol": "UNI", - "display_symbol": null, - "optimized_symbol": "UNI", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668608517, - "amount": 38.48, - "raw_amount": 3848, - "raw_amount_hex_str": "0xf08" - }, - { - "id": "0xa23cd4da2400b31bcf18e3a8f27578c706dbf902", - "chain": "matic", - "name": "eDPX", - "symbol": "eDPX", - "display_symbol": null, - "optimized_symbol": "eDPX", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1672237740, - "amount": 4.49143483377, - "raw_amount": 4491434833770000000, - "raw_amount_hex_str": "0x3e54c82f46ad2e80" - }, - { - "id": "0xa3e4285ad0e95fac467514d92e612de475d2ec3c", - "chain": "matic", - "name": "Balancer", - "symbol": "BalancerV2.com", - "display_symbol": null, - "optimized_symbol": "BalancerV2.com", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670071809, - "amount": 1035, - "raw_amount": 103500, - "raw_amount_hex_str": "0x1944c" - }, - { - "id": "0xa3fa99a148fa48d14ed51d610c367c61876997f1", - "chain": "matic", - "name": "miMATIC", - "symbol": "miMATIC", - "display_symbol": null, - "optimized_symbol": "miMATIC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xa3fa99a148fa48d14ed51d610c367c61876997f1/be77e8e47016b1e9d3f01b7edc9b8d4f.png", - "protocol_id": "matic_mai", - "price": 0.9909328820837269, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1619914589, - "amount": 2998.403849145571, - "raw_amount": 2.998403849145571e21, - "raw_amount_hex_str": "0xa28b365e92cdace730" - }, - { - "id": "0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb", - "chain": "matic", - "name": "Nash Exchange Token (PoS)", - "symbol": "NEX", - "display_symbol": null, - "optimized_symbol": "NEX", - "decimals": 8, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb/c34674f11dc6064e831e0cb4124c9407.png", - "protocol_id": "", - "price": 0.14248022387207515, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1620563473, - "amount": 38.0381618, - "raw_amount": 3803816180, - "raw_amount_hex_str": "0xe2b9a0f4" - }, - { - "id": "0xa48d164f6eb0edc68bd03b56fa59e12f24499ad1", - "chain": "matic", - "name": "2eur (agEUR)", - "symbol": "2eur (agEUR)", - "display_symbol": null, - "optimized_symbol": "2eur (agEUR)", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.0942612448567584, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1664437789, - "amount": 0.000098543421526051, - "raw_amount": 98543421526051, - "raw_amount_hex_str": "0x599feda29023" - }, - { - "id": "0xa584484f422bfc2128566f8f954b7f2e31e94cc8", - "chain": "matic", - "name": "$DOWN Vault [via ChainPort.io]", - "symbol": "DOWN", - "display_symbol": null, - "optimized_symbol": "DOWN", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1646096213, - "amount": 1366.0654890880037, - "raw_amount": 1.3660654890880037e21, - "raw_amount_hex_str": "0x4a0df78c99b2b7892a" - }, - { - "id": "0xa934bcbf24a7272781197b6559230c30bf0bb2e6", - "chain": "matic", - "name": "$DOWN Vault (PoS)", - "symbol": "DOWN", - "display_symbol": null, - "optimized_symbol": "DOWN", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.059215815630033176, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1657866847, - "amount": 462.1611502066032, - "raw_amount": 462161150206603200000, - "raw_amount_hex_str": "0x190dc63d7a6a88b7bc" - }, - { - "id": "0xadac33f543267c4d59a8c299cf804c303bc3e4ac", - "chain": "matic", - "name": "MIMO Parallel Governance Token (PoS)", - "symbol": "MIMO", - "display_symbol": null, - "optimized_symbol": "MIMO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xadac33f543267c4d59a8c299cf804c303bc3e4ac/d33494e8c7969112a847f9f87a156a97.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1625027934, - "amount": 18698.054916295998, - "raw_amount": 1.8698054916295996e22, - "raw_amount_hex_str": "0x3f59fa377d4992c02de" - }, - { - "id": "0xaee24d5296444c007a532696aada9de5ce6cafd0", - "chain": "matic", - "name": "SW DAO [via ChainPort.io]", - "symbol": "SWD", - "display_symbol": null, - "optimized_symbol": "SWD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xaee24d5296444c007a532696aada9de5ce6cafd0/3886faa6c8fbddf5b918d7d1495a1a95.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1642095747, - "amount": 14.500853789085259, - "raw_amount": 14500853789085260000, - "raw_amount_hex_str": "0xc93d61b13e4dd4ab" - }, - { - "id": "0xaf01a84dd4732f358d5499094c081c25c10a69b3", - "chain": "matic", - "name": "usdpool", - "symbol": "usdp", - "display_symbol": null, - "optimized_symbol": "usdp", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1653742997, - "amount": 0.014511001924000644, - "raw_amount": 14511001924000644, - "raw_amount_hex_str": "0x338dadeb03db84" - }, - { - "id": "0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b", - "chain": "matic", - "name": "Wrapped USDR", - "symbol": "wUSDR", - "display_symbol": null, - "optimized_symbol": "wUSDR", - "decimals": 9, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1672356513, - "amount": 6.15116355, - "raw_amount": 6151163550, - "raw_amount_hex_str": "0x16ea34e9e" - }, - { - "id": "0xaf6b1a3067bb5245114225556e5b7a52cf002752", - "chain": "matic", - "name": "$ xBets.org", - "symbol": "$ Free Claim and Play", - "display_symbol": null, - "optimized_symbol": "$ Free Claim and Play", - "decimals": 8, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1667128644, - "amount": 500, - "raw_amount": 50000000000, - "raw_amount_hex_str": "0xba43b7400" - }, - { - "id": "0xb0e35478a389dd20050d66a67fb761678af99678", - "chain": "matic", - "name": "Uniswap V2", - "symbol": "UNI-V2", - "display_symbol": null, - "optimized_symbol": "UNI-V2", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_quickswap", - "price": 0.006034094826815656, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1652961215, - "amount": 0.2904151510752083, - "raw_amount": 290415151075208300, - "raw_amount_hex_str": "0x407c30a8d3aac83" - }, - { - "id": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", - "chain": "matic", - "name": "Uniswap (PoS)", - "symbol": "UNI", - "display_symbol": null, - "optimized_symbol": "UNI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xb33eaad8d922b1083446dc23f610c2567fb5180f/fcee0c46fc9864f48ce6a40ed1cdd135.png", - "protocol_id": "", - "price": 7.077542964991467, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1602233478, - "amount": 0.00031046047350267, - "raw_amount": 310460473502670, - "raw_amount_hex_str": "0x11a5cb63d6bce" - }, - { - "id": "0xb424dfdf817faf38ff7acf6f2efd2f2a843d1aca", - "chain": "matic", - "name": "Vault Qi", - "symbol": "vQi", - "display_symbol": null, - "optimized_symbol": "vQi", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_gotchivault", - "price": 0.10494445454444974, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1645472966, - "amount": 16.11740886177767, - "raw_amount": 16117408861777670000, - "raw_amount_hex_str": "0xdfac89f751fdad7d" - }, - { - "id": "0xb5466ab4f8eff1aab6ba562b2f51f58ebdee23c4", - "chain": "matic", - "name": "AAVEPool.io", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669334314, - "amount": 658.82, - "raw_amount": 65882, - "raw_amount_hex_str": "0x1015a" - }, - { - "id": "0xb54b2125b711cd183edd3dd09433439d53961652", - "chain": "matic", - "name": "Balancer MAI bb-am-usd Stable", - "symbol": "Mai BSP", - "display_symbol": null, - "optimized_symbol": "Mai BSP", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 1.0132763379077019, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662580832, - "amount": 51.81251868485586, - "raw_amount": 51812518684855860000, - "raw_amount_hex_str": "0x2cf0b0b3ab91f7708" - }, - { - "id": "0xb5f402e3e4e9fa2c30c65068f145be9a63366710", - "chain": "matic", - "name": "Sigma Coin", - "symbol": "SGM", - "display_symbol": null, - "optimized_symbol": "SGM", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670355216, - "amount": 3.02925240866e-7, - "raw_amount": 302925240866, - "raw_amount_hex_str": "0x4687c05a22" - }, - { - "id": "0xb6c3c00d730acca326db40e418353f04f7444e2b", - "chain": "matic", - "name": "first choice coin", - "symbol": "fcc", - "display_symbol": null, - "optimized_symbol": "fcc", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.01509411339137794, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1651405504, - "amount": 4.749642601025528, - "raw_amount": 4749642601025528000, - "raw_amount_hex_str": "0x41ea1ec7ec306113" - }, - { - "id": "0xb74ae4f3818dee1faf66b66dcd35a10e57371227", - "chain": "matic", - "name": "USD_Inno", - "symbol": "USD-I", - "display_symbol": null, - "optimized_symbol": "USD-I", - "decimals": 4, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1661853720, - "amount": 0.0749, - "raw_amount": 749, - "raw_amount_hex_str": "0x2ed" - }, - { - "id": "0xb76c90b51338016011eaf27c348e3d84a623c5bf", - "chain": "matic", - "name": "klima-dao.io", - "symbol": "KLIMA", - "display_symbol": null, - "optimized_symbol": "KLIMA", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669565088, - "amount": 6200, - "raw_amount": 620000, - "raw_amount_hex_str": "0x975e0" - }, - { - "id": "0xb932d203f83b8417be0f61d9dafad09cc24a4715", - "chain": "matic", - "name": "CAT", - "symbol": "CAT", - "display_symbol": null, - "optimized_symbol": "CAT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xb932d203f83b8417be0f61d9dafad09cc24a4715/3b99be030008cebb98d5f42f62ab626c.png", - "protocol_id": "matic_kittyfinance", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1639473886, - "amount": 0.000148738794641628, - "raw_amount": 148738794641628, - "raw_amount_hex_str": "0x8746f304d8dc" - }, - { - "id": "0xba6f652fa17384af20a2d59813345b0ee0128d48", - "chain": "matic", - "name": "AAVEPool.org", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1671568683, - "amount": 61.84, - "raw_amount": 6184, - "raw_amount_hex_str": "0x1828" - }, - { - "id": "0xbae28251b2a4e621aa7e20538c06dee010bc06de", - "chain": "matic", - "name": "dHEDGE Stablecoin Yield", - "symbol": "dUSD", - "display_symbol": null, - "optimized_symbol": "dUSD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xbae28251b2a4e621aa7e20538c06dee010bc06de/24209209fe1958888910fda1cd716908.png", - "protocol_id": "matic_dhedge", - "price": 0, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1627812443, - "amount": 1000.3274644800173, - "raw_amount": 1.0003274644800172e21, - "raw_amount_hex_str": "0x363a5510fb869c4f5f" - }, - { - "id": "0xbbba073c31bf03b8acf7c28ef0738decf3695683", - "chain": "matic", - "name": "SAND", - "symbol": "SAND", - "display_symbol": null, - "optimized_symbol": "SAND", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xbbba073c31bf03b8acf7c28ef0738decf3695683/81853b2ea8c205afa8ebbdf213637520.png", - "protocol_id": "matic_sandbox", - "price": 0.7646715712787858, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1636029077, - "amount": 137.91175115045988, - "raw_amount": 137911751150459880000, - "raw_amount_hex_str": "0x779e8f6fbcb3ae6f7" - }, - { - "id": "0xbf29ef6e23af0ac5b6bf931c8b3f1080f5bc1206", - "chain": "matic", - "name": "Balancer vQi StablePool", - "symbol": "B-vQi-Stable", - "display_symbol": null, - "optimized_symbol": "B-vQi-Stable", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 0.1098653669769179, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669739732, - "amount": 36.90701827570395, - "raw_amount": 36907018275703950000, - "raw_amount_hex_str": "0x2003011947a2f0913" - }, - { - "id": "0xbf9bd029c19a871f652fb403f9ac5a572e4cf2f8", - "chain": "matic", - "name": "Wrapped BTC", - "symbol": "WBTC", - "display_symbol": null, - "optimized_symbol": "WBTC", - "decimals": 8, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1654813231, - "amount": 0.00001552, - "raw_amount": 1552, - "raw_amount_hex_str": "0x610" - }, - { - "id": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", - "chain": "matic", - "name": "(PoS) Tether USD", - "symbol": "USDT", - "display_symbol": null, - "optimized_symbol": "USDT", - "decimals": 6, - "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", - "protocol_id": "", - "price": 1, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1599512847, - "amount": 341.569846, - "raw_amount": 341569846, - "raw_amount_hex_str": "0x145bf136" - }, - { - "id": "0xc229cc41f523f165436f2d52c62b80602cd76f51", - "chain": "matic", - "name": "STEPN.me", - "symbol": "STEPN.me", - "display_symbol": null, - "optimized_symbol": "STEPN.me", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1646662737, - "amount": 10, - "raw_amount": 10000000000000000000, - "raw_amount_hex_str": "0x8ac7230489e80000" - }, - { - "id": "0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539", - "chain": "matic", - "name": "Adamant", - "symbol": "ADDY", - "display_symbol": "ADDY", - "optimized_symbol": "ADDY", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539/0d9eaf16f87081ebac3579acb667c507.png", - "protocol_id": "matic_adamant", - "price": 0.23215308585120525, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1619813437, - "amount": 0.034462316293861754, - "raw_amount": 34462316293861756, - "raw_amount_hex_str": "0x7a6f4b48d5317d" - }, - { - "id": "0xc8a5bcb5d53cd824497b5381b592bb747d6d27b3", - "chain": "matic", - "name": "Galaxy X Coin", - "symbol": "GAX", - "display_symbol": null, - "optimized_symbol": "GAX", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1630074543, - "amount": 159980.17971792308, - "raw_amount": 1.5998017971792306e23, - "raw_amount_hex_str": "0x21e08afcd221c46a568c" - }, - { - "id": "0xc98a49482caf35f5e0bbdf931d4f4d6c27d1ed3a", - "chain": "matic", - "name": "$ TetherLP.com", - "symbol": "TetherLP.com", - "display_symbol": null, - "optimized_symbol": "TetherLP.com", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1660500548, - "amount": 734, - "raw_amount": 734000000000000000000, - "raw_amount_hex_str": "0x27ca4bd719f0b80000" - }, - { - "id": "0xc9cc612c3d118f40d2f876bbd49f270b18f82da1", - "chain": "matic", - "name": "LUNC10K", - "symbol": "LUNC10K", - "display_symbol": null, - "optimized_symbol": "LUNC10K", - "decimals": 6, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662751196, - "amount": 0.028176, - "raw_amount": 28176, - "raw_amount_hex_str": "0x6e10" - }, - { - "id": "0xcecf60b95109cb4c897b22877612228f0c76e52c", - "chain": "matic", - "name": "Curve.fi Factory USD Metapool: Lithereum", - "symbol": "Lithereum3CRV-f", - "display_symbol": null, - "optimized_symbol": "Lithereum3CRV-f", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_curve", - "price": 0.002516419883263189, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1643978139, - "amount": 16.76336977326815, - "raw_amount": 16763369773268150000, - "raw_amount_hex_str": "0xe8a373fe1e2b25f7" - }, - { - "id": "0xcf68f02d7dd6a4642ae6a77f6a3676d0cbc834c9", - "chain": "matic", - "name": "GGBoxs.com", - "symbol": "GGBoxs.com", - "display_symbol": null, - "optimized_symbol": "GGBoxs.com", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.005386738499999999, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669638810, - "amount": 60000, - "raw_amount": 6e22, - "raw_amount_hex_str": "0xcb49b44ba602d800000" - }, - { - "id": "0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f", - "chain": "matic", - "name": "VOXEL Token", - "symbol": "VOXEL", - "display_symbol": null, - "optimized_symbol": "VOXEL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f/fc569c6027d2752c44dccdbaeceeb882.png", - "protocol_id": "", - "price": 0.34978352899303045, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1638678011, - "amount": 0.0004185, - "raw_amount": 418500000000000, - "raw_amount_hex_str": "0x17c9f9fd6a800" - }, - { - "id": "0xd106fb0cfb6a3b6a8e9b08c19f8f4d39e4b4cda1", - "chain": "matic", - "name": "Curve.fi Factory Plain Pool: CRV Miner", - "symbol": "CRV Miner-f", - "display_symbol": null, - "optimized_symbol": "CRV Miner-f", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_curve", - "price": 0.0000286402237736041, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1645910138, - "amount": 0.00002994753915376, - "raw_amount": 29947539153760, - "raw_amount_hex_str": "0x1b3cb46ee360" - }, - { - "id": "0xd1451da6ec352bd86f4a697d74399f7a99d493d9", - "chain": "matic", - "name": "MASK", - "symbol": "MASK", - "display_symbol": null, - "optimized_symbol": "MASK", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649671676, - "amount": 471.92736171596647, - "raw_amount": 471927361715966500000, - "raw_amount_hex_str": "0x19954ecb1a3376a4b4" - }, - { - "id": "0xd31de8ed2d7457124f69bf71e44b31e704dc416e", - "chain": "matic", - "name": "Zloadr", - "symbol": "ZDR", - "display_symbol": null, - "optimized_symbol": "ZDR", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1654015953, - "amount": 1, - "raw_amount": 1000000000000000000, - "raw_amount_hex_str": "0xde0b6b3a7640000" - }, - { - "id": "0xd41b32f9e27c44bb6d9e08aed0eb1cc610384999", - "chain": "matic", - "name": "GreatBritishPoundStable", - "symbol": "GBPS", - "display_symbol": null, - "optimized_symbol": "GBPS", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649889121, - "amount": 7.6196327938e-7, - "raw_amount": 761963279380, - "raw_amount_hex_str": "0xb1688cf414" - }, - { - "id": "0xd6ca869a4ec9ed2c7e618062cdc45306d8dbbc14", - "chain": "matic", - "name": "BTC 2x Flexible Leverage Index", - "symbol": "BTC2x-FLI-P", - "display_symbol": null, - "optimized_symbol": "BTC2x-FLI-P", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_tokensets", - "price": 16.987828608500003, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1646669846, - "amount": 10.14546637536257, - "raw_amount": 10145466375362570000, - "raw_amount_hex_str": "0x8ccbefea5827e59e" - }, - { - "id": "0xd85d1e945766fea5eda9103f918bd915fbca63e6", - "chain": "matic", - "name": "Celsius (PoS)", - "symbol": "CEL", - "display_symbol": null, - "optimized_symbol": "CEL", - "decimals": 4, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xd85d1e945766fea5eda9103f918bd915fbca63e6/918b6fcda4690ab777c7c6da8b48bdbc.png", - "protocol_id": "", - "price": 0.5910235703685967, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1611040782, - "amount": 0.0243, - "raw_amount": 243, - "raw_amount_hex_str": "0xf3" - }, - { - "id": "0xd8b83d5ad4102def6255643e8ab2ba5410d4d0f8", - "chain": "matic", - "name": "AIRDROP", - "symbol": "AIR", - "display_symbol": null, - "optimized_symbol": "AIR", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1655102538, - "amount": 333.1080960278393, - "raw_amount": 333108096027839300000, - "raw_amount_hex_str": "0x120ecdb0747a11c184" - }, - { - "id": "0xd8f67e743fb7c54dca49ae3294b587f47c9a91d4", - "chain": "matic", - "name": "BANKLESSVOTING", - "symbol": "BVOTE", - "display_symbol": null, - "optimized_symbol": "BVOTE", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1664439032, - "amount": 100, - "raw_amount": 100000000000000000000, - "raw_amount_hex_str": "0x56bc75e2d63100000" - }, - { - "id": "0xd9503c336512120aa6834ab5d9258a32940bb2c6", - "chain": "matic", - "name": "AAVEPool.org", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1671487363, - "amount": 62, - "raw_amount": 6200, - "raw_amount_hex_str": "0x1838" - }, - { - "id": "0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7", - "chain": "matic", - "name": "(PoS) Binance USD", - "symbol": "BUSD", - "display_symbol": null, - "optimized_symbol": "BUSD", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7/c67d96935d377f350fac55aed5c458de.png", - "protocol_id": "", - "price": 1, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1599512867, - "amount": 0.002857598685858215, - "raw_amount": 2857598685858215, - "raw_amount_hex_str": "0xa26f88a94c9a7" - }, - { - "id": "0xdb26f69b0a149af048d893e62ab50885a8d4fb9b", - "chain": "matic", - "name": "Very Nasty Token", - "symbol": "VNT", - "display_symbol": null, - "optimized_symbol": "VNT", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649532113, - "amount": 788.112644239725, - "raw_amount": 788112644239725000000, - "raw_amount_hex_str": "0x2ab9429256169e4ae0" - }, - { - "id": "0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab", - "chain": "matic", - "name": "Bankless Token (PoS)", - "symbol": "BANK", - "display_symbol": null, - "optimized_symbol": "BANK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab/65548d47f97a234fd98885f0bc89d4ff.png", - "protocol_id": "", - "price": 0.007840306196763625, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1626674919, - "amount": 44126.87506712785, - "raw_amount": 4.412687506712785e22, - "raw_amount_hex_str": "0x9581f68a75944c4d31a" - }, - { - "id": "0xdbf31df14b66535af65aac99c32e9ea844e14501", - "chain": "matic", - "name": "renBTC", - "symbol": "renBTC", - "display_symbol": null, - "optimized_symbol": "renBTC", - "decimals": 8, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xdbf31df14b66535af65aac99c32e9ea844e14501/7ec502c1a24ea6d4cee9f31595acf6d7.png", - "protocol_id": "", - "price": 24648.516551845347, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1622000289, - "amount": 0.09323181, - "raw_amount": 9323181, - "raw_amount_hex_str": "0x8e42ad" - }, - { - "id": "0xdddca1d1fd4e72b85b7b95f07651ab36b62f69e9", - "chain": "matic", - "name": "Grosh", - "symbol": "GROSH", - "display_symbol": null, - "optimized_symbol": "GROSH", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1645721955, - "amount": 89147.20804377318, - "raw_amount": 8.914720804377318e22, - "raw_amount_hex_str": "0x12e0ae0971a921ecbb73" - }, - { - "id": "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32", - "chain": "matic", - "name": "Telcoin (PoS)", - "symbol": "TEL", - "display_symbol": null, - "optimized_symbol": "TEL", - "decimals": 2, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32/161a26f47e94d3a29876733cccefa868.png", - "protocol_id": "matic_telcoin", - "price": 0.0023116164310997573, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1614168204, - "amount": 1332791.93, - "raw_amount": 133279193, - "raw_amount_hex_str": "0x7f1add9" - }, - { - "id": "0xe0cca86b254005889ac3a81e737f56a14f4a38f5", - "chain": "matic", - "name": "Alta Finance", - "symbol": "ALTA", - "display_symbol": null, - "optimized_symbol": "ALTA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xe0cca86b254005889ac3a81e737f56a14f4a38f5/cec21c3f56d978832222dc6c61383145.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1647303459, - "amount": 1.5001443528818506, - "raw_amount": 1500144352881850600, - "raw_amount_hex_str": "0x14d195574154b8d4" - }, - { - "id": "0xe21fc865c08342cfa9f52fb5c162114a61467365", - "chain": "matic", - "name": "moon doges", - "symbol": "dmoo", - "display_symbol": null, - "optimized_symbol": "dmoo", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1653404026, - "amount": 1182006.1861271453, - "raw_amount": 1.1820061861271453e24, - "raw_amount_hex_str": "0xfa4caf09e176e07912f1" - }, - { - "id": "0xe22483774bd8611be2ad2f4194078dac9159f4ba", - "chain": "matic", - "name": "2BRL (BRZ)", - "symbol": "2BRL (BRZ)", - "display_symbol": null, - "optimized_symbol": "2BRL (BRZ)", - "decimals": 18, - "logo_url": null, - "protocol_id": "matic_balancer2", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668778434, - "amount": 0.11557601946464595, - "raw_amount": 115576019464645950, - "raw_amount_hex_str": "0x19a9bc700be6d41" - }, - { - "id": "0xe3627374ac4baf5375e79251b0af23afc450fc0e", - "chain": "matic", - "name": "Waru Token", - "symbol": "WARU", - "display_symbol": null, - "optimized_symbol": "WARU", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xe3627374ac4baf5375e79251b0af23afc450fc0e/5833e3fb2a9af01ce70f583ef8a1191e.png", - "protocol_id": "", - "price": 0.0016423272562454485, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1657179488, - "amount": 2850.1030434730255, - "raw_amount": 2.850103043473026e21, - "raw_amount_hex_str": "0x9a8120118bad65df19" - }, - { - "id": "0xe3684e842f85397d21f9c25865c6949b94ce1381", - "chain": "matic", - "name": "BLACKTWITTER TOKEN", - "symbol": "BT", - "display_symbol": null, - "optimized_symbol": "BT", - "decimals": 9, - "logo_url": null, - "protocol_id": "", - "price": 1.9073504159270547e-9, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1641525080, - "amount": 479319.374781082, - "raw_amount": 479319374781082, - "raw_amount_hex_str": "0x1b3f03d115a9a" - }, - { - "id": "0xe479fff28859f88f8361864675d72e1bb775bdc2", - "chain": "matic", - "name": "BARZ", - "symbol": "BARZ", - "display_symbol": null, - "optimized_symbol": "BARZ", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1649982841, - "amount": 9654.220984886222, - "raw_amount": 9.65422098488622e21, - "raw_amount_hex_str": "0x20b5b3af37fc10af08d" - }, - { - "id": "0xe537632a4967d4d292c15c966bad1d75fd28f2c7", - "chain": "matic", - "name": "AAVEPool.org", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1671713310, - "amount": 37.84, - "raw_amount": 3784, - "raw_amount_hex_str": "0xec8" - }, - { - "id": "0xe5417af564e4bfda1c483642db72007871397896", - "chain": "matic", - "name": "Gains Network", - "symbol": "GNS", - "display_symbol": null, - "optimized_symbol": "GNS", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xe5417af564e4bfda1c483642db72007871397896/9dc1bb50d224f58fb2e52c58785f1d59.png", - "protocol_id": "matic_gtrade", - "price": 6.282905957645449, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1635324508, - "amount": 0.20839451825819957, - "raw_amount": 208394518258199580, - "raw_amount_hex_str": "0x2e45db5d1eb2c1c" - }, - { - "id": "0xe6469ba6d2fd6130788e0ea9c0a0515900563b59", - "chain": "matic", - "name": "UST (Wormhole)", - "symbol": "UST", - "display_symbol": null, - "optimized_symbol": "UST", - "decimals": 6, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xe6469ba6d2fd6130788e0ea9c0a0515900563b59/57ae3a082518049e3dcf26e142c0d699.png", - "protocol_id": "", - "price": 0.037113274712023823, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1636468795, - "amount": 1118.309482, - "raw_amount": 1118309482, - "raw_amount_hex_str": "0x42a80c6a" - }, - { - "id": "0xe7299f9ec12afe623cad4ee241f5329fd9e2225a", - "chain": "matic", - "name": "DuKet", - "symbol": "DUKT", - "display_symbol": null, - "optimized_symbol": "DUKT", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1650828263, - "amount": 749908.7736522972, - "raw_amount": 7.499087736522973e23, - "raw_amount_hex_str": "0x9ecca2d601cc64b0f93f" - }, - { - "id": "0xe93ce33bd5d76929d52c492223408d4327687794", - "chain": "matic", - "name": "Commando Meta DAO Token", - "symbol": "CMD", - "display_symbol": null, - "optimized_symbol": "CMD", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1674129447, - "amount": 20.84838058680629, - "raw_amount": 20848380586806290000, - "raw_amount_hex_str": "0x1215453af2abd270f" - }, - { - "id": "0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0", - "chain": "matic", - "name": "Seed (PoS)", - "symbol": "SEED", - "display_symbol": null, - "optimized_symbol": "SEED", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0/9ad8e9ad144a20bb9f0cefc717c85531.png", - "protocol_id": "", - "price": 3.9751500757213614, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1636521777, - "amount": 608.9186483050505, - "raw_amount": 608918648305050500000, - "raw_amount_hex_str": "0x2102719c71b58c1e3d" - }, - { - "id": "0xef7ad4f8529b657907c7021791b5fd2245065fbf", - "chain": "matic", - "name": "AAVEPool.org", - "symbol": "AAVE", - "display_symbol": null, - "optimized_symbol": "AAVE", - "decimals": 2, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1672323526, - "amount": 58.72, - "raw_amount": 5872, - "raw_amount_hex_str": "0x16f0" - }, - { - "id": "0xefa1aa32976e3f19da5e649fdeec77b72469bfb3", - "chain": "matic", - "name": "ApeCoin.com.de", - "symbol": "ApeCoin.com.de", - "display_symbol": null, - "optimized_symbol": "ApeCoin.com.de", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1648022230, - "amount": 10, - "raw_amount": 10000000000000000000, - "raw_amount_hex_str": "0x8ac7230489e80000" - }, - { - "id": "0xf28164a485b0b2c90639e47b0f377b4a438a16b1", - "chain": "matic", - "name": "Dragon QUICK", - "symbol": "dQUICK", - "display_symbol": null, - "optimized_symbol": "dQUICK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xf28164a485b0b2c90639e47b0f377b4a438a16b1/d2cc6bfd4d3d5452b6316b1bcc3a8ec7.png", - "protocol_id": "matic_quickswap", - "price": 99.514614859357, - "is_verified": true, - "is_core": false, - "is_wallet": false, - "time_at": 1616850195, - "amount": 0.06245690545627273, - "raw_amount": 62456905456272730, - "raw_amount_hex_str": "0xdde4397f7dc555" - }, - { - "id": "0xf31cdb090d1d4b86a7af42b62dc5144be8e42906", - "chain": "matic", - "name": "0Bets.io", - "symbol": "0Bets.io", - "display_symbol": null, - "optimized_symbol": "0Bets.io", - "decimals": 8, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1650569332, - "amount": 3000000, - "raw_amount": 300000000000000, - "raw_amount_hex_str": "0x110d9316ec000" - }, - { - "id": "0xf7b9c6c5dab9c56101a6aecc92f04e18be580606", - "chain": "matic", - "name": "Terra Luna Classic Node", - "symbol": "TLCN", - "display_symbol": null, - "optimized_symbol": "TLCN", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1664764377, - "amount": 0.000300732052220919, - "raw_amount": 300732052220919, - "raw_amount_hex_str": "0x11183a3252bf7" - }, - { - "id": "0xfa68fb4628dff1028cfec22b4162fccd0d45efb6", - "chain": "matic", - "name": "Liquid Staking Matic (PoS)", - "symbol": "MaticX", - "display_symbol": null, - "optimized_symbol": "MaticX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xfa68fb4628dff1028cfec22b4162fccd0d45efb6/49c8b7e2665db48c5cecdc06abe1787c.png", - "protocol_id": "matic_stader", - "price": 1.2572123744596484, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1650548572, - "amount": 3927.0385186442845, - "raw_amount": 3.9270385186442843e21, - "raw_amount_hex_str": "0xd4e29b765d7ccb9a40" - }, - { - "id": "0xfae400bf04f88e47d899cfe7e7c16bf8c8ae919b", - "chain": "matic", - "name": "Pikatic", - "symbol": "PKT", - "display_symbol": null, - "optimized_symbol": "PKT", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1650371746, - "amount": 440000, - "raw_amount": 4.4e23, - "raw_amount_hex_str": "0x5d2c72a2ac16a3000000" - }, - { - "id": "0xfbdd194376de19a88118e84e279b977f165d01b8", - "chain": "matic", - "name": "beefy.finance", - "symbol": "BIFI", - "display_symbol": null, - "optimized_symbol": "BIFI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xfbdd194376de19a88118e84e279b977f165d01b8/92134086c01a3eaca15b9fc20178db2c.png", - "protocol_id": "matic_beefy", - "price": 481.5368019526217, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1619766301, - "amount": 0.00001383608574725, - "raw_amount": 13836085747250, - "raw_amount_hex_str": "0xc9576f9de32" - } -] diff --git a/FeeSwap/2023-02-03.arbi.json b/FeeSwap/2023-02-03.arbi.json deleted file mode 100644 index 884f3cd6e..000000000 --- a/FeeSwap/2023-02-03.arbi.json +++ /dev/null @@ -1,1066 +0,0 @@ -[ - { - "id": "0x00f70af6d1148e3127db138ce633895e5ef6bdb2", - "chain": "arb", - "name": "3S-BTC/USD+USDC", - "symbol": "3S-BTC/USD+USDC", - "display_symbol": null, - "optimized_symbol": "3S-BTC/USD+USDC", - "decimals": 6, - "logo_url": null, - "protocol_id": "arb_tracer", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1652866583, - "amount": 17.50701, - "raw_amount": 17507010, - "raw_amount_hex_str": "0x10b22c2" - }, - { - "id": "0x027e2eb1c79bd1921a29fd377a8c978b3193401c", - "chain": "arb", - "name": "Arbitrum Bitcoin and Staking Token", - "symbol": "ABAS", - "display_symbol": null, - "optimized_symbol": "ABAS", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1671574991, - "amount": 114.2022441882647, - "raw_amount": 114202244188264700000, - "raw_amount_hex_str": "0x630dfe00511ef82ae" - }, - { - "id": "0x031d35296154279dc1984dcd93e392b1f946737b", - "chain": "arb", - "name": "Cap", - "symbol": "CAP", - "display_symbol": null, - "optimized_symbol": "CAP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x031d35296154279dc1984dcd93e392b1f946737b/5731c294f2e59f3cf7290ce55c03fa30.png", - "protocol_id": "arb_capfinance", - "price": 224.40651751538311, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1625594655, - "amount": 0.2369251863813607, - "raw_amount": 236925186381360700, - "raw_amount_hex_str": "0x349ba33a49aae4c" - }, - { - "id": "0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8", - "chain": "arb", - "name": "Balancer", - "symbol": "BAL", - "display_symbol": null, - "optimized_symbol": "BAL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8/cb8f7f37cfe1ad827dc5977d841a1294.png", - "protocol_id": "arb_balancer2", - "price": 7.075932192587953, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1624285578, - "amount": 123.47466835413306, - "raw_amount": 123474668354133070000, - "raw_amount_hex_str": "0x6b18e24abd744609a" - }, - { - "id": "0x05a131b3cd23be0b4f7b274b3d237e73650e543d", - "chain": "arb", - "name": "3L-BTC/USD", - "symbol": "3L-BTC/USD", - "display_symbol": null, - "optimized_symbol": "3L-BTC/USD", - "decimals": 6, - "logo_url": null, - "protocol_id": "arb_tracer", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1631763794, - "amount": 0.821156, - "raw_amount": 821156, - "raw_amount_hex_str": "0xc87a4" - }, - { - "id": "0x0afaf0c46b1ca13b204a516bf5c0314674f4930d", - "chain": "arb", - "name": "Arbitrum Bitcoin and Staking Token", - "symbol": "ABAS", - "display_symbol": null, - "optimized_symbol": "ABAS", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670612839, - "amount": 17.37102591133403, - "raw_amount": 17371025911334031000, - "raw_amount_hex_str": "0xf1124807dd2bcc43" - }, - { - "id": "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978", - "chain": "arb", - "name": "Curve DAO Token", - "symbol": "CRV", - "display_symbol": null, - "optimized_symbol": "CRV", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x11cdb42b0eb46d95f990bedd4695a6e3fa034978/9f6990ab9d8be30fc1ff159ebf45e638.png", - "protocol_id": "arb_curve", - "price": 1.105, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623944104, - "amount": 0.18094041385963341, - "raw_amount": 180940413859633400, - "raw_amount_hex_str": "0x282d459059d98fa" - }, - { - "id": "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60", - "chain": "arb", - "name": "Lido DAO Token", - "symbol": "LDO", - "display_symbol": null, - "optimized_symbol": "LDO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60/ca70e712bf4b68bd979e825960a63577.png", - "protocol_id": "", - "price": 2.221117348583508, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1663605733, - "amount": 6.696259065072416, - "raw_amount": 6696259065072416000, - "raw_amount_hex_str": "0x5cede42431a1747e" - }, - { - "id": "0x13f2f70a951fb99d48ede6e25b0bdf06914db33f", - "chain": "arb", - "name": "Balancer 50wstETH-50LDO", - "symbol": "50wstETH-50LDO", - "display_symbol": null, - "optimized_symbol": "50wstETH-50LDO", - "decimals": 18, - "logo_url": null, - "protocol_id": "arb_balancer2", - "price": 64.86750747670084, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1665252672, - "amount": 1.4303303334060187, - "raw_amount": 1430330333406018800, - "raw_amount_hex_str": "0x13d98ddc2a21bcbd" - }, - { - "id": "0x1622bf67e6e5747b81866fe0b85178a93c7f86e3", - "chain": "arb", - "name": "Umami", - "symbol": "UMAMI", - "display_symbol": null, - "optimized_symbol": "UMAMI", - "decimals": 9, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x1622bf67e6e5747b81866fe0b85178a93c7f86e3/43c05307911ec6babe0c74acf18e94f2.png", - "protocol_id": "arb_umami", - "price": 24.025394908461035, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1638219842, - "amount": 0.000049999, - "raw_amount": 49999, - "raw_amount_hex_str": "0xc34f" - }, - { - "id": "0x23a941036ae778ac51ab04cea08ed6e2fe103614", - "chain": "arb", - "name": "Graph Token", - "symbol": "GRT", - "display_symbol": null, - "optimized_symbol": "GRT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x23a941036ae778ac51ab04cea08ed6e2fe103614/4805b6c4448e95d355d9f71ac464a573.png", - "protocol_id": "", - "price": 0.09875458953100871, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623867469, - "amount": 0.001417427125288543, - "raw_amount": 1417427125288543, - "raw_amount_hex_str": "0x50924784c3e5f" - }, - { - "id": "0x2e9a6df78e42a30712c10a9dc4b1c8656f8f2879", - "chain": "arb", - "name": "4d616b6572000000000000000000000000000000000000000000000000000000", - "symbol": "4d4b520000000000000000000000000000000000000000000000000000000000", - "display_symbol": null, - "optimized_symbol": "4d4b520000000000000000000000000000000000000000000000000000000000", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x2e9a6df78e42a30712c10a9dc4b1c8656f8f2879/e7465082b64493176b49bd7622a70cad.png", - "protocol_id": "", - "price": 671.1609158849863, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623866228, - "amount": 0.7327627699825574, - "raw_amount": 732762769982557400, - "raw_amount_hex_str": "0xa2b4bdb61710d02" - }, - { - "id": "0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f", - "chain": "arb", - "name": "Wrapped BTC", - "symbol": "WBTC", - "display_symbol": null, - "optimized_symbol": "WBTC", - "decimals": 8, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f/d3c52e7c7449afa8bd4fad1c93f50d93.png", - "protocol_id": "", - "price": 23536.68, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623867469, - "amount": 0.06494112, - "raw_amount": 6494112, - "raw_amount_hex_str": "0x6317a0" - }, - { - "id": "0x354a6da3fcde098f8389cad84b0182725c6c91de", - "chain": "arb", - "name": "Compound", - "symbol": "COMP", - "display_symbol": null, - "optimized_symbol": "COMP", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x354a6da3fcde098f8389cad84b0182725c6c91de/adc1acf557aaf7702620d640bc44c1aa.png", - "protocol_id": "", - "price": 54.06334193371102, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1627937552, - "amount": 8.774997093615676, - "raw_amount": 8774997093615676000, - "raw_amount_hex_str": "0x79c70d5d5e0c2cda" - }, - { - "id": "0x39a49bc5017fc668299cd32e734c9269acc35295", - "chain": "arb", - "name": "Phonon DAO", - "symbol": "PHONON", - "display_symbol": null, - "optimized_symbol": "PHONON", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.0012521201087324287, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1653655763, - "amount": 25.088484858329902, - "raw_amount": 25088484858329903000, - "raw_amount_hex_str": "0x15c2c340ddd853298" - }, - { - "id": "0x3dd0843a028c86e0b760b1a76929d1c5ef93a2dd", - "chain": "arb", - "name": "Python Test Weighted Pool V2", - "symbol": "PTWPv2", - "display_symbol": null, - "optimized_symbol": "PTWPv2", - "decimals": 18, - "logo_url": null, - "protocol_id": "arb_balancer2", - "price": 1.0089829484059092, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1662736460, - "amount": 0.003422068726481216, - "raw_amount": 3422068726481216, - "raw_amount_hex_str": "0xc285a76d6c140" - }, - { - "id": "0x3f56e0c36d275367b8c502090edf38289b3dea0d", - "chain": "arb", - "name": "Mai Stablecoin", - "symbol": "MAI", - "display_symbol": null, - "optimized_symbol": "MAI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x3f56e0c36d275367b8c502090edf38289b3dea0d/b41ee2951f44def0fa14347e8b805ba1.png", - "protocol_id": "arb_mai", - "price": 0.9909322360533069, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1637557592, - "amount": 1423.5427934738457, - "raw_amount": 1.4235427934738456e21, - "raw_amount_hex_str": "0x4d2b9ff46957d37f66" - }, - { - "id": "0x43e655c0d866ba3dfa54252f0ca2221a97dfaf48", - "chain": "arb", - "name": "8Dollar.Net", - "symbol": "8DOLL", - "display_symbol": null, - "optimized_symbol": "8DOLL", - "decimals": 9, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1668449538, - "amount": 96960.278971621, - "raw_amount": 96960278971621, - "raw_amount_hex_str": "0x582f52fc44e5" - }, - { - "id": "0x466598c279c2e2b7c7f2cd591ac539720a205582", - "chain": "arb", - "name": "3S-ETH/USD+USDC", - "symbol": "3S-ETH/USD+USDC", - "display_symbol": null, - "optimized_symbol": "3S-ETH/USD+USDC", - "decimals": 6, - "logo_url": null, - "protocol_id": "arb_tracer", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1652866583, - "amount": 2.797456, - "raw_amount": 2797456, - "raw_amount_hex_str": "0x2aaf90" - }, - { - "id": "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42", - "chain": "arb", - "name": "MCDEX Token", - "symbol": "MCB", - "display_symbol": null, - "optimized_symbol": "MCB", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x4e352cf164e64adcbad318c3a1e222e9eba4ce42/60bdacd5f4ca79bd62292fc9df937f83.png", - "protocol_id": "arb_mcdex", - "price": 8.554, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623926214, - "amount": 37.75808514286577, - "raw_amount": 37758085142865764000, - "raw_amount_hex_str": "0x20bffaa62f377e2e1" - }, - { - "id": "0x4e35ac206251ff000874bf4c73f3fc3ba7bb48d7", - "chain": "arb", - "name": "NOVA", - "symbol": "NOVA", - "display_symbol": null, - "optimized_symbol": "NOVA", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670459195, - "amount": 0.000024691054335142, - "raw_amount": 24691054335142, - "raw_amount_hex_str": "0x1674d585d4a6" - }, - { - "id": "0x539bde0d7dbd336b79148aa742883198bbf60342", - "chain": "arb", - "name": "MAGIC", - "symbol": "MAGIC", - "display_symbol": null, - "optimized_symbol": "MAGIC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x539bde0d7dbd336b79148aa742883198bbf60342/e50b983bc909e7c1002169d9f5488ced.png", - "protocol_id": "arb_battlefly", - "price": 1.9801103534568072, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1633719743, - "amount": 1670.9950417348682, - "raw_amount": 1.6709950417348683e21, - "raw_amount_hex_str": "0x5a95b6f1258ddab5e5" - }, - { - "id": "0x5979d7b546e38e414f7e9822514be443a4800529", - "chain": "arb", - "name": "Wrapped liquid staked Ether 2.0", - "symbol": "wstETH", - "display_symbol": null, - "optimized_symbol": "wstETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x5979d7b546e38e414f7e9822514be443a4800529/4e742896fd0e8ecaf23bf8b6f9d79cfe.png", - "protocol_id": "arb_lido", - "price": 1820.7937538707013, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1659608815, - "amount": 4.153416449127231, - "raw_amount": 4153416449127231500, - "raw_amount_hex_str": "0x39a3e641367e30f4" - }, - { - "id": "0x5d59e5837f7e5d0f710178eda34d9ecf069b36d2", - "chain": "arb", - "name": "Y2K", - "symbol": "Dummy", - "display_symbol": null, - "optimized_symbol": "Dummy", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669996272, - "amount": 75.2133012474184, - "raw_amount": 75213301247418400000, - "raw_amount_hex_str": "0x413cb52fcc4d19078" - }, - { - "id": "0x64343594ab9b56e99087bfa6f2335db24c2d1f17", - "chain": "arb", - "name": "Vesta Stable", - "symbol": "VST", - "display_symbol": null, - "optimized_symbol": "VST", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x64343594ab9b56e99087bfa6f2335db24c2d1f17/d7e68c59cc68ededbbb78135541449e9.png", - "protocol_id": "arb_vestafinance", - "price": 0.9846556187532132, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1644224750, - "amount": 1707.1781292741937, - "raw_amount": 1.7071781292741936e21, - "raw_amount_hex_str": "0x5c8bdb178eb833e929" - }, - { - "id": "0x65c936f008bc34fe819bce9fa5afd9dc2d49977f", - "chain": "arb", - "name": "Y2K", - "symbol": "Y2K", - "display_symbol": null, - "optimized_symbol": "Y2K", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x65c936f008bc34fe819bce9fa5afd9dc2d49977f/ac940fb9a204808b7e99a6d256c3ab4b.png", - "protocol_id": "", - "price": 1.9576637259851801, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1666976870, - "amount": 6388.216323216334, - "raw_amount": 6.388216323216334e21, - "raw_amount_hex_str": "0x15a4e4f83be9d920735" - }, - { - "id": "0x6694340fc020c5e6b96567843da2df01b2ce1eb6", - "chain": "arb", - "name": "StargateToken", - "symbol": "STG", - "display_symbol": null, - "optimized_symbol": "STG", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x6694340fc020c5e6b96567843da2df01b2ce1eb6/3e78cc5b8a3f077a619a7ce556b41b25.png", - "protocol_id": "arb_stargate", - "price": 0.7046951175546387, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1647502704, - "amount": 9517.826839935975, - "raw_amount": 9.517826839935975e21, - "raw_amount_hex_str": "0x203f6619b505e808cb8" - }, - { - "id": "0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55", - "chain": "arb", - "name": "Dopex Governance Token", - "symbol": "DPX", - "display_symbol": null, - "optimized_symbol": "DPX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55/19a73b131b94cc91d3ebe7b27c141387.png", - "protocol_id": "arb_dopex", - "price": 360.3039907311075, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1633719434, - "amount": 4.041446068486012, - "raw_amount": 4041446068486012000, - "raw_amount_hex_str": "0x381619c96b01fb12" - }, - { - "id": "0x77de4df6f2d87cc7708959bcea45d58b0e8b8315", - "chain": "arb", - "name": "LEVR - levr.ly Logistics Token", - "symbol": "LEVR", - "display_symbol": null, - "optimized_symbol": "LEVR", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.0009424413314274468, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1643878398, - "amount": 16226.793745873547, - "raw_amount": 1.6226793745873547e22, - "raw_amount_hex_str": "0x36fa8001aa25303a636" - }, - { - "id": "0x7b53663ce3ddaa2ba8906eb45de82a4ba6a653bd", - "chain": "arb", - "name": "Y2K", - "symbol": "Dummy", - "display_symbol": null, - "optimized_symbol": "Dummy", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669306058, - "amount": 0.02142766825989827, - "raw_amount": 21427668259898270, - "raw_amount_hex_str": "0x4c2059caff039f" - }, - { - "id": "0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65", - "chain": "arb", - "name": "dHedge DAO Token", - "symbol": "DHT", - "display_symbol": null, - "optimized_symbol": "DHT", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65/8d92dcdd52d7171c4badfeb7c2ca4581.png", - "protocol_id": "", - "price": 0.0801, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": null, - "amount": 69.78897124375962, - "raw_amount": 69788971243759624000, - "raw_amount_hex_str": "0x3c8843b96a03e5cb9" - }, - { - "id": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1", - "chain": "arb", - "name": "Wrapped Ether", - "symbol": "WETH", - "display_symbol": null, - "optimized_symbol": "WETH", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x82af49447d8a07e3bd95bd0d56f35241523fbab1/61844453e63cf81301f845d7864236f6.png", - "protocol_id": "", - "price": 1652.99, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1622346702, - "amount": 5.071358721618426, - "raw_amount": 5071358721618427000, - "raw_amount_hex_str": "0x466115e35aa53b8d" - }, - { - "id": "0x850e4cd3a76bdb74e93f76adcf9d043a7f6dd48f", - "chain": "arb", - "name": "NOVA", - "symbol": "NOVA", - "display_symbol": null, - "optimized_symbol": "NOVA", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670460657, - "amount": 0.000024996876131967, - "raw_amount": 24996876131967, - "raw_amount_hex_str": "0x16bc09ec1e7f" - }, - { - "id": "0x965772e0e9c84b6f359c8597c891108dcf1c5b1a", - "chain": "arb", - "name": "PickleToken", - "symbol": "PICKLE", - "display_symbol": null, - "optimized_symbol": "PICKLE", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x965772e0e9c84b6f359c8597c891108dcf1c5b1a/4a595cf8371b831ef756c42a97998e93.png", - "protocol_id": "arb_pickle", - "price": 1.3540289817848246, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1632180709, - "amount": 242.32254078555326, - "raw_amount": 242322540785553240000, - "raw_amount_hex_str": "0xd22e69af6f1020095" - }, - { - "id": "0xa0b862f60edef4452f25b4160f177db44deb6cf1", - "chain": "arb", - "name": "Gnosis Token", - "symbol": "GNO", - "display_symbol": null, - "optimized_symbol": "GNO", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xa0b862f60edef4452f25b4160f177db44deb6cf1/7e348001ca5f139619b6540bc481fe2f.png", - "protocol_id": "", - "price": 117.8, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623866487, - "amount": 1.6038853102621409, - "raw_amount": 1603885310262141000, - "raw_amount_hex_str": "0x1642253122a45fd0" - }, - { - "id": "0xa684cd057951541187f288294a1e1c2646aa2d24", - "chain": "arb", - "name": "Vesta", - "symbol": "VSTA", - "display_symbol": null, - "optimized_symbol": "VSTA", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xa684cd057951541187f288294a1e1c2646aa2d24/03aa8c8b6b6817bb2518f8acf6b612ef.png", - "protocol_id": "arb_vestafinance", - "price": 0.34175643869743727, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1643352371, - "amount": 39.31631801921548, - "raw_amount": 39316318019215480000, - "raw_amount_hex_str": "0x2219f9eee83a0d75f" - }, - { - "id": "0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d", - "chain": "arb", - "name": "Biconomy Token", - "symbol": "BICO", - "display_symbol": null, - "optimized_symbol": "BICO", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.4029264825880923, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1656421783, - "amount": 907.4509643975882, - "raw_amount": 907450964397588200000, - "raw_amount_hex_str": "0x313169743d03e3f284" - }, - { - "id": "0xa72159fc390f0e3c6d415e658264c7c4051e9b87", - "chain": "arb", - "name": "Tracer", - "symbol": "TCR", - "display_symbol": null, - "optimized_symbol": "TCR", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xa72159fc390f0e3c6d415e658264c7c4051e9b87/68643a9952d9b0ed410b2cad0790542d.png", - "protocol_id": "arb_tracer", - "price": 0.016598321828010226, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1631624326, - "amount": 9376.854610991426, - "raw_amount": 9.376854610991427e21, - "raw_amount_hex_str": "0x1fc51ffa3fde3a06cad" - }, - { - "id": "0xb2d948be3a74ecce80378d4093e6cd7f4dc1cf9c", - "chain": "arb", - "name": "Alt Markets", - "symbol": "AMX", - "display_symbol": null, - "optimized_symbol": "AMX", - "decimals": 6, - "logo_url": null, - "protocol_id": "", - "price": 0.0021771501577112114, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1675092467, - "amount": 1, - "raw_amount": 1000000, - "raw_amount_hex_str": "0xf4240" - }, - { - "id": "0xb965029343d55189c25a7f3e0c9394dc0f5d41b1", - "chain": "arb", - "name": "Indexed", - "symbol": "NDX", - "display_symbol": null, - "optimized_symbol": "NDX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xb965029343d55189c25a7f3e0c9394dc0f5d41b1/d6b2c7d1cc3580f83d6202f48f33ad0e.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1631287651, - "amount": 434.10759562585065, - "raw_amount": 434107595625850670000, - "raw_amount_hex_str": "0x178873fe3899bf21ff" - }, - { - "id": "0xb96b904ba83ddeece47caada8b40ee6936d92091", - "chain": "arb", - "name": "CRE8R DAO", - "symbol": "CRE8R", - "display_symbol": null, - "optimized_symbol": "CRE8R", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0.003976313845194816, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1640152350, - "amount": 2339.309066806946, - "raw_amount": 2.3393090668069456e21, - "raw_amount_hex_str": "0x7ed06f5211fe870c3a" - }, - { - "id": "0xb9c8f0d3254007ee4b98970b94544e473cd610ec", - "chain": "arb", - "name": "QiDao", - "symbol": "QI", - "display_symbol": null, - "optimized_symbol": "QI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xb9c8f0d3254007ee4b98970b94544e473cd610ec/c0524dfb9be687e8e26191eed8774fd3.png", - "protocol_id": "arb_mai", - "price": 0.1050816046035519, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1637560087, - "amount": 0.08976538625262025, - "raw_amount": 89765386252620240, - "raw_amount_hex_str": "0x13ee924a8b691d1" - }, - { - "id": "0xc74fe4c715510ec2f8c61d70d397b32043f55abe", - "chain": "arb", - "name": "Mycelium", - "symbol": "MYC", - "display_symbol": null, - "optimized_symbol": "MYC", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xc74fe4c715510ec2f8c61d70d397b32043f55abe/62ceadf59b0be2d1234dc5211807828a.png", - "protocol_id": "arb_tracer", - "price": 0.01458222588359383, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1660277009, - "amount": 193450.50439542616, - "raw_amount": 1.9345050439542614e23, - "raw_amount_hex_str": "0x28f6f90d22f0ce5cab4c" - }, - { - "id": "0xcad3b1cf25e61661e17223efb53e635e518f2a38", - "chain": "arb", - "name": "Arbitrum Bitcoin and Staking Token", - "symbol": "ABAS", - "display_symbol": null, - "optimized_symbol": "ABAS", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670176496, - "amount": 0.000016891262915198, - "raw_amount": 16891262915198, - "raw_amount_hex_str": "0xf5ccdb9d27e" - }, - { - "id": "0xd2568accd10a4c98e87c44e9920360031ad89fcb", - "chain": "arb", - "name": "3xcalibur Ecosystem Token", - "symbol": "XCAL", - "display_symbol": null, - "optimized_symbol": "XCAL", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xd2568accd10a4c98e87c44e9920360031ad89fcb/ed5a8b59cc9e86036073a97144386ccb.png", - "protocol_id": "arb_3xcalibur", - "price": 0.13301251101020495, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1667684453, - "amount": 29.766370167247647, - "raw_amount": 29766370167247647000, - "raw_amount_hex_str": "0x19d1763f54794b030" - }, - { - "id": "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", - "chain": "arb", - "name": "Dai Stablecoin", - "symbol": "DAI", - "display_symbol": null, - "optimized_symbol": "DAI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1/549c4205dbb199f1b8b03af783f35e71.png", - "protocol_id": "", - "price": 0.9997, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1632133487, - "amount": 2218.271164663385, - "raw_amount": 2.2182711646633853e21, - "raw_amount_hex_str": "0x7840b24f5b651f5fd9" - }, - { - "id": "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b", - "chain": "arb", - "name": "handleFOREX", - "symbol": "FOREX", - "display_symbol": null, - "optimized_symbol": "FOREX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xdb298285fe4c5410b05390ca80e8fbe9de1f259b/79a310624b086627e1c0c4f93212f2b4.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1634712667, - "amount": 25696.907377717373, - "raw_amount": 2.569690737771737e22, - "raw_amount_hex_str": "0x571083a57fbce7d5862" - }, - { - "id": "0xe2524b0daff290b008aa1ff4f068a868a5532f34", - "chain": "arb", - "name": "wstkETH", - "symbol": "wstkETH", - "display_symbol": null, - "optimized_symbol": "wstkETH", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670459074, - "amount": 0.000002499999999999, - "raw_amount": 2499999999999, - "raw_amount_hex_str": "0x246139ca7ff" - }, - { - "id": "0xecc6d0388b0891eedc1e08d19a0bc263602e5298", - "chain": "arb", - "name": "NOVA", - "symbol": "NOVA", - "display_symbol": null, - "optimized_symbol": "NOVA", - "decimals": 18, - "logo_url": null, - "protocol_id": "", - "price": 0, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1670467310, - "amount": 0.003754854620363344, - "raw_amount": 3754854620363344, - "raw_amount_hex_str": "0xd570537d47a50" - }, - { - "id": "0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709", - "chain": "arb", - "name": "DigitalDollar", - "symbol": "DUSD", - "display_symbol": null, - "optimized_symbol": "DUSD", - "decimals": 6, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709/61faf1a640efc3e2f146cb010451b606.png", - "protocol_id": "", - "price": 0, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1641540692, - "amount": 501.944859, - "raw_amount": 501944859, - "raw_amount_hex_str": "0x1deb121b" - }, - { - "id": "0xf93579002dbe8046c43fefe86ec78b1112247bb8", - "chain": "arb", - "name": "Balancer 50wstETH-50TENDIE", - "symbol": "50wstETH-50TENDIE", - "display_symbol": null, - "optimized_symbol": "50wstETH-50TENDIE", - "decimals": 18, - "logo_url": null, - "protocol_id": "arb_balancer2", - "price": 4.686912399868684, - "is_verified": false, - "is_core": false, - "is_wallet": false, - "time_at": 1669148436, - "amount": 13.936567136065953, - "raw_amount": 13936567136065954000, - "raw_amount_hex_str": "0xc168a1f89d981c1b" - }, - { - "id": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4", - "chain": "arb", - "name": "ChainLink Token", - "symbol": "LINK", - "display_symbol": null, - "optimized_symbol": "LINK", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xf97f4df75117a78c1a5a0dbb814af92458539fb4/ec9f53931b5e0ae59925b2cb3e593df5.png", - "protocol_id": "", - "price": 7.225910836871418, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623867040, - "amount": 119.43393446546685, - "raw_amount": 119433934465466840000, - "raw_amount_hex_str": "0x6797a929bb56f59d5" - }, - { - "id": "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0", - "chain": "arb", - "name": "Uniswap", - "symbol": "UNI", - "display_symbol": null, - "optimized_symbol": "UNI", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0/78f517acfa1f4f10d87eb1768f15888f.png", - "protocol_id": "arb_uniswap3", - "price": 7.108168030728025, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623867248, - "amount": 0.29601956657012496, - "raw_amount": 296019566570124900, - "raw_amount_hex_str": "0x41bac3a37fa368b" - }, - { - "id": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a", - "chain": "arb", - "name": "GMX", - "symbol": "GMX", - "display_symbol": null, - "optimized_symbol": "GMX", - "decimals": 18, - "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a/b4e362278f64a738b878e5393fa29837.png", - "protocol_id": "arb_gmx", - "price": 67.58123105128061, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1626958493, - "amount": 20.35570940303768, - "raw_amount": 20355709403037680000, - "raw_amount_hex_str": "0x11a7e01da5723bfae" - }, - { - "id": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", - "chain": "arb", - "name": "Tether USD", - "symbol": "USDT", - "display_symbol": null, - "optimized_symbol": "USDT", - "decimals": 6, - "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", - "protocol_id": "", - "price": 1, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1630432123, - "amount": 2957.052882, - "raw_amount": 2957052882, - "raw_amount_hex_str": "0xb0410bd2" - }, - { - "id": "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", - "chain": "arb", - "name": "USD Coin (Arb1)", - "symbol": "USDC", - "display_symbol": null, - "optimized_symbol": "USDC", - "decimals": 6, - "logo_url": "https://static.debank.com/image/coin/logo_url/usdc/e87790bfe0b3f2ea855dc29069b38818.png", - "protocol_id": "arb_tracer", - "price": 1, - "is_verified": true, - "is_core": true, - "is_wallet": true, - "time_at": 1623868379, - "amount": 428.336115, - "raw_amount": 428336115, - "raw_amount_hex_str": "0x1987e3f3" - } -] diff --git a/FeeSweep/2023-10-13-arbi.json b/FeeSweep/2023-10-13-arbi.json new file mode 100644 index 000000000..2280783e6 --- /dev/null +++ b/FeeSweep/2023-10-13-arbi.json @@ -0,0 +1,3942 @@ +[ + { + "id": "0x0021e01b9fab840567a8291b864ff783894eabc6", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681631497, + "amount": 0.08918354291899974, + "raw_amount": 89183542918999740, + "raw_amount_hex_str": "0x13cd7f5b37f6ebf" + }, + { + "id": "0x0052688295413b32626d226a205b95cdb337de86", + "chain": "arb", + "name": "20ARB-80USDC", + "symbol": "20ARB-80USDC", + "display_symbol": null, + "optimized_symbol": "20ARB-80USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0175361774179317, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679581018, + "amount": 26.826540100612995, + "raw_amount": 26826540100612993000, + "raw_amount_hex_str": "0x1744b0416a1cf3095" + }, + { + "id": "0x00ab79a3be3aacdd6f85c623f63222a07d3463db", + "chain": "arb", + "name": "90HEGIC-10USDT", + "symbol": "90HEGIC-10USDT", + "display_symbol": null, + "optimized_symbol": "90HEGIC-10USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.013069812783002899, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677800234, + "amount": 1741.7592608201062, + "raw_amount": 1.741759260820106e+21, + "raw_amount_hex_str": "0x5e6bc3f37ad5610fe1" + }, + { + "id": "0x00e7ccb0e16fc07d0cb528efea2c130c41c2fc16", + "chain": "arb", + "name": "25LDO-25wstETH-25RPL-25rETH", + "symbol": "25LDO-25wstETH-25RPL-25rETH", + "display_symbol": null, + "optimized_symbol": "25LDO-25wstETH-25RPL-25rETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 95.56811971950103, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684734233, + "amount": 0.008140576573105672, + "raw_amount": 8140576573105672, + "raw_amount_hex_str": "0x1cebcfaee82608" + }, + { + "id": "0x00f70af6d1148e3127db138ce633895e5ef6bdb2", + "chain": "arb", + "name": "3S-BTC/USD+USDC", + "symbol": "3S-BTC/USD+USDC", + "display_symbol": null, + "optimized_symbol": "3S-BTC/USD+USDC", + "decimals": 6, + "logo_url": null, + "protocol_id": "arb_tracer", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652866583, + "amount": 17.50701, + "raw_amount": 17507010, + "raw_amount_hex_str": "0x10b22c2" + }, + { + "id": "0x027e2eb1c79bd1921a29fd377a8c978b3193401c", + "chain": "arb", + "name": "Arbitrum Bitcoin and Staking Token", + "symbol": "ABAS", + "display_symbol": null, + "optimized_symbol": "ABAS", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671574991, + "amount": 114.2022441882647, + "raw_amount": 114202244188264700000, + "raw_amount_hex_str": "0x630dfe00511ef82ae" + }, + { + "id": "0x031d35296154279dc1984dcd93e392b1f946737b", + "chain": "arb", + "name": "Cap", + "symbol": "CAP", + "display_symbol": null, + "optimized_symbol": "CAP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x031d35296154279dc1984dcd93e392b1f946737b/52add1933a042b96d3a74a49a6485e92.png", + "protocol_id": "arb_capfinance", + "price": 81.1141960655241, + "price_24h_change": -0.0047823290877304974, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1625594655, + "amount": 0.23780243645893767, + "raw_amount": 237802436458937660, + "raw_amount_hex_str": "0x34cd80e57db7d4c" + }, + { + "id": "0x05a131b3cd23be0b4f7b274b3d237e73650e543d", + "chain": "arb", + "name": "3L-BTC/USD", + "symbol": "3L-BTC/USD", + "display_symbol": null, + "optimized_symbol": "3L-BTC/USD", + "decimals": 6, + "logo_url": null, + "protocol_id": "arb_tracer", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631763794, + "amount": 0.821156, + "raw_amount": 821156, + "raw_amount_hex_str": "0xc87a4" + }, + { + "id": "0x077794c30afeccdf5ad2abc0588e8cee7197b71a", + "chain": "arb", + "name": "bb-rf-USD", + "symbol": "bb-rf-USD-BPT", + "display_symbol": null, + "optimized_symbol": "bb-rf-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.04276257667642, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675964418, + "amount": 18.09868134024053, + "raw_amount": 18098681340240531000, + "raw_amount_hex_str": "0xfb2b6ec9bc071076" + }, + { + "id": "0x09afec27f5a6201617aad014ceea8deb572b0608", + "chain": "arb", + "name": "50wstETH-50STG", + "symbol": "50wstETH-50STG", + "display_symbol": null, + "optimized_symbol": "50wstETH-50STG", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 27.306387030475378, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677706802, + "amount": 0.00014258565103863, + "raw_amount": 142585651038630, + "raw_amount_hex_str": "0x81ae4f1489a6" + }, + { + "id": "0x0afaf0c46b1ca13b204a516bf5c0314674f4930d", + "chain": "arb", + "name": "Arbitrum Bitcoin and Staking Token", + "symbol": "ABAS", + "display_symbol": null, + "optimized_symbol": "ABAS", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670612839, + "amount": 17.37102591133403, + "raw_amount": 17371025911334031000, + "raw_amount_hex_str": "0xf1124807dd2bcc43" + }, + { + "id": "0x0c4681e6c0235179ec3d4f4fc4df3d14fdd96017", + "chain": "arb", + "name": "Radiant", + "symbol": "RDNT", + "display_symbol": null, + "optimized_symbol": "RDNT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x0c4681e6c0235179ec3d4f4fc4df3d14fdd96017/5319757609084fe1bd63a46bcbd0b0d0.png", + "protocol_id": "arb_radiantcapital", + "price": 0.2146933761498459, + "price_24h_change": 0.01015418605478767, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1658688823, + "amount": 0.004096268762748314, + "raw_amount": 4096268762748314, + "raw_amount_hex_str": "0xe8d88e482159a" + }, + { + "id": "0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd", + "chain": "arb", + "name": "Balancer wstETH/rETH/sfrxETH CSP", + "symbol": "wstETH/rETH/sfrxETH", + "display_symbol": null, + "optimized_symbol": "wstETH/rETH/sfrxETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1552.0689152994953, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692753519, + "amount": 0.000062906833402452, + "raw_amount": 62906833402452, + "raw_amount_hex_str": "0x3936a3757a54" + }, + { + "id": "0x119990bc25598c4f14f98f6c45b06e75821fc48e", + "chain": "arb", + "name": "50WETH-50ALI", + "symbol": "50WETH-50ALI", + "display_symbol": null, + "optimized_symbol": "50WETH-50ALI", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 5.1841641085124035, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679277934, + "amount": 7e-17, + "raw_amount": 70, + "raw_amount_hex_str": "0x46" + }, + { + "id": "0x11cdb42b0eb46d95f990bedd4695a6e3fa034978", + "chain": "arb", + "name": "Curve DAO Token", + "symbol": "CRV", + "display_symbol": null, + "optimized_symbol": "CRV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x11cdb42b0eb46d95f990bedd4695a6e3fa034978/38f4cbac8fb4ac70c384a65ae0cca337.png", + "protocol_id": "arb_curve", + "price": 0.4407, + "price_24h_change": 0.03840716305372286, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623944104, + "amount": 0.3618501501770589, + "raw_amount": 361850150177058940, + "raw_amount_hex_str": "0x5058ccb5f39b069" + }, + { + "id": "0x11ff498c7c2a29fc4638bf45d9ff995c3297fca5", + "chain": "arb", + "name": "20WETH-80ARB", + "symbol": "20WETH-80ARB", + "display_symbol": null, + "optimized_symbol": "20WETH-80ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 3.0188328357562746, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679609140, + "amount": 0.05987177682093929, + "raw_amount": 59871776820939300, + "raw_amount_hex_str": "0xd4b510557bca1d" + }, + { + "id": "0x1249c510e066731ff14422500466a7102603da9e", + "chain": "arb", + "name": "50ACID-50USDC", + "symbol": "50ACID-50USDC", + "display_symbol": null, + "optimized_symbol": "50ACID-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.003540330842208604, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677997030, + "amount": 0.17677662607304656, + "raw_amount": 176776626073046560, + "raw_amount_hex_str": "0x2740967a1ad0e1b" + }, + { + "id": "0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60", + "chain": "arb", + "name": "Lido DAO Token", + "symbol": "LDO", + "display_symbol": null, + "optimized_symbol": "LDO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x13ad51ed4f1b7e9dc168d8a00cb3f4ddd85efa60/ca70e712bf4b68bd979e825960a63577.png", + "protocol_id": "", + "price": 1.5370455853566534, + "price_24h_change": 0.028380650431588165, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1663605733, + "amount": 22.275477007395253, + "raw_amount": 22275477007395254000, + "raw_amount_hex_str": "0x135226451542ceb9d" + }, + { + "id": "0x161cd105034ac000d2aad75f06c26e943130bc0e", + "chain": "arb", + "name": "NFTFi On L2", + "symbol": "20WETH-80NFTE", + "display_symbol": null, + "optimized_symbol": "20WETH-80NFTE", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.0006521471038502281, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683333841, + "amount": 32.818461891845125, + "raw_amount": 32818461891845124000, + "raw_amount_hex_str": "0x1c7729936021f73cb" + }, + { + "id": "0x1622bf67e6e5747b81866fe0b85178a93c7f86e3", + "chain": "arb", + "name": "Umami", + "symbol": "UMAMI", + "display_symbol": null, + "optimized_symbol": "UMAMI", + "decimals": 9, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x1622bf67e6e5747b81866fe0b85178a93c7f86e3/43c05307911ec6babe0c74acf18e94f2.png", + "protocol_id": "arb_umami", + "price": 5.833833346228286, + "price_24h_change": 0.01450245303431321, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638219842, + "amount": 0.000049999, + "raw_amount": 49999, + "raw_amount_hex_str": "0xc34f" + }, + { + "id": "0x1691260a030702f1a24053a142d6c1f21405ebd6", + "chain": "arb", + "name": "50RDNT-50WETH", + "symbol": "50RDNT-50WETH", + "display_symbol": null, + "optimized_symbol": "50RDNT-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 18.31698308845405, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687829032, + "amount": 2.9e-17, + "raw_amount": 29, + "raw_amount_hex_str": "0x1d" + }, + { + "id": "0x1704296ea53ebc11ff7b507c8e851aba3995814b", + "chain": "arb", + "name": "BestUSDCPool", + "symbol": "50USDC-50USDC.e", + "display_symbol": null, + "optimized_symbol": "50USDC-50USDC.e", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0000295670325792, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1688344247, + "amount": 0.008803473188489319, + "raw_amount": 8803473188489319, + "raw_amount_hex_str": "0x1f46b654308867" + }, + { + "id": "0x18339d7ec4599c84067e81c20b012e83c385ba9c", + "chain": "arb", + "name": "50GOLD-5050wstETH/50-4Pool", + "symbol": "50GOLD-5050wstETH/50-4Pool", + "display_symbol": null, + "optimized_symbol": "50GOLD-5050wstETH/50-4Pool", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 10.250091883729961, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697118938, + "amount": 0.00036246207681205, + "raw_amount": 362462076812050, + "raw_amount_hex_str": "0x149a847553b12" + }, + { + "id": "0x184bf78c8652200707c54d5a574dcb135abac90c", + "chain": "arb", + "name": "arb-bonus.site", + "symbol": "Visit arb-bonus.site to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit arb-bonus.site to claim rewards", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681088962, + "amount": 108563991, + "raw_amount": 1.08563991e+26, + "raw_amount_hex_str": "0x59cd51beaadfdd81fc0000" + }, + { + "id": "0x19a13793af96f534f0027b4b6a3eb699647368e7", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679089452, + "amount": 1.9130771489528442, + "raw_amount": 1913077148952844000, + "raw_amount_hex_str": "0x1a8c9d87f3405774" + }, + { + "id": "0x1f181696e86882c317f5a6cf433666476a75ae65", + "chain": "arb", + "name": "50RDNT-50USDT", + "symbol": "50RDNT-50USDT", + "display_symbol": null, + "optimized_symbol": "50RDNT-50USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.4682419807838518, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691185711, + "amount": 0.13799872517515352, + "raw_amount": 137998725175153520, + "raw_amount_hex_str": "0x1ea451c01859375" + }, + { + "id": "0x202726460148a1ba5dff1d61a8d7368f103d3d5d", + "chain": "arb", + "name": "ab-drop.xyz", + "symbol": "Visit ab-drop.xyz to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit ab-drop.xyz to claim rewards", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682533799, + "amount": 625, + "raw_amount": 625000000000000000000, + "raw_amount_hex_str": "0x21e19e0c9bab240000" + }, + { + "id": "0x21cf9324d5b1ac739b7e6922b69500f1eedb52e0", + "chain": "arb", + "name": "50WETH-50ARB", + "symbol": "50WETH-50ARB", + "display_symbol": null, + "optimized_symbol": "50WETH-50ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 35.51009039666519, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679877670, + "amount": 0.20973592493275073, + "raw_amount": 209735924932750720, + "raw_amount_hex_str": "0x2e921b666412d7c" + }, + { + "id": "0x23a941036ae778ac51ab04cea08ed6e2fe103614", + "chain": "arb", + "name": "Graph Token", + "symbol": "GRT", + "display_symbol": null, + "optimized_symbol": "GRT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x23a941036ae778ac51ab04cea08ed6e2fe103614/8a3fcf468cdf3ae0c7a56cfb12ab4816.png", + "protocol_id": "", + "price": 0.07972927852003044, + "price_24h_change": 0.0041556866257430195, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623867469, + "amount": 0.001417427125288543, + "raw_amount": 1417427125288543, + "raw_amount_hex_str": "0x50924784c3e5f" + }, + { + "id": "0x249034a0ea97e76c2b4ab7a1727cbc52548c531c", + "chain": "arb", + "name": "50ZOO-50WETH", + "symbol": "50ZOO-50WETH", + "display_symbol": null, + "optimized_symbol": "50ZOO-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 4.967745107416741, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679671578, + "amount": 0.000019696597233115, + "raw_amount": 19696597233115, + "raw_amount_hex_str": "0x11e9f8ae6ddb" + }, + { + "id": "0x29c6361af40fc1b6585ce0885319511df4450a8e", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679087282, + "amount": 11.065181068398818, + "raw_amount": 11065181068398817000, + "raw_amount_hex_str": "0x998f6b8e4d49f030" + }, + { + "id": "0x2c2179abce3413e27bda6917f60ae37f96d01826", + "chain": "arb", + "name": "80XEX-20USDC", + "symbol": "80XEX-20USDC", + "display_symbol": null, + "optimized_symbol": "80XEX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0734815915998272e-7, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678635373, + "amount": 6026869.228323596, + "raw_amount": 6.026869228323596e+24, + "raw_amount_hex_str": "0x4fc3d3c4bce9b6a2c7ea9" + }, + { + "id": "0x2d42910d826e5500579d121596e98a6eb33c0a1b", + "chain": "arb", + "name": "50WETH-50ARB", + "symbol": "50WETH-50ARB", + "display_symbol": null, + "optimized_symbol": "50WETH-50ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 35.83249500843155, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679604885, + "amount": 2.397222618986823, + "raw_amount": 2397222618986822700, + "raw_amount_hex_str": "0x2144a5455c3dbcd4" + }, + { + "id": "0x2de9cf1e8f823f0586b1e11664fc05144a02f059", + "chain": "arb", + "name": "80RDNT-20WETH", + "symbol": "80RDNT-20WETH", + "display_symbol": null, + "optimized_symbol": "80RDNT-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0966348984461494, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679240945, + "amount": 1.203e-15, + "raw_amount": 1203, + "raw_amount_hex_str": "0x4b3" + }, + { + "id": "0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb", + "chain": "arb", + "name": "Balancer 50GOLD-25USDC-25WSTETH", + "symbol": "50GOLD-25USDC-25WSTETH", + "display_symbol": null, + "optimized_symbol": "50GOLD-25USDC-25WSTETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 9.811100945729862, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697117463, + "amount": 0.16770292511745152, + "raw_amount": 167702925117451550, + "raw_amount_hex_str": "0x253ccebff6b6d11" + }, + { + "id": "0x2fc4506354166e8b9183fbb6a68cd9c5f3fb9bc5", + "chain": "arb", + "name": "10ARB-90USDC", + "symbol": "10ARB-90USDC", + "display_symbol": null, + "optimized_symbol": "10ARB-90USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.6834841718016921, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679602002, + "amount": 0.018589784284284924, + "raw_amount": 18589784284284924, + "raw_amount_hex_str": "0x420b4f70b747fb" + }, + { + "id": "0x327507245a65e24388c3c1a4aa3e1647886c668e", + "chain": "arb", + "name": "50RDNT-50WETH", + "symbol": "50RDNT-50WETH", + "display_symbol": null, + "optimized_symbol": "50RDNT-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 18.328394398310365, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683886984, + "amount": 2.7e-17, + "raw_amount": 27, + "raw_amount_hex_str": "0x1b" + }, + { + "id": "0x32df62dc3aed2cd6224193052ce665dc18165841", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.069670090836371, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1679182811, + "amount": 13.763619389164194, + "raw_amount": 13763619389164196000, + "raw_amount_hex_str": "0xbf0232e962cf8cbd" + }, + { + "id": "0x33bcaa8a390e6dcf2f18ae5fdd9e38fd248219eb", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.10670798987538085, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679016943, + "amount": 7.29e-16, + "raw_amount": 729, + "raw_amount_hex_str": "0x2d9" + }, + { + "id": "0x354a6da3fcde098f8389cad84b0182725c6c91de", + "chain": "arb", + "name": "Compound", + "symbol": "COMP", + "display_symbol": null, + "optimized_symbol": "COMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x354a6da3fcde098f8389cad84b0182725c6c91de/adc1acf557aaf7702620d640bc44c1aa.png", + "protocol_id": "arb_compound3", + "price": 40.489949981796336, + "price_24h_change": -0.002531922308904209, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1627937552, + "amount": 0.3437791868183544, + "raw_amount": 343779186818354400, + "raw_amount_hex_str": "0x4c55959577b0cf9" + }, + { + "id": "0x36365da262db3965ba2e1c4411409bf22508e0a1", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.10670798987538085, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679017341, + "amount": 7.29e-16, + "raw_amount": 729, + "raw_amount_hex_str": "0x2d9" + }, + { + "id": "0x36b151fde682a7e336f4cb04f762d8583c8fe69a", + "chain": "arb", + "name": "50RDNT-50LINK", + "symbol": "50RDNT-50LINK", + "display_symbol": null, + "optimized_symbol": "50RDNT-50LINK", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.274473689418623, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683861921, + "amount": 0.003247522497386943, + "raw_amount": 3247522497386943, + "raw_amount_hex_str": "0xb899ac0db59bf" + }, + { + "id": "0x39a49bc5017fc668299cd32e734c9269acc35295", + "chain": "arb", + "name": "Phonon DAO", + "symbol": "PHONON", + "display_symbol": null, + "optimized_symbol": "PHONON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x39a49bc5017fc668299cd32e734c9269acc35295/f305fb475c9f724396997a1a9aa3b02d.png", + "protocol_id": "", + "price": 0.0002154115930490909, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653655763, + "amount": 25.088484858329902, + "raw_amount": 25088484858329903000, + "raw_amount_hex_str": "0x15c2c340ddd853298" + }, + { + "id": "0x3cdf30e36154a66a4478e15ed41659b5bb0738f1", + "chain": "arb", + "name": "Balancer DUSD-4POOL Stable Pool", + "symbol": "DUSD-4POOL-BPT", + "display_symbol": null, + "optimized_symbol": "DUSD-4POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0075720693817005, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692368914, + "amount": 6.852243465863215, + "raw_amount": 6852243465863215000, + "raw_amount_hex_str": "0x5f180f20a144b7d6" + }, + { + "id": "0x3d87b6a7d3d4411a69949671e0c4806d671b34a6", + "chain": "arb", + "name": "50wstETH-50ankrETH", + "symbol": "50wstETH-50ankrETH", + "display_symbol": null, + "optimized_symbol": "50wstETH-50ankrETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1761.3493362074898, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691162473, + "amount": 0.000043816283311291, + "raw_amount": 43816283311291, + "raw_amount_hex_str": "0x27d9c6008cbb" + }, + { + "id": "0x3dd0843a028c86e0b760b1a76929d1c5ef93a2dd", + "chain": "arb", + "name": "Python Test Weighted Pool V2", + "symbol": "PTWPv2", + "display_symbol": null, + "optimized_symbol": "PTWPv2", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0071806432335992, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662736460, + "amount": 0.003422068726481216, + "raw_amount": 3422068726481216, + "raw_amount_hex_str": "0xc285a76d6c140" + }, + { + "id": "0x3efd3e18504dc213188ed2b694f886a305a6e5ed", + "chain": "arb", + "name": "Balancer 80peg-20WETH", + "symbol": "PEG_80-WETH_20", + "display_symbol": null, + "optimized_symbol": "PEG_80-WETH_20", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.00005384965186079591, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682714909, + "amount": 2.978154e-12, + "raw_amount": 2978154, + "raw_amount_hex_str": "0x2d716a" + }, + { + "id": "0x3f56e0c36d275367b8c502090edf38289b3dea0d", + "chain": "arb", + "name": "Mai Stablecoin", + "symbol": "MAI", + "display_symbol": null, + "optimized_symbol": "MAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mai/295a642804394964de762d65824294cf.png", + "protocol_id": "arb_mai", + "price": 0.7217443442397011, + "price_24h_change": -0.12336239682356401, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637557592, + "amount": 18.794112162297292, + "raw_amount": 18794112162297290000, + "raw_amount_hex_str": "0x104d2196fa6941f24" + }, + { + "id": "0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54", + "chain": "arb", + "name": "Balancer ankrETH/wstETH StablePool", + "symbol": "ankrETH/wstETH-BPT", + "display_symbol": null, + "optimized_symbol": "ankrETH/wstETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1554.0250523844843, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689817378, + "amount": 0.000087000758735924, + "raw_amount": 87000758735924, + "raw_amount_hex_str": "0x4f207151d434" + }, + { + "id": "0x418de00ae109e6f874d872658767866d680eaa19", + "chain": "arb", + "name": "Balancer DOLA/bbaUSD StablePool ", + "symbol": "DOLA/bbaUSD-BPT ", + "display_symbol": null, + "optimized_symbol": "DOLA/bbaUSD-BPT ", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.001287734976236, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689559514, + "amount": 1e-17, + "raw_amount": 10, + "raw_amount_hex_str": "0xa" + }, + { + "id": "0x423a1323c871abc9d89eb06855bf5347048fc4a5", + "chain": "arb", + "name": "Balancer Stable 4pool", + "symbol": "4POOL-BPT", + "display_symbol": null, + "optimized_symbol": "4POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0007811048601059, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692036997, + "amount": 0.05792827472546864, + "raw_amount": 57928274725468640, + "raw_amount_hex_str": "0xcdcd757d7679dd" + }, + { + "id": "0x42a09765f354b64fd8479015d2931dc89d9cb925", + "chain": "arb", + "name": "20WBTC-20WETH-10ARB-50USDC", + "symbol": "20WBTC-20WETH-10ARB-50USDC", + "display_symbol": null, + "optimized_symbol": "20WBTC-20WETH-10ARB-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 134570074.48811224, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693797093, + "amount": 3.72e-16, + "raw_amount": 372, + "raw_amount_hex_str": "0x174" + }, + { + "id": "0x43e655c0d866ba3dfa54252f0ca2221a97dfaf48", + "chain": "arb", + "name": "8Dollar.Net", + "symbol": "8DOLL", + "display_symbol": null, + "optimized_symbol": "8DOLL", + "decimals": 9, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668449538, + "amount": 96960.278971621, + "raw_amount": 96960278971621, + "raw_amount_hex_str": "0x582f52fc44e5" + }, + { + "id": "0x454eb2f12242397688dbfda241487e67ed80507a", + "chain": "arb", + "name": "85ARB-15USDT", + "symbol": "85ARB-15USDT", + "display_symbol": null, + "optimized_symbol": "85ARB-15USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.6731773733103762, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679591607, + "amount": 1.1363033241118565, + "raw_amount": 1136303324111856600, + "raw_amount_hex_str": "0xfc4f5da56c863df" + }, + { + "id": "0x45c4d1376943ab28802b995acffc04903eb5223f", + "chain": "arb", + "name": "Balancer wstETH Boosted Aave WETH StablePool", + "symbol": "wstETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1557.64063332946, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689175700, + "amount": 0.11770900753038445, + "raw_amount": 117709007530384450, + "raw_amount_hex_str": "0x1a22fb7fcb65c43" + }, + { + "id": "0x466598c279c2e2b7c7f2cd591ac539720a205582", + "chain": "arb", + "name": "3S-ETH/USD+USDC", + "symbol": "3S-ETH/USD+USDC", + "display_symbol": null, + "optimized_symbol": "3S-ETH/USD+USDC", + "decimals": 6, + "logo_url": null, + "protocol_id": "arb_tracer", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652866583, + "amount": 2.797456, + "raw_amount": 2797456, + "raw_amount_hex_str": "0x2aaf90" + }, + { + "id": "0x4689122d360c4725d244c5cfea22861333d862e6", + "chain": "arb", + "name": "SuperAura", + "symbol": "SuperAura", + "display_symbol": null, + "optimized_symbol": "SuperAura", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 7.119468019108437, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687913255, + "amount": 0.7942450476243115, + "raw_amount": 794245047624311400, + "raw_amount_hex_str": "0xb05b9a9a842a2a1" + }, + { + "id": "0x46cd168a23a1d8f50dd6adced25400e52d107355", + "chain": "arb", + "name": "50MAGIC-50wstETH", + "symbol": "50MAGIC-50wstETH", + "display_symbol": null, + "optimized_symbol": "50MAGIC-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 29.463847968899515, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683315902, + "amount": 0.01720840302238162, + "raw_amount": 17208403022381624, + "raw_amount_hex_str": "0x3d22f38d4d0237" + }, + { + "id": "0x47c56a900295df5224ec5e6751dc31eb900321d5", + "chain": "arb", + "name": "80XEX-20USDC", + "symbol": "80XEX-20USDC", + "display_symbol": null, + "optimized_symbol": "80XEX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.0000021052941033490804, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677586485, + "amount": 70324.53116464311, + "raw_amount": 7.032453116464311e+22, + "raw_amount_hex_str": "0xee44cebd2e878389dbe" + }, + { + "id": "0x488e88db8708759c1b53deb48d9e780d80c96cd5", + "chain": "arb", + "name": "Web3 WorkRoom", + "symbol": "W3W", + "display_symbol": null, + "optimized_symbol": "W3W", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676587760, + "amount": 0.07, + "raw_amount": 70000000000000000, + "raw_amount_hex_str": "0xf8b0a10e470000" + }, + { + "id": "0x49a0e3334496442a9706e481617724e7e37eaa08", + "chain": "arb", + "name": "Balancer wstETH-Boosted Aave WETH StablePool", + "symbol": "wstETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1567.2617505983972, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681132943, + "amount": 1.52281009e-9, + "raw_amount": 1522810090, + "raw_amount_hex_str": "0x5ac43cea" + }, + { + "id": "0x49b2de7d214070893c038299a57bac5acb8b8a34", + "chain": "arb", + "name": "Balancer 25GOLD-25BAL-25AURA-25wstETH", + "symbol": "GOLD-BAL-AURA-wstETH", + "display_symbol": null, + "optimized_symbol": "GOLD-BAL-AURA-wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 10.71323070579481, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697121114, + "amount": 0.002893895024831459, + "raw_amount": 2893895024831459, + "raw_amount_hex_str": "0xa47fb70f8ebe3" + }, + { + "id": "0x49f3040f6e4dc7ff8fd85502bc40877311ff13d7", + "chain": "arb", + "name": "50WETH-50DFX", + "symbol": "50WETH-50DFX", + "display_symbol": null, + "optimized_symbol": "50WETH-50DFX", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 8.612842151066507, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683831050, + "amount": 4.293934616643454, + "raw_amount": 4293934616643453400, + "raw_amount_hex_str": "0x3b971ec899c9422e" + }, + { + "id": "0x4a2f6ae7f3e5d715689530873ec35593dc28951b", + "chain": "arb", + "name": "Balancer wstETH/rETH/cbETH CSP", + "symbol": "wstETH/rETH/cbETH", + "display_symbol": null, + "optimized_symbol": "wstETH/rETH/cbETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1555.5863774078396, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689904195, + "amount": 0.001277477577710031, + "raw_amount": 1277477577710031, + "raw_amount_hex_str": "0x489dbed3a59cf" + }, + { + "id": "0x4d997a27a64c0c04ef697033b1a3121c674fa5f2", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.24945098378299008, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679106456, + "amount": 0.2799619207071862, + "raw_amount": 279961920707186180, + "raw_amount_hex_str": "0x3e29fe232634df4" + }, + { + "id": "0x4e352cf164e64adcbad318c3a1e222e9eba4ce42", + "chain": "arb", + "name": "MCDEX Token", + "symbol": "MCB", + "display_symbol": null, + "optimized_symbol": "MCB", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x4e352cf164e64adcbad318c3a1e222e9eba4ce42/60bdacd5f4ca79bd62292fc9df937f83.png", + "protocol_id": "arb_mcdex", + "price": 9.092, + "price_24h_change": 0.02157303370786519, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623926214, + "amount": 5.455584415350658, + "raw_amount": 5455584415350658000, + "raw_amount_hex_str": "0x4bb6211eef2213fb" + }, + { + "id": "0x4e35ac206251ff000874bf4c73f3fc3ba7bb48d7", + "chain": "arb", + "name": "NOVA", + "symbol": "NOVA", + "display_symbol": null, + "optimized_symbol": "NOVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670459195, + "amount": 0.000024691054335142, + "raw_amount": 24691054335142, + "raw_amount_hex_str": "0x1674d585d4a6" + }, + { + "id": "0x519cce718fcd11ac09194cff4517f12d263be067", + "chain": "arb", + "name": "Overnight Pulse", + "symbol": "BPT-USD+", + "display_symbol": null, + "optimized_symbol": "BPT-USD+", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.18233261164321662, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677679484, + "amount": 9.899531179841585, + "raw_amount": 9899531179841585000, + "raw_amount_hex_str": "0x89623328795c7f3c" + }, + { + "id": "0x542f16da0efb162d20bf4358efa095b70a100f9e", + "chain": "arb", + "name": "2BTC", + "symbol": "2BTC", + "display_symbol": null, + "optimized_symbol": "2BTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 26947.31894137334, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684284153, + "amount": 0.000711188125914888, + "raw_amount": 711188125914888, + "raw_amount_hex_str": "0x286d2639d1708" + }, + { + "id": "0x56e41f6a5024ad84711f9a70e47709cb49e7d947", + "chain": "arb", + "name": "ChadAura", + "symbol": "ChadAura", + "display_symbol": null, + "optimized_symbol": "ChadAura", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 13.490885442670436, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687191130, + "amount": 4.3769342e-8, + "raw_amount": 43769342000, + "raw_amount_hex_str": "0xa30db2830" + }, + { + "id": "0x585d95df0231fa08aeee35ff0c16b92fd0ecdc33", + "chain": "arb", + "name": "ChadUSD", + "symbol": "ChadUSD", + "display_symbol": null, + "optimized_symbol": "ChadUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0051361266057408, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687269214, + "amount": 0.12999671543417315, + "raw_amount": 129996715434173150, + "raw_amount_hex_str": "0x1cdd752ed6be2d9" + }, + { + "id": "0x5979d7b546e38e414f7e9822514be443a4800529", + "chain": "arb", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH", + "display_symbol": null, + "optimized_symbol": "wstETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x5979d7b546e38e414f7e9822514be443a4800529/7e931af8cb34b6f5671ca2eb1b847849.png", + "protocol_id": "arb_lido", + "price": 1765.8496374695237, + "price_24h_change": 0.00007492063906665063, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1659608815, + "amount": 0.00006724183095261, + "raw_amount": 67241830952610, + "raw_amount_hex_str": "0x3d27f572aea2" + }, + { + "id": "0x59e7dbff74b2b76957e6a3f25ccee40b2f3421d0", + "chain": "arb", + "name": "50ACID-50WETH", + "symbol": "50ACID-50WETH", + "display_symbol": null, + "optimized_symbol": "50ACID-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.23210752696286038, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677996430, + "amount": 1.398e-15, + "raw_amount": 1398, + "raw_amount_hex_str": "0x576" + }, + { + "id": "0x5a7f39435fd9c381e4932fa2047c9a5136a5e3e7", + "chain": "arb", + "name": "Balancer wstETH-Boosted Aave WETH StablePool", + "symbol": "wstETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1566.6710265211025, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681142907, + "amount": 0.00712325202086531, + "raw_amount": 7123252020865310, + "raw_amount_hex_str": "0x194e8f5a59691e" + }, + { + "id": "0x5af3b93fb82ab8691b82a09cbbae7b8d3eb5ac11", + "chain": "arb", + "name": "ARB-DEX-CORE", + "symbol": "ARB-DEX", + "display_symbol": null, + "optimized_symbol": "ARB-DEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 3.006414165266867, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679617487, + "amount": 0.17288849483777313, + "raw_amount": 172888494837773150, + "raw_amount_hex_str": "0x266392b888eb355" + }, + { + "id": "0x5b0c1b84566708dd391ae0fece1a32e33682ee3d", + "chain": "arb", + "name": "DAI-USDC", + "symbol": "DAI-USDC", + "display_symbol": null, + "optimized_symbol": "DAI-USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 18.142815953779564, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679673140, + "amount": 3.451979332502877, + "raw_amount": 3451979332502877000, + "raw_amount_hex_str": "0x2fe7e4e9ddd2f339" + }, + { + "id": "0x5d59e5837f7e5d0f710178eda34d9ecf069b36d2", + "chain": "arb", + "name": "Y2K", + "symbol": "Dummy", + "display_symbol": null, + "optimized_symbol": "Dummy", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669996272, + "amount": 75.2133012474184, + "raw_amount": 75213301247418400000, + "raw_amount_hex_str": "0x413cb52fcc4d19078" + }, + { + "id": "0x5d6be336cde29f7ec6dc7b736f716ac270238c4c", + "chain": "arb", + "name": "USDC/USDC.e", + "symbol": "baUSDC", + "display_symbol": null, + "optimized_symbol": "baUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 999954.0021159025, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1688344540, + "amount": 4.7e-17, + "raw_amount": 47, + "raw_amount_hex_str": "0x2f" + }, + { + "id": "0x5f838591a5a8048f0e4c4c7fcca8fd9a25bf0590", + "chain": "arb", + "name": "50ARB-50USDC", + "symbol": "50ARB-50USDC", + "display_symbol": null, + "optimized_symbol": "50ARB-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.6954518003798964, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679581086, + "amount": 15.761289816087562, + "raw_amount": 15761289816087562000, + "raw_amount_hex_str": "0xdabb5994b1e1864c" + }, + { + "id": "0x5fbeaa96c9d8d0e839780433aa0b3b4d35b049d8", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678924966, + "amount": 1970.6499612715052, + "raw_amount": 1.9706499612715052e+21, + "raw_amount_hex_str": "0x6ad44312d3515b762f" + }, + { + "id": "0x623f3dbc761b46f64ae7951700dd7724cb7d6075", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678845565, + "amount": 33427.826955094606, + "raw_amount": 3.3427826955094604e+22, + "raw_amount_hex_str": "0x714204a1370d99fd58c" + }, + { + "id": "0x64343594ab9b56e99087bfa6f2335db24c2d1f17", + "chain": "arb", + "name": "Vesta Stable", + "symbol": "VST", + "display_symbol": null, + "optimized_symbol": "VST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x64343594ab9b56e99087bfa6f2335db24c2d1f17/d7e68c59cc68ededbbb78135541449e9.png", + "protocol_id": "arb_vestafinance", + "price": 1.001050730498283, + "price_24h_change": 0.0008956369683721575, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644224750, + "amount": 4.59754210133647, + "raw_amount": 4597542101336470000, + "raw_amount_hex_str": "0x3fcdc02eae10322a" + }, + { + "id": "0x65c936f008bc34fe819bce9fa5afd9dc2d49977f", + "chain": "arb", + "name": "Y2K", + "symbol": "Y2K", + "display_symbol": null, + "optimized_symbol": "Y2K", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x65c936f008bc34fe819bce9fa5afd9dc2d49977f/fd71101dc1733ec40b54b49377eb1195.png", + "protocol_id": "", + "price": 0.48066218263126864, + "price_24h_change": -0.041755574421511, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1666976870, + "amount": 151.43645035346503, + "raw_amount": 151436450353465030000, + "raw_amount_hex_str": "0x8359a5940745c4f94" + }, + { + "id": "0x6661136537dfdca26eea05c8500502d7d5796e5e", + "chain": "arb", + "name": "80AI-20USDC", + "symbol": "80AI-20USDC", + "display_symbol": null, + "optimized_symbol": "80AI-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.016931965918307923, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679404628, + "amount": 2.2800997595386896, + "raw_amount": 2280099759538689300, + "raw_amount_hex_str": "0x1fa48aa69bc1d575" + }, + { + "id": "0x69f1077aece23d5b0344330b5eb13f05d5e410a1", + "chain": "arb", + "name": "50ARB-50USDC", + "symbol": "50ARB-50USDC", + "display_symbol": null, + "optimized_symbol": "50ARB-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.9178454250171738, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679978198, + "amount": 0.001738437550046528, + "raw_amount": 1738437550046528, + "raw_amount_hex_str": "0x62d1988a27d40" + }, + { + "id": "0x6ab026b3f9d7c55b871901b1a5c19ea5e6c5fdb9", + "chain": "arb", + "name": "80RDNT-20WETH", + "symbol": "80RDNT-20WETH", + "display_symbol": null, + "optimized_symbol": "80RDNT-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0786993184390994, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679203676, + "amount": 2.58e-16, + "raw_amount": 258, + "raw_amount_hex_str": "0x102" + }, + { + "id": "0x6af7bca454f3c8165225ed46fd4d78cc90e81faa", + "chain": "arb", + "name": "UPDOGE-BPT", + "symbol": "UPDOGE-BPT", + "display_symbol": null, + "optimized_symbol": "UPDOGE-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.00023493109858070416, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681312883, + "amount": 2498.4999972833393, + "raw_amount": 2.4984999972833397e+21, + "raw_amount_hex_str": "0x8771a71de8abe52367" + }, + { + "id": "0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55", + "chain": "arb", + "name": "Dopex Governance Token", + "symbol": "DPX", + "display_symbol": null, + "optimized_symbol": "DPX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55/19a73b131b94cc91d3ebe7b27c141387.png", + "protocol_id": "arb_dopex", + "price": 75.26108256444286, + "price_24h_change": 0.006244353367983311, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1633719434, + "amount": 0.3946144235963885, + "raw_amount": 394614423596388500, + "raw_amount_hex_str": "0x579f3ba3db5507f" + }, + { + "id": "0x6e7b9a1746a7ed4b23edff0975b726e5aa673e21", + "chain": "arb", + "name": "2Y2K-98USDC", + "symbol": "2Y2K-98USDC", + "display_symbol": null, + "optimized_symbol": "2Y2K-98USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.5441106658327035, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680024661, + "amount": 3.33381869912421, + "raw_amount": 3333818699124210000, + "raw_amount_hex_str": "0x2e441a718ada7909" + }, + { + "id": "0x6f3b31296fd2457eba6dca3bed65ec79e06c1295", + "chain": "arb", + "name": "17RDNT-17wstETH-17STG-17ARB-17GMX-17USDC", + "symbol": "17RDNT-17wstETH-17STG-17ARB-17GMX-17USDC", + "display_symbol": null, + "optimized_symbol": "17RDNT-17wstETH-17STG-17ARB-17GMX-17USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 5.075430678545192, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680024662, + "amount": 2.477283259607879, + "raw_amount": 2477283259607879000, + "raw_amount_hex_str": "0x226113ffd8f30d18" + }, + { + "id": "0x70c6a653e273523fadfb4df99558737906c230c6", + "chain": "arb", + "name": "80ARB-20XEX", + "symbol": "80ARB-20XEX", + "display_symbol": null, + "optimized_symbol": "80ARB-20XEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.016235111100207235, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679593227, + "amount": 996.2909287852469, + "raw_amount": 996290928785246900000, + "raw_amount_hex_str": "0x360250692794a4c445" + }, + { + "id": "0x760975d3d8b02c202c8ee9d6fa6c904cecfa3b6e", + "chain": "arb", + "name": "BasedAura", + "symbol": "BasedAura", + "display_symbol": null, + "optimized_symbol": "BasedAura", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 25.469869609632987, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687302669, + "amount": 0.045168570436852726, + "raw_amount": 45168570436852730, + "raw_amount_hex_str": "0xa0789353e69bf6" + }, + { + "id": "0x760fe6e2a62a659ee9186db1e442abc98d85ccdb", + "chain": "arb", + "name": "a1dex.site", + "symbol": "Visit a1dex.site to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit a1dex.site to claim rewards", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680115058, + "amount": 49027, + "raw_amount": 4.9027e+22, + "raw_amount_hex_str": "0xa61c24d87d2442c0000" + }, + { + "id": "0x76b9cbd55fd6776c2de18738a04b0f9da56ce6ca", + "chain": "arb", + "name": "80BETS/20wstETH Pool Token", + "symbol": "80BETS/20wstETH", + "display_symbol": null, + "optimized_symbol": "80BETS/20wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.0065578160402380604, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690554915, + "amount": 15446.442147247066, + "raw_amount": 1.5446442147247066e+22, + "raw_amount_hex_str": "0x3455a724e29cb5ca134" + }, + { + "id": "0x77de4df6f2d87cc7708959bcea45d58b0e8b8315", + "chain": "arb", + "name": "LEVR - levr.ly Logistics Token", + "symbol": "LEVR", + "display_symbol": null, + "optimized_symbol": "LEVR", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.0007912483531493501, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1643878398, + "amount": 80474.18470184931, + "raw_amount": 8.047418470184932e+22, + "raw_amount_hex_str": "0x110a83a8c7d3f742ab9f" + }, + { + "id": "0x78a54c8f4eaba82e45cbc20b9454a83cb296e09e", + "chain": "arb", + "name": "50WETH-50ARB", + "symbol": "50WETH-50ARB", + "display_symbol": null, + "optimized_symbol": "50WETH-50ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 35.33507281130878, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679741550, + "amount": 0.027391635376248696, + "raw_amount": 27391635376248696, + "raw_amount_hex_str": "0x61508c186b1779" + }, + { + "id": "0x7b53663ce3ddaa2ba8906eb45de82a4ba6a653bd", + "chain": "arb", + "name": "Y2K", + "symbol": "Dummy", + "display_symbol": null, + "optimized_symbol": "Dummy", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669306058, + "amount": 0.02142766825989827, + "raw_amount": 21427668259898270, + "raw_amount_hex_str": "0x4c2059caff039f" + }, + { + "id": "0x7d890e2c7eeca435298880c083061a60dca8a897", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.24936853569932751, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679168196, + "amount": 0.07008892100406017, + "raw_amount": 70088921004060160, + "raw_amount_hex_str": "0xf9018097232e02" + }, + { + "id": "0x7ef80d6c6b62e194ab3465f10d97f4c48e623025", + "chain": "arb", + "name": "20WETH-80ARB", + "symbol": "20WETH-80ARB", + "display_symbol": null, + "optimized_symbol": "20WETH-80ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 3.0212766863541365, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679625626, + "amount": 0.5824664979472456, + "raw_amount": 582466497947245600, + "raw_amount_hex_str": "0x81556319fb61c32" + }, + { + "id": "0x7f244b47c63e9ca33a58e6550bfd1d3dc806ce55", + "chain": "arb", + "name": "CHEESE", + "symbol": "CHEESE", + "display_symbol": null, + "optimized_symbol": "CHEESE", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.00028046402604494416, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680559234, + "amount": 479.46266516276995, + "raw_amount": 479462665162769960000, + "raw_amount_hex_str": "0x19fde191a9d8f5b3d5" + }, + { + "id": "0x801badb59bea0165ba32151bd759350f3b016e19", + "chain": "arb", + "name": "tCHEESE", + "symbol": "tCHEESE", + "display_symbol": null, + "optimized_symbol": "tCHEESE", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 2.987005057374242e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680553699, + "amount": 6338.078677922856, + "raw_amount": 6.338078677922856e+21, + "raw_amount_hex_str": "0x1579682d0fda542e5c9" + }, + { + "id": "0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65", + "chain": "arb", + "name": "dHedge DAO Token", + "symbol": "DHT", + "display_symbol": null, + "optimized_symbol": "DHT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x8038f3c971414fd1fc220ba727f2d4a0fc98cb65/8d92dcdd52d7171c4badfeb7c2ca4581.png", + "protocol_id": "", + "price": 0.07175, + "price_24h_change": 0.0034965034965035, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": null, + "amount": 71.11473142261237, + "raw_amount": 71114731422612370000, + "raw_amount_hex_str": "0x3daea4772661eb21f" + }, + { + "id": "0x820284ae779e46b7eceb9a4c77a4062b9f970e68", + "chain": "arb", + "name": "25wstETH-25VST-25USDT-25USDC.e", + "symbol": "25wstETH-25VST-25USDT-25USDC.e", + "display_symbol": null, + "optimized_symbol": "25wstETH-25VST-25USDT-25USDC.e", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 13.116235529002388, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686321546, + "amount": 0.000047612951753286, + "raw_amount": 47612951753286, + "raw_amount_hex_str": "0x2b4dc1137246" + }, + { + "id": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1", + "chain": "arb", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x82af49447d8a07e3bd95bd0d56f35241523fbab1/61844453e63cf81301f845d7864236f6.png", + "protocol_id": "", + "price": 1545.9, + "price_24h_change": 0.000006468765565461258, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1622346702, + "amount": 0.017931646849905444, + "raw_amount": 17931646849905444, + "raw_amount_hex_str": "0x3fb4bce0b9f325" + }, + { + "id": "0x82e3a8f066a6989666b031d916c43672085b1582", + "chain": "arb", + "name": "yearn.finance", + "symbol": "YFI", + "display_symbol": null, + "optimized_symbol": "YFI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x82e3a8f066a6989666b031d916c43672085b1582/f14ac7f4efe5c51e1c6b32add3dea10c.png", + "protocol_id": "", + "price": 5076.710038599747, + "price_24h_change": -0.0012242538829175603, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1624039161, + "amount": 0.000055013521080367, + "raw_amount": 55013521080367, + "raw_amount_hex_str": "0x3208d561c02f" + }, + { + "id": "0x850e4cd3a76bdb74e93f76adcf9d043a7f6dd48f", + "chain": "arb", + "name": "NOVA", + "symbol": "NOVA", + "display_symbol": null, + "optimized_symbol": "NOVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670460657, + "amount": 0.000024996876131967, + "raw_amount": 24996876131967, + "raw_amount_hex_str": "0x16bc09ec1e7f" + }, + { + "id": "0x86e5cc6d4aa157f8ebc513de1280407c0048f655", + "chain": "arb", + "name": "13WBTC-13wstETH-75USDC", + "symbol": "13WBTC-13wstETH-75USDC", + "display_symbol": null, + "optimized_symbol": "13WBTC-13wstETH-75USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 6.363628276761575, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683749862, + "amount": 0.008174125092898934, + "raw_amount": 8174125092898935, + "raw_amount_hex_str": "0x1d0a52ce830877" + }, + { + "id": "0x87012b0c3257423fd74a5986f81a0f1954c17a1d", + "chain": "arb", + "name": "50Silo-50WETH", + "symbol": "50Silo-50WETH", + "display_symbol": null, + "optimized_symbol": "50Silo-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 8.85178336181869, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678658085, + "amount": 1.09e-16, + "raw_amount": 109, + "raw_amount_hex_str": "0x6d" + }, + { + "id": "0x882f961def46deadacf31798b295834a5b6d0c86", + "chain": "arb", + "name": "Balancer 80PEG-20WETH", + "symbol": "PEG_80-WETH_20", + "display_symbol": null, + "optimized_symbol": "PEG_80-WETH_20", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.00013096767540568888, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682681011, + "amount": 0.031257758992277146, + "raw_amount": 31257758992277148, + "raw_amount_hex_str": "0x6f0cc425359e9b" + }, + { + "id": "0x89dc7e71e362faf88d92288fe2311d25c6a1b5e0", + "chain": "arb", + "name": "50WETH-50OHM", + "symbol": "50WETH-50OHM", + "display_symbol": null, + "optimized_symbol": "50WETH-50OHM", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 133.92024265974902, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683295315, + "amount": 0.2079736723062047, + "raw_amount": 207973672306204700, + "raw_amount_hex_str": "0x2e2def3fc71e017" + }, + { + "id": "0x8a88c1f44854c61a466ab55614f6a7778473418b", + "chain": "arb", + "name": "29WBTC-4wstETH-67LINK", + "symbol": "29WBTC-4wstETH-67LINK", + "display_symbol": null, + "optimized_symbol": "29WBTC-4wstETH-67LINK", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 71.48108528921549, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679709437, + "amount": 0.02784787866413546, + "raw_amount": 27847878664135464, + "raw_amount_hex_str": "0x62ef7f83862326" + }, + { + "id": "0x8bc65eed474d1a00555825c91feab6a8255c2107", + "chain": "arb", + "name": "Balancer DOLA/USDC StablePool", + "symbol": "DOLA/USDC BPT", + "display_symbol": null, + "optimized_symbol": "DOLA/USDC BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0021044413330487, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686700875, + "amount": 77.67897689629298, + "raw_amount": 77678976896292980000, + "raw_amount_hex_str": "0x4360329ed23516f48" + }, + { + "id": "0x8c1a33acbd89946c0653bd12e9a191ef5d7b5b36", + "chain": "arb", + "name": "aLINK", + "symbol": "LINK at: https://LINKToken.io", + "display_symbol": null, + "optimized_symbol": "LINK at: https://LINKToken.io", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687023869, + "amount": 147.25, + "raw_amount": 147250000000000000000, + "raw_amount_hex_str": "0x7fb8116d608450000" + }, + { + "id": "0x8d333f82e0693f53fa48c40d5d4547142e907e1d", + "chain": "arb", + "name": "80PAL-20OHM", + "symbol": "80PAL-20OHM", + "display_symbol": null, + "optimized_symbol": "80PAL-20OHM", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.20204292731662968, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684333627, + "amount": 7.169010449e-9, + "raw_amount": 7169010449, + "raw_amount_hex_str": "0x1ab4e6b11" + }, + { + "id": "0x8eec307491ad934f24f675bd5fd967e9f569fdf5", + "chain": "arb", + "name": "50wstETH-50ARB", + "symbol": "50wstETH-50ARB", + "display_symbol": null, + "optimized_symbol": "50wstETH-50ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 37.8959551604834, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684533505, + "amount": 7e-18, + "raw_amount": 7, + "raw_amount_hex_str": "0x7" + }, + { + "id": "0x8f023508db7ed646a5ad44f48a1b3a384fafa9cc", + "chain": "arb", + "name": "80BAL-20WETH", + "symbol": "80BAL-20WETH", + "display_symbol": null, + "optimized_symbol": "80BAL-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 8.77124997725737, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685015958, + "amount": 0.014615149527949492, + "raw_amount": 14615149527949492, + "raw_amount_hex_str": "0x33ec66abf3e0b5" + }, + { + "id": "0x939f4f9346679962db1bfb9328485ffdfad7ed59", + "chain": "arb", + "name": "ABTEST", + "symbol": "BalTest23", + "display_symbol": null, + "optimized_symbol": "BalTest23", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 502252.0881389303, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693289761, + "amount": 2e-17, + "raw_amount": 20, + "raw_amount_hex_str": "0x14" + }, + { + "id": "0x93b48e950380adcf6d67c392f20d44fb88d258dc", + "chain": "arb", + "name": "50USDC-50USDC.e", + "symbol": "50USDC-50USDC.e", + "display_symbol": null, + "optimized_symbol": "50USDC-50USDC.e", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0065540733441662, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687516255, + "amount": 12.781738265572544, + "raw_amount": 12781738265572545000, + "raw_amount_hex_str": "0xb161db3b63780e8b" + }, + { + "id": "0x95201b61ef19c867da0d093df20021e1a559452c", + "chain": "arb", + "name": "50ZOO-50MIM", + "symbol": "50ZOO-50MIM", + "display_symbol": null, + "optimized_symbol": "50ZOO-50MIM", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.12786925346631178, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678715973, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0x965772e0e9c84b6f359c8597c891108dcf1c5b1a", + "chain": "arb", + "name": "PickleToken", + "symbol": "PICKLE", + "display_symbol": null, + "optimized_symbol": "PICKLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0x965772e0e9c84b6f359c8597c891108dcf1c5b1a/4a595cf8371b831ef756c42a97998e93.png", + "protocol_id": "arb_pickle", + "price": 0.8626373378753629, + "price_24h_change": -0.00048515741741010627, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632180709, + "amount": 37.28443284219621, + "raw_amount": 37284432842196210000, + "raw_amount_hex_str": "0x2056cea20eb035304" + }, + { + "id": "0x971a8de8f375dea995c87126ed7178407883b889", + "chain": "arb", + "name": "50USDT-50USDC", + "symbol": "50USDT-50USDC", + "display_symbol": null, + "optimized_symbol": "50USDT-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 996952.3807624583, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685159592, + "amount": 2.915e-15, + "raw_amount": 2915, + "raw_amount_hex_str": "0xb63" + }, + { + "id": "0x9791d590788598535278552eecd4b211bfc790cb", + "chain": "arb", + "name": "Balancer wstETH-WETH Stable Pool", + "symbol": "wstETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1551.7933435314244, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692037583, + "amount": 0.000871056759993273, + "raw_amount": 871056759993273, + "raw_amount_hex_str": "0x31838b4c233b9" + }, + { + "id": "0x9cebf13bb702f253abf1579294694a1edad00eaa", + "chain": "arb", + "name": "Balancer Aave Boosted USDC/USDCe", + "symbol": "bbaUSDC/bbaUSDCe", + "display_symbol": null, + "optimized_symbol": "bbaUSDC/bbaUSDCe", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0021470141650195, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690058527, + "amount": 516.6016332422049, + "raw_amount": 516601633242204860000, + "raw_amount_hex_str": "0x1c0149b05c6c3ff26b" + }, + { + "id": "0x9fb7d6dcac7b6aa20108bad226c35b85a9e31b63", + "chain": "arb", + "name": "50wstETH-BPT-50bbaUSD", + "symbol": "50wstETH-BPT-50bbaUSD", + "display_symbol": null, + "optimized_symbol": "50wstETH-BPT-50bbaUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 39.847026209558145, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681561719, + "amount": 1.730401846502974, + "raw_amount": 1730401846502974000, + "raw_amount_hex_str": "0x18039f4fb37d6261" + }, + { + "id": "0xa0b862f60edef4452f25b4160f177db44deb6cf1", + "chain": "arb", + "name": "Gnosis Token", + "symbol": "GNO", + "display_symbol": null, + "optimized_symbol": "GNO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xa0b862f60edef4452f25b4160f177db44deb6cf1/69e5fedeca09913fe078a8dca5b7e48c.png", + "protocol_id": "", + "price": 93, + "price_24h_change": -0.010638297872340425, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623866487, + "amount": 0.014533051684485657, + "raw_amount": 14533051684485658, + "raw_amount_hex_str": "0x33a1bbc727fa1a" + }, + { + "id": "0xa1a8bf131571a2139feb79401aa4a2e9482df627", + "chain": "arb", + "name": "Balancer 50wstETH/50-4Pool ", + "symbol": "50wstETH/50-4Pool", + "display_symbol": null, + "optimized_symbol": "50wstETH/50-4Pool", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 42.038918876001375, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695216444, + "amount": 0.000004447645458732, + "raw_amount": 4447645458732, + "raw_amount_hex_str": "0x40b8c53e12c" + }, + { + "id": "0xa1ea76c42b2938cfa9abea12357881006c528513", + "chain": "arb", + "name": "Balancer DUSD/bbaUSD StablePool", + "symbol": "DUSD/bbaUSD", + "display_symbol": null, + "optimized_symbol": "DUSD/bbaUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.023246895799176, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690982108, + "amount": 0.06024827863811496, + "raw_amount": 60248278638114960, + "raw_amount_hex_str": "0xd60b7d7e8db88f" + }, + { + "id": "0xa231aea07bb5e79ae162f95903806fc5ad65ff11", + "chain": "arb", + "name": "Balancer 50DFX-50WETH", + "symbol": "50DFX-50WETH", + "display_symbol": null, + "optimized_symbol": "50DFX-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 8.599158334564663, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684929789, + "amount": 3.1759996138319733, + "raw_amount": 3175999613831973400, + "raw_amount_hex_str": "0x2c136ad2553b89be" + }, + { + "id": "0xa35cb2539e6885df99afc123c98f6b492c8675a8", + "chain": "arb", + "name": "50wstETH-50ARB", + "symbol": "50wstETH-50ARB", + "display_symbol": null, + "optimized_symbol": "50wstETH-50ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 37.751419892272125, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691096870, + "amount": 2.2879439263e-7, + "raw_amount": 228794392630, + "raw_amount_hex_str": "0x3545356036" + }, + { + "id": "0xa50d0dc6a3cbb6af17e731776d7b19c448d9100d", + "chain": "arb", + "name": "50RDNT-50WETH", + "symbol": "50RDNT-50WETH", + "display_symbol": null, + "optimized_symbol": "50RDNT-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 18.311691842460643, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687826768, + "amount": 2e-17, + "raw_amount": 20, + "raw_amount_hex_str": "0x14" + }, + { + "id": "0xa684cd057951541187f288294a1e1c2646aa2d24", + "chain": "arb", + "name": "Vesta", + "symbol": "VSTA", + "display_symbol": null, + "optimized_symbol": "VSTA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xa684cd057951541187f288294a1e1c2646aa2d24/091611025fd7f94dd01b9421c16d16e9.png", + "protocol_id": "arb_vestafinance", + "price": 0.46962261380549186, + "price_24h_change": 0.0021504621488917736, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1643352371, + "amount": 109.66278107292533, + "raw_amount": 109662781072925330000, + "raw_amount_hex_str": "0x5f1e0765e1524f35b" + }, + { + "id": "0xa6f74e9f04aabd2596e2e60d7eac042b5b15f9e9", + "chain": "arb", + "name": "50WBTC-50tBTC", + "symbol": "50WBTC-50tBTC", + "display_symbol": null, + "optimized_symbol": "50WBTC-50tBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 186832.41015791206, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684202710, + "amount": 9.09744046e-10, + "raw_amount": 909744046, + "raw_amount_hex_str": "0x363997ae" + }, + { + "id": "0xa72159fc390f0e3c6d415e658264c7c4051e9b87", + "chain": "arb", + "name": "Tracer", + "symbol": "TCR", + "display_symbol": null, + "optimized_symbol": "TCR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xa72159fc390f0e3c6d415e658264c7c4051e9b87/9b533f8265c54ab60417e8e06767c30c.png", + "protocol_id": "arb_tracer", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1631624326, + "amount": 10825.328743345981, + "raw_amount": 1.0825328743345981e+22, + "raw_amount_hex_str": "0x24ad79d8105fb036fad" + }, + { + "id": "0xa7952cd7ea8effbd81c2b4de72a1e5b9bd1b3e2a", + "chain": "arb", + "name": "Balancer USDF/4pool", + "symbol": "USDF/4pool", + "display_symbol": null, + "optimized_symbol": "USDF/4pool", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 500557.0035676056, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692915935, + "amount": 5e-18, + "raw_amount": 5, + "raw_amount_hex_str": "0x5" + }, + { + "id": "0xa8af146d79ac0bb981e4e0d8b788ec5711b1d5d0", + "chain": "arb", + "name": "Overnight Pulse", + "symbol": "BPT-USD+", + "display_symbol": null, + "optimized_symbol": "BPT-USD+", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.9933158629830119, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689253284, + "amount": 156.95665652231207, + "raw_amount": 156956656522312060000, + "raw_amount_hex_str": "0x882360f83d968b2db" + }, + { + "id": "0xa9a63971c55c132af0e6b39a081e604f07f4e234", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.15549305944303843, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679005411, + "amount": 0.05818989669782213, + "raw_amount": 58189896697822130, + "raw_amount_hex_str": "0xcebb671a30bbb4" + }, + { + "id": "0xade4a71bb62bec25154cfc7e6ff49a513b491e81", + "chain": "arb", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1550.5592263207627, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692037305, + "amount": 0.000904976224749529, + "raw_amount": 904976224749529, + "raw_amount_hex_str": "0x33712326807d9" + }, + { + "id": "0xb2d948be3a74ecce80378d4093e6cd7f4dc1cf9c", + "chain": "arb", + "name": "Alt Markets", + "symbol": "AMX", + "display_symbol": null, + "optimized_symbol": "AMX", + "decimals": 6, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xb2d948be3a74ecce80378d4093e6cd7f4dc1cf9c/4f89d2c26b7269e8e0a2b08aae8d95c7.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675092467, + "amount": 501, + "raw_amount": 501000000, + "raw_amount_hex_str": "0x1ddca740" + }, + { + "id": "0xb32ae42524d38be7e7ed9e02b5f9330fcef07f3f", + "chain": "arb", + "name": "50BAL-50wstETH", + "symbol": "50BAL-50wstETH", + "display_symbol": null, + "optimized_symbol": "50BAL-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 73.11805627304481, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678274600, + "amount": 4.255934441e-9, + "raw_amount": 4255934441, + "raw_amount_hex_str": "0xfdac67e9" + }, + { + "id": "0xb3ca475746591878e8aad9710b402eeb4470784a", + "chain": "arb", + "name": "1ARB-99USDC", + "symbol": "1ARB-99USDC", + "display_symbol": null, + "optimized_symbol": "1ARB-99USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.5284392425999851, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679905140, + "amount": 0.02485849075261566, + "raw_amount": 24858490752615660, + "raw_amount_hex_str": "0x5850aa66f644ec" + }, + { + "id": "0xb5bd58c733948e3d65d86ba9604e06e5da276fd1", + "chain": "arb", + "name": "WBTC-wstETH", + "symbol": "WBTC-wstETH", + "display_symbol": null, + "optimized_symbol": "WBTC-wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 13865.315257947317, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679709755, + "amount": 0.002442983534805247, + "raw_amount": 2442983534805247, + "raw_amount_hex_str": "0x8ade16dc8c0ff" + }, + { + "id": "0xb965029343d55189c25a7f3e0c9394dc0f5d41b1", + "chain": "arb", + "name": "Indexed", + "symbol": "NDX", + "display_symbol": null, + "optimized_symbol": "NDX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xb965029343d55189c25a7f3e0c9394dc0f5d41b1/d6b2c7d1cc3580f83d6202f48f33ad0e.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1631287651, + "amount": 507.4508961157133, + "raw_amount": 507450896115713300000, + "raw_amount_hex_str": "0x1b824bbd6d5abe4e8b" + }, + { + "id": "0xb96b904ba83ddeece47caada8b40ee6936d92091", + "chain": "arb", + "name": "CRE8R DAO", + "symbol": "CRE8R", + "display_symbol": null, + "optimized_symbol": "CRE8R", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_multichain", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1640152350, + "amount": 14373.853327517047, + "raw_amount": 1.4373853327517045e+22, + "raw_amount_hex_str": "0x30b354955701c098a49" + }, + { + "id": "0xb9c8f0d3254007ee4b98970b94544e473cd610ec", + "chain": "arb", + "name": "QiDao", + "symbol": "QI", + "display_symbol": null, + "optimized_symbol": "QI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xb9c8f0d3254007ee4b98970b94544e473cd610ec/c0524dfb9be687e8e26191eed8774fd3.png", + "protocol_id": "arb_mai", + "price": 0.017532234020819402, + "price_24h_change": 0.003924494298601304, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637560087, + "amount": 0.08976538625262025, + "raw_amount": 89765386252620240, + "raw_amount_hex_str": "0x13ee924a8b691d1" + }, + { + "id": "0xbbf9d705b75f408cfcaee91da32966124d2c6f7d", + "chain": "arb", + "name": "Balancer DOLA/bbaUSD StablePool ", + "symbol": "DOLA/bbaUSD-BPT ", + "display_symbol": null, + "optimized_symbol": "DOLA/bbaUSD-BPT ", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0027066044521513, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689560043, + "amount": 59.93713009749894, + "raw_amount": 59937130097498940000, + "raw_amount_hex_str": "0x33fcb76435dcc5ba6" + }, + { + "id": "0xbcaa6c053cab3dd73a2e898d89a4f84a180ae1ca", + "chain": "arb", + "name": "33AURA-33ARB-33BAL", + "symbol": "33AURA-33ARB-33BAL", + "display_symbol": null, + "optimized_symbol": "33AURA-33ARB-33BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.2315634982622718, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687167274, + "amount": 4.482852409036141, + "raw_amount": 4482852409036141000, + "raw_amount_hex_str": "0x3e364a83cd1a729d" + }, + { + "id": "0xbe0f30217be1e981add883848d0773a86d2d2cd4", + "chain": "arb", + "name": "Balancer rETH-Boosted Aave WETH StablePool", + "symbol": "rETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1553.004543740624, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689176610, + "amount": 0.05848474299491301, + "raw_amount": 58484742994913016, + "raw_amount_hex_str": "0xcfc7905afde6f7" + }, + { + "id": "0xc45abdf00b3ff9e90e382c3a838544de5e4a6bba", + "chain": "arb", + "name": "chadUSDC", + "symbol": "chadUSDC", + "display_symbol": null, + "optimized_symbol": "chadUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.0001466780721158, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687224481, + "amount": 0.007071032136460002, + "raw_amount": 7071032136460002, + "raw_amount_hex_str": "0x191f10f6b066e2" + }, + { + "id": "0xc69771058481551261709d8db44977e9afde6450", + "chain": "arb", + "name": "40WBTC-40wstETH-bb-a-WETH-BPT-20bb-a-USD", + "symbol": "40WBTC-40wstETH-bb-a-WETH-BPT-20bb-a-USD", + "display_symbol": null, + "optimized_symbol": "40WBTC-40wstETH-bb-a-WETH-BPT-20bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1084.2104019913559, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683814541, + "amount": 0.00171151508686293, + "raw_amount": 1711515086862930, + "raw_amount_hex_str": "0x6149d28c7ba52" + }, + { + "id": "0xc6eee8cb7643ec2f05f46d569e9ec8ef8b41b389", + "chain": "arb", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.003952472534212, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689181646, + "amount": 304.97254245634167, + "raw_amount": 304972542456341660000, + "raw_amount_hex_str": "0x1088581f8cddfabe38" + }, + { + "id": "0xc74fe4c715510ec2f8c61d70d397b32043f55abe", + "chain": "arb", + "name": "Mycelium", + "symbol": "MYC", + "display_symbol": null, + "optimized_symbol": "MYC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xc74fe4c715510ec2f8c61d70d397b32043f55abe/c34229f594e7de5f89c43b886a86c2c5.png", + "protocol_id": "arb_tracer", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1660277009, + "amount": 40373.58765930118, + "raw_amount": 4.037358765930118e+22, + "raw_amount_hex_str": "0x88ca81523b3056cc305" + }, + { + "id": "0xc764b55852f8849ae69923e45ce077a576bf9a8d", + "chain": "arb", + "name": "20WETH-80ARB", + "symbol": "20WETH-80ARB", + "display_symbol": null, + "optimized_symbol": "20WETH-80ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 3.0814917002289905, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679598383, + "amount": 13.958012579125151, + "raw_amount": 13958012579125150000, + "raw_amount_hex_str": "0xc1b4d27ced30437f" + }, + { + "id": "0xc7fa3a3527435720f0e2a4c1378335324dd4f9b3", + "chain": "arb", + "name": "AuraBal wstETH Pool", + "symbol": "55auraBal-45wsteth", + "display_symbol": null, + "optimized_symbol": "55auraBal-45wsteth", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 95.13082781208014, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687171500, + "amount": 1.2546e-14, + "raw_amount": 12546, + "raw_amount_hex_str": "0x3102" + }, + { + "id": "0xc85d90dec1e12edee418c445b381e7168eb380ab", + "chain": "arb", + "name": "29WBTC-4wstETH-67ARB", + "symbol": "29WBTC-4wstETH-67ARB", + "display_symbol": null, + "optimized_symbol": "29WBTC-4wstETH-67ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 16.690756723497692, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679702883, + "amount": 3.1969345896980275, + "raw_amount": 3196934589698027500, + "raw_amount_hex_str": "0x2c5dcb123d1c2ffc" + }, + { + "id": "0xc9f52540976385a84bf416903e1ca3983c539e34", + "chain": "arb", + "name": "50tBTC-50WETH", + "symbol": "50tBTC-50WETH", + "display_symbol": null, + "optimized_symbol": "50tBTC-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 6460.907228138938, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684203356, + "amount": 0.007700168005257336, + "raw_amount": 7700168005257336, + "raw_amount_hex_str": "0x1b5b4312aa0878" + }, + { + "id": "0xcacfa6ab4a74d69ada00200522ff5bc4bc516062", + "chain": "arb", + "name": "abi-rewards.com", + "symbol": "Visit abi-rewards.com to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit abi-rewards.com to claim rewards", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684876274, + "amount": 875, + "raw_amount": 875000000000000000000, + "raw_amount_hex_str": "0x2f6f10780d22cc0000" + }, + { + "id": "0xcad3b1cf25e61661e17223efb53e635e518f2a38", + "chain": "arb", + "name": "Arbitrum Bitcoin and Staking Token", + "symbol": "ABAS", + "display_symbol": null, + "optimized_symbol": "ABAS", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670176496, + "amount": 0.000016891262915198, + "raw_amount": 16891262915198, + "raw_amount_hex_str": "0xf5ccdb9d27e" + }, + { + "id": "0xccd05438cb1e85342aefb2d2b3c8b6a7dd8baeee", + "chain": "arb", + "name": "arb-claim.info", + "symbol": "Visit arb-claim.info to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit arb-claim.info to claim rewards", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680237584, + "amount": 11520, + "raw_amount": 1.152e+22, + "raw_amount_hex_str": "0x270801d946c94000000" + }, + { + "id": "0xccd3891c1452b7cb0e4632774b9365dc4ee24f20", + "chain": "arb", + "name": "EDE", + "symbol": "EDE", + "display_symbol": null, + "optimized_symbol": "EDE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xccd3891c1452b7cb0e4632774b9365dc4ee24f20/2fbce08c710cc4521b9071d7c0d7bbe9.png", + "protocol_id": "arb_ede", + "price": 0.024905129308448987, + "price_24h_change": -0.014243117648248066, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1678169559, + "amount": 1, + "raw_amount": 1000000000000000000, + "raw_amount_hex_str": "0xde0b6b3a7640000" + }, + { + "id": "0xce34c867d7053befb3421d6adabcb5ce55ff777b", + "chain": "arb", + "name": "Wen Moon Pool", + "symbol": "CRV-WBTC-wstETH-gDAI-LINK-UNI", + "display_symbol": null, + "optimized_symbol": "CRV-WBTC-wstETH-gDAI-LINK-UNI", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 228.10230286923323, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682271082, + "amount": 0.13947782020193036, + "raw_amount": 139477820201930370, + "raw_amount_hex_str": "0x1ef8656a72e8e7c" + }, + { + "id": "0xce6195089b302633ed60f3f427d1380f6a2bfbc7", + "chain": "arb", + "name": "50OHM-50USDC", + "symbol": "50OHM-50USDC", + "display_symbol": null, + "optimized_symbol": "50OHM-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 3.396217668157985, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683295868, + "amount": 1.03943057178e-7, + "raw_amount": 103943057178, + "raw_amount_hex_str": "0x18337d2f1a" + }, + { + "id": "0xcf8b555b7754556cf2ac2165e77ee23ed8517d79", + "chain": "arb", + "name": "ChadAura", + "symbol": "ChadAura", + "display_symbol": null, + "optimized_symbol": "ChadAura", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.1447648026721753, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687267879, + "amount": 25.142099954436663, + "raw_amount": 25142099954436660000, + "raw_amount_hex_str": "0x15ceaaeb3338fe13d" + }, + { + "id": "0xd0dc20e6342db2de82692b8dc842301ff9121805", + "chain": "arb", + "name": "NFTFi on Layer2", + "symbol": "80NFTE-20WETH-bb-BPT", + "display_symbol": null, + "optimized_symbol": "80NFTE-20WETH-bb-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.0003151715794070623, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686864298, + "amount": 4818.754095640418, + "raw_amount": 4.818754095640418e+21, + "raw_amount_hex_str": "0x10539a59721add7541d" + }, + { + "id": "0xd1566767047dd97395f0ec1d88ec614d0a93adf0", + "chain": "arb", + "name": "LDO-BTC-wstETH", + "symbol": "LDO-WBTC-wstETH", + "display_symbol": null, + "optimized_symbol": "LDO-WBTC-wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 25.517813932360887, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679708587, + "amount": 0.880211879458941, + "raw_amount": 880211879458941000, + "raw_amount_hex_str": "0xc37240a723aa842" + }, + { + "id": "0xd1c070ebc7ec77f2134b3ef75283b6c1fb31a157", + "chain": "arb", + "name": "30WBTC-30wstETH-20ARB-20USDC", + "symbol": "30WBTC-30wstETH-20ARB-20USDC", + "display_symbol": null, + "optimized_symbol": "30WBTC-30wstETH-20ARB-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 648.8441807289179, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679777803, + "amount": 0.02331991961470066, + "raw_amount": 23319919614700660, + "raw_amount_hex_str": "0x52d957e4d32c73" + }, + { + "id": "0xd2568accd10a4c98e87c44e9920360031ad89fcb", + "chain": "arb", + "name": "3xcalibur Ecosystem Token", + "symbol": "XCAL", + "display_symbol": null, + "optimized_symbol": "XCAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xd2568accd10a4c98e87c44e9920360031ad89fcb/6f7b7b3fb9adaad36f0cf576ee17dd86.png", + "protocol_id": "arb_3xcalibur", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1667684453, + "amount": 29.766370167247647, + "raw_amount": 29766370167247647000, + "raw_amount_hex_str": "0x19d1763f54794b030" + }, + { + "id": "0xd27d2db5e7daa6d2d28e74519716bffedfe05f7d", + "chain": "arb", + "name": "50RDNT-50wstETH", + "symbol": "50RDNT-50wstETH", + "display_symbol": null, + "optimized_symbol": "50RDNT-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 19.570400145338724, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690561960, + "amount": 5e-18, + "raw_amount": 5, + "raw_amount_hex_str": "0x5" + }, + { + "id": "0xd3d5d45f4edf82ba0dfaf061d230766032a10e07", + "chain": "arb", + "name": "50STG-50bbaUSD", + "symbol": "50STG-50bbaUSD", + "display_symbol": null, + "optimized_symbol": "50STG-50bbaUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.6969808143623024, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681563675, + "amount": 88.24055170699852, + "raw_amount": 88240551706998520000, + "raw_amount_hex_str": "0x4c8956a425022acff" + }, + { + "id": "0xd3f1da62cafb7e7bc6531ff1cef6f414291f03d3", + "chain": "arb", + "name": "Doubloon Token", + "symbol": "DBL", + "display_symbol": null, + "optimized_symbol": "DBL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xd3f1da62cafb7e7bc6531ff1cef6f414291f03d3/25177142a62bc78340a7fd106cbcc48d.png", + "protocol_id": "", + "price": 0.0004437098757115687, + "price_24h_change": -0.01602241898144841, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1643802879, + "amount": 0.03300156021145578, + "raw_amount": 33001560211455780, + "raw_amount_hex_str": "0x753ebe816fff24" + }, + { + "id": "0xd449efa0a587f2cb6be3ae577bc167a774525810", + "chain": "arb", + "name": "Oats And Grains", + "symbol": "BPT-OG", + "display_symbol": null, + "optimized_symbol": "BPT-OG", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.15711186631301838, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680408590, + "amount": 13.671310444728952, + "raw_amount": 13671310444728950000, + "raw_amount_hex_str": "0xbdba406a70282357" + }, + { + "id": "0xd4d42f0b6def4ce0383636770ef773390d85c61a", + "chain": "arb", + "name": "SushiToken", + "symbol": "SUSHI", + "display_symbol": null, + "optimized_symbol": "SUSHI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xd4d42f0b6def4ce0383636770ef773390d85c61a/930cd4a36e687eaeddbcf9f3fd22d023.png", + "protocol_id": "arb_sushiswap_lending", + "price": 0.5403727253494958, + "price_24h_change": 0.008320755580039743, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623945128, + "amount": 0.10180017532975133, + "raw_amount": 101800175329751330, + "raw_amount_hex_str": "0x169aab8589a3121" + }, + { + "id": "0xd6d20527c7b0669989ee082b9d3a1c63af742290", + "chain": "arb", + "name": "Balancer Dola/Overnight Pulse", + "symbol": "BPT-DOLA-USD+", + "display_symbol": null, + "optimized_symbol": "BPT-DOLA-USD+", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 240.77278781433134, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689982010, + "amount": 0.002836853879294193, + "raw_amount": 2836853879294193, + "raw_amount_hex_str": "0xa141a83c148f1" + }, + { + "id": "0xd973e86547e810117db131b94708f429a463535e", + "chain": "arb", + "name": "80LOL-20WETH", + "symbol": "80LOL-20WETH", + "display_symbol": null, + "optimized_symbol": "80LOL-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.000026273130491620877, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678840417, + "amount": 21.696386781463257, + "raw_amount": 21696386781463257000, + "raw_amount_hex_str": "0x12d190cd34a9921a1" + }, + { + "id": "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "chain": "arb", + "name": "Dai Stablecoin", + "symbol": "DAI", + "display_symbol": null, + "optimized_symbol": "DAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1/549c4205dbb199f1b8b03af783f35e71.png", + "protocol_id": "", + "price": 0.99995, + "price_24h_change": -0.00004999999999999449, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632133487, + "amount": 34.44243171421009, + "raw_amount": 34442431714210087000, + "raw_amount_hex_str": "0x1ddfc19290624034f" + }, + { + "id": "0xdb298285fe4c5410b05390ca80e8fbe9de1f259b", + "chain": "arb", + "name": "handleFOREX", + "symbol": "FOREX", + "display_symbol": null, + "optimized_symbol": "FOREX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xdb298285fe4c5410b05390ca80e8fbe9de1f259b/862a6ddc8b01871899af919e8704f8b5.png", + "protocol_id": "arb_handlefi", + "price": 0.01952092022216021, + "price_24h_change": -0.00009704027171267481, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1634712667, + "amount": 3402.4302809323626, + "raw_amount": 3.4024302809323626e+21, + "raw_amount_hex_str": "0xb8723499a8e603474a" + }, + { + "id": "0xdf4a17132bbad1c1e313c7877171af9ad0b5c804", + "chain": "arb", + "name": "50CRV-50wstETH", + "symbol": "50CRV-50wstETH", + "display_symbol": null, + "optimized_symbol": "50CRV-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 27.994346080631573, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694726883, + "amount": 0.000012923094285256, + "raw_amount": 12923094285256, + "raw_amount_hex_str": "0xbc0e471bbc8" + }, + { + "id": "0xe086022290444bcd279d22c56925cc5eda389999", + "chain": "arb", + "name": "lucky money Arb", + "symbol": "YSARB", + "display_symbol": null, + "optimized_symbol": "YSARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.000002781379792547231, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685335750, + "amount": 9900, + "raw_amount": 9.9e+21, + "raw_amount_hex_str": "0x218ae196b8d4f300000" + }, + { + "id": "0xe2524b0daff290b008aa1ff4f068a868a5532f34", + "chain": "arb", + "name": "wstkETH", + "symbol": "wstkETH", + "display_symbol": null, + "optimized_symbol": "wstkETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670459074, + "amount": 0.000002499999999999, + "raw_amount": 2499999999999, + "raw_amount_hex_str": "0x246139ca7ff" + }, + { + "id": "0xe2b680a8d02fbf48c7d9465398c4225d7b7a7f87", + "chain": "arb", + "name": "50GMX-50USDT", + "symbol": "50GMX-50USDT", + "display_symbol": null, + "optimized_symbol": "50GMX-50USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 6.356726592182028, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677986988, + "amount": 0.000024143164719645, + "raw_amount": 24143164719645, + "raw_amount_hex_str": "0x15f544c1c21d" + }, + { + "id": "0xe5d4b82e1386163d179b2e2c5cec2656ad87e780", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.15697636734953763, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679017569, + "amount": 0.06778367214440129, + "raw_amount": 67783672144401280, + "raw_amount_hex_str": "0xf0d0e403bd1381" + }, + { + "id": "0xe96924d293b9e2961f9763ca058e389d27341d3d", + "chain": "arb", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678916791, + "amount": 429.6614165845509, + "raw_amount": 429661416584550940000, + "raw_amount_hex_str": "0x174abffdf09d4999b2" + }, + { + "id": "0xe9eab44b8d5d077f5d87474e6274a77284fc13e0", + "chain": "arb", + "name": "10WETH-90USDC", + "symbol": "10WETH-90USDC", + "display_symbol": null, + "optimized_symbol": "10WETH-90USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 499705.98647937685, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684694776, + "amount": 5.94e-16, + "raw_amount": 594, + "raw_amount_hex_str": "0x252" + }, + { + "id": "0xead7e0163e3b33bf0065c9325fc8fb9b18cc8213", + "chain": "arb", + "name": "Balancer STAR/USDC StablePool", + "symbol": "STAR/USDC-BPT ", + "display_symbol": null, + "optimized_symbol": "STAR/USDC-BPT ", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.9999429066505414, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693363065, + "amount": 268.1223771997437, + "raw_amount": 268122377199743730000, + "raw_amount_hex_str": "0xe88f2097d6c04ed6e" + }, + { + "id": "0xec2adde329532ed7e35adc18748b9adb372adc4f", + "chain": "arb", + "name": "MoonFolio", + "symbol": "MF", + "display_symbol": null, + "optimized_symbol": "MF", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 76.13757473127417, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684405608, + "amount": 0.014112318230688583, + "raw_amount": 14112318230688584, + "raw_amount_hex_str": "0x3223142318f347" + }, + { + "id": "0xecc6d0388b0891eedc1e08d19a0bc263602e5298", + "chain": "arb", + "name": "NOVA", + "symbol": "NOVA", + "display_symbol": null, + "optimized_symbol": "NOVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670467310, + "amount": 0.003754854620363344, + "raw_amount": 3754854620363344, + "raw_amount_hex_str": "0xd570537d47a50" + }, + { + "id": "0xee02583596aee94cccb7e8ccd3921d955f17982a", + "chain": "arb", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 1.009665070738442, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681263074, + "amount": 10.686382409421638, + "raw_amount": 10686382409421638000, + "raw_amount_hex_str": "0x944da82eb78f4857" + }, + { + "id": "0xeeded342aa2cc1b48eccafeb663fdf2c1d166934", + "chain": "arb", + "name": "50WETH-50ARB", + "symbol": "50WETH-50ARB", + "display_symbol": null, + "optimized_symbol": "50WETH-50ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 35.36243469573766, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679637144, + "amount": 0.14361962653119295, + "raw_amount": 143619626531192960, + "raw_amount_hex_str": "0x1fe3d4a162a8084" + }, + { + "id": "0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709", + "chain": "arb", + "name": "DigitalDollar", + "symbol": "DUSD", + "display_symbol": null, + "optimized_symbol": "DUSD", + "decimals": 6, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xf0b5ceefc89684889e5f7e0a7775bd100fcd3709/36a37b4bb7744203151092a7a3c1d68c.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1641540692, + "amount": 40.935087, + "raw_amount": 40935087, + "raw_amount_hex_str": "0x2709eaf" + }, + { + "id": "0xf17f1e67bc384e43b4acf69cc032ad086f15f262", + "chain": "arb", + "name": "20WETH-80AI", + "symbol": "20WETH-80AI", + "display_symbol": null, + "optimized_symbol": "20WETH-80AI", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.07291086989447473, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679406108, + "amount": 281.0231550967222, + "raw_amount": 281023155096722180000, + "raw_amount_hex_str": "0xf3bfacea2cfa19bdb" + }, + { + "id": "0xf46fd013acc2c6988bb2f773bd879101eb5d4573", + "chain": "arb", + "name": "50WETH-50XEX", + "symbol": "50WETH-50XEX", + "display_symbol": null, + "optimized_symbol": "50WETH-50XEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 0.002689819899559527, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677515133, + "amount": 189.8942670020901, + "raw_amount": 189894267002090100000, + "raw_amount_hex_str": "0xa4b4ff5bc46c30d97" + }, + { + "id": "0xf7b0751fea697cf1a541a5f57d11058a8fb794ee", + "chain": "arb", + "name": "20LOL-80WETH", + "symbol": "20LOL-80WETH", + "display_symbol": null, + "optimized_symbol": "20LOL-80WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 32.79941573761218, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678787976, + "amount": 0.000085395995425462, + "raw_amount": 85395995425462, + "raw_amount_hex_str": "0x4daacdf8fab6" + }, + { + "id": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4", + "chain": "arb", + "name": "ChainLink Token", + "symbol": "LINK", + "display_symbol": null, + "optimized_symbol": "LINK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xf97f4df75117a78c1a5a0dbb814af92458539fb4/69425617db0ef93a7c21c4f9b81c7ca5.png", + "protocol_id": "", + "price": 7.221959432456859, + "price_24h_change": -0.0007027799565328347, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623867040, + "amount": 2.1099505460088923, + "raw_amount": 2109950546008892400, + "raw_amount_hex_str": "0x1d480cd7b48063ed" + }, + { + "id": "0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0", + "chain": "arb", + "name": "Uniswap", + "symbol": "UNI", + "display_symbol": null, + "optimized_symbol": "UNI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0/fcee0c46fc9864f48ce6a40ed1cdd135.png", + "protocol_id": "arb_uniswap3", + "price": 4.009439144080237, + "price_24h_change": -0.015748421038864598, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623867248, + "amount": 0.36721818492209984, + "raw_amount": 367218184922099840, + "raw_amount_hex_str": "0x5189efe5b58707c" + }, + { + "id": "0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a", + "chain": "arb", + "name": "GMX", + "symbol": "GMX", + "display_symbol": null, + "optimized_symbol": "GMX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/arb_token/logo_url/0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a/b4e362278f64a738b878e5393fa29837.png", + "protocol_id": "arb_gmx", + "price": 35.15053318341469, + "price_24h_change": -0.009576449033258208, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1626958493, + "amount": 1.1006937674027912, + "raw_amount": 1100693767402791200, + "raw_amount_hex_str": "0xf4673265487a106" + }, + { + "id": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", + "chain": "arb", + "name": "Tether USD", + "symbol": "USDT", + "display_symbol": null, + "optimized_symbol": "USDT", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", + "protocol_id": "arb_rhino", + "price": 0.999745, + "price_24h_change": -0.000050010252101675334, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1630432123, + "amount": 25.426109, + "raw_amount": 25426109, + "raw_amount_hex_str": "0x183f8bd" + }, + { + "id": "0xff8f84e8c87532af96aef5582ee451572233678b", + "chain": "arb", + "name": "50BAL-50ARB", + "symbol": "50BAL-50ARB", + "display_symbol": null, + "optimized_symbol": "50BAL-50ARB", + "decimals": 18, + "logo_url": null, + "protocol_id": "arb_balancer2", + "price": 39.95455706446712, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689234039, + "amount": 6e-18, + "raw_amount": 6, + "raw_amount_hex_str": "0x6" + }, + { + "id": "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", + "chain": "arb", + "name": "USD Coin (Arb1)", + "symbol": "USDC", + "display_symbol": "USDC(Bridged)", + "optimized_symbol": "USDC(Bridged)", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdc/e87790bfe0b3f2ea855dc29069b38818.png", + "protocol_id": "arb_tracer", + "price": 1, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623868379, + "amount": 13.331755, + "raw_amount": 13331755, + "raw_amount_hex_str": "0xcb6d2b" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-10-13-avax.json b/FeeSweep/2023-10-13-avax.json new file mode 100644 index 000000000..7ba90c74f --- /dev/null +++ b/FeeSweep/2023-10-13-avax.json @@ -0,0 +1,342 @@ +[ + { + "id": "0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa", + "chain": "avax", + "name": "Balancer Boosted ggAVAX-WAVAX", + "symbol": "ggAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "ggAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 9.108735140859398, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689850438, + "amount": 0.01520163301166129, + "raw_amount": 15201633011661292, + "raw_amount_hex_str": "0x3601cdffaa79eb" + }, + { + "id": "0x3396cca90c9335565ecdbae3a260dafb13a7959e", + "chain": "avax", + "name": "80BETS/20sAVAX Pool Token", + "symbol": "80BETS/20sAVAX", + "display_symbol": null, + "optimized_symbol": "80BETS/20sAVAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.0023042206289970594, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690622794, + "amount": 21442.779042591163, + "raw_amount": 2.1442779042591164e+22, + "raw_amount_hex_str": "0x48a6a566a863502f105" + }, + { + "id": "0x3441a6f48f0f5a1ada460885df5b461deb2ee494", + "chain": "avax", + "name": "50BTC.b-50USDC", + "symbol": "50BTC.b-50USDC", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 134209764.51901112, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694864473, + "amount": 6.5e-17, + "raw_amount": 65, + "raw_amount_hex_str": "0x41" + }, + { + "id": "0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b", + "chain": "avax", + "name": "BTC.b/Boosted Aave V3 USD", + "symbol": "50BTC.b-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 164.02570387469086, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691145314, + "amount": 0.7540171358527642, + "raw_amount": 754017135852764200, + "raw_amount_hex_str": "0xa76ce97110fbc1c" + }, + { + "id": "0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc", + "chain": "avax", + "name": "BPT-EUROC-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.9601084334650595, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689325569, + "amount": 0.11230989907284827, + "raw_amount": 112309899072848270, + "raw_amount_hex_str": "0x18f014216ff4190" + }, + { + "id": "0x670734d704eb7ef424d75321670f921fbf42e9cf", + "chain": "avax", + "name": "Balancer sAVAX-ankrAVAX", + "symbol": "sAVAX-ankrAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-ankrAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 9.153105798478979, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689851390, + "amount": 2.554387862760572, + "raw_amount": 2554387862760572400, + "raw_amount_hex_str": "0x2373023a3a69c52b" + }, + { + "id": "0x721bd1900aeabc29009b08e44be37529f518f2c2", + "chain": "avax", + "name": "33VCHF-33sAVAX-33VEUR", + "symbol": "33VCHF-33sAVAX-33VEUR", + "display_symbol": null, + "optimized_symbol": "33VCHF-33sAVAX-33VEUR", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 2.2861559612832756, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696338373, + "amount": 1.3530523928906224, + "raw_amount": 1353052392890622500, + "raw_amount_hex_str": "0x12c701fb88bce1b2" + }, + { + "id": "0x90065d5e455e6b26a4eaf630c26289f6b6735647", + "chain": "avax", + "name": "Balancer QI-GGP-USDC", + "symbol": "BPT-QI-GGP-USDC", + "display_symbol": null, + "optimized_symbol": "BPT-QI-GGP-USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.20518968746387317, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690903637, + "amount": 0.24182218235508435, + "raw_amount": 241822182355084350, + "raw_amount_hex_str": "0x35b1ffe5e15a43d" + }, + { + "id": "0x96518f83d66bdc6a5812f01c54f8e022f6796399", + "chain": "avax", + "name": "Balancer 50BTC.b 50USD", + "symbol": "50BTC.b-50USD-BPT", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 163.65554300264733, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038848, + "amount": 0.000199656222727216, + "raw_amount": 199656222727216, + "raw_amount_hex_str": "0xb596163b9c30" + }, + { + "id": "0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9", + "chain": "avax", + "name": "Balancer yyAVAX-WAVAX Stable Pool", + "symbol": "yyAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "yyAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 9.090881587534877, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038616, + "amount": 209.90035177455243, + "raw_amount": 209900351774552420000, + "raw_amount_hex_str": "0xb60f3d9d6d7baef91" + }, + { + "id": "0xa154009870e9b6431305f19b09f9cfd7284d4e7a", + "chain": "avax", + "name": "Balancer Boosted sAVAX-WAVAX", + "symbol": "sAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 9.14583956417424, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689792870, + "amount": 0.03296823166436684, + "raw_amount": 32968231664366840, + "raw_amount_hex_str": "0x75206e993a34f7" + }, + { + "id": "0xa1d14d922a575232066520eda11e27760946c991", + "chain": "avax", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.0035337958487511, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689792622, + "amount": 0.11906646503784356, + "raw_amount": 119066465037843570, + "raw_amount_hex_str": "0x1a70251b13dfc6c" + }, + { + "id": "0xb06fdbd2941d2f42d60accee85086198ac729236", + "chain": "avax", + "name": "80HATCHY-20WAVAX", + "symbol": "80HATCHY-20WAVAX", + "display_symbol": null, + "optimized_symbol": "80HATCHY-20WAVAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.00872521505047469, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691028537, + "amount": 73.84254555069829, + "raw_amount": 73842545550698280000, + "raw_amount_hex_str": "0x400c56bf19bf910f6" + }, + { + "id": "0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c96", + "chain": "avax", + "name": "Balancer USDC-USDT Stable Pool", + "symbol": "USDC-USDT-BPT", + "display_symbol": null, + "optimized_symbol": "USDC-USDT-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.0002355312215827, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038450, + "amount": 726.7668032533608, + "raw_amount": 726766803253360700000, + "raw_amount_hex_str": "0x2765ea5cfbbec6885e" + }, + { + "id": "0xc13546b97b9b1b15372368dc06529d7191081f5b", + "chain": "avax", + "name": "Balancer ggAVAX-WAVAX Stable Pool", + "symbol": "ggAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "ggAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 9.073392307898805, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038316, + "amount": 279.71197736725003, + "raw_amount": 279711977367250040000, + "raw_amount_hex_str": "0xf29c891701d0a57a0" + }, + { + "id": "0xece571847897fd61e764d455dc15cf1cd9de8d6f", + "chain": "avax", + "name": "Balancer Boosted yyAVAX-WAVAX", + "symbol": "yyAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "yyAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 9.132069153073662, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689850089, + "amount": 76.02434221814359, + "raw_amount": 76024342218143580000, + "raw_amount_hex_str": "0x41f0cb874032e58a3" + }, + { + "id": "0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc", + "chain": "avax", + "name": "Balancer sAVAX-WAVAX Stable Pool", + "symbol": "sAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 9.1143442592748, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038154, + "amount": 631.4256672799303, + "raw_amount": 631425667279930300000, + "raw_amount_hex_str": "0x223aca9af45c3c8310" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-10-13-base.json b/FeeSweep/2023-10-13-base.json new file mode 100644 index 000000000..0dc2829d1 --- /dev/null +++ b/FeeSweep/2023-10-13-base.json @@ -0,0 +1,1022 @@ +[ + { + "id": "0x012e776cc3ed4c5adea3eda8677e82343e4de396", + "chain": "base", + "name": "Balancer 50WETH-50USDbC Pool", + "symbol": "50WETH-50USDbC BPT", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 41.447449264290086, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691431253, + "amount": 0.571354929485955, + "raw_amount": 571354929485955000, + "raw_amount_hex_str": "0x7eddc47fcadbfcc" + }, + { + "id": "0x036d68e4e0005da4ef1c9ebd53b948d2c083495e", + "chain": "base", + "name": " 50tBTC-50USD", + "symbol": " 50tBTC-50USD", + "display_symbol": null, + "optimized_symbol": " 50tBTC-50USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 164.06451770750533, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691577137, + "amount": 0.010320201372286387, + "raw_amount": 10320201372286388, + "raw_amount_hex_str": "0x24aa2b20ce3db3" + }, + { + "id": "0x07d72005b9e2b0e4d9f2ee903de59a43439e15e6", + "chain": "base", + "name": "50WETH-50cbXEN", + "symbol": "50WETH-50cbXEN", + "display_symbol": null, + "optimized_symbol": "50WETH-50cbXEN", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.0008499891810460077, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693829071, + "amount": 22.335699875887013, + "raw_amount": 22335699875887014000, + "raw_amount_hex_str": "0x135f858b28ffb615e" + }, + { + "id": "0x096fa90589c05a12b7c4356f9c908c650894e1e0", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501533.22128312424, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695119667, + "amount": 1.6e-17, + "raw_amount": 16, + "raw_amount_hex_str": "0x10" + }, + { + "id": "0x0be4dc963db6ca066ff147069b9c437da683608b", + "chain": "base", + "name": "It is not ogre until it is OGRE", + "symbol": "veOGRE", + "display_symbol": null, + "optimized_symbol": "veOGRE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 481.6577706587549, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691168451, + "amount": 0.000003326074467418, + "raw_amount": 3326074467418, + "raw_amount_hex_str": "0x306697cb45a" + }, + { + "id": "0x0c659734f1eef9c63b7ebdf78a164cdd745586db", + "chain": "base", + "name": "Balancer USDC/USDbC/axlUSDC", + "symbol": "USDC/USDbC/axlUSDC", + "display_symbol": null, + "optimized_symbol": "USDC/USDbC/axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0013109375145703, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694032789, + "amount": 512.8757167805496, + "raw_amount": 512875716780549700000, + "raw_amount_hex_str": "0x1bcd9493147482c37f" + }, + { + "id": "0x0d9e306cd13ab76588eb2363c2c69d7ccf32a7fe", + "chain": "base", + "name": "40WETH-60USDbC", + "symbol": "40WETH-60USDbC", + "display_symbol": null, + "optimized_symbol": "40WETH-60USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500505.59032001096, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693506859, + "amount": 7.3e-17, + "raw_amount": 73, + "raw_amount_hex_str": "0x49" + }, + { + "id": "0x109fb663fbe47bcef8cf1d74759ebb869e390105", + "chain": "base", + "name": "1WETH-99USDbC", + "symbol": "1WETH-99USDbC", + "display_symbol": null, + "optimized_symbol": "1WETH-99USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.5692409956569533, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692905203, + "amount": 0.000542238392422574, + "raw_amount": 542238392422574, + "raw_amount_hex_str": "0x1ed29b6c390ae" + }, + { + "id": "0x17e7d59bb209a3215ccc25fffef7161498b7c10d", + "chain": "base", + "name": "1WETH-99GOLD", + "symbol": "1WETH-99GOLD", + "display_symbol": null, + "optimized_symbol": "1WETH-99GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 5.312122749966175, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691862139, + "amount": 5.164593479549863, + "raw_amount": 5164593479549863000, + "raw_amount_hex_str": "0x47ac52680dde436e" + }, + { + "id": "0x18423174a94aa1856ed43b76214fa5a94534ceb0", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 39.27826374727978, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694515167, + "amount": 9.67147149041e-7, + "raw_amount": 967147149041, + "raw_amount_hex_str": "0xe12e7656f1" + }, + { + "id": "0x18f150c43598cd822d39711c55bd90407a8b8ad7", + "chain": "base", + "name": "90BPT-50STABAL3-50WETH-10ONE", + "symbol": "90BPT-50STABAL3-50WETH-10ONE", + "display_symbol": null, + "optimized_symbol": "90BPT-50STABAL3-50WETH-10ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 18.003006188754703, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693173391, + "amount": 0.004275312595321334, + "raw_amount": 4275312595321334, + "raw_amount_hex_str": "0xf305fc88c41f6" + }, + { + "id": "0x2423d6e341270bcd5add138bc3d4058857d5455f", + "chain": "base", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 40.30428385112333, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691065435, + "amount": 0.023478124594806915, + "raw_amount": 23478124594806916, + "raw_amount_hex_str": "0x53693adc774083" + }, + { + "id": "0x26987d07edb3bbff6c20642aa63c2fddf29aecab", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 39.26702434392223, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697042071, + "amount": 1.6e-17, + "raw_amount": 16, + "raw_amount_hex_str": "0x10" + }, + { + "id": "0x2db50a0e0310723ef0c2a165cb9a9f80d772ba2f", + "chain": "base", + "name": "Balancer 50 STABAL3 50 WETH", + "symbol": "BPT-50STABAL3-50WETH", + "display_symbol": null, + "optimized_symbol": "BPT-50STABAL3-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 39.93945877004184, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691004073, + "amount": 0.5229392225863472, + "raw_amount": 522939222586347200, + "raw_amount_hex_str": "0x741da73c960cec5" + }, + { + "id": "0x2e756db1c5370874bef3e012d3606e6e0e685f5a", + "chain": "base", + "name": "axlUSD-(USDbC-DAI) Stableswap", + "symbol": "axlUSD-USDbC-DAI", + "display_symbol": null, + "optimized_symbol": "axlUSD-USDbC-DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0393986551724612, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691339439, + "amount": 0.000054744309356949, + "raw_amount": 54744309356949, + "raw_amount_hex_str": "0x31ca271cd995" + }, + { + "id": "0x2f5506155e08ca0766d963d5cb51137b8f8efb51", + "chain": "base", + "name": "33BALD-33WETH-33GOLD", + "symbol": "33BALD-33WETH-33GOLD", + "display_symbol": null, + "optimized_symbol": "33BALD-33WETH-33GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 4.0013369730133626, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696477501, + "amount": 0.000915756918586558, + "raw_amount": 915756918586558, + "raw_amount_hex_str": "0x340e045d53cbe" + }, + { + "id": "0x31b974f089a43e183859c895d503bdce491f22cc", + "chain": "base", + "name": "50BAL-50USDbC", + "symbol": "50BAL-50USDbC", + "display_symbol": null, + "optimized_symbol": "50BAL-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.5821911611317256, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693828761, + "amount": 1.9912674424e-7, + "raw_amount": 199126744240, + "raw_amount_hex_str": "0x2e5ce0fcb0" + }, + { + "id": "0x3f3e72417d016687f02eb369025f33b60db585cd", + "chain": "base", + "name": "50WETH-50OGRE", + "symbol": "50WETH-50OGRE", + "display_symbol": null, + "optimized_symbol": "50WETH-50OGRE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2616.659004970277, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692034807, + "amount": 0.000016212118593652, + "raw_amount": 16212118593652, + "raw_amount_hex_str": "0xebead91e074" + }, + { + "id": "0x4200000000000000000000000000000000000006", + "chain": "base", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/eth/d61441782d4a08a7479d54aea211679e.png", + "protocol_id": "base_nether", + "price": 1543.73, + "price_24h_change": 0.001615582258441261, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": null, + "amount": 7.014146518e-9, + "raw_amount": 7014146518, + "raw_amount_hex_str": "0x1a21361d6" + }, + { + "id": "0x433f09ca08623e48bac7128b7105de678e37d988", + "chain": "base", + "name": "Balancer 50GOLD/25WETH/25USDC", + "symbol": "50GOLD/25WETH/25USDC", + "display_symbol": null, + "optimized_symbol": "50GOLD/25WETH/25USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 18.379766003877748, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694033265, + "amount": 159.51757217452428, + "raw_amount": 159517572174524250000, + "raw_amount_hex_str": "0x8a5c042bb7f412d08" + }, + { + "id": "0x4c1050754761c613799302f05201cc8a60c8cce0", + "chain": "base", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 39.297263639293796, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691715283, + "amount": 1.2e-17, + "raw_amount": 12, + "raw_amount_hex_str": "0xc" + }, + { + "id": "0x4e4b7d0ad9c88c878a29735dbc5beccbd1966a79", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 39.31537712076067, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691228009, + "amount": 0.000002795480843536, + "raw_amount": 2795480843536, + "raw_amount_hex_str": "0x28adfa48510" + }, + { + "id": "0x52e281318fed4efffb8e46c0847a8f9b71a461a8", + "chain": "base", + "name": " 50tBTC-50WETH", + "symbol": " 50tBTC-50WETH", + "display_symbol": null, + "optimized_symbol": " 50tBTC-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 6441.954967661538, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691576417, + "amount": 0.000271412005234671, + "raw_amount": 271412005234671, + "raw_amount_hex_str": "0xf6d90828e7ef" + }, + { + "id": "0x58f2110b61f97fd6b9200b038d92f17c722a5a33", + "chain": "base", + "name": "Balancer axlBAL/BAL Stable", + "symbol": "axlBAL/BAL", + "display_symbol": null, + "optimized_symbol": "axlBAL/BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2.2390765855697925, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694722607, + "amount": 0.7982202010120447, + "raw_amount": 798220201012044700, + "raw_amount_hex_str": "0xb13d90b2ddd23af" + }, + { + "id": "0x65e8e75899f683c8e2e73c77d6c5c63075f296cd", + "chain": "base", + "name": "50WETH-50SUS", + "symbol": "50WETH-50SUS", + "display_symbol": null, + "optimized_symbol": "50WETH-50SUS", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.08348189102358713, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692545799, + "amount": 11.861528787454557, + "raw_amount": 11861528787454556000, + "raw_amount_hex_str": "0xa49c9d964d4c7ae4" + }, + { + "id": "0x668c6196e539391e0020a3dee3ac99b74984bcce", + "chain": "base", + "name": "50BAL-50WETH", + "symbol": "50BAL-50WETH", + "display_symbol": null, + "optimized_symbol": "50BAL-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 68.11962841167362, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695891635, + "amount": 0.000003843030379107, + "raw_amount": 3843030379107, + "raw_amount_hex_str": "0x37ec675ea63" + }, + { + "id": "0x6db9ad76db82f980375249926658deae729c06c9", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 508259.1432840662, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697041429, + "amount": 1.43e-16, + "raw_amount": 143, + "raw_amount_hex_str": "0x8f" + }, + { + "id": "0x6fbfcf88db1aada31f34215b2a1df7fafb4883e9", + "chain": "base", + "name": "Balancer DAI-USDbC Stable Pool", + "symbol": "BPT-stabal3", + "display_symbol": null, + "optimized_symbol": "BPT-stabal3", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0030298480636521, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691003665, + "amount": 20.44403089364695, + "raw_amount": 20444030893646950000, + "raw_amount_hex_str": "0x11bb7c9c7d8f02c55" + }, + { + "id": "0x78380eff80f1381b29702c0f87da10bd7d7cec97", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 39.31577448210672, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696939573, + "amount": 0.000057115831262269, + "raw_amount": 57115831262269, + "raw_amount_hex_str": "0x33f250d55c3d" + }, + { + "id": "0x7bd499100daee002c8df900d831a3dc0c2c91040", + "chain": "base", + "name": "85BPT-stabal3-15ONE", + "symbol": "85BPT-stabal3-15ONE", + "display_symbol": null, + "optimized_symbol": "85BPT-stabal3-15ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.70854404084802, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693090007, + "amount": 0.016822103739641166, + "raw_amount": 16822103739641164, + "raw_amount_hex_str": "0x3bc39d3dc6ad4c" + }, + { + "id": "0x868f0efc81a6c1df16298dcc82f7926b9099946b", + "chain": "base", + "name": "50BALD/50WETH", + "symbol": "50BALD/50WETH", + "display_symbol": null, + "optimized_symbol": "50BALD/50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2.7184029790318585, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690926435, + "amount": 0.477961341297345, + "raw_amount": 477961341297345000, + "raw_amount_hex_str": "0x6a20f4ebc65c1ef" + }, + { + "id": "0x8c2062ec8d477366c749982e3703371a7ae1e665", + "chain": "base", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 789.3488416854111, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691723213, + "amount": 0.000013817634899761, + "raw_amount": 13817634899761, + "raw_amount_hex_str": "0xc912b384731" + }, + { + "id": "0x942856f463e5960cdce798a8380f20380569b5de", + "chain": "base", + "name": "50WETH-50axlUSDC", + "symbol": "50WETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501951.32560663077, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692627053, + "amount": 6e-18, + "raw_amount": 6, + "raw_amount_hex_str": "0x6" + }, + { + "id": "0x9544eb53f98098c6a885a7a4cd014d7a4a03aa63", + "chain": "base", + "name": "80GOLD-20WETH", + "symbol": "80GOLD-20WETH", + "display_symbol": null, + "optimized_symbol": "80GOLD-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 21.8992948845802, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696184983, + "amount": 0.05348919387134664, + "raw_amount": 53489193871346640, + "raw_amount_hex_str": "0xbe082370060bce" + }, + { + "id": "0xa30ad556d10c829a67f41f60d41afdd4efa9286c", + "chain": "base", + "name": "SIS-FOOB-ICE-SOLAR-WETH Index", + "symbol": "Friend Tech Index", + "display_symbol": null, + "optimized_symbol": "Friend Tech Index", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 43.17285853598372, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692492397, + "amount": 2.2490899336915793, + "raw_amount": 2249089933691579100, + "raw_amount_hex_str": "0x1f365f60e597eb33" + }, + { + "id": "0xa892be6ee527f4fb8b3b60486a53c0627cb1d27e", + "chain": "base", + "name": "50WETH-50LINU", + "symbol": "50WETH-50LINU", + "display_symbol": null, + "optimized_symbol": "50WETH-50LINU", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.008986497640244239, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691423711, + "amount": 141.33453079841297, + "raw_amount": 141334530798412990000, + "raw_amount_hex_str": "0x7a9691ef04fe96a37" + }, + { + "id": "0xb1b1155337d19eb0ef9c75aa88aeb4e531440508", + "chain": "base", + "name": "50WETH-50Gekko", + "symbol": "50WETH-50Gekko", + "display_symbol": null, + "optimized_symbol": "50WETH-50Gekko", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 17.87812179012375, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693789333, + "amount": 0.04278591155799549, + "raw_amount": 42785911557995490, + "raw_amount_hex_str": "0x98018f53ce3be2" + }, + { + "id": "0xb328b50f1f7d97ee8ea391ab5096dd7657555f49", + "chain": "base", + "name": "Balancer GOLD/BAL/USDC", + "symbol": "GOLD/BAL/USDC", + "display_symbol": null, + "optimized_symbol": "GOLD/BAL/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.07941319830842, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694033753, + "amount": 200.9458892623948, + "raw_amount": 200945889262394800000, + "raw_amount_hex_str": "0xae4af35a09005e387" + }, + { + "id": "0xc561540c16d49d0bfc69c99f9fc66145b1d5ddbd", + "chain": "base", + "name": "axlUSD-(USDbC-DAI) Stableswap", + "symbol": "axlUSD-USDbC-DAI", + "display_symbol": null, + "optimized_symbol": "axlUSD-USDbC-DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500199.6567542297, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691342703, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0xc69793563a8f0a2c5b25bcfb8661de50da8eae10", + "chain": "base", + "name": "Balancer STG/USDbC Pool", + "symbol": "STG-USDbC-BPT", + "display_symbol": null, + "optimized_symbol": "STG-USDbC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.6502591068295587, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691688123, + "amount": 0.8582886213995498, + "raw_amount": 858288621399549700, + "raw_amount_hex_str": "0xbe940f42947a73d" + }, + { + "id": "0xc771c1a5905420daec317b154eb13e4198ba97d0", + "chain": "base", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1545.3336517530854, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692107167, + "amount": 0.326308559546066, + "raw_amount": 326308559546066050, + "raw_amount_hex_str": "0x48747e7f2e9a47b" + }, + { + "id": "0xc8dd61ff747c4bf93995a8086a8562f136059dc3", + "chain": "base", + "name": "1cbETH-99ONE", + "symbol": "1cbETH-99ONE", + "display_symbol": null, + "optimized_symbol": "1cbETH-99ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.012335072608047799, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692585869, + "amount": 0.17388767502543423, + "raw_amount": 173887675025434240, + "raw_amount_hex_str": "0x269c5eb4cb5a679" + }, + { + "id": "0xcd75320d7e9c2ec452a9dc1d3c3d8f5392e8f9a2", + "chain": "base", + "name": "SIS-FOOB-SOLAR-WETH Index", + "symbol": "Friend Tech Index", + "display_symbol": null, + "optimized_symbol": "Friend Tech Index", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 64.02173454810861, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692489629, + "amount": 0.017509630731620925, + "raw_amount": 17509630731620926, + "raw_amount_hex_str": "0x3e34ea97e8123e" + }, + { + "id": "0xcde67b70e8144d7d2772de59845b3a67266c2ca7", + "chain": "base", + "name": "50DAI-50BAL", + "symbol": "50DAI-50BAL", + "display_symbol": null, + "optimized_symbol": "50DAI-50BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 5.657776756121387, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690525003, + "amount": 0.03785801937026896, + "raw_amount": 37858019370268960, + "raw_amount_hex_str": "0x867fab0476f923" + }, + { + "id": "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "chain": "base", + "name": "USD Base Coin", + "symbol": "USDbC", + "display_symbol": null, + "optimized_symbol": "USDbC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/base_token/logo_url/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca/e0cec5bf6ef983918de294d852ea9586.png", + "protocol_id": "base_fxdx", + "price": 1, + "price_24h_change": 0, + "is_verified": false, + "is_core": true, + "is_wallet": true, + "time_at": 1690914161, + "amount": 0.000567, + "raw_amount": 567, + "raw_amount_hex_str": "0x237" + }, + { + "id": "0xe40cbccba664c7b1a953827c062f5070b78de868", + "chain": "base", + "name": "50WETH-50GOLD", + "symbol": "50WETH-50GOLD", + "display_symbol": null, + "optimized_symbol": "50WETH-50GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 126.47891235291522, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691590801, + "amount": 0.3131648949534182, + "raw_amount": 313164894953418200, + "raw_amount_hex_str": "0x45895d00fd22dc5" + }, + { + "id": "0xe58ca65f418d4121d6c70d4c133e60cf6fda363c", + "chain": "base", + "name": "Balancer USDbC/axlUSD Stable Pool", + "symbol": "BPT-USDbC-axlUSD", + "display_symbol": null, + "optimized_symbol": "BPT-USDbC-axlUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0028111431237785, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691344327, + "amount": 28.45606895847521, + "raw_amount": 28456068958475210000, + "raw_amount_hex_str": "0x18ae843f375ef5503" + }, + { + "id": "0xe94dfd524414220b3f5d321a20b6f9dbc1d53a1f", + "chain": "base", + "name": "80SIS-20WETH", + "symbol": "80SIS-20WETH", + "display_symbol": null, + "optimized_symbol": "80SIS-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.45918979510169, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692552269, + "amount": 0.000019067113433094, + "raw_amount": 19067113433094, + "raw_amount_hex_str": "0x11576885e806" + }, + { + "id": "0xfa4ac3ecfece20769f8b5d9b6dfa5b7ed6569de2", + "chain": "base", + "name": "Balancer MZ-WETH Pool", + "symbol": "MZ-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "MZ-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 19.622842297334376, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692624143, + "amount": 0.12320218633352456, + "raw_amount": 123202186333524560, + "raw_amount_hex_str": "0x1b5b3bc57f6124d" + }, + { + "id": "0xfab10dd71e11d0ad403cc31418b45d816f2f9882", + "chain": "base", + "name": "20WETH-80WELL", + "symbol": "20WETH-80WELL", + "display_symbol": null, + "optimized_symbol": "20WETH-80WELL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.04068532927875703, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691704783, + "amount": 14.269979235295114, + "raw_amount": 14269979235295113000, + "raw_amount_hex_str": "0xc609268247f730bc" + }, + { + "id": "0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6", + "chain": "base", + "name": "Balancer cbETH/WETH StablePool", + "symbol": "cbETH/WETH", + "display_symbol": null, + "optimized_symbol": "cbETH/WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1542.6558692892845, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692241741, + "amount": 1.9665589815397988, + "raw_amount": 1966558981539798800, + "raw_amount_hex_str": "0x1b4a9ef974889ea8" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-10-13-eth.json b/FeeSweep/2023-10-13-eth.json new file mode 100644 index 000000000..e779c23cd --- /dev/null +++ b/FeeSweep/2023-10-13-eth.json @@ -0,0 +1,7522 @@ +[ + { + "id": "0x000b87c8a4c6cbcef7a2577e8aa0dc134c67c3d8", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7624656782763601, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647839442, + "amount": 92.5310479410539, + "raw_amount": 92531047941053890000, + "raw_amount_hex_str": "0x5042051da1528515d" + }, + { + "id": "0x00c2a4be503869fa751c2dbcb7156cc970b5a8da", + "chain": "eth", + "name": "bb-euler-FRAX-bb-euler-USDC", + "symbol": "bb-euler-FRAX-bb-euler-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "bb-euler-FRAX-bb-euler-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0071246624084138, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675964063, + "amount": 0.00017805188028749, + "raw_amount": 178051880287490, + "raw_amount_hex_str": "0xa1efef137d02" + }, + { + "id": "0x02d928e68d8f10c0358566152677db51e1e2dc8c", + "chain": "eth", + "name": "Balancer Boosted swETH-WETH", + "symbol": "swETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1572.612695409124, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681569515, + "amount": 0.009605473708968673, + "raw_amount": 9605473708968672, + "raw_amount_hex_str": "0x222020a0528ae1" + }, + { + "id": "0x034e2d995b39a88ab9a532a9bf0deddac2c576ea", + "chain": "eth", + "name": "80SD-20ETHx", + "symbol": "80SD-20ETHx", + "display_symbol": null, + "optimized_symbol": "80SD-20ETHx", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.3461097589824123, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692575471, + "amount": 15.650002357557717, + "raw_amount": 15650002357557717000, + "raw_amount_hex_str": "0xd92ffa3a1840e753" + }, + { + "id": "0x038a68ff68c393373ec894015816e33ad41bd564", + "chain": "eth", + "name": "Glitch", + "symbol": "GLCH", + "display_symbol": null, + "optimized_symbol": "GLCH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x038a68ff68c393373ec894015816e33ad41bd564/f4ba4174614971f177c220d931b0bf68.png", + "protocol_id": "", + "price": 0.005178853385645542, + "price_24h_change": 0.017951727223032506, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608173369, + "amount": 76.08624061003349, + "raw_amount": 76086240610033480000, + "raw_amount_hex_str": "0x41fe8a0b66ff249d4" + }, + { + "id": "0x0391d2021f89dc339f60fff84546ea23e337750f", + "chain": "eth", + "name": "BarnBridge Governance Token", + "symbol": "BOND", + "display_symbol": null, + "optimized_symbol": "BOND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0391d2021f89dc339f60fff84546ea23e337750f/160c85e7f4ed44ee16fd35d53008ea3c.png", + "protocol_id": "barnbridge", + "price": 2.6698762112342336, + "price_24h_change": 0.6614828211025187, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599494104, + "amount": 0.000740309873162143, + "raw_amount": 740309873162143, + "raw_amount_hex_str": "0x2a14ed303779f" + }, + { + "id": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "chain": "eth", + "name": "Rai Reflex Index", + "symbol": "RAI", + "display_symbol": null, + "optimized_symbol": "RAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x03ab458634910aad20ef5f1c8ee96f1d6ac54919/89f0c429b594592724ea3cbf3d08a8ea.png", + "protocol_id": "reflexer", + "price": 2.7289434079690995, + "price_24h_change": -0.003175123671063062, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613221351, + "amount": 0.239279960732774, + "raw_amount": 239279960732773980, + "raw_amount_hex_str": "0x35217db4558ae6c" + }, + { + "id": "0x04248aabca09e9a1a3d5129a7ba05b7f17de7684", + "chain": "eth", + "name": "Balancer qETH-Boosted Aave WETH StablePool", + "symbol": "qETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1557.4821565905659, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681144535, + "amount": 0.6363358808900635, + "raw_amount": 636335880890063500, + "raw_amount_hex_str": "0x8d4b81cba499a9f" + }, + { + "id": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", + "chain": "eth", + "name": "UMA Voting Token v1", + "symbol": "UMA", + "display_symbol": null, + "optimized_symbol": "UMA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x04fa0d235c4abf4bcf4787af4cf447de572ef828/cabffedd327aaea32dd7bcf155f9cbd6.png", + "protocol_id": "uma", + "price": 1.266143604592412, + "price_24h_change": 0.007982454559663116, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1578581061, + "amount": 0.001970754429405869, + "raw_amount": 1970754429405869, + "raw_amount_hex_str": "0x7006405b44aad" + }, + { + "id": "0x057acee6df29ecc20e87a77783838d90858c5e83", + "chain": "eth", + "name": "Wrapped Pirate Chain", + "symbol": "wARRR", + "display_symbol": null, + "optimized_symbol": "wARRR", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x057acee6df29ecc20e87a77783838d90858c5e83/95b10f25dc71d21b17555a57a8fe8bc5.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.012909528810034968, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1669853195, + "amount": 165.6457043, + "raw_amount": 16564570430, + "raw_amount_hex_str": "0x3db53493e" + }, + { + "id": "0x06325440d014e39736583c165c2963ba99faf14e", + "chain": "eth", + "name": "Curve.fi ETH/stETH", + "symbol": "steCRV", + "display_symbol": null, + "optimized_symbol": "steCRV", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1670.8120713812623, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1609806378, + "amount": 0.381234451560607, + "raw_amount": 381234451560607000, + "raw_amount_hex_str": "0x54a6ab6bd692cff" + }, + { + "id": "0x064bcc35bfe023fe717a87574fae9333f98aae4d", + "chain": "eth", + "name": "80RATE-20WETH", + "symbol": "80RATE-20WETH", + "display_symbol": null, + "optimized_symbol": "80RATE-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.580778334403209, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689642755, + "amount": 0.5557521600242683, + "raw_amount": 555752160024268300, + "raw_amount_hex_str": "0x7b66da521670df6" + }, + { + "id": "0x065f5b35d4077334379847fe26f58b1029e51161", + "chain": "eth", + "name": "80SGT-10DAI-10WETH", + "symbol": "80SGT-10DAI-10WETH", + "display_symbol": null, + "optimized_symbol": "80SGT-10DAI-10WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.11447626688732661, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677356255, + "amount": 96.90836763695476, + "raw_amount": 96908367636954780000, + "raw_amount_hex_str": "0x540dfaeec5ba66e11" + }, + { + "id": "0x06c55dad9a50adbc824ea50ef7acf54a290e5493", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.7491832651690596, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647501192, + "amount": 11.574551385596456, + "raw_amount": 11574551385596455000, + "raw_amount_hex_str": "0xa0a111291cfb67d9" + }, + { + "id": "0x06c985ff69f7257e212a89828f79497a3c8b6edf", + "chain": "eth", + "name": "Coin", + "symbol": "COIN", + "display_symbol": null, + "optimized_symbol": "COIN", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0.007375746226815534, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653961493, + "amount": 95053, + "raw_amount": 95053, + "raw_amount_hex_str": "0x1734d" + }, + { + "id": "0x0740a6cfb9468b8b53070c0b327099293dccb82d", + "chain": "eth", + "name": "Element Principal Token yvCurveLUSD-29APR22", + "symbol": "ePyvCurveLUSD-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurveLUSD-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0245375759610207, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639513942, + "amount": 768.3981828286567, + "raw_amount": 768398182828656700000, + "raw_amount_hex_str": "0x29a7aabc2275bd2ae1" + }, + { + "id": "0x08209ed93725328828cb199afbe0e068c8e5e215", + "chain": "eth", + "name": "34WBTC-12MATIC-12AAVE-42stETH", + "symbol": "34WBTC-12MATIC-12AAVE-42stETH", + "display_symbol": null, + "optimized_symbol": "34WBTC-12MATIC-12AAVE-42stETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 928.4059765219408, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677749567, + "amount": 0.006092840005170265, + "raw_amount": 6092840005170265, + "raw_amount_hex_str": "0x15a567dc2e7459" + }, + { + "id": "0x08775ccb6674d6bdceb0797c364c2653ed84f384", + "chain": "eth", + "name": "Balancer 50WETH-50-3pool", + "symbol": "50WETH-50-3pool", + "display_symbol": null, + "optimized_symbol": "50WETH-50-3pool", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 39.49010693199211, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680364331, + "amount": 41.21704559065413, + "raw_amount": 41217045590654130000, + "raw_amount_hex_str": "0x23c005c9662051ce6" + }, + { + "id": "0x08cc92fedc1ce2d8525176a63fcff404450f2998", + "chain": "eth", + "name": "50B-baoUSD-LUSD-BPT-50BAO", + "symbol": "50B-baoUSD-LUSD-BPT-50BAO", + "display_symbol": null, + "optimized_symbol": "50B-baoUSD-LUSD-BPT-50BAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.01578531687071178, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683789479, + "amount": 2373.3228451948466, + "raw_amount": 2.3733228451948465e+21, + "raw_amount_hex_str": "0x80a878894d2638e8dc" + }, + { + "id": "0x09459654777bb2669ad8ad0b54e876d4b5ff77f4", + "chain": "eth", + "name": "Element Principal Token yvDAI-24FEB23", + "symbol": "ePyvDAI-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-24FEB23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999997988475755, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661282295, + "amount": 29.121950985069077, + "raw_amount": 29121950985069076000, + "raw_amount_hex_str": "0x19425f4204f611fd9" + }, + { + "id": "0x097f9f108ee0db2cb266aa16ccfb4831ec4d770b", + "chain": "eth", + "name": "Element Principal Token yvCurve-3Crypto-16SEP22", + "symbol": "ePyvCurve-3Crypto-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-3Crypto-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1072.4992136491467, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650481210, + "amount": 0.018352290212467388, + "raw_amount": 18352290212467388, + "raw_amount_hex_str": "0x41334f8aedd2bb" + }, + { + "id": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "chain": "eth", + "name": "yearn.finance", + "symbol": "YFI", + "display_symbol": null, + "optimized_symbol": "YFI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/yearn/f14ac7f4efe5c51e1c6b32add3dea10c.png", + "protocol_id": "iearn", + "price": 5076.366350933023, + "price_24h_change": 0.00015267587392697526, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594972885, + "amount": 0.23407580572881462, + "raw_amount": 234075805728814620, + "raw_amount_hex_str": "0x33f9ab482fab61b" + }, + { + "id": "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", + "chain": "eth", + "name": "Decentralized USD", + "symbol": "USDD", + "display_symbol": null, + "optimized_symbol": "USDD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6/70890e6172f62f4430bfeaff32680884.png", + "protocol_id": "", + "price": 0.99922, + "price_24h_change": -0.00013008455496068793, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651325080, + "amount": 41.741035429420634, + "raw_amount": 41741035429420640000, + "raw_amount_hex_str": "0x24345f291cf9c98de" + }, + { + "id": "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e", + "chain": "eth", + "name": "PoolTogether", + "symbol": "POOL", + "display_symbol": null, + "optimized_symbol": "POOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0cec1a9154ff802e7934fc916ed7ca50bde6844e/2484f4a3952ba986b8a7016cb697dccc.png", + "protocol_id": "pooltogether", + "price": 0.500018951269369, + "price_24h_change": -0.01857980052968431, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613508749, + "amount": 0.021435254557757296, + "raw_amount": 21435254557757296, + "raw_amount_hex_str": "0x4c27401d95cf6f" + }, + { + "id": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd", + "chain": "eth", + "name": "Hakka Finance", + "symbol": "HAKKA", + "display_symbol": null, + "optimized_symbol": "HAKKA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd/5f9fa1ec47440398385fe2a9a1f17d6d.png", + "protocol_id": "hakka", + "price": 0.0014483423502191374, + "price_24h_change": -0.0011760752688171731, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1586881841, + "amount": 0.27487339898896684, + "raw_amount": 274873398988966850, + "raw_amount_hex_str": "0x3d08be668f10bc7" + }, + { + "id": "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da", + "chain": "eth", + "name": "BlackPool Token", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da/8b4ad02c904251c1e2858a65c5c49e74.png", + "protocol_id": "blackpool", + "price": 0.19113386841778449, + "price_24h_change": 0.007509441527915125, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1622152335, + "amount": 0.16840921670672093, + "raw_amount": 168409216706720930, + "raw_amount_hex_str": "0x2564f4a52b4b4ac" + }, + { + "id": "0x0f2d719407fdbeff09d87557abb7232601fd9f29", + "chain": "eth", + "name": "Synapse", + "symbol": "SYN", + "display_symbol": null, + "optimized_symbol": "SYN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f2d719407fdbeff09d87557abb7232601fd9f29/4497316d0335d94bcec6c0c397238971.png", + "protocol_id": "synapse", + "price": 0.27510683412161613, + "price_24h_change": -0.000050818862582561456, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628972639, + "amount": 6603.889144996926, + "raw_amount": 6.603889144996926e+21, + "raw_amount_hex_str": "0x165ff5f4c786fdec71c" + }, + { + "id": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942", + "chain": "eth", + "name": "Decentraland MANA", + "symbol": "MANA", + "display_symbol": null, + "optimized_symbol": "MANA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f5d2fb29fb7d3cfee444a200298f468908cc942/c83dcbf8bae0f6cd1e31c6e176ce5155.png", + "protocol_id": "decentraland", + "price": 0.2796454519915493, + "price_24h_change": 0.01656054942810302, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1502824689, + "amount": 2117.2857453628917, + "raw_amount": 2.1172857453628917e+21, + "raw_amount_hex_str": "0x72c73e078c01537f9d" + }, + { + "id": "0x0fadd10f606554fec1574f28398469d98d68d297", + "chain": "eth", + "name": "Balancer 80XEX 20USDC Pool Token", + "symbol": "B-80XEX-20USDC", + "display_symbol": null, + "optimized_symbol": "B-80XEX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 8.272604608591876e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680691199, + "amount": 13248296.193801457, + "raw_amount": 1.3248296193801458e+25, + "raw_amount_hex_str": "0xaf56f936484e079450e1d" + }, + { + "id": "0x0fd5663d4893ae0d579d580584806aadd2dd0b8b", + "chain": "eth", + "name": "Balancer 50rETH-50RPL", + "symbol": "50rETH-50RPL", + "display_symbol": null, + "optimized_symbol": "50rETH-50RPL", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 175.0345903521283, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662739812, + "amount": 3.93938246879e-7, + "raw_amount": 393938246879, + "raw_amount_hex_str": "0x5bb88c9cdf" + }, + { + "id": "0x10010078a54396f62c96df8532dc2b4847d47ed3", + "chain": "eth", + "name": "Hundred Finance", + "symbol": "HND", + "display_symbol": null, + "optimized_symbol": "HND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x10010078a54396f62c96df8532dc2b4847d47ed3/cae168ae659748f245f0d57b76521952.png", + "protocol_id": "hundred", + "price": 0.006523098256463164, + "price_24h_change": 0.015134529147982178, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1631627706, + "amount": 2755.380409112071, + "raw_amount": 2.755380409112071e+21, + "raw_amount_hex_str": "0x955e95ab74d37f0ce1" + }, + { + "id": "0x10f8ea49255e8a865ca4eda1630168c85cc8ee81", + "chain": "eth", + "name": "ELFI/WETH 50/50 Weighted Pool", + "symbol": "50ELFI-50WETH", + "display_symbol": null, + "optimized_symbol": "50ELFI-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 9.933702994644214, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692639599, + "amount": 1.9921761686e-8, + "raw_amount": 19921761686, + "raw_amount_hex_str": "0x4a36df596" + }, + { + "id": "0x114f1388fab456c4ba31b1850b244eedcd024136", + "chain": "eth", + "name": "Cool Cats", + "symbol": "COOL", + "display_symbol": null, + "optimized_symbol": "COOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x114f1388fab456c4ba31b1850b244eedcd024136/8915648a58d5afd9e481419f29a2b0f8.png", + "protocol_id": "nftx", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1625256758, + "amount": 0.11419228390229055, + "raw_amount": 114192283902290560, + "raw_amount_hex_str": "0x195b146f6162a78" + }, + { + "id": "0x11839d635e2f0270da37e8ef4324d4d5d5432957", + "chain": "eth", + "name": "10bb-a-USD-90callFLAIX260323", + "symbol": "10bb-a-USD-90callFLAIX260323", + "display_symbol": null, + "optimized_symbol": "10bb-a-USD-90callFLAIX260323", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0000362606050245703, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679059403, + "amount": 0.24244401680865096, + "raw_amount": 242444016808650980, + "raw_amount_hex_str": "0x35d558c7bcc68d6" + }, + { + "id": "0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa", + "chain": "eth", + "name": "Starwire", + "symbol": "STR", + "display_symbol": null, + "optimized_symbol": "STR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa/be315e8b8faeb413e73b8f1d2e4c28c2.png", + "protocol_id": "", + "price": 0.0031173243267365106, + "price_24h_change": -0.0015250009692802048, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602981353, + "amount": 50018.708750003345, + "raw_amount": 5.001870875000335e+22, + "raw_amount_hex_str": "0xa978506c5a6b84f5273" + }, + { + "id": "0x13c99770694f07279607a6274f28a28c33086424", + "chain": "eth", + "name": "Material", + "symbol": "MTRL", + "display_symbol": null, + "optimized_symbol": "MTRL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x13c99770694f07279607a6274f28a28c33086424/7428f5af9cc4e9770678a2b36c501a73.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.5576737982578098, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638790558, + "amount": 12726.377904856998, + "raw_amount": 1.2726377904856998e+22, + "raw_amount_hex_str": "0x2b1e5f8dd3a3d5c622c" + }, + { + "id": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b", + "chain": "eth", + "name": "DefiPulse Index", + "symbol": "DPI", + "display_symbol": null, + "optimized_symbol": "DPI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b/feb43f922f3e344d42afbb598d0b2e7c.png", + "protocol_id": "tokensets", + "price": 61.76633537119677, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1599694252, + "amount": 0.9190830163663766, + "raw_amount": 919083016366376600, + "raw_amount_hex_str": "0xcc13d22459cc652" + }, + { + "id": "0x150d969723bc8924dc667ba3254bacd967fad266", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697146631, + "amount": 50.34475328432554, + "raw_amount": 50344753284325540000, + "raw_amount_hex_str": "0x2baac7e5fc8e78fab" + }, + { + "id": "0x158e0fbc2271e1dcebadd365a22e2b4dd173c0db", + "chain": "eth", + "name": "80IDLE-20USDC", + "symbol": "80IDLE-20USDC", + "display_symbol": null, + "optimized_symbol": "80IDLE-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.17341011137140833, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689599735, + "amount": 94.95795199411981, + "raw_amount": 94957951994119820000, + "raw_amount_hex_str": "0x525ce6a3ad81b842c" + }, + { + "id": "0x173063a30e095313eee39411f07e95a8a806014e", + "chain": "eth", + "name": "Balancer 50TEMPLE-50bb-a-USD", + "symbol": "50TEMPLE-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6122865998310513, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666877015, + "amount": 0.004583886786538531, + "raw_amount": 4583886786538531, + "raw_amount_hex_str": "0x1049054f9a2c23" + }, + { + "id": "0x18aaa7115705e8be94bffebde57af9bfc265b998", + "chain": "eth", + "name": "Audius", + "symbol": "AUDIO", + "display_symbol": null, + "optimized_symbol": "AUDIO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x18aaa7115705e8be94bffebde57af9bfc265b998/8c4d2409af350ab696f37b9fde9d378d.png", + "protocol_id": "", + "price": 0.13794283325260473, + "price_24h_change": 0.02893866236310707, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1603333709, + "amount": 5.5795443874753765, + "raw_amount": 5579544387475376000, + "raw_amount_hex_str": "0x4d6e860f07fe8833" + }, + { + "id": "0x18fdf15ff782e44c1f9b6c5846ff6b0f0004f6a2", + "chain": "eth", + "name": "50OHM-50LUSD", + "symbol": "50OHM-50LUSD", + "display_symbol": null, + "optimized_symbol": "50OHM-50LUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.3994288189222126, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685952995, + "amount": 48.69480777414544, + "raw_amount": 48694807774145440000, + "raw_amount_hex_str": "0x2a3c6b5aca7de6208" + }, + { + "id": "0x194ebd173f6cdace046c53eacce9b953f28411d1", + "chain": "eth", + "name": "Curve.fi EURS/sEUR", + "symbol": "eursCRV", + "display_symbol": null, + "optimized_symbol": "eursCRV", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0586243923158585, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1608157510, + "amount": 2.248196352882993, + "raw_amount": 2248196352882993000, + "raw_amount_hex_str": "0x1f3332abe6eb672e" + }, + { + "id": "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0", + "chain": "eth", + "name": "baoETH-ETH StablePool", + "symbol": "B-baoETH-ETH-BPT", + "display_symbol": null, + "optimized_symbol": "B-baoETH-ETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1160.3388824724402, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681544303, + "amount": 0.1747179875111513, + "raw_amount": 174717987511151330, + "raw_amount_hex_str": "0x26cb9157d792ad8" + }, + { + "id": "0x1b6e13673f29688e27311b332af1527f1ebf1d28", + "chain": "eth", + "name": "80PSDN-20WETH", + "symbol": "80PSDN-20WETH", + "display_symbol": null, + "optimized_symbol": "80PSDN-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.459783274607405, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684137239, + "amount": 50.90904620268728, + "raw_amount": 50909046202687280000, + "raw_amount_hex_str": "0x2c28143cb2d1fd009" + }, + { + "id": "0x1bd2f176a812e312077bca87e37c08432bb09f3e", + "chain": "eth", + "name": "qETH/Boosted Aave v3 WETH", + "symbol": "qETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1551.2648206755132, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689520715, + "amount": 0.007532327892830541, + "raw_amount": 7532327892830541, + "raw_amount_hex_str": "0x1ac29cc062494d" + }, + { + "id": "0x1cf0f3aabe4d12106b27ab44df5473974279c524", + "chain": "eth", + "name": "xSNX", + "symbol": "xSNXa", + "display_symbol": null, + "optimized_symbol": "xSNXa", + "decimals": 18, + "logo_url": null, + "protocol_id": "xtoken", + "price": 0.3604525750809741, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621899341, + "amount": 70.66571045034482, + "raw_amount": 70665710450344820000, + "raw_amount_hex_str": "0x3d4af094069697b9c" + }, + { + "id": "0x1d1b44a4c5a047bdc9b3f06842566e5ea9c1966d", + "chain": "eth", + "name": "Balancer USDC-USDT Fixed Rate Pool", + "symbol": "B-USDC-USDT-FIXED-RATE", + "display_symbol": null, + "optimized_symbol": "B-USDC-USDT-FIXED-RATE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9997452393288364, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667287751, + "amount": 8.639631653279508, + "raw_amount": 8639631653279507000, + "raw_amount_hex_str": "0x77e62336c3f22577" + }, + { + "id": "0x1e5193ccc53f25638aa22a940af899b692e10b09", + "chain": "eth", + "name": "Alluo Token", + "symbol": "ALLUO", + "display_symbol": null, + "optimized_symbol": "ALLUO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e5193ccc53f25638aa22a940af899b692e10b09/0181c06bfff0edd1585037e86b02c978.png", + "protocol_id": "alluo", + "price": 0.012755040390957928, + "price_24h_change": -0.0009759502588529706, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639219884, + "amount": 2743.9128871410508, + "raw_amount": 2.743912887141051e+21, + "raw_amount_hex_str": "0x94bf70d8fb32d52e33" + }, + { + "id": "0x1e83916ea2ef2d7a6064775662e163b2d4c330a7", + "chain": "eth", + "name": "EthereumGasLimit", + "symbol": "EGL", + "display_symbol": null, + "optimized_symbol": "EGL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e83916ea2ef2d7a6064775662e163b2d4c330a7/61c37afbb6b52ba182266f62d47b8258.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628861140, + "amount": 216579.38247266778, + "raw_amount": 2.165793824726678e+23, + "raw_amount_hex_str": "0x2ddccab6a824d93715f6" + }, + { + "id": "0x1ee442b5326009bb18f2f472d3e0061513d1a0ff", + "chain": "eth", + "name": "Balancer 50rETH-BADGER", + "symbol": "50rETH-50BADGER", + "display_symbol": null, + "optimized_symbol": "50rETH-50BADGER", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 57.17701057952791, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675901651, + "amount": 93.01311477654679, + "raw_amount": 93013114776546790000, + "raw_amount_hex_str": "0x50ad0f715acb52ab6" + }, + { + "id": "0x1f068a896560632a4d2e05044bd7f03834f1a465", + "chain": "eth", + "name": "EthFork2.com", + "symbol": "EthFork2.com", + "display_symbol": null, + "optimized_symbol": "EthFork2.com", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661588028, + "amount": 350, + "raw_amount": 350000000000000000000, + "raw_amount_hex_str": "0x12f939c99edab80000" + }, + { + "id": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "chain": "eth", + "name": "Uniswap", + "symbol": "UNI", + "display_symbol": null, + "optimized_symbol": "UNI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984/fcee0c46fc9864f48ce6a40ed1cdd135.png", + "protocol_id": "uniswap3", + "price": 4.013862797521294, + "price_24h_change": -0.014826749075286439, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600107086, + "amount": 0.21765202497026323, + "raw_amount": 217652024970263230, + "raw_amount_hex_str": "0x305415d10ff3ab7" + }, + { + "id": "0x1fc4db3e7f9124baafb7b34346db7931dad621c2", + "chain": "eth", + "name": "loyaltyclaim.io", + "symbol": "Visit https://loyaltyclaim.io to claim reward", + "display_symbol": null, + "optimized_symbol": "Visit https://loyaltyclaim.io to claim reward", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687675475, + "amount": 587, + "raw_amount": 587000000000000000000, + "raw_amount_hex_str": "0x1fd242edf0d24c0000" + }, + { + "id": "0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9", + "chain": "eth", + "name": "R/DAI Stable Pool", + "symbol": "R-DAI-BLP", + "display_symbol": null, + "optimized_symbol": "R-DAI-BLP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.001742857038545, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684857023, + "amount": 973.9913649761052, + "raw_amount": 973991364976105200000, + "raw_amount_hex_str": "0x34ccd87204b297d4ed" + }, + { + "id": "0x21fb757c2d3a5c574e8721027c3d7a506d77b6b3", + "chain": "eth", + "name": "Element Principal Token yvCurve-stETH-16SEP22", + "symbol": "ePyvCurve-stETH-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-stETH-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1670.8120713812625, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648481776, + "amount": 0.10358715027583056, + "raw_amount": 103587150275830560, + "raw_amount_hex_str": "0x17003f6df7c6318" + }, + { + "id": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "chain": "eth", + "name": "Wrapped BTC", + "symbol": "WBTC", + "display_symbol": null, + "optimized_symbol": "WBTC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599/d3c52e7c7449afa8bd4fad1c93f50d93.png", + "protocol_id": "", + "price": 26808.5, + "price_24h_change": 0.001812406576980568, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1543095952, + "amount": 0.12225022, + "raw_amount": 12225022, + "raw_amount_hex_str": "0xba89fe" + }, + { + "id": "0x226f7b842e0f0120b7e194d05432b3fd14773a9d", + "chain": "eth", + "name": "UNION Protocol Governance Token", + "symbol": "UNN", + "display_symbol": null, + "optimized_symbol": "UNN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x226f7b842e0f0120b7e194d05432b3fd14773a9d/353c0f098023ed2b6984fad42e786f36.png", + "protocol_id": "unn", + "price": 0.00020168661385054084, + "price_24h_change": -0.0008920318287297753, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1606475731, + "amount": 513275.0134700667, + "raw_amount": 5.132750134700667e+23, + "raw_amount_hex_str": "0x6cb0b1b957743cf2243b" + }, + { + "id": "0x2361102893ccabfb543bc55ac4cc8d6d0824a67e", + "chain": "eth", + "name": "Element Principal Token yvcrvSTETH-15APR22", + "symbol": "ePyvcrvSTETH-15APR22", + "display_symbol": null, + "optimized_symbol": "ePyvcrvSTETH-15APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1670.8120713812618, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634646386, + "amount": 0.11170361717852023, + "raw_amount": 111703617178520240, + "raw_amount_hex_str": "0x18cd9d9160d4aad" + }, + { + "id": "0x245151454c790eb870498e9e5b590145fac1463f", + "chain": "eth", + "name": "$ RPoolBonus.com", + "symbol": "$RPL Claim at RPoolBonus.com", + "display_symbol": null, + "optimized_symbol": "$RPL Claim at RPoolBonus.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687784111, + "amount": 5000, + "raw_amount": 5000, + "raw_amount_hex_str": "0x1388" + }, + { + "id": "0x24a82db9e1d0e96d9cafa84a58825fbe9701ced2", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1376.1538559969154, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647499039, + "amount": 0.00000572017923657, + "raw_amount": 5720179236570, + "raw_amount_hex_str": "0x533d5405eda" + }, + { + "id": "0x24e79e946dea5482212c38aab2d0782f04cdb0e0", + "chain": "eth", + "name": "Paladin stkAAVE", + "symbol": "palStkAAVE", + "display_symbol": null, + "optimized_symbol": "palStkAAVE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x24e79e946dea5482212c38aab2d0782f04cdb0e0/add608fe8a15b03368f48fb40a42d8cf.png", + "protocol_id": "paladin", + "price": 73.27230021891091, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1632993706, + "amount": 14.052574920741954, + "raw_amount": 14052574920741954000, + "raw_amount_hex_str": "0xc304c66fca6321ed" + }, + { + "id": "0x25f8087ead173b73d6e8b84329989a8eea16cf73", + "chain": "eth", + "name": "Yield Guild Games Token", + "symbol": "YGG", + "display_symbol": null, + "optimized_symbol": "YGG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x25f8087ead173b73d6e8b84329989a8eea16cf73/4e2b963e26b873bc69a918edde1309bf.png", + "protocol_id": "yieldguild", + "price": 0.23714421901544241, + "price_24h_change": -0.00809761381786233, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1627299017, + "amount": 103.3948502972311, + "raw_amount": 103394850297231110000, + "raw_amount_hex_str": "0x59ae44c893326e681" + }, + { + "id": "0x26cc136e9b8fd65466f193a8e5710661ed9a9827", + "chain": "eth", + "name": "80BETS/20wstETH Pool Token", + "symbol": "80BETS/20wstETH", + "display_symbol": null, + "optimized_symbol": "80BETS/20wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0064324928238550325, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690400639, + "amount": 121012.02379332657, + "raw_amount": 1.2101202379332658e+23, + "raw_amount_hex_str": "0x19a013303ad99ca75214" + }, + { + "id": "0x27054b13b1b798b345b591a4d22e6562d47ea75a", + "chain": "eth", + "name": "AirSwap Token", + "symbol": "AST", + "display_symbol": null, + "optimized_symbol": "AST", + "decimals": 4, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27054b13b1b798b345b591a4d22e6562d47ea75a/8193d103d453bab7acd302740b9cd0a1.png", + "protocol_id": "airswap", + "price": 0.08185706536486721, + "price_24h_change": -0.014170952051137444, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1507599220, + "amount": 0.0161, + "raw_amount": 161, + "raw_amount_hex_str": "0xa1" + }, + { + "id": "0x274b103eb0e1490f9d45cd9a5a630e1de1bf3196", + "chain": "eth", + "name": "# apy-eth.net", + "symbol": "Visit https://apy-eth.net to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit https://apy-eth.net to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696718747, + "amount": 1.4, + "raw_amount": 1400000, + "raw_amount_hex_str": "0x155cc0" + }, + { + "id": "0x27c70cd1946795b66be9d954418546998b546634", + "chain": "eth", + "name": "DOGE KILLER", + "symbol": "LEASH", + "display_symbol": null, + "optimized_symbol": "LEASH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27c70cd1946795b66be9d954418546998b546634/e2b22820fe3164795e5803e3ef64a9d0.png", + "protocol_id": "", + "price": 274.76669055174466, + "price_24h_change": 0.004226433282711773, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1598998068, + "amount": 0.004320528144273535, + "raw_amount": 4320528144273535, + "raw_amount_hex_str": "0xf597f5948107f" + }, + { + "id": "0x285328906d0d33cb757c1e471f5e2176683247c2", + "chain": "eth", + "name": "Element Principal Token yvcrv3crypto-29APR22", + "symbol": "ePyvcrv3crypto-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvcrv3crypto-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1072.4992136491467, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1636034117, + "amount": 0.16870319386359234, + "raw_amount": 168703193863592350, + "raw_amount_hex_str": "0x2575aa936b6999b" + }, + { + "id": "0x2930e74d4634ae54519ae0ccd69ce728531c252e", + "chain": "eth", + "name": "Your Dreams Token", + "symbol": "YOO", + "display_symbol": null, + "optimized_symbol": "YOO", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650555914, + "amount": 12416367592.041399, + "raw_amount": 1.24163675920414e+28, + "raw_amount_hex_str": "0x281e941be22cb79343f845b7" + }, + { + "id": "0x2a8f5649de50462ff9699ccc75a2fb0b53447503", + "chain": "eth", + "name": "Element Principal Token yvCurve-EURS-11FEB22", + "symbol": "ePyvCurve-EURS-11FEB22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-EURS-11FEB22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0586243923158585, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634236922, + "amount": 1.9061332050874682, + "raw_amount": 1906133205087468000, + "raw_amount_hex_str": "0x1a73f20d07d0ba65" + }, + { + "id": "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884", + "chain": "eth", + "name": "Aladdin cvxCRV", + "symbol": "aCRV", + "display_symbol": null, + "optimized_symbol": "aCRV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884/6cf5b1bce4ec79f2cdf773b127c96e85.png", + "protocol_id": "concentrator", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1646643085, + "amount": 1261.27736173079, + "raw_amount": 1.26127736173079e+21, + "raw_amount_hex_str": "0x445fbd55f5d59bea6d" + }, + { + "id": "0x2ba592f78db6436527729929aaf6c908497cb200", + "chain": "eth", + "name": "Cream", + "symbol": "CREAM", + "display_symbol": null, + "optimized_symbol": "CREAM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2ba592f78db6436527729929aaf6c908497cb200/a5587c34049aadbc312d1847428235d9.png", + "protocol_id": "cream", + "price": 15.428923280375198, + "price_24h_change": -0.031783864180135, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1596553617, + "amount": 35.04279261690979, + "raw_amount": 35042792616909790000, + "raw_amount_hex_str": "0x1e65102386c96e05f" + }, + { + "id": "0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0", + "chain": "eth", + "name": "TUSD bb-a-usd Stable Pool", + "symbol": "TUSD-bbausd", + "display_symbol": null, + "optimized_symbol": "TUSD-bbausd", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.26099869630928496, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666633715, + "amount": 0.001585337226757161, + "raw_amount": 1585337226757161, + "raw_amount_hex_str": "0x5a1db16400429" + }, + { + "id": "0x2c537e5624e4af88a7ae4060c022609376c8d0eb", + "chain": "eth", + "name": "BiLira", + "symbol": "TRYB", + "display_symbol": null, + "optimized_symbol": "TRYB", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2c537e5624e4af88a7ae4060c022609376c8d0eb/75a023de93f6f4de0c2155cb0e1ef5ef.png", + "protocol_id": "", + "price": 0.03624828130085684, + "price_24h_change": 0.000014537898686492538, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1563539445, + "amount": 317.111535, + "raw_amount": 317111535, + "raw_amount_hex_str": "0x12e6bcef" + }, + { + "id": "0x2c72692e94e757679289ac85d3556b2c0f717e0e", + "chain": "eth", + "name": "Element Principal Token yvDAI-29APR22", + "symbol": "ePyvDAI-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999997988475758, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641339630, + "amount": 60.97677550935169, + "raw_amount": 60976775509351694000, + "raw_amount_hex_str": "0x34e390641c7a578ab" + }, + { + "id": "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198", + "chain": "eth", + "name": "Bankless Token", + "symbol": "BANK", + "display_symbol": null, + "optimized_symbol": "BANK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198/83da02d114aa95ca785cbd6a51635280.png", + "protocol_id": "", + "price": 0.00298197467212931, + "price_24h_change": 0.00655270775684556, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620099970, + "amount": 11392.34153232051, + "raw_amount": 1.139234153232051e+22, + "raw_amount_hex_str": "0x269947f986ee55ae3bf" + }, + { + "id": "0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4", + "chain": "eth", + "name": "50bb-a-WETH-50YieldETH", + "symbol": "50bb-a-WETH-50YieldETH", + "display_symbol": null, + "optimized_symbol": "50bb-a-WETH-50YieldETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1579.7144093108273, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691530583, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0x2e848426aec6dbf2260535a5bea048ed94d9ff3d", + "chain": "eth", + "name": "wbETH-wstETH StablePool", + "symbol": "wbETH-wstETH", + "display_symbol": null, + "optimized_symbol": "wbETH-wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1561.1498434299824, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683201371, + "amount": 0.6475540508817823, + "raw_amount": 647554050881782300, + "raw_amount_hex_str": "0x8fc92fa77ac823e" + }, + { + "id": "0x3035917be42af437cbdd774be26b9ec90a2bd677", + "chain": "eth", + "name": "Balancer INST 80 bbWETH 20", + "symbol": "80INST-bbWETH20", + "display_symbol": null, + "optimized_symbol": "80INST-bbWETH20", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.9855155758359353, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683841055, + "amount": 0.010520363238690378, + "raw_amount": 10520363238690378, + "raw_amount_hex_str": "0x256036f1c00e4a" + }, + { + "id": "0x30d20208d987713f46dfd34ef128bb16c404d10f", + "chain": "eth", + "name": "Stader", + "symbol": "SD", + "display_symbol": null, + "optimized_symbol": "SD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x30d20208d987713f46dfd34ef128bb16c404d10f/099f57b5ca7c3703424ea1425678acaf.png", + "protocol_id": "stader", + "price": 0.5876585709447519, + "price_24h_change": -0.0009197812810336899, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1642382824, + "amount": 574.4647810459576, + "raw_amount": 574464781045957600000, + "raw_amount_hex_str": "0x1f244ce2b768daffb1" + }, + { + "id": "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3", + "chain": "eth", + "name": "Radicle", + "symbol": "RAD", + "display_symbol": null, + "optimized_symbol": "RAD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x31c8eacbffdd875c74b94b077895bd78cf1e64a3/e400b44466625a2161f3658bb763854a.png", + "protocol_id": "", + "price": 1.2262524610102123, + "price_24h_change": 0.008848765723373848, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613423971, + "amount": 0.004999999999967232, + "raw_amount": 4999999999967232, + "raw_amount_hex_str": "0x11c37937e00000" + }, + { + "id": "0x3301ee63fb29f863f2333bd4466acb46cd8323e6", + "chain": "eth", + "name": "Akita Inu", + "symbol": "AKITA", + "display_symbol": null, + "optimized_symbol": "AKITA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3301ee63fb29f863f2333bd4466acb46cd8323e6/6173e15b13a34a6e42bda133ac37a6ed.png", + "protocol_id": "", + "price": 8.214758339551269e-8, + "price_24h_change": 0.01548880149316524, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612076328, + "amount": 57362872.56584607, + "raw_amount": 5.736287256584608e+25, + "raw_amount_hex_str": "0x2f730f8d83f8a93e373a8c" + }, + { + "id": "0x333a4823466879eef910a04d473505da62142069", + "chain": "eth", + "name": "Nation3", + "symbol": "NATION", + "display_symbol": null, + "optimized_symbol": "NATION", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x333a4823466879eef910a04d473505da62142069/2415be916c6835d9c24d3f47506a5e18.png", + "protocol_id": "nation3", + "price": 55.052694362786156, + "price_24h_change": -0.0008976079068768269, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1649799318, + "amount": 7.241223156129218, + "raw_amount": 7241223156129219000, + "raw_amount_hex_str": "0x647dfe18486a3e1a" + }, + { + "id": "0x3472a5a71965499acd81997a54bba8d852c6e53d", + "chain": "eth", + "name": "Badger", + "symbol": "BADGER", + "display_symbol": null, + "optimized_symbol": "BADGER", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3472a5a71965499acd81997a54bba8d852c6e53d/0e7643dba053739569d5b9f82225f4e5.png", + "protocol_id": "badger", + "price": 1.9621949715377656, + "price_24h_change": -0.005641028026392354, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1606584722, + "amount": 887.8021621432305, + "raw_amount": 887802162143230400000, + "raw_amount_hex_str": "0x3020bae2b11b006f14" + }, + { + "id": "0x34d179259336812a1c7d320a0972e949da5fa26d", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1519.6379288686842, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648172795, + "amount": 0.025958318074766215, + "raw_amount": 25958318074766216, + "raw_amount_hex_str": "0x5c38f3e7d02387" + }, + { + "id": "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232", + "chain": "eth", + "name": "SideShift Token", + "symbol": "XAI", + "display_symbol": null, + "optimized_symbol": "XAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x35e78b3982e87ecfd5b3f3265b601c046cdbe232/21a070376acfb15790c0d09b5d21b9ab.png", + "protocol_id": "sideshift", + "price": 0.08011818224962657, + "price_24h_change": -0.02035932605062392, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600064905, + "amount": 0.02741807529102729, + "raw_amount": 27418075291027290, + "raw_amount_hex_str": "0x6168981e25875a" + }, + { + "id": "0x36be1e97ea98ab43b4debf92742517266f5731a3", + "chain": "eth", + "name": "Balancer 50wstETH-ACX", + "symbol": "50wstETH-50ACX", + "display_symbol": null, + "optimized_symbol": "50wstETH-50ACX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 9.090176323798413, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675902863, + "amount": 365.13561548805467, + "raw_amount": 365135615488054660000, + "raw_amount_hex_str": "0x13cb464bb7091e23fa" + }, + { + "id": "0x37b18b10ce5635a84834b26095a0ae5639dcb752", + "chain": "eth", + "name": "Balancer ETHx-WETH Stable Pool", + "symbol": "ETHx-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "ETHx-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1548.7744538684515, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692370715, + "amount": 3.3952621284197138, + "raw_amount": 3395262128419714000, + "raw_amount_hex_str": "0x2f1e64eabbcb3361" + }, + { + "id": "0x380aabe019ed2a9c2d632b51eddd30fd804d0fad", + "chain": "eth", + "name": "50R-50wstETH", + "symbol": "50R-50wstETH", + "display_symbol": null, + "optimized_symbol": "50R-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 42.157978027401356, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684846547, + "amount": 6.2521655939314025, + "raw_amount": 6252165593931402000, + "raw_amount_hex_str": "0x56c4277b77334d62" + }, + { + "id": "0x38ca7131cfd8e3d734129416e2e4559c21eb6aca", + "chain": "eth", + "name": "20WETH-80UNIDX", + "symbol": "20WETH-80UNIDX", + "display_symbol": null, + "optimized_symbol": "20WETH-80UNIDX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9944801225537884, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694977163, + "amount": 0.000016760559044853, + "raw_amount": 16760559044853, + "raw_amount_hex_str": "0xf3e5f2b08f5" + }, + { + "id": "0x39eb558131e5ebeb9f76a6cbf6898f6e6dce5e4e", + "chain": "eth", + "name": "QiDao Governance Pool", + "symbol": "QI BPT", + "display_symbol": null, + "optimized_symbol": "QI BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.14483902942081187, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692299435, + "amount": 2.9829133144745024, + "raw_amount": 2982913314474502000, + "raw_amount_hex_str": "0x29656fdaf9092819" + }, + { + "id": "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe", + "chain": "eth", + "name": "DSLA", + "symbol": "DSLA", + "display_symbol": null, + "optimized_symbol": "DSLA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe/920656e6a4fe6c869d9ad35551e08af8.png", + "protocol_id": "", + "price": 0.00081, + "price_24h_change": 0.1368421052631578, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1550581410, + "amount": 1.7671530614258026, + "raw_amount": 1767153061425802500, + "raw_amount_hex_str": "0x18863058ba076d46" + }, + { + "id": "0x3b9fb87f7d081ceddb1289258fa5660d955317b6", + "chain": "eth", + "name": "50B-baoETH-ETH-BPT-50BAO", + "symbol": "50B-baoETH-ETH-BPT-50BAO", + "display_symbol": null, + "optimized_symbol": "50B-baoETH-ETH-BPT-50BAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.709313674638133, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683886487, + "amount": 104.39427878008894, + "raw_amount": 104394278780088940000, + "raw_amount_hex_str": "0x5a8c2fb72264cff5e" + }, + { + "id": "0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432", + "chain": "eth", + "name": "Candle", + "symbol": "CNDL", + "display_symbol": null, + "optimized_symbol": "CNDL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432/e9d1773a4453ca6646909bd2a3c56517.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651750698, + "amount": 2258.9097301624, + "raw_amount": 2.2589097301624e+21, + "raw_amount_hex_str": "0x7a74ab7f5db357e24c" + }, + { + "id": "0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede", + "chain": "eth", + "name": "zUSD-bb-e-USD", + "symbol": "zUSD-bb-e-USD-BPT", + "display_symbol": null, + "optimized_symbol": "zUSD-bb-e-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0074507873270784, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675956239, + "amount": 0.000249178466602354, + "raw_amount": 249178466602354, + "raw_amount_hex_str": "0xe2a061fccd72" + }, + { + "id": "0x3e1f8fc2fbab8695b5749afb1f390d30bb33c880", + "chain": "eth", + "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-06-2027:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 350.59981406853075, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652969783, + "amount": 0.07705061999391594, + "raw_amount": 77050619993915940, + "raw_amount_hex_str": "0x111bd217276021b" + }, + { + "id": "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7", + "chain": "eth", + "name": "Gro DAO Token", + "symbol": "GRO", + "display_symbol": null, + "optimized_symbol": "GRO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7/85aaee7416a5ecebc565f9bd79c9c360.png", + "protocol_id": "gro", + "price": 0.30094541734732566, + "price_24h_change": 0.025385674046079984, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632174690, + "amount": 2569.343035160179, + "raw_amount": 2.569343035160179e+21, + "raw_amount_hex_str": "0x8b48cc2583ee75b02e" + }, + { + "id": "0x3f9fee026fcebb40719a69416c72b714d89a17d9", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 423.8753481660695, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648167646, + "amount": 0.000181094846238193, + "raw_amount": 181094846238193, + "raw_amount_hex_str": "0xa4b46dfb0df1" + }, + { + "id": "0x3fa8c89704e5d07565444009e5d9e624b40be813", + "chain": "eth", + "name": "Balancer GHO/LUSD Stable Pool", + "symbol": "GHO/LUSD", + "display_symbol": null, + "optimized_symbol": "GHO/LUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9836284314061434, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689432875, + "amount": 1194.5043012664198, + "raw_amount": 1.1945043012664198e+21, + "raw_amount_hex_str": "0x40c113c53f2d243c37" + }, + { + "id": "0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e", + "chain": "eth", + "name": "Balancer STG/USDC", + "symbol": "STG/USDC", + "display_symbol": null, + "optimized_symbol": "STG/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6455334993323908, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692722363, + "amount": 4626.3746504218025, + "raw_amount": 4.6263746504218027e+21, + "raw_amount_hex_str": "0xfacbd880f9a789d09f" + }, + { + "id": "0x40370aed88933021e20cf7c4d67e00417cda2202", + "chain": "eth", + "name": "Xave Token", + "symbol": "XAV", + "display_symbol": null, + "optimized_symbol": "XAV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x40370aed88933021e20cf7c4d67e00417cda2202/247a2728076470579ab554e77b08df30.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669012907, + "amount": 1.9573375855194717, + "raw_amount": 1957337585519471600, + "raw_amount_hex_str": "0x1b29dc29e268ac39" + }, + { + "id": "0x408e41876cccdc0f92210600ef50372656052a38", + "chain": "eth", + "name": "Republic Token", + "symbol": "REN", + "display_symbol": null, + "optimized_symbol": "REN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x408e41876cccdc0f92210600ef50372656052a38/d0ef6c3fa48075b6f129bfe11f6b3364.png", + "protocol_id": "ren", + "price": 0.043394, + "price_24h_change": 0.014542223884784544, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1514688568, + "amount": 535.8468904869309, + "raw_amount": 535846890486930870000, + "raw_amount_hex_str": "0x1d0c5e93dbff27f1ec" + }, + { + "id": "0x40fb0516ac8ff93b48bcf9da7717e523e78c34f7", + "chain": "eth", + "name": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "symbol": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "display_symbol": null, + "optimized_symbol": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.231358459667333, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679181491, + "amount": 338.57678793145624, + "raw_amount": 338576787931456200000, + "raw_amount_hex_str": "0x125ab262c4573650c0" + }, + { + "id": "0x41503c9d499ddbd1dcdf818a1b05e9774203bf46", + "chain": "eth", + "name": "Balancer Boosted Aave v3 WETH StablePool", + "symbol": "wstETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1552.2097710146572, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689173579, + "amount": 0.000004959060006908, + "raw_amount": 4959060006908, + "raw_amount_hex_str": "0x4829f0297fc" + }, + { + "id": "0x418de6227499181b045cadf554030722e460881a", + "chain": "eth", + "name": "Element Principal Token yvCurve-MIM-11FEB22", + "symbol": "ePyvCurve-MIM-11FEB22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-MIM-11FEB22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0108754882736175, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634061105, + "amount": 162.22004811443406, + "raw_amount": 162220048114434080000, + "raw_amount_hex_str": "0x8cb4162480b9e46bf" + }, + { + "id": "0x41c37a4683d6a05adb31c39d71348a8403b13ca9", + "chain": "eth", + "name": "Chain", + "symbol": "CHN", + "display_symbol": null, + "optimized_symbol": "CHN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41c37a4683d6a05adb31c39d71348a8403b13ca9/dfee7bb5fbe50c6450ff8cfa4b17546d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1605706401, + "amount": 1.0374047068213375, + "raw_amount": 1037404706821337300, + "raw_amount_hex_str": "0xe659a159e677103" + }, + { + "id": "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68", + "chain": "eth", + "name": "Inverse DAO", + "symbol": "INV", + "display_symbol": null, + "optimized_symbol": "INV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68/b95fe3266be734e29d0385cadc44681c.png", + "protocol_id": "inverse", + "price": 36.24590262406459, + "price_24h_change": -0.0036245726641427403, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608575013, + "amount": 61.38653156304217, + "raw_amount": 61386531563042170000, + "raw_amount_hex_str": "0x353e8c537806ee628" + }, + { + "id": "0x41e5560054824ea6b0732e656e3ad64e20e94e45", + "chain": "eth", + "name": "Civic", + "symbol": "CVC", + "display_symbol": null, + "optimized_symbol": "CVC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41e5560054824ea6b0732e656e3ad64e20e94e45/f44e161ad5413bd61785905f6a724b61.png", + "protocol_id": "", + "price": 0.07189118073394214, + "price_24h_change": -0.00959918675023047, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1499817451, + "amount": 17898.87872756, + "raw_amount": 1789887872756, + "raw_amount_hex_str": "0x1a0bda17ef4" + }, + { + "id": "0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2", + "chain": "eth", + "name": "50bb-a-WETH-50ETHx", + "symbol": "50bb-a-WETH-50ETHx", + "display_symbol": null, + "optimized_symbol": "50bb-a-WETH-50ETHx", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1556.9507610482713, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687940699, + "amount": 0.000005707034691283, + "raw_amount": 5707034691283, + "raw_amount_hex_str": "0x530c5c686d3" + }, + { + "id": "0x42ed016f826165c2e5976fe5bc3df540c5ad0af7", + "chain": "eth", + "name": "wstETH-rETH-sfrxETH-BPT", + "symbol": "wstETH-rETH-sfrxETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-rETH-sfrxETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1552.1326080087504, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689162815, + "amount": 10.404893364592288, + "raw_amount": 10404893364592288000, + "raw_amount_hex_str": "0x90659b633a57a006" + }, + { + "id": "0x42fbd9f666aacc0026ca1b88c94259519e03dd67", + "chain": "eth", + "name": "50COIL-50USDC", + "symbol": "50COIL-50USDC", + "display_symbol": null, + "optimized_symbol": "50COIL-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.255699116015945, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680729107, + "amount": 89.08682139059677, + "raw_amount": 89086821390596770000, + "raw_amount_hex_str": "0x4d453f80d73310d0d" + }, + { + "id": "0x43b4fdfd4ff969587185cdb6f0bd875c5fc83f8c", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Alchemix USD", + "symbol": "alUSD3CRV-f", + "display_symbol": null, + "optimized_symbol": "alUSD3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0081929463433021, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1614641897, + "amount": 84.79787428041467, + "raw_amount": 84797874280414670000, + "raw_amount_hex_str": "0x498ce91613059972a" + }, + { + "id": "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad", + "chain": "eth", + "name": "Prime", + "symbol": "D2D", + "display_symbol": null, + "optimized_symbol": "D2D", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad/8a54f7a353e7d3d9a5124320838ae0ce.png", + "protocol_id": "", + "price": 0.01053089912470772, + "price_24h_change": 0.024975730784021464, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638439594, + "amount": 48450.9944051084, + "raw_amount": 4.84509944051084e+22, + "raw_amount_hex_str": "0xa42889e93136cfd36e5" + }, + { + "id": "0x449d7c2e096e9f867339078535b15440d42f78e8", + "chain": "eth", + "name": "Element Principal Token yvDAI-28JAN22", + "symbol": "ePyvDAI-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999997988475758, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632229871, + "amount": 1.6345684269036274, + "raw_amount": 1634568426903627300, + "raw_amount_hex_str": "0x16af2752eea8e60d" + }, + { + "id": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "chain": "eth", + "name": "Paxos Gold", + "symbol": "PAXG", + "display_symbol": null, + "optimized_symbol": "PAXG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x45804880de22913dafe09f4980848ece6ecbaf78/c67db744859c16615fa81fcb3a71b3ae.png", + "protocol_id": "", + "price": 1878.679088880985, + "price_24h_change": 0.005483632741248864, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1566830180, + "amount": 0.000195449382386424, + "raw_amount": 195449382386424, + "raw_amount_hex_str": "0xb1c29b023af8" + }, + { + "id": "0x467bccd9d29f223bce8043b84e8c8b282827790f", + "chain": "eth", + "name": "Telcoin", + "symbol": "TEL", + "display_symbol": null, + "optimized_symbol": "TEL", + "decimals": 2, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x467bccd9d29f223bce8043b84e8c8b282827790f/161a26f47e94d3a29876733cccefa868.png", + "protocol_id": "", + "price": 0.0009175176969097535, + "price_24h_change": -0.004451299962864907, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1580196479, + "amount": 9812.17, + "raw_amount": 981217, + "raw_amount_hex_str": "0xef8e1" + }, + { + "id": "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7", + "chain": "eth", + "name": "Temple", + "symbol": "TEMPLE", + "display_symbol": null, + "optimized_symbol": "TEMPLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7/5e88fad758a4fd99011c1bb7221c5c1a.png", + "protocol_id": "temple", + "price": 1.0597407907871474, + "price_24h_change": -0.0022179540011328003, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632930767, + "amount": 0.0498486954820145, + "raw_amount": 49848695482014504, + "raw_amount_hex_str": "0xb1191fdab8db29" + }, + { + "id": "0x4729f67394030472e853cb61954fe784bfb36c3b", + "chain": "eth", + "name": "25WBTC-50USDC-25WETH", + "symbol": "25WBTC-50USDC-25WETH", + "display_symbol": null, + "optimized_symbol": "25WBTC-50USDC-25WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 75.65993108654993, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686652355, + "amount": 1.11606324940411, + "raw_amount": 1116063249404110100, + "raw_amount_hex_str": "0xf7d0d9cb799a4d3" + }, + { + "id": "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0", + "chain": "eth", + "name": "The 4th Pillar Token", + "symbol": "FOUR", + "display_symbol": null, + "optimized_symbol": "FOUR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0/ff4b54e2c0cc9f9d2f32083d31e7f8d7.png", + "protocol_id": "", + "price": 0.0010550319245280953, + "price_24h_change": -0.0008597118349352634, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1524482071, + "amount": 15357.181701667683, + "raw_amount": 1.5357181701667682e+22, + "raw_amount_hex_str": "0x34083b57fd4b72b70ff" + }, + { + "id": "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff", + "chain": "eth", + "name": "Serum", + "symbol": "SRM", + "display_symbol": null, + "optimized_symbol": "SRM", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x476c5e26a75bd202a9683ffd34359c0cc15be0ff/6458883add3412a15a0ace2fb0e6c780.png", + "protocol_id": "", + "price": 0.033883726361127346, + "price_24h_change": 0.009562336425696046, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1596238023, + "amount": 0.26469, + "raw_amount": 264690, + "raw_amount_hex_str": "0x409f2" + }, + { + "id": "0x478bbc744811ee8310b461514bdc29d03739084d", + "chain": "eth", + "name": "veCRV Stake DAO", + "symbol": "sdveCRV-DAO", + "display_symbol": null, + "optimized_symbol": "sdveCRV-DAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "stakedao", + "price": 0.4359, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1614598819, + "amount": 157.94985960428522, + "raw_amount": 157949859604285230000, + "raw_amount_hex_str": "0x88ffea074b43dda49" + }, + { + "id": "0x47e1cf97a0586367349a14306a65f54ba0b8f1b6", + "chain": "eth", + "name": "20WETH-80ALTR", + "symbol": "20WETH-80ALTR", + "display_symbol": null, + "optimized_symbol": "20WETH-80ALTR", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.010972125956738849, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692518831, + "amount": 3.4150305140825292, + "raw_amount": 3415030514082529300, + "raw_amount_hex_str": "0x2f64a028b1024008" + }, + { + "id": "0x483006684f422a9448023b2382615c57c5ecf18f", + "chain": "eth", + "name": "Balancer TUSD bbeUSD Stable Pool", + "symbol": "TUSD-bb-e-USD", + "display_symbol": null, + "optimized_symbol": "TUSD-bb-e-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.008870294509039, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676335379, + "amount": 0.000147196524185311, + "raw_amount": 147196524185311, + "raw_amount_hex_str": "0x85dfdc8946df" + }, + { + "id": "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054", + "chain": "eth", + "name": "South African Tether", + "symbol": "XZAR", + "display_symbol": null, + "optimized_symbol": "XZAR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x48f07301e9e29c3c38a80ae8d9ae771f224f1054/9f75b8fcd7755ec78c71fb3449c8e1cb.png", + "protocol_id": "", + "price": 0.051042849136573545, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1527678390, + "amount": 0.03344167048500867, + "raw_amount": 33441670485008670, + "raw_amount_hex_str": "0x76cf05a9f46122" + }, + { + "id": "0x496ff26b76b8d23bbc6cf1df1eee4a48795490f7", + "chain": "eth", + "name": "Balancer 50COMP-50wstETH", + "symbol": "50COMP-50WSTETH", + "display_symbol": null, + "optimized_symbol": "50COMP-50WSTETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 267.32413615626535, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663944443, + "amount": 0.000010866337871306, + "raw_amount": 10866337871306, + "raw_amount_hex_str": "0x9e2043575ca" + }, + { + "id": "0x49e9e169f0b661ea0a883f490564f4cc275123ed", + "chain": "eth", + "name": "Element Principal Token yvWBTC-29APR22", + "symbol": "ePyvWBTC-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvWBTC-29APR22", + "decimals": 8, + "logo_url": null, + "protocol_id": "element", + "price": 26774.6, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639082867, + "amount": 0.00257344, + "raw_amount": 257344, + "raw_amount_hex_str": "0x3ed40" + }, + { + "id": "0x4a220e6096b25eadb88358cb44068a3248254675", + "chain": "eth", + "name": "Quant", + "symbol": "QNT", + "display_symbol": null, + "optimized_symbol": "QNT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4a220e6096b25eadb88358cb44068a3248254675/0fa0af99171fcb3a9a4b3e3189f6791b.png", + "protocol_id": "", + "price": 85.79591113140917, + "price_24h_change": 0.0018126463571086831, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1523044361, + "amount": 3.6661770414563097, + "raw_amount": 3666177041456310000, + "raw_amount_hex_str": "0x32e0e0984fb22651" + }, + { + "id": "0x4b13006980acb09645131b91d259eaa111eaf5ba", + "chain": "eth", + "name": "Mycelium", + "symbol": "MYC", + "display_symbol": null, + "optimized_symbol": "MYC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4b13006980acb09645131b91d259eaa111eaf5ba/c34229f594e7de5f89c43b886a86c2c5.png", + "protocol_id": "", + "price": 0.0012746717389924692, + "price_24h_change": -0.012960140069912519, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1660182677, + "amount": 9340.018375535334, + "raw_amount": 9.340018375535334e+21, + "raw_amount_hex_str": "0x1fa52cb0b02dc94f68d" + }, + { + "id": "0x4c81255cc9ed7062180ea99962fe05ac0d57350b", + "chain": "eth", + "name": "cbETH/Boosted Aave v3 WETH", + "symbol": "cbETH-bb-a-WETH-BPT ", + "display_symbol": null, + "optimized_symbol": "cbETH-bb-a-WETH-BPT ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1550.0669524887364, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689553187, + "amount": 0.010856090427067203, + "raw_amount": 10856090427067204, + "raw_amount_hex_str": "0x26918e858e0b44" + }, + { + "id": "0x4cbde5c4b4b53ebe4af4adb85404725985406163", + "chain": "eth", + "name": "ETHx/bb-a-WETH Stable Pool", + "symbol": "B-ETHx/bb-a-WETH ", + "display_symbol": null, + "optimized_symbol": "B-ETHx/bb-a-WETH ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1553.0948934666526, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689175655, + "amount": 0.00000141467351807, + "raw_amount": 1414673518070, + "raw_amount_hex_str": "0x149611ccdf6" + }, + { + "id": "0x4cc46a45b49a5073a6c1e0636cbad48efa35cdd3", + "chain": "eth", + "name": "24K GAMES", + "symbol": "24K", + "display_symbol": null, + "optimized_symbol": "24K", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646971567, + "amount": 31.64091782, + "raw_amount": 3164091782, + "raw_amount_hex_str": "0xbc983586" + }, + { + "id": "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227", + "chain": "eth", + "name": "Quasacoin", + "symbol": "QUA", + "display_symbol": null, + "optimized_symbol": "QUA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227/a67c193307d12eb4011a5a4c662ef0df.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1512380881, + "amount": 1247.3744351518874, + "raw_amount": 1.2473744351518875e+21, + "raw_amount_hex_str": "0x439ecc37e5cbc74fe1" + }, + { + "id": "0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c", + "chain": "eth", + "name": "SolarCoin on Mainnet", + "symbol": "SLR", + "display_symbol": null, + "optimized_symbol": "SLR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c/81bd6ba22be0c3314bd798585775290e.png", + "protocol_id": "", + "price": 0.04910043456993075, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1619174554, + "amount": 540.5422461900775, + "raw_amount": 540542246190077500000, + "raw_amount_hex_str": "0x1d4d87d4fe8b50e72c" + }, + { + "id": "0x4ee4ddfb958416ca2afca3a894c3c3ed9a3cdda1", + "chain": "eth", + "name": "Sense Space 1st Aug 2022 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-08-2022:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-08-2022:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1512.5615361482403, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1656634308, + "amount": 0.000266315308888279, + "raw_amount": 266315308888279, + "raw_amount_hex_str": "0xf2365d6270d7" + }, + { + "id": "0x4f2e0f963794a3876a54c503ec63de95e9f24a75", + "chain": "eth", + "name": "50EVA-50WETH", + "symbol": "50EVA-50WETH", + "display_symbol": null, + "optimized_symbol": "50EVA-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 9.730567717743194, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677463907, + "amount": 0.03788908667835974, + "raw_amount": 37889086678359740, + "raw_amount_hex_str": "0x869bec7053debd" + }, + { + "id": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "chain": "eth", + "name": "Binance USD", + "symbol": "BUSD", + "display_symbol": null, + "optimized_symbol": "BUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4fabb145d64652a948d72533023f6e7a623c7c53/588ad5043e23b6c46aeda945852c3273.png", + "protocol_id": "", + "price": 1.0003, + "price_24h_change": 0.00009998000399918915, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1567727777, + "amount": 4.866814267563016, + "raw_amount": 4866814267563016000, + "raw_amount_hex_str": "0x438a65ca75e57e1f" + }, + { + "id": "0x4fd4687ec38220f805b6363c3c1e52d0df3b5023", + "chain": "eth", + "name": "Balancer 50wstETH-50bb-euler-USD", + "symbol": "50wstETH-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50wstETH-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 63.230180137397944, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675958987, + "amount": 0.000284576129434531, + "raw_amount": 284576129434531, + "raw_amount_hex_str": "0x102d20b1b43a3" + }, + { + "id": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", + "chain": "eth", + "name": "solace", + "symbol": "SOLACE", + "display_symbol": null, + "optimized_symbol": "SOLACE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40/06d669f7d8a66cc1d92a277e9fa541a6.png", + "protocol_id": "solace", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637651732, + "amount": 6142.490743441953, + "raw_amount": 6.142490743441952e+21, + "raw_amount_hex_str": "0x14cfc2ee2d986a55e93" + }, + { + "id": "0x50cf90b954958480b8df7958a9e965752f627124", + "chain": "eth", + "name": "bb-euler-USD", + "symbol": "bb-euler-USD-BPT", + "display_symbol": null, + "optimized_symbol": "bb-euler-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0093743110378695, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675954271, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd", + "chain": "eth", + "name": "RAZOR", + "symbol": "RAZOR", + "display_symbol": null, + "optimized_symbol": "RAZOR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd/85936c44506b8575e8130fb7e33632ee.png", + "protocol_id": "", + "price": 0.004049, + "price_24h_change": 0.05677316936159658, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611070839, + "amount": 0.5591955659528318, + "raw_amount": 559195565952831900, + "raw_amount_hex_str": "0x7c2a9678c97917c" + }, + { + "id": "0x514910771af9ca656af840dff83e8264ecf986ca", + "chain": "eth", + "name": "ChainLink Token", + "symbol": "LINK", + "display_symbol": null, + "optimized_symbol": "LINK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x514910771af9ca656af840dff83e8264ecf986ca/69425617db0ef93a7c21c4f9b81c7ca5.png", + "protocol_id": "chainlink", + "price": 7.192091288447319, + "price_24h_change": -0.006223444199564376, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1505597189, + "amount": 34.48907789295868, + "raw_amount": 34489077892958680000, + "raw_amount_hex_str": "0x1dea1d19cd894751f" + }, + { + "id": "0x51fa2efd62ee56a493f24ae963eace7d0051929e", + "chain": "eth", + "name": "POSEIDON OCEAN", + "symbol": "psdnOCEAN", + "display_symbol": null, + "optimized_symbol": "psdnOCEAN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x51fa2efd62ee56a493f24ae963eace7d0051929e/ba7ad5b1cdffba533c15373060ec9d93.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1666000007, + "amount": 1816.4258697242255, + "raw_amount": 1.8164258697242256e+21, + "raw_amount_hex_str": "0x6277f908ad6e6fc48e" + }, + { + "id": "0x525fc44cbe181c1108c209091b5eec5a5028190d", + "chain": "eth", + "name": "$ Evmosia.com", + "symbol": "$ Evmosia.com", + "display_symbol": null, + "optimized_symbol": "$ Evmosia.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671409715, + "amount": 40000, + "raw_amount": 40000, + "raw_amount_hex_str": "0x9c40" + }, + { + "id": "0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e4", + "chain": "eth", + "name": "Gyroscope ECLP R/sDAI", + "symbol": "ECLP-R-sDAI", + "display_symbol": null, + "optimized_symbol": "ECLP-R-sDAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0031627251882902, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695206147, + "amount": 175.6588767627014, + "raw_amount": 175658876762701400000, + "raw_amount_hex_str": "0x985c1b1bc2cef58b1" + }, + { + "id": "0x52bbca3b24c1c1ac050ff4546f37aa88282aae22", + "chain": "eth", + "name": "$ HEXPool.io", + "symbol": "wHEX", + "display_symbol": null, + "optimized_symbol": "wHEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685642099, + "amount": 93588.75, + "raw_amount": 9.358875e+22, + "raw_amount_hex_str": "0x13d174d04e8d175b0000" + }, + { + "id": "0x52c9886d5d87b0f06ebacbeff750b5ffad5d17d9", + "chain": "eth", + "name": "Element Principal Token yvUSDC-29APR22", + "symbol": "ePyvUSDC-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-29APR22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1637083548, + "amount": 0.002163, + "raw_amount": 2163, + "raw_amount_hex_str": "0x873" + }, + { + "id": "0x53fffb19bacd44b82e204d036d579e86097e5d09", + "chain": "eth", + "name": "BigMouthFrog", + "symbol": "BGBG", + "display_symbol": null, + "optimized_symbol": "BGBG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x53fffb19bacd44b82e204d036d579e86097e5d09/3f4a08cd1bf99074863825a9995fa7e7.png", + "protocol_id": "", + "price": 2.7795990848801846e-11, + "price_24h_change": -0.0005622879301986096, + "is_verified": false, + "is_core": true, + "is_wallet": true, + "time_at": 1687084283, + "amount": 219.69945066954557, + "raw_amount": 219699450669545550000, + "raw_amount_hex_str": "0xbe8f13e5dcab83a77" + }, + { + "id": "0x55096a35bf827919b3bb0a5e6b5e2af8095f3d4d", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-28JAN22", + "symbol": "ePyvCurve-alUSD-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0081929463433024, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632836406, + "amount": 4.1474331168929295, + "raw_amount": 4147433116892929000, + "raw_amount_hex_str": "0x398ea4721e181c81" + }, + { + "id": "0x586aa273f262909eef8fa02d90ab65f5015e0516", + "chain": "eth", + "name": "Fixed Income Asset Token", + "symbol": "FIAT", + "display_symbol": null, + "optimized_symbol": "FIAT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x586aa273f262909eef8fa02d90ab65f5015e0516/43d28043429b71370c3685bc469e6d2d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1649548526, + "amount": 811.4182391491705, + "raw_amount": 811418239149170500000, + "raw_amount_hex_str": "0x2bfcb0ad6d97443801" + }, + { + "id": "0x58b6a8a3302369daec383334672404ee733ab239", + "chain": "eth", + "name": "Livepeer Token", + "symbol": "LPT", + "display_symbol": null, + "optimized_symbol": "LPT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x58b6a8a3302369daec383334672404ee733ab239/3bf454e30e5f4b18011ea5e31d2e0e59.png", + "protocol_id": "", + "price": 5.731373161934571, + "price_24h_change": 0.030475390528018533, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1525118631, + "amount": 9.611559995466864, + "raw_amount": 9611559995466865000, + "raw_amount_hex_str": "0x85631ee443285964" + }, + { + "id": "0x59d1e836f7b7210a978b25a855085cc46fd090b5", + "chain": "eth", + "name": "AssangeDAO", + "symbol": "JUSTICE", + "display_symbol": null, + "optimized_symbol": "JUSTICE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x59d1e836f7b7210a978b25a855085cc46fd090b5/18a7cd6e19eb1a3cdbad5407156d2800.png", + "protocol_id": "", + "price": 0.000023233671756713138, + "price_24h_change": -0.0009759502588530157, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644405370, + "amount": 146820.75531783528, + "raw_amount": 1.4682075531783528e+23, + "raw_amount_hex_str": "0x1f172b49bfdee428ba12" + }, + { + "id": "0x5a6a4d54456819380173272a5e8e9b9904bdf41b", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Magic Internet Money 3Pool", + "symbol": "MIM-3LP3CRV-f", + "display_symbol": null, + "optimized_symbol": "MIM-3LP3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0108754882736177, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1622664003, + "amount": 0.001180815197708221, + "raw_amount": 1180815197708221, + "raw_amount_hex_str": "0x431f1f6679fbd" + }, + { + "id": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", + "chain": "eth", + "name": "Lido DAO Token", + "symbol": "LDO", + "display_symbol": null, + "optimized_symbol": "LDO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5a98fcbea516cf06857215779fd812ca3bef1b32/3a1a90da5ccd4849de3e83755f1fd8b5.png", + "protocol_id": "lido", + "price": 1.5343692647525802, + "price_24h_change": 0.02636235718967581, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608242396, + "amount": 114.74313906352926, + "raw_amount": 114743139063529260000, + "raw_amount_hex_str": "0x63861850b06e8b75b" + }, + { + "id": "0x5ad5f864b346445a16fc95c59174269ed288e640", + "chain": "eth", + "name": "Sense Space 1st Apr 2023 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-04-2023:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-04-2023:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1093.6792262751014, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659544214, + "amount": 0.007607022901897472, + "raw_amount": 7607022901897472, + "raw_amount_hex_str": "0x1b068c09dda900" + }, + { + "id": "0x5aee1e99fe86960377de9f88689616916d5dcabe", + "chain": "eth", + "name": "wstETH-rETH-sfrxETH StablePool", + "symbol": "wstETH-rETH-sfrxETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-rETH-sfrxETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1580.6840374847532, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675903979, + "amount": 0.7790671014063838, + "raw_amount": 779067101406383700, + "raw_amount_hex_str": "0xacfcd66ab854ea0" + }, + { + "id": "0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64", + "chain": "eth", + "name": "Balancer DOLA bb-a-usd Stable", + "symbol": "DOLA BSP", + "display_symbol": null, + "optimized_symbol": "DOLA BSP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.2050247403160992, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664261567, + "amount": 0.003844606784921471, + "raw_amount": 3844606784921471, + "raw_amount_hex_str": "0xda8a645b75f7f" + }, + { + "id": "0x5bfe65bca476bda0d0d393372394ae352ec0627b", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1644.7250808341082, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651433369, + "amount": 0.000001034241951247, + "raw_amount": 1034241951247, + "raw_amount_hex_str": "0xf0cd9fc60f" + }, + { + "id": "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56", + "chain": "eth", + "name": "Balancer 80 BAL 20 WETH", + "symbol": "B-80BAL-20WETH", + "display_symbol": null, + "optimized_symbol": "B-80BAL-20WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5c6ee304399dbdb9c8ef030ab642b10820db8f56/a97c63ed3da766c9436a84d679a543ae.png", + "protocol_id": "balancer2", + "price": 8.88085673873382, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1620153071, + "amount": 0.8715039508183581, + "raw_amount": 871503950818358000, + "raw_amount_hex_str": "0xc183439d0e0b315" + }, + { + "id": "0x5e8422345238f34275888049021821e8e08caa1f", + "chain": "eth", + "name": "Frax Ether", + "symbol": "frxETH", + "display_symbol": null, + "optimized_symbol": "frxETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5e8422345238f34275888049021821e8e08caa1f/74628d212cf16e6183a7242b4ce71b92.png", + "protocol_id": "frax", + "price": 1541.914607769735, + "price_24h_change": -0.001201228482950794, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1665022895, + "amount": 3.214543369e-9, + "raw_amount": 3214543369, + "raw_amount_hex_str": "0xbf9a0a09" + }, + { + "id": "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5", + "chain": "eth", + "name": "Balancer 50wstETH-LDO", + "symbol": "50wstETH-50LDO", + "display_symbol": null, + "optimized_symbol": "50wstETH-50LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 51.933797950357146, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675902395, + "amount": 27.650005036342314, + "raw_amount": 27650005036342313000, + "raw_amount_hex_str": "0x17fb88d15a4f20634" + }, + { + "id": "0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa", + "chain": "eth", + "name": "Balancer Idle Boosted StablePool", + "symbol": "bb-i-USD", + "display_symbol": null, + "optimized_symbol": "bb-i-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.18947433403126604, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676336363, + "amount": 0.002440372366841927, + "raw_amount": 2440372366841927, + "raw_amount_hex_str": "0x8ab81780b9847" + }, + { + "id": "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e", + "chain": "eth", + "name": "Page", + "symbol": "PAGE", + "display_symbol": null, + "optimized_symbol": "PAGE", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x60e683c6514edd5f758a55b6f393bebbafaa8d5e/c8bb13815f5143b60a2a38ab610a3e45.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1627438213, + "amount": 124.48588543, + "raw_amount": 12448588543, + "raw_amount_hex_str": "0x2e5fe62ff" + }, + { + "id": "0x6123b0049f904d730db3c36a31167d9d4121fa6b", + "chain": "eth", + "name": "Ribbon", + "symbol": "RBN", + "display_symbol": null, + "optimized_symbol": "RBN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6123b0049f904d730db3c36a31167d9d4121fa6b/d01dd0342160eeee21906b1dba45a327.png", + "protocol_id": "ribbonlend", + "price": 0.16952422388709373, + "price_24h_change": -0.000027138288684958683, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1621861922, + "amount": 1089.8711785205085, + "raw_amount": 1.0898711785205085e+21, + "raw_amount_hex_str": "0x3b15003e7abb3f1893" + }, + { + "id": "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d", + "chain": "eth", + "name": "Aura BAL", + "symbol": "auraBAL", + "display_symbol": null, + "optimized_symbol": "auraBAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x616e8bfa43f920657b3497dbf40d6b1a02d4608d/05fa7bfd9613c2c4799bd4f0cebd620a.png", + "protocol_id": "", + "price": 8.719287899663124, + "price_24h_change": 0.005576452918937251, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1654771930, + "amount": 275.702432681845, + "raw_amount": 275702432681844970000, + "raw_amount_hex_str": "0xef223cdca406abb83" + }, + { + "id": "0x6228f64d5ba8376652bfe7e36569d595347cf6fb", + "chain": "eth", + "name": "80T-20TBTC", + "symbol": "80T-20TBTC", + "display_symbol": null, + "optimized_symbol": "80T-20TBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.29927716059222215, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693279523, + "amount": 19.395972248536083, + "raw_amount": 19395972248536084000, + "raw_amount_hex_str": "0x10d2c55feeb53e992" + }, + { + "id": "0x623729861bc3837c503708f995b93d317c3c1d7c", + "chain": "eth", + "name": "Balancer TBY-feb1924 USDC Stable Pool", + "symbol": "TBY-feb1924-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "TBY-feb1924-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 999975.5006002353, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693244579, + "amount": 2.5e-17, + "raw_amount": 25, + "raw_amount_hex_str": "0x19" + }, + { + "id": "0x639883476960a23b38579acfd7d71561a0f408cf", + "chain": "eth", + "name": "Balancer 50STG-50bbaUSD", + "symbol": "50STG-50bbaUSD", + "display_symbol": null, + "optimized_symbol": "50STG-50bbaUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6577328566722243, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680693239, + "amount": 0.010407133071785597, + "raw_amount": 10407133071785596, + "raw_amount_hex_str": "0x24f93b7ddfbe7d" + }, + { + "id": "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414", + "chain": "eth", + "name": "E-RADIX", + "symbol": "eXRD", + "display_symbol": null, + "optimized_symbol": "eXRD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6468e79a80c0eab0f9a2b574c8d5bc374af59414/2e02f4e196ecbfdc48156256092ea745.png", + "protocol_id": "radix", + "price": 0.0402211927617347, + "price_24h_change": -0.010687395879307242, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1603805479, + "amount": 71.05679786474816, + "raw_amount": 71056797864748170000, + "raw_amount_hex_str": "0x3da1c752ed50cb3b7" + }, + { + "id": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "chain": "eth", + "name": "Olympus", + "symbol": "OHM", + "display_symbol": null, + "optimized_symbol": "OHM", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5/0ad387f86fba0c16654cfb0f720df5d6.png", + "protocol_id": "olympusdao", + "price": 11.597655795893306, + "price_24h_change": 0.02141659082943833, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639209014, + "amount": 563.691184409, + "raw_amount": 563691184409, + "raw_amount_hex_str": "0x833e9ce119" + }, + { + "id": "0x64db005d040ee62e8fa202291c73e8a6151a0399", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7815344893998438, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649095346, + "amount": 2.074617375248661, + "raw_amount": 2074617375248661000, + "raw_amount_hex_str": "0x1cca8582d08cba0f" + }, + { + "id": "0x667102bd3413bfeaa3dffb48fa8288819e480a88", + "chain": "eth", + "name": "Tokenize Emblem", + "symbol": "TKX", + "display_symbol": null, + "optimized_symbol": "TKX", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x667102bd3413bfeaa3dffb48fa8288819e480a88/76c73234de2cd64ad7d946222611fd70.png", + "protocol_id": "", + "price": 4.865197573791783, + "price_24h_change": 0.006178020170206343, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1518449139, + "amount": 0.00034175, + "raw_amount": 34175, + "raw_amount_hex_str": "0x857f" + }, + { + "id": "0x67f117350eab45983374f4f83d275d8a5d62b1bf", + "chain": "eth", + "name": "Oats And Grains", + "symbol": "OG", + "display_symbol": null, + "optimized_symbol": "OG", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.14824350151529503, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680406619, + "amount": 1555.3428089990543, + "raw_amount": 1.5553428089990543e+21, + "raw_amount_hex_str": "0x5450b7ac39aadde0ec" + }, + { + "id": "0x67f8db40638d8e06ac78e1d04a805f59d11adf9b", + "chain": "eth", + "name": "Sense Space 1st July 2023 maDAI Sense Principal Token, A11", + "symbol": "SPACE-sP-maDAI:01-07-2023:11", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-maDAI:01-07-2023:11", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.9875232606103058, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1665427199, + "amount": 34.357809360083934, + "raw_amount": 34357809360083930000, + "raw_amount_hex_str": "0x1dccf7593d864d1a2" + }, + { + "id": "0x68037790a0229e9ce6eaa8a99ea92964106c4703", + "chain": "eth", + "name": "PAR Stablecoin", + "symbol": "PAR", + "display_symbol": null, + "optimized_symbol": "PAR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x68037790a0229e9ce6eaa8a99ea92964106c4703/3141498258ab923e325c2b7d0483bd31.png", + "protocol_id": "mimo", + "price": 1.0519001368622725, + "price_24h_change": -0.0079399399575181, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1607062049, + "amount": 397.65435929136174, + "raw_amount": 397654359291361760000, + "raw_amount_hex_str": "0x158e9014e9932b8db9" + }, + { + "id": "0x6810e776880c02933d47db1b9fc05908e5386b96", + "chain": "eth", + "name": "Gnosis Token", + "symbol": "GNO", + "display_symbol": null, + "optimized_symbol": "GNO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6810e776880c02933d47db1b9fc05908e5386b96/69e5fedeca09913fe078a8dca5b7e48c.png", + "protocol_id": "gnosis", + "price": 92.8, + "price_24h_change": -0.008547008547008517, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1492523116, + "amount": 7.998818299305277, + "raw_amount": 7998818299305277000, + "raw_amount_hex_str": "0x6f0182dd18fc3646" + }, + { + "id": "0x68ca006db91312cd60a2238ce775be5f9f738bba", + "chain": "eth", + "name": "$ USDCGift.com", + "symbol": "$ USDCGift.com <- Visit to claim bonus", + "display_symbol": null, + "optimized_symbol": "$ USDCGift.com <- Visit to claim bonus", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668158975, + "amount": 7000, + "raw_amount": 7000, + "raw_amount_hex_str": "0x1b58" + }, + { + "id": "0x68e3266c9c8bbd44ad9dca5afbfe629022aee9fe", + "chain": "eth", + "name": "Balancer wjAURA wETH Pool", + "symbol": "B-wjAura-wETH", + "display_symbol": null, + "optimized_symbol": "B-wjAura-wETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.1716747681353183, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681226003, + "amount": 36.035866789205485, + "raw_amount": 36035866789205484000, + "raw_amount_hex_str": "0x1f4191deb27e39ab3" + }, + { + "id": "0x6987633f18ca0b4a10831331fcc57211941b6ba0", + "chain": "eth", + "name": "20AGI-80WETH", + "symbol": "20AGI-80WETH", + "display_symbol": null, + "optimized_symbol": "20AGI-80WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 94.65067723236214, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682311763, + "amount": 0.768107945264947, + "raw_amount": 768107945264947000, + "raw_amount_hex_str": "0xaa8de1b4aac1ee5" + }, + { + "id": "0x6a556a2c2511e605a6c464ab5dccfdc0b19822e7", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1625.381451301118, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647837528, + "amount": 0.000017053807901899, + "raw_amount": 17053807901899, + "raw_amount_hex_str": "0xf82a6297ccb" + }, + { + "id": "0x6a5ead5433a50472642cd268e584dafa5a394490", + "chain": "eth", + "name": "Balancer 50wstETH-50LDO", + "symbol": "50WSTETH-50LDO", + "display_symbol": null, + "optimized_symbol": "50WSTETH-50LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 52.860023443594656, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662739551, + "amount": 1.1424535e-11, + "raw_amount": 11424535, + "raw_amount_hex_str": "0xae5317" + }, + { + "id": "0x6a9603e481fb8f2c09804ea9adab49a338855b90", + "chain": "eth", + "name": "Balancer graviAURA Stable Pool", + "symbol": "B-graviAURA-STABLE", + "display_symbol": null, + "optimized_symbol": "B-graviAURA-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.8213557975520434, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666780871, + "amount": 17.256669599237974, + "raw_amount": 17256669599237974000, + "raw_amount_hex_str": "0xef7c01921cdca6be" + }, + { + "id": "0x6ae5a7857aad26722cb02cc168e38c52e0e4e45d", + "chain": "eth", + "name": "Balancer TBY-feb1924 USDC Stable Pool", + "symbol": "TBY-feb1924-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "TBY-feb1924-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9995644478734715, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693245515, + "amount": 12.220731330964746, + "raw_amount": 12220731330964746000, + "raw_amount_hex_str": "0xa998c265b5a3ee06" + }, + { + "id": "0x6b175474e89094c44da98b954eedeac495271d0f", + "chain": "eth", + "name": "Dai Stablecoin", + "symbol": "DAI", + "display_symbol": "", + "optimized_symbol": "DAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6b175474e89094c44da98b954eedeac495271d0f/549c4205dbb199f1b8b03af783f35e71.png", + "protocol_id": "makerdao", + "price": 0.99995, + "price_24h_change": -0.00004999999999999449, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1573672677, + "amount": 203.81262043407503, + "raw_amount": 203812620434075030000, + "raw_amount_hex_str": "0xb0c77e27072902f3a" + }, + { + "id": "0x6f0ed6f346007563d3266de350d174a831bde0ca", + "chain": "eth", + "name": "Balancer 50KNC-25WETH-25USDC", + "symbol": "50KNC-25WETH-25USDC-BPT", + "display_symbol": null, + "optimized_symbol": "50KNC-25WETH-25USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.739906711922837, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693075463, + "amount": 353.80388560509425, + "raw_amount": 353803885605094300000, + "raw_amount_hex_str": "0x132e03e76cac95c0a1" + }, + { + "id": "0x6f4906c181e6acb096908238c5ffd088cca6ba9f", + "chain": "eth", + "name": "\"ChadPepe\"", + "symbol": "CPEPE", + "display_symbol": null, + "optimized_symbol": "CPEPE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.033080465714558666, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683295967, + "amount": 5801.7304551870375, + "raw_amount": 5.801730455187037e+21, + "raw_amount_hex_str": "0x13a832f261b74b3a787" + }, + { + "id": "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8", + "chain": "eth", + "name": "Silo Governance Token", + "symbol": "Silo", + "display_symbol": null, + "optimized_symbol": "Silo", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8/09fe11bd3f4cef64f9bd378ba3958402.png", + "protocol_id": "silo", + "price": 0.04780910763659576, + "price_24h_change": -0.0003748683113473788, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638296826, + "amount": 7518.767243128636, + "raw_amount": 7.518767243128637e+21, + "raw_amount_hex_str": "0x19797db3b7d45783843" + }, + { + "id": "0x70d5e3234f6329c1d5a26796dcf4e109d69a3488", + "chain": "eth", + "name": "Balancer uniETH/wstETH/rETH", + "symbol": "uniETH/wstETH/rETH", + "display_symbol": null, + "optimized_symbol": "uniETH/wstETH/rETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1536.2470567332298, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693833479, + "amount": 0.057635251621896796, + "raw_amount": 57635251621896800, + "raw_amount_hex_str": "0xccc2f4bb76a25c" + }, + { + "id": "0x7152a37bbf363262bad269ec4de2269dd0e84ca3", + "chain": "eth", + "name": "50DC50WETH", + "symbol": "50DC50WETH", + "display_symbol": null, + "optimized_symbol": "50DC50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0251284613239735, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667605751, + "amount": 1.142e-15, + "raw_amount": 1142, + "raw_amount_hex_str": "0x476" + }, + { + "id": "0x720465a4ae6547348056885060eeb51f9cadb571", + "chain": "eth", + "name": "Element Principal Token yvcrvSTETH-28JAN22", + "symbol": "ePyvcrvSTETH-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvcrvSTETH-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1670.8120713812625, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631804744, + "amount": 0.11136072164257546, + "raw_amount": 111360721642575470, + "raw_amount_hex_str": "0x18ba1fc7f6fd669" + }, + { + "id": "0x724e3073317d4b1a8d0c6e89b137ea5af1f4051e", + "chain": "eth", + "name": "Element Principal Token yvCurve-stETH-24FEB23", + "symbol": "ePyvCurve-stETH-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-stETH-24FEB23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1670.8120713812625, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661789184, + "amount": 0.02671914687826391, + "raw_amount": 26719146878263910, + "raw_amount_hex_str": "0x5eecec2a616266" + }, + { + "id": "0x758b4684be769e92eefea93f60dda0181ea303ec", + "chain": "eth", + "name": "Phonon DAO", + "symbol": "PHONON", + "display_symbol": null, + "optimized_symbol": "PHONON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x758b4684be769e92eefea93f60dda0181ea303ec/f305fb475c9f724396997a1a9aa3b02d.png", + "protocol_id": "", + "price": 0.0002572563334095347, + "price_24h_change": -0.03094558331597449, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639714953, + "amount": 1090693.6633654584, + "raw_amount": 1.0906936633654584e+24, + "raw_amount_hex_str": "0xe6f69f393830acae8937" + }, + { + "id": "0x759fabc513accd292ada967c4dd7bb94da39232e", + "chain": "eth", + "name": "Balancer 80RATE/20WETH", + "symbol": "80RATE/20WETH-BPT", + "display_symbol": null, + "optimized_symbol": "80RATE/20WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.5518313164357185, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689819743, + "amount": 0.04575391742460221, + "raw_amount": 45753917424602216, + "raw_amount_hex_str": "0xa28cf20b2d0c66" + }, + { + "id": "0x76e5f9860bd5b8666de322496f114b8a89183a2e", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.8596997021773352, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649095788, + "amount": 0.000741914814615684, + "raw_amount": 741914814615684, + "raw_amount_hex_str": "0x2a2c480fa9084" + }, + { + "id": "0x77b692c5ca2cceaeef4dcc959d6c3bd919710b66", + "chain": "eth", + "name": "80BREWSKI-20USDC", + "symbol": "80BREWSKI-20USDC", + "display_symbol": null, + "optimized_symbol": "80BREWSKI-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00012403896904347131, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685788019, + "amount": 16201.113696626731, + "raw_amount": 1.6201113696626731e+22, + "raw_amount_hex_str": "0x36e439e3de72006d59d" + }, + { + "id": "0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d", + "chain": "eth", + "name": "Balancer vETH StablePool", + "symbol": "B-vETH-STABLE", + "display_symbol": null, + "optimized_symbol": "B-vETH-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1560.4555201299704, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680627563, + "amount": 0.33558342512528766, + "raw_amount": 335583425125287700, + "raw_amount_hex_str": "0x4a83b58df1a06e8" + }, + { + "id": "0x7966c5bae631294d7cffcea5430b78c2f76db6fa", + "chain": "eth", + "name": "Staked Apecoin", + "symbol": "sAPE", + "display_symbol": null, + "optimized_symbol": "sAPE", + "decimals": 18, + "logo_url": null, + "protocol_id": "tessera", + "price": 1.7048891274023488, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670860487, + "amount": 0.000908881765567925, + "raw_amount": 908881765567925, + "raw_amount_hex_str": "0x33a9f86c78db5" + }, + { + "id": "0x798b112420ad6391a4129ac25ef59663a44c88bb", + "chain": "eth", + "name": "Balancer 50wstETH-50ACX Pool", + "symbol": "wstETH-ACX", + "display_symbol": null, + "optimized_symbol": "wstETH-ACX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 9.5231623078068, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669644575, + "amount": 0.000251668816281154, + "raw_amount": 251668816281154, + "raw_amount_hex_str": "0xe4e436653e42" + }, + { + "id": "0x799ebfabe77a6e34311eeee9825190b9ece32824", + "chain": "eth", + "name": "BTRST", + "symbol": "BTRST", + "display_symbol": null, + "optimized_symbol": "BTRST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x799ebfabe77a6e34311eeee9825190b9ece32824/e6385202dd2bd0c1b0b3d28cb5bc459b.png", + "protocol_id": "", + "price": 0.3829, + "price_24h_change": 0.0010457516339869581, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628607475, + "amount": 2468.4058564265565, + "raw_amount": 2.4684058564265567e+21, + "raw_amount_hex_str": "0x85d003403ec6c83045" + }, + { + "id": "0x79c58f70905f734641735bc61e45c19dd9ad60bc", + "chain": "eth", + "name": "Balancer USDC-DAI-USDT Stable Pool", + "symbol": "USDC-DAI-USDT", + "display_symbol": null, + "optimized_symbol": "USDC-DAI-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0032073168703315, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679700419, + "amount": 2227.7917035306773, + "raw_amount": 2.2277917035306772e+21, + "raw_amount_hex_str": "0x78c4d20f03cc5a0ce9" + }, + { + "id": "0x79c71d3436f39ce382d0f58f1b011d88100b9d91", + "chain": "eth", + "name": "Xeonbit Token", + "symbol": "XNS", + "display_symbol": null, + "optimized_symbol": "XNS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x79c71d3436f39ce382d0f58f1b011d88100b9d91/46f0db9a119b111002c5f1c8ec7bd156.png", + "protocol_id": "", + "price": 0.008372055993449493, + "price_24h_change": -0.001260276097409539, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1554428953, + "amount": 89.69343767614153, + "raw_amount": 89693437676141530000, + "raw_amount_hex_str": "0x4dcbf1a59aa0dd33d" + }, + { + "id": "0x7a6b87d7a874fce4c2d923b09c0e09e4936bcf57", + "chain": "eth", + "name": "$ USTBonus.com", + "symbol": "$ Visit USTBonus.com to claim", + "display_symbol": null, + "optimized_symbol": "$ Visit USTBonus.com to claim", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669300319, + "amount": 7000, + "raw_amount": 7000, + "raw_amount_hex_str": "0x1b58" + }, + { + "id": "0x7b4328c127b85369d9f82ca0503b000d09cf9180", + "chain": "eth", + "name": "Dogechain Token", + "symbol": "DC", + "display_symbol": null, + "optimized_symbol": "DC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b4328c127b85369d9f82ca0503b000d09cf9180/b3b8446c1a6ee2ef9e7ce6c28d433130.png", + "protocol_id": "", + "price": 0.00043801069342435495, + "price_24h_change": -0.03376947328225928, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1661076494, + "amount": 6331.425637225221, + "raw_amount": 6.331425637225221e+21, + "raw_amount_hex_str": "0x1573a2e77b9c2833e4c" + }, + { + "id": "0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool (USD)", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2/44cee7bfd13a23eb37912d7da66f18eb.png", + "protocol_id": "balancer2", + "price": 0.003620557613459253, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639435704, + "amount": 143.81279664606467, + "raw_amount": 143812796646064670000, + "raw_amount_hex_str": "0x7cbcdb098c42c3de8" + }, + { + "id": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "chain": "eth", + "name": "Matic Token", + "symbol": "MATIC", + "display_symbol": null, + "optimized_symbol": "MATIC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0/20aac20baa9069bd39342edd8c5cc801.png", + "protocol_id": "", + "price": 0.5121, + "price_24h_change": 0.003920799843168009, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1555778052, + "amount": 193.85760036698986, + "raw_amount": 193857600366989840000, + "raw_amount_hex_str": "0xa82508c6ea410a3d2" + }, + { + "id": "0x7d98f308db99fdd04bbf4217a4be8809f38faa64", + "chain": "eth", + "name": "Balancer 80wstETH/20GHO", + "symbol": "80wstETH/20GHO", + "display_symbol": null, + "optimized_symbol": "80wstETH/20GHO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 323.9992842128243, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689434447, + "amount": 5.056395129663271, + "raw_amount": 5056395129663272000, + "raw_amount_hex_str": "0x462bec949b9832ad" + }, + { + "id": "0x7e4fee0c14673db4f1526fdbea53819e5808a9b5", + "chain": "eth", + "name": "Element Principal Token yvBalancer-BoostedAaveUSD-04MAY23", + "symbol": "ePyvBalancer-BoostedAaveUSD-04MAY23", + "display_symbol": null, + "optimized_symbol": "ePyvBalancer-BoostedAaveUSD-04MAY23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.0003298311026143871, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667421959, + "amount": 18.26159065163822, + "raw_amount": 18261590651638219000, + "raw_amount_hex_str": "0xfd6e33f1907d8263" + }, + { + "id": "0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f", + "chain": "eth", + "name": "baoUSD-LUSD StablePool", + "symbol": "B-baoUSD-LUSD-BPT", + "display_symbol": null, + "optimized_symbol": "B-baoUSD-LUSD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.5313294516484198, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681222379, + "amount": 103.6211019331668, + "raw_amount": 103621101933166790000, + "raw_amount_hex_str": "0x59e081b3338f316a5" + }, + { + "id": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH", + "display_symbol": null, + "optimized_symbol": "wstETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0/7e931af8cb34b6f5671ca2eb1b847849.png", + "protocol_id": "lido", + "price": 1765.4358607500503, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1613752640, + "amount": 2.669331809797795, + "raw_amount": 2669331809797795000, + "raw_amount_hex_str": "0x250b5f2366a5ec9c" + }, + { + "id": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "chain": "eth", + "name": "Aave Token", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9/eee087b66747b09dbfb4ba0b34fd3697.png", + "protocol_id": "aave", + "price": 63.31090606833186, + "price_24h_change": 0.01145493795868361, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600970788, + "amount": 2.5690012253175043, + "raw_amount": 2569001225317504000, + "raw_amount_hex_str": "0x23a6ed00d697d45d" + }, + { + "id": "0x7fce0080031e3639cb8b40e21ea59f8f3d840935", + "chain": "eth", + "name": "Eva Token", + "symbol": "EVA", + "display_symbol": null, + "optimized_symbol": "EVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676596199, + "amount": 3331120.881749351, + "raw_amount": 3.331120881749351e+24, + "raw_amount_hex_str": "0x2c1646cc2543322b14f35" + }, + { + "id": "0x808507121b80c02388fad14726482e061b8da827", + "chain": "eth", + "name": "Pendle", + "symbol": "PENDLE", + "display_symbol": null, + "optimized_symbol": "PENDLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x808507121b80c02388fad14726482e061b8da827/b9351f830cd0a6457e489b8c685f29ad.png", + "protocol_id": "pendle", + "price": 0.6100513371667761, + "price_24h_change": 0.021682394862869055, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619495943, + "amount": 307.8602199822415, + "raw_amount": 307860219982241500000, + "raw_amount_hex_str": "0x10b06b36f5e31f09da" + }, + { + "id": "0x809d62f1c6e35720fd88df1c9fa7dec82b6ada52", + "chain": "eth", + "name": "ASAHI", + "symbol": "SUN", + "display_symbol": null, + "optimized_symbol": "SUN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650730353, + "amount": 197971097.59001258, + "raw_amount": 1.979710975900126e+26, + "raw_amount_hex_str": "0xa3c202b46f2fc6d175b1de" + }, + { + "id": "0x81b7f92c7b7d9349b989b4982588761bfa1aa627", + "chain": "eth", + "name": "4Pool Chainlink V2", + "symbol": "BUSD-DAI-USDC-BPT-USDT", + "display_symbol": null, + "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.5406790509000758, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669068491, + "amount": 5.25596e-13, + "raw_amount": 525596, + "raw_amount_hex_str": "0x8051c" + }, + { + "id": "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321", + "chain": "eth", + "name": "VitaDAO Token", + "symbol": "VITA", + "display_symbol": null, + "optimized_symbol": "VITA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321/ed46cc2757ddd792be9ec3b7218ef336.png", + "protocol_id": "", + "price": 1.7464622485363002, + "price_24h_change": -0.0013139427632215756, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623977434, + "amount": 833.2844550953319, + "raw_amount": 833284455095331800000, + "raw_amount_hex_str": "0x2d2c2514fa9c326d38" + }, + { + "id": "0x8290333cef9e6d528dd5618fb97a76f268f3edd4", + "chain": "eth", + "name": "Ankr Network", + "symbol": "ANKR", + "display_symbol": null, + "optimized_symbol": "ANKR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8290333cef9e6d528dd5618fb97a76f268f3edd4/7184a29596bf7517a912b57ce6797562.png", + "protocol_id": "ankr", + "price": 0.0185592560177737, + "price_24h_change": -0.03199061026006575, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1550710665, + "amount": 8492.055815610045, + "raw_amount": 8.492055815610046e+21, + "raw_amount_hex_str": "0x1cc5af2db7512e50e04" + }, + { + "id": "0x8334215586e93ee85e3f1a281eaf66e52015754d", + "chain": "eth", + "name": "50WETH-50FIEF", + "symbol": "50WETH-50FIEF", + "display_symbol": null, + "optimized_symbol": "50WETH-50FIEF", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.5729549657207252, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687974707, + "amount": 1.2078245017098832, + "raw_amount": 1207824501709883100, + "raw_amount_hex_str": "0x10c30dfc276e4779" + }, + { + "id": "0x8353157092ed8be69a9df8f95af097bbf33cb2af", + "chain": "eth", + "name": "Balancer GHO/USDT/USDC", + "symbol": "GHO/USDT/USDC", + "display_symbol": null, + "optimized_symbol": "GHO/USDT/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9864045133510357, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692910907, + "amount": 3993.929255440534, + "raw_amount": 3.9939292554405337e+21, + "raw_amount_hex_str": "0xd882e719143d5fe22a" + }, + { + "id": "0x83d392a7be901892a8c861c96ea430b8d9c2bd51", + "chain": "eth", + "name": "Element Principal Token yvCurve-LUSD-16SEP22", + "symbol": "ePyvCurve-LUSD-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-LUSD-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0245375759610207, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650388639, + "amount": 31.23523832948818, + "raw_amount": 31235238329488180000, + "raw_amount_hex_str": "0x1b179dbc4efcefd6d" + }, + { + "id": "0x853d955acef822db058eb8505911ed77f175b99e", + "chain": "eth", + "name": "Frax", + "symbol": "FRAX", + "display_symbol": null, + "optimized_symbol": "FRAX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x853d955acef822db058eb8505911ed77f175b99e/4f323e33bfffa864c577e7bd2a3257c9.png", + "protocol_id": "frax", + "price": 0.9998975310545576, + "price_24h_change": 0.00015274192822745694, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608140520, + "amount": 25.27221215404488, + "raw_amount": 25272212154044880000, + "raw_amount_hex_str": "0x15eb8ef0e62279189" + }, + { + "id": "0x865377367054516e17014ccded1e7d814edc9ce4", + "chain": "eth", + "name": "Dola USD Stablecoin", + "symbol": "DOLA", + "display_symbol": null, + "optimized_symbol": "DOLA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x865377367054516e17014ccded1e7d814edc9ce4/0c348eedfa7f89d3db2919e0a18988ea.png", + "protocol_id": "inverse", + "price": 0.996630920960979, + "price_24h_change": 0.0004367627238410672, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614116357, + "amount": 2681.9229975188014, + "raw_amount": 2.6819229975188016e+21, + "raw_amount_hex_str": "0x91632884ce6affddf4" + }, + { + "id": "0x87a867f5d240a782d43d90b6b06dea470f3f8f22", + "chain": "eth", + "name": "Balancer 50COMP-50wstETH BPT", + "symbol": "B-50COMP-50wstETH", + "display_symbol": null, + "optimized_symbol": "B-50COMP-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 266.6666298599061, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681328963, + "amount": 3.919751066695455, + "raw_amount": 3919751066695455000, + "raw_amount_hex_str": "0x3665c0d3d2575160" + }, + { + "id": "0x8888801af4d980682e47f1a9036e589479e835c5", + "chain": "eth", + "name": "88mph.app", + "symbol": "MPH", + "display_symbol": null, + "optimized_symbol": "MPH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8888801af4d980682e47f1a9036e589479e835c5/32058e0e8684004754562c90f458e744.png", + "protocol_id": "88mph2", + "price": 0.5170848223965464, + "price_24h_change": -0.0008223471109617299, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1605809018, + "amount": 327.42479380649166, + "raw_amount": 327424793806491700000, + "raw_amount_hex_str": "0x11bfee8b323374d609" + }, + { + "id": "0x888888435fde8e7d4c54cab67f206e4199454c60", + "chain": "eth", + "name": "DFX Token", + "symbol": "DFX", + "display_symbol": null, + "optimized_symbol": "DFX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x888888435fde8e7d4c54cab67f206e4199454c60/eaad30c2bb118c5cfee13eac513aa1a8.png", + "protocol_id": "dfx", + "price": 0.0455771945205136, + "price_24h_change": -0.017202488199161613, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1610615371, + "amount": 14478.722330286537, + "raw_amount": 1.4478722330286537e+22, + "raw_amount_hex_str": "0x310e4a2dfd6450537e6" + }, + { + "id": "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab", + "chain": "eth", + "name": "Alchemist", + "symbol": "⚗️", + "display_symbol": "MIST", + "optimized_symbol": "MIST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab/bd99a167b17de42b302a00d8ec78f32f.png", + "protocol_id": "crucible", + "price": 0.8215518951393934, + "price_24h_change": -0.004489533679417398, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612643126, + "amount": 11.493286646362273, + "raw_amount": 11493286646362274000, + "raw_amount_hex_str": "0x9f805b4f9229f606" + }, + { + "id": "0x89045d0af6a12782ec6f701ee6698beaf17d0ea2", + "chain": "eth", + "name": "iUPixel", + "symbol": "PIXEL", + "display_symbol": null, + "optimized_symbol": "PIXEL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x89045d0af6a12782ec6f701ee6698beaf17d0ea2/964c07a3fb571d24f5aa601e9d3fe80f.png", + "protocol_id": "", + "price": 0.0002359838454866375, + "price_24h_change": -0.000051745773017195604, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602981698, + "amount": 460337.16721424105, + "raw_amount": 4.603371672142411e+23, + "raw_amount_hex_str": "0x617aed86d282c31957db" + }, + { + "id": "0x8987a07ba83607a66c7351266e771fb865c9ca6c", + "chain": "eth", + "name": "Cage Governance Token", + "symbol": "CGT", + "display_symbol": null, + "optimized_symbol": "CGT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8987a07ba83607a66c7351266e771fb865c9ca6c/c80a5505fccd765c0a1ba4b67a6e4e3d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637143700, + "amount": 15.790961789893558, + "raw_amount": 15790961789893558000, + "raw_amount_hex_str": "0xdb24c415745f3ee7" + }, + { + "id": "0x8a2228705ec979961f0e16df311debcf097a2766", + "chain": "eth", + "name": "Element Principal Token yvUSDC-28JAN22", + "symbol": "ePyvUSDC-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-28JAN22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631632129, + "amount": 31.567058, + "raw_amount": 31567058, + "raw_amount_hex_str": "0x1e1acd2" + }, + { + "id": "0x8b66c529148690891a187379dbdb2873a4e0c449", + "chain": "eth", + "name": "Moonerium", + "symbol": "Moonerium", + "display_symbol": null, + "optimized_symbol": "Moonerium", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 34.7128830845967, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684417919, + "amount": 0.001408899266208972, + "raw_amount": 1408899266208972, + "raw_amount_hex_str": "0x50162ec4964cc" + }, + { + "id": "0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0", + "chain": "eth", + "name": "Balancer 50TEMPLE-50DAI", + "symbol": "50TEMPLE-50DAI", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0330341079660477, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680238631, + "amount": 2956.6133419920325, + "raw_amount": 2.9566133419920327e+21, + "raw_amount_hex_str": "0xa04740a9bb9f9cf2ea" + }, + { + "id": "0x8c5f3c967eef7da094582d831fb1c80f92ecf5dd", + "chain": "eth", + "name": "50SNT-50WETH", + "symbol": "50SNT-50WETH", + "display_symbol": null, + "optimized_symbol": "50SNT-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 6.034605272082008, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677476783, + "amount": 4.507904505321695, + "raw_amount": 4507904505321694700, + "raw_amount_hex_str": "0x3e8f4b43811526e3" + }, + { + "id": "0x8d6cebd76f18e1558d4db88138e2defb3909fad6", + "chain": "eth", + "name": "Mai Stablecoin", + "symbol": "MAI", + "display_symbol": null, + "optimized_symbol": "MAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mai/295a642804394964de762d65824294cf.png", + "protocol_id": "mai", + "price": 0.7682469929461674, + "price_24h_change": -0.06932396420974196, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1658859288, + "amount": 0.007052559459577903, + "raw_amount": 7052559459577903, + "raw_amount_hex_str": "0x190e43f558702f" + }, + { + "id": "0x8d7acc5d07818f187ab70b6033c690fd67c96d98", + "chain": "eth", + "name": "PlannerDAO", + "symbol": "PLAN", + "display_symbol": null, + "optimized_symbol": "PLAN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621455716, + "amount": 4.27784690352388, + "raw_amount": 4277846903523880000, + "raw_amount_hex_str": "0x3b5df718000bac1a" + }, + { + "id": "0x8e6c196e201942246cef85718c5d3a5622518053", + "chain": "eth", + "name": "Balancer 80 LE 20 WETH", + "symbol": "B-80LE-20WETH", + "display_symbol": null, + "optimized_symbol": "B-80LE-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.14587699801068701, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1688136155, + "amount": 6.233801427684616, + "raw_amount": 6233801427684616000, + "raw_amount_hex_str": "0x5682e95ed176e6d1" + }, + { + "id": "0x8e85e97ed19c0fa13b2549309965291fbbc0048b", + "chain": "eth", + "name": "sfrxETH-stETH-rETH StablePool", + "symbol": "sfrxETH-stETH-rETH-BPT", + "display_symbol": null, + "optimized_symbol": "sfrxETH-stETH-rETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1615.666162212579, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667418911, + "amount": 6.9161748152e-8, + "raw_amount": 69161748152, + "raw_amount_hex_str": "0x101a5c86b8" + }, + { + "id": "0x8ed9e70bfa17a1e2c4f8e561c8d0c2d1acc092fa", + "chain": "eth", + "name": "33LCNY-33LUSD-33WETH", + "symbol": "33LCNY-33LUSD-33WETH", + "display_symbol": null, + "optimized_symbol": "33LCNY-33LUSD-33WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 6.52197344711859, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692519623, + "amount": 1.930678182506807, + "raw_amount": 1930678182506806800, + "raw_amount_hex_str": "0x1acb2593ebea3e33" + }, + { + "id": "0x9001cbbd96f54a658ff4e6e65ab564ded76a5431", + "chain": "eth", + "name": "Balancer cbETH-Boosted Aave WETH StablePool", + "symbol": "cbETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "cbETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1559.509196504439, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680874919, + "amount": 0.35409415617982215, + "raw_amount": 354094156179822200, + "raw_amount_hex_str": "0x4e9fec24c23d660" + }, + { + "id": "0x900db999074d9277c5da2a43f252d74366230da0", + "chain": "eth", + "name": "Giveth", + "symbol": "GIV", + "display_symbol": null, + "optimized_symbol": "GIV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x900db999074d9277c5da2a43f252d74366230da0/48a1779d740e93397c6204755092a146.png", + "protocol_id": "giveth", + "price": 0.007423997660536104, + "price_24h_change": -0.026470693489453037, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639666178, + "amount": 7019.957242057263, + "raw_amount": 7.019957242057263e+21, + "raw_amount_hex_str": "0x17c8d7a1e52d607759f" + }, + { + "id": "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc", + "chain": "eth", + "name": "MIMO Parallel Governance Token", + "symbol": "MIMO", + "display_symbol": null, + "optimized_symbol": "MIMO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mimo/6af9a128dea021ebe53a281780a7ebb5.png", + "protocol_id": "mimo", + "price": 0.01183521, + "price_24h_change": 0.010250855304939238, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1615370586, + "amount": 9776.11872230804, + "raw_amount": 9.77611872230804e+21, + "raw_amount_hex_str": "0x211f6e6b5d7a0664d85" + }, + { + "id": "0x90eeee265528fa9aa620c19d45c644655de1fa81", + "chain": "eth", + "name": "Eva Token", + "symbol": "EVA", + "display_symbol": null, + "optimized_symbol": "EVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 5.3837863498268165e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675064363, + "amount": 16052929.27629729, + "raw_amount": 1.605292927629729e+25, + "raw_amount_hex_str": "0xd47570a30b7e9bda1bd1b" + }, + { + "id": "0x92915c346287ddfbcec8f86c8eb52280ed05b3a3", + "chain": "eth", + "name": "Amplesense Elastic Finance token", + "symbol": "EEFI", + "display_symbol": null, + "optimized_symbol": "EEFI", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 1.2900890988397662, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1644855585, + "amount": 133.18463722073648, + "raw_amount": 133184637220736480000, + "raw_amount_hex_str": "0x7384ee1e8e9442777" + }, + { + "id": "0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd", + "chain": "eth", + "name": "Balancer wstETH-WETH Stable Pool", + "symbol": "wstETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1548.8995772140088, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692039167, + "amount": 9.009080693619783, + "raw_amount": 9009080693619784000, + "raw_amount_hex_str": "0x7d06af28a0097819" + }, + { + "id": "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593", + "chain": "eth", + "name": "StaFi", + "symbol": "rETH", + "display_symbol": null, + "optimized_symbol": "rETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593/1f7543f59d45f4b362c6d1802dcd1b00.png", + "protocol_id": "stafi", + "price": 1648.6947311238264, + "price_24h_change": -0.0008845648779625924, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611803201, + "amount": 2.0768467609214967, + "raw_amount": 2076846760921496800, + "raw_amount_hex_str": "0x1cd271201da57d1e" + }, + { + "id": "0x959216bb492b2efa72b15b7aacea5b5c984c3cca", + "chain": "eth", + "name": "Balancer 50wstETH-50Tessera-Boosted-APE", + "symbol": "50wstETH-50stk-APE", + "display_symbol": null, + "optimized_symbol": "50wstETH-50stk-APE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 45.958704405038176, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675958315, + "amount": 0.000049988662366821, + "raw_amount": 49988662366821, + "raw_amount_hex_str": "0x2d76e4769265" + }, + { + "id": "0x95a4492f028aa1fd432ea71146b433e7b4446611", + "chain": "eth", + "name": "APY Governance Token", + "symbol": "APY", + "display_symbol": null, + "optimized_symbol": "APY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x95a4492f028aa1fd432ea71146b433e7b4446611/31f5a55b09524c2f39c8fbab8b9eb25d.png", + "protocol_id": "apy", + "price": 0.002038971131733257, + "price_24h_change": -0.000517059739789666, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1604545092, + "amount": 5.32007461666674, + "raw_amount": 5320074616666740000, + "raw_amount_hex_str": "0x49d4b3ad48fe5524" + }, + { + "id": "0x95f1a3ca4af4d08b9c42d65ef07b66e8222ed85a", + "chain": "eth", + "name": "50somm-50WETH", + "symbol": "50somm-50WETH", + "display_symbol": null, + "optimized_symbol": "50somm-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 12.454754404719983, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691465927, + "amount": 11.162820569766506, + "raw_amount": 11162820569766504000, + "raw_amount_hex_str": "0x9aea4e2a405b2b7a" + }, + { + "id": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", + "chain": "eth", + "name": "TenX Community JAPAN", + "symbol": "TXJP", + "display_symbol": null, + "optimized_symbol": "TXJP", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 62.75409087649428, + "price_24h_change": -0.0011890222230838366, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1508827879, + "amount": 0.72110039, + "raw_amount": 72110039, + "raw_amount_hex_str": "0x44c4fd7" + }, + { + "id": "0x965d79f1a1016b574a62986e13ca8ab04dfdd15c", + "chain": "eth", + "name": "M2", + "symbol": "M2", + "display_symbol": null, + "optimized_symbol": "M2", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x965d79f1a1016b574a62986e13ca8ab04dfdd15c/9c4c98bb688cad9d0775e42311676045.png", + "protocol_id": "m2cash", + "price": 0.0005401702598522407, + "price_24h_change": -0.0007263327442047153, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619741983, + "amount": 2795821.6405671514, + "raw_amount": 2.7958216405671515e+24, + "raw_amount_hex_str": "0x25009cb79edeb9ba9fcc6" + }, + { + "id": "0x97e6e31afb2d93d437301e006d9da714616766a5", + "chain": "eth", + "name": "Midas", + "symbol": "MIDAS", + "display_symbol": null, + "optimized_symbol": "MIDAS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x97e6e31afb2d93d437301e006d9da714616766a5/9804ef6af458909c9f41570042527eaa.png", + "protocol_id": "", + "price": 0, + "price_24h_change": 0.17733797952296151, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1667822315, + "amount": 1.4449879581191298, + "raw_amount": 1444987958119129900, + "raw_amount_hex_str": "0x140da0e45c686335" + }, + { + "id": "0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63", + "chain": "eth", + "name": "SONM Token", + "symbol": "SNM", + "display_symbol": null, + "optimized_symbol": "SNM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63/c1fdffa2e62a946fda0b8142da1aee6c.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1497526685, + "amount": 70.76889600927694, + "raw_amount": 70768896009276940000, + "raw_amount_hex_str": "0x3d61d9ff88382e0ce" + }, + { + "id": "0x99c88ad7dc566616548adde8ed3effa730eb6c34", + "chain": "eth", + "name": "Balancer Gearboox Boosted StablePool", + "symbol": "bb-g-USD", + "display_symbol": null, + "optimized_symbol": "bb-g-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.016022785579633204, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676566427, + "amount": 693.3828488214735, + "raw_amount": 693382848821473600000, + "raw_amount_hex_str": "0x25969ebb4da84f2f90" + }, + { + "id": "0x9b532ab955417afd0d012eb9f7389457cd0ea712", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.39387995494156824, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660860422, + "amount": 0.020381305014858703, + "raw_amount": 20381305014858704, + "raw_amount_hex_str": "0x4868b05d7833d0" + }, + { + "id": "0x9b692f571b256140a39a34676bffa30634c586e1", + "chain": "eth", + "name": "Balancer Idle JuniorBY Boosted StablePool", + "symbol": "bb-i-USD", + "display_symbol": null, + "optimized_symbol": "bb-i-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.990116789067964, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689516275, + "amount": 16.970204340500405, + "raw_amount": 16970204340500406000, + "raw_amount_hex_str": "0xeb8246ef89519d02" + }, + { + "id": "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050", + "chain": "eth", + "name": "Tracer", + "symbol": "TCR", + "display_symbol": null, + "optimized_symbol": "TCR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050/9b533f8265c54ab60417e8e06767c30c.png", + "protocol_id": "", + "price": 0.0013180076009527285, + "price_24h_change": -0.0010534615583474027, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1609975395, + "amount": 0.001036534736409761, + "raw_amount": 1036534736409761, + "raw_amount_hex_str": "0x3aeb90cc2d4a1" + }, + { + "id": "0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd", + "chain": "eth", + "name": "80Silo-20WETH", + "symbol": "80Silo-20WETH", + "display_symbol": null, + "optimized_symbol": "80Silo-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.31868492221331585, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678213451, + "amount": 114.1888705436606, + "raw_amount": 114188870543660600000, + "raw_amount_hex_str": "0x630b05cc2c9f4aab0" + }, + { + "id": "0x9d1089802ee608ba84c5c98211afe5f37f96b36c", + "chain": "eth", + "name": "Fluid USDC", + "symbol": "fUSDC", + "display_symbol": null, + "optimized_symbol": "fUSDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9d1089802ee608ba84c5c98211afe5f37f96b36c/acda24faa880ba0b7dd1ac519dc945a6.png", + "protocol_id": "fluidity", + "price": 1.0052341311647672, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1662012933, + "amount": 0.017477, + "raw_amount": 17477, + "raw_amount_hex_str": "0x4445" + }, + { + "id": "0x9f41a3d1ec37090e52a9102b24bc6921a813925f", + "chain": "eth", + "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-06-2027:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1064.0232965397695, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659544897, + "amount": 0.024732245637773362, + "raw_amount": 24732245637773364, + "raw_amount_hex_str": "0x57ddd8abbcb833" + }, + { + "id": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "chain": "eth", + "name": "Maker", + "symbol": "MKR", + "display_symbol": null, + "optimized_symbol": "MKR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2/1d0390168de63ca803e8db7990e4f6ec.png", + "protocol_id": "makerdao", + "price": 1367.433005087863, + "price_24h_change": 0.010307125616796364, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1511634257, + "amount": 0.6544384764260069, + "raw_amount": 654438476426006900, + "raw_amount_hex_str": "0x9150853b2b8516e" + }, + { + "id": "0x9f9d900462492d4c21e9523ca95a7cd86142f298", + "chain": "eth", + "name": "Balancer 50rETH-50RPL", + "symbol": "50rETH-50RPL", + "display_symbol": null, + "optimized_symbol": "50rETH-50RPL", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 172.70540308933022, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675890263, + "amount": 24.863365299344746, + "raw_amount": 24863365299344750000, + "raw_amount_hex_str": "0x1590c6b020c37ace5" + }, + { + "id": "0xa00486f88c98e2131e043e6b28fa53d46db7e6c7", + "chain": "eth", + "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-12-2022:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1607.556284522667, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652967472, + "amount": 0.03866396606896321, + "raw_amount": 38663966068963210, + "raw_amount_hex_str": "0x895cac1b25f789" + }, + { + "id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "chain": "eth", + "name": "USD Coin", + "symbol": "USDC", + "display_symbol": null, + "optimized_symbol": "USDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdc/e87790bfe0b3f2ea855dc29069b38818.png", + "protocol_id": "", + "price": 1, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1533324504, + "amount": 2196.561166, + "raw_amount": 2196561166, + "raw_amount_hex_str": "0x82ecdd0e" + }, + { + "id": "0xa13a9247ea42d743238089903570127dda72fe44", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa13a9247ea42d743238089903570127dda72fe44/44cee7bfd13a23eb37912d7da66f18eb.png", + "protocol_id": "balancer2", + "price": 0.00032983110261438714, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662537668, + "amount": 15.771330510513138, + "raw_amount": 15771330510513138000, + "raw_amount_hex_str": "0xdadf058a0a6a6a4a" + }, + { + "id": "0xa279dab6ec190ee4efce7da72896eb58ad533262", + "chain": "eth", + "name": "yfu.finance", + "symbol": "YFU", + "display_symbol": null, + "optimized_symbol": "YFU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa279dab6ec190ee4efce7da72896eb58ad533262/4cae6b44cb432fd05b4ed4b6986bbc86.png", + "protocol_id": "", + "price": 0.0050645475235886125, + "price_24h_change": -0.001512096774193445, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600162041, + "amount": 18228.89948742489, + "raw_amount": 1.822889948742489e+22, + "raw_amount_hex_str": "0x3dc30cc8ef6d4b77ab8" + }, + { + "id": "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9", + "chain": "eth", + "name": "Tempus", + "symbol": "TEMP", + "display_symbol": null, + "optimized_symbol": "TEMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9/9d092f467bded810ccd2a1f8a7a341b3.png", + "protocol_id": "raft", + "price": 0.018053389417138556, + "price_24h_change": -0.07525636163579905, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635510955, + "amount": 84424.556444262, + "raw_amount": 8.442455644426198e+22, + "raw_amount_hex_str": "0x11e0aa148195f762e7eb" + }, + { + "id": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2", + "chain": "eth", + "name": "Meta", + "symbol": "MTA", + "display_symbol": null, + "optimized_symbol": "MTA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2/17557a59ad21559db3e23e16ec1a16bd.png", + "protocol_id": "mstable", + "price": 0.0316464992928296, + "price_24h_change": 0.031256556455707844, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594635836, + "amount": 15213.74562970801, + "raw_amount": 1.521374562970801e+22, + "raw_amount_hex_str": "0x338bd2234572983c833" + }, + { + "id": "0xa68ccd2c3805c175c9f9caf30ae497e173dab30e", + "chain": "eth", + "name": "Sense Space 1st July 2023 cUSDC Sense Principal Token, A9", + "symbol": "SPACE-sP-cUSDC:01-07-2023:9", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-cUSDC:01-07-2023:9", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.6441122387021223, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660068889, + "amount": 91.58003837353839, + "raw_amount": 91580038373538380000, + "raw_amount_hex_str": "0x4f6eda7b05b65c726" + }, + { + "id": "0xa718042e5622099e5f0ace4e7122058ab39e1bbe", + "chain": "eth", + "name": "Balancer 50TEMPLE-50bb-euler-USD", + "symbol": "50TEMPLE-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0374656971145142, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675960415, + "amount": 0.006724969309434162, + "raw_amount": 6724969309434162, + "raw_amount_hex_str": "0x17e452eed07132" + }, + { + "id": "0xa9dd57145ca13a2f05199d85e3f2739af6478427", + "chain": "eth", + "name": "80TBTC-20WBTC", + "symbol": "80TBTC-20WBTC", + "display_symbol": null, + "optimized_symbol": "80TBTC-20WBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 22074.88086040145, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691731199, + "amount": 0.000021838039836179, + "raw_amount": 21838039836179, + "raw_amount_hex_str": "0x13dc909b6613" + }, + { + "id": "0xab3af7f0c93ec60bce469649bfefda0de0980993", + "chain": "eth", + "name": "$ rEthLP.com", + "symbol": "$ rEthLP.com", + "display_symbol": null, + "optimized_symbol": "$ rEthLP.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687618163, + "amount": 5000, + "raw_amount": 5000, + "raw_amount_hex_str": "0x1388" + }, + { + "id": "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf", + "chain": "eth", + "name": "Paladin Token", + "symbol": "PAL", + "display_symbol": null, + "optimized_symbol": "PAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf/445fbd915f5573ff4783b39329ca7bc1.png", + "protocol_id": "paladin", + "price": 0.09346894899580695, + "price_24h_change": -0.0007575814618729496, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635408659, + "amount": 1185.6781644171872, + "raw_amount": 1.1856781644171874e+21, + "raw_amount_hex_str": "0x404697088b97a61700" + }, + { + "id": "0xabe580e7ee158da464b51ee1a83ac0289622e6be", + "chain": "eth", + "name": "Offshift", + "symbol": "XFT", + "display_symbol": null, + "optimized_symbol": "XFT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xabe580e7ee158da464b51ee1a83ac0289622e6be/ee34c8bec4551ca91087ef18d8337273.png", + "protocol_id": "", + "price": 0.17337654534224006, + "price_24h_change": -0.08578074683705737, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594831562, + "amount": 157.62779756475396, + "raw_amount": 157627797564753940000, + "raw_amount_hex_str": "0x88b866ebcbe57bb5c" + }, + { + "id": "0xad0e5e0778cac28f1ff459602b31351871b5754a", + "chain": "eth", + "name": "BPT-EURS-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.030037055920767, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668652895, + "amount": 210.5427347065171, + "raw_amount": 210542734706517100000, + "raw_amount_hex_str": "0xb69de0db65d427e10" + }, + { + "id": "0xae78736cd615f374d3085123a210448e74fc6393", + "chain": "eth", + "name": "Rocket Pool ETH", + "symbol": "rETH", + "display_symbol": null, + "optimized_symbol": "rETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xae78736cd615f374d3085123a210448e74fc6393/0a56aa87c04449332f88702b2bd5f45c.png", + "protocol_id": "rocketpool", + "price": 1678.4752857938013, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1632980684, + "amount": 0.000004151176996864, + "raw_amount": 4151176996864, + "raw_amount_hex_str": "0x3c6856e2800" + }, + { + "id": "0xae8535c23afedda9304b03c68a3563b75fc8f92b", + "chain": "eth", + "name": "swETH/Boosted Aave v3 WETH", + "symbol": "swETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1555.209374398295, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689520463, + "amount": 0.000001469001331326, + "raw_amount": 1469001331326, + "raw_amount_hex_str": "0x156074d727e" + }, + { + "id": "0xb17548c7b510427baac4e267bea62e800b247173", + "chain": "eth", + "name": "Swarm Markets", + "symbol": "SMT", + "display_symbol": null, + "optimized_symbol": "SMT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb17548c7b510427baac4e267bea62e800b247173/9582e5b9b72518371bb342c0efc49c1f.png", + "protocol_id": "swarm", + "price": 0.04693915810634327, + "price_24h_change": -0.004426948270534429, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1625232545, + "amount": 1108.1762058273564, + "raw_amount": 1.1081762058273564e+21, + "raw_amount_hex_str": "0x3c1308c3d4afbe27b4" + }, + { + "id": "0xb209468fc8c99360657d48238e1a7cf0b13362b6", + "chain": "eth", + "name": "80SWIV-20WETH", + "symbol": "80SWIV-20WETH", + "display_symbol": null, + "optimized_symbol": "80SWIV-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.13678823111338215, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695750107, + "amount": 4.181112174583676, + "raw_amount": 4181112174583676400, + "raw_amount_hex_str": "0x3a064b5ecc1efe74" + }, + { + "id": "0xb4efd85c19999d84251304bda99e90b92300bd93", + "chain": "eth", + "name": "Rocket Pool", + "symbol": "RPL", + "display_symbol": "RPL(old)", + "optimized_symbol": "RPL(old)", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb4efd85c19999d84251304bda99e90b92300bd93/0dac0c5e1dd543fb62581f0756e0b11f.png", + "protocol_id": "rocketpool", + "price": 21.91417045245863, + "price_24h_change": -0.0019067431660758326, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1504750041, + "amount": 0.0086061706836381, + "raw_amount": 8606170683638101, + "raw_amount_hex_str": "0x1e934442798155" + }, + { + "id": "0xb53ecf1345cabee6ea1a65100ebb153cebcac40f", + "chain": "eth", + "name": "Childhoods End", + "symbol": "O", + "display_symbol": null, + "optimized_symbol": "O", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb53ecf1345cabee6ea1a65100ebb153cebcac40f/996bd647276bd1415dae387fb97044c0.png", + "protocol_id": "", + "price": 0.00001298905109477635, + "price_24h_change": -0.0034390441903565778, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1650383811, + "amount": 67.50138566599341, + "raw_amount": 67501385665993410000, + "raw_amount_hex_str": "0x3a8c518a0242e876a" + }, + { + "id": "0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a03", + "chain": "eth", + "name": "Balancer vETH/WETH StablePool", + "symbol": "vETH/WETH BPT", + "display_symbol": null, + "optimized_symbol": "vETH/WETH BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1550.1289331523578, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689519911, + "amount": 1.0017903850845442, + "raw_amount": 1001790385084544100, + "raw_amount_hex_str": "0xde7130c2a5db49d" + }, + { + "id": "0xb5e3de837f869b0248825e0175da73d4e8c3db6b", + "chain": "eth", + "name": "Balancer 50rETH-50bb-euler-USD", + "symbol": "50rETH-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50rETH-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 62.13903818323982, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675959503, + "amount": 0.00013530571635119, + "raw_amount": 135305716351190, + "raw_amount_hex_str": "0x7b0f5128c0d6" + }, + { + "id": "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206", + "chain": "eth", + "name": "Nexo", + "symbol": "NEXO", + "display_symbol": null, + "optimized_symbol": "NEXO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206/0fed72ccc71d9596a9c90536c8da2b95.png", + "protocol_id": "", + "price": 0.525469017028069, + "price_24h_change": 0.0017862028828324386, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1524250249, + "amount": 676.4372781409888, + "raw_amount": 676437278140988800000, + "raw_amount_hex_str": "0x24ab73f88d09bea141" + }, + { + "id": "0xb65df73fc4f6591ebe00494a4bd47ed339a81210", + "chain": "eth", + "name": "AAA METAVERSE TOKEN", + "symbol": "AMT", + "display_symbol": null, + "optimized_symbol": "AMT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.0020334791116198023, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653030386, + "amount": 562.5772921108754, + "raw_amount": 562577292110875460000, + "raw_amount_hex_str": "0x1e7f540a8339e63546" + }, + { + "id": "0xb7dff8b71e62bff9f850795bcea61ffbca7c87a3", + "chain": "eth", + "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-12-2022:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 976.5337757171648, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659543677, + "amount": 0.016823993980989112, + "raw_amount": 16823993980989112, + "raw_amount_hex_str": "0x3bc55558f0aeb9" + }, + { + "id": "0xb83809806a076a1413437ea3e553d6bf41993a21", + "chain": "eth", + "name": "Element Principal Token yvUSDC-24FEB23", + "symbol": "ePyvUSDC-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-24FEB23", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661486935, + "amount": 16.087236, + "raw_amount": 16087236, + "raw_amount_hex_str": "0xf578c4" + }, + { + "id": "0xb8e2cbb2455e80ad0eb536ae30a5290bdd7baa91", + "chain": "eth", + "name": "80BREWSKI-20WETH", + "symbol": "80BREWSKI-20WETH", + "display_symbol": null, + "optimized_symbol": "80BREWSKI-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00052393482405672, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685791475, + "amount": 2507.045707598529, + "raw_amount": 2.507045707598529e+21, + "raw_amount_hex_str": "0x87e83f9429d626c569" + }, + { + "id": "0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6", + "chain": "eth", + "name": "Balancer 50wstETH-50bb-a-USD", + "symbol": "50wstETH-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50wstETH-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 19.389078672044185, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664906015, + "amount": 0.0125422532991523, + "raw_amount": 12542253299152300, + "raw_amount_hex_str": "0x2c8f1ce89435ac" + }, + { + "id": "0xba100000625a3754423978a60c9317c58a424e3d", + "chain": "eth", + "name": "Balancer", + "symbol": "BAL", + "display_symbol": null, + "optimized_symbol": "BAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba100000625a3754423978a60c9317c58a424e3d/52990c207f4001bd9090dfd90e54374a.png", + "protocol_id": "balancer", + "price": 3.0201109391818974, + "price_24h_change": 0.00096421174618207, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1592616779, + "amount": 3372.316304645749, + "raw_amount": 3.3723163046457487e+21, + "raw_amount_hex_str": "0xb6d04a43c71bda24a4" + }, + { + "id": "0xba485b556399123261a5f9c95d413b4f93107407", + "chain": "eth", + "name": "Gravitationally Bound AURA", + "symbol": "graviAURA", + "display_symbol": null, + "optimized_symbol": "graviAURA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba485b556399123261a5f9c95d413b4f93107407/a8e2db7ff72e88ddc918855572e9110e.png", + "protocol_id": "badger", + "price": 0.822547503340468, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1655385807, + "amount": 4913.82408500512, + "raw_amount": 4.91382408500512e+21, + "raw_amount_hex_str": "0x10a61020ac1a10979fc" + }, + { + "id": "0xbb6c7b5e0804d07ae31a43e6e83ea66fb128a3bb", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1395.845064884925, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648172657, + "amount": 0.005585389870334592, + "raw_amount": 5585389870334592, + "raw_amount_hex_str": "0x13d7e1eb274280" + }, + { + "id": "0xbc396689893d065f41bc2c6ecbee5e0085233447", + "chain": "eth", + "name": "Perpetual", + "symbol": "PERP", + "display_symbol": null, + "optimized_symbol": "PERP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbc396689893d065f41bc2c6ecbee5e0085233447/ccb9a7014a682d32c7fe19ce6c66070d.png", + "protocol_id": "perpetual", + "price": 0.550362626647403, + "price_24h_change": 0.006741382062086233, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599343689, + "amount": 0.009363496712110932, + "raw_amount": 9363496712110932, + "raw_amount_hex_str": "0x21440cf7618353" + }, + { + "id": "0xbd482ffb3e6e50dc1c437557c3bea2b68f3683ee", + "chain": "eth", + "name": "4Pool Chainlink", + "symbol": "BUSD-DAI-USDC-BPT-USDT", + "display_symbol": null, + "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.42807004197267434, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668203063, + "amount": 137.930014803117, + "raw_amount": 137930014803117000000, + "raw_amount_hex_str": "0x77a29d9adcc28c1a7" + }, + { + "id": "0xbe19d87ea6cd5b05bbc34b564291c371dae96747", + "chain": "eth", + "name": "Balancer GHO/3pool Stable Pool", + "symbol": "GHO-3POOL-BPT", + "display_symbol": null, + "optimized_symbol": "GHO-3POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.982790178153429, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692108155, + "amount": 716.2727153022291, + "raw_amount": 716272715302229100000, + "raw_amount_hex_str": "0x26d447df9785dddc54" + }, + { + "id": "0xbe1f8b3493570501cb32bc87ae3150f4e1a9f0e4", + "chain": "eth", + "name": "GonczyPolski", + "symbol": "GP", + "display_symbol": null, + "optimized_symbol": "GP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659962474, + "amount": 18707.03543949801, + "raw_amount": 1.8707035439498009e+22, + "raw_amount_hex_str": "0x3f61c44b21a124b9e94" + }, + { + "id": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "chain": "eth", + "name": "Coinbase Wrapped Staked ETH", + "symbol": "cbETH", + "display_symbol": null, + "optimized_symbol": "cbETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbe9895146f7af43049ca1c1ae358b0541ea49704/1f287272a7d8439af0f6b281ebf0143e.png", + "protocol_id": "", + "price": 1624.2622879370197, + "price_24h_change": -0.000991810550811063, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1643901537, + "amount": 0.9982481048205661, + "raw_amount": 998248104820566100, + "raw_amount_hex_str": "0xdda7d5cc589684d" + }, + { + "id": "0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33", + "chain": "eth", + "name": "R/bb-s-DAI Stable Pool", + "symbol": "R-bb-s-DAI-BLP", + "display_symbol": null, + "optimized_symbol": "R-bb-s-DAI-BLP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0016753534425602, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689167879, + "amount": 0.001611574821043787, + "raw_amount": 1611574821043787, + "raw_amount_hex_str": "0x5b9b800bcbe4b" + }, + { + "id": "0xbfa9180729f1c549334080005ca37093593fb7aa", + "chain": "eth", + "name": "$ ClaimLIDO.com", + "symbol": "$ ClaimLIDO.com", + "display_symbol": null, + "optimized_symbol": "$ ClaimLIDO.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667825063, + "amount": 400, + "raw_amount": 400, + "raw_amount_hex_str": "0x190" + }, + { + "id": "0xbfce47224b4a938865e3e2727dc34e0faa5b1d82", + "chain": "eth", + "name": "Balancer uniETH-WETH", + "symbol": "uniETH-WETH", + "display_symbol": null, + "optimized_symbol": "uniETH-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1538.575862072939, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682117411, + "amount": 0.39733411223606924, + "raw_amount": 397334112236069250, + "raw_amount_hex_str": "0x5839d4518f9e16a" + }, + { + "id": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "chain": "eth", + "name": "Compound", + "symbol": "COMP", + "display_symbol": null, + "optimized_symbol": "COMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc00e94cb662c3520282e6f5717214004a7f26888/dd174d3d7083fa027a433dc50edaf0bc.png", + "protocol_id": "compound3", + "price": 40.47036137837228, + "price_24h_change": 0.004711650226574063, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1583280535, + "amount": 5.7687117271119135, + "raw_amount": 5768711727111913000, + "raw_amount_hex_str": "0x500e94c07a22c0e0" + }, + { + "id": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "chain": "eth", + "name": "Synthetix Network Token", + "symbol": "SNX", + "display_symbol": null, + "optimized_symbol": "SNX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f/fb568c26c7902169572abe8fa966e791.png", + "protocol_id": "synthetix", + "price": 1.8432079900671556, + "price_24h_change": -0.020191374942175513, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1565329008, + "amount": 486.39182141807174, + "raw_amount": 486391821418071700000, + "raw_amount_hex_str": "0x1a5e0ae090bf666ae5" + }, + { + "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "chain": "eth", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2/61844453e63cf81301f845d7864236f6.png", + "protocol_id": "", + "price": 1544.9, + "price_24h_change": -0.0019445575001130497, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1513077455, + "amount": 11.151656723989788, + "raw_amount": 11151656723989789000, + "raw_amount_hex_str": "0x9ac2a4b4da81f812" + }, + { + "id": "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf", + "chain": "eth", + "name": "Aura", + "symbol": "AURA", + "display_symbol": null, + "optimized_symbol": "AURA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc0c293ce456ff0ed870add98a0828dd4d2903dbf/f5bdc54131498b4bda381d301e855962.png", + "protocol_id": "aurafinance", + "price": 0.7654338884230348, + "price_24h_change": -0.007531486747758411, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1654771511, + "amount": 1625.9890333145872, + "raw_amount": 1.6259890333145872e+21, + "raw_amount_hex_str": "0x5825217af0c4c3c66d" + }, + { + "id": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72", + "chain": "eth", + "name": "Ethereum Name Service", + "symbol": "ENS", + "display_symbol": null, + "optimized_symbol": "ENS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc18360217d8f7ab5e7c516566761ea12ce7f9d72/034d454d78d7be7f9675066fdb63e114.png", + "protocol_id": "ens", + "price": 7.009245680883741, + "price_24h_change": 0.0022086414780130726, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635800117, + "amount": 122.99354445236817, + "raw_amount": 122993544452368170000, + "raw_amount_hex_str": "0x6aae0d9081d9ee5e7" + }, + { + "id": "0xc285b7e09a4584d027e5bc36571785b515898246", + "chain": "eth", + "name": "Coin98 Dollar", + "symbol": "CUSD", + "display_symbol": null, + "optimized_symbol": "CUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc285b7e09a4584d027e5bc36571785b515898246/5c76ada4733bb3b2b5591a1bd8d1d38b.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1657947314, + "amount": 13.55210093862448, + "raw_amount": 13552100938624480000, + "raw_amount_hex_str": "0xbc12bc0066f3335f" + }, + { + "id": "0xc2b021133d1b0cf07dba696fd5dd89338428225b", + "chain": "eth", + "name": "Balancer GHO/bb-a-USD Stable Pool", + "symbol": "GHO/bb-a-USD", + "display_symbol": null, + "optimized_symbol": "GHO/bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9847342472520083, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689432443, + "amount": 396.22222911106655, + "raw_amount": 396222229111066500000, + "raw_amount_hex_str": "0x157ab02219e68f4384" + }, + { + "id": "0xc443c15033fcb6cf72cc24f1bda0db070ddd9786", + "chain": "eth", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc443c15033fcb6cf72cc24f1bda0db070ddd9786/ee454c97f462c9b0bd19726bcfa86720.png", + "protocol_id": "balancer2", + "price": 0.9997278051795813, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689173327, + "amount": 17.64075312816144, + "raw_amount": 17640753128161440000, + "raw_amount_hex_str": "0xf4d08b815e6c6d1b" + }, + { + "id": "0xc4ad29ba4b3c580e6d59105fff484999997675ff", + "chain": "eth", + "name": "Curve.fi USD-BTC-ETH", + "symbol": "crv3crypto", + "display_symbol": null, + "optimized_symbol": "crv3crypto", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1072.4992136491467, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1626210526, + "amount": 0.17431343489797024, + "raw_amount": 174313434897970240, + "raw_amount_hex_str": "0x26b49253eabf43e" + }, + { + "id": "0xc4fd39b52100c96a5f7dcd3c6522485897329889", + "chain": "eth", + "name": "Balancer KAI-WETH Weighted Pool", + "symbol": "B-KAI-WETH-WEIGHTED", + "display_symbol": null, + "optimized_symbol": "B-KAI-WETH-WEIGHTED", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 24.429320136118776, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687806275, + "amount": 9e-18, + "raw_amount": 9, + "raw_amount_hex_str": "0x9" + }, + { + "id": "0xc63958d9d01efa6b8266b1df3862c6323cbdb52b", + "chain": "eth", + "name": "Element Principal Token yvCurve-MIM-29APR22", + "symbol": "ePyvCurve-MIM-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-MIM-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0108754882736175, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1636645562, + "amount": 691.7806591217435, + "raw_amount": 691780659121743500000, + "raw_amount_hex_str": "0x2580629c429d1be771" + }, + { + "id": "0xc88c76dd8b92408fe9bea1a54922a31e232d873c", + "chain": "eth", + "name": "80ASX-20WETH", + "symbol": "80ASX-20WETH", + "display_symbol": null, + "optimized_symbol": "80ASX-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.1016979885468623, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691057747, + "amount": 19.905244117743802, + "raw_amount": 19905244117743800000, + "raw_amount_hex_str": "0x1143da210058d93ed" + }, + { + "id": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", + "chain": "eth", + "name": "Graph Token", + "symbol": "GRT", + "display_symbol": null, + "optimized_symbol": "GRT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc944e90c64b2c07662a292be6244bdf05cda44a7/8a3fcf468cdf3ae0c7a56cfb12ab4816.png", + "protocol_id": "thegraph", + "price": 0.07988118728398394, + "price_24h_change": 0.009735446648929608, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1607890633, + "amount": 4.073381297170433, + "raw_amount": 4073381297170432500, + "raw_amount_hex_str": "0x38878eb54490425a" + }, + { + "id": "0xc9b88361c09ec184bdd32cf52cffc79a1452f79d", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-16SEP22", + "symbol": "ePyvCurve-alUSD-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0081929463433021, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651238498, + "amount": 3.4140435605437474, + "raw_amount": 3414043560543747000, + "raw_amount_hex_str": "0x2f611e87a9eb7c99" + }, + { + "id": "0xc9c5ff67bb2fae526ae2467c359609d6bcb4c532", + "chain": "eth", + "name": "Tranchess qETH/ETH Balancer Pool", + "symbol": "qETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1572.3437842904264, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668491783, + "amount": 0.1122426227770841, + "raw_amount": 112242622777084110, + "raw_amount_hex_str": "0x18ec4121b4948c9" + }, + { + "id": "0xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf", + "chain": "eth", + "name": "Curve.fi USD-BTC-ETH", + "symbol": "crvTricrypto", + "display_symbol": null, + "optimized_symbol": "crvTricrypto", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1061.9043647657338, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1622187277, + "amount": 9.13523352988e-7, + "raw_amount": 913523352988, + "raw_amount_hex_str": "0xd4b23c259c" + }, + { + "id": "0xcaa052584b462198a5a9356c28bce0634d65f65c", + "chain": "eth", + "name": "Balancer Morpho Aave v2 Boosted StablePool", + "symbol": "bb-ma2-USD", + "display_symbol": null, + "optimized_symbol": "bb-ma2-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.008788911948037, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679168039, + "amount": 102.07287280750954, + "raw_amount": 102072872807509540000, + "raw_amount_hex_str": "0x5888bb1035f3c4ebb" + }, + { + "id": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", + "chain": "eth", + "name": "ParaSwap", + "symbol": "PSP", + "display_symbol": null, + "optimized_symbol": "PSP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcafe001067cdef266afb7eb5a286dcfd277f3de5/142412ec7069ec0a4806f2bfc2855022.png", + "protocol_id": "paraswap", + "price": 0.020219362465616546, + "price_24h_change": 0.0005539690043150512, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636966698, + "amount": 32663.1236691714, + "raw_amount": 3.26631236691714e+22, + "raw_amount_hex_str": "0x6eaabe640771eea75e1" + }, + { + "id": "0xcce00da653eb50133455d4075fe8bca36750492c", + "chain": "eth", + "name": "Element Principal Token yvDAI-16SEP22", + "symbol": "ePyvDAI-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999997988475755, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649796306, + "amount": 846.7169215907458, + "raw_amount": 846716921590745800000, + "raw_amount_hex_str": "0x2de68eca1698ae3e57" + }, + { + "id": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5", + "chain": "eth", + "name": "Threshold Network Token", + "symbol": "T", + "display_symbol": null, + "optimized_symbol": "T", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcdf7028ceab81fa0c6971208e83fa7872994bee5/415842bd4135e852704aea093ce139d0.png", + "protocol_id": "threshold", + "price": 0.021729270034551062, + "price_24h_change": 0.14859175877422745, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640944196, + "amount": 51619.35353284609, + "raw_amount": 5.161935353284609e+22, + "raw_amount_hex_str": "0xaee4a6f6311347d797b" + }, + { + "id": "0xce621fc54d2547294a46b4d5c142bdeb2d0f0aeb", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1576.7545974872332, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647499081, + "amount": 0.000003220458669281, + "raw_amount": 3220458669281, + "raw_amount_hex_str": "0x2edd24b84e1" + }, + { + "id": "0xcfe60a1535ecc5b0bc628dc97111c8bb01637911", + "chain": "eth", + "name": "Element Principal Token yvUSDC-16SEP22", + "symbol": "ePyvUSDC-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-16SEP22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647458268, + "amount": 251.4586, + "raw_amount": 251458600, + "raw_amount_hex_str": "0xefcf428" + }, + { + "id": "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5", + "chain": "eth", + "name": "Notional", + "symbol": "NOTE", + "display_symbol": null, + "optimized_symbol": "NOTE", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5/ebf0bbcfaf39b581a04aacbc502101a4.png", + "protocol_id": "notional", + "price": 0.11001397646498985, + "price_24h_change": -0.0008729395992452417, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1629899104, + "amount": 3853.24185157, + "raw_amount": 385324185157, + "raw_amount_hex_str": "0x59b71c7645" + }, + { + "id": "0xd278166dabaf26707362f7cfdd204b277fd2a460", + "chain": "eth", + "name": "Balancer 50USH-50WETH", + "symbol": "50USH-50WETH", + "display_symbol": null, + "optimized_symbol": "50USH-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 6.94985511227177, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680608411, + "amount": 52.51509883621858, + "raw_amount": 52515098836218580000, + "raw_amount_hex_str": "0x2d8cb1c279556796a" + }, + { + "id": "0xd31a59c85ae9d8edefec411d448f90841571b89c", + "chain": "eth", + "name": "Wrapped SOL (Wormhole)", + "symbol": "SOL", + "display_symbol": null, + "optimized_symbol": "SOL", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd31a59c85ae9d8edefec411d448f90841571b89c/7c5db5c2eae571da837b65f5b9ae1a5c.png", + "protocol_id": "", + "price": 21.30928034089812, + "price_24h_change": -0.013891615462940668, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632316757, + "amount": 0.065785808, + "raw_amount": 65785808, + "raw_amount_hex_str": "0x3ebcfd0" + }, + { + "id": "0xd33526068d116ce69f19a9ee46f0bd304f21a51f", + "chain": "eth", + "name": "Rocket Pool Protocol", + "symbol": "RPL", + "display_symbol": null, + "optimized_symbol": "RPL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd33526068d116ce69f19a9ee46f0bd304f21a51f/0dac0c5e1dd543fb62581f0756e0b11f.png", + "protocol_id": "rocketpool", + "price": 17.81657544065273, + "price_24h_change": -0.02751890867633935, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632980703, + "amount": 0.000252996123096066, + "raw_amount": 252996123096066, + "raw_amount_hex_str": "0xe619400bf402" + }, + { + "id": "0xd40954a9ff856f9a2c6efa88ad45623157a7dff0", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.42569587121216246, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647839269, + "amount": 91.48478749826427, + "raw_amount": 91484787498264260000, + "raw_amount_hex_str": "0x4f59b4185c2239c2c" + }, + { + "id": "0xd5a14081a34d256711b02bbef17e567da48e80b5", + "chain": "eth", + "name": "Wrapped USDR", + "symbol": "wUSDR", + "display_symbol": null, + "optimized_symbol": "wUSDR", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5a14081a34d256711b02bbef17e567da48e80b5/c2524c9f38607e4862733fb51a2af417.png", + "protocol_id": "multichain", + "price": 0.5586578914927642, + "price_24h_change": 0.00008896392768886776, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1673500139, + "amount": 82.86324508, + "raw_amount": 82863245080, + "raw_amount_hex_str": "0x134b08c718" + }, + { + "id": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", + "chain": "eth", + "name": "NFT Worlds", + "symbol": "WRLD", + "display_symbol": null, + "optimized_symbol": "WRLD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9/7e8c2ceca870a77f8910d33d85163f0d.png", + "protocol_id": "", + "price": 0.02974205465705898, + "price_24h_change": 0.014343179588671276, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640650326, + "amount": 4.0949999999418525, + "raw_amount": 4094999999941852700, + "raw_amount_hex_str": "0x38d45ccdbfc23e02" + }, + { + "id": "0xd5d99b7e9697ba8bb1da48f07ba81900c7572cea", + "chain": "eth", + "name": "Balancer DUSD-3POOL Stable Pool", + "symbol": "DUSD-3POOL-BPT", + "display_symbol": null, + "optimized_symbol": "DUSD-3POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0058583969684993, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692371747, + "amount": 3.2381662947813354, + "raw_amount": 3238166294781335000, + "raw_amount_hex_str": "0x2cf04716ac1596bf" + }, + { + "id": "0xd689abc77b82803f22c49de5c8a0049cc74d11fd", + "chain": "eth", + "name": "80USH-20unshETH", + "symbol": "80USH-20unshETH", + "display_symbol": null, + "optimized_symbol": "80USH-20unshETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.20459115680302414, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681890359, + "amount": 648.2274085769405, + "raw_amount": 648227408576940600000, + "raw_amount_hex_str": "0x2323f661a50c8b8f1d" + }, + { + "id": "0xd8721e92ba0f8235b375e9ec9a7b697ec4e2d6c6", + "chain": "eth", + "name": "80BIDS-20WETH", + "symbol": "80BIDS-20WETH", + "display_symbol": null, + "optimized_symbol": "80BIDS-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.000388148330942396, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687690631, + "amount": 2493.6199718123144, + "raw_amount": 2.4936199718123146e+21, + "raw_amount_hex_str": "0x872dedc8993497a483" + }, + { + "id": "0xd8dc4cc15945a16aa5201bcabfa1d32d2cb39fd6", + "chain": "eth", + "name": "Sense Space 1st June 2023 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-06-2023:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2023:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1624.575446915038, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652969144, + "amount": 0.022896520284385536, + "raw_amount": 22896520284385536, + "raw_amount_hex_str": "0x5158438e24b0ff" + }, + { + "id": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chain": "eth", + "name": "Tether USD", + "symbol": "USDT", + "display_symbol": "", + "optimized_symbol": "USDT", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", + "protocol_id": "", + "price": 0.999505, + "price_24h_change": -0.00019005796768016594, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1511829681, + "amount": 56.93199, + "raw_amount": 56931990, + "raw_amount_hex_str": "0x364b696" + }, + { + "id": "0xdbbfb4ccd10a0828b95ce6fbe8a7502a9e6a76f5", + "chain": "eth", + "name": "Sense Space 1st July 2023 cDAI Sense Principal Token, A10", + "symbol": "SPACE-sP-cDAI:01-07-2023:10", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-cDAI:01-07-2023:10", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7364495351110074, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660069123, + "amount": 1.7887012788357777, + "raw_amount": 1788701278835777800, + "raw_amount_hex_str": "0x18d2be560e4b20c6" + }, + { + "id": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f", + "chain": "eth", + "name": "Gitcoin", + "symbol": "GTC", + "display_symbol": "", + "optimized_symbol": "GTC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f/18bdb51197eaa8954b3467dcf0a5c5e9.png", + "protocol_id": "gitcoin", + "price": 0.8494684490319485, + "price_24h_change": 0.011417648415819168, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620856082, + "amount": 597.5321048491141, + "raw_amount": 597532104849114100000, + "raw_amount_hex_str": "0x20646c7b7fdee9eb53" + }, + { + "id": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab", + "chain": "eth", + "name": "CoW Protocol Token", + "symbol": "COW", + "display_symbol": null, + "optimized_symbol": "COW", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab/01b4a8c7bfa381d0f47d140d58d06d54.png", + "protocol_id": "", + "price": 0.051591516681749126, + "price_24h_change": -0.009603569320282923, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644608664, + "amount": 3.740292097500236, + "raw_amount": 3740292097500236000, + "raw_amount_hex_str": "0x33e82fd883b3c8c8" + }, + { + "id": "0xdf2c03c12442c7a0895455a48569b889079ca52a", + "chain": "eth", + "name": "80ARCH-20WETH", + "symbol": "80ARCH-20WETH", + "display_symbol": null, + "optimized_symbol": "80ARCH-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 7.7488155328560655, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683242339, + "amount": 62.00358507396346, + "raw_amount": 62003585073963460000, + "raw_amount_hex_str": "0x35c78fc1d9e4de34d" + }, + { + "id": "0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba", + "chain": "eth", + "name": "Balancer ankrETH/wstETH StablePool", + "symbol": "ankrETH/wstETH", + "display_symbol": null, + "optimized_symbol": "ankrETH/wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1559.4453758687614, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685154395, + "amount": 1.9685926852119229, + "raw_amount": 1968592685211922700, + "raw_amount_hex_str": "0x1b51d89dfd7d315c" + }, + { + "id": "0xe074fbcc87e18615d6b099ee603bd37de562416b", + "chain": "eth", + "name": "50WAGMI-50ICE", + "symbol": "50WAGMI-50ICE", + "display_symbol": null, + "optimized_symbol": "50WAGMI-50ICE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.12019624475292776, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695825635, + "amount": 1366.4301978226151, + "raw_amount": 1.3664301978226152e+21, + "raw_amount_hex_str": "0x4a130741431fb71dbb" + }, + { + "id": "0xe29797910d413281d2821d5d9a989262c8121cc2", + "chain": "eth", + "name": "elimu.ai", + "symbol": "ELIMU", + "display_symbol": null, + "optimized_symbol": "ELIMU", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.0010337374241831609, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1623928435, + "amount": 2609.5598485877413, + "raw_amount": 2.6095598485877414e+21, + "raw_amount_hex_str": "0x8d76eaf83ffa785b14" + }, + { + "id": "0xe41d2489571d322189246dafa5ebde1f4699f498", + "chain": "eth", + "name": "0x Protocol Token", + "symbol": "ZRX", + "display_symbol": null, + "optimized_symbol": "ZRX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe41d2489571d322189246dafa5ebde1f4699f498/d7005102d4df2f6f8a79a5e8abe93b06.png", + "protocol_id": "0x", + "price": 0.20200735266977723, + "price_24h_change": 0.06750389020709405, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1502476756, + "amount": 19.965979726938276, + "raw_amount": 19965979726938276000, + "raw_amount_hex_str": "0x1151568c700ce85cd" + }, + { + "id": "0xe4af3c338260aabf119b5023d497437974769413", + "chain": "eth", + "name": "20USDC-80FOLD", + "symbol": "20USDC-80FOLD", + "display_symbol": null, + "optimized_symbol": "20USDC-80FOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.895309581356583, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683208187, + "amount": 17.236359481010393, + "raw_amount": 17236359481010395000, + "raw_amount_hex_str": "0xef33d9a0368f94cd" + }, + { + "id": "0xe4e72f872c4048925a78e1e6fddac411c9ae348a", + "chain": "eth", + "name": "2BTC", + "symbol": "2BTC", + "display_symbol": null, + "optimized_symbol": "2BTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 26802.83177621045, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691729291, + "amount": 0.005210776303321792, + "raw_amount": 5210776303321792, + "raw_amount_hex_str": "0x12832c669042c0" + }, + { + "id": "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532", + "chain": "eth", + "name": "ZEON", + "symbol": "ZEON", + "display_symbol": null, + "optimized_symbol": "ZEON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532/132ae9ab3cb6f2e332d748726ea96ec2.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1539621663, + "amount": 985.9709680218301, + "raw_amount": 985970968021830100000, + "raw_amount_hex_str": "0x3573188b848d35f70b" + }, + { + "id": "0xe72c7d093ac50c57e47f4f2674243a4fff68f0f2", + "chain": "eth", + "name": "stDai.xyz", + "symbol": "https://stdai.xyz", + "display_symbol": null, + "optimized_symbol": "https://stdai.xyz", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663927511, + "amount": 777, + "raw_amount": 777, + "raw_amount_hex_str": "0x309" + }, + { + "id": "0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2", + "chain": "eth", + "name": "Balancer swETH-WETH Stable Pool", + "symbol": "swETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1551.1893909272696, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692370463, + "amount": 4.252159352392409, + "raw_amount": 4252159352392409000, + "raw_amount_hex_str": "0x3b02b466efb45ff7" + }, + { + "id": "0xe89c2dccfa045f3538ae3ebbfff3daec6a40a73a", + "chain": "eth", + "name": "$ USDCXMAS.com", + "symbol": "$ Visit USDCXMAS.com to claim", + "display_symbol": null, + "optimized_symbol": "$ Visit USDCXMAS.com to claim", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672053143, + "amount": 9000, + "raw_amount": 9000, + "raw_amount_hex_str": "0x2328" + }, + { + "id": "0xe91888a1d08e37598867d213a4acb5692071bb3a", + "chain": "eth", + "name": "20R-80RAFT", + "symbol": "20R-80RAFT", + "display_symbol": null, + "optimized_symbol": "20R-80RAFT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.015265138285351615, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696336955, + "amount": 27486.953963283104, + "raw_amount": 2.7486953963283106e+22, + "raw_amount_hex_str": "0x5d2121d557b7ce6c0b1" + }, + { + "id": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb", + "chain": "eth", + "name": "Ankr Staked ETH", + "symbol": "ankrETH", + "display_symbol": "ankrETH", + "optimized_symbol": "ankrETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe95a203b1a91a908f9b9ce46459d101078c2c3cb/943011b2bba8d1d0a9c815caee4baf84.png", + "protocol_id": "ankr", + "price": 1751.3663714625789, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1604948706, + "amount": 0.20041041987153294, + "raw_amount": 200410419871532960, + "raw_amount_hex_str": "0x2c800370dbac791" + }, + { + "id": "0xea34b59a4e7075203a93f97178b2581d5f3f9919", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1.0222771989500457, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651434899, + "amount": 0.000075732300716355, + "raw_amount": 75732300716355, + "raw_amount_hex_str": "0x44e0cce1d943" + }, + { + "id": "0xea912e1afa137c15f1638142e32f978e92fbce39", + "chain": "eth", + "name": "Balancer DAI-USDT Fixed Rate Pool", + "symbol": "B-DAI-USDT-FIXED-RATE", + "display_symbol": null, + "optimized_symbol": "B-DAI-USDT-FIXED-RATE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9997817717504021, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667292155, + "amount": 2.52799920533739, + "raw_amount": 2527999205337390000, + "raw_amount_hex_str": "0x231541e2229adb33" + }, + { + "id": "0xeaa1cba8cc3cf01a92e9e853e90277b5b8a23e07", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-29APR22", + "symbol": "ePyvCurve-alUSD-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0081929463433024, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1637702559, + "amount": 15.528525296983258, + "raw_amount": 15528525296983257000, + "raw_amount_hex_str": "0xd780677be45ab12a" + }, + { + "id": "0xeb567dde03f3da7fe185bdacd5ab495ab220769d", + "chain": "eth", + "name": "ankrETH-Boosted Aave WETH StablePool", + "symbol": "ankrETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "ankrETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1560.7164819298293, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684280387, + "amount": 0.15395745027751706, + "raw_amount": 153957450277517060, + "raw_amount_hex_str": "0x222f77c3e50f702" + }, + { + "id": "0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983", + "chain": "eth", + "name": "Balancer UZD/bb-a-USD stableswap", + "symbol": "B-S-UZD-BB-A-USD", + "display_symbol": null, + "optimized_symbol": "B-S-UZD-BB-A-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.007405059320052849, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683442295, + "amount": 4.95e-15, + "raw_amount": 4950, + "raw_amount_hex_str": "0x1356" + }, + { + "id": "0xecf2c7a432e5f7d8ba0a85b12f2ae3e4874ec690", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1522.0192297526414, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647837401, + "amount": 0.0000119498554493, + "raw_amount": 11949855449300, + "raw_amount_hex_str": "0xade4ae3a0d4" + }, + { + "id": "0xed1480d12be41d92f36f5f7bdd88212e381a3677", + "chain": "eth", + "name": "FIAT DAO Token", + "symbol": "FDT", + "display_symbol": null, + "optimized_symbol": "FDT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed1480d12be41d92f36f5f7bdd88212e381a3677/3b6713634ee6c7285619f5d6f77329f9.png", + "protocol_id": "fiatdao", + "price": 0.0039182329308705835, + "price_24h_change": 0.02141659082943838, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635920329, + "amount": 0.499420319665554, + "raw_amount": 499420319665554050, + "raw_amount_hex_str": "0x6ee4c227b470265" + }, + { + "id": "0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Liquity", + "symbol": "LUSD3CRV-f", + "display_symbol": null, + "optimized_symbol": "LUSD3CRV-f", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca/45a771023b4a156c4bf6888411f5a38f.png", + "protocol_id": "curve", + "price": 1.024537575961021, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1617695155, + "amount": 419.9876956078656, + "raw_amount": 419987695607865600000, + "raw_amount_hex_str": "0x16c48007f715b6ea31" + }, + { + "id": "0xedb171c18ce90b633db442f2a6f72874093b49ef", + "chain": "eth", + "name": "Wrapped Ampleforth", + "symbol": "WAMPL", + "display_symbol": null, + "optimized_symbol": "WAMPL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xedb171c18ce90b633db442f2a6f72874093b49ef/60204bc28b7d18732faa55afcdd29196.png", + "protocol_id": "", + "price": 3.0017555546048302, + "price_24h_change": 0.06451373302128124, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632315593, + "amount": 6.535837671148202, + "raw_amount": 6535837671148202000, + "raw_amount_hex_str": "0x5ab3f5bbca67a758" + }, + { + "id": "0xede11d3d5dd7d5454844f6f121cc106bf1144a45", + "chain": "eth", + "name": "$ LPBalancer.com", + "symbol": "LPBalancer.com", + "display_symbol": null, + "optimized_symbol": "LPBalancer.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1657981900, + "amount": 500, + "raw_amount": 500, + "raw_amount_hex_str": "0x1f4" + }, + { + "id": "0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1", + "chain": "eth", + "name": "Gyroscope ECLP wstETH/wETH", + "symbol": "ECLP-wstETH-wETH", + "display_symbol": null, + "optimized_symbol": "ECLP-wstETH-wETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1548.2975404950264, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693249103, + "amount": 1.1023210422065088, + "raw_amount": 1102321042206508900, + "raw_amount_hex_str": "0xf4c3b25c5284741" + }, + { + "id": "0xf05e58fcea29ab4da01a495140b349f8410ba904", + "chain": "eth", + "name": "CLever CVX", + "symbol": "clevCVX", + "display_symbol": null, + "optimized_symbol": "clevCVX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf05e58fcea29ab4da01a495140b349f8410ba904/f1f9772044bbf5e8c3f5ab288d96e2ac.png", + "protocol_id": "clevercvx", + "price": 2.5876214721753317, + "price_24h_change": 0.019525513568182468, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1650535428, + "amount": 3.765972931308284, + "raw_amount": 3765972931308284000, + "raw_amount_hex_str": "0x34436c6d945de855" + }, + { + "id": "0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc", + "chain": "eth", + "name": "20WETH-80ALCX", + "symbol": "20WETH-80ALCX", + "display_symbol": null, + "optimized_symbol": "20WETH-80ALCX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 25.696088186963095, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677780875, + "amount": 86.79993549028745, + "raw_amount": 86799935490287450000, + "raw_amount_hex_str": "0x4b49751715167b719" + }, + { + "id": "0xf17e65822b568b3903685a7c9f496cf7656cc6c2", + "chain": "eth", + "name": "Biconomy Token", + "symbol": "BICO", + "display_symbol": null, + "optimized_symbol": "BICO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf17e65822b568b3903685a7c9f496cf7656cc6c2/69060a56ebfc5a4cecd43b64c8910d22.png", + "protocol_id": "biconomy", + "price": 0.2058546370055222, + "price_24h_change": 0.004188370164381852, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1633376291, + "amount": 745.690204870982, + "raw_amount": 745690204870982000000, + "raw_amount_hex_str": "0x286c87ca7e7f24563e" + }, + { + "id": "0xf1f6004398e29437801257ecc2b0a852717430b7", + "chain": "eth", + "name": "50ASX-50WETH", + "symbol": "50ASX-50WETH", + "display_symbol": null, + "optimized_symbol": "50ASX-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 19.05492473754897, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691052947, + "amount": 0.021674328605956496, + "raw_amount": 21674328605956496, + "raw_amount_hex_str": "0x4d00afe14d9992" + }, + { + "id": "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", + "chain": "eth", + "name": "Rally", + "symbol": "RLY", + "display_symbol": null, + "optimized_symbol": "RLY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b/052a631e8e9ba5e59f9434548ea6f91c.png", + "protocol_id": "rally", + "price": 0.005640450849530942, + "price_24h_change": -0.007262424243702797, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1601929393, + "amount": 0.7120994357331588, + "raw_amount": 712099435733158800, + "raw_amount_hex_str": "0x9e1e2a9f7a18b85" + }, + { + "id": "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817", + "chain": "eth", + "name": "Wrapped NCG", + "symbol": "WNCG", + "display_symbol": null, + "optimized_symbol": "WNCG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf203ca1769ca8e9e8fe1da9d147db68b6c919817/5d3c7b19728c5855b7a91fe9ab0f4acf.png", + "protocol_id": "", + "price": 0.054620836324581805, + "price_24h_change": 0.003673030464450004, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628244716, + "amount": 20090.05761726124, + "raw_amount": 2.009005761726124e+22, + "raw_amount_hex_str": "0x441158e813642b67b5f" + }, + { + "id": "0xf2051511b9b121394fa75b8f7d4e7424337af687", + "chain": "eth", + "name": "DAOhaus Token", + "symbol": "HAUS", + "display_symbol": null, + "optimized_symbol": "HAUS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf2051511b9b121394fa75b8f7d4e7424337af687/445ed9b4d899940d75305b98e2697f0a.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.01911063113528292, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599234880, + "amount": 267.64856679705207, + "raw_amount": 267648566797052100000, + "raw_amount_hex_str": "0xe825eb97064b3148d" + }, + { + "id": "0xf24d8651578a55b0c119b9910759a351a3458895", + "chain": "eth", + "name": "Stake DAO Balancer", + "symbol": "sdBal", + "display_symbol": null, + "optimized_symbol": "sdBal", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf24d8651578a55b0c119b9910759a351a3458895/e5049d9997377d22ca54fa8dc626342c.png", + "protocol_id": "stakedao", + "price": 8.88085673873382, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653567793, + "amount": 25.43121286326488, + "raw_amount": 25431212863264880000, + "raw_amount_hex_str": "0x160edd15bda3f76b7" + }, + { + "id": "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80", + "chain": "eth", + "name": "Jelly Token", + "symbol": "JELLY", + "display_symbol": null, + "optimized_symbol": "JELLY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80/aff641efef043d373dc74d0a6a74ca02.png", + "protocol_id": "", + "price": 0.001075429907908117, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635421158, + "amount": 18423.751965036692, + "raw_amount": 1.8423751965036694e+22, + "raw_amount_hex_str": "0x3e6c0eb9efabd134d6e" + }, + { + "id": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c", + "chain": "eth", + "name": "Enjin Coin", + "symbol": "ENJ", + "display_symbol": null, + "optimized_symbol": "ENJ", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c/5e91ff13592f1420dc3d25f0b1526ae7.png", + "protocol_id": "", + "price": 0.21124571053514518, + "price_24h_change": 0.006010880219093617, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1506906127, + "amount": 1489.6785814742284, + "raw_amount": 1.4896785814742284e+21, + "raw_amount_hex_str": "0x50c1717932072fde21" + }, + { + "id": "0xf656a566c9d3b2cb046481351a1179017530c6c9", + "chain": "eth", + "name": "heph10PoolDaiAura", + "symbol": "h10DaiAura", + "display_symbol": null, + "optimized_symbol": "h10DaiAura", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0782132168693415, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679754599, + "amount": 1.579e-15, + "raw_amount": 1579, + "raw_amount_hex_str": "0x62b" + }, + { + "id": "0xf65b5c5104c4fafd4b709d9d60a185eae063276c", + "chain": "eth", + "name": "Truebit", + "symbol": "TRU", + "display_symbol": null, + "optimized_symbol": "TRU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf65b5c5104c4fafd4b709d9d60a185eae063276c/c01f397719a7ef63a6754ee0f5f887b7.png", + "protocol_id": "", + "price": 0.08094452352620457, + "price_24h_change": -0.003924459030536595, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1618138342, + "amount": 4627.88937076259, + "raw_amount": 4.6278893707625906e+21, + "raw_amount_hex_str": "0xfae0dddf198e3d9fdd" + }, + { + "id": "0xf660870bd38d106e61f0d3539ed25b1320bc90e8", + "chain": "eth", + "name": "ApeWL.io (Otherside Beta)", + "symbol": "Otherside Beta Access (ApeWL.io)", + "display_symbol": null, + "optimized_symbol": "Otherside Beta Access (ApeWL.io)", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651990300, + "amount": 1, + "raw_amount": 1000000000000000000, + "raw_amount_hex_str": "0xde0b6b3a7640000" + }, + { + "id": "0xf7a826d47c8e02835d94fb0aa40f0cc9505cb134", + "chain": "eth", + "name": "Gyroscope ECLP wstETH/cbETH", + "symbol": "ECLP-wstETH-cbETH", + "display_symbol": null, + "optimized_symbol": "ECLP-wstETH-cbETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1547.3176464525145, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693336211, + "amount": 0.7459019083352464, + "raw_amount": 745901908335246300, + "raw_amount_hex_str": "0xa59f9d56b9bbc29" + }, + { + "id": "0xfd0205066521550d7d7ab19da8f72bb004b4c341", + "chain": "eth", + "name": "Liquidity Incentive Token", + "symbol": "LIT", + "display_symbol": null, + "optimized_symbol": "LIT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfd0205066521550d7d7ab19da8f72bb004b4c341/975226f93f2d8402ee4662af6e42223d.png", + "protocol_id": "bunni", + "price": 0.019572191131120038, + "price_24h_change": -0.010116382553892156, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1672973831, + "amount": 59802.34155429165, + "raw_amount": 5.980234155429165e+22, + "raw_amount_hex_str": "0xca9e434dd3e477692e4" + }, + { + "id": "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6", + "chain": "eth", + "name": "Synth sBTC", + "symbol": "sBTC", + "display_symbol": null, + "optimized_symbol": "sBTC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6/3e0d9a14a6f727b7bec8586c40d7b4c3.png", + "protocol_id": "", + "price": 26807.14, + "price_24h_change": 0.0023136810036619953, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1569481945, + "amount": 0.004254948726251717, + "raw_amount": 4254948726251717, + "raw_amount_hex_str": "0xf1dda735da0c5" + }, + { + "id": "0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", + "chain": "eth", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0084715356530507, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1680683795, + "amount": 282.4012203434777, + "raw_amount": 282401220343477700000, + "raw_amount_hex_str": "0xf4f1aadad35cde825" + }, + { + "id": "0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462", + "chain": "eth", + "name": "pub.finance", + "symbol": "PINT", + "display_symbol": null, + "optimized_symbol": "PINT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462/47dba101f922e80f0aceac36a98db7ef.png", + "protocol_id": "", + "price": 0.12017851720148634, + "price_24h_change": -0.0005364494800317111, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1604354259, + "amount": 12.988481226315663, + "raw_amount": 12988481226315663000, + "raw_amount_hex_str": "0xb4405adc0260075d" + }, + { + "id": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "chain": "eth", + "name": "Amp", + "symbol": "AMP", + "display_symbol": null, + "optimized_symbol": "AMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xff20817765cb7f73d4bde2e66e067e58d11095c2/c76dd38f00542547f74cd6a66a230287.png", + "protocol_id": "", + "price": 0.0014747319373465445, + "price_24h_change": 0.03964672905318228, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1597105639, + "amount": 167.132070499232, + "raw_amount": 167132070499232000000, + "raw_amount_hex_str": "0x90f6c649d8a43de79" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-10-26-avax.json b/FeeSweep/2023-10-26-avax.json new file mode 100644 index 000000000..56d60f44c --- /dev/null +++ b/FeeSweep/2023-10-26-avax.json @@ -0,0 +1,362 @@ +[ + { + "id": "0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa", + "chain": "avax", + "name": "Balancer Boosted ggAVAX-WAVAX", + "symbol": "ggAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "ggAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 10.57196124766507, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689850438, + "amount": 0.01520163301166129, + "raw_amount": 15201633011661292, + "raw_amount_hex_str": "0x3601cdffaa79eb" + }, + { + "id": "0x3396cca90c9335565ecdbae3a260dafb13a7959e", + "chain": "avax", + "name": "80BETS/20sAVAX Pool Token", + "symbol": "80BETS/20sAVAX", + "display_symbol": null, + "optimized_symbol": "80BETS/20sAVAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.0026329943824905753, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690622794, + "amount": 23934.675590044662, + "raw_amount": 2.393467559004466e+22, + "raw_amount_hex_str": "0x51180595dcca90fbe41" + }, + { + "id": "0x3441a6f48f0f5a1ada460885df5b461deb2ee494", + "chain": "avax", + "name": "50BTC.b-50USDC", + "symbol": "50BTC.b-50USDC", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 170198523.18787035, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694864473, + "amount": 6.5e-17, + "raw_amount": 65, + "raw_amount_hex_str": "0x41" + }, + { + "id": "0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b", + "chain": "avax", + "name": "BTC.b/Boosted Aave V3 USD", + "symbol": "50BTC.b-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 186.48982306397497, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691145314, + "amount": 0.7540171358527642, + "raw_amount": 754017135852764200, + "raw_amount_hex_str": "0xa76ce97110fbc1c" + }, + { + "id": "0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc", + "chain": "avax", + "name": "BPT-EUROC-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.9599091745424732, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689325569, + "amount": 0.11230989907284827, + "raw_amount": 112309899072848270, + "raw_amount_hex_str": "0x18f014216ff4190" + }, + { + "id": "0x670734d704eb7ef424d75321670f921fbf42e9cf", + "chain": "avax", + "name": "Balancer sAVAX-ankrAVAX", + "symbol": "sAVAX-ankrAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-ankrAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 10.632378649872933, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689851390, + "amount": 21.476973508385903, + "raw_amount": 21476973508385903000, + "raw_amount_hex_str": "0x12a0d899db1d113b0" + }, + { + "id": "0x721bd1900aeabc29009b08e44be37529f518f2c2", + "chain": "avax", + "name": "33VCHF-33sAVAX-33VEUR", + "symbol": "33VCHF-33sAVAX-33VEUR", + "display_symbol": null, + "optimized_symbol": "33VCHF-33sAVAX-33VEUR", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 2.4035894017453394, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696338373, + "amount": 16.328175259588996, + "raw_amount": 16328175259588995000, + "raw_amount_hex_str": "0xe29954e3621fa79d" + }, + { + "id": "0x90065d5e455e6b26a4eaf630c26289f6b6735647", + "chain": "avax", + "name": "Balancer QI-GGP-USDC", + "symbol": "BPT-QI-GGP-USDC", + "display_symbol": null, + "optimized_symbol": "BPT-QI-GGP-USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.21219166598637, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690903637, + "amount": 0.24182218235508435, + "raw_amount": 241822182355084350, + "raw_amount_hex_str": "0x35b1ffe5e15a43d" + }, + { + "id": "0x96518f83d66bdc6a5812f01c54f8e022f6796399", + "chain": "avax", + "name": "Balancer 50BTC.b 50USD", + "symbol": "50BTC.b-50USD-BPT", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 184.4266813189854, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038848, + "amount": 0.000199656222727216, + "raw_amount": 199656222727216, + "raw_amount_hex_str": "0xb596163b9c30" + }, + { + "id": "0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9", + "chain": "avax", + "name": "Balancer yyAVAX-WAVAX Stable Pool", + "symbol": "yyAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "yyAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 10.542553382657847, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038616, + "amount": 53.693481901894934, + "raw_amount": 53693481901894935000, + "raw_amount_hex_str": "0x2e925914f3c5023ac" + }, + { + "id": "0xa154009870e9b6431305f19b09f9cfd7284d4e7a", + "chain": "avax", + "name": "Balancer Boosted sAVAX-WAVAX", + "symbol": "sAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 10.616587669353105, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689792870, + "amount": 0.03296823166436684, + "raw_amount": 32968231664366840, + "raw_amount_hex_str": "0x75206e993a34f7" + }, + { + "id": "0xa1d14d922a575232066520eda11e27760946c991", + "chain": "avax", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.004559280508836, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689792622, + "amount": 0.11906646503784356, + "raw_amount": 119066465037843570, + "raw_amount_hex_str": "0x1a70251b13dfc6c" + }, + { + "id": "0xb06fdbd2941d2f42d60accee85086198ac729236", + "chain": "avax", + "name": "80HATCHY-20WAVAX", + "symbol": "80HATCHY-20WAVAX", + "display_symbol": null, + "optimized_symbol": "80HATCHY-20WAVAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.009393211119308808, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691028537, + "amount": 73.84254555069829, + "raw_amount": 73842545550698280000, + "raw_amount_hex_str": "0x400c56bf19bf910f6" + }, + { + "id": "0xb10968b6ca2ea1c25d392a9a990559ed3f686861", + "chain": "avax", + "name": "80WAVAX-20USDC", + "symbol": "80WAVAX-20USDC", + "display_symbol": null, + "optimized_symbol": "80WAVAX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 5.41703086923019, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696713768, + "amount": 0.11046353500418464, + "raw_amount": 110463535004184640, + "raw_amount_hex_str": "0x18871fff48ef03b" + }, + { + "id": "0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c96", + "chain": "avax", + "name": "Balancer USDC-USDT Stable Pool", + "symbol": "USDC-USDT-BPT", + "display_symbol": null, + "optimized_symbol": "USDC-USDT-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.000553274437077, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038450, + "amount": 893.8499695623308, + "raw_amount": 893849969562330900000, + "raw_amount_hex_str": "0x3074a9037f30734b32" + }, + { + "id": "0xc13546b97b9b1b15372368dc06529d7191081f5b", + "chain": "avax", + "name": "Balancer ggAVAX-WAVAX Stable Pool", + "symbol": "ggAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "ggAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 10.523481125087322, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038316, + "amount": 166.66359927990348, + "raw_amount": 166663599279903470000, + "raw_amount_hex_str": "0x908ec0c8602b21ac5" + }, + { + "id": "0xece571847897fd61e764d455dc15cf1cd9de8d6f", + "chain": "avax", + "name": "Balancer Boosted yyAVAX-WAVAX", + "symbol": "yyAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "yyAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 10.598966565331851, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689850089, + "amount": 76.02434221814359, + "raw_amount": 76024342218143580000, + "raw_amount_hex_str": "0x41f0cb874032e58a3" + }, + { + "id": "0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc", + "chain": "avax", + "name": "Balancer sAVAX-WAVAX Stable Pool", + "symbol": "sAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 10.574484235062487, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038154, + "amount": 359.55973190121625, + "raw_amount": 359559731901216260000, + "raw_amount_hex_str": "0x137de4c72292af4990" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-10-26-base.json b/FeeSweep/2023-10-26-base.json new file mode 100644 index 000000000..90e63546d --- /dev/null +++ b/FeeSweep/2023-10-26-base.json @@ -0,0 +1,1322 @@ +[ + { + "id": "0x002a1eb0804504dd5162757bc309fd34784ae7e0", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.296587073130674, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698392391, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0x012e776cc3ed4c5adea3eda8677e82343e4de396", + "chain": "base", + "name": "Balancer 50WETH-50USDbC Pool", + "symbol": "50WETH-50USDbC BPT", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 48.591469461495905, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691431253, + "amount": 0.604486310936122, + "raw_amount": 604486310936122000, + "raw_amount_hex_str": "0x8639118daef1289" + }, + { + "id": "0x029a77e8d39e261b2a1bdf9726201ce87305ef69", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 502237.23801356205, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697522195, + "amount": 1.3e-17, + "raw_amount": 13, + "raw_amount_hex_str": "0xd" + }, + { + "id": "0x031e96f4cebfef8829c2dabf3e45bc4886b77186", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.236172656656436, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699439533, + "amount": 1.7e-17, + "raw_amount": 17, + "raw_amount_hex_str": "0x11" + }, + { + "id": "0x036d68e4e0005da4ef1c9ebd53b948d2c083495e", + "chain": "base", + "name": " 50tBTC-50USD", + "symbol": " 50tBTC-50USD", + "display_symbol": null, + "optimized_symbol": " 50tBTC-50USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 197.27301825439918, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691577137, + "amount": 0.019455649030178004, + "raw_amount": 19455649030178010, + "raw_amount_hex_str": "0x451ecf495184d6" + }, + { + "id": "0x07d72005b9e2b0e4d9f2ee903de59a43439e15e6", + "chain": "base", + "name": "50WETH-50cbXEN", + "symbol": "50WETH-50cbXEN", + "display_symbol": null, + "optimized_symbol": "50WETH-50cbXEN", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.0007060710160206893, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693829071, + "amount": 22.335699875887013, + "raw_amount": 22335699875887014000, + "raw_amount_hex_str": "0x135f858b28ffb615e" + }, + { + "id": "0x08ecc11058efd2acfd8d351ecda17bf46b5dea35", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.26368442748568, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698925075, + "amount": 9e-18, + "raw_amount": 9, + "raw_amount_hex_str": "0x9" + }, + { + "id": "0x096fa90589c05a12b7c4356f9c908c650894e1e0", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501540.0167223462, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695119667, + "amount": 1.6e-17, + "raw_amount": 16, + "raw_amount_hex_str": "0x10" + }, + { + "id": "0x0be4dc963db6ca066ff147069b9c437da683608b", + "chain": "base", + "name": "It is not ogre until it is OGRE", + "symbol": "veOGRE", + "display_symbol": null, + "optimized_symbol": "veOGRE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 829.4457047209523, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691168451, + "amount": 0.000003326074467418, + "raw_amount": 3326074467418, + "raw_amount_hex_str": "0x306697cb45a" + }, + { + "id": "0x0c659734f1eef9c63b7ebdf78a164cdd745586db", + "chain": "base", + "name": "Balancer USDC/USDbC/axlUSDC", + "symbol": "USDC/USDbC/axlUSDC", + "display_symbol": null, + "optimized_symbol": "USDC/USDbC/axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.002274931882398, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694032789, + "amount": 1102.5723808648565, + "raw_amount": 1.1025723808648566e+21, + "raw_amount_hex_str": "0x3bc543fab7be790ee7" + }, + { + "id": "0x0d9e306cd13ab76588eb2363c2c69d7ccf32a7fe", + "chain": "base", + "name": "40WETH-60USDbC", + "symbol": "40WETH-60USDbC", + "display_symbol": null, + "optimized_symbol": "40WETH-60USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500506.7559293171, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693506859, + "amount": 7.3e-17, + "raw_amount": 73, + "raw_amount_hex_str": "0x49" + }, + { + "id": "0x109fb663fbe47bcef8cf1d74759ebb869e390105", + "chain": "base", + "name": "1WETH-99USDbC", + "symbol": "1WETH-99USDbC", + "display_symbol": null, + "optimized_symbol": "1WETH-99USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.5709811540202507, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692905203, + "amount": 0.000542238392422574, + "raw_amount": 542238392422574, + "raw_amount_hex_str": "0x1ed29b6c390ae" + }, + { + "id": "0x17e7d59bb209a3215ccc25fffef7161498b7c10d", + "chain": "base", + "name": "1WETH-99GOLD", + "symbol": "1WETH-99GOLD", + "display_symbol": null, + "optimized_symbol": "1WETH-99GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 6.7829522731922065, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691862139, + "amount": 11.85202029895648, + "raw_amount": 11852020298956480000, + "raw_amount_hex_str": "0xa47ad5aace051e12" + }, + { + "id": "0x18423174a94aa1856ed43b76214fa5a94534ceb0", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.28228059970709, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694515167, + "amount": 9.67147149041e-7, + "raw_amount": 967147149041, + "raw_amount_hex_str": "0xe12e7656f1" + }, + { + "id": "0x18f150c43598cd822d39711c55bd90407a8b8ad7", + "chain": "base", + "name": "90BPT-50STABAL3-50WETH-10ONE", + "symbol": "90BPT-50STABAL3-50WETH-10ONE", + "display_symbol": null, + "optimized_symbol": "90BPT-50STABAL3-50WETH-10ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 20.808735264061454, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693173391, + "amount": 0.004275312595321334, + "raw_amount": 4275312595321334, + "raw_amount_hex_str": "0xf305fc88c41f6" + }, + { + "id": "0x2423d6e341270bcd5add138bc3d4058857d5455f", + "chain": "base", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 47.55589440938863, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691065435, + "amount": 0.03034810447663124, + "raw_amount": 30348104476631240, + "raw_amount_hex_str": "0x6bd170b2efa0c7" + }, + { + "id": "0x26987d07edb3bbff6c20642aa63c2fddf29aecab", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.30767349952728, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697042071, + "amount": 1.6e-17, + "raw_amount": 16, + "raw_amount_hex_str": "0x10" + }, + { + "id": "0x2db50a0e0310723ef0c2a165cb9a9f80d772ba2f", + "chain": "base", + "name": "Balancer 50 STABAL3 50 WETH", + "symbol": "BPT-50STABAL3-50WETH", + "display_symbol": null, + "optimized_symbol": "BPT-50STABAL3-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 46.163935923925045, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691004073, + "amount": 0.9932558909860915, + "raw_amount": 993255890986091400, + "raw_amount_hex_str": "0xdc8c0f8694a439d" + }, + { + "id": "0x2e756db1c5370874bef3e012d3606e6e0e685f5a", + "chain": "base", + "name": "axlUSD-(USDbC-DAI) Stableswap", + "symbol": "axlUSD-USDbC-DAI", + "display_symbol": null, + "optimized_symbol": "axlUSD-USDbC-DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0414146291537834, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691339439, + "amount": 0.000054744309356949, + "raw_amount": 54744309356949, + "raw_amount_hex_str": "0x31ca271cd995" + }, + { + "id": "0x2f5506155e08ca0766d963d5cb51137b8f8efb51", + "chain": "base", + "name": "33BALD-33WETH-33GOLD", + "symbol": "33BALD-33WETH-33GOLD", + "display_symbol": null, + "optimized_symbol": "33BALD-33WETH-33GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 5.30202048882286, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696477501, + "amount": 0.000915756918586558, + "raw_amount": 915756918586558, + "raw_amount_hex_str": "0x340e045d53cbe" + }, + { + "id": "0x31b974f089a43e183859c895d503bdce491f22cc", + "chain": "base", + "name": "50BAL-50USDbC", + "symbol": "50BAL-50USDbC", + "display_symbol": null, + "optimized_symbol": "50BAL-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.5821911611317256, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693828761, + "amount": 1.9912674424e-7, + "raw_amount": 199126744240, + "raw_amount_hex_str": "0x2e5ce0fcb0" + }, + { + "id": "0x3f3e72417d016687f02eb369025f33b60db585cd", + "chain": "base", + "name": "50WETH-50OGRE", + "symbol": "50WETH-50OGRE", + "display_symbol": null, + "optimized_symbol": "50WETH-50OGRE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2503.8585389116056, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692034807, + "amount": 0.000016212118593652, + "raw_amount": 16212118593652, + "raw_amount_hex_str": "0xebead91e074" + }, + { + "id": "0x4200000000000000000000000000000000000006", + "chain": "base", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/eth/d61441782d4a08a7479d54aea211679e.png", + "protocol_id": "base_nether", + "price": 2005.42, + "price_24h_change": 0.060541318074608406, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": null, + "amount": 7.014146518e-9, + "raw_amount": 7014146518, + "raw_amount_hex_str": "0x1a21361d6" + }, + { + "id": "0x433f09ca08623e48bac7128b7105de678e37d988", + "chain": "base", + "name": "Balancer 50GOLD/25WETH/25USDC", + "symbol": "50GOLD/25WETH/25USDC", + "display_symbol": null, + "optimized_symbol": "50GOLD/25WETH/25USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 22.322353594197224, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694033265, + "amount": 83.90040819036894, + "raw_amount": 83900408190368940000, + "raw_amount_hex_str": "0x48c5a20b9c936e554" + }, + { + "id": "0x4c1050754761c613799302f05201cc8a60c8cce0", + "chain": "base", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.54082742575445, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691715283, + "amount": 1.2e-17, + "raw_amount": 12, + "raw_amount_hex_str": "0xc" + }, + { + "id": "0x4e4b7d0ad9c88c878a29735dbc5beccbd1966a79", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.4690140605631, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691228009, + "amount": 0.000002795480843536, + "raw_amount": 2795480843536, + "raw_amount_hex_str": "0x28adfa48510" + }, + { + "id": "0x52e281318fed4efffb8e46c0847a8f9b71a461a8", + "chain": "base", + "name": " 50tBTC-50WETH", + "symbol": " 50tBTC-50WETH", + "display_symbol": null, + "optimized_symbol": " 50tBTC-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 8905.259143716215, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691576417, + "amount": 0.000553609705251311, + "raw_amount": 553609705251311, + "raw_amount_hex_str": "0x1f7814dd361ef" + }, + { + "id": "0x58f2110b61f97fd6b9200b038d92f17c722a5a33", + "chain": "base", + "name": "Balancer axlBAL/BAL Stable", + "symbol": "axlBAL/BAL", + "display_symbol": null, + "optimized_symbol": "axlBAL/BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2.9630454593009556, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694722607, + "amount": 1.2262999113384636, + "raw_amount": 1226299911338463500, + "raw_amount_hex_str": "0x1104b145ab6c1137" + }, + { + "id": "0x5c2142dc10f0c467eb6cde0a8157b7aa393d4276", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.30909656848657, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698213099, + "amount": 3e-18, + "raw_amount": 3, + "raw_amount_hex_str": "0x3" + }, + { + "id": "0x65e8e75899f683c8e2e73c77d6c5c63075f296cd", + "chain": "base", + "name": "50WETH-50SUS", + "symbol": "50WETH-50SUS", + "display_symbol": null, + "optimized_symbol": "50WETH-50SUS", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.21050234109571614, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692545799, + "amount": 12.913116669340578, + "raw_amount": 12913116669340578000, + "raw_amount_hex_str": "0xb3349b31b3387082" + }, + { + "id": "0x668c6196e539391e0020a3dee3ac99b74984bcce", + "chain": "base", + "name": "50BAL-50WETH", + "symbol": "50BAL-50WETH", + "display_symbol": null, + "optimized_symbol": "50BAL-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 91.4243426870821, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695891635, + "amount": 0.000019036178358475, + "raw_amount": 19036178358475, + "raw_amount_hex_str": "0x115034a620cb" + }, + { + "id": "0x6b1baa0a046c9ebb7da8668b66e9282a896e1edb", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.424893480279394, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698437601, + "amount": 0.21615312666323083, + "raw_amount": 216153126663230850, + "raw_amount_hex_str": "0x2ffee1f9bda157b" + }, + { + "id": "0x6db9ad76db82f980375249926658deae729c06c9", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 508259.37273533, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697041429, + "amount": 1.43e-16, + "raw_amount": 143, + "raw_amount_hex_str": "0x8f" + }, + { + "id": "0x6fbfcf88db1aada31f34215b2a1df7fafb4883e9", + "chain": "base", + "name": "Balancer DAI-USDbC Stable Pool", + "symbol": "BPT-stabal3", + "display_symbol": null, + "optimized_symbol": "BPT-stabal3", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0059216693445938, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691003665, + "amount": 44.51677434945733, + "raw_amount": 44516774349457334000, + "raw_amount_hex_str": "0x269cb5a692da01583" + }, + { + "id": "0x78380eff80f1381b29702c0f87da10bd7d7cec97", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.29490473524901, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696939573, + "amount": 0.000057115831262269, + "raw_amount": 57115831262269, + "raw_amount_hex_str": "0x33f250d55c3d" + }, + { + "id": "0x7bd499100daee002c8df900d831a3dc0c2c91040", + "chain": "base", + "name": "85BPT-stabal3-15ONE", + "symbol": "85BPT-stabal3-15ONE", + "display_symbol": null, + "optimized_symbol": "85BPT-stabal3-15ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.710586834230255, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693090007, + "amount": 0.016822103739641166, + "raw_amount": 16822103739641164, + "raw_amount_hex_str": "0x3bc39d3dc6ad4c" + }, + { + "id": "0x868f0efc81a6c1df16298dcc82f7926b9099946b", + "chain": "base", + "name": "50BALD/50WETH", + "symbol": "50BALD/50WETH", + "display_symbol": null, + "optimized_symbol": "50BALD/50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.696506828977802, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690926435, + "amount": 0.8989946763155193, + "raw_amount": 898994676315519400, + "raw_amount_hex_str": "0xc79dee520c0f95d" + }, + { + "id": "0x8c2062ec8d477366c749982e3703371a7ae1e665", + "chain": "base", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1045.8643052102325, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691723213, + "amount": 0.000013817634899761, + "raw_amount": 13817634899761, + "raw_amount_hex_str": "0xc912b384731" + }, + { + "id": "0x942856f463e5960cdce798a8380f20380569b5de", + "chain": "base", + "name": "50WETH-50axlUSDC", + "symbol": "50WETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501853.9296757572, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692627053, + "amount": 6e-18, + "raw_amount": 6, + "raw_amount_hex_str": "0x6" + }, + { + "id": "0x9544eb53f98098c6a885a7a4cd014d7a4a03aa63", + "chain": "base", + "name": "80GOLD-20WETH", + "symbol": "80GOLD-20WETH", + "display_symbol": null, + "optimized_symbol": "80GOLD-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 28.118325343199324, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696184983, + "amount": 0.05348919387134664, + "raw_amount": 53489193871346640, + "raw_amount_hex_str": "0xbe082370060bce" + }, + { + "id": "0x990a0f03c3ee397cafda61cad277de18280751fd", + "chain": "base", + "name": "50WETH-50TAG", + "symbol": "50WETH-50TAG", + "display_symbol": null, + "optimized_symbol": "50WETH-50TAG", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 7.716557765443493, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699425967, + "amount": 922.481893205905, + "raw_amount": 922481893205904900000, + "raw_amount_hex_str": "0x3202020a5a2bcac492" + }, + { + "id": "0xa0aa5caffc32a2fe3bdbebaf37e2c75d0dc6d1ab", + "chain": "base", + "name": "50BAL-50DAI", + "symbol": "50BAL-50DAI", + "display_symbol": null, + "optimized_symbol": "50BAL-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.9974300095616253, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694340063, + "amount": 0.003807170695221056, + "raw_amount": 3807170695221056, + "raw_amount_hex_str": "0xd869a00e34f40" + }, + { + "id": "0xa30ad556d10c829a67f41f60d41afdd4efa9286c", + "chain": "base", + "name": "SIS-FOOB-ICE-SOLAR-WETH Index", + "symbol": "Friend Tech Index", + "display_symbol": null, + "optimized_symbol": "Friend Tech Index", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 40.272781159721134, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692492397, + "amount": 2.2490899336915793, + "raw_amount": 2249089933691579100, + "raw_amount_hex_str": "0x1f365f60e597eb33" + }, + { + "id": "0xa892be6ee527f4fb8b3b60486a53c0627cb1d27e", + "chain": "base", + "name": "50WETH-50LINU", + "symbol": "50WETH-50LINU", + "display_symbol": null, + "optimized_symbol": "50WETH-50LINU", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.011903999521629096, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691423711, + "amount": 141.33453079841297, + "raw_amount": 141334530798412990000, + "raw_amount_hex_str": "0x7a9691ef04fe96a37" + }, + { + "id": "0xb1b1155337d19eb0ef9c75aa88aeb4e531440508", + "chain": "base", + "name": "50WETH-50Gekko", + "symbol": "50WETH-50Gekko", + "display_symbol": null, + "optimized_symbol": "50WETH-50Gekko", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 23.928127599684583, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693789333, + "amount": 0.04278591155799549, + "raw_amount": 42785911557995490, + "raw_amount_hex_str": "0x98018f53ce3be2" + }, + { + "id": "0xb301f96097f1ab4f189f04a4662c751c822ef38f", + "chain": "base", + "name": "50DAI-50USDbC", + "symbol": "50DAI-50USDbC", + "display_symbol": null, + "optimized_symbol": "50DAI-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.9999750833354478, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697046577, + "amount": 8.0028e-14, + "raw_amount": 80028, + "raw_amount_hex_str": "0x1389c" + }, + { + "id": "0xb328b50f1f7d97ee8ea391ab5096dd7657555f49", + "chain": "base", + "name": "Balancer GOLD/BAL/USDC", + "symbol": "GOLD/BAL/USDC", + "display_symbol": null, + "optimized_symbol": "GOLD/BAL/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.66908327476639, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694033753, + "amount": 111.14909372742366, + "raw_amount": 111149093727423660000, + "raw_amount_hex_str": "0x60680e7da19af8374" + }, + { + "id": "0xc561540c16d49d0bfc69c99f9fc66145b1d5ddbd", + "chain": "base", + "name": "axlUSD-(USDbC-DAI) Stableswap", + "symbol": "axlUSD-USDbC-DAI", + "display_symbol": null, + "optimized_symbol": "axlUSD-USDbC-DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500097.4265349738, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691342703, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0xc69793563a8f0a2c5b25bcfb8661de50da8eae10", + "chain": "base", + "name": "Balancer STG/USDbC Pool", + "symbol": "STG-USDbC-BPT", + "display_symbol": null, + "optimized_symbol": "STG-USDbC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.7765131370415246, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691688123, + "amount": 2.836888676202685, + "raw_amount": 2836888676202685000, + "raw_amount_hex_str": "0x275ea7387463a1d6" + }, + { + "id": "0xc771c1a5905420daec317b154eb13e4198ba97d0", + "chain": "base", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2049.9465037888144, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692107167, + "amount": 0.8149368855692628, + "raw_amount": 814936885569262800, + "raw_amount_hex_str": "0xb4f3cc79ab81509" + }, + { + "id": "0xc8dd61ff747c4bf93995a8086a8562f136059dc3", + "chain": "base", + "name": "1cbETH-99ONE", + "symbol": "1cbETH-99ONE", + "display_symbol": null, + "optimized_symbol": "1cbETH-99ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.01954820242501277, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692585869, + "amount": 0.17388767502543423, + "raw_amount": 173887675025434240, + "raw_amount_hex_str": "0x269c5eb4cb5a679" + }, + { + "id": "0xca0759728498476b83a2e551d7d3fa3a71a8e138", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501624.892039205, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697726771, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0xcc4ccab360dc7267117f20ecd929a7437eadc004", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.38412163034088, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697402059, + "amount": 2.09653810626e-7, + "raw_amount": 209653810626, + "raw_amount_hex_str": "0x30d05745c2" + }, + { + "id": "0xcd75320d7e9c2ec452a9dc1d3c3d8f5392e8f9a2", + "chain": "base", + "name": "SIS-FOOB-SOLAR-WETH Index", + "symbol": "Friend Tech Index", + "display_symbol": null, + "optimized_symbol": "Friend Tech Index", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 59.51866217363751, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692489629, + "amount": 0.017509630731620925, + "raw_amount": 17509630731620926, + "raw_amount_hex_str": "0x3e34ea97e8123e" + }, + { + "id": "0xcde67b70e8144d7d2772de59845b3a67266c2ca7", + "chain": "base", + "name": "50DAI-50BAL", + "symbol": "50DAI-50BAL", + "display_symbol": null, + "optimized_symbol": "50DAI-50BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.2153088486065178, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690525003, + "amount": 0.2657347200823842, + "raw_amount": 265734720082384200, + "raw_amount_hex_str": "0x3b01451eaff9540" + }, + { + "id": "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "chain": "base", + "name": "USD Base Coin", + "symbol": "USDbC", + "display_symbol": null, + "optimized_symbol": "USDbC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/base_token/logo_url/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca/e0cec5bf6ef983918de294d852ea9586.png", + "protocol_id": "base_fxdx", + "price": 1, + "price_24h_change": 0, + "is_verified": false, + "is_core": true, + "is_wallet": true, + "time_at": 1690914161, + "amount": 0.000567, + "raw_amount": 567, + "raw_amount_hex_str": "0x237" + }, + { + "id": "0xdd6253dc8052fdecd9f425fd6173a244fd343e5d", + "chain": "base", + "name": "50cbETH-50axlUSDC", + "symbol": "50cbETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50cbETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 46.52203372301169, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697923953, + "amount": 0.000013332783823163, + "raw_amount": 13332783823163, + "raw_amount_hex_str": "0xc2047d7f93b" + }, + { + "id": "0xdede69b3859a9b16a4e11828f9619576ede8a7b1", + "chain": "base", + "name": "50USDbC-50STG", + "symbol": "50USDbC-50STG", + "display_symbol": null, + "optimized_symbol": "50USDbC-50STG", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500298.13228046056, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699100429, + "amount": 2e-18, + "raw_amount": 2, + "raw_amount_hex_str": "0x2" + }, + { + "id": "0xe40cbccba664c7b1a953827c062f5070b78de868", + "chain": "base", + "name": "50WETH-50GOLD", + "symbol": "50WETH-50GOLD", + "display_symbol": null, + "optimized_symbol": "50WETH-50GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 164.72474004809084, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691590801, + "amount": 0.7249351463914372, + "raw_amount": 724935146391437200, + "raw_amount_hex_str": "0xa0f7cacbddb7fa0" + }, + { + "id": "0xe58ca65f418d4121d6c70d4c133e60cf6fda363c", + "chain": "base", + "name": "Balancer USDbC/axlUSD Stable Pool", + "symbol": "BPT-USDbC-axlUSD", + "display_symbol": null, + "optimized_symbol": "BPT-USDbC-axlUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0037261759875478, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691344327, + "amount": 30.181603162018128, + "raw_amount": 30181603162018128000, + "raw_amount_hex_str": "0x1a2da982ab7e59bf7" + }, + { + "id": "0xe94dfd524414220b3f5d321a20b6f9dbc1d53a1f", + "chain": "base", + "name": "80SIS-20WETH", + "symbol": "80SIS-20WETH", + "display_symbol": null, + "optimized_symbol": "80SIS-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 30.06537793129719, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692552269, + "amount": 0.000019067113433094, + "raw_amount": 19067113433094, + "raw_amount_hex_str": "0x11576885e806" + }, + { + "id": "0xee94d8df3ecf9158d1cd3d752c7b61fc4fd46b12", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.23725479566832, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699445633, + "amount": 1.9e-17, + "raw_amount": 19, + "raw_amount_hex_str": "0x13" + }, + { + "id": "0xf912fe5769800bb19c66706cb7f61c97c7122f22", + "chain": "base", + "name": "50WETH-50axlUSDC", + "symbol": "50WETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.30926657454446, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697738707, + "amount": 0.06753290112947413, + "raw_amount": 67532901129474136, + "raw_amount_hex_str": "0xefecd0d679505b" + }, + { + "id": "0xfa4ac3ecfece20769f8b5d9b6dfa5b7ed6569de2", + "chain": "base", + "name": "Balancer MZ-WETH Pool", + "symbol": "MZ-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "MZ-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 51.908013951800484, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692624143, + "amount": 0.12320218633352456, + "raw_amount": 123202186333524560, + "raw_amount_hex_str": "0x1b5b3bc57f6124d" + }, + { + "id": "0xfab10dd71e11d0ad403cc31418b45d816f2f9882", + "chain": "base", + "name": "20WETH-80WELL", + "symbol": "20WETH-80WELL", + "display_symbol": null, + "optimized_symbol": "20WETH-80WELL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.05624531117891396, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691704783, + "amount": 14.269979235295114, + "raw_amount": 14269979235295113000, + "raw_amount_hex_str": "0xc609268247f730bc" + }, + { + "id": "0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6", + "chain": "base", + "name": "Balancer cbETH/WETH StablePool", + "symbol": "cbETH/WETH", + "display_symbol": null, + "optimized_symbol": "cbETH/WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2043.101044094025, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692241741, + "amount": 1.05527503152602, + "raw_amount": 1055275031526020100, + "raw_amount_hex_str": "0xea5170cd27293e1" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-10-26-eth.json b/FeeSweep/2023-10-26-eth.json new file mode 100644 index 000000000..35d9d1a4d --- /dev/null +++ b/FeeSweep/2023-10-26-eth.json @@ -0,0 +1,7702 @@ +[ + { + "id": "0x000b87c8a4c6cbcef7a2577e8aa0dc134c67c3d8", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7631342522783412, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647839442, + "amount": 92.5310479410539, + "raw_amount": 92531047941053890000, + "raw_amount_hex_str": "0x5042051da1528515d" + }, + { + "id": "0x00c2a4be503869fa751c2dbcb7156cc970b5a8da", + "chain": "eth", + "name": "bb-euler-FRAX-bb-euler-USDC", + "symbol": "bb-euler-FRAX-bb-euler-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "bb-euler-FRAX-bb-euler-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0070016409846758, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675964063, + "amount": 0.00017805188028749, + "raw_amount": 178051880287490, + "raw_amount_hex_str": "0xa1efef137d02" + }, + { + "id": "0x01536b22ea06e4a315e3daaf05a12683ed4dc14c", + "chain": "eth", + "name": "wUSK/paUSD/USDC", + "symbol": "e-cs-kp-usd", + "display_symbol": null, + "optimized_symbol": "e-cs-kp-usd", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6689295310200294, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696582043, + "amount": 0.01655639630173778, + "raw_amount": 16556396301737780, + "raw_amount_hex_str": "0x3ad1f468535f34" + }, + { + "id": "0x02d928e68d8f10c0358566152677db51e1e2dc8c", + "chain": "eth", + "name": "Balancer Boosted swETH-WETH", + "symbol": "swETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1814.164503422878, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681569515, + "amount": 0.009605473708968673, + "raw_amount": 9605473708968672, + "raw_amount_hex_str": "0x222020a0528ae1" + }, + { + "id": "0x034e2d995b39a88ab9a532a9bf0deddac2c576ea", + "chain": "eth", + "name": "80SD-20ETHx", + "symbol": "80SD-20ETHx", + "display_symbol": null, + "optimized_symbol": "80SD-20ETHx", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.5046753445862873, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692575471, + "amount": 17.90474729945515, + "raw_amount": 17904747299455148000, + "raw_amount_hex_str": "0xf87a70ce31289e14" + }, + { + "id": "0x038a68ff68c393373ec894015816e33ad41bd564", + "chain": "eth", + "name": "Glitch", + "symbol": "GLCH", + "display_symbol": null, + "optimized_symbol": "GLCH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x038a68ff68c393373ec894015816e33ad41bd564/f4ba4174614971f177c220d931b0bf68.png", + "protocol_id": "", + "price": 0.0054860206082298635, + "price_24h_change": -0.1016542594164032, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608173369, + "amount": 76.08624061003349, + "raw_amount": 76086240610033480000, + "raw_amount_hex_str": "0x41fe8a0b66ff249d4" + }, + { + "id": "0x0391d2021f89dc339f60fff84546ea23e337750f", + "chain": "eth", + "name": "BarnBridge Governance Token", + "symbol": "BOND", + "display_symbol": null, + "optimized_symbol": "BOND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0391d2021f89dc339f60fff84546ea23e337750f/160c85e7f4ed44ee16fd35d53008ea3c.png", + "protocol_id": "barnbridge", + "price": 4.451299925332644, + "price_24h_change": 0.13940783961536837, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599494104, + "amount": 0.000740309873162143, + "raw_amount": 740309873162143, + "raw_amount_hex_str": "0x2a14ed303779f" + }, + { + "id": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "chain": "eth", + "name": "Rai Reflex Index", + "symbol": "RAI", + "display_symbol": null, + "optimized_symbol": "RAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x03ab458634910aad20ef5f1c8ee96f1d6ac54919/89f0c429b594592724ea3cbf3d08a8ea.png", + "protocol_id": "reflexer", + "price": 2.7223736504699327, + "price_24h_change": -0.012329922927344262, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613221351, + "amount": 0.239279960732774, + "raw_amount": 239279960732773980, + "raw_amount_hex_str": "0x35217db4558ae6c" + }, + { + "id": "0x04248aabca09e9a1a3d5129a7ba05b7f17de7684", + "chain": "eth", + "name": "Balancer qETH-Boosted Aave WETH StablePool", + "symbol": "qETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1795.8566613412536, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681144535, + "amount": 0.6363358808900635, + "raw_amount": 636335880890063500, + "raw_amount_hex_str": "0x8d4b81cba499a9f" + }, + { + "id": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", + "chain": "eth", + "name": "UMA Voting Token v1", + "symbol": "UMA", + "display_symbol": null, + "optimized_symbol": "UMA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x04fa0d235c4abf4bcf4787af4cf447de572ef828/cabffedd327aaea32dd7bcf155f9cbd6.png", + "protocol_id": "uma", + "price": 1.4726824411960557, + "price_24h_change": -0.0005212634977650864, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1578581061, + "amount": 0.001970754429405869, + "raw_amount": 1970754429405869, + "raw_amount_hex_str": "0x7006405b44aad" + }, + { + "id": "0x057acee6df29ecc20e87a77783838d90858c5e83", + "chain": "eth", + "name": "Wrapped Pirate Chain", + "symbol": "wARRR", + "display_symbol": null, + "optimized_symbol": "wARRR", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x057acee6df29ecc20e87a77783838d90858c5e83/95b10f25dc71d21b17555a57a8fe8bc5.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.012909528810034968, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1669853195, + "amount": 165.6457043, + "raw_amount": 16564570430, + "raw_amount_hex_str": "0x3db53493e" + }, + { + "id": "0x05b1a35fdbc43849aa836b00c8861696edce8cc4", + "chain": "eth", + "name": "50mevETH-50WETH", + "symbol": "50mevETH-50WETH", + "display_symbol": null, + "optimized_symbol": "50mevETH-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1780.672144558551, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697099279, + "amount": 0.001230702004713562, + "raw_amount": 1230702004713562, + "raw_amount_hex_str": "0x45f5123d0b85a" + }, + { + "id": "0x06325440d014e39736583c165c2963ba99faf14e", + "chain": "eth", + "name": "Curve.fi ETH/stETH", + "symbol": "steCRV", + "display_symbol": null, + "optimized_symbol": "steCRV", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1925.2884865883498, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1609806378, + "amount": 0.381234451560607, + "raw_amount": 381234451560607000, + "raw_amount_hex_str": "0x54a6ab6bd692cff" + }, + { + "id": "0x064bcc35bfe023fe717a87574fae9333f98aae4d", + "chain": "eth", + "name": "80RATE-20WETH", + "symbol": "80RATE-20WETH", + "display_symbol": null, + "optimized_symbol": "80RATE-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.709781331258883, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689642755, + "amount": 0.5557521600242683, + "raw_amount": 555752160024268300, + "raw_amount_hex_str": "0x7b66da521670df6" + }, + { + "id": "0x065f5b35d4077334379847fe26f58b1029e51161", + "chain": "eth", + "name": "80SGT-10DAI-10WETH", + "symbol": "80SGT-10DAI-10WETH", + "display_symbol": null, + "optimized_symbol": "80SGT-10DAI-10WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.1434804714479425, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677356255, + "amount": 96.90836763695476, + "raw_amount": 96908367636954780000, + "raw_amount_hex_str": "0x540dfaeec5ba66e11" + }, + { + "id": "0x06c55dad9a50adbc824ea50ef7acf54a290e5493", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.7498401923830735, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647501192, + "amount": 11.574551385596456, + "raw_amount": 11574551385596455000, + "raw_amount_hex_str": "0xa0a111291cfb67d9" + }, + { + "id": "0x06c985ff69f7257e212a89828f79497a3c8b6edf", + "chain": "eth", + "name": "Coin", + "symbol": "COIN", + "display_symbol": null, + "optimized_symbol": "COIN", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0.00843644514402416, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653961493, + "amount": 95053, + "raw_amount": 95053, + "raw_amount_hex_str": "0x1734d" + }, + { + "id": "0x0740a6cfb9468b8b53070c0b327099293dccb82d", + "chain": "eth", + "name": "Element Principal Token yvCurveLUSD-29APR22", + "symbol": "ePyvCurveLUSD-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurveLUSD-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0245927061352782, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639513942, + "amount": 768.3981828286567, + "raw_amount": 768398182828656700000, + "raw_amount_hex_str": "0x29a7aabc2275bd2ae1" + }, + { + "id": "0x08209ed93725328828cb199afbe0e068c8e5e215", + "chain": "eth", + "name": "34WBTC-12MATIC-12AAVE-42stETH", + "symbol": "34WBTC-12MATIC-12AAVE-42stETH", + "display_symbol": null, + "optimized_symbol": "34WBTC-12MATIC-12AAVE-42stETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1125.884335838301, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677749567, + "amount": 0.006092840005170265, + "raw_amount": 6092840005170265, + "raw_amount_hex_str": "0x15a567dc2e7459" + }, + { + "id": "0x08775ccb6674d6bdceb0797c364c2653ed84f384", + "chain": "eth", + "name": "Balancer 50WETH-50-3pool", + "symbol": "50WETH-50-3pool", + "display_symbol": null, + "optimized_symbol": "50WETH-50-3pool", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 42.42393949434954, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680364331, + "amount": 44.64553500676914, + "raw_amount": 44645535006769136000, + "raw_amount_hex_str": "0x26b94cd8be5bdc1d5" + }, + { + "id": "0x08cc92fedc1ce2d8525176a63fcff404450f2998", + "chain": "eth", + "name": "50B-baoUSD-LUSD-BPT-50BAO", + "symbol": "50B-baoUSD-LUSD-BPT-50BAO", + "display_symbol": null, + "optimized_symbol": "50B-baoUSD-LUSD-BPT-50BAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.014987495112266718, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683789479, + "amount": 2752.184474597589, + "raw_amount": 2.7521844745975895e+21, + "raw_amount_hex_str": "0x95323b6df2be641882" + }, + { + "id": "0x09459654777bb2669ad8ad0b54e876d4b5ff77f4", + "chain": "eth", + "name": "Element Principal Token yvDAI-24FEB23", + "symbol": "ePyvDAI-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-24FEB23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999497542022594, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661282295, + "amount": 29.121950985069077, + "raw_amount": 29121950985069076000, + "raw_amount_hex_str": "0x19425f4204f611fd9" + }, + { + "id": "0x097f9f108ee0db2cb266aa16ccfb4831ec4d770b", + "chain": "eth", + "name": "Element Principal Token yvCurve-3Crypto-16SEP22", + "symbol": "ePyvCurve-3Crypto-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-3Crypto-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1219.323614821865, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650481210, + "amount": 0.018352290212467388, + "raw_amount": 18352290212467388, + "raw_amount_hex_str": "0x41334f8aedd2bb" + }, + { + "id": "0x0a2a6c2996007da3fc8b30ca26179e1292c2ef0a", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698113855, + "amount": 944.3734569185284, + "raw_amount": 944373456918528400000, + "raw_amount_hex_str": "0x3331d07f8ff88c311c" + }, + { + "id": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "chain": "eth", + "name": "yearn.finance", + "symbol": "YFI", + "display_symbol": null, + "optimized_symbol": "YFI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/yearn/f14ac7f4efe5c51e1c6b32add3dea10c.png", + "protocol_id": "iearn", + "price": 5623.188939194635, + "price_24h_change": -0.027800977984261874, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594972885, + "amount": 0.2352636733830818, + "raw_amount": 235263673383081800, + "raw_amount_hex_str": "0x343d310808d5742" + }, + { + "id": "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", + "chain": "eth", + "name": "Decentralized USD", + "symbol": "USDD", + "display_symbol": null, + "optimized_symbol": "USDD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6/70890e6172f62f4430bfeaff32680884.png", + "protocol_id": "", + "price": 0.99783, + "price_24h_change": -0.0007710795113158906, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651325080, + "amount": 41.741035429420634, + "raw_amount": 41741035429420640000, + "raw_amount_hex_str": "0x24345f291cf9c98de" + }, + { + "id": "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e", + "chain": "eth", + "name": "PoolTogether", + "symbol": "POOL", + "display_symbol": null, + "optimized_symbol": "POOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0cec1a9154ff802e7934fc916ed7ca50bde6844e/2484f4a3952ba986b8a7016cb697dccc.png", + "protocol_id": "pooltogether", + "price": 0.581738846381052, + "price_24h_change": -0.02002055294442312, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613508749, + "amount": 0.021435254557757296, + "raw_amount": 21435254557757296, + "raw_amount_hex_str": "0x4c27401d95cf6f" + }, + { + "id": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd", + "chain": "eth", + "name": "Hakka Finance", + "symbol": "HAKKA", + "display_symbol": null, + "optimized_symbol": "HAKKA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd/5f9fa1ec47440398385fe2a9a1f17d6d.png", + "protocol_id": "hakka", + "price": 0.0016486693087602183, + "price_24h_change": -0.012198690287471012, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1586881841, + "amount": 0.27487339898896684, + "raw_amount": 274873398988966850, + "raw_amount_hex_str": "0x3d08be668f10bc7" + }, + { + "id": "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da", + "chain": "eth", + "name": "BlackPool Token", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da/8b4ad02c904251c1e2858a65c5c49e74.png", + "protocol_id": "blackpool", + "price": 0.19860171362822557, + "price_24h_change": -0.013254778241651525, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1622152335, + "amount": 0.16840921670672093, + "raw_amount": 168409216706720930, + "raw_amount_hex_str": "0x2564f4a52b4b4ac" + }, + { + "id": "0x0f2d719407fdbeff09d87557abb7232601fd9f29", + "chain": "eth", + "name": "Synapse", + "symbol": "SYN", + "display_symbol": null, + "optimized_symbol": "SYN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f2d719407fdbeff09d87557abb7232601fd9f29/4497316d0335d94bcec6c0c397238971.png", + "protocol_id": "synapse", + "price": 0.35148590495478144, + "price_24h_change": -0.05907392530339929, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628972639, + "amount": 14099.308062389437, + "raw_amount": 1.4099308062389437e+22, + "raw_amount_hex_str": "0x2fc53349d68537741a1" + }, + { + "id": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942", + "chain": "eth", + "name": "Decentraland MANA", + "symbol": "MANA", + "display_symbol": null, + "optimized_symbol": "MANA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f5d2fb29fb7d3cfee444a200298f468908cc942/c83dcbf8bae0f6cd1e31c6e176ce5155.png", + "protocol_id": "decentraland", + "price": 0.33930204511644857, + "price_24h_change": -0.04007577442805742, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1502824689, + "amount": 2117.2857453628917, + "raw_amount": 2.1172857453628917e+21, + "raw_amount_hex_str": "0x72c73e078c01537f9d" + }, + { + "id": "0x0fadd10f606554fec1574f28398469d98d68d297", + "chain": "eth", + "name": "Balancer 80XEX 20USDC Pool Token", + "symbol": "B-80XEX-20USDC", + "display_symbol": null, + "optimized_symbol": "B-80XEX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 8.272606179357764e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680691199, + "amount": 16338254.338725785, + "raw_amount": 1.6338254338725784e+25, + "raw_amount_hex_str": "0xd83c28adce9a8be8cc2cb" + }, + { + "id": "0x0fd5663d4893ae0d579d580584806aadd2dd0b8b", + "chain": "eth", + "name": "Balancer 50rETH-50RPL", + "symbol": "50rETH-50RPL", + "display_symbol": null, + "optimized_symbol": "50rETH-50RPL", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 220.05252965911447, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662739812, + "amount": 3.93938246879e-7, + "raw_amount": 393938246879, + "raw_amount_hex_str": "0x5bb88c9cdf" + }, + { + "id": "0x10010078a54396f62c96df8532dc2b4847d47ed3", + "chain": "eth", + "name": "Hundred Finance", + "symbol": "HND", + "display_symbol": null, + "optimized_symbol": "HND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x10010078a54396f62c96df8532dc2b4847d47ed3/cae168ae659748f245f0d57b76521952.png", + "protocol_id": "hundred", + "price": 0.007741518242332577, + "price_24h_change": -0.044374096574356106, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1631627706, + "amount": 2755.380409112071, + "raw_amount": 2.755380409112071e+21, + "raw_amount_hex_str": "0x955e95ab74d37f0ce1" + }, + { + "id": "0x10f8ea49255e8a865ca4eda1630168c85cc8ee81", + "chain": "eth", + "name": "ELFI/WETH 50/50 Weighted Pool", + "symbol": "50ELFI-50WETH", + "display_symbol": null, + "optimized_symbol": "50ELFI-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 13.99054411573106, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692639599, + "amount": 1.9921761686e-8, + "raw_amount": 19921761686, + "raw_amount_hex_str": "0x4a36df596" + }, + { + "id": "0x114f1388fab456c4ba31b1850b244eedcd024136", + "chain": "eth", + "name": "Cool Cats", + "symbol": "COOL", + "display_symbol": null, + "optimized_symbol": "COOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x114f1388fab456c4ba31b1850b244eedcd024136/8915648a58d5afd9e481419f29a2b0f8.png", + "protocol_id": "nftx", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1625256758, + "amount": 0.11419228390229055, + "raw_amount": 114192283902290560, + "raw_amount_hex_str": "0x195b146f6162a78" + }, + { + "id": "0x11839d635e2f0270da37e8ef4324d4d5d5432957", + "chain": "eth", + "name": "10bb-a-USD-90callFLAIX260323", + "symbol": "10bb-a-USD-90callFLAIX260323", + "display_symbol": null, + "optimized_symbol": "10bb-a-USD-90callFLAIX260323", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00003627157382933253, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679059403, + "amount": 0.24244401680865096, + "raw_amount": 242444016808650980, + "raw_amount_hex_str": "0x35d558c7bcc68d6" + }, + { + "id": "0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa", + "chain": "eth", + "name": "Starwire", + "symbol": "STR", + "display_symbol": null, + "optimized_symbol": "STR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa/be315e8b8faeb413e73b8f1d2e4c28c2.png", + "protocol_id": "", + "price": 0.0035676798254210594, + "price_24h_change": -0.010513652641002643, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602981353, + "amount": 50018.708750003345, + "raw_amount": 5.001870875000335e+22, + "raw_amount_hex_str": "0xa978506c5a6b84f5273" + }, + { + "id": "0x13c99770694f07279607a6274f28a28c33086424", + "chain": "eth", + "name": "Material", + "symbol": "MTRL", + "display_symbol": null, + "optimized_symbol": "MTRL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x13c99770694f07279607a6274f28a28c33086424/7428f5af9cc4e9770678a2b36c501a73.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.5576737982578098, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638790558, + "amount": 12726.377904856998, + "raw_amount": 1.2726377904856998e+22, + "raw_amount_hex_str": "0x2b1e5f8dd3a3d5c622c" + }, + { + "id": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b", + "chain": "eth", + "name": "DefiPulse Index", + "symbol": "DPI", + "display_symbol": null, + "optimized_symbol": "DPI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b/feb43f922f3e344d42afbb598d0b2e7c.png", + "protocol_id": "tokensets", + "price": 69.54073115653026, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1599694252, + "amount": 0.9190830163663766, + "raw_amount": 919083016366376600, + "raw_amount_hex_str": "0xcc13d22459cc652" + }, + { + "id": "0x150d969723bc8924dc667ba3254bacd967fad266", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697146631, + "amount": 171.80547923704214, + "raw_amount": 171805479237042140000, + "raw_amount_hex_str": "0x95047ad1a05a54a11" + }, + { + "id": "0x158e0fbc2271e1dcebadd365a22e2b4dd173c0db", + "chain": "eth", + "name": "80IDLE-20USDC", + "symbol": "80IDLE-20USDC", + "display_symbol": null, + "optimized_symbol": "80IDLE-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.20982965710838059, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689599735, + "amount": 118.33693461403946, + "raw_amount": 118336934614039480000, + "raw_amount_hex_str": "0x66a413f0e36732097" + }, + { + "id": "0x173063a30e095313eee39411f07e95a8a806014e", + "chain": "eth", + "name": "Balancer 50TEMPLE-50bb-a-USD", + "symbol": "50TEMPLE-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.3668111255295919, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666877015, + "amount": 0.004583886786538531, + "raw_amount": 4583886786538531, + "raw_amount_hex_str": "0x1049054f9a2c23" + }, + { + "id": "0x18aaa7115705e8be94bffebde57af9bfc265b998", + "chain": "eth", + "name": "Audius", + "symbol": "AUDIO", + "display_symbol": null, + "optimized_symbol": "AUDIO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x18aaa7115705e8be94bffebde57af9bfc265b998/8c4d2409af350ab696f37b9fde9d378d.png", + "protocol_id": "", + "price": 0.15530085292678725, + "price_24h_change": -0.019838057706007155, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1603333709, + "amount": 5.5795443874753765, + "raw_amount": 5579544387475376000, + "raw_amount_hex_str": "0x4d6e860f07fe8833" + }, + { + "id": "0x18fdf15ff782e44c1f9b6c5846ff6b0f0004f6a2", + "chain": "eth", + "name": "50OHM-50LUSD", + "symbol": "50OHM-50LUSD", + "display_symbol": null, + "optimized_symbol": "50OHM-50LUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.3829206748233727, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685952995, + "amount": 49.01992115239112, + "raw_amount": 49019921152391120000, + "raw_amount_hex_str": "0x2a849be91c5ee0789" + }, + { + "id": "0x194ebd173f6cdace046c53eacce9b953f28411d1", + "chain": "eth", + "name": "Curve.fi EURS/sEUR", + "symbol": "eursCRV", + "display_symbol": null, + "optimized_symbol": "eursCRV", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0596467395482216, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1608157510, + "amount": 2.248196352882993, + "raw_amount": 2248196352882993000, + "raw_amount_hex_str": "0x1f3332abe6eb672e" + }, + { + "id": "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0", + "chain": "eth", + "name": "baoETH-ETH StablePool", + "symbol": "B-baoETH-ETH-BPT", + "display_symbol": null, + "optimized_symbol": "B-baoETH-ETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1088.9672244467738, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681544303, + "amount": 0.18368879698370255, + "raw_amount": 183688796983702560, + "raw_amount_hex_str": "0x28c97fcd56eb416" + }, + { + "id": "0x1b6e13673f29688e27311b332af1527f1ebf1d28", + "chain": "eth", + "name": "80PSDN-20WETH", + "symbol": "80PSDN-20WETH", + "display_symbol": null, + "optimized_symbol": "80PSDN-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.745750821773124, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684137239, + "amount": 52.85232375291491, + "raw_amount": 52852323752914910000, + "raw_amount_hex_str": "0x2dd792c6dfe6f0e60" + }, + { + "id": "0x1bd2f176a812e312077bca87e37c08432bb09f3e", + "chain": "eth", + "name": "qETH/Boosted Aave v3 WETH", + "symbol": "qETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1788.8025803705484, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689520715, + "amount": 0.007532327892830541, + "raw_amount": 7532327892830541, + "raw_amount_hex_str": "0x1ac29cc062494d" + }, + { + "id": "0x1cf0f3aabe4d12106b27ab44df5473974279c524", + "chain": "eth", + "name": "xSNX", + "symbol": "xSNXa", + "display_symbol": null, + "optimized_symbol": "xSNXa", + "decimals": 18, + "logo_url": null, + "protocol_id": "xtoken", + "price": 0.41224417640768357, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621899341, + "amount": 70.66571045034482, + "raw_amount": 70665710450344820000, + "raw_amount_hex_str": "0x3d4af094069697b9c" + }, + { + "id": "0x1d1b44a4c5a047bdc9b3f06842566e5ea9c1966d", + "chain": "eth", + "name": "Balancer USDC-USDT Fixed Rate Pool", + "symbol": "B-USDC-USDT-FIXED-RATE", + "display_symbol": null, + "optimized_symbol": "B-USDC-USDT-FIXED-RATE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0001771998992306, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667287751, + "amount": 8.639631653279508, + "raw_amount": 8639631653279507000, + "raw_amount_hex_str": "0x77e62336c3f22577" + }, + { + "id": "0x1e5193ccc53f25638aa22a940af899b692e10b09", + "chain": "eth", + "name": "Alluo Token", + "symbol": "ALLUO", + "display_symbol": null, + "optimized_symbol": "ALLUO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e5193ccc53f25638aa22a940af899b692e10b09/0181c06bfff0edd1585037e86b02c978.png", + "protocol_id": "alluo", + "price": 0.013155027863303984, + "price_24h_change": -0.010474485228290148, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639219884, + "amount": 2743.9128871410508, + "raw_amount": 2.743912887141051e+21, + "raw_amount_hex_str": "0x94bf70d8fb32d52e33" + }, + { + "id": "0x1e83916ea2ef2d7a6064775662e163b2d4c330a7", + "chain": "eth", + "name": "EthereumGasLimit", + "symbol": "EGL", + "display_symbol": null, + "optimized_symbol": "EGL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e83916ea2ef2d7a6064775662e163b2d4c330a7/61c37afbb6b52ba182266f62d47b8258.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628861140, + "amount": 216579.38247266778, + "raw_amount": 2.165793824726678e+23, + "raw_amount_hex_str": "0x2ddccab6a824d93715f6" + }, + { + "id": "0x1ee442b5326009bb18f2f472d3e0061513d1a0ff", + "chain": "eth", + "name": "Balancer 50rETH-BADGER", + "symbol": "50rETH-50BADGER", + "display_symbol": null, + "optimized_symbol": "50rETH-50BADGER", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 68.48130288140942, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675901651, + "amount": 13.245743002764902, + "raw_amount": 13245743002764902000, + "raw_amount_hex_str": "0xb7d2551501eafc6e" + }, + { + "id": "0x1f068a896560632a4d2e05044bd7f03834f1a465", + "chain": "eth", + "name": "EthFork2.com", + "symbol": "EthFork2.com", + "display_symbol": null, + "optimized_symbol": "EthFork2.com", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661588028, + "amount": 350, + "raw_amount": 350000000000000000000, + "raw_amount_hex_str": "0x12f939c99edab80000" + }, + { + "id": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "chain": "eth", + "name": "Uniswap", + "symbol": "UNI", + "display_symbol": null, + "optimized_symbol": "UNI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984/fcee0c46fc9864f48ce6a40ed1cdd135.png", + "protocol_id": "uniswap3", + "price": 4.013617432805219, + "price_24h_change": -0.054276485264563135, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600107086, + "amount": 0.21765202497026323, + "raw_amount": 217652024970263230, + "raw_amount_hex_str": "0x305415d10ff3ab7" + }, + { + "id": "0x1fc4db3e7f9124baafb7b34346db7931dad621c2", + "chain": "eth", + "name": "loyaltyclaim.io", + "symbol": "Visit https://loyaltyclaim.io to claim reward", + "display_symbol": null, + "optimized_symbol": "Visit https://loyaltyclaim.io to claim reward", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687675475, + "amount": 587, + "raw_amount": 587000000000000000000, + "raw_amount_hex_str": "0x1fd242edf0d24c0000" + }, + { + "id": "0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9", + "chain": "eth", + "name": "R/DAI Stable Pool", + "symbol": "R-DAI-BLP", + "display_symbol": null, + "optimized_symbol": "R-DAI-BLP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0014160695960697, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684857023, + "amount": 1090.9815835055372, + "raw_amount": 1.0909815835055372e+21, + "raw_amount_hex_str": "0x3b246931ee1cb6bd58" + }, + { + "id": "0x21fb757c2d3a5c574e8721027c3d7a506d77b6b3", + "chain": "eth", + "name": "Element Principal Token yvCurve-stETH-16SEP22", + "symbol": "ePyvCurve-stETH-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-stETH-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1925.2884865883493, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648481776, + "amount": 0.10358715027583056, + "raw_amount": 103587150275830560, + "raw_amount_hex_str": "0x17003f6df7c6318" + }, + { + "id": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "chain": "eth", + "name": "Wrapped BTC", + "symbol": "WBTC", + "display_symbol": null, + "optimized_symbol": "WBTC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599/d3c52e7c7449afa8bd4fad1c93f50d93.png", + "protocol_id": "", + "price": 33890.9, + "price_24h_change": -0.018752931502724404, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1543095952, + "amount": 0.15082838, + "raw_amount": 15082838, + "raw_amount_hex_str": "0xe62556" + }, + { + "id": "0x226f7b842e0f0120b7e194d05432b3fd14773a9d", + "chain": "eth", + "name": "UNION Protocol Governance Token", + "symbol": "UNN", + "display_symbol": null, + "optimized_symbol": "UNN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x226f7b842e0f0120b7e194d05432b3fd14773a9d/353c0f098023ed2b6984fad42e786f36.png", + "protocol_id": "unn", + "price": 0.0002380029611507864, + "price_24h_change": -0.014194998493801996, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1606475731, + "amount": 513275.0134700667, + "raw_amount": 5.132750134700667e+23, + "raw_amount_hex_str": "0x6cb0b1b957743cf2243b" + }, + { + "id": "0x2361102893ccabfb543bc55ac4cc8d6d0824a67e", + "chain": "eth", + "name": "Element Principal Token yvcrvSTETH-15APR22", + "symbol": "ePyvcrvSTETH-15APR22", + "display_symbol": null, + "optimized_symbol": "ePyvcrvSTETH-15APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1925.2884865883489, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634646386, + "amount": 0.11170361717852023, + "raw_amount": 111703617178520240, + "raw_amount_hex_str": "0x18cd9d9160d4aad" + }, + { + "id": "0x245151454c790eb870498e9e5b590145fac1463f", + "chain": "eth", + "name": "$ RPoolBonus.com", + "symbol": "$RPL Claim at RPoolBonus.com", + "display_symbol": null, + "optimized_symbol": "$RPL Claim at RPoolBonus.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687784111, + "amount": 5000, + "raw_amount": 5000, + "raw_amount_hex_str": "0x1388" + }, + { + "id": "0x24a82db9e1d0e96d9cafa84a58825fbe9701ced2", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1585.5967414232086, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647499039, + "amount": 0.00000572017923657, + "raw_amount": 5720179236570, + "raw_amount_hex_str": "0x533d5405eda" + }, + { + "id": "0x24e79e946dea5482212c38aab2d0782f04cdb0e0", + "chain": "eth", + "name": "Paladin stkAAVE", + "symbol": "palStkAAVE", + "display_symbol": null, + "optimized_symbol": "palStkAAVE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x24e79e946dea5482212c38aab2d0782f04cdb0e0/add608fe8a15b03368f48fb40a42d8cf.png", + "protocol_id": "paladin", + "price": 91.135346087124, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1632993706, + "amount": 14.1037776435683, + "raw_amount": 14103777643568300000, + "raw_amount_hex_str": "0xc3baaf0ab3fc0065" + }, + { + "id": "0x25f8087ead173b73d6e8b84329989a8eea16cf73", + "chain": "eth", + "name": "Yield Guild Games Token", + "symbol": "YGG", + "display_symbol": null, + "optimized_symbol": "YGG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x25f8087ead173b73d6e8b84329989a8eea16cf73/4e2b963e26b873bc69a918edde1309bf.png", + "protocol_id": "yieldguild", + "price": 0.27254151634296286, + "price_24h_change": -0.0220929454245408, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1627299017, + "amount": 103.3948502972311, + "raw_amount": 103394850297231110000, + "raw_amount_hex_str": "0x59ae44c893326e681" + }, + { + "id": "0x26cc136e9b8fd65466f193a8e5710661ed9a9827", + "chain": "eth", + "name": "80BETS/20wstETH Pool Token", + "symbol": "80BETS/20wstETH", + "display_symbol": null, + "optimized_symbol": "80BETS/20wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.007305826640796735, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690400639, + "amount": 122972.02359002914, + "raw_amount": 1.2297202359002916e+23, + "raw_amount_hex_str": "0x1a0a53a6516d53a3da46" + }, + { + "id": "0x27054b13b1b798b345b591a4d22e6562d47ea75a", + "chain": "eth", + "name": "AirSwap Token", + "symbol": "AST", + "display_symbol": null, + "optimized_symbol": "AST", + "decimals": 4, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27054b13b1b798b345b591a4d22e6562d47ea75a/8193d103d453bab7acd302740b9cd0a1.png", + "protocol_id": "airswap", + "price": 0.0838688581719688, + "price_24h_change": -0.057989884473114844, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1507599220, + "amount": 0.0161, + "raw_amount": 161, + "raw_amount_hex_str": "0xa1" + }, + { + "id": "0x274b103eb0e1490f9d45cd9a5a630e1de1bf3196", + "chain": "eth", + "name": "# apy-eth.net", + "symbol": "Visit https://apy-eth.net to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit https://apy-eth.net to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696718747, + "amount": 1.4, + "raw_amount": 1400000, + "raw_amount_hex_str": "0x155cc0" + }, + { + "id": "0x27c70cd1946795b66be9d954418546998b546634", + "chain": "eth", + "name": "DOGE KILLER", + "symbol": "LEASH", + "display_symbol": null, + "optimized_symbol": "LEASH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27c70cd1946795b66be9d954418546998b546634/e2b22820fe3164795e5803e3ef64a9d0.png", + "protocol_id": "", + "price": 309.1172478094999, + "price_24h_change": -0.03909151962889922, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1598998068, + "amount": 0.004320528144273535, + "raw_amount": 4320528144273535, + "raw_amount_hex_str": "0xf597f5948107f" + }, + { + "id": "0x285328906d0d33cb757c1e471f5e2176683247c2", + "chain": "eth", + "name": "Element Principal Token yvcrv3crypto-29APR22", + "symbol": "ePyvcrv3crypto-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvcrv3crypto-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1219.323614821865, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1636034117, + "amount": 0.16870319386359234, + "raw_amount": 168703193863592350, + "raw_amount_hex_str": "0x2575aa936b6999b" + }, + { + "id": "0x2930e74d4634ae54519ae0ccd69ce728531c252e", + "chain": "eth", + "name": "Your Dreams Token", + "symbol": "YOO", + "display_symbol": null, + "optimized_symbol": "YOO", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650555914, + "amount": 12416367592.041399, + "raw_amount": 1.24163675920414e+28, + "raw_amount_hex_str": "0x281e941be22cb79343f845b7" + }, + { + "id": "0x2a8f5649de50462ff9699ccc75a2fb0b53447503", + "chain": "eth", + "name": "Element Principal Token yvCurve-EURS-11FEB22", + "symbol": "ePyvCurve-EURS-11FEB22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-EURS-11FEB22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0596467395482216, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634236922, + "amount": 1.9061332050874682, + "raw_amount": 1906133205087468000, + "raw_amount_hex_str": "0x1a73f20d07d0ba65" + }, + { + "id": "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884", + "chain": "eth", + "name": "Aladdin cvxCRV", + "symbol": "aCRV", + "display_symbol": null, + "optimized_symbol": "aCRV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884/6cf5b1bce4ec79f2cdf773b127c96e85.png", + "protocol_id": "concentrator", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1646643085, + "amount": 1261.27736173079, + "raw_amount": 1.26127736173079e+21, + "raw_amount_hex_str": "0x445fbd55f5d59bea6d" + }, + { + "id": "0x2ba592f78db6436527729929aaf6c908497cb200", + "chain": "eth", + "name": "Cream", + "symbol": "CREAM", + "display_symbol": null, + "optimized_symbol": "CREAM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2ba592f78db6436527729929aaf6c908497cb200/a5587c34049aadbc312d1847428235d9.png", + "protocol_id": "cream", + "price": 15.587882320775423, + "price_24h_change": -0.031065132950570007, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1596553617, + "amount": 35.04279261690979, + "raw_amount": 35042792616909790000, + "raw_amount_hex_str": "0x1e65102386c96e05f" + }, + { + "id": "0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0", + "chain": "eth", + "name": "TUSD bb-a-usd Stable Pool", + "symbol": "TUSD-bbausd", + "display_symbol": null, + "optimized_symbol": "TUSD-bbausd", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.2608733905119255, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666633715, + "amount": 0.001585337226757161, + "raw_amount": 1585337226757161, + "raw_amount_hex_str": "0x5a1db16400429" + }, + { + "id": "0x2c537e5624e4af88a7ae4060c022609376c8d0eb", + "chain": "eth", + "name": "BiLira", + "symbol": "TRYB", + "display_symbol": null, + "optimized_symbol": "TRYB", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2c537e5624e4af88a7ae4060c022609376c8d0eb/75a023de93f6f4de0c2155cb0e1ef5ef.png", + "protocol_id": "", + "price": 0.036260815005482734, + "price_24h_change": 0.000014537898686492538, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1563539445, + "amount": 317.111535, + "raw_amount": 317111535, + "raw_amount_hex_str": "0x12e6bcef" + }, + { + "id": "0x2c72692e94e757679289ac85d3556b2c0f717e0e", + "chain": "eth", + "name": "Element Principal Token yvDAI-29APR22", + "symbol": "ePyvDAI-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999497542022595, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641339630, + "amount": 60.97677550935169, + "raw_amount": 60976775509351694000, + "raw_amount_hex_str": "0x34e390641c7a578ab" + }, + { + "id": "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198", + "chain": "eth", + "name": "Bankless Token", + "symbol": "BANK", + "display_symbol": null, + "optimized_symbol": "BANK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198/83da02d114aa95ca785cbd6a51635280.png", + "protocol_id": "", + "price": 0.0032429909379958852, + "price_24h_change": -0.03665736156323746, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620099970, + "amount": 11392.34153232051, + "raw_amount": 1.139234153232051e+22, + "raw_amount_hex_str": "0x269947f986ee55ae3bf" + }, + { + "id": "0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4", + "chain": "eth", + "name": "50bb-a-WETH-50YieldETH", + "symbol": "50bb-a-WETH-50YieldETH", + "display_symbol": null, + "optimized_symbol": "50bb-a-WETH-50YieldETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1822.7264380422432, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691530583, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0x2e848426aec6dbf2260535a5bea048ed94d9ff3d", + "chain": "eth", + "name": "wbETH-wstETH StablePool", + "symbol": "wbETH-wstETH", + "display_symbol": null, + "optimized_symbol": "wbETH-wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1799.3010576415768, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683201371, + "amount": 0.6475540508817823, + "raw_amount": 647554050881782300, + "raw_amount_hex_str": "0x8fc92fa77ac823e" + }, + { + "id": "0x3035917be42af437cbdd774be26b9ec90a2bd677", + "chain": "eth", + "name": "Balancer INST 80 bbWETH 20", + "symbol": "80INST-bbWETH20", + "display_symbol": null, + "optimized_symbol": "80INST-bbWETH20", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.600456984969751, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683841055, + "amount": 0.010520363238690378, + "raw_amount": 10520363238690378, + "raw_amount_hex_str": "0x256036f1c00e4a" + }, + { + "id": "0x30d20208d987713f46dfd34ef128bb16c404d10f", + "chain": "eth", + "name": "Stader", + "symbol": "SD", + "display_symbol": null, + "optimized_symbol": "SD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x30d20208d987713f46dfd34ef128bb16c404d10f/099f57b5ca7c3703424ea1425678acaf.png", + "protocol_id": "stader", + "price": 0.6152079703426743, + "price_24h_change": 0.017286992769873236, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1642382824, + "amount": 576.4104863373904, + "raw_amount": 576410486337390300000, + "raw_amount_hex_str": "0x1f3f4d6b5ec64d7536" + }, + { + "id": "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3", + "chain": "eth", + "name": "Radicle", + "symbol": "RAD", + "display_symbol": null, + "optimized_symbol": "RAD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x31c8eacbffdd875c74b94b077895bd78cf1e64a3/e400b44466625a2161f3658bb763854a.png", + "protocol_id": "", + "price": 1.3796422617138158, + "price_24h_change": 0.03942471268495575, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613423971, + "amount": 0.004999999999967232, + "raw_amount": 4999999999967232, + "raw_amount_hex_str": "0x11c37937e00000" + }, + { + "id": "0x3301ee63fb29f863f2333bd4466acb46cd8323e6", + "chain": "eth", + "name": "Akita Inu", + "symbol": "AKITA", + "display_symbol": null, + "optimized_symbol": "AKITA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3301ee63fb29f863f2333bd4466acb46cd8323e6/6173e15b13a34a6e42bda133ac37a6ed.png", + "protocol_id": "", + "price": 1.377264651013752e-7, + "price_24h_change": 0.05981798200657611, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612076328, + "amount": 57362872.56584607, + "raw_amount": 5.736287256584608e+25, + "raw_amount_hex_str": "0x2f730f8d83f8a93e373a8c" + }, + { + "id": "0x333a4823466879eef910a04d473505da62142069", + "chain": "eth", + "name": "Nation3", + "symbol": "NATION", + "display_symbol": null, + "optimized_symbol": "NATION", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x333a4823466879eef910a04d473505da62142069/2415be916c6835d9c24d3f47506a5e18.png", + "protocol_id": "nation3", + "price": 57.64087136673549, + "price_24h_change": -0.011505691347809637, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1649799318, + "amount": 7.241223156129218, + "raw_amount": 7241223156129219000, + "raw_amount_hex_str": "0x647dfe18486a3e1a" + }, + { + "id": "0x3472a5a71965499acd81997a54bba8d852c6e53d", + "chain": "eth", + "name": "Badger", + "symbol": "BADGER", + "display_symbol": null, + "optimized_symbol": "BADGER", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3472a5a71965499acd81997a54bba8d852c6e53d/0e7643dba053739569d5b9f82225f4e5.png", + "protocol_id": "badger", + "price": 2.4225370886831006, + "price_24h_change": -0.037075275832257434, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1606584722, + "amount": 1630.1940319899745, + "raw_amount": 1.6301940319899744e+21, + "raw_amount_hex_str": "0x585f7ca2f4ec355e91" + }, + { + "id": "0x34d179259336812a1c7d320a0972e949da5fa26d", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1750.9182840691763, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648172795, + "amount": 0.025958318074766215, + "raw_amount": 25958318074766216, + "raw_amount_hex_str": "0x5c38f3e7d02387" + }, + { + "id": "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232", + "chain": "eth", + "name": "SideShift Token", + "symbol": "XAI", + "display_symbol": null, + "optimized_symbol": "XAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x35e78b3982e87ecfd5b3f3265b601c046cdbe232/21a070376acfb15790c0d09b5d21b9ab.png", + "protocol_id": "sideshift", + "price": 0.07657278407390077, + "price_24h_change": -0.020722743203199202, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600064905, + "amount": 0.02741807529102729, + "raw_amount": 27418075291027290, + "raw_amount_hex_str": "0x6168981e25875a" + }, + { + "id": "0x36be1e97ea98ab43b4debf92742517266f5731a3", + "chain": "eth", + "name": "Balancer 50wstETH-ACX", + "symbol": "50wstETH-50ACX", + "display_symbol": null, + "optimized_symbol": "50wstETH-50ACX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 10.517815682265653, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675902863, + "amount": 473.22581845681196, + "raw_amount": 473225818456811960000, + "raw_amount_hex_str": "0x19a753d6a0edc4fd1f" + }, + { + "id": "0x37b18b10ce5635a84834b26095a0ae5639dcb752", + "chain": "eth", + "name": "Balancer ETHx-WETH Stable Pool", + "symbol": "ETHx-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "ETHx-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1785.6082148407577, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692370715, + "amount": 1.679271117275099, + "raw_amount": 1679271117275099000, + "raw_amount_hex_str": "0x174df82f1ac16f12" + }, + { + "id": "0x380aabe019ed2a9c2d632b51eddd30fd804d0fad", + "chain": "eth", + "name": "50R-50wstETH", + "symbol": "50R-50wstETH", + "display_symbol": null, + "optimized_symbol": "50R-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 45.24571322907144, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684846547, + "amount": 6.3424631537451175, + "raw_amount": 6342463153745117000, + "raw_amount_hex_str": "0x5804f4a26ffb41f0" + }, + { + "id": "0x38ca7131cfd8e3d734129416e2e4559c21eb6aca", + "chain": "eth", + "name": "20WETH-80UNIDX", + "symbol": "20WETH-80UNIDX", + "display_symbol": null, + "optimized_symbol": "20WETH-80UNIDX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.1459822497029697, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694977163, + "amount": 0.000016760559044853, + "raw_amount": 16760559044853, + "raw_amount_hex_str": "0xf3e5f2b08f5" + }, + { + "id": "0x39eb558131e5ebeb9f76a6cbf6898f6e6dce5e4e", + "chain": "eth", + "name": "QiDao Governance Pool", + "symbol": "QI BPT", + "display_symbol": null, + "optimized_symbol": "QI BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.1616768794358319, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692299435, + "amount": 114.28505156348616, + "raw_amount": 114285051563486150000, + "raw_amount_hex_str": "0x6320610e38acb17f1" + }, + { + "id": "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe", + "chain": "eth", + "name": "DSLA", + "symbol": "DSLA", + "display_symbol": null, + "optimized_symbol": "DSLA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe/920656e6a4fe6c869d9ad35551e08af8.png", + "protocol_id": "", + "price": 0.0009222, + "price_24h_change": -0.01495406964323864, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1550581410, + "amount": 1.7671530614258026, + "raw_amount": 1767153061425802500, + "raw_amount_hex_str": "0x18863058ba076d46" + }, + { + "id": "0x3b9fb87f7d081ceddb1289258fa5660d955317b6", + "chain": "eth", + "name": "50B-baoETH-ETH-BPT-50BAO", + "symbol": "50B-baoETH-ETH-BPT-50BAO", + "display_symbol": null, + "optimized_symbol": "50B-baoETH-ETH-BPT-50BAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6676452307839581, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683886487, + "amount": 104.39427878008894, + "raw_amount": 104394278780088940000, + "raw_amount_hex_str": "0x5a8c2fb72264cff5e" + }, + { + "id": "0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432", + "chain": "eth", + "name": "Candle", + "symbol": "CNDL", + "display_symbol": null, + "optimized_symbol": "CNDL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432/e9d1773a4453ca6646909bd2a3c56517.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651750698, + "amount": 2258.9097301624, + "raw_amount": 2.2589097301624e+21, + "raw_amount_hex_str": "0x7a74ab7f5db357e24c" + }, + { + "id": "0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede", + "chain": "eth", + "name": "zUSD-bb-e-USD", + "symbol": "zUSD-bb-e-USD-BPT", + "display_symbol": null, + "optimized_symbol": "zUSD-bb-e-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0074523886629536, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675956239, + "amount": 0.000249178466602354, + "raw_amount": 249178466602354, + "raw_amount_hex_str": "0xe2a061fccd72" + }, + { + "id": "0x3e1f8fc2fbab8695b5749afb1f390d30bb33c880", + "chain": "eth", + "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-06-2027:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 403.9591360429188, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652969783, + "amount": 0.07705061999391594, + "raw_amount": 77050619993915940, + "raw_amount_hex_str": "0x111bd217276021b" + }, + { + "id": "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7", + "chain": "eth", + "name": "Gro DAO Token", + "symbol": "GRO", + "display_symbol": null, + "optimized_symbol": "GRO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7/85aaee7416a5ecebc565f9bd79c9c360.png", + "protocol_id": "gro", + "price": 0.20996363337581542, + "price_24h_change": -0.22058559333808125, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632174690, + "amount": 2580.8822279675182, + "raw_amount": 2.5808822279675183e+21, + "raw_amount_hex_str": "0x8be8ef983c82a612f3" + }, + { + "id": "0x3f9fee026fcebb40719a69416c72b714d89a17d9", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 488.38679475622115, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648167646, + "amount": 0.000181094846238193, + "raw_amount": 181094846238193, + "raw_amount_hex_str": "0xa4b46dfb0df1" + }, + { + "id": "0x3fa8c89704e5d07565444009e5d9e624b40be813", + "chain": "eth", + "name": "Balancer GHO/LUSD Stable Pool", + "symbol": "GHO/LUSD", + "display_symbol": null, + "optimized_symbol": "GHO/LUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.956979728139439, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689432875, + "amount": 1262.3126027900212, + "raw_amount": 1.262312602790021e+21, + "raw_amount_hex_str": "0x446e1b4037fdf88fd7" + }, + { + "id": "0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e", + "chain": "eth", + "name": "Balancer STG/USDC", + "symbol": "STG/USDC", + "display_symbol": null, + "optimized_symbol": "STG/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6969713516102964, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692722363, + "amount": 8779.461198606217, + "raw_amount": 8.779461198606218e+21, + "raw_amount_hex_str": "0x1dbef7fe48da8d0ccef" + }, + { + "id": "0x40370aed88933021e20cf7c4d67e00417cda2202", + "chain": "eth", + "name": "Xave Token", + "symbol": "XAV", + "display_symbol": null, + "optimized_symbol": "XAV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x40370aed88933021e20cf7c4d67e00417cda2202/247a2728076470579ab554e77b08df30.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669012907, + "amount": 1.9573375855194717, + "raw_amount": 1957337585519471600, + "raw_amount_hex_str": "0x1b29dc29e268ac39" + }, + { + "id": "0x408e41876cccdc0f92210600ef50372656052a38", + "chain": "eth", + "name": "Republic Token", + "symbol": "REN", + "display_symbol": null, + "optimized_symbol": "REN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x408e41876cccdc0f92210600ef50372656052a38/d0ef6c3fa48075b6f129bfe11f6b3364.png", + "protocol_id": "ren", + "price": 0.047765, + "price_24h_change": -0.010441484182394446, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1514688568, + "amount": 535.8468904869309, + "raw_amount": 535846890486930870000, + "raw_amount_hex_str": "0x1d0c5e93dbff27f1ec" + }, + { + "id": "0x40c806394d03d350420d13cd7d1de1c806f34956", + "chain": "eth", + "name": "Balancer qETH/WETH ", + "symbol": "qETH/WETH", + "display_symbol": null, + "optimized_symbol": "qETH/WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1781.1139727560665, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695334895, + "amount": 0.04597169301246175, + "raw_amount": 45971693012461750, + "raw_amount_hex_str": "0xa35302dfbb28b5" + }, + { + "id": "0x40fb0516ac8ff93b48bcf9da7717e523e78c34f7", + "chain": "eth", + "name": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "symbol": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "display_symbol": null, + "optimized_symbol": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.944117344063068, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679181491, + "amount": 338.57678793145624, + "raw_amount": 338576787931456200000, + "raw_amount_hex_str": "0x125ab262c4573650c0" + }, + { + "id": "0x41503c9d499ddbd1dcdf818a1b05e9774203bf46", + "chain": "eth", + "name": "Balancer Boosted Aave v3 WETH StablePool", + "symbol": "wstETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1788.8658122135257, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689173579, + "amount": 0.000004959060006908, + "raw_amount": 4959060006908, + "raw_amount_hex_str": "0x4829f0297fc" + }, + { + "id": "0x418de6227499181b045cadf554030722e460881a", + "chain": "eth", + "name": "Element Principal Token yvCurve-MIM-11FEB22", + "symbol": "ePyvCurve-MIM-11FEB22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-MIM-11FEB22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0097925179944822, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634061105, + "amount": 162.22004811443406, + "raw_amount": 162220048114434080000, + "raw_amount_hex_str": "0x8cb4162480b9e46bf" + }, + { + "id": "0x41c37a4683d6a05adb31c39d71348a8403b13ca9", + "chain": "eth", + "name": "Chain", + "symbol": "CHN", + "display_symbol": null, + "optimized_symbol": "CHN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41c37a4683d6a05adb31c39d71348a8403b13ca9/dfee7bb5fbe50c6450ff8cfa4b17546d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1605706401, + "amount": 1.0374047068213375, + "raw_amount": 1037404706821337300, + "raw_amount_hex_str": "0xe659a159e677103" + }, + { + "id": "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68", + "chain": "eth", + "name": "Inverse DAO", + "symbol": "INV", + "display_symbol": null, + "optimized_symbol": "INV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68/b95fe3266be734e29d0385cadc44681c.png", + "protocol_id": "inverse", + "price": 31.7624661720442, + "price_24h_change": -0.05038253074868049, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608575013, + "amount": 65.20214354423233, + "raw_amount": 65202143544232330000, + "raw_amount_hex_str": "0x388dc8c1903ff4e32" + }, + { + "id": "0x41e5560054824ea6b0732e656e3ad64e20e94e45", + "chain": "eth", + "name": "Civic", + "symbol": "CVC", + "display_symbol": null, + "optimized_symbol": "CVC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41e5560054824ea6b0732e656e3ad64e20e94e45/f44e161ad5413bd61785905f6a724b61.png", + "protocol_id": "", + "price": 0.09001441981622818, + "price_24h_change": -0.06388644813047414, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1499817451, + "amount": 17898.87872756, + "raw_amount": 1789887872756, + "raw_amount_hex_str": "0x1a0bda17ef4" + }, + { + "id": "0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2", + "chain": "eth", + "name": "50bb-a-WETH-50ETHx", + "symbol": "50bb-a-WETH-50ETHx", + "display_symbol": null, + "optimized_symbol": "50bb-a-WETH-50ETHx", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1795.4974599372076, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687940699, + "amount": 0.000005707034691283, + "raw_amount": 5707034691283, + "raw_amount_hex_str": "0x530c5c686d3" + }, + { + "id": "0x42ed016f826165c2e5976fe5bc3df540c5ad0af7", + "chain": "eth", + "name": "wstETH-rETH-sfrxETH-BPT", + "symbol": "wstETH-rETH-sfrxETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-rETH-sfrxETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1787.580597355287, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689162815, + "amount": 8.439058361945133, + "raw_amount": 8439058361945133000, + "raw_amount_hex_str": "0x751d8ede3e879057" + }, + { + "id": "0x42fbd9f666aacc0026ca1b88c94259519e03dd67", + "chain": "eth", + "name": "50COIL-50USDC", + "symbol": "50COIL-50USDC", + "display_symbol": null, + "optimized_symbol": "50COIL-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.2001568270661234, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680729107, + "amount": 92.37013198455922, + "raw_amount": 92370131984559230000, + "raw_amount_hex_str": "0x501e4a1a45b99b717" + }, + { + "id": "0x43b4fdfd4ff969587185cdb6f0bd875c5fc83f8c", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Alchemix USD", + "symbol": "alUSD3CRV-f", + "display_symbol": null, + "optimized_symbol": "alUSD3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0085505201805673, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1614641897, + "amount": 84.79787428041467, + "raw_amount": 84797874280414670000, + "raw_amount_hex_str": "0x498ce91613059972a" + }, + { + "id": "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad", + "chain": "eth", + "name": "Prime", + "symbol": "D2D", + "display_symbol": null, + "optimized_symbol": "D2D", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad/8a54f7a353e7d3d9a5124320838ae0ce.png", + "protocol_id": "", + "price": 0.010493926485949658, + "price_24h_change": 0.009287929901933284, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638439594, + "amount": 52830.99152829286, + "raw_amount": 5.283099152829286e+22, + "raw_amount_hex_str": "0xb2ff94a44648f6fb4c9" + }, + { + "id": "0x449d7c2e096e9f867339078535b15440d42f78e8", + "chain": "eth", + "name": "Element Principal Token yvDAI-28JAN22", + "symbol": "ePyvDAI-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.99994973371912, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632229871, + "amount": 1.6345684269036274, + "raw_amount": 1634568426903627300, + "raw_amount_hex_str": "0x16af2752eea8e60d" + }, + { + "id": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "chain": "eth", + "name": "Paxos Gold", + "symbol": "PAXG", + "display_symbol": null, + "optimized_symbol": "PAXG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x45804880de22913dafe09f4980848ece6ecbaf78/c67db744859c16615fa81fcb3a71b3ae.png", + "protocol_id": "", + "price": 1954.6963262282793, + "price_24h_change": 0.003626186047255662, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1566830180, + "amount": 0.000195449382386424, + "raw_amount": 195449382386424, + "raw_amount_hex_str": "0xb1c29b023af8" + }, + { + "id": "0x467bccd9d29f223bce8043b84e8c8b282827790f", + "chain": "eth", + "name": "Telcoin", + "symbol": "TEL", + "display_symbol": null, + "optimized_symbol": "TEL", + "decimals": 2, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x467bccd9d29f223bce8043b84e8c8b282827790f/161a26f47e94d3a29876733cccefa868.png", + "protocol_id": "", + "price": 0.0015761174012508448, + "price_24h_change": -0.06730902057209723, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1580196479, + "amount": 9812.17, + "raw_amount": 981217, + "raw_amount_hex_str": "0xef8e1" + }, + { + "id": "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7", + "chain": "eth", + "name": "Temple", + "symbol": "TEMPLE", + "display_symbol": null, + "optimized_symbol": "TEMPLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7/5e88fad758a4fd99011c1bb7221c5c1a.png", + "protocol_id": "temple", + "price": 1.072403509786502, + "price_24h_change": -0.008602838312611216, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632930767, + "amount": 0.0498486954820145, + "raw_amount": 49848695482014504, + "raw_amount_hex_str": "0xb1191fdab8db29" + }, + { + "id": "0x4729f67394030472e853cb61954fe784bfb36c3b", + "chain": "eth", + "name": "25WBTC-50USDC-25WETH", + "symbol": "25WBTC-50USDC-25WETH", + "display_symbol": null, + "optimized_symbol": "25WBTC-50USDC-25WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 83.40228354899634, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686652355, + "amount": 1.11606324940411, + "raw_amount": 1116063249404110100, + "raw_amount_hex_str": "0xf7d0d9cb799a4d3" + }, + { + "id": "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0", + "chain": "eth", + "name": "The 4th Pillar Token", + "symbol": "FOUR", + "display_symbol": null, + "optimized_symbol": "FOUR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0/ff4b54e2c0cc9f9d2f32083d31e7f8d7.png", + "protocol_id": "", + "price": 0.0012123484498193198, + "price_24h_change": -0.01229480737018439, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1524482071, + "amount": 15357.181701667683, + "raw_amount": 1.5357181701667682e+22, + "raw_amount_hex_str": "0x34083b57fd4b72b70ff" + }, + { + "id": "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff", + "chain": "eth", + "name": "Serum", + "symbol": "SRM", + "display_symbol": null, + "optimized_symbol": "SRM", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x476c5e26a75bd202a9683ffd34359c0cc15be0ff/6458883add3412a15a0ace2fb0e6c780.png", + "protocol_id": "", + "price": 0.03880980728394107, + "price_24h_change": -0.07183845206001316, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1596238023, + "amount": 0.26469, + "raw_amount": 264690, + "raw_amount_hex_str": "0x409f2" + }, + { + "id": "0x478bbc744811ee8310b461514bdc29d03739084d", + "chain": "eth", + "name": "veCRV Stake DAO", + "symbol": "sdveCRV-DAO", + "display_symbol": null, + "optimized_symbol": "sdveCRV-DAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "stakedao", + "price": 0.4667, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1614598819, + "amount": 157.94985960428522, + "raw_amount": 157949859604285230000, + "raw_amount_hex_str": "0x88ffea074b43dda49" + }, + { + "id": "0x47e1cf97a0586367349a14306a65f54ba0b8f1b6", + "chain": "eth", + "name": "20WETH-80ALTR", + "symbol": "20WETH-80ALTR", + "display_symbol": null, + "optimized_symbol": "20WETH-80ALTR", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.012643653002976792, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692518831, + "amount": 3.4150305140825292, + "raw_amount": 3415030514082529300, + "raw_amount_hex_str": "0x2f64a028b1024008" + }, + { + "id": "0x483006684f422a9448023b2382615c57c5ecf18f", + "chain": "eth", + "name": "Balancer TUSD bbeUSD Stable Pool", + "symbol": "TUSD-bb-e-USD", + "display_symbol": null, + "optimized_symbol": "TUSD-bb-e-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0088146746104318, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676335379, + "amount": 0.000147196524185311, + "raw_amount": 147196524185311, + "raw_amount_hex_str": "0x85dfdc8946df" + }, + { + "id": "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054", + "chain": "eth", + "name": "South African Tether", + "symbol": "XZAR", + "display_symbol": null, + "optimized_symbol": "XZAR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x48f07301e9e29c3c38a80ae8d9ae771f224f1054/9f75b8fcd7755ec78c71fb3449c8e1cb.png", + "protocol_id": "", + "price": 0.05104887262013725, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1527678390, + "amount": 0.03344167048500867, + "raw_amount": 33441670485008670, + "raw_amount_hex_str": "0x76cf05a9f46122" + }, + { + "id": "0x496ff26b76b8d23bbc6cf1df1eee4a48795490f7", + "chain": "eth", + "name": "Balancer 50COMP-50wstETH", + "symbol": "50COMP-50WSTETH", + "display_symbol": null, + "optimized_symbol": "50COMP-50WSTETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 301.19517470005894, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663944443, + "amount": 0.000010866337871306, + "raw_amount": 10866337871306, + "raw_amount_hex_str": "0x9e2043575ca" + }, + { + "id": "0x49e9e169f0b661ea0a883f490564f4cc275123ed", + "chain": "eth", + "name": "Element Principal Token yvWBTC-29APR22", + "symbol": "ePyvWBTC-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvWBTC-29APR22", + "decimals": 8, + "logo_url": null, + "protocol_id": "element", + "price": 34080.1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639082867, + "amount": 0.00257344, + "raw_amount": 257344, + "raw_amount_hex_str": "0x3ed40" + }, + { + "id": "0x4a220e6096b25eadb88358cb44068a3248254675", + "chain": "eth", + "name": "Quant", + "symbol": "QNT", + "display_symbol": null, + "optimized_symbol": "QNT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4a220e6096b25eadb88358cb44068a3248254675/0fa0af99171fcb3a9a4b3e3189f6791b.png", + "protocol_id": "", + "price": 103.8129139562427, + "price_24h_change": -0.011861389357073681, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1523044361, + "amount": 3.6661770414563097, + "raw_amount": 3666177041456310000, + "raw_amount_hex_str": "0x32e0e0984fb22651" + }, + { + "id": "0x4b13006980acb09645131b91d259eaa111eaf5ba", + "chain": "eth", + "name": "Mycelium", + "symbol": "MYC", + "display_symbol": null, + "optimized_symbol": "MYC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4b13006980acb09645131b91d259eaa111eaf5ba/c34229f594e7de5f89c43b886a86c2c5.png", + "protocol_id": "", + "price": 0.0014583513600306749, + "price_24h_change": -0.012960140069912519, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1660182677, + "amount": 9340.018375535334, + "raw_amount": 9.340018375535334e+21, + "raw_amount_hex_str": "0x1fa52cb0b02dc94f68d" + }, + { + "id": "0x4c81255cc9ed7062180ea99962fe05ac0d57350b", + "chain": "eth", + "name": "cbETH/Boosted Aave v3 WETH", + "symbol": "cbETH-bb-a-WETH-BPT ", + "display_symbol": null, + "optimized_symbol": "cbETH-bb-a-WETH-BPT ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1787.4809515371883, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689553187, + "amount": 0.010856090427067203, + "raw_amount": 10856090427067204, + "raw_amount_hex_str": "0x26918e858e0b44" + }, + { + "id": "0x4cbde5c4b4b53ebe4af4adb85404725985406163", + "chain": "eth", + "name": "ETHx/bb-a-WETH Stable Pool", + "symbol": "B-ETHx/bb-a-WETH ", + "display_symbol": null, + "optimized_symbol": "B-ETHx/bb-a-WETH ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1791.1451494809514, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689175655, + "amount": 0.00000141467351807, + "raw_amount": 1414673518070, + "raw_amount_hex_str": "0x149611ccdf6" + }, + { + "id": "0x4cc46a45b49a5073a6c1e0636cbad48efa35cdd3", + "chain": "eth", + "name": "24K GAMES", + "symbol": "24K", + "display_symbol": null, + "optimized_symbol": "24K", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646971567, + "amount": 31.64091782, + "raw_amount": 3164091782, + "raw_amount_hex_str": "0xbc983586" + }, + { + "id": "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227", + "chain": "eth", + "name": "Quasacoin", + "symbol": "QUA", + "display_symbol": null, + "optimized_symbol": "QUA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227/a67c193307d12eb4011a5a4c662ef0df.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1512380881, + "amount": 1247.3744351518874, + "raw_amount": 1.2473744351518875e+21, + "raw_amount_hex_str": "0x439ecc37e5cbc74fe1" + }, + { + "id": "0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c", + "chain": "eth", + "name": "SolarCoin on Mainnet", + "symbol": "SLR", + "display_symbol": null, + "optimized_symbol": "SLR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c/81bd6ba22be0c3314bd798585775290e.png", + "protocol_id": "", + "price": 0.055776815424623725, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1619174554, + "amount": 540.5422461900775, + "raw_amount": 540542246190077500000, + "raw_amount_hex_str": "0x1d4d87d4fe8b50e72c" + }, + { + "id": "0x4ee4ddfb958416ca2afca3a894c3c3ed9a3cdda1", + "chain": "eth", + "name": "Sense Space 1st Aug 2022 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-08-2022:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-08-2022:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1742.7649041330073, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1656634308, + "amount": 0.000266315308888279, + "raw_amount": 266315308888279, + "raw_amount_hex_str": "0xf2365d6270d7" + }, + { + "id": "0x4f2e0f963794a3876a54c503ec63de95e9f24a75", + "chain": "eth", + "name": "50EVA-50WETH", + "symbol": "50EVA-50WETH", + "display_symbol": null, + "optimized_symbol": "50EVA-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 11.212444430156001, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677463907, + "amount": 0.03788908667835974, + "raw_amount": 37889086678359740, + "raw_amount_hex_str": "0x869bec7053debd" + }, + { + "id": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "chain": "eth", + "name": "Binance USD", + "symbol": "BUSD", + "display_symbol": null, + "optimized_symbol": "BUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4fabb145d64652a948d72533023f6e7a623c7c53/588ad5043e23b6c46aeda945852c3273.png", + "protocol_id": "", + "price": 1, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1567727777, + "amount": 4.866814267563016, + "raw_amount": 4866814267563016000, + "raw_amount_hex_str": "0x438a65ca75e57e1f" + }, + { + "id": "0x4fd4687ec38220f805b6363c3c1e52d0df3b5023", + "chain": "eth", + "name": "Balancer 50wstETH-50bb-euler-USD", + "symbol": "50wstETH-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50wstETH-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 64.45965370391487, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675958987, + "amount": 0.000284576129434531, + "raw_amount": 284576129434531, + "raw_amount_hex_str": "0x102d20b1b43a3" + }, + { + "id": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", + "chain": "eth", + "name": "solace", + "symbol": "SOLACE", + "display_symbol": null, + "optimized_symbol": "SOLACE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40/06d669f7d8a66cc1d92a277e9fa541a6.png", + "protocol_id": "solace", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637651732, + "amount": 6142.490743441953, + "raw_amount": 6.142490743441952e+21, + "raw_amount_hex_str": "0x14cfc2ee2d986a55e93" + }, + { + "id": "0x50cf90b954958480b8df7958a9e965752f627124", + "chain": "eth", + "name": "bb-euler-USD", + "symbol": "bb-euler-USD-BPT", + "display_symbol": null, + "optimized_symbol": "bb-euler-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0093841621535664, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675954271, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd", + "chain": "eth", + "name": "RAZOR", + "symbol": "RAZOR", + "display_symbol": null, + "optimized_symbol": "RAZOR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd/85936c44506b8575e8130fb7e33632ee.png", + "protocol_id": "", + "price": 0.003937, + "price_24h_change": 0.05677316936159658, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611070839, + "amount": 0.5591955659528318, + "raw_amount": 559195565952831900, + "raw_amount_hex_str": "0x7c2a9678c97917c" + }, + { + "id": "0x514910771af9ca656af840dff83e8264ecf986ca", + "chain": "eth", + "name": "ChainLink Token", + "symbol": "LINK", + "display_symbol": null, + "optimized_symbol": "LINK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x514910771af9ca656af840dff83e8264ecf986ca/69425617db0ef93a7c21c4f9b81c7ca5.png", + "protocol_id": "chainlink", + "price": 10.471867509927613, + "price_24h_change": -0.04944294871224147, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1505597189, + "amount": 56.63449572738061, + "raw_amount": 56634495727380610000, + "raw_amount_hex_str": "0x311f625cd37e64167" + }, + { + "id": "0x51fa2efd62ee56a493f24ae963eace7d0051929e", + "chain": "eth", + "name": "POSEIDON OCEAN", + "symbol": "psdnOCEAN", + "display_symbol": null, + "optimized_symbol": "psdnOCEAN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x51fa2efd62ee56a493f24ae963eace7d0051929e/ba7ad5b1cdffba533c15373060ec9d93.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1666000007, + "amount": 1832.9304059082035, + "raw_amount": 1.8329304059082034e+21, + "raw_amount_hex_str": "0x635d04ece45b039a30" + }, + { + "id": "0x525fc44cbe181c1108c209091b5eec5a5028190d", + "chain": "eth", + "name": "$ Evmosia.com", + "symbol": "$ Evmosia.com", + "display_symbol": null, + "optimized_symbol": "$ Evmosia.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671409715, + "amount": 40000, + "raw_amount": 40000, + "raw_amount_hex_str": "0x9c40" + }, + { + "id": "0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e4", + "chain": "eth", + "name": "Gyroscope ECLP R/sDAI", + "symbol": "ECLP-R-sDAI", + "display_symbol": null, + "optimized_symbol": "ECLP-R-sDAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0030269598560757, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695206147, + "amount": 670.4193911719615, + "raw_amount": 670419391171961400000, + "raw_amount_hex_str": "0x2457f0243c9a6ae5bd" + }, + { + "id": "0x52bbca3b24c1c1ac050ff4546f37aa88282aae22", + "chain": "eth", + "name": "$ HEXPool.io", + "symbol": "wHEX", + "display_symbol": null, + "optimized_symbol": "wHEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685642099, + "amount": 93588.75, + "raw_amount": 9.358875e+22, + "raw_amount_hex_str": "0x13d174d04e8d175b0000" + }, + { + "id": "0x52c9886d5d87b0f06ebacbeff750b5ffad5d17d9", + "chain": "eth", + "name": "Element Principal Token yvUSDC-29APR22", + "symbol": "ePyvUSDC-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-29APR22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1637083548, + "amount": 0.002163, + "raw_amount": 2163, + "raw_amount_hex_str": "0x873" + }, + { + "id": "0x53fffb19bacd44b82e204d036d579e86097e5d09", + "chain": "eth", + "name": "BigMouthFrog", + "symbol": "BGBG", + "display_symbol": null, + "optimized_symbol": "BGBG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x53fffb19bacd44b82e204d036d579e86097e5d09/3f4a08cd1bf99074863825a9995fa7e7.png", + "protocol_id": "", + "price": 3.194914212347901e-11, + "price_24h_change": -0.011357031075341058, + "is_verified": false, + "is_core": true, + "is_wallet": true, + "time_at": 1687084283, + "amount": 219.69945066954557, + "raw_amount": 219699450669545550000, + "raw_amount_hex_str": "0xbe8f13e5dcab83a77" + }, + { + "id": "0x54ca50ee86616379420cc56718e12566aa75abbe", + "chain": "eth", + "name": "50wUSDM-50wstETH", + "symbol": "50wUSDM-50wstETH", + "display_symbol": null, + "optimized_symbol": "50wUSDM-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 22.38638177602076, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698134843, + "amount": 3.1701584e-11, + "raw_amount": 31701584, + "raw_amount_hex_str": "0x1e3ba50" + }, + { + "id": "0x55096a35bf827919b3bb0a5e6b5e2af8095f3d4d", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-28JAN22", + "symbol": "ePyvCurve-alUSD-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0085505201805673, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632836406, + "amount": 4.1474331168929295, + "raw_amount": 4147433116892929000, + "raw_amount_hex_str": "0x398ea4721e181c81" + }, + { + "id": "0x586aa273f262909eef8fa02d90ab65f5015e0516", + "chain": "eth", + "name": "Fixed Income Asset Token", + "symbol": "FIAT", + "display_symbol": null, + "optimized_symbol": "FIAT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x586aa273f262909eef8fa02d90ab65f5015e0516/43d28043429b71370c3685bc469e6d2d.png", + "protocol_id": "", + "price": 1.0020133628829597, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1649548526, + "amount": 811.4182391491705, + "raw_amount": 811418239149170500000, + "raw_amount_hex_str": "0x2bfcb0ad6d97443801" + }, + { + "id": "0x58b6a8a3302369daec383334672404ee733ab239", + "chain": "eth", + "name": "Livepeer Token", + "symbol": "LPT", + "display_symbol": null, + "optimized_symbol": "LPT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x58b6a8a3302369daec383334672404ee733ab239/3bf454e30e5f4b18011ea5e31d2e0e59.png", + "protocol_id": "", + "price": 6.128531977024629, + "price_24h_change": -0.027871116309666117, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1525118631, + "amount": 9.611559995466864, + "raw_amount": 9611559995466865000, + "raw_amount_hex_str": "0x85631ee443285964" + }, + { + "id": "0x59d1e836f7b7210a978b25a855085cc46fd090b5", + "chain": "eth", + "name": "AssangeDAO", + "symbol": "JUSTICE", + "display_symbol": null, + "optimized_symbol": "JUSTICE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x59d1e836f7b7210a978b25a855085cc46fd090b5/18a7cd6e19eb1a3cdbad5407156d2800.png", + "protocol_id": "", + "price": 0.000020270624264924338, + "price_24h_change": -0.013699775852263207, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644405370, + "amount": 146820.75531783528, + "raw_amount": 1.4682075531783528e+23, + "raw_amount_hex_str": "0x1f172b49bfdee428ba12" + }, + { + "id": "0x5a6a4d54456819380173272a5e8e9b9904bdf41b", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Magic Internet Money 3Pool", + "symbol": "MIM-3LP3CRV-f", + "display_symbol": null, + "optimized_symbol": "MIM-3LP3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0097925179944824, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1622664003, + "amount": 0.001180815197708221, + "raw_amount": 1180815197708221, + "raw_amount_hex_str": "0x431f1f6679fbd" + }, + { + "id": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", + "chain": "eth", + "name": "Lido DAO Token", + "symbol": "LDO", + "display_symbol": null, + "optimized_symbol": "LDO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5a98fcbea516cf06857215779fd812ca3bef1b32/3a1a90da5ccd4849de3e83755f1fd8b5.png", + "protocol_id": "lido", + "price": 1.8090752278515094, + "price_24h_change": -0.03677255992745035, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608242396, + "amount": 114.74313906352926, + "raw_amount": 114743139063529260000, + "raw_amount_hex_str": "0x63861850b06e8b75b" + }, + { + "id": "0x5ad5f864b346445a16fc95c59174269ed288e640", + "chain": "eth", + "name": "Sense Space 1st Apr 2023 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-04-2023:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-04-2023:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1260.1310600461986, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659544214, + "amount": 0.007607022901897472, + "raw_amount": 7607022901897472, + "raw_amount_hex_str": "0x1b068c09dda900" + }, + { + "id": "0x5aee1e99fe86960377de9f88689616916d5dcabe", + "chain": "eth", + "name": "wstETH-rETH-sfrxETH StablePool", + "symbol": "wstETH-rETH-sfrxETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-rETH-sfrxETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1821.6862823518509, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675903979, + "amount": 0.7790671014063838, + "raw_amount": 779067101406383700, + "raw_amount_hex_str": "0xacfcd66ab854ea0" + }, + { + "id": "0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64", + "chain": "eth", + "name": "Balancer DOLA bb-a-usd Stable", + "symbol": "DOLA BSP", + "display_symbol": null, + "optimized_symbol": "DOLA BSP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.20502917958771608, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664261567, + "amount": 0.003844606784921471, + "raw_amount": 3844606784921471, + "raw_amount_hex_str": "0xda8a645b75f7f" + }, + { + "id": "0x5bfe65bca476bda0d0d393372394ae352ec0627b", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1895.0429978037505, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651433369, + "amount": 0.000001034241951247, + "raw_amount": 1034241951247, + "raw_amount_hex_str": "0xf0cd9fc60f" + }, + { + "id": "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56", + "chain": "eth", + "name": "Balancer 80 BAL 20 WETH", + "symbol": "B-80BAL-20WETH", + "display_symbol": null, + "optimized_symbol": "B-80BAL-20WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5c6ee304399dbdb9c8ef030ab642b10820db8f56/a97c63ed3da766c9436a84d679a543ae.png", + "protocol_id": "balancer2", + "price": 9.949043968909859, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1620153071, + "amount": 1.860289084277977, + "raw_amount": 1860289084277976800, + "raw_amount_hex_str": "0x19d11310dfecef0b" + }, + { + "id": "0x5e8422345238f34275888049021821e8e08caa1f", + "chain": "eth", + "name": "Frax Ether", + "symbol": "frxETH", + "display_symbol": null, + "optimized_symbol": "frxETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5e8422345238f34275888049021821e8e08caa1f/74628d212cf16e6183a7242b4ce71b92.png", + "protocol_id": "frax", + "price": 1764.1606602996344, + "price_24h_change": -0.011768206153751905, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1665022895, + "amount": 3.214543369e-9, + "raw_amount": 3214543369, + "raw_amount_hex_str": "0xbf9a0a09" + }, + { + "id": "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5", + "chain": "eth", + "name": "Balancer 50wstETH-LDO", + "symbol": "50wstETH-50LDO", + "display_symbol": null, + "optimized_symbol": "50wstETH-50LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 60.71486419753096, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675902395, + "amount": 30.127399903928996, + "raw_amount": 30127399903928996000, + "raw_amount_hex_str": "0x1a21a06973fd34baf" + }, + { + "id": "0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa", + "chain": "eth", + "name": "Balancer Idle Boosted StablePool", + "symbol": "bb-i-USD", + "display_symbol": null, + "optimized_symbol": "bb-i-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.1895288232116314, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676336363, + "amount": 0.002440372366841927, + "raw_amount": 2440372366841927, + "raw_amount_hex_str": "0x8ab81780b9847" + }, + { + "id": "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e", + "chain": "eth", + "name": "Page", + "symbol": "PAGE", + "display_symbol": null, + "optimized_symbol": "PAGE", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x60e683c6514edd5f758a55b6f393bebbafaa8d5e/c8bb13815f5143b60a2a38ab610a3e45.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1627438213, + "amount": 124.48588543, + "raw_amount": 12448588543, + "raw_amount_hex_str": "0x2e5fe62ff" + }, + { + "id": "0x6123b0049f904d730db3c36a31167d9d4121fa6b", + "chain": "eth", + "name": "Ribbon", + "symbol": "RBN", + "display_symbol": null, + "optimized_symbol": "RBN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6123b0049f904d730db3c36a31167d9d4121fa6b/d01dd0342160eeee21906b1dba45a327.png", + "protocol_id": "ribbonlend", + "price": 0.17196709686128767, + "price_24h_change": -0.0005209234896668589, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1621861922, + "amount": 1089.8711785205085, + "raw_amount": 1.0898711785205085e+21, + "raw_amount_hex_str": "0x3b15003e7abb3f1893" + }, + { + "id": "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d", + "chain": "eth", + "name": "Aura BAL", + "symbol": "auraBAL", + "display_symbol": null, + "optimized_symbol": "auraBAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x616e8bfa43f920657b3497dbf40d6b1a02d4608d/05fa7bfd9613c2c4799bd4f0cebd620a.png", + "protocol_id": "", + "price": 10.031988896427602, + "price_24h_change": 0.04407261417001376, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1654771930, + "amount": 354.6399987779902, + "raw_amount": 354639998777990200000, + "raw_amount_hex_str": "0x13399e5fece311d51e" + }, + { + "id": "0x6228f64d5ba8376652bfe7e36569d595347cf6fb", + "chain": "eth", + "name": "80T-20TBTC", + "symbol": "80T-20TBTC", + "display_symbol": null, + "optimized_symbol": "80T-20TBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.31154474631028495, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693279523, + "amount": 21.52844921301569, + "raw_amount": 21528449213015690000, + "raw_amount_hex_str": "0x12ac46a7f22d68ea8" + }, + { + "id": "0x623729861bc3837c503708f995b93d317c3c1d7c", + "chain": "eth", + "name": "Balancer TBY-feb1924 USDC Stable Pool", + "symbol": "TBY-feb1924-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "TBY-feb1924-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 999975.5006002353, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693244579, + "amount": 2.5e-17, + "raw_amount": 25, + "raw_amount_hex_str": "0x19" + }, + { + "id": "0x639883476960a23b38579acfd7d71561a0f408cf", + "chain": "eth", + "name": "Balancer 50STG-50bbaUSD", + "symbol": "50STG-50bbaUSD", + "display_symbol": null, + "optimized_symbol": "50STG-50bbaUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.7048507567734754, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680693239, + "amount": 0.010407133071785597, + "raw_amount": 10407133071785596, + "raw_amount_hex_str": "0x24f93b7ddfbe7d" + }, + { + "id": "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414", + "chain": "eth", + "name": "E-RADIX", + "symbol": "eXRD", + "display_symbol": null, + "optimized_symbol": "eXRD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6468e79a80c0eab0f9a2b574c8d5bc374af59414/2e02f4e196ecbfdc48156256092ea745.png", + "protocol_id": "radix", + "price": 0.04522928882257016, + "price_24h_change": -0.03939168492200707, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1603805479, + "amount": 71.05679786474816, + "raw_amount": 71056797864748170000, + "raw_amount_hex_str": "0x3da1c752ed50cb3b7" + }, + { + "id": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "chain": "eth", + "name": "Olympus", + "symbol": "OHM", + "display_symbol": null, + "optimized_symbol": "OHM", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5/0ad387f86fba0c16654cfb0f720df5d6.png", + "protocol_id": "olympusdao", + "price": 11.420638493562363, + "price_24h_change": -0.009471786973322615, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639209014, + "amount": 48.978654415, + "raw_amount": 48978654415, + "raw_amount_hex_str": "0xb675af4cf" + }, + { + "id": "0x64db005d040ee62e8fa202291c73e8a6151a0399", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7822197840382142, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649095346, + "amount": 2.074617375248661, + "raw_amount": 2074617375248661000, + "raw_amount_hex_str": "0x1cca8582d08cba0f" + }, + { + "id": "0x667102bd3413bfeaa3dffb48fa8288819e480a88", + "chain": "eth", + "name": "Tokenize Emblem", + "symbol": "TKX", + "display_symbol": null, + "optimized_symbol": "TKX", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x667102bd3413bfeaa3dffb48fa8288819e480a88/76c73234de2cd64ad7d946222611fd70.png", + "protocol_id": "", + "price": 5.840494715370567, + "price_24h_change": -0.024248298297605712, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1518449139, + "amount": 0.00034175, + "raw_amount": 34175, + "raw_amount_hex_str": "0x857f" + }, + { + "id": "0x67f117350eab45983374f4f83d275d8a5d62b1bf", + "chain": "eth", + "name": "Oats And Grains", + "symbol": "OG", + "display_symbol": null, + "optimized_symbol": "OG", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.15769035686178026, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680406619, + "amount": 1555.3428089990543, + "raw_amount": 1.5553428089990543e+21, + "raw_amount_hex_str": "0x5450b7ac39aadde0ec" + }, + { + "id": "0x67f8db40638d8e06ac78e1d04a805f59d11adf9b", + "chain": "eth", + "name": "Sense Space 1st July 2023 maDAI Sense Principal Token, A11", + "symbol": "SPACE-sP-maDAI:01-07-2023:11", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-maDAI:01-07-2023:11", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.9892200320750006, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1665427199, + "amount": 34.357809360083934, + "raw_amount": 34357809360083930000, + "raw_amount_hex_str": "0x1dccf7593d864d1a2" + }, + { + "id": "0x68037790a0229e9ce6eaa8a99ea92964106c4703", + "chain": "eth", + "name": "PAR Stablecoin", + "symbol": "PAR", + "display_symbol": null, + "optimized_symbol": "PAR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x68037790a0229e9ce6eaa8a99ea92964106c4703/3141498258ab923e325c2b7d0483bd31.png", + "protocol_id": "mimo", + "price": 1.054706986874975, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1607062049, + "amount": 449.4130662172098, + "raw_amount": 449413066217209800000, + "raw_amount_hex_str": "0x185cdbf2a1cfe4d38d" + }, + { + "id": "0x6810e776880c02933d47db1b9fc05908e5386b96", + "chain": "eth", + "name": "Gnosis Token", + "symbol": "GNO", + "display_symbol": null, + "optimized_symbol": "GNO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6810e776880c02933d47db1b9fc05908e5386b96/69e5fedeca09913fe078a8dca5b7e48c.png", + "protocol_id": "gnosis", + "price": 102.1, + "price_24h_change": -0.03130929791271358, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1492523116, + "amount": 9.393249233062354, + "raw_amount": 9393249233062355000, + "raw_amount_hex_str": "0x825b8668ef645fa5" + }, + { + "id": "0x68ca006db91312cd60a2238ce775be5f9f738bba", + "chain": "eth", + "name": "$ USDCGift.com", + "symbol": "$ USDCGift.com <- Visit to claim bonus", + "display_symbol": null, + "optimized_symbol": "$ USDCGift.com <- Visit to claim bonus", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668158975, + "amount": 7000, + "raw_amount": 7000, + "raw_amount_hex_str": "0x1b58" + }, + { + "id": "0x68e3266c9c8bbd44ad9dca5afbfe629022aee9fe", + "chain": "eth", + "name": "Balancer wjAURA wETH Pool", + "symbol": "B-wjAura-wETH", + "display_symbol": null, + "optimized_symbol": "B-wjAura-wETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.7457647243255128, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681226003, + "amount": 48.59402307235839, + "raw_amount": 48594023072358390000, + "raw_amount_hex_str": "0x2a260a685ab0ee1c0" + }, + { + "id": "0x6987633f18ca0b4a10831331fcc57211941b6ba0", + "chain": "eth", + "name": "20AGI-80WETH", + "symbol": "20AGI-80WETH", + "display_symbol": null, + "optimized_symbol": "20AGI-80WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 106.23140877039022, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682311763, + "amount": 0.768107945264947, + "raw_amount": 768107945264947000, + "raw_amount_hex_str": "0xaa8de1b4aac1ee5" + }, + { + "id": "0x6a556a2c2511e605a6c464ab5dccfdc0b19822e7", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1872.7553765315001, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647837528, + "amount": 0.000017053807901899, + "raw_amount": 17053807901899, + "raw_amount_hex_str": "0xf82a6297ccb" + }, + { + "id": "0x6a5ead5433a50472642cd268e584dafa5a394490", + "chain": "eth", + "name": "Balancer 50wstETH-50LDO", + "symbol": "50WSTETH-50LDO", + "display_symbol": null, + "optimized_symbol": "50WSTETH-50LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 61.82030130781986, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662739551, + "amount": 1.1424535e-11, + "raw_amount": 11424535, + "raw_amount_hex_str": "0xae5317" + }, + { + "id": "0x6a9603e481fb8f2c09804ea9adab49a338855b90", + "chain": "eth", + "name": "Balancer graviAURA Stable Pool", + "symbol": "B-graviAURA-STABLE", + "display_symbol": null, + "optimized_symbol": "B-graviAURA-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0270297965081296, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666780871, + "amount": 17.256669599237974, + "raw_amount": 17256669599237974000, + "raw_amount_hex_str": "0xef7c01921cdca6be" + }, + { + "id": "0x6ae5a7857aad26722cb02cc168e38c52e0e4e45d", + "chain": "eth", + "name": "Balancer TBY-feb1924 USDC Stable Pool", + "symbol": "TBY-feb1924-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "TBY-feb1924-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9995644947558746, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693245515, + "amount": 12.22128930722457, + "raw_amount": 12221289307224570000, + "raw_amount_hex_str": "0xa99abddfae66784a" + }, + { + "id": "0x6b175474e89094c44da98b954eedeac495271d0f", + "chain": "eth", + "name": "Dai Stablecoin", + "symbol": "DAI", + "display_symbol": "", + "optimized_symbol": "DAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6b175474e89094c44da98b954eedeac495271d0f/549c4205dbb199f1b8b03af783f35e71.png", + "protocol_id": "makerdao", + "price": 0.99995, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1573672677, + "amount": 203.81262043407503, + "raw_amount": 203812620434075030000, + "raw_amount_hex_str": "0xb0c77e27072902f3a" + }, + { + "id": "0x6f0ed6f346007563d3266de350d174a831bde0ca", + "chain": "eth", + "name": "Balancer 50KNC-25WETH-25USDC", + "symbol": "50KNC-25WETH-25USDC-BPT", + "display_symbol": null, + "optimized_symbol": "50KNC-25WETH-25USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.22172699359766, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693075463, + "amount": 353.80388560509425, + "raw_amount": 353803885605094300000, + "raw_amount_hex_str": "0x132e03e76cac95c0a1" + }, + { + "id": "0x6f4906c181e6acb096908238c5ffd088cca6ba9f", + "chain": "eth", + "name": "\"ChadPepe\"", + "symbol": "CPEPE", + "display_symbol": null, + "optimized_symbol": "CPEPE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.048690999439153546, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683295967, + "amount": 5801.7304551870375, + "raw_amount": 5.801730455187037e+21, + "raw_amount_hex_str": "0x13a832f261b74b3a787" + }, + { + "id": "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8", + "chain": "eth", + "name": "Silo Governance Token", + "symbol": "Silo", + "display_symbol": null, + "optimized_symbol": "Silo", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8/09fe11bd3f4cef64f9bd378ba3958402.png", + "protocol_id": "silo", + "price": 0.052365389864442925, + "price_24h_change": 0.013439224967416933, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638296826, + "amount": 7526.388735982895, + "raw_amount": 7.526388735982895e+21, + "raw_amount_hex_str": "0x19801a036dc21b69a7b" + }, + { + "id": "0x70d5e3234f6329c1d5a26796dcf4e109d69a3488", + "chain": "eth", + "name": "Balancer uniETH/wstETH/rETH", + "symbol": "uniETH/wstETH/rETH", + "display_symbol": null, + "optimized_symbol": "uniETH/wstETH/rETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1769.4111285546057, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693833479, + "amount": 0.057635251621896796, + "raw_amount": 57635251621896800, + "raw_amount_hex_str": "0xccc2f4bb76a25c" + }, + { + "id": "0x7152a37bbf363262bad269ec4de2269dd0e84ca3", + "chain": "eth", + "name": "50DC50WETH", + "symbol": "50DC50WETH", + "display_symbol": null, + "optimized_symbol": "50DC50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.2508327890794548, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667605751, + "amount": 1.142e-15, + "raw_amount": 1142, + "raw_amount_hex_str": "0x476" + }, + { + "id": "0x720465a4ae6547348056885060eeb51f9cadb571", + "chain": "eth", + "name": "Element Principal Token yvcrvSTETH-28JAN22", + "symbol": "ePyvcrvSTETH-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvcrvSTETH-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1925.2884865883493, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631804744, + "amount": 0.11136072164257546, + "raw_amount": 111360721642575470, + "raw_amount_hex_str": "0x18ba1fc7f6fd669" + }, + { + "id": "0x724e3073317d4b1a8d0c6e89b137ea5af1f4051e", + "chain": "eth", + "name": "Element Principal Token yvCurve-stETH-24FEB23", + "symbol": "ePyvCurve-stETH-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-stETH-24FEB23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1925.2884865883493, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661789184, + "amount": 0.02671914687826391, + "raw_amount": 26719146878263910, + "raw_amount_hex_str": "0x5eecec2a616266" + }, + { + "id": "0x74e5e53056526b2609d82e85486005ef2a2db001", + "chain": "eth", + "name": "Balancer TruMATIC-MATIC Stable Pool", + "symbol": "TruMATIC-MATIC", + "display_symbol": null, + "optimized_symbol": "TruMATIC-MATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.3115090060843648, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697199371, + "amount": 0.0777906611414486, + "raw_amount": 77790661141448600, + "raw_amount_hex_str": "0x1145e31b42dc79d" + }, + { + "id": "0x758b4684be769e92eefea93f60dda0181ea303ec", + "chain": "eth", + "name": "Phonon DAO", + "symbol": "PHONON", + "display_symbol": null, + "optimized_symbol": "PHONON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x758b4684be769e92eefea93f60dda0181ea303ec/f305fb475c9f724396997a1a9aa3b02d.png", + "protocol_id": "", + "price": 0.00017097666959240419, + "price_24h_change": -0.03094558331597449, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639714953, + "amount": 1090693.6633654584, + "raw_amount": 1.0906936633654584e+24, + "raw_amount_hex_str": "0xe6f69f393830acae8937" + }, + { + "id": "0x759fabc513accd292ada967c4dd7bb94da39232e", + "chain": "eth", + "name": "Balancer 80RATE/20WETH", + "symbol": "80RATE/20WETH-BPT", + "display_symbol": null, + "optimized_symbol": "80RATE/20WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.71065026005433, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689819743, + "amount": 8.203419674792787, + "raw_amount": 8203419674792788000, + "raw_amount_hex_str": "0x71d866bb0b797f74" + }, + { + "id": "0x76e5f9860bd5b8666de322496f114b8a89183a2e", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.8604535365947557, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649095788, + "amount": 0.000741914814615684, + "raw_amount": 741914814615684, + "raw_amount_hex_str": "0x2a2c480fa9084" + }, + { + "id": "0x7758237b1ee34b7e702c5315f562b859481e344b", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6362135216457971, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697488691, + "amount": 3.649306226029704, + "raw_amount": 3649306226029704000, + "raw_amount_hex_str": "0x32a4f0ad7f1f331c" + }, + { + "id": "0x77b692c5ca2cceaeef4dcc959d6c3bd919710b66", + "chain": "eth", + "name": "80BREWSKI-20USDC", + "symbol": "80BREWSKI-20USDC", + "display_symbol": null, + "optimized_symbol": "80BREWSKI-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00012403896904347131, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685788019, + "amount": 16201.113696626731, + "raw_amount": 1.6201113696626731e+22, + "raw_amount_hex_str": "0x36e439e3de72006d59d" + }, + { + "id": "0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d", + "chain": "eth", + "name": "Balancer vETH StablePool", + "symbol": "B-vETH-STABLE", + "display_symbol": null, + "optimized_symbol": "B-vETH-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1798.6484978906672, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680627563, + "amount": 0.33558342512528766, + "raw_amount": 335583425125287700, + "raw_amount_hex_str": "0x4a83b58df1a06e8" + }, + { + "id": "0x7966c5bae631294d7cffcea5430b78c2f76db6fa", + "chain": "eth", + "name": "Staked Apecoin", + "symbol": "sAPE", + "display_symbol": null, + "optimized_symbol": "sAPE", + "decimals": 18, + "logo_url": null, + "protocol_id": "tessera", + "price": 2.067818347496682, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670860487, + "amount": 0.000908881765567925, + "raw_amount": 908881765567925, + "raw_amount_hex_str": "0x33a9f86c78db5" + }, + { + "id": "0x798b112420ad6391a4129ac25ef59663a44c88bb", + "chain": "eth", + "name": "Balancer 50wstETH-50ACX Pool", + "symbol": "wstETH-ACX", + "display_symbol": null, + "optimized_symbol": "wstETH-ACX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 11.025266441681248, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669644575, + "amount": 0.000251668816281154, + "raw_amount": 251668816281154, + "raw_amount_hex_str": "0xe4e436653e42" + }, + { + "id": "0x799ebfabe77a6e34311eeee9825190b9ece32824", + "chain": "eth", + "name": "BTRST", + "symbol": "BTRST", + "display_symbol": null, + "optimized_symbol": "BTRST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x799ebfabe77a6e34311eeee9825190b9ece32824/e6385202dd2bd0c1b0b3d28cb5bc459b.png", + "protocol_id": "", + "price": 0.4007, + "price_24h_change": 0.008811681772406856, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628607475, + "amount": 2468.4058564265565, + "raw_amount": 2.4684058564265567e+21, + "raw_amount_hex_str": "0x85d003403ec6c83045" + }, + { + "id": "0x79c58f70905f734641735bc61e45c19dd9ad60bc", + "chain": "eth", + "name": "Balancer USDC-DAI-USDT Stable Pool", + "symbol": "USDC-DAI-USDT", + "display_symbol": null, + "optimized_symbol": "USDC-DAI-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0039434144772157, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679700419, + "amount": 2479.0426717784126, + "raw_amount": 2.479042671778413e+21, + "raw_amount_hex_str": "0x8663a0cf739394fc44" + }, + { + "id": "0x79c71d3436f39ce382d0f58f1b011d88100b9d91", + "chain": "eth", + "name": "Xeonbit Token", + "symbol": "XNS", + "display_symbol": null, + "optimized_symbol": "XNS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x79c71d3436f39ce382d0f58f1b011d88100b9d91/46f0db9a119b111002c5f1c8ec7bd156.png", + "protocol_id": "", + "price": 0.009583713259492978, + "price_24h_change": -0.014215738176306267, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1554428953, + "amount": 89.69343767614153, + "raw_amount": 89693437676141530000, + "raw_amount_hex_str": "0x4dcbf1a59aa0dd33d" + }, + { + "id": "0x7a6b87d7a874fce4c2d923b09c0e09e4936bcf57", + "chain": "eth", + "name": "$ USTBonus.com", + "symbol": "$ Visit USTBonus.com to claim", + "display_symbol": null, + "optimized_symbol": "$ Visit USTBonus.com to claim", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669300319, + "amount": 7000, + "raw_amount": 7000, + "raw_amount_hex_str": "0x1b58" + }, + { + "id": "0x7b4328c127b85369d9f82ca0503b000d09cf9180", + "chain": "eth", + "name": "Dogechain Token", + "symbol": "DC", + "display_symbol": null, + "optimized_symbol": "DC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b4328c127b85369d9f82ca0503b000d09cf9180/b3b8446c1a6ee2ef9e7ce6c28d433130.png", + "protocol_id": "", + "price": 0.0006296423022767257, + "price_24h_change": 0.06948947426502794, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1661076494, + "amount": 6331.425637225221, + "raw_amount": 6.331425637225221e+21, + "raw_amount_hex_str": "0x1573a2e77b9c2833e4c" + }, + { + "id": "0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool (USD)", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2/44cee7bfd13a23eb37912d7da66f18eb.png", + "protocol_id": "balancer2", + "price": 0.003621222826238903, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639435704, + "amount": 143.81279664606467, + "raw_amount": 143812796646064670000, + "raw_amount_hex_str": "0x7cbcdb098c42c3de8" + }, + { + "id": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "chain": "eth", + "name": "Matic Token", + "symbol": "MATIC", + "display_symbol": null, + "optimized_symbol": "MATIC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0/20aac20baa9069bd39342edd8c5cc801.png", + "protocol_id": "", + "price": 0.6214, + "price_24h_change": -0.017707509881422907, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1555778052, + "amount": 193.85760036698986, + "raw_amount": 193857600366989840000, + "raw_amount_hex_str": "0xa82508c6ea410a3d2" + }, + { + "id": "0x7d98f308db99fdd04bbf4217a4be8809f38faa64", + "chain": "eth", + "name": "Balancer 80wstETH/20GHO", + "symbol": "80wstETH/20GHO", + "display_symbol": null, + "optimized_symbol": "80wstETH/20GHO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 360.2592427786895, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689434447, + "amount": 7.225159539119444, + "raw_amount": 7225159539119444000, + "raw_amount_hex_str": "0x6444ec51febd514c" + }, + { + "id": "0x7e4fee0c14673db4f1526fdbea53819e5808a9b5", + "chain": "eth", + "name": "Element Principal Token yvBalancer-BoostedAaveUSD-04MAY23", + "symbol": "ePyvBalancer-BoostedAaveUSD-04MAY23", + "display_symbol": null, + "optimized_symbol": "ePyvBalancer-BoostedAaveUSD-04MAY23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.0003299308762658923, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667421959, + "amount": 18.26159065163822, + "raw_amount": 18261590651638219000, + "raw_amount_hex_str": "0xfd6e33f1907d8263" + }, + { + "id": "0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f", + "chain": "eth", + "name": "baoUSD-LUSD StablePool", + "symbol": "B-baoUSD-LUSD-BPT", + "display_symbol": null, + "optimized_symbol": "B-baoUSD-LUSD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.5312002089807235, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681222379, + "amount": 103.76341805729058, + "raw_amount": 103763418057290580000, + "raw_amount_hex_str": "0x5a001b6f60128771c" + }, + { + "id": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH", + "display_symbol": null, + "optimized_symbol": "wstETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0/7e931af8cb34b6f5671ca2eb1b847849.png", + "protocol_id": "lido", + "price": 2023.5912095864503, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1613752640, + "amount": 3.7199077967770227, + "raw_amount": 3719907796777022500, + "raw_amount_hex_str": "0x339fc46ea819b436" + }, + { + "id": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "chain": "eth", + "name": "Aave Token", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9/eee087b66747b09dbfb4ba0b34fd3697.png", + "protocol_id": "aave", + "price": 78.40979858559626, + "price_24h_change": -0.06924943280133004, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600970788, + "amount": 2.5690012253175043, + "raw_amount": 2569001225317504000, + "raw_amount_hex_str": "0x23a6ed00d697d45d" + }, + { + "id": "0x7fce0080031e3639cb8b40e21ea59f8f3d840935", + "chain": "eth", + "name": "Eva Token", + "symbol": "EVA", + "display_symbol": null, + "optimized_symbol": "EVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676596199, + "amount": 3331120.881749351, + "raw_amount": 3.331120881749351e+24, + "raw_amount_hex_str": "0x2c1646cc2543322b14f35" + }, + { + "id": "0x808507121b80c02388fad14726482e061b8da827", + "chain": "eth", + "name": "Pendle", + "symbol": "PENDLE", + "display_symbol": null, + "optimized_symbol": "PENDLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x808507121b80c02388fad14726482e061b8da827/b9351f830cd0a6457e489b8c685f29ad.png", + "protocol_id": "pendle", + "price": 0.7933555692627594, + "price_24h_change": -0.026018277725834017, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619495943, + "amount": 1898.5326143750322, + "raw_amount": 1.8985326143750322e+21, + "raw_amount_hex_str": "0x66eb6ec9eacd763370" + }, + { + "id": "0x809d62f1c6e35720fd88df1c9fa7dec82b6ada52", + "chain": "eth", + "name": "ASAHI", + "symbol": "SUN", + "display_symbol": null, + "optimized_symbol": "SUN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650730353, + "amount": 197971097.59001258, + "raw_amount": 1.979710975900126e+26, + "raw_amount_hex_str": "0xa3c202b46f2fc6d175b1de" + }, + { + "id": "0x81b7f92c7b7d9349b989b4982588761bfa1aa627", + "chain": "eth", + "name": "4Pool Chainlink V2", + "symbol": "BUSD-DAI-USDC-BPT-USDT", + "display_symbol": null, + "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.540574222988568, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669068491, + "amount": 5.25596e-13, + "raw_amount": 525596, + "raw_amount_hex_str": "0x8051c" + }, + { + "id": "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321", + "chain": "eth", + "name": "VitaDAO Token", + "symbol": "VITA", + "display_symbol": null, + "optimized_symbol": "VITA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321/ed46cc2757ddd792be9ec3b7218ef336.png", + "protocol_id": "", + "price": 1.9867338504462653, + "price_24h_change": -0.010193938809407933, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623977434, + "amount": 926.9945761778582, + "raw_amount": 926994576177858200000, + "raw_amount_hex_str": "0x3240a24f9b23069ea7" + }, + { + "id": "0x8290333cef9e6d528dd5618fb97a76f268f3edd4", + "chain": "eth", + "name": "Ankr Network", + "symbol": "ANKR", + "display_symbol": null, + "optimized_symbol": "ANKR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8290333cef9e6d528dd5618fb97a76f268f3edd4/7184a29596bf7517a912b57ce6797562.png", + "protocol_id": "ankr", + "price": 0.021546211502302456, + "price_24h_change": 0.029552679943138954, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1550710665, + "amount": 8492.055815610045, + "raw_amount": 8.492055815610046e+21, + "raw_amount_hex_str": "0x1cc5af2db7512e50e04" + }, + { + "id": "0x8334215586e93ee85e3f1a281eaf66e52015754d", + "chain": "eth", + "name": "50WETH-50FIEF", + "symbol": "50WETH-50FIEF", + "display_symbol": null, + "optimized_symbol": "50WETH-50FIEF", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6602406681684191, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687974707, + "amount": 1.9393936932856752, + "raw_amount": 1939393693285675300, + "raw_amount_hex_str": "0x1aea1c49e7ecf10d" + }, + { + "id": "0x8353157092ed8be69a9df8f95af097bbf33cb2af", + "chain": "eth", + "name": "Balancer GHO/USDT/USDC", + "symbol": "GHO/USDT/USDC", + "display_symbol": null, + "optimized_symbol": "GHO/USDT/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9618564908229748, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692910907, + "amount": 5922.005322877433, + "raw_amount": 5.922005322877433e+21, + "raw_amount_hex_str": "0x1410855510731d9f656" + }, + { + "id": "0x83d392a7be901892a8c861c96ea430b8d9c2bd51", + "chain": "eth", + "name": "Element Principal Token yvCurve-LUSD-16SEP22", + "symbol": "ePyvCurve-LUSD-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-LUSD-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0245927061352782, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650388639, + "amount": 31.23523832948818, + "raw_amount": 31235238329488180000, + "raw_amount_hex_str": "0x1b179dbc4efcefd6d" + }, + { + "id": "0x853d955acef822db058eb8505911ed77f175b99e", + "chain": "eth", + "name": "Frax", + "symbol": "FRAX", + "display_symbol": null, + "optimized_symbol": "FRAX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x853d955acef822db058eb8505911ed77f175b99e/4f323e33bfffa864c577e7bd2a3257c9.png", + "protocol_id": "frax", + "price": 0.999487476278316, + "price_24h_change": 0.00010708557421599937, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608140520, + "amount": 25.27221215404488, + "raw_amount": 25272212154044880000, + "raw_amount_hex_str": "0x15eb8ef0e62279189" + }, + { + "id": "0x865377367054516e17014ccded1e7d814edc9ce4", + "chain": "eth", + "name": "Dola USD Stablecoin", + "symbol": "DOLA", + "display_symbol": null, + "optimized_symbol": "DOLA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x865377367054516e17014ccded1e7d814edc9ce4/0c348eedfa7f89d3db2919e0a18988ea.png", + "protocol_id": "inverse", + "price": 0.9967009836394617, + "price_24h_change": -0.0001648920537217418, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614116357, + "amount": 2801.414036030161, + "raw_amount": 2.801414036030161e+21, + "raw_amount_hex_str": "0x97dd6df73de314e944" + }, + { + "id": "0x87a867f5d240a782d43d90b6b06dea470f3f8f22", + "chain": "eth", + "name": "Balancer 50COMP-50wstETH BPT", + "symbol": "B-50COMP-50wstETH", + "display_symbol": null, + "optimized_symbol": "B-50COMP-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 300.1112333191586, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681328963, + "amount": 3.919751066695455, + "raw_amount": 3919751066695455000, + "raw_amount_hex_str": "0x3665c0d3d2575160" + }, + { + "id": "0x8888801af4d980682e47f1a9036e589479e835c5", + "chain": "eth", + "name": "88mph.app", + "symbol": "MPH", + "display_symbol": null, + "optimized_symbol": "MPH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8888801af4d980682e47f1a9036e589479e835c5/32058e0e8684004754562c90f458e744.png", + "protocol_id": "88mph2", + "price": 0.5879645672741751, + "price_24h_change": -0.021605370126492343, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1605809018, + "amount": 337.3166567438649, + "raw_amount": 337316656743864860000, + "raw_amount_hex_str": "0x1249358020d870528b" + }, + { + "id": "0x888888435fde8e7d4c54cab67f206e4199454c60", + "chain": "eth", + "name": "DFX Token", + "symbol": "DFX", + "display_symbol": null, + "optimized_symbol": "DFX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x888888435fde8e7d4c54cab67f206e4199454c60/eaad30c2bb118c5cfee13eac513aa1a8.png", + "protocol_id": "dfx", + "price": 0.06448281307151603, + "price_24h_change": 0.2369705143184812, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1610615371, + "amount": 15056.62803241407, + "raw_amount": 1.5056628032414069e+22, + "raw_amount_hex_str": "0x33038b05e0bdd4458d7" + }, + { + "id": "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab", + "chain": "eth", + "name": "Alchemist", + "symbol": "⚗️", + "display_symbol": "MIST", + "optimized_symbol": "MIST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab/bd99a167b17de42b302a00d8ec78f32f.png", + "protocol_id": "crucible", + "price": 0.890653928414026, + "price_24h_change": -0.024404166623835565, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612643126, + "amount": 11.493286646362273, + "raw_amount": 11493286646362274000, + "raw_amount_hex_str": "0x9f805b4f9229f606" + }, + { + "id": "0x89045d0af6a12782ec6f701ee6698beaf17d0ea2", + "chain": "eth", + "name": "iUPixel", + "symbol": "PIXEL", + "display_symbol": null, + "optimized_symbol": "PIXEL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x89045d0af6a12782ec6f701ee6698beaf17d0ea2/964c07a3fb571d24f5aa601e9d3fe80f.png", + "protocol_id": "", + "price": 0.00027002270708868244, + "price_24h_change": -0.014122735151342795, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602981698, + "amount": 460337.16721424105, + "raw_amount": 4.603371672142411e+23, + "raw_amount_hex_str": "0x617aed86d282c31957db" + }, + { + "id": "0x8987a07ba83607a66c7351266e771fb865c9ca6c", + "chain": "eth", + "name": "Cage Governance Token", + "symbol": "CGT", + "display_symbol": null, + "optimized_symbol": "CGT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8987a07ba83607a66c7351266e771fb865c9ca6c/c80a5505fccd765c0a1ba4b67a6e4e3d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637143700, + "amount": 15.790961789893558, + "raw_amount": 15790961789893558000, + "raw_amount_hex_str": "0xdb24c415745f3ee7" + }, + { + "id": "0x8a2228705ec979961f0e16df311debcf097a2766", + "chain": "eth", + "name": "Element Principal Token yvUSDC-28JAN22", + "symbol": "ePyvUSDC-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-28JAN22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1.0000000000000004, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631632129, + "amount": 31.567058, + "raw_amount": 31567058, + "raw_amount_hex_str": "0x1e1acd2" + }, + { + "id": "0x8b66c529148690891a187379dbdb2873a4e0c449", + "chain": "eth", + "name": "Moonerium", + "symbol": "Moonerium", + "display_symbol": null, + "optimized_symbol": "Moonerium", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 41.646952095314504, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684417919, + "amount": 0.001408899266208972, + "raw_amount": 1408899266208972, + "raw_amount_hex_str": "0x50162ec4964cc" + }, + { + "id": "0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0", + "chain": "eth", + "name": "Balancer 50TEMPLE-50DAI", + "symbol": "50TEMPLE-50DAI", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0394445967332144, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680238631, + "amount": 4213.439122231359, + "raw_amount": 4.213439122231359e+21, + "raw_amount_hex_str": "0xe46936cde985d792aa" + }, + { + "id": "0x8c5f3c967eef7da094582d831fb1c80f92ecf5dd", + "chain": "eth", + "name": "50SNT-50WETH", + "symbol": "50SNT-50WETH", + "display_symbol": null, + "optimized_symbol": "50SNT-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 7.094886473655004, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677476783, + "amount": 4.507904505321695, + "raw_amount": 4507904505321694700, + "raw_amount_hex_str": "0x3e8f4b43811526e3" + }, + { + "id": "0x8d6cebd76f18e1558d4db88138e2defb3909fad6", + "chain": "eth", + "name": "Mai Stablecoin", + "symbol": "MAI", + "display_symbol": null, + "optimized_symbol": "MAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mai/295a642804394964de762d65824294cf.png", + "protocol_id": "mai", + "price": 0.7296656679651389, + "price_24h_change": -0.028019741514051053, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1658859288, + "amount": 0.007052559459577903, + "raw_amount": 7052559459577903, + "raw_amount_hex_str": "0x190e43f558702f" + }, + { + "id": "0x8d7acc5d07818f187ab70b6033c690fd67c96d98", + "chain": "eth", + "name": "PlannerDAO", + "symbol": "PLAN", + "display_symbol": null, + "optimized_symbol": "PLAN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621455716, + "amount": 4.27784690352388, + "raw_amount": 4277846903523880000, + "raw_amount_hex_str": "0x3b5df718000bac1a" + }, + { + "id": "0x8e6c196e201942246cef85718c5d3a5622518053", + "chain": "eth", + "name": "Balancer 80 LE 20 WETH", + "symbol": "B-80LE-20WETH", + "display_symbol": null, + "optimized_symbol": "B-80LE-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.1676593047256713, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1688136155, + "amount": 6.233801427684616, + "raw_amount": 6233801427684616000, + "raw_amount_hex_str": "0x5682e95ed176e6d1" + }, + { + "id": "0x8e85e97ed19c0fa13b2549309965291fbbc0048b", + "chain": "eth", + "name": "sfrxETH-stETH-rETH StablePool", + "symbol": "sfrxETH-stETH-rETH-BPT", + "display_symbol": null, + "optimized_symbol": "sfrxETH-stETH-rETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1862.370308524653, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667418911, + "amount": 6.9161748152e-8, + "raw_amount": 69161748152, + "raw_amount_hex_str": "0x101a5c86b8" + }, + { + "id": "0x8ed9e70bfa17a1e2c4f8e561c8d0c2d1acc092fa", + "chain": "eth", + "name": "33LCNY-33LUSD-33WETH", + "symbol": "33LCNY-33LUSD-33WETH", + "display_symbol": null, + "optimized_symbol": "33LCNY-33LUSD-33WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 6.958296386342504, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692519623, + "amount": 1.930678182506807, + "raw_amount": 1930678182506806800, + "raw_amount_hex_str": "0x1acb2593ebea3e33" + }, + { + "id": "0x9001cbbd96f54a658ff4e6e65ab564ded76a5431", + "chain": "eth", + "name": "Balancer cbETH-Boosted Aave WETH StablePool", + "symbol": "cbETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "cbETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1798.2944610294987, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680874919, + "amount": 0.35409415617982215, + "raw_amount": 354094156179822200, + "raw_amount_hex_str": "0x4e9fec24c23d660" + }, + { + "id": "0x900db999074d9277c5da2a43f252d74366230da0", + "chain": "eth", + "name": "Giveth", + "symbol": "GIV", + "display_symbol": null, + "optimized_symbol": "GIV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x900db999074d9277c5da2a43f252d74366230da0/48a1779d740e93397c6204755092a146.png", + "protocol_id": "giveth", + "price": 0.007801984711702345, + "price_24h_change": -0.026470693489453037, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639666178, + "amount": 7019.957242057263, + "raw_amount": 7.019957242057263e+21, + "raw_amount_hex_str": "0x17c8d7a1e52d607759f" + }, + { + "id": "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc", + "chain": "eth", + "name": "MIMO Parallel Governance Token", + "symbol": "MIMO", + "display_symbol": null, + "optimized_symbol": "MIMO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mimo/6af9a128dea021ebe53a281780a7ebb5.png", + "protocol_id": "mimo", + "price": 0.01247039, + "price_24h_change": 0.03256835686831058, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1615370586, + "amount": 9776.11872230804, + "raw_amount": 9.77611872230804e+21, + "raw_amount_hex_str": "0x211f6e6b5d7a0664d85" + }, + { + "id": "0x90eeee265528fa9aa620c19d45c644655de1fa81", + "chain": "eth", + "name": "Eva Token", + "symbol": "EVA", + "display_symbol": null, + "optimized_symbol": "EVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 6.163107524619244e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675064363, + "amount": 16052929.27629729, + "raw_amount": 1.605292927629729e+25, + "raw_amount_hex_str": "0xd47570a30b7e9bda1bd1b" + }, + { + "id": "0x92915c346287ddfbcec8f86c8eb52280ed05b3a3", + "chain": "eth", + "name": "Amplesense Elastic Finance token", + "symbol": "EEFI", + "display_symbol": null, + "optimized_symbol": "EEFI", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 1.4812585469325008, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1644855585, + "amount": 133.18463722073648, + "raw_amount": 133184637220736480000, + "raw_amount_hex_str": "0x7384ee1e8e9442777" + }, + { + "id": "0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd", + "chain": "eth", + "name": "Balancer wstETH-WETH Stable Pool", + "symbol": "wstETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1784.2697298306564, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692039167, + "amount": 10.51813378778557, + "raw_amount": 10518133787785570000, + "raw_amount_hex_str": "0x91f7eaf3d8fe29b5" + }, + { + "id": "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593", + "chain": "eth", + "name": "StaFi", + "symbol": "rETH", + "display_symbol": null, + "optimized_symbol": "rETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593/1f7543f59d45f4b362c6d1802dcd1b00.png", + "protocol_id": "stafi", + "price": 1885.5112727328603, + "price_24h_change": -0.008713894791642014, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611803201, + "amount": 2.560549226407878, + "raw_amount": 2560549226407878000, + "raw_amount_hex_str": "0x2388e5f47df15efa" + }, + { + "id": "0x959216bb492b2efa72b15b7aacea5b5c984c3cca", + "chain": "eth", + "name": "Balancer 50wstETH-50Tessera-Boosted-APE", + "symbol": "50wstETH-50stk-APE", + "display_symbol": null, + "optimized_symbol": "50wstETH-50stk-APE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 54.42570715512521, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675958315, + "amount": 0.000049988662366821, + "raw_amount": 49988662366821, + "raw_amount_hex_str": "0x2d76e4769265" + }, + { + "id": "0x95a4492f028aa1fd432ea71146b433e7b4446611", + "chain": "eth", + "name": "APY Governance Token", + "symbol": "APY", + "display_symbol": null, + "optimized_symbol": "APY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x95a4492f028aa1fd432ea71146b433e7b4446611/31f5a55b09524c2f39c8fbab8b9eb25d.png", + "protocol_id": "apy", + "price": 0.0025684949127765854, + "price_24h_change": -0.014561808272310808, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1604545092, + "amount": 5.32007461666674, + "raw_amount": 5320074616666740000, + "raw_amount_hex_str": "0x49d4b3ad48fe5524" + }, + { + "id": "0x95f1a3ca4af4d08b9c42d65ef07b66e8222ed85a", + "chain": "eth", + "name": "50somm-50WETH", + "symbol": "50somm-50WETH", + "display_symbol": null, + "optimized_symbol": "50somm-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 14.688314508249002, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691465927, + "amount": 11.162820569766506, + "raw_amount": 11162820569766504000, + "raw_amount_hex_str": "0x9aea4e2a405b2b7a" + }, + { + "id": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", + "chain": "eth", + "name": "TenX Community JAPAN", + "symbol": "TXJP", + "display_symbol": null, + "optimized_symbol": "TXJP", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 68.15258759677886, + "price_24h_change": -0.016513302382474906, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1508827879, + "amount": 0.72110039, + "raw_amount": 72110039, + "raw_amount_hex_str": "0x44c4fd7" + }, + { + "id": "0x965d79f1a1016b574a62986e13ca8ab04dfdd15c", + "chain": "eth", + "name": "M2", + "symbol": "M2", + "display_symbol": null, + "optimized_symbol": "M2", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x965d79f1a1016b574a62986e13ca8ab04dfdd15c/9c4c98bb688cad9d0775e42311676045.png", + "protocol_id": "m2cash", + "price": 0.0006205038071853349, + "price_24h_change": -0.014939917365496146, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619741983, + "amount": 2795821.6405671514, + "raw_amount": 2.7958216405671515e+24, + "raw_amount_hex_str": "0x25009cb79edeb9ba9fcc6" + }, + { + "id": "0x97e6e31afb2d93d437301e006d9da714616766a5", + "chain": "eth", + "name": "Midas", + "symbol": "MIDAS", + "display_symbol": null, + "optimized_symbol": "MIDAS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x97e6e31afb2d93d437301e006d9da714616766a5/9804ef6af458909c9f41570042527eaa.png", + "protocol_id": "", + "price": 0, + "price_24h_change": 0.17733797952296151, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1667822315, + "amount": 1.4449879581191298, + "raw_amount": 1444987958119129900, + "raw_amount_hex_str": "0x140da0e45c686335" + }, + { + "id": "0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63", + "chain": "eth", + "name": "SONM Token", + "symbol": "SNM", + "display_symbol": null, + "optimized_symbol": "SNM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63/c1fdffa2e62a946fda0b8142da1aee6c.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1497526685, + "amount": 70.76889600927694, + "raw_amount": 70768896009276940000, + "raw_amount_hex_str": "0x3d61d9ff88382e0ce" + }, + { + "id": "0x99c88ad7dc566616548adde8ed3effa730eb6c34", + "chain": "eth", + "name": "Balancer Gearboox Boosted StablePool", + "symbol": "bb-g-USD", + "display_symbol": null, + "optimized_symbol": "bb-g-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.01602428071424236, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676566427, + "amount": 693.3828488214735, + "raw_amount": 693382848821473600000, + "raw_amount_hex_str": "0x25969ebb4da84f2f90" + }, + { + "id": "0x9b532ab955417afd0d012eb9f7389457cd0ea712", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.3940044671460722, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660860422, + "amount": 0.020381305014858703, + "raw_amount": 20381305014858704, + "raw_amount_hex_str": "0x4868b05d7833d0" + }, + { + "id": "0x9b692f571b256140a39a34676bffa30634c586e1", + "chain": "eth", + "name": "Balancer Idle JuniorBY Boosted StablePool", + "symbol": "bb-i-USD", + "display_symbol": null, + "optimized_symbol": "bb-i-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9904846474501259, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689516275, + "amount": 16.970204340500405, + "raw_amount": 16970204340500406000, + "raw_amount_hex_str": "0xeb8246ef89519d02" + }, + { + "id": "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050", + "chain": "eth", + "name": "Tracer", + "symbol": "TCR", + "display_symbol": null, + "optimized_symbol": "TCR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050/9b533f8265c54ab60417e8e06767c30c.png", + "protocol_id": "", + "price": 0.0015089402713045709, + "price_24h_change": -0.014260567303193139, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1609975395, + "amount": 0.001036534736409761, + "raw_amount": 1036534736409761, + "raw_amount_hex_str": "0x3aeb90cc2d4a1" + }, + { + "id": "0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd", + "chain": "eth", + "name": "80Silo-20WETH", + "symbol": "80Silo-20WETH", + "display_symbol": null, + "optimized_symbol": "80Silo-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.354165579878401, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678213451, + "amount": 114.1888705436606, + "raw_amount": 114188870543660600000, + "raw_amount_hex_str": "0x630b05cc2c9f4aab0" + }, + { + "id": "0x9d1089802ee608ba84c5c98211afe5f37f96b36c", + "chain": "eth", + "name": "Fluid USDC", + "symbol": "fUSDC", + "display_symbol": null, + "optimized_symbol": "fUSDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9d1089802ee608ba84c5c98211afe5f37f96b36c/acda24faa880ba0b7dd1ac519dc945a6.png", + "protocol_id": "fluidity", + "price": 1.0052341311647672, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1662012933, + "amount": 0.017477, + "raw_amount": 17477, + "raw_amount_hex_str": "0x4445" + }, + { + "id": "0x9f41a3d1ec37090e52a9102b24bc6921a813925f", + "chain": "eth", + "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-06-2027:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1225.9616644169912, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659544897, + "amount": 0.024732245637773362, + "raw_amount": 24732245637773364, + "raw_amount_hex_str": "0x57ddd8abbcb833" + }, + { + "id": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "chain": "eth", + "name": "Maker", + "symbol": "MKR", + "display_symbol": null, + "optimized_symbol": "MKR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2/1d0390168de63ca803e8db7990e4f6ec.png", + "protocol_id": "makerdao", + "price": 1394.2718061118549, + "price_24h_change": -0.04380650530097541, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1511634257, + "amount": 0.8326430766528391, + "raw_amount": 832643076652839000, + "raw_amount_hex_str": "0xb8e24777894b098" + }, + { + "id": "0x9f9d900462492d4c21e9523ca95a7cd86142f298", + "chain": "eth", + "name": "Balancer 50rETH-50RPL", + "symbol": "50rETH-50RPL", + "display_symbol": null, + "optimized_symbol": "50rETH-50RPL", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 217.07615105070374, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675890263, + "amount": 4.870829811646007, + "raw_amount": 4870829811646007000, + "raw_amount_hex_str": "0x4398a9e82c8b06c5" + }, + { + "id": "0xa00486f88c98e2131e043e6b28fa53d46db7e6c7", + "chain": "eth", + "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-12-2022:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1852.2173195140576, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652967472, + "amount": 0.03866396606896321, + "raw_amount": 38663966068963210, + "raw_amount_hex_str": "0x895cac1b25f789" + }, + { + "id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "chain": "eth", + "name": "USD Coin", + "symbol": "USDC", + "display_symbol": null, + "optimized_symbol": "USDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdc/e87790bfe0b3f2ea855dc29069b38818.png", + "protocol_id": "", + "price": 1, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1533324504, + "amount": 4584.52945, + "raw_amount": 4584529450, + "raw_amount_hex_str": "0x111425e2a" + }, + { + "id": "0xa13a9247ea42d743238089903570127dda72fe44", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa13a9247ea42d743238089903570127dda72fe44/44cee7bfd13a23eb37912d7da66f18eb.png", + "protocol_id": "balancer2", + "price": 0.0003299308762658923, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662537668, + "amount": 15.771330510513138, + "raw_amount": 15771330510513138000, + "raw_amount_hex_str": "0xdadf058a0a6a6a4a" + }, + { + "id": "0xa279dab6ec190ee4efce7da72896eb58ad533262", + "chain": "eth", + "name": "yfu.finance", + "symbol": "YFU", + "display_symbol": null, + "optimized_symbol": "YFU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa279dab6ec190ee4efce7da72896eb58ad533262/4cae6b44cb432fd05b4ed4b6986bbc86.png", + "protocol_id": "", + "price": 0.005794576821100159, + "price_24h_change": -0.011611914931681467, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600162041, + "amount": 18228.89948742489, + "raw_amount": 1.822889948742489e+22, + "raw_amount_hex_str": "0x3dc30cc8ef6d4b77ab8" + }, + { + "id": "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9", + "chain": "eth", + "name": "Tempus", + "symbol": "TEMP", + "display_symbol": null, + "optimized_symbol": "TEMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9/9d092f467bded810ccd2a1f8a7a341b3.png", + "protocol_id": "raft", + "price": 0.019113196703527596, + "price_24h_change": -0.0009577511138933511, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635510955, + "amount": 84424.556444262, + "raw_amount": 8.442455644426198e+22, + "raw_amount_hex_str": "0x11e0aa148195f762e7eb" + }, + { + "id": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2", + "chain": "eth", + "name": "Meta", + "symbol": "MTA", + "display_symbol": null, + "optimized_symbol": "MTA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2/17557a59ad21559db3e23e16ec1a16bd.png", + "protocol_id": "mstable", + "price": 0.033736490739556806, + "price_24h_change": -0.023123816721714558, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594635836, + "amount": 15213.74562970801, + "raw_amount": 1.521374562970801e+22, + "raw_amount_hex_str": "0x338bd2234572983c833" + }, + { + "id": "0xa68ccd2c3805c175c9f9caf30ae497e173dab30e", + "chain": "eth", + "name": "Sense Space 1st July 2023 cUSDC Sense Principal Token, A9", + "symbol": "SPACE-sP-cUSDC:01-07-2023:9", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-cUSDC:01-07-2023:9", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.6446770335636137, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660068889, + "amount": 91.58003837353839, + "raw_amount": 91580038373538380000, + "raw_amount_hex_str": "0x4f6eda7b05b65c726" + }, + { + "id": "0xa718042e5622099e5f0ace4e7122058ab39e1bbe", + "chain": "eth", + "name": "Balancer 50TEMPLE-50bb-euler-USD", + "symbol": "50TEMPLE-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.04349374026555, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675960415, + "amount": 0.006724969309434162, + "raw_amount": 6724969309434162, + "raw_amount_hex_str": "0x17e452eed07132" + }, + { + "id": "0xa9dd57145ca13a2f05199d85e3f2739af6478427", + "chain": "eth", + "name": "80TBTC-20WBTC", + "symbol": "80TBTC-20WBTC", + "display_symbol": null, + "optimized_symbol": "80TBTC-20WBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 28074.499458558585, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691731199, + "amount": 0.000021838039836179, + "raw_amount": 21838039836179, + "raw_amount_hex_str": "0x13dc909b6613" + }, + { + "id": "0xab3af7f0c93ec60bce469649bfefda0de0980993", + "chain": "eth", + "name": "$ rEthLP.com", + "symbol": "$ rEthLP.com", + "display_symbol": null, + "optimized_symbol": "$ rEthLP.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687618163, + "amount": 5000, + "raw_amount": 5000, + "raw_amount_hex_str": "0x1388" + }, + { + "id": "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf", + "chain": "eth", + "name": "Paladin Token", + "symbol": "PAL", + "display_symbol": null, + "optimized_symbol": "PAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf/445fbd915f5573ff4783b39329ca7bc1.png", + "protocol_id": "paladin", + "price": 0.10009003828397373, + "price_24h_change": -0.014408017211588898, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635408659, + "amount": 1185.6781644171872, + "raw_amount": 1.1856781644171874e+21, + "raw_amount_hex_str": "0x404697088b97a61700" + }, + { + "id": "0xabe580e7ee158da464b51ee1a83ac0289622e6be", + "chain": "eth", + "name": "Offshift", + "symbol": "XFT", + "display_symbol": null, + "optimized_symbol": "XFT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xabe580e7ee158da464b51ee1a83ac0289622e6be/ee34c8bec4551ca91087ef18d8337273.png", + "protocol_id": "", + "price": 0.20028792780516158, + "price_24h_change": -0.03487958906060819, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594831562, + "amount": 157.62779756475396, + "raw_amount": 157627797564753940000, + "raw_amount_hex_str": "0x88b866ebcbe57bb5c" + }, + { + "id": "0xad0e5e0778cac28f1ff459602b31351871b5754a", + "chain": "eth", + "name": "BPT-EURS-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0309283144681227, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668652895, + "amount": 210.5427347065171, + "raw_amount": 210542734706517100000, + "raw_amount_hex_str": "0xb69de0db65d427e10" + }, + { + "id": "0xae78736cd615f374d3085123a210448e74fc6393", + "chain": "eth", + "name": "Rocket Pool ETH", + "symbol": "rETH", + "display_symbol": null, + "optimized_symbol": "rETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xae78736cd615f374d3085123a210448e74fc6393/0a56aa87c04449332f88702b2bd5f45c.png", + "protocol_id": "rocketpool", + "price": 1922.7390745254218, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1632980684, + "amount": 0.7188274541014031, + "raw_amount": 718827454101403100, + "raw_amount_hex_str": "0x9f9c9c2d08335ce" + }, + { + "id": "0xae8535c23afedda9304b03c68a3563b75fc8f92b", + "chain": "eth", + "name": "swETH/Boosted Aave v3 WETH", + "symbol": "swETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1794.0994825777739, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689520463, + "amount": 0.000001469001331326, + "raw_amount": 1469001331326, + "raw_amount_hex_str": "0x156074d727e" + }, + { + "id": "0xb17548c7b510427baac4e267bea62e800b247173", + "chain": "eth", + "name": "Swarm Markets", + "symbol": "SMT", + "display_symbol": null, + "optimized_symbol": "SMT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb17548c7b510427baac4e267bea62e800b247173/9582e5b9b72518371bb342c0efc49c1f.png", + "protocol_id": "swarm", + "price": 0.08796442721443817, + "price_24h_change": -0.0055757911416502645, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1625232545, + "amount": 1108.1762058273564, + "raw_amount": 1.1081762058273564e+21, + "raw_amount_hex_str": "0x3c1308c3d4afbe27b4" + }, + { + "id": "0xb209468fc8c99360657d48238e1a7cf0b13362b6", + "chain": "eth", + "name": "80SWIV-20WETH", + "symbol": "80SWIV-20WETH", + "display_symbol": null, + "optimized_symbol": "80SWIV-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.10251916972405314, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695750107, + "amount": 4.181112174583676, + "raw_amount": 4181112174583676400, + "raw_amount_hex_str": "0x3a064b5ecc1efe74" + }, + { + "id": "0xb4efd85c19999d84251304bda99e90b92300bd93", + "chain": "eth", + "name": "Rocket Pool", + "symbol": "RPL", + "display_symbol": "RPL(old)", + "optimized_symbol": "RPL(old)", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb4efd85c19999d84251304bda99e90b92300bd93/0dac0c5e1dd543fb62581f0756e0b11f.png", + "protocol_id": "rocketpool", + "price": 24.449467865176416, + "price_24h_change": 0.06463182923620288, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1504750041, + "amount": 0.0086061706836381, + "raw_amount": 8606170683638101, + "raw_amount_hex_str": "0x1e934442798155" + }, + { + "id": "0xb53ecf1345cabee6ea1a65100ebb153cebcac40f", + "chain": "eth", + "name": "Childhoods End", + "symbol": "O", + "display_symbol": null, + "optimized_symbol": "O", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb53ecf1345cabee6ea1a65100ebb153cebcac40f/996bd647276bd1415dae387fb97044c0.png", + "protocol_id": "", + "price": 0.00002650838869974525, + "price_24h_change": 0.9836496389495613, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1650383811, + "amount": 67.50138566599341, + "raw_amount": 67501385665993410000, + "raw_amount_hex_str": "0x3a8c518a0242e876a" + }, + { + "id": "0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a03", + "chain": "eth", + "name": "Balancer vETH/WETH StablePool", + "symbol": "vETH/WETH BPT", + "display_symbol": null, + "optimized_symbol": "vETH/WETH BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1787.101500684038, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689519911, + "amount": 1.0017903850845442, + "raw_amount": 1001790385084544100, + "raw_amount_hex_str": "0xde7130c2a5db49d" + }, + { + "id": "0xb5e3de837f869b0248825e0175da73d4e8c3db6b", + "chain": "eth", + "name": "Balancer 50rETH-50bb-euler-USD", + "symbol": "50rETH-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50rETH-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 63.34957130417451, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675959503, + "amount": 0.00013530571635119, + "raw_amount": 135305716351190, + "raw_amount_hex_str": "0x7b0f5128c0d6" + }, + { + "id": "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206", + "chain": "eth", + "name": "Nexo", + "symbol": "NEXO", + "display_symbol": null, + "optimized_symbol": "NEXO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206/0fed72ccc71d9596a9c90536c8da2b95.png", + "protocol_id": "", + "price": 0.6054742654702645, + "price_24h_change": -0.024414948287868766, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1524250249, + "amount": 676.4372781409888, + "raw_amount": 676437278140988800000, + "raw_amount_hex_str": "0x24ab73f88d09bea141" + }, + { + "id": "0xb65df73fc4f6591ebe00494a4bd47ed339a81210", + "chain": "eth", + "name": "AAA METAVERSE TOKEN", + "symbol": "AMT", + "display_symbol": null, + "optimized_symbol": "AMT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.0022310108077606373, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653030386, + "amount": 562.5772921108754, + "raw_amount": 562577292110875460000, + "raw_amount_hex_str": "0x1e7f540a8339e63546" + }, + { + "id": "0xb7dff8b71e62bff9f850795bcea61ffbca7c87a3", + "chain": "eth", + "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-12-2022:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1842.8573776335536, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659543677, + "amount": 0.016823993980989112, + "raw_amount": 16823993980989112, + "raw_amount_hex_str": "0x3bc55558f0aeb9" + }, + { + "id": "0xb83809806a076a1413437ea3e553d6bf41993a21", + "chain": "eth", + "name": "Element Principal Token yvUSDC-24FEB23", + "symbol": "ePyvUSDC-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-24FEB23", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661486935, + "amount": 16.087236, + "raw_amount": 16087236, + "raw_amount_hex_str": "0xf578c4" + }, + { + "id": "0xb8e2cbb2455e80ad0eb536ae30a5290bdd7baa91", + "chain": "eth", + "name": "80BREWSKI-20WETH", + "symbol": "80BREWSKI-20WETH", + "display_symbol": null, + "optimized_symbol": "80BREWSKI-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0006037526490005583, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685791475, + "amount": 2507.045707598529, + "raw_amount": 2.507045707598529e+21, + "raw_amount_hex_str": "0x87e83f9429d626c569" + }, + { + "id": "0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6", + "chain": "eth", + "name": "Balancer 50wstETH-50bb-a-USD", + "symbol": "50wstETH-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50wstETH-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 22.33885070129122, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664906015, + "amount": 0.0125422532991523, + "raw_amount": 12542253299152300, + "raw_amount_hex_str": "0x2c8f1ce89435ac" + }, + { + "id": "0xba100000625a3754423978a60c9317c58a424e3d", + "chain": "eth", + "name": "Balancer", + "symbol": "BAL", + "display_symbol": null, + "optimized_symbol": "BAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba100000625a3754423978a60c9317c58a424e3d/52990c207f4001bd9090dfd90e54374a.png", + "protocol_id": "balancer", + "price": 3.340031419777367, + "price_24h_change": -0.00589502121197733, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1592616779, + "amount": 2087.8281875058096, + "raw_amount": 2.08782818750581e+21, + "raw_amount_hex_str": "0x712e6fc2bfab729d2b" + }, + { + "id": "0xba485b556399123261a5f9c95d413b4f93107407", + "chain": "eth", + "name": "Gravitationally Bound AURA", + "symbol": "graviAURA", + "display_symbol": null, + "optimized_symbol": "graviAURA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba485b556399123261a5f9c95d413b4f93107407/a8e2db7ff72e88ddc918855572e9110e.png", + "protocol_id": "badger", + "price": 1.028519914867349, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1655385807, + "amount": 3387.376536140708, + "raw_amount": 3.3873765361407083e+21, + "raw_amount_hex_str": "0xb7a14af487a8108046" + }, + { + "id": "0xbb6c7b5e0804d07ae31a43e6e83ea66fb128a3bb", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1608.2848416755555, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648172657, + "amount": 0.005585389870334592, + "raw_amount": 5585389870334592, + "raw_amount_hex_str": "0x13d7e1eb274280" + }, + { + "id": "0xbc396689893d065f41bc2c6ecbee5e0085233447", + "chain": "eth", + "name": "Perpetual", + "symbol": "PERP", + "display_symbol": null, + "optimized_symbol": "PERP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbc396689893d065f41bc2c6ecbee5e0085233447/ccb9a7014a682d32c7fe19ce6c66070d.png", + "protocol_id": "perpetual", + "price": 0.5996277256123259, + "price_24h_change": -0.011997210035882618, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599343689, + "amount": 0.009363496712110932, + "raw_amount": 9363496712110932, + "raw_amount_hex_str": "0x21440cf7618353" + }, + { + "id": "0xbd482ffb3e6e50dc1c437557c3bea2b68f3683ee", + "chain": "eth", + "name": "4Pool Chainlink", + "symbol": "BUSD-DAI-USDC-BPT-USDT", + "display_symbol": null, + "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.4279836588492737, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668203063, + "amount": 137.930014803117, + "raw_amount": 137930014803117000000, + "raw_amount_hex_str": "0x77a29d9adcc28c1a7" + }, + { + "id": "0xbe19d87ea6cd5b05bbc34b564291c371dae96747", + "chain": "eth", + "name": "Balancer GHO/3pool Stable Pool", + "symbol": "GHO-3POOL-BPT", + "display_symbol": null, + "optimized_symbol": "GHO-3POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9543080216375345, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692108155, + "amount": 716.7594361161499, + "raw_amount": 716759436116149900000, + "raw_amount_hex_str": "0x26db090d97e867a9ec" + }, + { + "id": "0xbe1f8b3493570501cb32bc87ae3150f4e1a9f0e4", + "chain": "eth", + "name": "GonczyPolski", + "symbol": "GP", + "display_symbol": null, + "optimized_symbol": "GP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659962474, + "amount": 18707.03543949801, + "raw_amount": 1.8707035439498009e+22, + "raw_amount_hex_str": "0x3f61c44b21a124b9e94" + }, + { + "id": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "chain": "eth", + "name": "Coinbase Wrapped Staked ETH", + "symbol": "cbETH", + "display_symbol": null, + "optimized_symbol": "cbETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbe9895146f7af43049ca1c1ae358b0541ea49704/1f287272a7d8439af0f6b281ebf0143e.png", + "protocol_id": "", + "price": 1861.6325039064288, + "price_24h_change": -0.013637122307304884, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1643901537, + "amount": 0.9982481048205661, + "raw_amount": 998248104820566100, + "raw_amount_hex_str": "0xdda7d5cc589684d" + }, + { + "id": "0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33", + "chain": "eth", + "name": "R/bb-s-DAI Stable Pool", + "symbol": "R-bb-s-DAI-BLP", + "display_symbol": null, + "optimized_symbol": "R-bb-s-DAI-BLP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0015350956084434, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689167879, + "amount": 0.001611574821043787, + "raw_amount": 1611574821043787, + "raw_amount_hex_str": "0x5b9b800bcbe4b" + }, + { + "id": "0xbfa9180729f1c549334080005ca37093593fb7aa", + "chain": "eth", + "name": "$ ClaimLIDO.com", + "symbol": "$ ClaimLIDO.com", + "display_symbol": null, + "optimized_symbol": "$ ClaimLIDO.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667825063, + "amount": 400, + "raw_amount": 400, + "raw_amount_hex_str": "0x190" + }, + { + "id": "0xbfce47224b4a938865e3e2727dc34e0faa5b1d82", + "chain": "eth", + "name": "Balancer uniETH-WETH", + "symbol": "uniETH-WETH", + "display_symbol": null, + "optimized_symbol": "uniETH-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1771.986576215314, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682117411, + "amount": 0.39733411223606924, + "raw_amount": 397334112236069250, + "raw_amount_hex_str": "0x5839d4518f9e16a" + }, + { + "id": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "chain": "eth", + "name": "Compound", + "symbol": "COMP", + "display_symbol": null, + "optimized_symbol": "COMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc00e94cb662c3520282e6f5717214004a7f26888/dd174d3d7083fa027a433dc50edaf0bc.png", + "protocol_id": "compound3", + "price": 44.21689059311607, + "price_24h_change": -0.036984728729145884, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1583280535, + "amount": 5.7687117271119135, + "raw_amount": 5768711727111913000, + "raw_amount_hex_str": "0x500e94c07a22c0e0" + }, + { + "id": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "chain": "eth", + "name": "Synthetix Network Token", + "symbol": "SNX", + "display_symbol": null, + "optimized_symbol": "SNX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f/fb568c26c7902169572abe8fa966e791.png", + "protocol_id": "synthetix", + "price": 2.3106308032760294, + "price_24h_change": -0.015608046956890378, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1565329008, + "amount": 486.39182141807174, + "raw_amount": 486391821418071700000, + "raw_amount_hex_str": "0x1a5e0ae090bf666ae5" + }, + { + "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "chain": "eth", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2/61844453e63cf81301f845d7864236f6.png", + "protocol_id": "", + "price": 1767.89, + "price_24h_change": -0.008996939358947024, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1513077455, + "amount": 9.411722879067778, + "raw_amount": 9411722879067777000, + "raw_amount_hex_str": "0x829d2817d3406979" + }, + { + "id": "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf", + "chain": "eth", + "name": "Aura", + "symbol": "AURA", + "display_symbol": null, + "optimized_symbol": "AURA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc0c293ce456ff0ed870add98a0828dd4d2903dbf/f5bdc54131498b4bda381d301e855962.png", + "protocol_id": "aurafinance", + "price": 0.9505773184874274, + "price_24h_change": 0.038769718564101545, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1654771511, + "amount": 1625.9890333145872, + "raw_amount": 1.6259890333145872e+21, + "raw_amount_hex_str": "0x5825217af0c4c3c66d" + }, + { + "id": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72", + "chain": "eth", + "name": "Ethereum Name Service", + "symbol": "ENS", + "display_symbol": null, + "optimized_symbol": "ENS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc18360217d8f7ab5e7c516566761ea12ce7f9d72/034d454d78d7be7f9675066fdb63e114.png", + "protocol_id": "ens", + "price": 7.50432727384679, + "price_24h_change": -0.03149344158645839, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635800117, + "amount": 122.99354445236817, + "raw_amount": 122993544452368170000, + "raw_amount_hex_str": "0x6aae0d9081d9ee5e7" + }, + { + "id": "0xc285b7e09a4584d027e5bc36571785b515898246", + "chain": "eth", + "name": "Coin98 Dollar", + "symbol": "CUSD", + "display_symbol": null, + "optimized_symbol": "CUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc285b7e09a4584d027e5bc36571785b515898246/5c76ada4733bb3b2b5591a1bd8d1d38b.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1657947314, + "amount": 13.55210093862448, + "raw_amount": 13552100938624480000, + "raw_amount_hex_str": "0xbc12bc0066f3335f" + }, + { + "id": "0xc2b021133d1b0cf07dba696fd5dd89338428225b", + "chain": "eth", + "name": "Balancer GHO/bb-a-USD Stable Pool", + "symbol": "GHO/bb-a-USD", + "display_symbol": null, + "optimized_symbol": "GHO/bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9589090348065562, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689432443, + "amount": 396.22222911106655, + "raw_amount": 396222229111066500000, + "raw_amount_hex_str": "0x157ab02219e68f4384" + }, + { + "id": "0xc443c15033fcb6cf72cc24f1bda0db070ddd9786", + "chain": "eth", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc443c15033fcb6cf72cc24f1bda0db070ddd9786/ee454c97f462c9b0bd19726bcfa86720.png", + "protocol_id": "balancer2", + "price": 1.0000359802217151, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689173327, + "amount": 17.64075312816144, + "raw_amount": 17640753128161440000, + "raw_amount_hex_str": "0xf4d08b815e6c6d1b" + }, + { + "id": "0xc4ad29ba4b3c580e6d59105fff484999997675ff", + "chain": "eth", + "name": "Curve.fi USD-BTC-ETH", + "symbol": "crv3crypto", + "display_symbol": null, + "optimized_symbol": "crv3crypto", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1219.323614821865, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1626210526, + "amount": 0.17431343489797024, + "raw_amount": 174313434897970240, + "raw_amount_hex_str": "0x26b49253eabf43e" + }, + { + "id": "0xc4fd39b52100c96a5f7dcd3c6522485897329889", + "chain": "eth", + "name": "Balancer KAI-WETH Weighted Pool", + "symbol": "B-KAI-WETH-WEIGHTED", + "display_symbol": null, + "optimized_symbol": "B-KAI-WETH-WEIGHTED", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 28.150957081386267, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687806275, + "amount": 9e-18, + "raw_amount": 9, + "raw_amount_hex_str": "0x9" + }, + { + "id": "0xc63958d9d01efa6b8266b1df3862c6323cbdb52b", + "chain": "eth", + "name": "Element Principal Token yvCurve-MIM-29APR22", + "symbol": "ePyvCurve-MIM-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-MIM-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0097925179944822, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1636645562, + "amount": 691.7806591217435, + "raw_amount": 691780659121743500000, + "raw_amount_hex_str": "0x2580629c429d1be771" + }, + { + "id": "0xc88c76dd8b92408fe9bea1a54922a31e232d873c", + "chain": "eth", + "name": "80ASX-20WETH", + "symbol": "80ASX-20WETH", + "display_symbol": null, + "optimized_symbol": "80ASX-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.254727292158357, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691057747, + "amount": 19.905244117743802, + "raw_amount": 19905244117743800000, + "raw_amount_hex_str": "0x1143da210058d93ed" + }, + { + "id": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", + "chain": "eth", + "name": "Graph Token", + "symbol": "GRT", + "display_symbol": null, + "optimized_symbol": "GRT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc944e90c64b2c07662a292be6244bdf05cda44a7/8a3fcf468cdf3ae0c7a56cfb12ab4816.png", + "protocol_id": "thegraph", + "price": 0.09727491986981023, + "price_24h_change": -0.03218084561222854, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1607890633, + "amount": 4.073381297170433, + "raw_amount": 4073381297170432500, + "raw_amount_hex_str": "0x38878eb54490425a" + }, + { + "id": "0xc9b88361c09ec184bdd32cf52cffc79a1452f79d", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-16SEP22", + "symbol": "ePyvCurve-alUSD-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0085505201805673, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651238498, + "amount": 3.4140435605437474, + "raw_amount": 3414043560543747000, + "raw_amount_hex_str": "0x2f611e87a9eb7c99" + }, + { + "id": "0xc9c5ff67bb2fae526ae2467c359609d6bcb4c532", + "chain": "eth", + "name": "Tranchess qETH/ETH Balancer Pool", + "symbol": "qETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1813.17525240714, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668491783, + "amount": 0.1122426227770841, + "raw_amount": 112242622777084110, + "raw_amount_hex_str": "0x18ec4121b4948c9" + }, + { + "id": "0xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf", + "chain": "eth", + "name": "Curve.fi USD-BTC-ETH", + "symbol": "crvTricrypto", + "display_symbol": null, + "optimized_symbol": "crvTricrypto", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1206.014472390339, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1622187277, + "amount": 9.13523352988e-7, + "raw_amount": 913523352988, + "raw_amount_hex_str": "0xd4b23c259c" + }, + { + "id": "0xcaa052584b462198a5a9356c28bce0634d65f65c", + "chain": "eth", + "name": "Balancer Morpho Aave v2 Boosted StablePool", + "symbol": "bb-ma2-USD", + "display_symbol": null, + "optimized_symbol": "bb-ma2-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.009618746046252, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679168039, + "amount": 102.07287280750954, + "raw_amount": 102072872807509540000, + "raw_amount_hex_str": "0x5888bb1035f3c4ebb" + }, + { + "id": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", + "chain": "eth", + "name": "ParaSwap", + "symbol": "PSP", + "display_symbol": null, + "optimized_symbol": "PSP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcafe001067cdef266afb7eb5a286dcfd277f3de5/142412ec7069ec0a4806f2bfc2855022.png", + "protocol_id": "paraswap", + "price": 0.027284781829223025, + "price_24h_change": -0.012845182960751064, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636966698, + "amount": 43608.37764238439, + "raw_amount": 4.360837764238439e+22, + "raw_amount_hex_str": "0x93c03cfc2a9600cb756" + }, + { + "id": "0xcce00da653eb50133455d4075fe8bca36750492c", + "chain": "eth", + "name": "Element Principal Token yvDAI-16SEP22", + "symbol": "ePyvDAI-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999497542022594, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649796306, + "amount": 846.7169215907458, + "raw_amount": 846716921590745800000, + "raw_amount_hex_str": "0x2de68eca1698ae3e57" + }, + { + "id": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5", + "chain": "eth", + "name": "Threshold Network Token", + "symbol": "T", + "display_symbol": null, + "optimized_symbol": "T", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcdf7028ceab81fa0c6971208e83fa7872994bee5/415842bd4135e852704aea093ce139d0.png", + "protocol_id": "threshold", + "price": 0.021515295181794028, + "price_24h_change": -0.043180183117743416, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640944196, + "amount": 51619.35353284609, + "raw_amount": 5.161935353284609e+22, + "raw_amount_hex_str": "0xaee4a6f6311347d797b" + }, + { + "id": "0xce621fc54d2547294a46b4d5c142bdeb2d0f0aeb", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1816.7277887607243, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647499081, + "amount": 0.000003220458669281, + "raw_amount": 3220458669281, + "raw_amount_hex_str": "0x2edd24b84e1" + }, + { + "id": "0xcfe60a1535ecc5b0bc628dc97111c8bb01637911", + "chain": "eth", + "name": "Element Principal Token yvUSDC-16SEP22", + "symbol": "ePyvUSDC-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-16SEP22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999999999999999, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647458268, + "amount": 251.4586, + "raw_amount": 251458600, + "raw_amount_hex_str": "0xefcf428" + }, + { + "id": "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5", + "chain": "eth", + "name": "Notional", + "symbol": "NOTE", + "display_symbol": null, + "optimized_symbol": "NOTE", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5/ebf0bbcfaf39b581a04aacbc502101a4.png", + "protocol_id": "notional", + "price": 0.12619797891056675, + "price_24h_change": -0.005784417625576454, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1629899104, + "amount": 6736.07480254, + "raw_amount": 673607480254, + "raw_amount_hex_str": "0x9cd62273be" + }, + { + "id": "0xd0cd466b34a24fcb2f87676278af2005ca8a78c4", + "chain": "eth", + "name": "Popcorn", + "symbol": "POP", + "display_symbol": null, + "optimized_symbol": "POP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd0cd466b34a24fcb2f87676278af2005ca8a78c4/41dcbcb4a675480acd535ff047f024ba.png", + "protocol_id": "popcorn", + "price": 0.02069845023891984, + "price_24h_change": 0.06081846132324173, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1618395052, + "amount": 1.4999982309440762, + "raw_amount": 1499998230944076300, + "raw_amount_hex_str": "0x14d110719722d1df" + }, + { + "id": "0xd278166dabaf26707362f7cfdd204b277fd2a460", + "chain": "eth", + "name": "Balancer 50USH-50WETH", + "symbol": "50USH-50WETH", + "display_symbol": null, + "optimized_symbol": "50USH-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 7.68586476726769, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680608411, + "amount": 52.51509883621858, + "raw_amount": 52515098836218580000, + "raw_amount_hex_str": "0x2d8cb1c279556796a" + }, + { + "id": "0xd31a59c85ae9d8edefec411d448f90841571b89c", + "chain": "eth", + "name": "Wrapped SOL (Wormhole)", + "symbol": "SOL", + "display_symbol": null, + "optimized_symbol": "SOL", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd31a59c85ae9d8edefec411d448f90841571b89c/7c5db5c2eae571da837b65f5b9ae1a5c.png", + "protocol_id": "", + "price": 31.246398480019664, + "price_24h_change": -0.013891615462940668, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632316757, + "amount": 0.065785808, + "raw_amount": 65785808, + "raw_amount_hex_str": "0x3ebcfd0" + }, + { + "id": "0xd33526068d116ce69f19a9ee46f0bd304f21a51f", + "chain": "eth", + "name": "Rocket Pool Protocol", + "symbol": "RPL", + "display_symbol": null, + "optimized_symbol": "RPL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd33526068d116ce69f19a9ee46f0bd304f21a51f/0dac0c5e1dd543fb62581f0756e0b11f.png", + "protocol_id": "rocketpool", + "price": 24.3076928129525, + "price_24h_change": 0.07272752388083105, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632980703, + "amount": 0.000252996123096066, + "raw_amount": 252996123096066, + "raw_amount_hex_str": "0xe619400bf402" + }, + { + "id": "0xd40954a9ff856f9a2c6efa88ad45623157a7dff0", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.4260691459710821, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647839269, + "amount": 91.48478749826427, + "raw_amount": 91484787498264260000, + "raw_amount_hex_str": "0x4f59b4185c2239c2c" + }, + { + "id": "0xd5a14081a34d256711b02bbef17e567da48e80b5", + "chain": "eth", + "name": "Wrapped USDR", + "symbol": "wUSDR", + "display_symbol": null, + "optimized_symbol": "wUSDR", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5a14081a34d256711b02bbef17e567da48e80b5/c2524c9f38607e4862733fb51a2af417.png", + "protocol_id": "multichain", + "price": 0.5695186628783572, + "price_24h_change": 0.1254810782778585, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1673500139, + "amount": 82.86324508, + "raw_amount": 82863245080, + "raw_amount_hex_str": "0x134b08c718" + }, + { + "id": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", + "chain": "eth", + "name": "NFT Worlds", + "symbol": "WRLD", + "display_symbol": null, + "optimized_symbol": "WRLD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9/7e8c2ceca870a77f8910d33d85163f0d.png", + "protocol_id": "", + "price": 0.03136379784752426, + "price_24h_change": -0.07230556170075508, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640650326, + "amount": 4.0949999999418525, + "raw_amount": 4094999999941852700, + "raw_amount_hex_str": "0x38d45ccdbfc23e02" + }, + { + "id": "0xd5d99b7e9697ba8bb1da48f07ba81900c7572cea", + "chain": "eth", + "name": "Balancer DUSD-3POOL Stable Pool", + "symbol": "DUSD-3POOL-BPT", + "display_symbol": null, + "optimized_symbol": "DUSD-3POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0092808882985849, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692371747, + "amount": 3.358889277985639, + "raw_amount": 3358889277985639000, + "raw_amount_hex_str": "0x2e9d2c008e33ca21" + }, + { + "id": "0xd689abc77b82803f22c49de5c8a0049cc74d11fd", + "chain": "eth", + "name": "80USH-20unshETH", + "symbol": "80USH-20unshETH", + "display_symbol": null, + "optimized_symbol": "80USH-20unshETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.22075472819586342, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681890359, + "amount": 1142.3636133332263, + "raw_amount": 1.1423636133332264e+21, + "raw_amount_hex_str": "0x3ded7ad5d322a6abf7" + }, + { + "id": "0xd8721e92ba0f8235b375e9ec9a7b697ec4e2d6c6", + "chain": "eth", + "name": "80BIDS-20WETH", + "symbol": "80BIDS-20WETH", + "display_symbol": null, + "optimized_symbol": "80BIDS-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00044728002845301847, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687690631, + "amount": 2493.6199718123144, + "raw_amount": 2.4936199718123146e+21, + "raw_amount_hex_str": "0x872dedc8993497a483" + }, + { + "id": "0xd8dc4cc15945a16aa5201bcabfa1d32d2cb39fd6", + "chain": "eth", + "name": "Sense Space 1st June 2023 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-06-2023:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2023:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1871.8267028061218, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652969144, + "amount": 0.022896520284385536, + "raw_amount": 22896520284385536, + "raw_amount_hex_str": "0x5158438e24b0ff" + }, + { + "id": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chain": "eth", + "name": "Tether USD", + "symbol": "USDT", + "display_symbol": "", + "optimized_symbol": "USDT", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", + "protocol_id": "", + "price": 0.999975, + "price_24h_change": -0.00025993891435516453, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1511829681, + "amount": 56.93199, + "raw_amount": 56931990, + "raw_amount_hex_str": "0x364b696" + }, + { + "id": "0xdbbfb4ccd10a0828b95ce6fbe8a7502a9e6a76f5", + "chain": "eth", + "name": "Sense Space 1st July 2023 cDAI Sense Principal Token, A10", + "symbol": "SPACE-sP-cDAI:01-07-2023:10", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-cDAI:01-07-2023:10", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7372519429936965, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660069123, + "amount": 1.7887012788357777, + "raw_amount": 1788701278835777800, + "raw_amount_hex_str": "0x18d2be560e4b20c6" + }, + { + "id": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f", + "chain": "eth", + "name": "Gitcoin", + "symbol": "GTC", + "display_symbol": "", + "optimized_symbol": "GTC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f/18bdb51197eaa8954b3467dcf0a5c5e9.png", + "protocol_id": "gitcoin", + "price": 0.9234577788820219, + "price_24h_change": -0.016732471974661822, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620856082, + "amount": 600.9258778676896, + "raw_amount": 600925877867689500000, + "raw_amount_hex_str": "0x20938596143368992b" + }, + { + "id": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab", + "chain": "eth", + "name": "CoW Protocol Token", + "symbol": "COW", + "display_symbol": null, + "optimized_symbol": "COW", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab/01b4a8c7bfa381d0f47d140d58d06d54.png", + "protocol_id": "", + "price": 0.06301507904916884, + "price_24h_change": -0.031177662228823202, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644608664, + "amount": 3.740292097500236, + "raw_amount": 3740292097500236000, + "raw_amount_hex_str": "0x33e82fd883b3c8c8" + }, + { + "id": "0xdf2c03c12442c7a0895455a48569b889079ca52a", + "chain": "eth", + "name": "80ARCH-20WETH", + "symbol": "80ARCH-20WETH", + "display_symbol": null, + "optimized_symbol": "80ARCH-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 8.581632046380125, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683242339, + "amount": 62.00358507396346, + "raw_amount": 62003585073963460000, + "raw_amount_hex_str": "0x35c78fc1d9e4de34d" + }, + { + "id": "0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba", + "chain": "eth", + "name": "Balancer ankrETH/wstETH StablePool", + "symbol": "ankrETH/wstETH", + "display_symbol": null, + "optimized_symbol": "ankrETH/wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1796.8669787686536, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685154395, + "amount": 4.418634055635054, + "raw_amount": 4418634055635053600, + "raw_amount_hex_str": "0x3d5224433e922ca7" + }, + { + "id": "0xe074fbcc87e18615d6b099ee603bd37de562416b", + "chain": "eth", + "name": "50WAGMI-50ICE", + "symbol": "50WAGMI-50ICE", + "display_symbol": null, + "optimized_symbol": "50WAGMI-50ICE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.052821964558021156, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695825635, + "amount": 5699.714464432158, + "raw_amount": 5.699714464432158e+21, + "raw_amount_hex_str": "0x134fb6d8b05029e1ce3" + }, + { + "id": "0xe29797910d413281d2821d5d9a989262c8121cc2", + "chain": "eth", + "name": "elimu.ai", + "symbol": "ELIMU", + "display_symbol": null, + "optimized_symbol": "ELIMU", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.0013561360418444623, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1623928435, + "amount": 2609.5598485877413, + "raw_amount": 2.6095598485877414e+21, + "raw_amount_hex_str": "0x8d76eaf83ffa785b14" + }, + { + "id": "0xe41d2489571d322189246dafa5ebde1f4699f498", + "chain": "eth", + "name": "0x Protocol Token", + "symbol": "ZRX", + "display_symbol": null, + "optimized_symbol": "ZRX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe41d2489571d322189246dafa5ebde1f4699f498/d7005102d4df2f6f8a79a5e8abe93b06.png", + "protocol_id": "0x", + "price": 0.23069996625390005, + "price_24h_change": -0.05678004056631448, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1502476756, + "amount": 19.965979726938276, + "raw_amount": 19965979726938276000, + "raw_amount_hex_str": "0x1151568c700ce85cd" + }, + { + "id": "0xe4af3c338260aabf119b5023d497437974769413", + "chain": "eth", + "name": "20USDC-80FOLD", + "symbol": "20USDC-80FOLD", + "display_symbol": null, + "optimized_symbol": "20USDC-80FOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 6.432473433119752, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683208187, + "amount": 17.236359481010393, + "raw_amount": 17236359481010395000, + "raw_amount_hex_str": "0xef33d9a0368f94cd" + }, + { + "id": "0xe4e72f872c4048925a78e1e6fddac411c9ae348a", + "chain": "eth", + "name": "2BTC", + "symbol": "2BTC", + "display_symbol": null, + "optimized_symbol": "2BTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 34114.3808294373, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691729291, + "amount": 0.012536621830974298, + "raw_amount": 12536621830974296, + "raw_amount_hex_str": "0x2c89fdbaeb2b59" + }, + { + "id": "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532", + "chain": "eth", + "name": "ZEON", + "symbol": "ZEON", + "display_symbol": null, + "optimized_symbol": "ZEON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532/132ae9ab3cb6f2e332d748726ea96ec2.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1539621663, + "amount": 985.9709680218301, + "raw_amount": 985970968021830100000, + "raw_amount_hex_str": "0x3573188b848d35f70b" + }, + { + "id": "0xe72c7d093ac50c57e47f4f2674243a4fff68f0f2", + "chain": "eth", + "name": "stDai.xyz", + "symbol": "https://stdai.xyz", + "display_symbol": null, + "optimized_symbol": "https://stdai.xyz", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663927511, + "amount": 777, + "raw_amount": 777, + "raw_amount_hex_str": "0x309" + }, + { + "id": "0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2", + "chain": "eth", + "name": "Balancer swETH-WETH Stable Pool", + "symbol": "swETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1788.6475039624358, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692370463, + "amount": 1.1801873815677557, + "raw_amount": 1180187381567755800, + "raw_amount_hex_str": "0x1060de2baebe95e7" + }, + { + "id": "0xe89c2dccfa045f3538ae3ebbfff3daec6a40a73a", + "chain": "eth", + "name": "$ USDCXMAS.com", + "symbol": "$ Visit USDCXMAS.com to claim", + "display_symbol": null, + "optimized_symbol": "$ Visit USDCXMAS.com to claim", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672053143, + "amount": 9000, + "raw_amount": 9000, + "raw_amount_hex_str": "0x2328" + }, + { + "id": "0xe91888a1d08e37598867d213a4acb5692071bb3a", + "chain": "eth", + "name": "20R-80RAFT", + "symbol": "20R-80RAFT", + "display_symbol": null, + "optimized_symbol": "20R-80RAFT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.014858271659329474, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696336955, + "amount": 49639.543645870595, + "raw_amount": 4.963954364587059e+22, + "raw_amount_hex_str": "0xa82f70db85867844141" + }, + { + "id": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb", + "chain": "eth", + "name": "Ankr Staked ETH", + "symbol": "ankrETH", + "display_symbol": "ankrETH", + "optimized_symbol": "ankrETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe95a203b1a91a908f9b9ce46459d101078c2c3cb/943011b2bba8d1d0a9c815caee4baf84.png", + "protocol_id": "ankr", + "price": 2006.5494003966908, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1604948706, + "amount": 0.2162544734483973, + "raw_amount": 216254473448397300, + "raw_amount_hex_str": "0x3004a4c3efb19f3" + }, + { + "id": "0xea34b59a4e7075203a93f97178b2581d5f3f9919", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1.0231735907188937, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651434899, + "amount": 0.000075732300716355, + "raw_amount": 75732300716355, + "raw_amount_hex_str": "0x44e0cce1d943" + }, + { + "id": "0xea912e1afa137c15f1638142e32f978e92fbce39", + "chain": "eth", + "name": "Balancer DAI-USDT Fixed Rate Pool", + "symbol": "B-DAI-USDT-FIXED-RATE", + "display_symbol": null, + "optimized_symbol": "B-DAI-USDT-FIXED-RATE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.000059069427035, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667292155, + "amount": 2.52799920533739, + "raw_amount": 2527999205337390000, + "raw_amount_hex_str": "0x231541e2229adb33" + }, + { + "id": "0xeaa1cba8cc3cf01a92e9e853e90277b5b8a23e07", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-29APR22", + "symbol": "ePyvCurve-alUSD-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0085505201805673, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1637702559, + "amount": 15.528525296983258, + "raw_amount": 15528525296983257000, + "raw_amount_hex_str": "0xd780677be45ab12a" + }, + { + "id": "0xeb567dde03f3da7fe185bdacd5ab495ab220769d", + "chain": "eth", + "name": "ankrETH-Boosted Aave WETH StablePool", + "symbol": "ankrETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "ankrETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1799.8461019784877, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684280387, + "amount": 0.15395745027751706, + "raw_amount": 153957450277517060, + "raw_amount_hex_str": "0x222f77c3e50f702" + }, + { + "id": "0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983", + "chain": "eth", + "name": "Balancer UZD/bb-a-USD stableswap", + "symbol": "B-S-UZD-BB-A-USD", + "display_symbol": null, + "optimized_symbol": "B-S-UZD-BB-A-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0074164695338149005, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683442295, + "amount": 4.95e-15, + "raw_amount": 4950, + "raw_amount_hex_str": "0x1356" + }, + { + "id": "0xecf2c7a432e5f7d8ba0a85b12f2ae3e4874ec690", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1753.6620055691358, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647837401, + "amount": 0.0000119498554493, + "raw_amount": 11949855449300, + "raw_amount_hex_str": "0xade4ae3a0d4" + }, + { + "id": "0xed1480d12be41d92f36f5f7bdd88212e381a3677", + "chain": "eth", + "name": "FIAT DAO Token", + "symbol": "FDT", + "display_symbol": null, + "optimized_symbol": "FDT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed1480d12be41d92f36f5f7bdd88212e381a3677/3b6713634ee6c7285619f5d6f77329f9.png", + "protocol_id": "fiatdao", + "price": 0.0035196959809045106, + "price_24h_change": -0.11423097476807284, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635920329, + "amount": 0.499420319665554, + "raw_amount": 499420319665554050, + "raw_amount_hex_str": "0x6ee4c227b470265" + }, + { + "id": "0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Liquity", + "symbol": "LUSD3CRV-f", + "display_symbol": null, + "optimized_symbol": "LUSD3CRV-f", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca/45a771023b4a156c4bf6888411f5a38f.png", + "protocol_id": "curve", + "price": 1.0245927061352782, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1617695155, + "amount": 419.9876956078656, + "raw_amount": 419987695607865600000, + "raw_amount_hex_str": "0x16c48007f715b6ea31" + }, + { + "id": "0xedb171c18ce90b633db442f2a6f72874093b49ef", + "chain": "eth", + "name": "Wrapped Ampleforth", + "symbol": "WAMPL", + "display_symbol": null, + "optimized_symbol": "WAMPL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xedb171c18ce90b633db442f2a6f72874093b49ef/60204bc28b7d18732faa55afcdd29196.png", + "protocol_id": "", + "price": 3.6735984111872084, + "price_24h_change": -0.021742953939306413, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632315593, + "amount": 9.354050096237103, + "raw_amount": 9354050096237103000, + "raw_amount_hex_str": "0x81d04300ad6bc9a4" + }, + { + "id": "0xede11d3d5dd7d5454844f6f121cc106bf1144a45", + "chain": "eth", + "name": "$ LPBalancer.com", + "symbol": "LPBalancer.com", + "display_symbol": null, + "optimized_symbol": "LPBalancer.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1657981900, + "amount": 500, + "raw_amount": 500, + "raw_amount_hex_str": "0x1f4" + }, + { + "id": "0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1", + "chain": "eth", + "name": "Gyroscope ECLP wstETH/wETH", + "symbol": "ECLP-wstETH-wETH", + "display_symbol": null, + "optimized_symbol": "ECLP-wstETH-wETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1783.1198552170574, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693249103, + "amount": 2.469300713509587, + "raw_amount": 2469300713509587000, + "raw_amount_hex_str": "0x2244b7ea805b8777" + }, + { + "id": "0xf05e58fcea29ab4da01a495140b349f8410ba904", + "chain": "eth", + "name": "CLever CVX", + "symbol": "clevCVX", + "display_symbol": null, + "optimized_symbol": "clevCVX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf05e58fcea29ab4da01a495140b349f8410ba904/f1f9772044bbf5e8c3f5ab288d96e2ac.png", + "protocol_id": "clevercvx", + "price": 2.7872357265722316, + "price_24h_change": -0.013108004803212635, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1650535428, + "amount": 3.765972931308284, + "raw_amount": 3765972931308284000, + "raw_amount_hex_str": "0x34436c6d945de855" + }, + { + "id": "0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc", + "chain": "eth", + "name": "20WETH-80ALCX", + "symbol": "20WETH-80ALCX", + "display_symbol": null, + "optimized_symbol": "20WETH-80ALCX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 29.181564442488543, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677780875, + "amount": 184.15809250022085, + "raw_amount": 184158092500220840000, + "raw_amount_hex_str": "0x9fbb4f96ae5312262" + }, + { + "id": "0xf17e65822b568b3903685a7c9f496cf7656cc6c2", + "chain": "eth", + "name": "Biconomy Token", + "symbol": "BICO", + "display_symbol": null, + "optimized_symbol": "BICO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf17e65822b568b3903685a7c9f496cf7656cc6c2/69060a56ebfc5a4cecd43b64c8910d22.png", + "protocol_id": "biconomy", + "price": 0.2281844890505347, + "price_24h_change": -0.004946571942450974, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1633376291, + "amount": 1845.1230275517075, + "raw_amount": 1.8451230275517075e+21, + "raw_amount_hex_str": "0x640639d1ad70d191a2" + }, + { + "id": "0xf1f6004398e29437801257ecc2b0a852717430b7", + "chain": "eth", + "name": "50ASX-50WETH", + "symbol": "50ASX-50WETH", + "display_symbol": null, + "optimized_symbol": "50ASX-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 21.828361032144475, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691052947, + "amount": 0.021674328605956496, + "raw_amount": 21674328605956496, + "raw_amount_hex_str": "0x4d00afe14d9992" + }, + { + "id": "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", + "chain": "eth", + "name": "Rally", + "symbol": "RLY", + "display_symbol": null, + "optimized_symbol": "RLY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b/052a631e8e9ba5e59f9434548ea6f91c.png", + "protocol_id": "rally", + "price": 0.005804946047425985, + "price_24h_change": -0.023835992813187743, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1601929393, + "amount": 0.7120994357331588, + "raw_amount": 712099435733158800, + "raw_amount_hex_str": "0x9e1e2a9f7a18b85" + }, + { + "id": "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817", + "chain": "eth", + "name": "Wrapped NCG", + "symbol": "WNCG", + "display_symbol": null, + "optimized_symbol": "WNCG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf203ca1769ca8e9e8fe1da9d147db68b6c919817/5d3c7b19728c5855b7a91fe9ab0f4acf.png", + "protocol_id": "", + "price": 0.058576572614831755, + "price_24h_change": -0.0070967002758973155, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628244716, + "amount": 29287.239427050903, + "raw_amount": 2.9287239427050904e+22, + "raw_amount_hex_str": "0x633aa1820753fea2bfd" + }, + { + "id": "0xf2051511b9b121394fa75b8f7d4e7424337af687", + "chain": "eth", + "name": "DAOhaus Token", + "symbol": "HAUS", + "display_symbol": null, + "optimized_symbol": "HAUS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf2051511b9b121394fa75b8f7d4e7424337af687/445ed9b4d899940d75305b98e2697f0a.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.01911063113528292, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599234880, + "amount": 267.64856679705207, + "raw_amount": 267648566797052100000, + "raw_amount_hex_str": "0xe825eb97064b3148d" + }, + { + "id": "0xf24d8651578a55b0c119b9910759a351a3458895", + "chain": "eth", + "name": "Stake DAO Balancer", + "symbol": "sdBal", + "display_symbol": null, + "optimized_symbol": "sdBal", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf24d8651578a55b0c119b9910759a351a3458895/e5049d9997377d22ca54fa8dc626342c.png", + "protocol_id": "stakedao", + "price": 9.949043968909859, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653567793, + "amount": 25.43121286326488, + "raw_amount": 25431212863264880000, + "raw_amount_hex_str": "0x160edd15bda3f76b7" + }, + { + "id": "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80", + "chain": "eth", + "name": "Jelly Token", + "symbol": "JELLY", + "display_symbol": null, + "optimized_symbol": "JELLY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80/aff641efef043d373dc74d0a6a74ca02.png", + "protocol_id": "", + "price": 0.00005504116090093779, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635421158, + "amount": 18423.751965036692, + "raw_amount": 1.8423751965036694e+22, + "raw_amount_hex_str": "0x3e6c0eb9efabd134d6e" + }, + { + "id": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c", + "chain": "eth", + "name": "Enjin Coin", + "symbol": "ENJ", + "display_symbol": null, + "optimized_symbol": "ENJ", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c/5e91ff13592f1420dc3d25f0b1526ae7.png", + "protocol_id": "", + "price": 0.2553740639095118, + "price_24h_change": 0.016285419678897493, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1506906127, + "amount": 1489.6785814742284, + "raw_amount": 1.4896785814742284e+21, + "raw_amount_hex_str": "0x50c1717932072fde21" + }, + { + "id": "0xf656a566c9d3b2cb046481351a1179017530c6c9", + "chain": "eth", + "name": "heph10PoolDaiAura", + "symbol": "h10DaiAura", + "display_symbol": null, + "optimized_symbol": "h10DaiAura", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.1341773644315074, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679754599, + "amount": 1.579e-15, + "raw_amount": 1579, + "raw_amount_hex_str": "0x62b" + }, + { + "id": "0xf65b5c5104c4fafd4b709d9d60a185eae063276c", + "chain": "eth", + "name": "Truebit", + "symbol": "TRU", + "display_symbol": null, + "optimized_symbol": "TRU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf65b5c5104c4fafd4b709d9d60a185eae063276c/c01f397719a7ef63a6754ee0f5f887b7.png", + "protocol_id": "", + "price": 0.09486711069158939, + "price_24h_change": -0.012448677698843329, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1618138342, + "amount": 4627.88937076259, + "raw_amount": 4.6278893707625906e+21, + "raw_amount_hex_str": "0xfae0dddf198e3d9fdd" + }, + { + "id": "0xf660870bd38d106e61f0d3539ed25b1320bc90e8", + "chain": "eth", + "name": "ApeWL.io (Otherside Beta)", + "symbol": "Otherside Beta Access (ApeWL.io)", + "display_symbol": null, + "optimized_symbol": "Otherside Beta Access (ApeWL.io)", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651990300, + "amount": 1, + "raw_amount": 1000000000000000000, + "raw_amount_hex_str": "0xde0b6b3a7640000" + }, + { + "id": "0xf7a826d47c8e02835d94fb0aa40f0cc9505cb134", + "chain": "eth", + "name": "Gyroscope ECLP wstETH/cbETH", + "symbol": "ECLP-wstETH-cbETH", + "display_symbol": null, + "optimized_symbol": "ECLP-wstETH-cbETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1783.7912117477179, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693336211, + "amount": 1.948096118003973, + "raw_amount": 1948096118003973000, + "raw_amount_hex_str": "0x1b0907190df1bc2f" + }, + { + "id": "0xfd0205066521550d7d7ab19da8f72bb004b4c341", + "chain": "eth", + "name": "Liquidity Incentive Token", + "symbol": "LIT", + "display_symbol": null, + "optimized_symbol": "LIT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfd0205066521550d7d7ab19da8f72bb004b4c341/975226f93f2d8402ee4662af6e42223d.png", + "protocol_id": "bunni", + "price": 0.02117621008693257, + "price_24h_change": -0.0023740563645333807, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1672973831, + "amount": 73087.39871241331, + "raw_amount": 7.308739871241331e+22, + "raw_amount_hex_str": "0xf7a1369274e315913a0" + }, + { + "id": "0xfe0bb2ae94bf11de9773decb413b4a6a241cbcd0", + "chain": "eth", + "name": "# wbtc.gift", + "symbol": "Visit wbtc.gift to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit wbtc.gift to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697940239, + "amount": 0.7, + "raw_amount": 700000, + "raw_amount_hex_str": "0xaae60" + }, + { + "id": "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6", + "chain": "eth", + "name": "Synth sBTC", + "symbol": "sBTC", + "display_symbol": null, + "optimized_symbol": "sBTC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6/3e0d9a14a6f727b7bec8586c40d7b4c3.png", + "protocol_id": "", + "price": 33889.89, + "price_24h_change": -0.01854120402709296, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1569481945, + "amount": 0.004254948726251717, + "raw_amount": 4254948726251717, + "raw_amount_hex_str": "0xf1dda735da0c5" + }, + { + "id": "0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", + "chain": "eth", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0100254564654856, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1680683795, + "amount": 282.4012203434777, + "raw_amount": 282401220343477700000, + "raw_amount_hex_str": "0xf4f1aadad35cde825" + }, + { + "id": "0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462", + "chain": "eth", + "name": "pub.finance", + "symbol": "PINT", + "display_symbol": null, + "optimized_symbol": "PINT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462/47dba101f922e80f0aceac36a98db7ef.png", + "protocol_id": "", + "price": 0.13672302821269047, + "price_24h_change": -0.012466348677963944, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1604354259, + "amount": 12.988481226315663, + "raw_amount": 12988481226315663000, + "raw_amount_hex_str": "0xb4405adc0260075d" + }, + { + "id": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "chain": "eth", + "name": "Amp", + "symbol": "AMP", + "display_symbol": null, + "optimized_symbol": "AMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xff20817765cb7f73d4bde2e66e067e58d11095c2/c76dd38f00542547f74cd6a66a230287.png", + "protocol_id": "", + "price": 0.00157790122356668, + "price_24h_change": -0.0075973498250158245, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1597105639, + "amount": 167.132070499232, + "raw_amount": 167132070499232000000, + "raw_amount_hex_str": "0x90f6c649d8a43de79" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-11-09-avax.json b/FeeSweep/2023-11-09-avax.json new file mode 100644 index 000000000..51b0184d4 --- /dev/null +++ b/FeeSweep/2023-11-09-avax.json @@ -0,0 +1,382 @@ +[ + { + "id": "0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa", + "chain": "avax", + "name": "Balancer Boosted ggAVAX-WAVAX", + "symbol": "ggAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "ggAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 13.642506536613956, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689850438, + "amount": 0.01520163301166129, + "raw_amount": 15201633011661292, + "raw_amount_hex_str": "0x3601cdffaa79eb" + }, + { + "id": "0x3396cca90c9335565ecdbae3a260dafb13a7959e", + "chain": "avax", + "name": "80BETS/20sAVAX Pool Token", + "symbol": "80BETS/20sAVAX", + "display_symbol": null, + "optimized_symbol": "80BETS/20sAVAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.002693266380616791, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690622794, + "amount": 23934.675590044662, + "raw_amount": 2.393467559004466e+22, + "raw_amount_hex_str": "0x51180595dcca90fbe41" + }, + { + "id": "0x3441a6f48f0f5a1ada460885df5b461deb2ee494", + "chain": "avax", + "name": "50BTC.b-50USDC", + "symbol": "50BTC.b-50USDC", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 184746807.56494987, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694864473, + "amount": 6.5e-17, + "raw_amount": 65, + "raw_amount_hex_str": "0x41" + }, + { + "id": "0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b", + "chain": "avax", + "name": "BTC.b/Boosted Aave V3 USD", + "symbol": "50BTC.b-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 195.66253995447693, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691145314, + "amount": 0.7540171358527642, + "raw_amount": 754017135852764200, + "raw_amount_hex_str": "0xa76ce97110fbc1c" + }, + { + "id": "0x3fc26a34594ec8adfd9431ff3b9e8fce00bedd19", + "chain": "avax", + "name": "50USDC-50EUROC", + "symbol": "50USDC-50EUROC", + "display_symbol": null, + "optimized_symbol": "50USDC-50EUROC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1033206.497409989, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699210455, + "amount": 7.69e-16, + "raw_amount": 769, + "raw_amount_hex_str": "0x301" + }, + { + "id": "0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc", + "chain": "avax", + "name": "BPT-EUROC-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.9654278210704038, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689325569, + "amount": 0.11230989907284827, + "raw_amount": 112309899072848270, + "raw_amount_hex_str": "0x18f014216ff4190" + }, + { + "id": "0x670734d704eb7ef424d75321670f921fbf42e9cf", + "chain": "avax", + "name": "Balancer sAVAX-ankrAVAX", + "symbol": "sAVAX-ankrAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-ankrAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 13.714452716252282, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689851390, + "amount": 22.631831418342806, + "raw_amount": 22631831418342806000, + "raw_amount_hex_str": "0x13a146ac432d90e93" + }, + { + "id": "0x721bd1900aeabc29009b08e44be37529f518f2c2", + "chain": "avax", + "name": "33VCHF-33sAVAX-33VEUR", + "symbol": "33VCHF-33sAVAX-33VEUR", + "display_symbol": null, + "optimized_symbol": "33VCHF-33sAVAX-33VEUR", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 2.6127802721904847, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696338373, + "amount": 38.39504381358814, + "raw_amount": 38395043813588140000, + "raw_amount_hex_str": "0x214d698ec3c7afc39" + }, + { + "id": "0x90065d5e455e6b26a4eaf630c26289f6b6735647", + "chain": "avax", + "name": "Balancer QI-GGP-USDC", + "symbol": "BPT-QI-GGP-USDC", + "display_symbol": null, + "optimized_symbol": "BPT-QI-GGP-USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.2278557220270769, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690903637, + "amount": 0.24182218235508435, + "raw_amount": 241822182355084350, + "raw_amount_hex_str": "0x35b1ffe5e15a43d" + }, + { + "id": "0x96518f83d66bdc6a5812f01c54f8e022f6796399", + "chain": "avax", + "name": "Balancer 50BTC.b 50USD", + "symbol": "50BTC.b-50USD-BPT", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 192.31993854644932, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038848, + "amount": 0.000199656222727216, + "raw_amount": 199656222727216, + "raw_amount_hex_str": "0xb596163b9c30" + }, + { + "id": "0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9", + "chain": "avax", + "name": "Balancer yyAVAX-WAVAX Stable Pool", + "symbol": "yyAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "yyAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 13.59686268263818, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038616, + "amount": 121.62963210376263, + "raw_amount": 121629632103762640000, + "raw_amount_hex_str": "0x697f341fa1a382eb5" + }, + { + "id": "0xa154009870e9b6431305f19b09f9cfd7284d4e7a", + "chain": "avax", + "name": "Balancer Boosted sAVAX-WAVAX", + "symbol": "sAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 13.705965272837476, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689792870, + "amount": 0.03296823166436684, + "raw_amount": 32968231664366840, + "raw_amount_hex_str": "0x75206e993a34f7" + }, + { + "id": "0xa1d14d922a575232066520eda11e27760946c991", + "chain": "avax", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.0061117800573598, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689792622, + "amount": 0.11906646503784356, + "raw_amount": 119066465037843570, + "raw_amount_hex_str": "0x1a70251b13dfc6c" + }, + { + "id": "0xb06fdbd2941d2f42d60accee85086198ac729236", + "chain": "avax", + "name": "80HATCHY-20WAVAX", + "symbol": "80HATCHY-20WAVAX", + "display_symbol": null, + "optimized_symbol": "80HATCHY-20WAVAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.01019409983950618, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691028537, + "amount": 73.84254555069829, + "raw_amount": 73842545550698280000, + "raw_amount_hex_str": "0x400c56bf19bf910f6" + }, + { + "id": "0xb10968b6ca2ea1c25d392a9a990559ed3f686861", + "chain": "avax", + "name": "80WAVAX-20USDC", + "symbol": "80WAVAX-20USDC", + "display_symbol": null, + "optimized_symbol": "80WAVAX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 6.638075605250873, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696713768, + "amount": 0.1576855857639293, + "raw_amount": 157685585763929300, + "raw_amount_hex_str": "0x23036346da88cde" + }, + { + "id": "0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c96", + "chain": "avax", + "name": "Balancer USDC-USDT Stable Pool", + "symbol": "USDC-USDT-BPT", + "display_symbol": null, + "optimized_symbol": "USDC-USDT-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.0008783535584567, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038450, + "amount": 987.6016017424141, + "raw_amount": 987601601742414200000, + "raw_amount_hex_str": "0x3589b9b83f4765cde9" + }, + { + "id": "0xc13546b97b9b1b15372368dc06529d7191081f5b", + "chain": "avax", + "name": "Balancer ggAVAX-WAVAX Stable Pool", + "symbol": "ggAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "ggAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 13.573225749942717, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038316, + "amount": 175.36608297012535, + "raw_amount": 175366082970125370000, + "raw_amount_hex_str": "0x981b17b54fe004ea9" + }, + { + "id": "0xece571847897fd61e764d455dc15cf1cd9de8d6f", + "chain": "avax", + "name": "Balancer Boosted yyAVAX-WAVAX", + "symbol": "yyAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "yyAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 13.681479600633441, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689850089, + "amount": 76.02434221814359, + "raw_amount": 76024342218143580000, + "raw_amount_hex_str": "0x41f0cb874032e58a3" + }, + { + "id": "0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc", + "chain": "avax", + "name": "Balancer sAVAX-WAVAX Stable Pool", + "symbol": "sAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 13.640720394754242, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038154, + "amount": 340.85612085765325, + "raw_amount": 340856120857653300000, + "raw_amount_hex_str": "0x127a5433fca609c63c" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-11-09-base.json b/FeeSweep/2023-11-09-base.json new file mode 100644 index 000000000..5b1248162 --- /dev/null +++ b/FeeSweep/2023-11-09-base.json @@ -0,0 +1,1322 @@ +[ + { + "id": "0x002a1eb0804504dd5162757bc309fd34784ae7e0", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.296587073130674, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698392391, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0x012e776cc3ed4c5adea3eda8677e82343e4de396", + "chain": "base", + "name": "Balancer 50WETH-50USDbC Pool", + "symbol": "50WETH-50USDbC BPT", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 48.591469461495905, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691431253, + "amount": 0.604486310936122, + "raw_amount": 604486310936122000, + "raw_amount_hex_str": "0x8639118daef1289" + }, + { + "id": "0x029a77e8d39e261b2a1bdf9726201ce87305ef69", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 502237.23801356205, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697522195, + "amount": 1.3e-17, + "raw_amount": 13, + "raw_amount_hex_str": "0xd" + }, + { + "id": "0x031e96f4cebfef8829c2dabf3e45bc4886b77186", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.236172656656436, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699439533, + "amount": 1.7e-17, + "raw_amount": 17, + "raw_amount_hex_str": "0x11" + }, + { + "id": "0x036d68e4e0005da4ef1c9ebd53b948d2c083495e", + "chain": "base", + "name": " 50tBTC-50USD", + "symbol": " 50tBTC-50USD", + "display_symbol": null, + "optimized_symbol": " 50tBTC-50USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 197.27301825439918, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691577137, + "amount": 0.019455649030178004, + "raw_amount": 19455649030178010, + "raw_amount_hex_str": "0x451ecf495184d6" + }, + { + "id": "0x07d72005b9e2b0e4d9f2ee903de59a43439e15e6", + "chain": "base", + "name": "50WETH-50cbXEN", + "symbol": "50WETH-50cbXEN", + "display_symbol": null, + "optimized_symbol": "50WETH-50cbXEN", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.0007060710160206893, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693829071, + "amount": 22.335699875887013, + "raw_amount": 22335699875887014000, + "raw_amount_hex_str": "0x135f858b28ffb615e" + }, + { + "id": "0x08ecc11058efd2acfd8d351ecda17bf46b5dea35", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.26368442748568, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698925075, + "amount": 9e-18, + "raw_amount": 9, + "raw_amount_hex_str": "0x9" + }, + { + "id": "0x096fa90589c05a12b7c4356f9c908c650894e1e0", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501540.0167223462, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695119667, + "amount": 1.6e-17, + "raw_amount": 16, + "raw_amount_hex_str": "0x10" + }, + { + "id": "0x0be4dc963db6ca066ff147069b9c437da683608b", + "chain": "base", + "name": "It is not ogre until it is OGRE", + "symbol": "veOGRE", + "display_symbol": null, + "optimized_symbol": "veOGRE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 829.4457047209523, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691168451, + "amount": 0.000003326074467418, + "raw_amount": 3326074467418, + "raw_amount_hex_str": "0x306697cb45a" + }, + { + "id": "0x0c659734f1eef9c63b7ebdf78a164cdd745586db", + "chain": "base", + "name": "Balancer USDC/USDbC/axlUSDC", + "symbol": "USDC/USDbC/axlUSDC", + "display_symbol": null, + "optimized_symbol": "USDC/USDbC/axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.002274931882398, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694032789, + "amount": 1102.5723808648565, + "raw_amount": 1.1025723808648566e+21, + "raw_amount_hex_str": "0x3bc543fab7be790ee7" + }, + { + "id": "0x0d9e306cd13ab76588eb2363c2c69d7ccf32a7fe", + "chain": "base", + "name": "40WETH-60USDbC", + "symbol": "40WETH-60USDbC", + "display_symbol": null, + "optimized_symbol": "40WETH-60USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500506.7559293171, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693506859, + "amount": 7.3e-17, + "raw_amount": 73, + "raw_amount_hex_str": "0x49" + }, + { + "id": "0x109fb663fbe47bcef8cf1d74759ebb869e390105", + "chain": "base", + "name": "1WETH-99USDbC", + "symbol": "1WETH-99USDbC", + "display_symbol": null, + "optimized_symbol": "1WETH-99USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.5709811540202507, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692905203, + "amount": 0.000542238392422574, + "raw_amount": 542238392422574, + "raw_amount_hex_str": "0x1ed29b6c390ae" + }, + { + "id": "0x17e7d59bb209a3215ccc25fffef7161498b7c10d", + "chain": "base", + "name": "1WETH-99GOLD", + "symbol": "1WETH-99GOLD", + "display_symbol": null, + "optimized_symbol": "1WETH-99GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 6.7829522731922065, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691862139, + "amount": 11.917361162847214, + "raw_amount": 11917361162847216000, + "raw_amount_hex_str": "0xa562f8d6338b5d5e" + }, + { + "id": "0x18423174a94aa1856ed43b76214fa5a94534ceb0", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.28228059970709, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694515167, + "amount": 9.67147149041e-7, + "raw_amount": 967147149041, + "raw_amount_hex_str": "0xe12e7656f1" + }, + { + "id": "0x18f150c43598cd822d39711c55bd90407a8b8ad7", + "chain": "base", + "name": "90BPT-50STABAL3-50WETH-10ONE", + "symbol": "90BPT-50STABAL3-50WETH-10ONE", + "display_symbol": null, + "optimized_symbol": "90BPT-50STABAL3-50WETH-10ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 20.808735264061454, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693173391, + "amount": 0.004275312595321334, + "raw_amount": 4275312595321334, + "raw_amount_hex_str": "0xf305fc88c41f6" + }, + { + "id": "0x2423d6e341270bcd5add138bc3d4058857d5455f", + "chain": "base", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 47.55589440938863, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691065435, + "amount": 0.03034810447663124, + "raw_amount": 30348104476631240, + "raw_amount_hex_str": "0x6bd170b2efa0c7" + }, + { + "id": "0x26987d07edb3bbff6c20642aa63c2fddf29aecab", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.30767349952728, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697042071, + "amount": 1.6e-17, + "raw_amount": 16, + "raw_amount_hex_str": "0x10" + }, + { + "id": "0x2db50a0e0310723ef0c2a165cb9a9f80d772ba2f", + "chain": "base", + "name": "Balancer 50 STABAL3 50 WETH", + "symbol": "BPT-50STABAL3-50WETH", + "display_symbol": null, + "optimized_symbol": "BPT-50STABAL3-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 46.163935923925045, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691004073, + "amount": 0.9932558909860915, + "raw_amount": 993255890986091400, + "raw_amount_hex_str": "0xdc8c0f8694a439d" + }, + { + "id": "0x2e756db1c5370874bef3e012d3606e6e0e685f5a", + "chain": "base", + "name": "axlUSD-(USDbC-DAI) Stableswap", + "symbol": "axlUSD-USDbC-DAI", + "display_symbol": null, + "optimized_symbol": "axlUSD-USDbC-DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0414146291537834, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691339439, + "amount": 0.000054744309356949, + "raw_amount": 54744309356949, + "raw_amount_hex_str": "0x31ca271cd995" + }, + { + "id": "0x2f5506155e08ca0766d963d5cb51137b8f8efb51", + "chain": "base", + "name": "33BALD-33WETH-33GOLD", + "symbol": "33BALD-33WETH-33GOLD", + "display_symbol": null, + "optimized_symbol": "33BALD-33WETH-33GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 5.30202048882286, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696477501, + "amount": 0.000915756918586558, + "raw_amount": 915756918586558, + "raw_amount_hex_str": "0x340e045d53cbe" + }, + { + "id": "0x31b974f089a43e183859c895d503bdce491f22cc", + "chain": "base", + "name": "50BAL-50USDbC", + "symbol": "50BAL-50USDbC", + "display_symbol": null, + "optimized_symbol": "50BAL-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.5821911611317256, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693828761, + "amount": 1.9912674424e-7, + "raw_amount": 199126744240, + "raw_amount_hex_str": "0x2e5ce0fcb0" + }, + { + "id": "0x3f3e72417d016687f02eb369025f33b60db585cd", + "chain": "base", + "name": "50WETH-50OGRE", + "symbol": "50WETH-50OGRE", + "display_symbol": null, + "optimized_symbol": "50WETH-50OGRE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2503.8585389116056, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692034807, + "amount": 0.000016212118593652, + "raw_amount": 16212118593652, + "raw_amount_hex_str": "0xebead91e074" + }, + { + "id": "0x4200000000000000000000000000000000000006", + "chain": "base", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/eth/d61441782d4a08a7479d54aea211679e.png", + "protocol_id": "base_nether", + "price": 2020.02, + "price_24h_change": 0.06367800358007782, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": null, + "amount": 7.014146518e-9, + "raw_amount": 7014146518, + "raw_amount_hex_str": "0x1a21361d6" + }, + { + "id": "0x433f09ca08623e48bac7128b7105de678e37d988", + "chain": "base", + "name": "Balancer 50GOLD/25WETH/25USDC", + "symbol": "50GOLD/25WETH/25USDC", + "display_symbol": null, + "optimized_symbol": "50GOLD/25WETH/25USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 22.322353594197224, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694033265, + "amount": 86.95792455048337, + "raw_amount": 86957924550483380000, + "raw_amount_hex_str": "0x4b6c89ba7e4c7e86f" + }, + { + "id": "0x4c1050754761c613799302f05201cc8a60c8cce0", + "chain": "base", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.54082742575445, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691715283, + "amount": 1.2e-17, + "raw_amount": 12, + "raw_amount_hex_str": "0xc" + }, + { + "id": "0x4e4b7d0ad9c88c878a29735dbc5beccbd1966a79", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.4690140605631, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691228009, + "amount": 0.000002795480843536, + "raw_amount": 2795480843536, + "raw_amount_hex_str": "0x28adfa48510" + }, + { + "id": "0x52e281318fed4efffb8e46c0847a8f9b71a461a8", + "chain": "base", + "name": " 50tBTC-50WETH", + "symbol": " 50tBTC-50WETH", + "display_symbol": null, + "optimized_symbol": " 50tBTC-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 8905.259143716215, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691576417, + "amount": 0.000553609705251311, + "raw_amount": 553609705251311, + "raw_amount_hex_str": "0x1f7814dd361ef" + }, + { + "id": "0x58f2110b61f97fd6b9200b038d92f17c722a5a33", + "chain": "base", + "name": "Balancer axlBAL/BAL Stable", + "symbol": "axlBAL/BAL", + "display_symbol": null, + "optimized_symbol": "axlBAL/BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2.9630454593009556, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694722607, + "amount": 1.2262999113384636, + "raw_amount": 1226299911338463500, + "raw_amount_hex_str": "0x1104b145ab6c1137" + }, + { + "id": "0x5c2142dc10f0c467eb6cde0a8157b7aa393d4276", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.30909656848657, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698213099, + "amount": 3e-18, + "raw_amount": 3, + "raw_amount_hex_str": "0x3" + }, + { + "id": "0x65e8e75899f683c8e2e73c77d6c5c63075f296cd", + "chain": "base", + "name": "50WETH-50SUS", + "symbol": "50WETH-50SUS", + "display_symbol": null, + "optimized_symbol": "50WETH-50SUS", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.21050234109571614, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692545799, + "amount": 12.913116669340578, + "raw_amount": 12913116669340578000, + "raw_amount_hex_str": "0xb3349b31b3387082" + }, + { + "id": "0x668c6196e539391e0020a3dee3ac99b74984bcce", + "chain": "base", + "name": "50BAL-50WETH", + "symbol": "50BAL-50WETH", + "display_symbol": null, + "optimized_symbol": "50BAL-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 91.4243426870821, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695891635, + "amount": 0.000019036178358475, + "raw_amount": 19036178358475, + "raw_amount_hex_str": "0x115034a620cb" + }, + { + "id": "0x6b1baa0a046c9ebb7da8668b66e9282a896e1edb", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.424893480279394, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698437601, + "amount": 0.21615312666323083, + "raw_amount": 216153126663230850, + "raw_amount_hex_str": "0x2ffee1f9bda157b" + }, + { + "id": "0x6db9ad76db82f980375249926658deae729c06c9", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 508259.37273533, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697041429, + "amount": 1.43e-16, + "raw_amount": 143, + "raw_amount_hex_str": "0x8f" + }, + { + "id": "0x6fbfcf88db1aada31f34215b2a1df7fafb4883e9", + "chain": "base", + "name": "Balancer DAI-USDbC Stable Pool", + "symbol": "BPT-stabal3", + "display_symbol": null, + "optimized_symbol": "BPT-stabal3", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0059216693445938, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691003665, + "amount": 44.52055052876204, + "raw_amount": 44520550528762040000, + "raw_amount_hex_str": "0x269d8c4d36fb0be60" + }, + { + "id": "0x78380eff80f1381b29702c0f87da10bd7d7cec97", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.29490473524901, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696939573, + "amount": 0.000057115831262269, + "raw_amount": 57115831262269, + "raw_amount_hex_str": "0x33f250d55c3d" + }, + { + "id": "0x7bd499100daee002c8df900d831a3dc0c2c91040", + "chain": "base", + "name": "85BPT-stabal3-15ONE", + "symbol": "85BPT-stabal3-15ONE", + "display_symbol": null, + "optimized_symbol": "85BPT-stabal3-15ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.710586834230255, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693090007, + "amount": 0.016822103739641166, + "raw_amount": 16822103739641164, + "raw_amount_hex_str": "0x3bc39d3dc6ad4c" + }, + { + "id": "0x868f0efc81a6c1df16298dcc82f7926b9099946b", + "chain": "base", + "name": "50BALD/50WETH", + "symbol": "50BALD/50WETH", + "display_symbol": null, + "optimized_symbol": "50BALD/50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.696506828977802, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690926435, + "amount": 0.8989946763155193, + "raw_amount": 898994676315519400, + "raw_amount_hex_str": "0xc79dee520c0f95d" + }, + { + "id": "0x8c2062ec8d477366c749982e3703371a7ae1e665", + "chain": "base", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1045.8643052102325, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691723213, + "amount": 0.000013817634899761, + "raw_amount": 13817634899761, + "raw_amount_hex_str": "0xc912b384731" + }, + { + "id": "0x942856f463e5960cdce798a8380f20380569b5de", + "chain": "base", + "name": "50WETH-50axlUSDC", + "symbol": "50WETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501853.9296757572, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692627053, + "amount": 6e-18, + "raw_amount": 6, + "raw_amount_hex_str": "0x6" + }, + { + "id": "0x9544eb53f98098c6a885a7a4cd014d7a4a03aa63", + "chain": "base", + "name": "80GOLD-20WETH", + "symbol": "80GOLD-20WETH", + "display_symbol": null, + "optimized_symbol": "80GOLD-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 28.118325343199324, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696184983, + "amount": 0.05348919387134664, + "raw_amount": 53489193871346640, + "raw_amount_hex_str": "0xbe082370060bce" + }, + { + "id": "0x990a0f03c3ee397cafda61cad277de18280751fd", + "chain": "base", + "name": "50WETH-50TAG", + "symbol": "50WETH-50TAG", + "display_symbol": null, + "optimized_symbol": "50WETH-50TAG", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 7.716557765443493, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699425967, + "amount": 922.481893205905, + "raw_amount": 922481893205904900000, + "raw_amount_hex_str": "0x3202020a5a2bcac492" + }, + { + "id": "0xa0aa5caffc32a2fe3bdbebaf37e2c75d0dc6d1ab", + "chain": "base", + "name": "50BAL-50DAI", + "symbol": "50BAL-50DAI", + "display_symbol": null, + "optimized_symbol": "50BAL-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.9974300095616253, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694340063, + "amount": 0.003807170695221056, + "raw_amount": 3807170695221056, + "raw_amount_hex_str": "0xd869a00e34f40" + }, + { + "id": "0xa30ad556d10c829a67f41f60d41afdd4efa9286c", + "chain": "base", + "name": "SIS-FOOB-ICE-SOLAR-WETH Index", + "symbol": "Friend Tech Index", + "display_symbol": null, + "optimized_symbol": "Friend Tech Index", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 40.272781159721134, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692492397, + "amount": 2.2490899336915793, + "raw_amount": 2249089933691579100, + "raw_amount_hex_str": "0x1f365f60e597eb33" + }, + { + "id": "0xa892be6ee527f4fb8b3b60486a53c0627cb1d27e", + "chain": "base", + "name": "50WETH-50LINU", + "symbol": "50WETH-50LINU", + "display_symbol": null, + "optimized_symbol": "50WETH-50LINU", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.011903999521629096, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691423711, + "amount": 141.33453079841297, + "raw_amount": 141334530798412990000, + "raw_amount_hex_str": "0x7a9691ef04fe96a37" + }, + { + "id": "0xb1b1155337d19eb0ef9c75aa88aeb4e531440508", + "chain": "base", + "name": "50WETH-50Gekko", + "symbol": "50WETH-50Gekko", + "display_symbol": null, + "optimized_symbol": "50WETH-50Gekko", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 23.928127599684583, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693789333, + "amount": 0.04278591155799549, + "raw_amount": 42785911557995490, + "raw_amount_hex_str": "0x98018f53ce3be2" + }, + { + "id": "0xb301f96097f1ab4f189f04a4662c751c822ef38f", + "chain": "base", + "name": "50DAI-50USDbC", + "symbol": "50DAI-50USDbC", + "display_symbol": null, + "optimized_symbol": "50DAI-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.9999750833354478, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697046577, + "amount": 8.0028e-14, + "raw_amount": 80028, + "raw_amount_hex_str": "0x1389c" + }, + { + "id": "0xb328b50f1f7d97ee8ea391ab5096dd7657555f49", + "chain": "base", + "name": "Balancer GOLD/BAL/USDC", + "symbol": "GOLD/BAL/USDC", + "display_symbol": null, + "optimized_symbol": "GOLD/BAL/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.66908327476639, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694033753, + "amount": 113.16905679669364, + "raw_amount": 113169056796693640000, + "raw_amount_hex_str": "0x62289418facee48d8" + }, + { + "id": "0xc561540c16d49d0bfc69c99f9fc66145b1d5ddbd", + "chain": "base", + "name": "axlUSD-(USDbC-DAI) Stableswap", + "symbol": "axlUSD-USDbC-DAI", + "display_symbol": null, + "optimized_symbol": "axlUSD-USDbC-DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500097.4265349738, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691342703, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0xc69793563a8f0a2c5b25bcfb8661de50da8eae10", + "chain": "base", + "name": "Balancer STG/USDbC Pool", + "symbol": "STG-USDbC-BPT", + "display_symbol": null, + "optimized_symbol": "STG-USDbC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.7765131370415246, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691688123, + "amount": 2.836888676202685, + "raw_amount": 2836888676202685000, + "raw_amount_hex_str": "0x275ea7387463a1d6" + }, + { + "id": "0xc771c1a5905420daec317b154eb13e4198ba97d0", + "chain": "base", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2049.9465037888144, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692107167, + "amount": 0.8149368855692628, + "raw_amount": 814936885569262800, + "raw_amount_hex_str": "0xb4f3cc79ab81509" + }, + { + "id": "0xc8dd61ff747c4bf93995a8086a8562f136059dc3", + "chain": "base", + "name": "1cbETH-99ONE", + "symbol": "1cbETH-99ONE", + "display_symbol": null, + "optimized_symbol": "1cbETH-99ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.01954820242501277, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692585869, + "amount": 0.17388767502543423, + "raw_amount": 173887675025434240, + "raw_amount_hex_str": "0x269c5eb4cb5a679" + }, + { + "id": "0xca0759728498476b83a2e551d7d3fa3a71a8e138", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501624.892039205, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697726771, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0xcc4ccab360dc7267117f20ecd929a7437eadc004", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.38412163034088, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697402059, + "amount": 2.09653810626e-7, + "raw_amount": 209653810626, + "raw_amount_hex_str": "0x30d05745c2" + }, + { + "id": "0xcd75320d7e9c2ec452a9dc1d3c3d8f5392e8f9a2", + "chain": "base", + "name": "SIS-FOOB-SOLAR-WETH Index", + "symbol": "Friend Tech Index", + "display_symbol": null, + "optimized_symbol": "Friend Tech Index", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 59.51866217363751, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692489629, + "amount": 0.017509630731620925, + "raw_amount": 17509630731620926, + "raw_amount_hex_str": "0x3e34ea97e8123e" + }, + { + "id": "0xcde67b70e8144d7d2772de59845b3a67266c2ca7", + "chain": "base", + "name": "50DAI-50BAL", + "symbol": "50DAI-50BAL", + "display_symbol": null, + "optimized_symbol": "50DAI-50BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.2153088486065178, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690525003, + "amount": 0.2657347200823842, + "raw_amount": 265734720082384200, + "raw_amount_hex_str": "0x3b01451eaff9540" + }, + { + "id": "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "chain": "base", + "name": "USD Base Coin", + "symbol": "USDbC", + "display_symbol": null, + "optimized_symbol": "USDbC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/base_token/logo_url/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca/e0cec5bf6ef983918de294d852ea9586.png", + "protocol_id": "base_fxdx", + "price": 1, + "price_24h_change": 0, + "is_verified": false, + "is_core": true, + "is_wallet": true, + "time_at": 1690914161, + "amount": 0.000567, + "raw_amount": 567, + "raw_amount_hex_str": "0x237" + }, + { + "id": "0xdd6253dc8052fdecd9f425fd6173a244fd343e5d", + "chain": "base", + "name": "50cbETH-50axlUSDC", + "symbol": "50cbETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50cbETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 46.52203372301169, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697923953, + "amount": 0.000013332783823163, + "raw_amount": 13332783823163, + "raw_amount_hex_str": "0xc2047d7f93b" + }, + { + "id": "0xdede69b3859a9b16a4e11828f9619576ede8a7b1", + "chain": "base", + "name": "50USDbC-50STG", + "symbol": "50USDbC-50STG", + "display_symbol": null, + "optimized_symbol": "50USDbC-50STG", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500298.13228046056, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699100429, + "amount": 2e-18, + "raw_amount": 2, + "raw_amount_hex_str": "0x2" + }, + { + "id": "0xe40cbccba664c7b1a953827c062f5070b78de868", + "chain": "base", + "name": "50WETH-50GOLD", + "symbol": "50WETH-50GOLD", + "display_symbol": null, + "optimized_symbol": "50WETH-50GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 164.72474004809084, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691590801, + "amount": 0.7249351463914372, + "raw_amount": 724935146391437200, + "raw_amount_hex_str": "0xa0f7cacbddb7fa0" + }, + { + "id": "0xe58ca65f418d4121d6c70d4c133e60cf6fda363c", + "chain": "base", + "name": "Balancer USDbC/axlUSD Stable Pool", + "symbol": "BPT-USDbC-axlUSD", + "display_symbol": null, + "optimized_symbol": "BPT-USDbC-axlUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0037261759875478, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691344327, + "amount": 30.181603162018128, + "raw_amount": 30181603162018128000, + "raw_amount_hex_str": "0x1a2da982ab7e59bf7" + }, + { + "id": "0xe94dfd524414220b3f5d321a20b6f9dbc1d53a1f", + "chain": "base", + "name": "80SIS-20WETH", + "symbol": "80SIS-20WETH", + "display_symbol": null, + "optimized_symbol": "80SIS-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 30.06537793129719, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692552269, + "amount": 0.000019067113433094, + "raw_amount": 19067113433094, + "raw_amount_hex_str": "0x11576885e806" + }, + { + "id": "0xee94d8df3ecf9158d1cd3d752c7b61fc4fd46b12", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.23725479566832, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699445633, + "amount": 1.9e-17, + "raw_amount": 19, + "raw_amount_hex_str": "0x13" + }, + { + "id": "0xf912fe5769800bb19c66706cb7f61c97c7122f22", + "chain": "base", + "name": "50WETH-50axlUSDC", + "symbol": "50WETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.30926657454446, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697738707, + "amount": 0.06753290112947413, + "raw_amount": 67532901129474136, + "raw_amount_hex_str": "0xefecd0d679505b" + }, + { + "id": "0xfa4ac3ecfece20769f8b5d9b6dfa5b7ed6569de2", + "chain": "base", + "name": "Balancer MZ-WETH Pool", + "symbol": "MZ-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "MZ-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 51.908013951800484, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692624143, + "amount": 0.12320218633352456, + "raw_amount": 123202186333524560, + "raw_amount_hex_str": "0x1b5b3bc57f6124d" + }, + { + "id": "0xfab10dd71e11d0ad403cc31418b45d816f2f9882", + "chain": "base", + "name": "20WETH-80WELL", + "symbol": "20WETH-80WELL", + "display_symbol": null, + "optimized_symbol": "20WETH-80WELL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.05624531117891396, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691704783, + "amount": 14.269979235295114, + "raw_amount": 14269979235295113000, + "raw_amount_hex_str": "0xc609268247f730bc" + }, + { + "id": "0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6", + "chain": "base", + "name": "Balancer cbETH/WETH StablePool", + "symbol": "cbETH/WETH", + "display_symbol": null, + "optimized_symbol": "cbETH/WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2043.101044094025, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692241741, + "amount": 1.05527503152602, + "raw_amount": 1055275031526020100, + "raw_amount_hex_str": "0xea5170cd27293e1" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-11-09-eth.json b/FeeSweep/2023-11-09-eth.json new file mode 100644 index 000000000..d46694469 --- /dev/null +++ b/FeeSweep/2023-11-09-eth.json @@ -0,0 +1,7802 @@ +[ + { + "id": "0x000b87c8a4c6cbcef7a2577e8aa0dc134c67c3d8", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.764325922014122, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647839442, + "amount": 92.5310479410539, + "raw_amount": 92531047941053890000, + "raw_amount_hex_str": "0x5042051da1528515d" + }, + { + "id": "0x00c2a4be503869fa751c2dbcb7156cc970b5a8da", + "chain": "eth", + "name": "bb-euler-FRAX-bb-euler-USDC", + "symbol": "bb-euler-FRAX-bb-euler-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "bb-euler-FRAX-bb-euler-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0070344562290912, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675964063, + "amount": 0.00017805188028749, + "raw_amount": 178051880287490, + "raw_amount_hex_str": "0xa1efef137d02" + }, + { + "id": "0x01536b22ea06e4a315e3daaf05a12683ed4dc14c", + "chain": "eth", + "name": "wUSK/paUSD/USDC", + "symbol": "e-cs-kp-usd", + "display_symbol": null, + "optimized_symbol": "e-cs-kp-usd", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6689673852493572, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696582043, + "amount": 0.01655639630173778, + "raw_amount": 16556396301737780, + "raw_amount_hex_str": "0x3ad1f468535f34" + }, + { + "id": "0x02ca8086498552c071451724d3a34caa3922b65a", + "chain": "eth", + "name": "80ROOT-20WETH", + "symbol": "80ROOT-20WETH", + "display_symbol": null, + "optimized_symbol": "80ROOT-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.4589678287522978, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698446519, + "amount": 114.06325732496376, + "raw_amount": 114063257324963760000, + "raw_amount_hex_str": "0x62ef218343a6ffe2d" + }, + { + "id": "0x02d928e68d8f10c0358566152677db51e1e2dc8c", + "chain": "eth", + "name": "Balancer Boosted swETH-WETH", + "symbol": "swETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1948.5478092129792, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681569515, + "amount": 0.009605473708968673, + "raw_amount": 9605473708968672, + "raw_amount_hex_str": "0x222020a0528ae1" + }, + { + "id": "0x034e2d995b39a88ab9a532a9bf0deddac2c576ea", + "chain": "eth", + "name": "80SD-20ETHx", + "symbol": "80SD-20ETHx", + "display_symbol": null, + "optimized_symbol": "80SD-20ETHx", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.8808049004985192, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692575471, + "amount": 47.34391065518666, + "raw_amount": 47343910655186665000, + "raw_amount_hex_str": "0x291075be6f03b7819" + }, + { + "id": "0x038a68ff68c393373ec894015816e33ad41bd564", + "chain": "eth", + "name": "Glitch", + "symbol": "GLCH", + "display_symbol": null, + "optimized_symbol": "GLCH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x038a68ff68c393373ec894015816e33ad41bd564/f4ba4174614971f177c220d931b0bf68.png", + "protocol_id": "", + "price": 0.005815901359984954, + "price_24h_change": 0.013739162435748646, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608173369, + "amount": 76.08624061003349, + "raw_amount": 76086240610033480000, + "raw_amount_hex_str": "0x41fe8a0b66ff249d4" + }, + { + "id": "0x0391d2021f89dc339f60fff84546ea23e337750f", + "chain": "eth", + "name": "BarnBridge Governance Token", + "symbol": "BOND", + "display_symbol": null, + "optimized_symbol": "BOND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0391d2021f89dc339f60fff84546ea23e337750f/160c85e7f4ed44ee16fd35d53008ea3c.png", + "protocol_id": "barnbridge", + "price": 4.517770014808522, + "price_24h_change": 0.025864308350658834, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599494104, + "amount": 0.000740309873162143, + "raw_amount": 740309873162143, + "raw_amount_hex_str": "0x2a14ed303779f" + }, + { + "id": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "chain": "eth", + "name": "Rai Reflex Index", + "symbol": "RAI", + "display_symbol": null, + "optimized_symbol": "RAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x03ab458634910aad20ef5f1c8ee96f1d6ac54919/89f0c429b594592724ea3cbf3d08a8ea.png", + "protocol_id": "reflexer", + "price": 2.7766026083970923, + "price_24h_change": 0.004367470863450182, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613221351, + "amount": 0.239279960732774, + "raw_amount": 239279960732773980, + "raw_amount_hex_str": "0x35217db4558ae6c" + }, + { + "id": "0x04248aabca09e9a1a3d5129a7ba05b7f17de7684", + "chain": "eth", + "name": "Balancer qETH-Boosted Aave WETH StablePool", + "symbol": "qETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1929.7436501203765, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681144535, + "amount": 0.6363358808900635, + "raw_amount": 636335880890063500, + "raw_amount_hex_str": "0x8d4b81cba499a9f" + }, + { + "id": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", + "chain": "eth", + "name": "UMA Voting Token v1", + "symbol": "UMA", + "display_symbol": null, + "optimized_symbol": "UMA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x04fa0d235c4abf4bcf4787af4cf447de572ef828/cabffedd327aaea32dd7bcf155f9cbd6.png", + "protocol_id": "uma", + "price": 1.7041437043185377, + "price_24h_change": 0.05685854483960009, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1578581061, + "amount": 0.001970754429405869, + "raw_amount": 1970754429405869, + "raw_amount_hex_str": "0x7006405b44aad" + }, + { + "id": "0x057acee6df29ecc20e87a77783838d90858c5e83", + "chain": "eth", + "name": "Wrapped Pirate Chain", + "symbol": "wARRR", + "display_symbol": null, + "optimized_symbol": "wARRR", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x057acee6df29ecc20e87a77783838d90858c5e83/95b10f25dc71d21b17555a57a8fe8bc5.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.012909528810034968, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1669853195, + "amount": 165.6457043, + "raw_amount": 16564570430, + "raw_amount_hex_str": "0x3db53493e" + }, + { + "id": "0x05b1a35fdbc43849aa836b00c8861696edce8cc4", + "chain": "eth", + "name": "50mevETH-50WETH", + "symbol": "50mevETH-50WETH", + "display_symbol": null, + "optimized_symbol": "50mevETH-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1910.2041235526806, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697099279, + "amount": 0.001230702004713562, + "raw_amount": 1230702004713562, + "raw_amount_hex_str": "0x45f5123d0b85a" + }, + { + "id": "0x06325440d014e39736583c165c2963ba99faf14e", + "chain": "eth", + "name": "Curve.fi ETH/stETH", + "symbol": "steCRV", + "display_symbol": null, + "optimized_symbol": "steCRV", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 2068.589536240617, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1609806378, + "amount": 0.381234451560607, + "raw_amount": 381234451560607000, + "raw_amount_hex_str": "0x54a6ab6bd692cff" + }, + { + "id": "0x064bcc35bfe023fe717a87574fae9333f98aae4d", + "chain": "eth", + "name": "80RATE-20WETH", + "symbol": "80RATE-20WETH", + "display_symbol": null, + "optimized_symbol": "80RATE-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.0417668983372685, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689642755, + "amount": 0.5557521600242683, + "raw_amount": 555752160024268300, + "raw_amount_hex_str": "0x7b66da521670df6" + }, + { + "id": "0x065f5b35d4077334379847fe26f58b1029e51161", + "chain": "eth", + "name": "80SGT-10DAI-10WETH", + "symbol": "80SGT-10DAI-10WETH", + "display_symbol": null, + "optimized_symbol": "80SGT-10DAI-10WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.17483114833861207, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677356255, + "amount": 96.90836763695476, + "raw_amount": 96908367636954780000, + "raw_amount_hex_str": "0x540dfaeec5ba66e11" + }, + { + "id": "0x06c55dad9a50adbc824ea50ef7acf54a290e5493", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.751011102824149, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647501192, + "amount": 11.574551385596456, + "raw_amount": 11574551385596455000, + "raw_amount_hex_str": "0xa0a111291cfb67d9" + }, + { + "id": "0x06c985ff69f7257e212a89828f79497a3c8b6edf", + "chain": "eth", + "name": "Coin", + "symbol": "COIN", + "display_symbol": null, + "optimized_symbol": "COIN", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0.009271787291733176, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653961493, + "amount": 95053, + "raw_amount": 95053, + "raw_amount_hex_str": "0x1734d" + }, + { + "id": "0x0740a6cfb9468b8b53070c0b327099293dccb82d", + "chain": "eth", + "name": "Element Principal Token yvCurveLUSD-29APR22", + "symbol": "ePyvCurveLUSD-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurveLUSD-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0261885219256355, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639513942, + "amount": 768.3981828286567, + "raw_amount": 768398182828656700000, + "raw_amount_hex_str": "0x29a7aabc2275bd2ae1" + }, + { + "id": "0x08209ed93725328828cb199afbe0e068c8e5e215", + "chain": "eth", + "name": "34WBTC-12MATIC-12AAVE-42stETH", + "symbol": "34WBTC-12MATIC-12AAVE-42stETH", + "display_symbol": null, + "optimized_symbol": "34WBTC-12MATIC-12AAVE-42stETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1263.2075507961142, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677749567, + "amount": 0.006092840005170265, + "raw_amount": 6092840005170265, + "raw_amount_hex_str": "0x15a567dc2e7459" + }, + { + "id": "0x08775ccb6674d6bdceb0797c364c2653ed84f384", + "chain": "eth", + "name": "Balancer 50WETH-50-3pool", + "symbol": "50WETH-50-3pool", + "display_symbol": null, + "optimized_symbol": "50WETH-50-3pool", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 44.19387543685558, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680364331, + "amount": 7.743894114981631, + "raw_amount": 7743894114981632000, + "raw_amount_hex_str": "0x6b77d6ab2db7d635" + }, + { + "id": "0x08cc92fedc1ce2d8525176a63fcff404450f2998", + "chain": "eth", + "name": "50B-baoUSD-LUSD-BPT-50BAO", + "symbol": "50B-baoUSD-LUSD-BPT-50BAO", + "display_symbol": null, + "optimized_symbol": "50B-baoUSD-LUSD-BPT-50BAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.015538248717058433, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683789479, + "amount": 2949.625970316465, + "raw_amount": 2.949625970316465e+21, + "raw_amount_hex_str": "0x9fe6488836f3cbdda3" + }, + { + "id": "0x09459654777bb2669ad8ad0b54e876d4b5ff77f4", + "chain": "eth", + "name": "Element Principal Token yvDAI-24FEB23", + "symbol": "ePyvDAI-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-24FEB23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.99995, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661282295, + "amount": 29.121950985069077, + "raw_amount": 29121950985069076000, + "raw_amount_hex_str": "0x19425f4204f611fd9" + }, + { + "id": "0x097f9f108ee0db2cb266aa16ccfb4831ec4d770b", + "chain": "eth", + "name": "Element Principal Token yvCurve-3Crypto-16SEP22", + "symbol": "ePyvCurve-3Crypto-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-3Crypto-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1288.1321023951043, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650481210, + "amount": 0.018352290212467388, + "raw_amount": 18352290212467388, + "raw_amount_hex_str": "0x41334f8aedd2bb" + }, + { + "id": "0x0a2a6c2996007da3fc8b30ca26179e1292c2ef0a", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698113855, + "amount": 946.8081404300132, + "raw_amount": 946808140430013200000, + "raw_amount_hex_str": "0x33539a3b510b19224c" + }, + { + "id": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "chain": "eth", + "name": "yearn.finance", + "symbol": "YFI", + "display_symbol": null, + "optimized_symbol": "YFI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/yearn/f14ac7f4efe5c51e1c6b32add3dea10c.png", + "protocol_id": "iearn", + "price": 6601.801757800747, + "price_24h_change": 0.09280589237008337, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594972885, + "amount": 0.2352636733830818, + "raw_amount": 235263673383081800, + "raw_amount_hex_str": "0x343d310808d5742" + }, + { + "id": "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", + "chain": "eth", + "name": "Decentralized USD", + "symbol": "USDD", + "display_symbol": null, + "optimized_symbol": "USDD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6/70890e6172f62f4430bfeaff32680884.png", + "protocol_id": "", + "price": 0.9984, + "price_24h_change": -0.0006406149903908601, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651325080, + "amount": 41.741035429420634, + "raw_amount": 41741035429420640000, + "raw_amount_hex_str": "0x24345f291cf9c98de" + }, + { + "id": "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e", + "chain": "eth", + "name": "PoolTogether", + "symbol": "POOL", + "display_symbol": null, + "optimized_symbol": "POOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0cec1a9154ff802e7934fc916ed7ca50bde6844e/2484f4a3952ba986b8a7016cb697dccc.png", + "protocol_id": "pooltogether", + "price": 0.7398666052698762, + "price_24h_change": 0.09196838566386399, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613508749, + "amount": 0.021435254557757296, + "raw_amount": 21435254557757296, + "raw_amount_hex_str": "0x4c27401d95cf6f" + }, + { + "id": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd", + "chain": "eth", + "name": "Hakka Finance", + "symbol": "HAKKA", + "display_symbol": null, + "optimized_symbol": "HAKKA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd/5f9fa1ec47440398385fe2a9a1f17d6d.png", + "protocol_id": "hakka", + "price": 0.0017058067135714648, + "price_24h_change": -0.007169343074859178, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1586881841, + "amount": 0.27487339898896684, + "raw_amount": 274873398988966850, + "raw_amount_hex_str": "0x3d08be668f10bc7" + }, + { + "id": "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da", + "chain": "eth", + "name": "BlackPool Token", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da/8b4ad02c904251c1e2858a65c5c49e74.png", + "protocol_id": "blackpool", + "price": 0.21209546026569856, + "price_24h_change": 0.035762647826035145, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1622152335, + "amount": 0.16840921670672093, + "raw_amount": 168409216706720930, + "raw_amount_hex_str": "0x2564f4a52b4b4ac" + }, + { + "id": "0x0f2d719407fdbeff09d87557abb7232601fd9f29", + "chain": "eth", + "name": "Synapse", + "symbol": "SYN", + "display_symbol": null, + "optimized_symbol": "SYN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f2d719407fdbeff09d87557abb7232601fd9f29/4497316d0335d94bcec6c0c397238971.png", + "protocol_id": "synapse", + "price": 0.42853505121616564, + "price_24h_change": 0.11616965886001701, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628972639, + "amount": 0.003898999285487913, + "raw_amount": 3898999285487913, + "raw_amount_hex_str": "0xdda1e83641929" + }, + { + "id": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942", + "chain": "eth", + "name": "Decentraland MANA", + "symbol": "MANA", + "display_symbol": null, + "optimized_symbol": "MANA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f5d2fb29fb7d3cfee444a200298f468908cc942/c83dcbf8bae0f6cd1e31c6e176ce5155.png", + "protocol_id": "decentraland", + "price": 0.4401492526043021, + "price_24h_change": 0.04774470040616125, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1502824689, + "amount": 2117.2857453628917, + "raw_amount": 2.1172857453628917e+21, + "raw_amount_hex_str": "0x72c73e078c01537f9d" + }, + { + "id": "0x0fadd10f606554fec1574f28398469d98d68d297", + "chain": "eth", + "name": "Balancer 80XEX 20USDC Pool Token", + "symbol": "B-80XEX-20USDC", + "display_symbol": null, + "optimized_symbol": "B-80XEX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 8.272606179357764e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680691199, + "amount": 16338254.338725785, + "raw_amount": 1.6338254338725784e+25, + "raw_amount_hex_str": "0xd83c28adce9a8be8cc2cb" + }, + { + "id": "0x0fd5663d4893ae0d579d580584806aadd2dd0b8b", + "chain": "eth", + "name": "Balancer 50rETH-50RPL", + "symbol": "50rETH-50RPL", + "display_symbol": null, + "optimized_symbol": "50rETH-50RPL", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 240.45227409670355, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662739812, + "amount": 3.93938246879e-7, + "raw_amount": 393938246879, + "raw_amount_hex_str": "0x5bb88c9cdf" + }, + { + "id": "0x10010078a54396f62c96df8532dc2b4847d47ed3", + "chain": "eth", + "name": "Hundred Finance", + "symbol": "HND", + "display_symbol": null, + "optimized_symbol": "HND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x10010078a54396f62c96df8532dc2b4847d47ed3/cae168ae659748f245f0d57b76521952.png", + "protocol_id": "hundred", + "price": 0.009862852759490061, + "price_24h_change": 0.030880004402761806, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1631627706, + "amount": 2755.380409112071, + "raw_amount": 2.755380409112071e+21, + "raw_amount_hex_str": "0x955e95ab74d37f0ce1" + }, + { + "id": "0x10f8ea49255e8a865ca4eda1630168c85cc8ee81", + "chain": "eth", + "name": "ELFI/WETH 50/50 Weighted Pool", + "symbol": "50ELFI-50WETH", + "display_symbol": null, + "optimized_symbol": "50ELFI-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 12.209928717688003, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692639599, + "amount": 1.9921761686e-8, + "raw_amount": 19921761686, + "raw_amount_hex_str": "0x4a36df596" + }, + { + "id": "0x114f1388fab456c4ba31b1850b244eedcd024136", + "chain": "eth", + "name": "Cool Cats", + "symbol": "COOL", + "display_symbol": null, + "optimized_symbol": "COOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x114f1388fab456c4ba31b1850b244eedcd024136/8915648a58d5afd9e481419f29a2b0f8.png", + "protocol_id": "nftx", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1625256758, + "amount": 0.11419228390229055, + "raw_amount": 114192283902290560, + "raw_amount_hex_str": "0x195b146f6162a78" + }, + { + "id": "0x11839d635e2f0270da37e8ef4324d4d5d5432957", + "chain": "eth", + "name": "10bb-a-USD-90callFLAIX260323", + "symbol": "10bb-a-USD-90callFLAIX260323", + "display_symbol": null, + "optimized_symbol": "10bb-a-USD-90callFLAIX260323", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00002163027641073101, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679059403, + "amount": 0.24244401680865096, + "raw_amount": 242444016808650980, + "raw_amount_hex_str": "0x35d558c7bcc68d6" + }, + { + "id": "0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa", + "chain": "eth", + "name": "Starwire", + "symbol": "STR", + "display_symbol": null, + "optimized_symbol": "STR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa/be315e8b8faeb413e73b8f1d2e4c28c2.png", + "protocol_id": "", + "price": 0.003701230861297645, + "price_24h_change": 0.02169018114003257, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602981353, + "amount": 50018.708750003345, + "raw_amount": 5.001870875000335e+22, + "raw_amount_hex_str": "0xa978506c5a6b84f5273" + }, + { + "id": "0x13c99770694f07279607a6274f28a28c33086424", + "chain": "eth", + "name": "Material", + "symbol": "MTRL", + "display_symbol": null, + "optimized_symbol": "MTRL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x13c99770694f07279607a6274f28a28c33086424/7428f5af9cc4e9770678a2b36c501a73.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.5576737982578098, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638790558, + "amount": 12726.377904856998, + "raw_amount": 1.2726377904856998e+22, + "raw_amount_hex_str": "0x2b1e5f8dd3a3d5c622c" + }, + { + "id": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b", + "chain": "eth", + "name": "DefiPulse Index", + "symbol": "DPI", + "display_symbol": null, + "optimized_symbol": "DPI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b/feb43f922f3e344d42afbb598d0b2e7c.png", + "protocol_id": "tokensets", + "price": 80.35667828011972, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1599694252, + "amount": 0.9190830163663766, + "raw_amount": 919083016366376600, + "raw_amount_hex_str": "0xcc13d22459cc652" + }, + { + "id": "0x150d969723bc8924dc667ba3254bacd967fad266", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697146631, + "amount": 171.80547923704214, + "raw_amount": 171805479237042140000, + "raw_amount_hex_str": "0x95047ad1a05a54a11" + }, + { + "id": "0x158e0fbc2271e1dcebadd365a22e2b4dd173c0db", + "chain": "eth", + "name": "80IDLE-20USDC", + "symbol": "80IDLE-20USDC", + "display_symbol": null, + "optimized_symbol": "80IDLE-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.21295657157953038, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689599735, + "amount": 211.6973899229594, + "raw_amount": 211697389922959400000, + "raw_amount_hex_str": "0xb79e436839b5a8803" + }, + { + "id": "0x173063a30e095313eee39411f07e95a8a806014e", + "chain": "eth", + "name": "Balancer 50TEMPLE-50bb-a-USD", + "symbol": "50TEMPLE-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.37535261561113786, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666877015, + "amount": 0.004583886786538531, + "raw_amount": 4583886786538531, + "raw_amount_hex_str": "0x1049054f9a2c23" + }, + { + "id": "0x18aaa7115705e8be94bffebde57af9bfc265b998", + "chain": "eth", + "name": "Audius", + "symbol": "AUDIO", + "display_symbol": null, + "optimized_symbol": "AUDIO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x18aaa7115705e8be94bffebde57af9bfc265b998/8c4d2409af350ab696f37b9fde9d378d.png", + "protocol_id": "", + "price": 0.19215255078667792, + "price_24h_change": 0.032556055990636205, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1603333709, + "amount": 5.5795443874753765, + "raw_amount": 5579544387475376000, + "raw_amount_hex_str": "0x4d6e860f07fe8833" + }, + { + "id": "0x18fdf15ff782e44c1f9b6c5846ff6b0f0004f6a2", + "chain": "eth", + "name": "50OHM-50LUSD", + "symbol": "50OHM-50LUSD", + "display_symbol": null, + "optimized_symbol": "50OHM-50LUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.367391569066032, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685952995, + "amount": 50.48557359854856, + "raw_amount": 50485573598548560000, + "raw_amount_hex_str": "0x2bca0c9b42f538691" + }, + { + "id": "0x194ebd173f6cdace046c53eacce9b953f28411d1", + "chain": "eth", + "name": "Curve.fi EURS/sEUR", + "symbol": "eursCRV", + "display_symbol": null, + "optimized_symbol": "eursCRV", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.077498980718305, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1608157510, + "amount": 2.248196352882993, + "raw_amount": 2248196352882993000, + "raw_amount_hex_str": "0x1f3332abe6eb672e" + }, + { + "id": "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0", + "chain": "eth", + "name": "baoETH-ETH StablePool", + "symbol": "B-baoETH-ETH-BPT", + "display_symbol": null, + "optimized_symbol": "B-baoETH-ETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1043.0804206421253, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681544303, + "amount": 0.187736208503541, + "raw_amount": 187736208503541000, + "raw_amount_hex_str": "0x29af91643550d0b" + }, + { + "id": "0x1b6e13673f29688e27311b332af1527f1ebf1d28", + "chain": "eth", + "name": "80PSDN-20WETH", + "symbol": "80PSDN-20WETH", + "display_symbol": null, + "optimized_symbol": "80PSDN-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.989196607201641, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684137239, + "amount": 53.151501573994565, + "raw_amount": 53151501573994560000, + "raw_amount_hex_str": "0x2e1a01112a48fc3d6" + }, + { + "id": "0x1bd2f176a812e312077bca87e37c08432bb09f3e", + "chain": "eth", + "name": "qETH/Boosted Aave v3 WETH", + "symbol": "qETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1922.5413786908398, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689520715, + "amount": 0.007532327892830541, + "raw_amount": 7532327892830541, + "raw_amount_hex_str": "0x1ac29cc062494d" + }, + { + "id": "0x1cf0f3aabe4d12106b27ab44df5473974279c524", + "chain": "eth", + "name": "xSNX", + "symbol": "xSNXa", + "display_symbol": null, + "optimized_symbol": "xSNXa", + "decimals": 18, + "logo_url": null, + "protocol_id": "xtoken", + "price": 0.45258558664082943, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621899341, + "amount": 70.66571045034482, + "raw_amount": 70665710450344820000, + "raw_amount_hex_str": "0x3d4af094069697b9c" + }, + { + "id": "0x1d1b44a4c5a047bdc9b3f06842566e5ea9c1966d", + "chain": "eth", + "name": "Balancer USDC-USDT Fixed Rate Pool", + "symbol": "B-USDC-USDT-FIXED-RATE", + "display_symbol": null, + "optimized_symbol": "B-USDC-USDT-FIXED-RATE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0005934528125195, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667287751, + "amount": 8.639631653279508, + "raw_amount": 8639631653279507000, + "raw_amount_hex_str": "0x77e62336c3f22577" + }, + { + "id": "0x1e5193ccc53f25638aa22a940af899b692e10b09", + "chain": "eth", + "name": "Alluo Token", + "symbol": "ALLUO", + "display_symbol": null, + "optimized_symbol": "ALLUO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e5193ccc53f25638aa22a940af899b692e10b09/0181c06bfff0edd1585037e86b02c978.png", + "protocol_id": "alluo", + "price": 0.01406605869609515, + "price_24h_change": 0.023203766442298757, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639219884, + "amount": 2743.9128871410508, + "raw_amount": 2.743912887141051e+21, + "raw_amount_hex_str": "0x94bf70d8fb32d52e33" + }, + { + "id": "0x1e83916ea2ef2d7a6064775662e163b2d4c330a7", + "chain": "eth", + "name": "EthereumGasLimit", + "symbol": "EGL", + "display_symbol": null, + "optimized_symbol": "EGL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e83916ea2ef2d7a6064775662e163b2d4c330a7/61c37afbb6b52ba182266f62d47b8258.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628861140, + "amount": 216579.38247266778, + "raw_amount": 2.165793824726678e+23, + "raw_amount_hex_str": "0x2ddccab6a824d93715f6" + }, + { + "id": "0x1ee442b5326009bb18f2f472d3e0061513d1a0ff", + "chain": "eth", + "name": "Balancer 50rETH-BADGER", + "symbol": "50rETH-50BADGER", + "display_symbol": null, + "optimized_symbol": "50rETH-50BADGER", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 97.74130359964798, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675901651, + "amount": 14.35292592357273, + "raw_amount": 14352925923572730000, + "raw_amount_hex_str": "0xc72fd6151a0c47c6" + }, + { + "id": "0x1f068a896560632a4d2e05044bd7f03834f1a465", + "chain": "eth", + "name": "EthFork2.com", + "symbol": "EthFork2.com", + "display_symbol": null, + "optimized_symbol": "EthFork2.com", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661588028, + "amount": 350, + "raw_amount": 350000000000000000000, + "raw_amount_hex_str": "0x12f939c99edab80000" + }, + { + "id": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "chain": "eth", + "name": "Uniswap", + "symbol": "UNI", + "display_symbol": null, + "optimized_symbol": "UNI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984/fcee0c46fc9864f48ce6a40ed1cdd135.png", + "protocol_id": "uniswap3", + "price": 5.220775680664297, + "price_24h_change": 0.014034243248340994, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600107086, + "amount": 0.21765202497026323, + "raw_amount": 217652024970263230, + "raw_amount_hex_str": "0x305415d10ff3ab7" + }, + { + "id": "0x1fc4db3e7f9124baafb7b34346db7931dad621c2", + "chain": "eth", + "name": "loyaltyclaim.io", + "symbol": "Visit https://loyaltyclaim.io to claim reward", + "display_symbol": null, + "optimized_symbol": "Visit https://loyaltyclaim.io to claim reward", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687675475, + "amount": 587, + "raw_amount": 587000000000000000000, + "raw_amount_hex_str": "0x1fd242edf0d24c0000" + }, + { + "id": "0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9", + "chain": "eth", + "name": "R/DAI Stable Pool", + "symbol": "R-DAI-BLP", + "display_symbol": null, + "optimized_symbol": "R-DAI-BLP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0022827125296758, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684857023, + "amount": 800.5892033083971, + "raw_amount": 800589203308397200000, + "raw_amount_hex_str": "0x2b666836b4a1ffaadf" + }, + { + "id": "0x21fb757c2d3a5c574e8721027c3d7a506d77b6b3", + "chain": "eth", + "name": "Element Principal Token yvCurve-stETH-16SEP22", + "symbol": "ePyvCurve-stETH-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-stETH-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 2068.589536240617, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648481776, + "amount": 0.10358715027583056, + "raw_amount": 103587150275830560, + "raw_amount_hex_str": "0x17003f6df7c6318" + }, + { + "id": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "chain": "eth", + "name": "Wrapped BTC", + "symbol": "WBTC", + "display_symbol": null, + "optimized_symbol": "WBTC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599/d3c52e7c7449afa8bd4fad1c93f50d93.png", + "protocol_id": "", + "price": 37553.2, + "price_24h_change": 0.06184319866138304, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1543095952, + "amount": 0.02099486, + "raw_amount": 2099486, + "raw_amount_hex_str": "0x20091e" + }, + { + "id": "0x226f7b842e0f0120b7e194d05432b3fd14773a9d", + "chain": "eth", + "name": "UNION Protocol Governance Token", + "symbol": "UNN", + "display_symbol": null, + "optimized_symbol": "UNN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x226f7b842e0f0120b7e194d05432b3fd14773a9d/353c0f098023ed2b6984fad42e786f36.png", + "protocol_id": "unn", + "price": 0.0002627508971820412, + "price_24h_change": 0.0011672102828670793, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1606475731, + "amount": 513275.0134700667, + "raw_amount": 5.132750134700667e+23, + "raw_amount_hex_str": "0x6cb0b1b957743cf2243b" + }, + { + "id": "0x2361102893ccabfb543bc55ac4cc8d6d0824a67e", + "chain": "eth", + "name": "Element Principal Token yvcrvSTETH-15APR22", + "symbol": "ePyvcrvSTETH-15APR22", + "display_symbol": null, + "optimized_symbol": "ePyvcrvSTETH-15APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 2068.5895362406163, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634646386, + "amount": 0.11170361717852023, + "raw_amount": 111703617178520240, + "raw_amount_hex_str": "0x18cd9d9160d4aad" + }, + { + "id": "0x245151454c790eb870498e9e5b590145fac1463f", + "chain": "eth", + "name": "$ RPoolBonus.com", + "symbol": "$RPL Claim at RPoolBonus.com", + "display_symbol": null, + "optimized_symbol": "$RPL Claim at RPoolBonus.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687784111, + "amount": 5000, + "raw_amount": 5000, + "raw_amount_hex_str": "0x1388" + }, + { + "id": "0x24a82db9e1d0e96d9cafa84a58825fbe9701ced2", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1706.1788564448905, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647499039, + "amount": 0.00000572017923657, + "raw_amount": 5720179236570, + "raw_amount_hex_str": "0x533d5405eda" + }, + { + "id": "0x24e79e946dea5482212c38aab2d0782f04cdb0e0", + "chain": "eth", + "name": "Paladin stkAAVE", + "symbol": "palStkAAVE", + "display_symbol": null, + "optimized_symbol": "palStkAAVE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x24e79e946dea5482212c38aab2d0782f04cdb0e0/add608fe8a15b03368f48fb40a42d8cf.png", + "protocol_id": "paladin", + "price": 123.25338128316754, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1632993706, + "amount": 0.001410377764356197, + "raw_amount": 1410377764356197, + "raw_amount_hex_str": "0x502bb29a4c065" + }, + { + "id": "0x25f8087ead173b73d6e8b84329989a8eea16cf73", + "chain": "eth", + "name": "Yield Guild Games Token", + "symbol": "YGG", + "display_symbol": null, + "optimized_symbol": "YGG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x25f8087ead173b73d6e8b84329989a8eea16cf73/4e2b963e26b873bc69a918edde1309bf.png", + "protocol_id": "yieldguild", + "price": 0.3753583914576, + "price_24h_change": -0.016745865174100046, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1627299017, + "amount": 103.3948502972311, + "raw_amount": 103394850297231110000, + "raw_amount_hex_str": "0x59ae44c893326e681" + }, + { + "id": "0x26cc136e9b8fd65466f193a8e5710661ed9a9827", + "chain": "eth", + "name": "80BETS/20wstETH Pool Token", + "symbol": "80BETS/20wstETH", + "display_symbol": null, + "optimized_symbol": "80BETS/20wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.007063968633135855, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690400639, + "amount": 2399.2188062728437, + "raw_amount": 2.399218806272844e+21, + "raw_amount_hex_str": "0x820fd978b2f9974676" + }, + { + "id": "0x27054b13b1b798b345b591a4d22e6562d47ea75a", + "chain": "eth", + "name": "AirSwap Token", + "symbol": "AST", + "display_symbol": null, + "optimized_symbol": "AST", + "decimals": 4, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27054b13b1b798b345b591a4d22e6562d47ea75a/8193d103d453bab7acd302740b9cd0a1.png", + "protocol_id": "airswap", + "price": 0.10167822018416194, + "price_24h_change": 0.06784624938318379, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1507599220, + "amount": 0.0161, + "raw_amount": 161, + "raw_amount_hex_str": "0xa1" + }, + { + "id": "0x271d57ce059780462f89800141a089008ca78d4a", + "chain": "eth", + "name": "80PRTC-20WETH", + "symbol": "80PRTC-20WETH", + "display_symbol": null, + "optimized_symbol": "80PRTC-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.8545516070659197, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698689387, + "amount": 175.89409215737294, + "raw_amount": 175894092157372960000, + "raw_amount_hex_str": "0x9890558e3ea0955b5" + }, + { + "id": "0x274b103eb0e1490f9d45cd9a5a630e1de1bf3196", + "chain": "eth", + "name": "# apy-eth.net", + "symbol": "Visit https://apy-eth.net to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit https://apy-eth.net to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696718747, + "amount": 1.4, + "raw_amount": 1400000, + "raw_amount_hex_str": "0x155cc0" + }, + { + "id": "0x27c70cd1946795b66be9d954418546998b546634", + "chain": "eth", + "name": "DOGE KILLER", + "symbol": "LEASH", + "display_symbol": null, + "optimized_symbol": "LEASH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27c70cd1946795b66be9d954418546998b546634/e2b22820fe3164795e5803e3ef64a9d0.png", + "protocol_id": "", + "price": 318.6093931073368, + "price_24h_change": 0.05146132975481997, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1598998068, + "amount": 0.004320528144273535, + "raw_amount": 4320528144273535, + "raw_amount_hex_str": "0xf597f5948107f" + }, + { + "id": "0x285328906d0d33cb757c1e471f5e2176683247c2", + "chain": "eth", + "name": "Element Principal Token yvcrv3crypto-29APR22", + "symbol": "ePyvcrv3crypto-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvcrv3crypto-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1288.1321023951043, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1636034117, + "amount": 0.16870319386359234, + "raw_amount": 168703193863592350, + "raw_amount_hex_str": "0x2575aa936b6999b" + }, + { + "id": "0x2930e74d4634ae54519ae0ccd69ce728531c252e", + "chain": "eth", + "name": "Your Dreams Token", + "symbol": "YOO", + "display_symbol": null, + "optimized_symbol": "YOO", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650555914, + "amount": 12416367592.041399, + "raw_amount": 1.24163675920414e+28, + "raw_amount_hex_str": "0x281e941be22cb79343f845b7" + }, + { + "id": "0x2a8f5649de50462ff9699ccc75a2fb0b53447503", + "chain": "eth", + "name": "Element Principal Token yvCurve-EURS-11FEB22", + "symbol": "ePyvCurve-EURS-11FEB22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-EURS-11FEB22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0759390216103923, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634236922, + "amount": 1.9061332050874682, + "raw_amount": 1906133205087468000, + "raw_amount_hex_str": "0x1a73f20d07d0ba65" + }, + { + "id": "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884", + "chain": "eth", + "name": "Aladdin cvxCRV", + "symbol": "aCRV", + "display_symbol": null, + "optimized_symbol": "aCRV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884/6cf5b1bce4ec79f2cdf773b127c96e85.png", + "protocol_id": "concentrator", + "price": 0.7904294433713874, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1646643085, + "amount": 1261.27736173079, + "raw_amount": 1.26127736173079e+21, + "raw_amount_hex_str": "0x445fbd55f5d59bea6d" + }, + { + "id": "0x2ba592f78db6436527729929aaf6c908497cb200", + "chain": "eth", + "name": "Cream", + "symbol": "CREAM", + "display_symbol": null, + "optimized_symbol": "CREAM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2ba592f78db6436527729929aaf6c908497cb200/a5587c34049aadbc312d1847428235d9.png", + "protocol_id": "cream", + "price": 17.01953746981511, + "price_24h_change": 0.051316462512260894, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1596553617, + "amount": 35.04279261690979, + "raw_amount": 35042792616909790000, + "raw_amount_hex_str": "0x1e65102386c96e05f" + }, + { + "id": "0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0", + "chain": "eth", + "name": "TUSD bb-a-usd Stable Pool", + "symbol": "TUSD-bbausd", + "display_symbol": null, + "optimized_symbol": "TUSD-bbausd", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.260916150530566, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666633715, + "amount": 0.001585337226757161, + "raw_amount": 1585337226757161, + "raw_amount_hex_str": "0x5a1db16400429" + }, + { + "id": "0x2c537e5624e4af88a7ae4060c022609376c8d0eb", + "chain": "eth", + "name": "BiLira", + "symbol": "TRYB", + "display_symbol": null, + "optimized_symbol": "TRYB", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2c537e5624e4af88a7ae4060c022609376c8d0eb/75a023de93f6f4de0c2155cb0e1ef5ef.png", + "protocol_id": "", + "price": 0.03457983797495119, + "price_24h_change": 0.000014537898686492538, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1563539445, + "amount": 317.111535, + "raw_amount": 317111535, + "raw_amount_hex_str": "0x12e6bcef" + }, + { + "id": "0x2c72692e94e757679289ac85d3556b2c0f717e0e", + "chain": "eth", + "name": "Element Principal Token yvDAI-29APR22", + "symbol": "ePyvDAI-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.99995, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641339630, + "amount": 60.97677550935169, + "raw_amount": 60976775509351694000, + "raw_amount_hex_str": "0x34e390641c7a578ab" + }, + { + "id": "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198", + "chain": "eth", + "name": "Bankless Token", + "symbol": "BANK", + "display_symbol": null, + "optimized_symbol": "BANK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198/83da02d114aa95ca785cbd6a51635280.png", + "protocol_id": "", + "price": 0.0038289921940190944, + "price_24h_change": 0.06111815709616046, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620099970, + "amount": 18644.32032354594, + "raw_amount": 1.8644320323545942e+22, + "raw_amount_hex_str": "0x3f2b5ebd86c1fdc56a4" + }, + { + "id": "0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4", + "chain": "eth", + "name": "50bb-a-WETH-50YieldETH", + "symbol": "50bb-a-WETH-50YieldETH", + "display_symbol": null, + "optimized_symbol": "50bb-a-WETH-50YieldETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1979.8648814974117, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691530583, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0x2e848426aec6dbf2260535a5bea048ed94d9ff3d", + "chain": "eth", + "name": "wbETH-wstETH StablePool", + "symbol": "wbETH-wstETH", + "display_symbol": null, + "optimized_symbol": "wbETH-wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1933.4281823297606, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683201371, + "amount": 0.6475540508817823, + "raw_amount": 647554050881782300, + "raw_amount_hex_str": "0x8fc92fa77ac823e" + }, + { + "id": "0x3035917be42af437cbdd774be26b9ec90a2bd677", + "chain": "eth", + "name": "Balancer INST 80 bbWETH 20", + "symbol": "80INST-bbWETH20", + "display_symbol": null, + "optimized_symbol": "80INST-bbWETH20", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.779552505544979, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683841055, + "amount": 0.010520363238690378, + "raw_amount": 10520363238690378, + "raw_amount_hex_str": "0x256036f1c00e4a" + }, + { + "id": "0x30d20208d987713f46dfd34ef128bb16c404d10f", + "chain": "eth", + "name": "Stader", + "symbol": "SD", + "display_symbol": null, + "optimized_symbol": "SD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x30d20208d987713f46dfd34ef128bb16c404d10f/099f57b5ca7c3703424ea1425678acaf.png", + "protocol_id": "stader", + "price": 0.7179032943647159, + "price_24h_change": 0.029829082512665524, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1642382824, + "amount": 584.392226069435, + "raw_amount": 584392226069434900000, + "raw_amount_hex_str": "0x1fae12415e10717d5d" + }, + { + "id": "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3", + "chain": "eth", + "name": "Radicle", + "symbol": "RAD", + "display_symbol": null, + "optimized_symbol": "RAD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x31c8eacbffdd875c74b94b077895bd78cf1e64a3/e400b44466625a2161f3658bb763854a.png", + "protocol_id": "", + "price": 1.5680747180082795, + "price_24h_change": 0.023893676845098185, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613423971, + "amount": 0.004999999999967232, + "raw_amount": 4999999999967232, + "raw_amount_hex_str": "0x11c37937e00000" + }, + { + "id": "0x3301ee63fb29f863f2333bd4466acb46cd8323e6", + "chain": "eth", + "name": "Akita Inu", + "symbol": "AKITA", + "display_symbol": null, + "optimized_symbol": "AKITA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3301ee63fb29f863f2333bd4466acb46cd8323e6/6173e15b13a34a6e42bda133ac37a6ed.png", + "protocol_id": "", + "price": 1.31269322703486e-7, + "price_24h_change": 0.040719348837151184, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612076328, + "amount": 57362872.56584607, + "raw_amount": 5.736287256584608e+25, + "raw_amount_hex_str": "0x2f730f8d83f8a93e373a8c" + }, + { + "id": "0x333a4823466879eef910a04d473505da62142069", + "chain": "eth", + "name": "Nation3", + "symbol": "NATION", + "display_symbol": null, + "optimized_symbol": "NATION", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x333a4823466879eef910a04d473505da62142069/2415be916c6835d9c24d3f47506a5e18.png", + "protocol_id": "nation3", + "price": 68.43447678677012, + "price_24h_change": 0.022037677490427038, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1649799318, + "amount": 7.241223156129218, + "raw_amount": 7241223156129219000, + "raw_amount_hex_str": "0x647dfe18486a3e1a" + }, + { + "id": "0x3472a5a71965499acd81997a54bba8d852c6e53d", + "chain": "eth", + "name": "Badger", + "symbol": "BADGER", + "display_symbol": null, + "optimized_symbol": "BADGER", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3472a5a71965499acd81997a54bba8d852c6e53d/0e7643dba053739569d5b9f82225f4e5.png", + "protocol_id": "badger", + "price": 4.790124472630618, + "price_24h_change": 0.6495818133907176, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1606584722, + "amount": 128.82492050913953, + "raw_amount": 128824920509139530000, + "raw_amount_hex_str": "0x6fbce0ea8cd323ac4" + }, + { + "id": "0x34d179259336812a1c7d320a0972e949da5fa26d", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1902.9643820423016, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648172795, + "amount": 0.025958318074766215, + "raw_amount": 25958318074766216, + "raw_amount_hex_str": "0x5c38f3e7d02387" + }, + { + "id": "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232", + "chain": "eth", + "name": "SideShift Token", + "symbol": "XAI", + "display_symbol": null, + "optimized_symbol": "XAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x35e78b3982e87ecfd5b3f3265b601c046cdbe232/21a070376acfb15790c0d09b5d21b9ab.png", + "protocol_id": "sideshift", + "price": 0.0700546792081862, + "price_24h_change": -0.08055076337673403, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600064905, + "amount": 0.02741807529102729, + "raw_amount": 27418075291027290, + "raw_amount_hex_str": "0x6168981e25875a" + }, + { + "id": "0x36be1e97ea98ab43b4debf92742517266f5731a3", + "chain": "eth", + "name": "Balancer 50wstETH-ACX", + "symbol": "50wstETH-50ACX", + "display_symbol": null, + "optimized_symbol": "50wstETH-50ACX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 12.198847026308169, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675902863, + "amount": 67.66100272037667, + "raw_amount": 67661002720376670000, + "raw_amount_hex_str": "0x3aafc2b7da6ca4bd1" + }, + { + "id": "0x37b18b10ce5635a84834b26095a0ae5639dcb752", + "chain": "eth", + "name": "Balancer ETHx-WETH Stable Pool", + "symbol": "ETHx-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "ETHx-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1916.6324085787385, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692370715, + "amount": 0.1744704758942243, + "raw_amount": 174470475894224300, + "raw_amount_hex_str": "0x26bd7f93377f5a6" + }, + { + "id": "0x380aabe019ed2a9c2d632b51eddd30fd804d0fad", + "chain": "eth", + "name": "50R-50wstETH", + "symbol": "50R-50wstETH", + "display_symbol": null, + "optimized_symbol": "50R-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 46.96013529120914, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684846547, + "amount": 6.4660245321648455, + "raw_amount": 6466024532164846000, + "raw_amount_hex_str": "0x59bbef0db4a59fa6" + }, + { + "id": "0x38ca7131cfd8e3d734129416e2e4559c21eb6aca", + "chain": "eth", + "name": "20WETH-80UNIDX", + "symbol": "20WETH-80UNIDX", + "display_symbol": null, + "optimized_symbol": "20WETH-80UNIDX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.2293447873547116, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694977163, + "amount": 0.000016760559044853, + "raw_amount": 16760559044853, + "raw_amount_hex_str": "0xf3e5f2b08f5" + }, + { + "id": "0x39eb558131e5ebeb9f76a6cbf6898f6e6dce5e4e", + "chain": "eth", + "name": "QiDao Governance Pool", + "symbol": "QI BPT", + "display_symbol": null, + "optimized_symbol": "QI BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.1710234559890493, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692299435, + "amount": 255.9595246032141, + "raw_amount": 255959524603214100000, + "raw_amount_hex_str": "0xde026e77eb46f0be8" + }, + { + "id": "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe", + "chain": "eth", + "name": "DSLA", + "symbol": "DSLA", + "display_symbol": null, + "optimized_symbol": "DSLA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe/920656e6a4fe6c869d9ad35551e08af8.png", + "protocol_id": "", + "price": 0.0010309, + "price_24h_change": -0.047627770653965895, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1550581410, + "amount": 1.7671530614258026, + "raw_amount": 1767153061425802500, + "raw_amount_hex_str": "0x18863058ba076d46" + }, + { + "id": "0x3b9fb87f7d081ceddb1289258fa5660d955317b6", + "chain": "eth", + "name": "50B-baoETH-ETH-BPT-50BAO", + "symbol": "50B-baoETH-ETH-BPT-50BAO", + "display_symbol": null, + "optimized_symbol": "50B-baoETH-ETH-BPT-50BAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6959086464610891, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683886487, + "amount": 143.9477782639869, + "raw_amount": 143947778263986880000, + "raw_amount_hex_str": "0x7cdad3da9bfa25572" + }, + { + "id": "0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432", + "chain": "eth", + "name": "Candle", + "symbol": "CNDL", + "display_symbol": null, + "optimized_symbol": "CNDL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432/e9d1773a4453ca6646909bd2a3c56517.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651750698, + "amount": 2258.9097301624, + "raw_amount": 2.2589097301624e+21, + "raw_amount_hex_str": "0x7a74ab7f5db357e24c" + }, + { + "id": "0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede", + "chain": "eth", + "name": "zUSD-bb-e-USD", + "symbol": "zUSD-bb-e-USD-BPT", + "display_symbol": null, + "optimized_symbol": "zUSD-bb-e-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0074203542366642, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675956239, + "amount": 0.000249178466602354, + "raw_amount": 249178466602354, + "raw_amount_hex_str": "0xe2a061fccd72" + }, + { + "id": "0x3e1f8fc2fbab8695b5749afb1f390d30bb33c880", + "chain": "eth", + "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-06-2027:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 434.67958704653574, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652969783, + "amount": 0.07705061999391594, + "raw_amount": 77050619993915940, + "raw_amount_hex_str": "0x111bd217276021b" + }, + { + "id": "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7", + "chain": "eth", + "name": "Gro DAO Token", + "symbol": "GRO", + "display_symbol": null, + "optimized_symbol": "GRO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7/85aaee7416a5ecebc565f9bd79c9c360.png", + "protocol_id": "gro", + "price": 0.08887919382165764, + "price_24h_change": -0.003175591254729259, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632174690, + "amount": 2641.7110992199205, + "raw_amount": 2.6417110992199206e+21, + "raw_amount_hex_str": "0x8f351b285af20ff553" + }, + { + "id": "0x3f9fee026fcebb40719a69416c72b714d89a17d9", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 525.527835174547, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648167646, + "amount": 0.000181094846238193, + "raw_amount": 181094846238193, + "raw_amount_hex_str": "0xa4b46dfb0df1" + }, + { + "id": "0x3fa8c89704e5d07565444009e5d9e624b40be813", + "chain": "eth", + "name": "Balancer GHO/LUSD Stable Pool", + "symbol": "GHO/LUSD", + "display_symbol": null, + "optimized_symbol": "GHO/LUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.974456765900795, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689432875, + "amount": 35.717431102378214, + "raw_amount": 35717431102378213000, + "raw_amount_hex_str": "0x1efadce593abdffeb" + }, + { + "id": "0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e", + "chain": "eth", + "name": "Balancer STG/USDC", + "symbol": "STG/USDC", + "display_symbol": null, + "optimized_symbol": "STG/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.7603836775829952, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692722363, + "amount": 0.01420551092354745, + "raw_amount": 14205510923547448, + "raw_amount_hex_str": "0x3277d640737339" + }, + { + "id": "0x40370aed88933021e20cf7c4d67e00417cda2202", + "chain": "eth", + "name": "Xave Token", + "symbol": "XAV", + "display_symbol": null, + "optimized_symbol": "XAV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x40370aed88933021e20cf7c4d67e00417cda2202/247a2728076470579ab554e77b08df30.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669012907, + "amount": 1.9573375855194717, + "raw_amount": 1957337585519471600, + "raw_amount_hex_str": "0x1b29dc29e268ac39" + }, + { + "id": "0x408e41876cccdc0f92210600ef50372656052a38", + "chain": "eth", + "name": "Republic Token", + "symbol": "REN", + "display_symbol": null, + "optimized_symbol": "REN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x408e41876cccdc0f92210600ef50372656052a38/d0ef6c3fa48075b6f129bfe11f6b3364.png", + "protocol_id": "ren", + "price": 0.066156, + "price_24h_change": 0.03404295226484125, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1514688568, + "amount": 535.8468904869309, + "raw_amount": 535846890486930870000, + "raw_amount_hex_str": "0x1d0c5e93dbff27f1ec" + }, + { + "id": "0x40c806394d03d350420d13cd7d1de1c806f34956", + "chain": "eth", + "name": "Balancer qETH/WETH ", + "symbol": "qETH/WETH", + "display_symbol": null, + "optimized_symbol": "qETH/WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1913.3550421904442, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695334895, + "amount": 0.06781170456246757, + "raw_amount": 67811704562467576, + "raw_amount_hex_str": "0xf0ea62d20f42fa" + }, + { + "id": "0x40fb0516ac8ff93b48bcf9da7717e523e78c34f7", + "chain": "eth", + "name": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "symbol": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "display_symbol": null, + "optimized_symbol": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.96183061950861, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679181491, + "amount": 338.57678793145624, + "raw_amount": 338576787931456200000, + "raw_amount_hex_str": "0x125ab262c4573650c0" + }, + { + "id": "0x41503c9d499ddbd1dcdf818a1b05e9774203bf46", + "chain": "eth", + "name": "Balancer Boosted Aave v3 WETH StablePool", + "symbol": "wstETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1922.1696464462862, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689173579, + "amount": 0.000004959060006908, + "raw_amount": 4959060006908, + "raw_amount_hex_str": "0x4829f0297fc" + }, + { + "id": "0x418de6227499181b045cadf554030722e460881a", + "chain": "eth", + "name": "Element Principal Token yvCurve-MIM-11FEB22", + "symbol": "ePyvCurve-MIM-11FEB22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-MIM-11FEB22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0084186380325393, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634061105, + "amount": 162.22004811443406, + "raw_amount": 162220048114434080000, + "raw_amount_hex_str": "0x8cb4162480b9e46bf" + }, + { + "id": "0x41c37a4683d6a05adb31c39d71348a8403b13ca9", + "chain": "eth", + "name": "Chain", + "symbol": "CHN", + "display_symbol": null, + "optimized_symbol": "CHN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41c37a4683d6a05adb31c39d71348a8403b13ca9/dfee7bb5fbe50c6450ff8cfa4b17546d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1605706401, + "amount": 1.0374047068213375, + "raw_amount": 1037404706821337300, + "raw_amount_hex_str": "0xe659a159e677103" + }, + { + "id": "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68", + "chain": "eth", + "name": "Inverse DAO", + "symbol": "INV", + "display_symbol": null, + "optimized_symbol": "INV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68/b95fe3266be734e29d0385cadc44681c.png", + "protocol_id": "inverse", + "price": 31.71527249087432, + "price_24h_change": 0.11209000497370139, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608575013, + "amount": 0.000044598970632764, + "raw_amount": 44598970632764, + "raw_amount_hex_str": "0x289001cd4a3c" + }, + { + "id": "0x41e5560054824ea6b0732e656e3ad64e20e94e45", + "chain": "eth", + "name": "Civic", + "symbol": "CVC", + "display_symbol": null, + "optimized_symbol": "CVC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41e5560054824ea6b0732e656e3ad64e20e94e45/f44e161ad5413bd61785905f6a724b61.png", + "protocol_id": "", + "price": 0.1006388021194751, + "price_24h_change": -0.02039242640729205, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1499817451, + "amount": 1.78988788, + "raw_amount": 178988788, + "raw_amount_hex_str": "0xaab26f4" + }, + { + "id": "0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2", + "chain": "eth", + "name": "50bb-a-WETH-50ETHx", + "symbol": "50bb-a-WETH-50ETHx", + "display_symbol": null, + "optimized_symbol": "50bb-a-WETH-50ETHx", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1927.6154545688066, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687940699, + "amount": 0.000005707034691283, + "raw_amount": 5707034691283, + "raw_amount_hex_str": "0x530c5c686d3" + }, + { + "id": "0x42ed016f826165c2e5976fe5bc3df540c5ad0af7", + "chain": "eth", + "name": "wstETH-rETH-sfrxETH-BPT", + "symbol": "wstETH-rETH-sfrxETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-rETH-sfrxETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1924.0679855937442, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689162815, + "amount": 0.1516945443413394, + "raw_amount": 151694544341339400, + "raw_amount_hex_str": "0x21aed6265d48d04" + }, + { + "id": "0x42fbd9f666aacc0026ca1b88c94259519e03dd67", + "chain": "eth", + "name": "50COIL-50USDC", + "symbol": "50COIL-50USDC", + "display_symbol": null, + "optimized_symbol": "50COIL-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.15527418313724, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680729107, + "amount": 368.8940002545543, + "raw_amount": 368894000254554340000, + "raw_amount_hex_str": "0x13ff6ec2bf51919b94" + }, + { + "id": "0x43b4fdfd4ff969587185cdb6f0bd875c5fc83f8c", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Alchemix USD", + "symbol": "alUSD3CRV-f", + "display_symbol": null, + "optimized_symbol": "alUSD3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.008579664823669, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1614641897, + "amount": 84.79787428041467, + "raw_amount": 84797874280414670000, + "raw_amount_hex_str": "0x498ce91613059972a" + }, + { + "id": "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad", + "chain": "eth", + "name": "Prime", + "symbol": "D2D", + "display_symbol": null, + "optimized_symbol": "D2D", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad/8a54f7a353e7d3d9a5124320838ae0ce.png", + "protocol_id": "", + "price": 0.010329887703028218, + "price_24h_change": 0.008167161947445638, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638439594, + "amount": 54552.70929096436, + "raw_amount": 5.455270929096436e+22, + "raw_amount_hex_str": "0xb8d4eec837daa9875d3" + }, + { + "id": "0x449d7c2e096e9f867339078535b15440d42f78e8", + "chain": "eth", + "name": "Element Principal Token yvDAI-28JAN22", + "symbol": "ePyvDAI-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.99995, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632229871, + "amount": 1.6345684269036274, + "raw_amount": 1634568426903627300, + "raw_amount_hex_str": "0x16af2752eea8e60d" + }, + { + "id": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "chain": "eth", + "name": "Paxos Gold", + "symbol": "PAXG", + "display_symbol": null, + "optimized_symbol": "PAXG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x45804880de22913dafe09f4980848ece6ecbaf78/c67db744859c16615fa81fcb3a71b3ae.png", + "protocol_id": "", + "price": 1923.4528347795547, + "price_24h_change": -0.006575556598866377, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1566830180, + "amount": 0.000195449382386424, + "raw_amount": 195449382386424, + "raw_amount_hex_str": "0xb1c29b023af8" + }, + { + "id": "0x467bccd9d29f223bce8043b84e8c8b282827790f", + "chain": "eth", + "name": "Telcoin", + "symbol": "TEL", + "display_symbol": null, + "optimized_symbol": "TEL", + "decimals": 2, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x467bccd9d29f223bce8043b84e8c8b282827790f/161a26f47e94d3a29876733cccefa868.png", + "protocol_id": "", + "price": 0.0026657068293250517, + "price_24h_change": 0.11709993261552104, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1580196479, + "amount": 9812.17, + "raw_amount": 981217, + "raw_amount_hex_str": "0xef8e1" + }, + { + "id": "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7", + "chain": "eth", + "name": "Temple", + "symbol": "TEMPLE", + "display_symbol": null, + "optimized_symbol": "TEMPLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7/5e88fad758a4fd99011c1bb7221c5c1a.png", + "protocol_id": "temple", + "price": 1.097686628685312, + "price_24h_change": 0.0025648928583992484, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632930767, + "amount": 0.0498486954820145, + "raw_amount": 49848695482014504, + "raw_amount_hex_str": "0xb1191fdab8db29" + }, + { + "id": "0x4729f67394030472e853cb61954fe784bfb36c3b", + "chain": "eth", + "name": "25WBTC-50USDC-25WETH", + "symbol": "25WBTC-50USDC-25WETH", + "display_symbol": null, + "optimized_symbol": "25WBTC-50USDC-25WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 86.3923340638042, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686652355, + "amount": 1.11606324940411, + "raw_amount": 1116063249404110100, + "raw_amount_hex_str": "0xf7d0d9cb799a4d3" + }, + { + "id": "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0", + "chain": "eth", + "name": "The 4th Pillar Token", + "symbol": "FOUR", + "display_symbol": null, + "optimized_symbol": "FOUR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0/ba71d3195857bc59eb461e88a5a62498.png", + "protocol_id": "", + "price": 0.001899586987173657, + "price_24h_change": 0.0022949264162461253, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1524482071, + "amount": 15357.181701667683, + "raw_amount": 1.5357181701667682e+22, + "raw_amount_hex_str": "0x34083b57fd4b72b70ff" + }, + { + "id": "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff", + "chain": "eth", + "name": "Serum", + "symbol": "SRM", + "display_symbol": null, + "optimized_symbol": "SRM", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x476c5e26a75bd202a9683ffd34359c0cc15be0ff/6458883add3412a15a0ace2fb0e6c780.png", + "protocol_id": "", + "price": 0.04477916642940509, + "price_24h_change": 0.2841792913156898, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1596238023, + "amount": 0.26469, + "raw_amount": 264690, + "raw_amount_hex_str": "0x409f2" + }, + { + "id": "0x478bbc744811ee8310b461514bdc29d03739084d", + "chain": "eth", + "name": "veCRV Stake DAO", + "symbol": "sdveCRV-DAO", + "display_symbol": null, + "optimized_symbol": "sdveCRV-DAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "stakedao", + "price": 0.568, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1614598819, + "amount": 157.94985960428522, + "raw_amount": 157949859604285230000, + "raw_amount_hex_str": "0x88ffea074b43dda49" + }, + { + "id": "0x47e1cf97a0586367349a14306a65f54ba0b8f1b6", + "chain": "eth", + "name": "20WETH-80ALTR", + "symbol": "20WETH-80ALTR", + "display_symbol": null, + "optimized_symbol": "20WETH-80ALTR", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.006522135472302462, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692518831, + "amount": 3.4150305140825292, + "raw_amount": 3415030514082529300, + "raw_amount_hex_str": "0x2f64a028b1024008" + }, + { + "id": "0x483006684f422a9448023b2382615c57c5ecf18f", + "chain": "eth", + "name": "Balancer TUSD bbeUSD Stable Pool", + "symbol": "TUSD-bb-e-USD", + "display_symbol": null, + "optimized_symbol": "TUSD-bb-e-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0089138782659568, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676335379, + "amount": 0.000147196524185311, + "raw_amount": 147196524185311, + "raw_amount_hex_str": "0x85dfdc8946df" + }, + { + "id": "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054", + "chain": "eth", + "name": "South African Tether", + "symbol": "XZAR", + "display_symbol": null, + "optimized_symbol": "XZAR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x48f07301e9e29c3c38a80ae8d9ae771f224f1054/9f75b8fcd7755ec78c71fb3449c8e1cb.png", + "protocol_id": "", + "price": 0.05175602323840592, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1527678390, + "amount": 0.03344167048500867, + "raw_amount": 33441670485008670, + "raw_amount_hex_str": "0x76cf05a9f46122" + }, + { + "id": "0x496ff26b76b8d23bbc6cf1df1eee4a48795490f7", + "chain": "eth", + "name": "Balancer 50COMP-50wstETH", + "symbol": "50COMP-50WSTETH", + "display_symbol": null, + "optimized_symbol": "50COMP-50WSTETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 342.3755337454014, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663944443, + "amount": 0.000010866337871306, + "raw_amount": 10866337871306, + "raw_amount_hex_str": "0x9e2043575ca" + }, + { + "id": "0x49e9e169f0b661ea0a883f490564f4cc275123ed", + "chain": "eth", + "name": "Element Principal Token yvWBTC-29APR22", + "symbol": "ePyvWBTC-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvWBTC-29APR22", + "decimals": 8, + "logo_url": null, + "protocol_id": "element", + "price": 36841.995678906416, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639082867, + "amount": 0.00257344, + "raw_amount": 257344, + "raw_amount_hex_str": "0x3ed40" + }, + { + "id": "0x4a220e6096b25eadb88358cb44068a3248254675", + "chain": "eth", + "name": "Quant", + "symbol": "QNT", + "display_symbol": null, + "optimized_symbol": "QNT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4a220e6096b25eadb88358cb44068a3248254675/0fa0af99171fcb3a9a4b3e3189f6791b.png", + "protocol_id": "", + "price": 108.32946627042878, + "price_24h_change": 0.04646961169439256, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1523044361, + "amount": 3.6661770414563097, + "raw_amount": 3666177041456310000, + "raw_amount_hex_str": "0x32e0e0984fb22651" + }, + { + "id": "0x4b13006980acb09645131b91d259eaa111eaf5ba", + "chain": "eth", + "name": "Mycelium", + "symbol": "MYC", + "display_symbol": null, + "optimized_symbol": "MYC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4b13006980acb09645131b91d259eaa111eaf5ba/c34229f594e7de5f89c43b886a86c2c5.png", + "protocol_id": "", + "price": 0.0013473303276458723, + "price_24h_change": -0.012960140069912519, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1660182677, + "amount": 9340.018375535334, + "raw_amount": 9.340018375535334e+21, + "raw_amount_hex_str": "0x1fa52cb0b02dc94f68d" + }, + { + "id": "0x4c81255cc9ed7062180ea99962fe05ac0d57350b", + "chain": "eth", + "name": "cbETH/Boosted Aave v3 WETH", + "symbol": "cbETH-bb-a-WETH-BPT ", + "display_symbol": null, + "optimized_symbol": "cbETH-bb-a-WETH-BPT ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1919.49898134848, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689553187, + "amount": 0.010856090427067203, + "raw_amount": 10856090427067204, + "raw_amount_hex_str": "0x26918e858e0b44" + }, + { + "id": "0x4cbde5c4b4b53ebe4af4adb85404725985406163", + "chain": "eth", + "name": "ETHx/bb-a-WETH Stable Pool", + "symbol": "B-ETHx/bb-a-WETH ", + "display_symbol": null, + "optimized_symbol": "B-ETHx/bb-a-WETH ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1923.0600962345761, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689175655, + "amount": 0.00000141467351807, + "raw_amount": 1414673518070, + "raw_amount_hex_str": "0x149611ccdf6" + }, + { + "id": "0x4cc46a45b49a5073a6c1e0636cbad48efa35cdd3", + "chain": "eth", + "name": "24K GAMES", + "symbol": "24K", + "display_symbol": null, + "optimized_symbol": "24K", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646971567, + "amount": 31.64091782, + "raw_amount": 3164091782, + "raw_amount_hex_str": "0xbc983586" + }, + { + "id": "0x4da83bbe43235d600b914ec3dbde8b2eaa801869", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.04542009644294231, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698494831, + "amount": 9.523720617656974, + "raw_amount": 9523720617656973000, + "raw_amount_hex_str": "0x842b0d716381f7f0" + }, + { + "id": "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227", + "chain": "eth", + "name": "Quasacoin", + "symbol": "QUA", + "display_symbol": null, + "optimized_symbol": "QUA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227/a67c193307d12eb4011a5a4c662ef0df.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1512380881, + "amount": 1247.3744351518874, + "raw_amount": 1.2473744351518875e+21, + "raw_amount_hex_str": "0x439ecc37e5cbc74fe1" + }, + { + "id": "0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c", + "chain": "eth", + "name": "SolarCoin on Mainnet", + "symbol": "SLR", + "display_symbol": null, + "optimized_symbol": "SLR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c/81bd6ba22be0c3314bd798585775290e.png", + "protocol_id": "", + "price": 0.0612229885419053, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1619174554, + "amount": 540.5422461900775, + "raw_amount": 540542246190077500000, + "raw_amount_hex_str": "0x1d4d87d4fe8b50e72c" + }, + { + "id": "0x4ee4ddfb958416ca2afca3a894c3c3ed9a3cdda1", + "chain": "eth", + "name": "Sense Space 1st Aug 2022 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-08-2022:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-08-2022:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1875.2994084214636, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1656634308, + "amount": 0.000266315308888279, + "raw_amount": 266315308888279, + "raw_amount_hex_str": "0xf2365d6270d7" + }, + { + "id": "0x4f2e0f963794a3876a54c503ec63de95e9f24a75", + "chain": "eth", + "name": "50EVA-50WETH", + "symbol": "50EVA-50WETH", + "display_symbol": null, + "optimized_symbol": "50EVA-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 12.024278675509919, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677463907, + "amount": 0.03788908667835974, + "raw_amount": 37889086678359740, + "raw_amount_hex_str": "0x869bec7053debd" + }, + { + "id": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "chain": "eth", + "name": "Binance USD", + "symbol": "BUSD", + "display_symbol": null, + "optimized_symbol": "BUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4fabb145d64652a948d72533023f6e7a623c7c53/8fce6f82d83cbe01da1fb234774fe85f.png", + "protocol_id": "", + "price": 0.9997, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1567727777, + "amount": 4.866814267563016, + "raw_amount": 4866814267563016000, + "raw_amount_hex_str": "0x438a65ca75e57e1f" + }, + { + "id": "0x4fd4687ec38220f805b6363c3c1e52d0df3b5023", + "chain": "eth", + "name": "Balancer 50wstETH-50bb-euler-USD", + "symbol": "50wstETH-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50wstETH-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 65.16888837385181, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675958987, + "amount": 0.000284576129434531, + "raw_amount": 284576129434531, + "raw_amount_hex_str": "0x102d20b1b43a3" + }, + { + "id": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", + "chain": "eth", + "name": "solace", + "symbol": "SOLACE", + "display_symbol": null, + "optimized_symbol": "SOLACE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40/06d669f7d8a66cc1d92a277e9fa541a6.png", + "protocol_id": "solace", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637651732, + "amount": 6142.490743441953, + "raw_amount": 6.142490743441952e+21, + "raw_amount_hex_str": "0x14cfc2ee2d986a55e93" + }, + { + "id": "0x50cf90b954958480b8df7958a9e965752f627124", + "chain": "eth", + "name": "bb-euler-USD", + "symbol": "bb-euler-USD-BPT", + "display_symbol": null, + "optimized_symbol": "bb-euler-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.009415315789789, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675954271, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd", + "chain": "eth", + "name": "RAZOR", + "symbol": "RAZOR", + "display_symbol": null, + "optimized_symbol": "RAZOR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd/85936c44506b8575e8130fb7e33632ee.png", + "protocol_id": "", + "price": 0.00415, + "price_24h_change": 0.05677316936159658, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611070839, + "amount": 0.5591955659528318, + "raw_amount": 559195565952831900, + "raw_amount_hex_str": "0x7c2a9678c97917c" + }, + { + "id": "0x514910771af9ca656af840dff83e8264ecf986ca", + "chain": "eth", + "name": "ChainLink Token", + "symbol": "LINK", + "display_symbol": null, + "optimized_symbol": "LINK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x514910771af9ca656af840dff83e8264ecf986ca/69425617db0ef93a7c21c4f9b81c7ca5.png", + "protocol_id": "chainlink", + "price": 15.672593429980056, + "price_24h_change": 0.13052493189601838, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1505597189, + "amount": 56.63449572738061, + "raw_amount": 56634495727380610000, + "raw_amount_hex_str": "0x311f625cd37e64167" + }, + { + "id": "0x51fa2efd62ee56a493f24ae963eace7d0051929e", + "chain": "eth", + "name": "POSEIDON OCEAN", + "symbol": "psdnOCEAN", + "display_symbol": null, + "optimized_symbol": "psdnOCEAN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x51fa2efd62ee56a493f24ae963eace7d0051929e/ba7ad5b1cdffba533c15373060ec9d93.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1666000007, + "amount": 1839.3805278603352, + "raw_amount": 1.8393805278603352e+21, + "raw_amount_hex_str": "0x63b6885ca21dc6a42e" + }, + { + "id": "0x525fc44cbe181c1108c209091b5eec5a5028190d", + "chain": "eth", + "name": "$ Evmosia.com", + "symbol": "$ Evmosia.com", + "display_symbol": null, + "optimized_symbol": "$ Evmosia.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671409715, + "amount": 40000, + "raw_amount": 40000, + "raw_amount_hex_str": "0x9c40" + }, + { + "id": "0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e4", + "chain": "eth", + "name": "Gyroscope ECLP R/sDAI", + "symbol": "ECLP-R-sDAI", + "display_symbol": null, + "optimized_symbol": "ECLP-R-sDAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.004279095998595, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695206147, + "amount": 0.003466160973976967, + "raw_amount": 3466160973976967, + "raw_amount_hex_str": "0xc50747d969587" + }, + { + "id": "0x52bbca3b24c1c1ac050ff4546f37aa88282aae22", + "chain": "eth", + "name": "$ HEXPool.io", + "symbol": "wHEX", + "display_symbol": null, + "optimized_symbol": "wHEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685642099, + "amount": 93588.75, + "raw_amount": 9.358875e+22, + "raw_amount_hex_str": "0x13d174d04e8d175b0000" + }, + { + "id": "0x52c9886d5d87b0f06ebacbeff750b5ffad5d17d9", + "chain": "eth", + "name": "Element Principal Token yvUSDC-29APR22", + "symbol": "ePyvUSDC-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-29APR22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1637083548, + "amount": 0.002163, + "raw_amount": 2163, + "raw_amount_hex_str": "0x873" + }, + { + "id": "0x53fffb19bacd44b82e204d036d579e86097e5d09", + "chain": "eth", + "name": "BigMouthFrog", + "symbol": "BGBG", + "display_symbol": null, + "optimized_symbol": "BGBG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x53fffb19bacd44b82e204d036d579e86097e5d09/3f4a08cd1bf99074863825a9995fa7e7.png", + "protocol_id": "", + "price": 3.578231696716586e-11, + "price_24h_change": 0.022229755139008652, + "is_verified": false, + "is_core": true, + "is_wallet": true, + "time_at": 1687084283, + "amount": 219.69945066954557, + "raw_amount": 219699450669545550000, + "raw_amount_hex_str": "0xbe8f13e5dcab83a77" + }, + { + "id": "0x54ca50ee86616379420cc56718e12566aa75abbe", + "chain": "eth", + "name": "50wUSDM-50wstETH", + "symbol": "50wUSDM-50wstETH", + "display_symbol": null, + "optimized_symbol": "50wUSDM-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 46.923375628630055, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698134843, + "amount": 3.1701584e-11, + "raw_amount": 31701584, + "raw_amount_hex_str": "0x1e3ba50" + }, + { + "id": "0x55096a35bf827919b3bb0a5e6b5e2af8095f3d4d", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-28JAN22", + "symbol": "ePyvCurve-alUSD-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.008579664823669, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632836406, + "amount": 4.1474331168929295, + "raw_amount": 4147433116892929000, + "raw_amount_hex_str": "0x398ea4721e181c81" + }, + { + "id": "0x586aa273f262909eef8fa02d90ab65f5015e0516", + "chain": "eth", + "name": "Fixed Income Asset Token", + "symbol": "FIAT", + "display_symbol": null, + "optimized_symbol": "FIAT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x586aa273f262909eef8fa02d90ab65f5015e0516/43d28043429b71370c3685bc469e6d2d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1649548526, + "amount": 811.4182391491705, + "raw_amount": 811418239149170500000, + "raw_amount_hex_str": "0x2bfcb0ad6d97443801" + }, + { + "id": "0x58b6a8a3302369daec383334672404ee733ab239", + "chain": "eth", + "name": "Livepeer Token", + "symbol": "LPT", + "display_symbol": null, + "optimized_symbol": "LPT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x58b6a8a3302369daec383334672404ee733ab239/3bf454e30e5f4b18011ea5e31d2e0e59.png", + "protocol_id": "", + "price": 6.978735730702162, + "price_24h_change": 0.019661235991002068, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1525118631, + "amount": 9.611559995466864, + "raw_amount": 9611559995466865000, + "raw_amount_hex_str": "0x85631ee443285964" + }, + { + "id": "0x59d1e836f7b7210a978b25a855085cc46fd090b5", + "chain": "eth", + "name": "AssangeDAO", + "symbol": "JUSTICE", + "display_symbol": null, + "optimized_symbol": "JUSTICE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x59d1e836f7b7210a978b25a855085cc46fd090b5/18a7cd6e19eb1a3cdbad5407156d2800.png", + "protocol_id": "", + "price": 0.000020508537377536188, + "price_24h_change": -0.027893384959575676, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644405370, + "amount": 146820.75531783528, + "raw_amount": 1.4682075531783528e+23, + "raw_amount_hex_str": "0x1f172b49bfdee428ba12" + }, + { + "id": "0x5a6a4d54456819380173272a5e8e9b9904bdf41b", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Magic Internet Money 3Pool", + "symbol": "MIM-3LP3CRV-f", + "display_symbol": null, + "optimized_symbol": "MIM-3LP3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.008420928034021, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1622664003, + "amount": 0.001180815197708221, + "raw_amount": 1180815197708221, + "raw_amount_hex_str": "0x431f1f6679fbd" + }, + { + "id": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", + "chain": "eth", + "name": "Lido DAO Token", + "symbol": "LDO", + "display_symbol": null, + "optimized_symbol": "LDO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5a98fcbea516cf06857215779fd812ca3bef1b32/3a1a90da5ccd4849de3e83755f1fd8b5.png", + "protocol_id": "lido", + "price": 1.954951006031736, + "price_24h_change": 0.004468151024610122, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608242396, + "amount": 114.74313906352926, + "raw_amount": 114743139063529260000, + "raw_amount_hex_str": "0x63861850b06e8b75b" + }, + { + "id": "0x5ad5f864b346445a16fc95c59174269ed288e640", + "chain": "eth", + "name": "Sense Space 1st Apr 2023 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-04-2023:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-04-2023:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1355.9620266818245, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659544214, + "amount": 0.007607022901897472, + "raw_amount": 7607022901897472, + "raw_amount_hex_str": "0x1b068c09dda900" + }, + { + "id": "0x5aee1e99fe86960377de9f88689616916d5dcabe", + "chain": "eth", + "name": "wstETH-rETH-sfrxETH StablePool", + "symbol": "wstETH-rETH-sfrxETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-rETH-sfrxETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1982.3324230959565, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675903979, + "amount": 0.7790671014063838, + "raw_amount": 779067101406383700, + "raw_amount_hex_str": "0xacfcd66ab854ea0" + }, + { + "id": "0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64", + "chain": "eth", + "name": "Balancer DOLA bb-a-usd Stable", + "symbol": "DOLA BSP", + "display_symbol": null, + "optimized_symbol": "DOLA BSP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.20386196555789102, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664261567, + "amount": 0.003844606784921471, + "raw_amount": 3844606784921471, + "raw_amount_hex_str": "0xda8a645b75f7f" + }, + { + "id": "0x5bfe65bca476bda0d0d393372394ae352ec0627b", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2059.604585816713, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651433369, + "amount": 0.000001034241951247, + "raw_amount": 1034241951247, + "raw_amount_hex_str": "0xf0cd9fc60f" + }, + { + "id": "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56", + "chain": "eth", + "name": "Balancer 80 BAL 20 WETH", + "symbol": "B-80BAL-20WETH", + "display_symbol": null, + "optimized_symbol": "B-80BAL-20WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5c6ee304399dbdb9c8ef030ab642b10820db8f56/a97c63ed3da766c9436a84d679a543ae.png", + "protocol_id": "balancer2", + "price": 11.086228361466972, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1620153071, + "amount": 1.860289084277977, + "raw_amount": 1860289084277976800, + "raw_amount_hex_str": "0x19d11310dfecef0b" + }, + { + "id": "0x5e8422345238f34275888049021821e8e08caa1f", + "chain": "eth", + "name": "Frax Ether", + "symbol": "frxETH", + "display_symbol": null, + "optimized_symbol": "frxETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5e8422345238f34275888049021821e8e08caa1f/74628d212cf16e6183a7242b4ce71b92.png", + "protocol_id": "frax", + "price": 1938.8815245119504, + "price_24h_change": 0.022446672086097134, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1665022895, + "amount": 3.214543369e-9, + "raw_amount": 3214543369, + "raw_amount_hex_str": "0xbf9a0a09" + }, + { + "id": "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5", + "chain": "eth", + "name": "Balancer 50wstETH-LDO", + "symbol": "50wstETH-50LDO", + "display_symbol": null, + "optimized_symbol": "50wstETH-50LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 65.08106397659026, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675902395, + "amount": 0.3716351862693692, + "raw_amount": 371635186269369150, + "raw_amount_hex_str": "0x528503b9f9f335b" + }, + { + "id": "0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa", + "chain": "eth", + "name": "Balancer Idle Boosted StablePool", + "symbol": "bb-i-USD", + "display_symbol": null, + "optimized_symbol": "bb-i-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.1895994757784092, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676336363, + "amount": 0.002440372366841927, + "raw_amount": 2440372366841927, + "raw_amount_hex_str": "0x8ab81780b9847" + }, + { + "id": "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e", + "chain": "eth", + "name": "Page", + "symbol": "PAGE", + "display_symbol": null, + "optimized_symbol": "PAGE", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x60e683c6514edd5f758a55b6f393bebbafaa8d5e/c8bb13815f5143b60a2a38ab610a3e45.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1627438213, + "amount": 124.48588543, + "raw_amount": 12448588543, + "raw_amount_hex_str": "0x2e5fe62ff" + }, + { + "id": "0x6123b0049f904d730db3c36a31167d9d4121fa6b", + "chain": "eth", + "name": "Ribbon", + "symbol": "RBN", + "display_symbol": null, + "optimized_symbol": "RBN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6123b0049f904d730db3c36a31167d9d4121fa6b/d01dd0342160eeee21906b1dba45a327.png", + "protocol_id": "ribbonlend", + "price": 0.18672267350029226, + "price_24h_change": -0.05637978377916647, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1621861922, + "amount": 1089.8711785205085, + "raw_amount": 1.0898711785205085e+21, + "raw_amount_hex_str": "0x3b15003e7abb3f1893" + }, + { + "id": "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d", + "chain": "eth", + "name": "Aura BAL", + "symbol": "auraBAL", + "display_symbol": null, + "optimized_symbol": "auraBAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x616e8bfa43f920657b3497dbf40d6b1a02d4608d/05fa7bfd9613c2c4799bd4f0cebd620a.png", + "protocol_id": "", + "price": 10.567620851223744, + "price_24h_change": 0.0008905236737929844, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1654771930, + "amount": 50.162774179503565, + "raw_amount": 50162774179503560000, + "raw_amount_hex_str": "0x2b825f957ad7262e1" + }, + { + "id": "0x6228f64d5ba8376652bfe7e36569d595347cf6fb", + "chain": "eth", + "name": "80T-20TBTC", + "symbol": "80T-20TBTC", + "display_symbol": null, + "optimized_symbol": "80T-20TBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.3619829152302121, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693279523, + "amount": 21.52844921301569, + "raw_amount": 21528449213015690000, + "raw_amount_hex_str": "0x12ac46a7f22d68ea8" + }, + { + "id": "0x623729861bc3837c503708f995b93d317c3c1d7c", + "chain": "eth", + "name": "Balancer TBY-feb1924 USDC Stable Pool", + "symbol": "TBY-feb1924-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "TBY-feb1924-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 999975.5006002353, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693244579, + "amount": 2.5e-17, + "raw_amount": 25, + "raw_amount_hex_str": "0x19" + }, + { + "id": "0x639883476960a23b38579acfd7d71561a0f408cf", + "chain": "eth", + "name": "Balancer 50STG-50bbaUSD", + "symbol": "50STG-50bbaUSD", + "display_symbol": null, + "optimized_symbol": "50STG-50bbaUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.767235548302366, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680693239, + "amount": 0.010407133071785597, + "raw_amount": 10407133071785596, + "raw_amount_hex_str": "0x24f93b7ddfbe7d" + }, + { + "id": "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414", + "chain": "eth", + "name": "E-RADIX", + "symbol": "eXRD", + "display_symbol": null, + "optimized_symbol": "eXRD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6468e79a80c0eab0f9a2b574c8d5bc374af59414/2e02f4e196ecbfdc48156256092ea745.png", + "protocol_id": "radix", + "price": 0.04312558494897695, + "price_24h_change": -0.01482599389742945, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1603805479, + "amount": 71.05679786474816, + "raw_amount": 71056797864748170000, + "raw_amount_hex_str": "0x3da1c752ed50cb3b7" + }, + { + "id": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "chain": "eth", + "name": "Olympus", + "symbol": "OHM", + "display_symbol": null, + "optimized_symbol": "OHM", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5/0ad387f86fba0c16654cfb0f720df5d6.png", + "protocol_id": "olympusdao", + "price": 11.4470921954565, + "price_24h_change": 0.007419128829526628, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639209014, + "amount": 49.675471149, + "raw_amount": 49675471149, + "raw_amount_hex_str": "0xb90e3892d" + }, + { + "id": "0x64db005d040ee62e8fa202291c73e8a6151a0399", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.783441256722194, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649095346, + "amount": 2.074617375248661, + "raw_amount": 2074617375248661000, + "raw_amount_hex_str": "0x1cca8582d08cba0f" + }, + { + "id": "0x667102bd3413bfeaa3dffb48fa8288819e480a88", + "chain": "eth", + "name": "Tokenize Emblem", + "symbol": "TKX", + "display_symbol": null, + "optimized_symbol": "TKX", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x667102bd3413bfeaa3dffb48fa8288819e480a88/76c73234de2cd64ad7d946222611fd70.png", + "protocol_id": "", + "price": 6.084601114555149, + "price_24h_change": 0.027335636471535744, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1518449139, + "amount": 0.00034175, + "raw_amount": 34175, + "raw_amount_hex_str": "0x857f" + }, + { + "id": "0x67f117350eab45983374f4f83d275d8a5d62b1bf", + "chain": "eth", + "name": "Oats And Grains", + "symbol": "OG", + "display_symbol": null, + "optimized_symbol": "OG", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.226473787583254, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680406619, + "amount": 1555.3428089990543, + "raw_amount": 1.5553428089990543e+21, + "raw_amount_hex_str": "0x5450b7ac39aadde0ec" + }, + { + "id": "0x67f8db40638d8e06ac78e1d04a805f59d11adf9b", + "chain": "eth", + "name": "Sense Space 1st July 2023 maDAI Sense Principal Token, A11", + "symbol": "SPACE-sP-maDAI:01-07-2023:11", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-maDAI:01-07-2023:11", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.9911796473465515, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1665427199, + "amount": 34.357809360083934, + "raw_amount": 34357809360083930000, + "raw_amount_hex_str": "0x1dccf7593d864d1a2" + }, + { + "id": "0x68037790a0229e9ce6eaa8a99ea92964106c4703", + "chain": "eth", + "name": "PAR Stablecoin", + "symbol": "PAR", + "display_symbol": null, + "optimized_symbol": "PAR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x68037790a0229e9ce6eaa8a99ea92964106c4703/3141498258ab923e325c2b7d0483bd31.png", + "protocol_id": "mimo", + "price": 1.067800650164083, + "price_24h_change": 0.0000448437668709771, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1607062049, + "amount": 449.4130662172098, + "raw_amount": 449413066217209800000, + "raw_amount_hex_str": "0x185cdbf2a1cfe4d38d" + }, + { + "id": "0x6810e776880c02933d47db1b9fc05908e5386b96", + "chain": "eth", + "name": "Gnosis Token", + "symbol": "GNO", + "display_symbol": null, + "optimized_symbol": "GNO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6810e776880c02933d47db1b9fc05908e5386b96/69e5fedeca09913fe078a8dca5b7e48c.png", + "protocol_id": "gnosis", + "price": 143.9, + "price_24h_change": 0.01750700280112045, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1492523116, + "amount": 0.000174228262083627, + "raw_amount": 174228262083627, + "raw_amount_hex_str": "0x9e75adabdc2b" + }, + { + "id": "0x68ca006db91312cd60a2238ce775be5f9f738bba", + "chain": "eth", + "name": "$ USDCGift.com", + "symbol": "$ USDCGift.com <- Visit to claim bonus", + "display_symbol": null, + "optimized_symbol": "$ USDCGift.com <- Visit to claim bonus", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668158975, + "amount": 7000, + "raw_amount": 7000, + "raw_amount_hex_str": "0x1b58" + }, + { + "id": "0x68e3266c9c8bbd44ad9dca5afbfe629022aee9fe", + "chain": "eth", + "name": "Balancer wjAURA wETH Pool", + "symbol": "B-wjAura-wETH", + "display_symbol": null, + "optimized_symbol": "B-wjAura-wETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.46553489683523, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681226003, + "amount": 51.969415070075435, + "raw_amount": 51969415070075430000, + "raw_amount_hex_str": "0x2d13873a914adac78" + }, + { + "id": "0x6987633f18ca0b4a10831331fcc57211941b6ba0", + "chain": "eth", + "name": "20AGI-80WETH", + "symbol": "20AGI-80WETH", + "display_symbol": null, + "optimized_symbol": "20AGI-80WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 109.9822789099565, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682311763, + "amount": 0.768107945264947, + "raw_amount": 768107945264947000, + "raw_amount_hex_str": "0xaa8de1b4aac1ee5" + }, + { + "id": "0x6a556a2c2511e605a6c464ab5dccfdc0b19822e7", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2015.1754498836315, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647837528, + "amount": 0.000017053807901899, + "raw_amount": 17053807901899, + "raw_amount_hex_str": "0xf82a6297ccb" + }, + { + "id": "0x6a5ead5433a50472642cd268e584dafa5a394490", + "chain": "eth", + "name": "Balancer 50wstETH-50LDO", + "symbol": "50WSTETH-50LDO", + "display_symbol": null, + "optimized_symbol": "50WSTETH-50LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 66.2510362695644, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662739551, + "amount": 1.1424535e-11, + "raw_amount": 11424535, + "raw_amount_hex_str": "0xae5317" + }, + { + "id": "0x6a9603e481fb8f2c09804ea9adab49a338855b90", + "chain": "eth", + "name": "Balancer graviAURA Stable Pool", + "symbol": "B-graviAURA-STABLE", + "display_symbol": null, + "optimized_symbol": "B-graviAURA-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.1953331453992866, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666780871, + "amount": 17.256669599237974, + "raw_amount": 17256669599237974000, + "raw_amount_hex_str": "0xef7c01921cdca6be" + }, + { + "id": "0x6ae5a7857aad26722cb02cc168e38c52e0e4e45d", + "chain": "eth", + "name": "Balancer TBY-feb1924 USDC Stable Pool", + "symbol": "TBY-feb1924-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "TBY-feb1924-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9995644947558746, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693245515, + "amount": 12.22128930722457, + "raw_amount": 12221289307224570000, + "raw_amount_hex_str": "0xa99abddfae66784a" + }, + { + "id": "0x6b175474e89094c44da98b954eedeac495271d0f", + "chain": "eth", + "name": "Dai Stablecoin", + "symbol": "DAI", + "display_symbol": "", + "optimized_symbol": "DAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6b175474e89094c44da98b954eedeac495271d0f/549c4205dbb199f1b8b03af783f35e71.png", + "protocol_id": "makerdao", + "price": 0.99995, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1573672677, + "amount": 203.8126505821593, + "raw_amount": 203812650582159330000, + "raw_amount_hex_str": "0xb0c77fddbd86ad3da" + }, + { + "id": "0x6f0ed6f346007563d3266de350d174a831bde0ca", + "chain": "eth", + "name": "Balancer 50KNC-25WETH-25USDC", + "symbol": "50KNC-25WETH-25USDC-BPT", + "display_symbol": null, + "optimized_symbol": "50KNC-25WETH-25USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.687124643053612, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693075463, + "amount": 0.3619229357470404, + "raw_amount": 361922935747040400, + "raw_amount_hex_str": "0x505cefe1544d481" + }, + { + "id": "0x6f4906c181e6acb096908238c5ffd088cca6ba9f", + "chain": "eth", + "name": "\"ChadPepe\"", + "symbol": "CPEPE", + "display_symbol": null, + "optimized_symbol": "CPEPE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.05321589022223757, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683295967, + "amount": 5801.7304551870375, + "raw_amount": 5.801730455187037e+21, + "raw_amount_hex_str": "0x13a832f261b74b3a787" + }, + { + "id": "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8", + "chain": "eth", + "name": "Silo Governance Token", + "symbol": "Silo", + "display_symbol": null, + "optimized_symbol": "Silo", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8/09fe11bd3f4cef64f9bd378ba3958402.png", + "protocol_id": "silo", + "price": 0.06842465378576956, + "price_24h_change": 0.10652084950226903, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638296826, + "amount": 7605.249731955621, + "raw_amount": 7.605249731955622e+21, + "raw_amount_hex_str": "0x19c480ac0dfa59adfec" + }, + { + "id": "0x70d5e3234f6329c1d5a26796dcf4e109d69a3488", + "chain": "eth", + "name": "Balancer uniETH/wstETH/rETH", + "symbol": "uniETH/wstETH/rETH", + "display_symbol": null, + "optimized_symbol": "uniETH/wstETH/rETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1917.4865543623253, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693833479, + "amount": 0.057635251621896796, + "raw_amount": 57635251621896800, + "raw_amount_hex_str": "0xccc2f4bb76a25c" + }, + { + "id": "0x7152a37bbf363262bad269ec4de2269dd0e84ca3", + "chain": "eth", + "name": "50DC50WETH", + "symbol": "50DC50WETH", + "display_symbol": null, + "optimized_symbol": "50DC50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.4349149509304877, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667605751, + "amount": 1.142e-15, + "raw_amount": 1142, + "raw_amount_hex_str": "0x476" + }, + { + "id": "0x720465a4ae6547348056885060eeb51f9cadb571", + "chain": "eth", + "name": "Element Principal Token yvcrvSTETH-28JAN22", + "symbol": "ePyvcrvSTETH-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvcrvSTETH-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 2068.589536240617, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631804744, + "amount": 0.11136072164257546, + "raw_amount": 111360721642575470, + "raw_amount_hex_str": "0x18ba1fc7f6fd669" + }, + { + "id": "0x724e3073317d4b1a8d0c6e89b137ea5af1f4051e", + "chain": "eth", + "name": "Element Principal Token yvCurve-stETH-24FEB23", + "symbol": "ePyvCurve-stETH-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-stETH-24FEB23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 2068.589536240617, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661789184, + "amount": 0.02671914687826391, + "raw_amount": 26719146878263910, + "raw_amount_hex_str": "0x5eecec2a616266" + }, + { + "id": "0x74e5e53056526b2609d82e85486005ef2a2db001", + "chain": "eth", + "name": "Balancer TruMATIC-MATIC Stable Pool", + "symbol": "TruMATIC-MATIC", + "display_symbol": null, + "optimized_symbol": "TruMATIC-MATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.2870288073048772, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697199371, + "amount": 0.0777906611414486, + "raw_amount": 77790661141448600, + "raw_amount_hex_str": "0x1145e31b42dc79d" + }, + { + "id": "0x758b4684be769e92eefea93f60dda0181ea303ec", + "chain": "eth", + "name": "Phonon DAO", + "symbol": "PHONON", + "display_symbol": null, + "optimized_symbol": "PHONON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x758b4684be769e92eefea93f60dda0181ea303ec/f305fb475c9f724396997a1a9aa3b02d.png", + "protocol_id": "", + "price": 0.00023447566794184183, + "price_24h_change": 0.2683997845458642, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639714953, + "amount": 1090693.6633654584, + "raw_amount": 1.0906936633654584e+24, + "raw_amount_hex_str": "0xe6f69f393830acae8937" + }, + { + "id": "0x759fabc513accd292ada967c4dd7bb94da39232e", + "chain": "eth", + "name": "Balancer 80RATE/20WETH", + "symbol": "80RATE/20WETH-BPT", + "display_symbol": null, + "optimized_symbol": "80RATE/20WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.04268767440028, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689819743, + "amount": 8.209667008036332, + "raw_amount": 8209667008036332000, + "raw_amount_hex_str": "0x71ee98a5aa3fe00e" + }, + { + "id": "0x76e5f9860bd5b8666de322496f114b8a89183a2e", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.8617971749330222, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649095788, + "amount": 0.000741914814615684, + "raw_amount": 741914814615684, + "raw_amount_hex_str": "0x2a2c480fa9084" + }, + { + "id": "0x7758237b1ee34b7e702c5315f562b859481e344b", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6893191634235074, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697488691, + "amount": 3.649306226029704, + "raw_amount": 3649306226029704000, + "raw_amount_hex_str": "0x32a4f0ad7f1f331c" + }, + { + "id": "0x77b692c5ca2cceaeef4dcc959d6c3bd919710b66", + "chain": "eth", + "name": "80BREWSKI-20USDC", + "symbol": "80BREWSKI-20USDC", + "display_symbol": null, + "optimized_symbol": "80BREWSKI-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00012708892209901954, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685788019, + "amount": 16201.113696626731, + "raw_amount": 1.6201113696626731e+22, + "raw_amount_hex_str": "0x36e439e3de72006d59d" + }, + { + "id": "0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d", + "chain": "eth", + "name": "Balancer vETH StablePool", + "symbol": "B-vETH-STABLE", + "display_symbol": null, + "optimized_symbol": "B-vETH-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1930.054054184484, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680627563, + "amount": 0.33558342512528766, + "raw_amount": 335583425125287700, + "raw_amount_hex_str": "0x4a83b58df1a06e8" + }, + { + "id": "0x7966c5bae631294d7cffcea5430b78c2f76db6fa", + "chain": "eth", + "name": "Staked Apecoin", + "symbol": "sAPE", + "display_symbol": null, + "optimized_symbol": "sAPE", + "decimals": 18, + "logo_url": null, + "protocol_id": "tessera", + "price": 2.4473937130272554, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670860487, + "amount": 0.000908881765567925, + "raw_amount": 908881765567925, + "raw_amount_hex_str": "0x33a9f86c78db5" + }, + { + "id": "0x798b112420ad6391a4129ac25ef59663a44c88bb", + "chain": "eth", + "name": "Balancer 50wstETH-50ACX Pool", + "symbol": "wstETH-ACX", + "display_symbol": null, + "optimized_symbol": "wstETH-ACX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 12.793639244003804, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669644575, + "amount": 0.000251668816281154, + "raw_amount": 251668816281154, + "raw_amount_hex_str": "0xe4e436653e42" + }, + { + "id": "0x799ebfabe77a6e34311eeee9825190b9ece32824", + "chain": "eth", + "name": "BTRST", + "symbol": "BTRST", + "display_symbol": null, + "optimized_symbol": "BTRST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x799ebfabe77a6e34311eeee9825190b9ece32824/e6385202dd2bd0c1b0b3d28cb5bc459b.png", + "protocol_id": "", + "price": 0.4299, + "price_24h_change": 0.018479033404406608, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628607475, + "amount": 0.002468405856186437, + "raw_amount": 2468405856186437, + "raw_amount_hex_str": "0x8c50086383045" + }, + { + "id": "0x79c58f70905f734641735bc61e45c19dd9ad60bc", + "chain": "eth", + "name": "Balancer USDC-DAI-USDT Stable Pool", + "symbol": "USDC-DAI-USDT", + "display_symbol": null, + "optimized_symbol": "USDC-DAI-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0046326257554783, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679700419, + "amount": 342.6513228499046, + "raw_amount": 342651322849904600000, + "raw_amount_hex_str": "0x12933e0aaffe410295" + }, + { + "id": "0x79c71d3436f39ce382d0f58f1b011d88100b9d91", + "chain": "eth", + "name": "Xeonbit Token", + "symbol": "XNS", + "display_symbol": null, + "optimized_symbol": "XNS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x79c71d3436f39ce382d0f58f1b011d88100b9d91/46f0db9a119b111002c5f1c8ec7bd156.png", + "protocol_id": "", + "price": 0.010505797170427926, + "price_24h_change": 0.027489005457532047, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1554428953, + "amount": 89.69343767614153, + "raw_amount": 89693437676141530000, + "raw_amount_hex_str": "0x4dcbf1a59aa0dd33d" + }, + { + "id": "0x7a6b87d7a874fce4c2d923b09c0e09e4936bcf57", + "chain": "eth", + "name": "$ USTBonus.com", + "symbol": "$ Visit USTBonus.com to claim", + "display_symbol": null, + "optimized_symbol": "$ Visit USTBonus.com to claim", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669300319, + "amount": 7000, + "raw_amount": 7000, + "raw_amount_hex_str": "0x1b58" + }, + { + "id": "0x7b4328c127b85369d9f82ca0503b000d09cf9180", + "chain": "eth", + "name": "Dogechain Token", + "symbol": "DC", + "display_symbol": null, + "optimized_symbol": "DC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b4328c127b85369d9f82ca0503b000d09cf9180/b3b8446c1a6ee2ef9e7ce6c28d433130.png", + "protocol_id": "", + "price": 0.0010410977107411581, + "price_24h_change": 0.3159960590595191, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1661076494, + "amount": 6331.425637225221, + "raw_amount": 6.331425637225221e+21, + "raw_amount_hex_str": "0x1573a2e77b9c2833e4c" + }, + { + "id": "0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool (USD)", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2/44cee7bfd13a23eb37912d7da66f18eb.png", + "protocol_id": "balancer2", + "price": 0.0036217723206054715, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639435704, + "amount": 143.81279664606467, + "raw_amount": 143812796646064670000, + "raw_amount_hex_str": "0x7cbcdb098c42c3de8" + }, + { + "id": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "chain": "eth", + "name": "Matic Token", + "symbol": "MATIC", + "display_symbol": null, + "optimized_symbol": "MATIC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0/20aac20baa9069bd39342edd8c5cc801.png", + "protocol_id": "", + "price": 0.8372, + "price_24h_change": 0.08449974079834116, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1555778052, + "amount": 193.85760036698986, + "raw_amount": 193857600366989840000, + "raw_amount_hex_str": "0xa82508c6ea410a3d2" + }, + { + "id": "0x7d98f308db99fdd04bbf4217a4be8809f38faa64", + "chain": "eth", + "name": "Balancer 80wstETH/20GHO", + "symbol": "80wstETH/20GHO", + "display_symbol": null, + "optimized_symbol": "80wstETH/20GHO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 383.43779325569534, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689434447, + "amount": 1.0122839914905413, + "raw_amount": 1012283991490541200, + "raw_amount_hex_str": "0xe0c5aed4c9bb6a3" + }, + { + "id": "0x7e4fee0c14673db4f1526fdbea53819e5808a9b5", + "chain": "eth", + "name": "Element Principal Token yvBalancer-BoostedAaveUSD-04MAY23", + "symbol": "ePyvBalancer-BoostedAaveUSD-04MAY23", + "display_symbol": null, + "optimized_symbol": "ePyvBalancer-BoostedAaveUSD-04MAY23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.00019675176168657763, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667421959, + "amount": 18.26159065163822, + "raw_amount": 18261590651638219000, + "raw_amount_hex_str": "0xfd6e33f1907d8263" + }, + { + "id": "0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f", + "chain": "eth", + "name": "baoUSD-LUSD StablePool", + "symbol": "B-baoUSD-LUSD-BPT", + "display_symbol": null, + "optimized_symbol": "B-baoUSD-LUSD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.4865118836873352, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681222379, + "amount": 109.59797994877621, + "raw_amount": 109597979948776230000, + "raw_amount_hex_str": "0x5f0fa3e16a330e00e" + }, + { + "id": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH", + "display_symbol": null, + "optimized_symbol": "wstETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0/7e931af8cb34b6f5671ca2eb1b847849.png", + "protocol_id": "lido", + "price": 2224.7723457008556, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1613752640, + "amount": 0.00000103938210584, + "raw_amount": 1039382105840, + "raw_amount_hex_str": "0xf200004ef0" + }, + { + "id": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "chain": "eth", + "name": "Aave Token", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9/eee087b66747b09dbfb4ba0b34fd3697.png", + "protocol_id": "aave", + "price": 106.07433788342237, + "price_24h_change": 0.08217622664277736, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600970788, + "amount": 2.8490033810217996, + "raw_amount": 2849003381021800000, + "raw_amount_hex_str": "0x2789b17af9b0f540" + }, + { + "id": "0x7fce0080031e3639cb8b40e21ea59f8f3d840935", + "chain": "eth", + "name": "Eva Token", + "symbol": "EVA", + "display_symbol": null, + "optimized_symbol": "EVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676596199, + "amount": 3331120.881749351, + "raw_amount": 3.331120881749351e+24, + "raw_amount_hex_str": "0x2c1646cc2543322b14f35" + }, + { + "id": "0x808507121b80c02388fad14726482e061b8da827", + "chain": "eth", + "name": "Pendle", + "symbol": "PENDLE", + "display_symbol": null, + "optimized_symbol": "PENDLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x808507121b80c02388fad14726482e061b8da827/b9351f830cd0a6457e489b8c685f29ad.png", + "protocol_id": "pendle", + "price": 0.9730139014123454, + "price_24h_change": 0.017069380660405233, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619495943, + "amount": 0.18985326143748185, + "raw_amount": 189853261437481860, + "raw_amount_hex_str": "0x2a27e890f6e3370" + }, + { + "id": "0x809d62f1c6e35720fd88df1c9fa7dec82b6ada52", + "chain": "eth", + "name": "ASAHI", + "symbol": "SUN", + "display_symbol": null, + "optimized_symbol": "SUN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650730353, + "amount": 197971097.59001258, + "raw_amount": 1.979710975900126e+26, + "raw_amount_hex_str": "0xa3c202b46f2fc6d175b1de" + }, + { + "id": "0x81b7f92c7b7d9349b989b4982588761bfa1aa627", + "chain": "eth", + "name": "4Pool Chainlink V2", + "symbol": "BUSD-DAI-USDC-BPT-USDT", + "display_symbol": null, + "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.5405505646335351, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669068491, + "amount": 5.25596e-13, + "raw_amount": 525596, + "raw_amount_hex_str": "0x8051c" + }, + { + "id": "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321", + "chain": "eth", + "name": "VitaDAO Token", + "symbol": "VITA", + "display_symbol": null, + "optimized_symbol": "VITA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321/ed46cc2757ddd792be9ec3b7218ef336.png", + "protocol_id": "", + "price": 2.1932590747730845, + "price_24h_change": 0.029469085901172483, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623977434, + "amount": 0.09269945761782954, + "raw_amount": 92699457617829540, + "raw_amount_hex_str": "0x14955aa622e9ea7" + }, + { + "id": "0x8290333cef9e6d528dd5618fb97a76f268f3edd4", + "chain": "eth", + "name": "Ankr Network", + "symbol": "ANKR", + "display_symbol": null, + "optimized_symbol": "ANKR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8290333cef9e6d528dd5618fb97a76f268f3edd4/7184a29596bf7517a912b57ce6797562.png", + "protocol_id": "ankr", + "price": 0.026853357027795153, + "price_24h_change": 0.0651762967960679, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1550710665, + "amount": 8492.055815610045, + "raw_amount": 8.492055815610046e+21, + "raw_amount_hex_str": "0x1cc5af2db7512e50e04" + }, + { + "id": "0x8334215586e93ee85e3f1a281eaf66e52015754d", + "chain": "eth", + "name": "50WETH-50FIEF", + "symbol": "50WETH-50FIEF", + "display_symbol": null, + "optimized_symbol": "50WETH-50FIEF", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.4726340626508572, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687974707, + "amount": 1.9393936932856752, + "raw_amount": 1939393693285675300, + "raw_amount_hex_str": "0x1aea1c49e7ecf10d" + }, + { + "id": "0x8353157092ed8be69a9df8f95af097bbf33cb2af", + "chain": "eth", + "name": "Balancer GHO/USDT/USDC", + "symbol": "GHO/USDT/USDC", + "display_symbol": null, + "optimized_symbol": "GHO/USDT/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.977640975500951, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692910907, + "amount": 870.8804927878406, + "raw_amount": 870880492787840600000, + "raw_amount_hex_str": "0x2f35e50a11645f5af7" + }, + { + "id": "0x83d392a7be901892a8c861c96ea430b8d9c2bd51", + "chain": "eth", + "name": "Element Principal Token yvCurve-LUSD-16SEP22", + "symbol": "ePyvCurve-LUSD-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-LUSD-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0261885219256355, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650388639, + "amount": 31.23523832948818, + "raw_amount": 31235238329488180000, + "raw_amount_hex_str": "0x1b179dbc4efcefd6d" + }, + { + "id": "0x853d955acef822db058eb8505911ed77f175b99e", + "chain": "eth", + "name": "Frax", + "symbol": "FRAX", + "display_symbol": null, + "optimized_symbol": "FRAX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x853d955acef822db058eb8505911ed77f175b99e/4f323e33bfffa864c577e7bd2a3257c9.png", + "protocol_id": "frax", + "price": 0.9995968650894353, + "price_24h_change": 0.0002739191931324742, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608140520, + "amount": 25.27221215404488, + "raw_amount": 25272212154044880000, + "raw_amount_hex_str": "0x15eb8ef0e62279189" + }, + { + "id": "0x865377367054516e17014ccded1e7d814edc9ce4", + "chain": "eth", + "name": "Dola USD Stablecoin", + "symbol": "DOLA", + "display_symbol": null, + "optimized_symbol": "DOLA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x865377367054516e17014ccded1e7d814edc9ce4/0c348eedfa7f89d3db2919e0a18988ea.png", + "protocol_id": "inverse", + "price": 0.9955593702034743, + "price_24h_change": -0.004510990215077939, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614116357, + "amount": 649.4455215006193, + "raw_amount": 649445521500619300000, + "raw_amount_hex_str": "0x2334ddfce51cbaed1b" + }, + { + "id": "0x866ec9652fa462f17f89684f8cc5297e0e438065", + "chain": "eth", + "name": "# paxos.gift", + "symbol": "Visit https://paxos.gift to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit https://paxos.gift to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699155551, + "amount": 1.4, + "raw_amount": 1400000, + "raw_amount_hex_str": "0x155cc0" + }, + { + "id": "0x87a867f5d240a782d43d90b6b06dea470f3f8f22", + "chain": "eth", + "name": "Balancer 50COMP-50wstETH BPT", + "symbol": "B-50COMP-50wstETH", + "display_symbol": null, + "optimized_symbol": "B-50COMP-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 341.497312571704, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681328963, + "amount": 0.000003919751066464, + "raw_amount": 3919751066464, + "raw_amount_hex_str": "0x390a35eb360" + }, + { + "id": "0x8888801af4d980682e47f1a9036e589479e835c5", + "chain": "eth", + "name": "88mph.app", + "symbol": "MPH", + "display_symbol": null, + "optimized_symbol": "MPH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8888801af4d980682e47f1a9036e589479e835c5/32058e0e8684004754562c90f458e744.png", + "protocol_id": "88mph2", + "price": 0.6433045097393727, + "price_24h_change": 0.044096624063383875, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1605809018, + "amount": 414.0804824675657, + "raw_amount": 414080482467565670000, + "raw_amount_hex_str": "0x16728564e96d9e2038" + }, + { + "id": "0x888888435fde8e7d4c54cab67f206e4199454c60", + "chain": "eth", + "name": "DFX Token", + "symbol": "DFX", + "display_symbol": null, + "optimized_symbol": "DFX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x888888435fde8e7d4c54cab67f206e4199454c60/eaad30c2bb118c5cfee13eac513aa1a8.png", + "protocol_id": "dfx", + "price": 0.1916067667613985, + "price_24h_change": 0.6036482527783521, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1610615371, + "amount": 0.017716951184054613, + "raw_amount": 17716951184054616, + "raw_amount_hex_str": "0x3ef17925d41957" + }, + { + "id": "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab", + "chain": "eth", + "name": "Alchemist", + "symbol": "⚗️", + "display_symbol": "MIST", + "optimized_symbol": "MIST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab/bd99a167b17de42b302a00d8ec78f32f.png", + "protocol_id": "crucible", + "price": 0.9589493816009869, + "price_24h_change": 0.033434993188068515, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612643126, + "amount": 11.493286646362273, + "raw_amount": 11493286646362274000, + "raw_amount_hex_str": "0x9f805b4f9229f606" + }, + { + "id": "0x89045d0af6a12782ec6f701ee6698beaf17d0ea2", + "chain": "eth", + "name": "iUPixel", + "symbol": "PIXEL", + "display_symbol": null, + "optimized_symbol": "PIXEL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x89045d0af6a12782ec6f701ee6698beaf17d0ea2/964c07a3fb571d24f5aa601e9d3fe80f.png", + "protocol_id": "", + "price": 0.0002946065837692929, + "price_24h_change": 0.02159126398085939, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602981698, + "amount": 460337.16721424105, + "raw_amount": 4.603371672142411e+23, + "raw_amount_hex_str": "0x617aed86d282c31957db" + }, + { + "id": "0x8987a07ba83607a66c7351266e771fb865c9ca6c", + "chain": "eth", + "name": "Cage Governance Token", + "symbol": "CGT", + "display_symbol": null, + "optimized_symbol": "CGT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8987a07ba83607a66c7351266e771fb865c9ca6c/c80a5505fccd765c0a1ba4b67a6e4e3d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637143700, + "amount": 15.790961789893558, + "raw_amount": 15790961789893558000, + "raw_amount_hex_str": "0xdb24c415745f3ee7" + }, + { + "id": "0x8a2228705ec979961f0e16df311debcf097a2766", + "chain": "eth", + "name": "Element Principal Token yvUSDC-28JAN22", + "symbol": "ePyvUSDC-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-28JAN22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1.0000000000000002, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631632129, + "amount": 31.567058, + "raw_amount": 31567058, + "raw_amount_hex_str": "0x1e1acd2" + }, + { + "id": "0x8b66c529148690891a187379dbdb2873a4e0c449", + "chain": "eth", + "name": "Moonerium", + "symbol": "Moonerium", + "display_symbol": null, + "optimized_symbol": "Moonerium", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 46.58889498391358, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684417919, + "amount": 0.001408899266208972, + "raw_amount": 1408899266208972, + "raw_amount_hex_str": "0x50162ec4964cc" + }, + { + "id": "0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0", + "chain": "eth", + "name": "Balancer 50TEMPLE-50DAI", + "symbol": "50TEMPLE-50DAI", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0517466006553806, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680238631, + "amount": 451.6655148843032, + "raw_amount": 451665514884303200000, + "raw_amount_hex_str": "0x187c1e40c2c4ccd808" + }, + { + "id": "0x8c5f3c967eef7da094582d831fb1c80f92ecf5dd", + "chain": "eth", + "name": "50SNT-50WETH", + "symbol": "50SNT-50WETH", + "display_symbol": null, + "optimized_symbol": "50SNT-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 9.709852005207345, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677476783, + "amount": 4.507904505321695, + "raw_amount": 4507904505321694700, + "raw_amount_hex_str": "0x3e8f4b43811526e3" + }, + { + "id": "0x8d6cebd76f18e1558d4db88138e2defb3909fad6", + "chain": "eth", + "name": "Mai Stablecoin", + "symbol": "MAI", + "display_symbol": null, + "optimized_symbol": "MAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mai/295a642804394964de762d65824294cf.png", + "protocol_id": "mai", + "price": 0.7513825872816908, + "price_24h_change": -0.0016507093670820223, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1658859288, + "amount": 0.007052559459577903, + "raw_amount": 7052559459577903, + "raw_amount_hex_str": "0x190e43f558702f" + }, + { + "id": "0x8d7acc5d07818f187ab70b6033c690fd67c96d98", + "chain": "eth", + "name": "PlannerDAO", + "symbol": "PLAN", + "display_symbol": null, + "optimized_symbol": "PLAN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621455716, + "amount": 11.085849251675613, + "raw_amount": 11085849251675613000, + "raw_amount_hex_str": "0x99d8d928b7a7aaad" + }, + { + "id": "0x8e6c196e201942246cef85718c5d3a5622518053", + "chain": "eth", + "name": "Balancer 80 LE 20 WETH", + "symbol": "B-80LE-20WETH", + "display_symbol": null, + "optimized_symbol": "B-80LE-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.18062148065956973, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1688136155, + "amount": 6.233801427684616, + "raw_amount": 6233801427684616000, + "raw_amount_hex_str": "0x5682e95ed176e6d1" + }, + { + "id": "0x8e85e97ed19c0fa13b2549309965291fbbc0048b", + "chain": "eth", + "name": "sfrxETH-stETH-rETH StablePool", + "symbol": "sfrxETH-stETH-rETH-BPT", + "display_symbol": null, + "optimized_symbol": "sfrxETH-stETH-rETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2004.420174506894, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667418911, + "amount": 6.9161748152e-8, + "raw_amount": 69161748152, + "raw_amount_hex_str": "0x101a5c86b8" + }, + { + "id": "0x8ed9e70bfa17a1e2c4f8e561c8d0c2d1acc092fa", + "chain": "eth", + "name": "33LCNY-33LUSD-33WETH", + "symbol": "33LCNY-33LUSD-33WETH", + "display_symbol": null, + "optimized_symbol": "33LCNY-33LUSD-33WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 7.266252678836929, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692519623, + "amount": 1.930678182506807, + "raw_amount": 1930678182506806800, + "raw_amount_hex_str": "0x1acb2593ebea3e33" + }, + { + "id": "0x9001cbbd96f54a658ff4e6e65ab564ded76a5431", + "chain": "eth", + "name": "Balancer cbETH-Boosted Aave WETH StablePool", + "symbol": "cbETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "cbETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1930.9930581160609, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680874919, + "amount": 0.35409415617982215, + "raw_amount": 354094156179822200, + "raw_amount_hex_str": "0x4e9fec24c23d660" + }, + { + "id": "0x900db999074d9277c5da2a43f252d74366230da0", + "chain": "eth", + "name": "Giveth", + "symbol": "GIV", + "display_symbol": null, + "optimized_symbol": "GIV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x900db999074d9277c5da2a43f252d74366230da0/48a1779d740e93397c6204755092a146.png", + "protocol_id": "giveth", + "price": 0.008397516549917088, + "price_24h_change": -0.026470693489453037, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639666178, + "amount": 7019.957242057263, + "raw_amount": 7.019957242057263e+21, + "raw_amount_hex_str": "0x17c8d7a1e52d607759f" + }, + { + "id": "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc", + "chain": "eth", + "name": "MIMO Parallel Governance Token", + "symbol": "MIMO", + "display_symbol": null, + "optimized_symbol": "MIMO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mimo/6af9a128dea021ebe53a281780a7ebb5.png", + "protocol_id": "mimo", + "price": 0.01240847, + "price_24h_change": 0.02371246715424819, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1615370586, + "amount": 13199.640610822877, + "raw_amount": 1.3199640610822878e+22, + "raw_amount_hex_str": "0x2cb8dcfc0d9a5b53169" + }, + { + "id": "0x90eeee265528fa9aa620c19d45c644655de1fa81", + "chain": "eth", + "name": "Eva Token", + "symbol": "EVA", + "display_symbol": null, + "optimized_symbol": "EVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 6.760063293730822e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675064363, + "amount": 16052929.27629729, + "raw_amount": 1.605292927629729e+25, + "raw_amount_hex_str": "0xd47570a30b7e9bda1bd1b" + }, + { + "id": "0x92915c346287ddfbcec8f86c8eb52280ed05b3a3", + "chain": "eth", + "name": "Amplesense Elastic Finance token", + "symbol": "EEFI", + "display_symbol": null, + "optimized_symbol": "EEFI", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 1.6063425649077707, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1644855585, + "amount": 133.18463722073648, + "raw_amount": 133184637220736480000, + "raw_amount_hex_str": "0x7384ee1e8e9442777" + }, + { + "id": "0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd", + "chain": "eth", + "name": "Balancer wstETH-WETH Stable Pool", + "symbol": "wstETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1918.252801708165, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692039167, + "amount": 0.2849206004495106, + "raw_amount": 284920600449510620, + "raw_amount_hex_str": "0x3f43dc6cafbecef" + }, + { + "id": "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593", + "chain": "eth", + "name": "StaFi", + "symbol": "rETH", + "display_symbol": null, + "optimized_symbol": "rETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593/1f7543f59d45f4b362c6d1802dcd1b00.png", + "protocol_id": "stafi", + "price": 2074.853444579068, + "price_24h_change": 0.02920452785333708, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611803201, + "amount": 0.3044447391133411, + "raw_amount": 304444739113341060, + "raw_amount_hex_str": "0x4399ae09096509b" + }, + { + "id": "0x959216bb492b2efa72b15b7aacea5b5c984c3cca", + "chain": "eth", + "name": "Balancer 50wstETH-50Tessera-Boosted-APE", + "symbol": "50wstETH-50stk-APE", + "display_symbol": null, + "optimized_symbol": "50wstETH-50stk-APE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 60.92278992549235, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675958315, + "amount": 0.000049988662366821, + "raw_amount": 49988662366821, + "raw_amount_hex_str": "0x2d76e4769265" + }, + { + "id": "0x95a4492f028aa1fd432ea71146b433e7b4446611", + "chain": "eth", + "name": "APY Governance Token", + "symbol": "APY", + "display_symbol": null, + "optimized_symbol": "APY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x95a4492f028aa1fd432ea71146b433e7b4446611/31f5a55b09524c2f39c8fbab8b9eb25d.png", + "protocol_id": "apy", + "price": 0.0019253973061705582, + "price_24h_change": 0.02703189382143275, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1604545092, + "amount": 5.32007461666674, + "raw_amount": 5320074616666740000, + "raw_amount_hex_str": "0x49d4b3ad48fe5524" + }, + { + "id": "0x95f1a3ca4af4d08b9c42d65ef07b66e8222ed85a", + "chain": "eth", + "name": "50somm-50WETH", + "symbol": "50somm-50WETH", + "display_symbol": null, + "optimized_symbol": "50somm-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 17.19215597739945, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691465927, + "amount": 11.162820569766506, + "raw_amount": 11162820569766504000, + "raw_amount_hex_str": "0x9aea4e2a405b2b7a" + }, + { + "id": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", + "chain": "eth", + "name": "TenX Community JAPAN", + "symbol": "TXJP", + "display_symbol": null, + "optimized_symbol": "TXJP", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 74.17224808390225, + "price_24h_change": 0.029503937216639856, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1508827879, + "amount": 0.72110039, + "raw_amount": 72110039, + "raw_amount_hex_str": "0x44c4fd7" + }, + { + "id": "0x965d79f1a1016b574a62986e13ca8ab04dfdd15c", + "chain": "eth", + "name": "M2", + "symbol": "M2", + "display_symbol": null, + "optimized_symbol": "M2", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x965d79f1a1016b574a62986e13ca8ab04dfdd15c/9c4c98bb688cad9d0775e42311676045.png", + "protocol_id": "m2cash", + "price": 0.0006994907762976072, + "price_24h_change": 0.02831522804192731, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619741983, + "amount": 279.58216405678513, + "raw_amount": 279582164056785160000, + "raw_amount_hex_str": "0xf27fb60eb7ba9fcc6" + }, + { + "id": "0x97e6e31afb2d93d437301e006d9da714616766a5", + "chain": "eth", + "name": "Midas", + "symbol": "MIDAS", + "display_symbol": null, + "optimized_symbol": "MIDAS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x97e6e31afb2d93d437301e006d9da714616766a5/9804ef6af458909c9f41570042527eaa.png", + "protocol_id": "", + "price": 0, + "price_24h_change": 0.17733797952296151, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1667822315, + "amount": 1.4449879581191298, + "raw_amount": 1444987958119129900, + "raw_amount_hex_str": "0x140da0e45c686335" + }, + { + "id": "0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63", + "chain": "eth", + "name": "SONM Token", + "symbol": "SNM", + "display_symbol": null, + "optimized_symbol": "SNM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63/c1fdffa2e62a946fda0b8142da1aee6c.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1497526685, + "amount": 70.76889600927694, + "raw_amount": 70768896009276940000, + "raw_amount_hex_str": "0x3d61d9ff88382e0ce" + }, + { + "id": "0x99c88ad7dc566616548adde8ed3effa730eb6c34", + "chain": "eth", + "name": "Balancer Gearboox Boosted StablePool", + "symbol": "bb-g-USD", + "display_symbol": null, + "optimized_symbol": "bb-g-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.016026515982834003, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676566427, + "amount": 693.3828488214735, + "raw_amount": 693382848821473600000, + "raw_amount_hex_str": "0x25969ebb4da84f2f90" + }, + { + "id": "0x9b532ab955417afd0d012eb9f7389457cd0ea712", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.233481407835163, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660860422, + "amount": 0.020381305014858703, + "raw_amount": 20381305014858704, + "raw_amount_hex_str": "0x4868b05d7833d0" + }, + { + "id": "0x9b692f571b256140a39a34676bffa30634c586e1", + "chain": "eth", + "name": "Balancer Idle JuniorBY Boosted StablePool", + "symbol": "bb-i-USD", + "display_symbol": null, + "optimized_symbol": "bb-i-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9909120872507104, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689516275, + "amount": 16.970204340500405, + "raw_amount": 16970204340500406000, + "raw_amount_hex_str": "0xeb8246ef89519d02" + }, + { + "id": "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050", + "chain": "eth", + "name": "Tracer", + "symbol": "TCR", + "display_symbol": null, + "optimized_symbol": "TCR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050/9b533f8265c54ab60417e8e06767c30c.png", + "protocol_id": "", + "price": 0.001730701397785163, + "price_24h_change": 0.023497505111607912, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1609975395, + "amount": 0.001036534736409761, + "raw_amount": 1036534736409761, + "raw_amount_hex_str": "0x3aeb90cc2d4a1" + }, + { + "id": "0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd", + "chain": "eth", + "name": "80Silo-20WETH", + "symbol": "80Silo-20WETH", + "display_symbol": null, + "optimized_symbol": "80Silo-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.4388482581100853, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678213451, + "amount": 2296.0006020723636, + "raw_amount": 2.2960006020723636e+21, + "raw_amount_hex_str": "0x7c7768beda2e3cabed" + }, + { + "id": "0x9d1089802ee608ba84c5c98211afe5f37f96b36c", + "chain": "eth", + "name": "Fluid USDC", + "symbol": "fUSDC", + "display_symbol": null, + "optimized_symbol": "fUSDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9d1089802ee608ba84c5c98211afe5f37f96b36c/acda24faa880ba0b7dd1ac519dc945a6.png", + "protocol_id": "fluidity", + "price": 1.0052341311647672, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1662012933, + "amount": 0.017477, + "raw_amount": 17477, + "raw_amount_hex_str": "0x4445" + }, + { + "id": "0x9f41a3d1ec37090e52a9102b24bc6921a813925f", + "chain": "eth", + "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-06-2027:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1390.6524817185955, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659544897, + "amount": 0.03945322234666871, + "raw_amount": 39453222346668710, + "raw_amount_hex_str": "0x8c2a7f2737baa5" + }, + { + "id": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "chain": "eth", + "name": "Maker", + "symbol": "MKR", + "display_symbol": null, + "optimized_symbol": "MKR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2/1d0390168de63ca803e8db7990e4f6ec.png", + "protocol_id": "makerdao", + "price": 1350.6603695291394, + "price_24h_change": 0.017264986197558892, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1511634257, + "amount": 0.8326430766528391, + "raw_amount": 832643076652839000, + "raw_amount_hex_str": "0xb8e24777894b098" + }, + { + "id": "0x9f9d900462492d4c21e9523ca95a7cd86142f298", + "chain": "eth", + "name": "Balancer 50rETH-50RPL", + "symbol": "50rETH-50RPL", + "display_symbol": null, + "optimized_symbol": "50rETH-50RPL", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 237.05679138728522, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675890263, + "amount": 0.000018204124086475, + "raw_amount": 18204124086475, + "raw_amount_hex_str": "0x108e7a5980cb" + }, + { + "id": "0xa00486f88c98e2131e043e6b28fa53d46db7e6c7", + "chain": "eth", + "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-12-2022:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1993.0755062345509, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652967472, + "amount": 0.03866396606896321, + "raw_amount": 38663966068963210, + "raw_amount_hex_str": "0x895cac1b25f789" + }, + { + "id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "chain": "eth", + "name": "USD Coin", + "symbol": "USDC", + "display_symbol": null, + "optimized_symbol": "USDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdc/e87790bfe0b3f2ea855dc29069b38818.png", + "protocol_id": "", + "price": 1, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1533324504, + "amount": 0.001781, + "raw_amount": 1781, + "raw_amount_hex_str": "0x6f5" + }, + { + "id": "0xa13a9247ea42d743238089903570127dda72fe44", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa13a9247ea42d743238089903570127dda72fe44/44cee7bfd13a23eb37912d7da66f18eb.png", + "protocol_id": "balancer2", + "price": 0.0001967517616865777, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662537668, + "amount": 15.771330510513138, + "raw_amount": 15771330510513138000, + "raw_amount_hex_str": "0xdadf058a0a6a6a4a" + }, + { + "id": "0xa279dab6ec190ee4efce7da72896eb58ad533262", + "chain": "eth", + "name": "yfu.finance", + "symbol": "YFU", + "display_symbol": null, + "optimized_symbol": "YFU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa279dab6ec190ee4efce7da72896eb58ad533262/4cae6b44cb432fd05b4ed4b6986bbc86.png", + "protocol_id": "", + "price": 0.006034584339937634, + "price_24h_change": 0.028270909244979298, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600162041, + "amount": 18228.89948742489, + "raw_amount": 1.822889948742489e+22, + "raw_amount_hex_str": "0x3dc30cc8ef6d4b77ab8" + }, + { + "id": "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9", + "chain": "eth", + "name": "Tempus", + "symbol": "TEMP", + "display_symbol": null, + "optimized_symbol": "TEMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9/9d092f467bded810ccd2a1f8a7a341b3.png", + "protocol_id": "raft", + "price": 0.019361950199804984, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635510955, + "amount": 8.442455644432426, + "raw_amount": 8442455644432427000, + "raw_amount_hex_str": "0x7529a0adb662e7eb" + }, + { + "id": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2", + "chain": "eth", + "name": "Meta", + "symbol": "MTA", + "display_symbol": null, + "optimized_symbol": "MTA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2/17557a59ad21559db3e23e16ec1a16bd.png", + "protocol_id": "mstable", + "price": 0.03730393914351911, + "price_24h_change": 0.02781736214486621, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594635836, + "amount": 15213.74562970801, + "raw_amount": 1.521374562970801e+22, + "raw_amount_hex_str": "0x338bd2234572983c833" + }, + { + "id": "0xa68ccd2c3805c175c9f9caf30ae497e173dab30e", + "chain": "eth", + "name": "Sense Space 1st July 2023 cUSDC Sense Principal Token, A9", + "symbol": "SPACE-sP-cUSDC:01-07-2023:9", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-cUSDC:01-07-2023:9", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.6456837268262436, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660068889, + "amount": 91.58003837353839, + "raw_amount": 91580038373538380000, + "raw_amount_hex_str": "0x4f6eda7b05b65c726" + }, + { + "id": "0xa718042e5622099e5f0ace4e7122058ab39e1bbe", + "chain": "eth", + "name": "Balancer 50TEMPLE-50bb-euler-USD", + "symbol": "50TEMPLE-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0555862602845145, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675960415, + "amount": 0.006724969309434162, + "raw_amount": 6724969309434162, + "raw_amount_hex_str": "0x17e452eed07132" + }, + { + "id": "0xa9dd57145ca13a2f05199d85e3f2739af6478427", + "chain": "eth", + "name": "80TBTC-20WBTC", + "symbol": "80TBTC-20WBTC", + "display_symbol": null, + "optimized_symbol": "80TBTC-20WBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 30420.043551681454, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691731199, + "amount": 0.000021838039836179, + "raw_amount": 21838039836179, + "raw_amount_hex_str": "0x13dc909b6613" + }, + { + "id": "0xab3af7f0c93ec60bce469649bfefda0de0980993", + "chain": "eth", + "name": "$ rEthLP.com", + "symbol": "$ rEthLP.com", + "display_symbol": null, + "optimized_symbol": "$ rEthLP.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687618163, + "amount": 5000, + "raw_amount": 5000, + "raw_amount_hex_str": "0x1388" + }, + { + "id": "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf", + "chain": "eth", + "name": "Paladin Token", + "symbol": "PAL", + "display_symbol": null, + "optimized_symbol": "PAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf/445fbd915f5573ff4783b39329ca7bc1.png", + "protocol_id": "paladin", + "price": 0.1151185921615352, + "price_24h_change": 0.07605322372767785, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635408659, + "amount": 1185.6781644171872, + "raw_amount": 1.1856781644171874e+21, + "raw_amount_hex_str": "0x404697088b97a61700" + }, + { + "id": "0xabe580e7ee158da464b51ee1a83ac0289622e6be", + "chain": "eth", + "name": "Offshift", + "symbol": "XFT", + "display_symbol": null, + "optimized_symbol": "XFT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xabe580e7ee158da464b51ee1a83ac0289622e6be/ee34c8bec4551ca91087ef18d8337273.png", + "protocol_id": "", + "price": 0.23911596714181088, + "price_24h_change": 0.018480483178545226, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594831562, + "amount": 157.62779756475396, + "raw_amount": 157627797564753940000, + "raw_amount_hex_str": "0x88b866ebcbe57bb5c" + }, + { + "id": "0xad0e5e0778cac28f1ff459602b31351871b5754a", + "chain": "eth", + "name": "BPT-EURS-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0409863079265615, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668652895, + "amount": 739.4887216505659, + "raw_amount": 739488721650565900000, + "raw_amount_hex_str": "0x281677b25cadb2bf3d" + }, + { + "id": "0xae78736cd615f374d3085123a210448e74fc6393", + "chain": "eth", + "name": "Rocket Pool ETH", + "symbol": "rETH", + "display_symbol": null, + "optimized_symbol": "rETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xae78736cd615f374d3085123a210448e74fc6393/0a56aa87c04449332f88702b2bd5f45c.png", + "protocol_id": "rocketpool", + "price": 2113.8149745203204, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1632980684, + "amount": 0.7188274541014031, + "raw_amount": 718827454101403100, + "raw_amount_hex_str": "0x9f9c9c2d08335ce" + }, + { + "id": "0xae8535c23afedda9304b03c68a3563b75fc8f92b", + "chain": "eth", + "name": "swETH/Boosted Aave v3 WETH", + "symbol": "swETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1927.0115736322489, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689520463, + "amount": 0.000001469001331326, + "raw_amount": 1469001331326, + "raw_amount_hex_str": "0x156074d727e" + }, + { + "id": "0xb17548c7b510427baac4e267bea62e800b247173", + "chain": "eth", + "name": "Swarm Markets", + "symbol": "SMT", + "display_symbol": null, + "optimized_symbol": "SMT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb17548c7b510427baac4e267bea62e800b247173/9582e5b9b72518371bb342c0efc49c1f.png", + "protocol_id": "swarm", + "price": 0.10539435349660721, + "price_24h_change": -0.004837462064092304, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1625232545, + "amount": 1108.1762058273564, + "raw_amount": 1.1081762058273564e+21, + "raw_amount_hex_str": "0x3c1308c3d4afbe27b4" + }, + { + "id": "0xb209468fc8c99360657d48238e1a7cf0b13362b6", + "chain": "eth", + "name": "80SWIV-20WETH", + "symbol": "80SWIV-20WETH", + "display_symbol": null, + "optimized_symbol": "80SWIV-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.13732906761798458, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695750107, + "amount": 47.676032167405076, + "raw_amount": 47676032167405080000, + "raw_amount_hex_str": "0x295a34aa86646bf6e" + }, + { + "id": "0xb4efd85c19999d84251304bda99e90b92300bd93", + "chain": "eth", + "name": "Rocket Pool", + "symbol": "RPL", + "display_symbol": "RPL(old)", + "optimized_symbol": "RPL(old)", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb4efd85c19999d84251304bda99e90b92300bd93/0dac0c5e1dd543fb62581f0756e0b11f.png", + "protocol_id": "rocketpool", + "price": 27.267805019191062, + "price_24h_change": 0.038280794567395623, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1504750041, + "amount": 0.0086061706836381, + "raw_amount": 8606170683638101, + "raw_amount_hex_str": "0x1e934442798155" + }, + { + "id": "0xb53ecf1345cabee6ea1a65100ebb153cebcac40f", + "chain": "eth", + "name": "Childhoods End", + "symbol": "O", + "display_symbol": null, + "optimized_symbol": "O", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb53ecf1345cabee6ea1a65100ebb153cebcac40f/996bd647276bd1415dae387fb97044c0.png", + "protocol_id": "", + "price": 0.000019754805270098996, + "price_24h_change": -0.02323842621234555, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1650383811, + "amount": 155.7903179917363, + "raw_amount": 155790317991736300000, + "raw_amount_hex_str": "0x8720664cd0e96cdbc" + }, + { + "id": "0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a03", + "chain": "eth", + "name": "Balancer vETH/WETH StablePool", + "symbol": "vETH/WETH BPT", + "display_symbol": null, + "optimized_symbol": "vETH/WETH BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1918.180098722043, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689519911, + "amount": 0.09890653535424314, + "raw_amount": 98906535354243140, + "raw_amount_hex_str": "0x15f62f849c1183d" + }, + { + "id": "0xb5e3de837f869b0248825e0175da73d4e8c3db6b", + "chain": "eth", + "name": "Balancer 50rETH-50bb-euler-USD", + "symbol": "50rETH-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50rETH-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 64.02393740433496, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675959503, + "amount": 0.00013530571635119, + "raw_amount": 135305716351190, + "raw_amount_hex_str": "0x7b0f5128c0d6" + }, + { + "id": "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206", + "chain": "eth", + "name": "Nexo", + "symbol": "NEXO", + "display_symbol": null, + "optimized_symbol": "NEXO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206/0fed72ccc71d9596a9c90536c8da2b95.png", + "protocol_id": "", + "price": 0.7046255775234956, + "price_24h_change": 0.011524358298897825, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1524250249, + "amount": 676.4372781409888, + "raw_amount": 676437278140988800000, + "raw_amount_hex_str": "0x24ab73f88d09bea141" + }, + { + "id": "0xb65df73fc4f6591ebe00494a4bd47ed339a81210", + "chain": "eth", + "name": "AAA METAVERSE TOKEN", + "symbol": "AMT", + "display_symbol": null, + "optimized_symbol": "AMT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.0025810996827768553, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653030386, + "amount": 562.5772921108754, + "raw_amount": 562577292110875460000, + "raw_amount_hex_str": "0x1e7f540a8339e63546" + }, + { + "id": "0xb7dff8b71e62bff9f850795bcea61ffbca7c87a3", + "chain": "eth", + "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-12-2022:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1983.0037556331115, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659543677, + "amount": 0.016823993980989112, + "raw_amount": 16823993980989112, + "raw_amount_hex_str": "0x3bc55558f0aeb9" + }, + { + "id": "0xb83809806a076a1413437ea3e553d6bf41993a21", + "chain": "eth", + "name": "Element Principal Token yvUSDC-24FEB23", + "symbol": "ePyvUSDC-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-24FEB23", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1.0000000000000002, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661486935, + "amount": 16.087236, + "raw_amount": 16087236, + "raw_amount_hex_str": "0xf578c4" + }, + { + "id": "0xb8e2cbb2455e80ad0eb536ae30a5290bdd7baa91", + "chain": "eth", + "name": "80BREWSKI-20WETH", + "symbol": "80BREWSKI-20WETH", + "display_symbol": null, + "optimized_symbol": "80BREWSKI-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0006337153045654731, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685791475, + "amount": 2507.045707598529, + "raw_amount": 2.507045707598529e+21, + "raw_amount_hex_str": "0x87e83f9429d626c569" + }, + { + "id": "0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6", + "chain": "eth", + "name": "Balancer 50wstETH-50bb-a-USD", + "symbol": "50wstETH-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50wstETH-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 24.034093454703612, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664906015, + "amount": 0.0125422532991523, + "raw_amount": 12542253299152300, + "raw_amount_hex_str": "0x2c8f1ce89435ac" + }, + { + "id": "0xba100000625a3754423978a60c9317c58a424e3d", + "chain": "eth", + "name": "Balancer", + "symbol": "BAL", + "display_symbol": null, + "optimized_symbol": "BAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba100000625a3754423978a60c9317c58a424e3d/52990c207f4001bd9090dfd90e54374a.png", + "protocol_id": "balancer", + "price": 3.8237762524796595, + "price_24h_change": 0.026311133655238936, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1592616779, + "amount": 0.009840254424095298, + "raw_amount": 9840254424095298, + "raw_amount_hex_str": "0x22f5a8c5729a42" + }, + { + "id": "0xba485b556399123261a5f9c95d413b4f93107407", + "chain": "eth", + "name": "Gravitationally Bound AURA", + "symbol": "graviAURA", + "display_symbol": null, + "optimized_symbol": "graviAURA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba485b556399123261a5f9c95d413b4f93107407/a8e2db7ff72e88ddc918855572e9110e.png", + "protocol_id": "badger", + "price": 1.1970674552230118, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1655385807, + "amount": 163.61654249763245, + "raw_amount": 163616542497632450000, + "raw_amount_hex_str": "0x8dea2ba8624fcb0e4" + }, + { + "id": "0xbb6c7b5e0804d07ae31a43e6e83ea66fb128a3bb", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1730.592350703658, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648172657, + "amount": 0.005585389870334592, + "raw_amount": 5585389870334592, + "raw_amount_hex_str": "0x13d7e1eb274280" + }, + { + "id": "0xbc396689893d065f41bc2c6ecbee5e0085233447", + "chain": "eth", + "name": "Perpetual", + "symbol": "PERP", + "display_symbol": null, + "optimized_symbol": "PERP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbc396689893d065f41bc2c6ecbee5e0085233447/ccb9a7014a682d32c7fe19ce6c66070d.png", + "protocol_id": "perpetual", + "price": 0.6664320925035092, + "price_24h_change": 0.016107906648563975, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599343689, + "amount": 0.009363496712110932, + "raw_amount": 9363496712110932, + "raw_amount_hex_str": "0x21440cf7618353" + }, + { + "id": "0xbd482ffb3e6e50dc1c437557c3bea2b68f3683ee", + "chain": "eth", + "name": "4Pool Chainlink", + "symbol": "BUSD-DAI-USDC-BPT-USDT", + "display_symbol": null, + "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.42798474476782344, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668203063, + "amount": 137.930014803117, + "raw_amount": 137930014803117000000, + "raw_amount_hex_str": "0x77a29d9adcc28c1a7" + }, + { + "id": "0xbe19d87ea6cd5b05bbc34b564291c371dae96747", + "chain": "eth", + "name": "Balancer GHO/3pool Stable Pool", + "symbol": "GHO-3POOL-BPT", + "display_symbol": null, + "optimized_symbol": "GHO-3POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9723788801971184, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692108155, + "amount": 716.7594361161499, + "raw_amount": 716759436116149900000, + "raw_amount_hex_str": "0x26db090d97e867a9ec" + }, + { + "id": "0xbe1f8b3493570501cb32bc87ae3150f4e1a9f0e4", + "chain": "eth", + "name": "GonczyPolski", + "symbol": "GP", + "display_symbol": null, + "optimized_symbol": "GP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659962474, + "amount": 18707.03543949801, + "raw_amount": 1.8707035439498009e+22, + "raw_amount_hex_str": "0x3f61c44b21a124b9e94" + }, + { + "id": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "chain": "eth", + "name": "Coinbase Wrapped Staked ETH", + "symbol": "cbETH", + "display_symbol": null, + "optimized_symbol": "cbETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbe9895146f7af43049ca1c1ae358b0541ea49704/1f287272a7d8439af0f6b281ebf0143e.png", + "protocol_id": "", + "price": 2046.275, + "price_24h_change": 0.029751076287456248, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1643901537, + "amount": 0.00000131395854526, + "raw_amount": 1313958545260, + "raw_amount_hex_str": "0x131ee08476c" + }, + { + "id": "0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33", + "chain": "eth", + "name": "R/bb-s-DAI Stable Pool", + "symbol": "R-bb-s-DAI-BLP", + "display_symbol": null, + "optimized_symbol": "R-bb-s-DAI-BLP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0027249978354664, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689167879, + "amount": 0.001611574821043787, + "raw_amount": 1611574821043787, + "raw_amount_hex_str": "0x5b9b800bcbe4b" + }, + { + "id": "0xbfa9180729f1c549334080005ca37093593fb7aa", + "chain": "eth", + "name": "$ ClaimLIDO.com", + "symbol": "$ ClaimLIDO.com", + "display_symbol": null, + "optimized_symbol": "$ ClaimLIDO.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667825063, + "amount": 400, + "raw_amount": 400, + "raw_amount_hex_str": "0x190" + }, + { + "id": "0xbfce47224b4a938865e3e2727dc34e0faa5b1d82", + "chain": "eth", + "name": "Balancer uniETH-WETH", + "symbol": "uniETH-WETH", + "display_symbol": null, + "optimized_symbol": "uniETH-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1902.167509994294, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682117411, + "amount": 0.39733411223606924, + "raw_amount": 397334112236069250, + "raw_amount_hex_str": "0x5839d4518f9e16a" + }, + { + "id": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "chain": "eth", + "name": "Compound", + "symbol": "COMP", + "display_symbol": null, + "optimized_symbol": "COMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc00e94cb662c3520282e6f5717214004a7f26888/dd174d3d7083fa027a433dc50edaf0bc.png", + "protocol_id": "compound3", + "price": 54.114079046901196, + "price_24h_change": 0.03001085280181636, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1583280535, + "amount": 5.7687117271119135, + "raw_amount": 5768711727111913000, + "raw_amount_hex_str": "0x500e94c07a22c0e0" + }, + { + "id": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "chain": "eth", + "name": "Synthetix Network Token", + "symbol": "SNX", + "display_symbol": null, + "optimized_symbol": "SNX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f/fb568c26c7902169572abe8fa966e791.png", + "protocol_id": "synthetix", + "price": 2.7545586573080723, + "price_24h_change": 0.07767016804888088, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1565329008, + "amount": 0.04863918214181143, + "raw_amount": 48639182141811430, + "raw_amount_hex_str": "0xaccd1415ba6ae5" + }, + { + "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "chain": "eth", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2/61844453e63cf81301f845d7864236f6.png", + "protocol_id": "", + "price": 1939.97, + "price_24h_change": 0.028088011576564882, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1513077455, + "amount": 0.000021268579424187, + "raw_amount": 21268579424187, + "raw_amount_hex_str": "0x1357fa1f17bb" + }, + { + "id": "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf", + "chain": "eth", + "name": "Aura", + "symbol": "AURA", + "display_symbol": null, + "optimized_symbol": "AURA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc0c293ce456ff0ed870add98a0828dd4d2903dbf/f5bdc54131498b4bda381d301e855962.png", + "protocol_id": "aurafinance", + "price": 1.1338726727519615, + "price_24h_change": -0.012316683594552168, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1654771511, + "amount": 0.16259890333140747, + "raw_amount": 162598903331407460, + "raw_amount_hex_str": "0x241aad751efc66d" + }, + { + "id": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72", + "chain": "eth", + "name": "Ethereum Name Service", + "symbol": "ENS", + "display_symbol": null, + "optimized_symbol": "ENS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc18360217d8f7ab5e7c516566761ea12ce7f9d72/034d454d78d7be7f9675066fdb63e114.png", + "protocol_id": "ens", + "price": 8.739878531382441, + "price_24h_change": 0.017037950238710412, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635800117, + "amount": 0.000122993544439271, + "raw_amount": 122993544439271, + "raw_amount_hex_str": "0x6fdcaa86a5e7" + }, + { + "id": "0xc285b7e09a4584d027e5bc36571785b515898246", + "chain": "eth", + "name": "Coin98 Dollar", + "symbol": "CUSD", + "display_symbol": null, + "optimized_symbol": "CUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc285b7e09a4584d027e5bc36571785b515898246/5c76ada4733bb3b2b5591a1bd8d1d38b.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1657947314, + "amount": 13.55210093862448, + "raw_amount": 13552100938624480000, + "raw_amount_hex_str": "0xbc12bc0066f3335f" + }, + { + "id": "0xc2b021133d1b0cf07dba696fd5dd89338428225b", + "chain": "eth", + "name": "Balancer GHO/bb-a-USD Stable Pool", + "symbol": "GHO/bb-a-USD", + "display_symbol": null, + "optimized_symbol": "GHO/bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9750612149400382, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689432443, + "amount": 396.22222911106655, + "raw_amount": 396222229111066500000, + "raw_amount_hex_str": "0x157ab02219e68f4384" + }, + { + "id": "0xc443c15033fcb6cf72cc24f1bda0db070ddd9786", + "chain": "eth", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc443c15033fcb6cf72cc24f1bda0db070ddd9786/ee454c97f462c9b0bd19726bcfa86720.png", + "protocol_id": "balancer2", + "price": 1.0003415277891745, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689173327, + "amount": 17.64075312816144, + "raw_amount": 17640753128161440000, + "raw_amount_hex_str": "0xf4d08b815e6c6d1b" + }, + { + "id": "0xc4ad29ba4b3c580e6d59105fff484999997675ff", + "chain": "eth", + "name": "Curve.fi USD-BTC-ETH", + "symbol": "crv3crypto", + "display_symbol": null, + "optimized_symbol": "crv3crypto", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1288.1338884683087, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1626210526, + "amount": 0.17431343489797024, + "raw_amount": 174313434897970240, + "raw_amount_hex_str": "0x26b49253eabf43e" + }, + { + "id": "0xc4fd39b52100c96a5f7dcd3c6522485897329889", + "chain": "eth", + "name": "Balancer KAI-WETH Weighted Pool", + "symbol": "B-KAI-WETH-WEIGHTED", + "display_symbol": null, + "optimized_symbol": "B-KAI-WETH-WEIGHTED", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 30.198750771243063, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687806275, + "amount": 9e-18, + "raw_amount": 9, + "raw_amount_hex_str": "0x9" + }, + { + "id": "0xc63958d9d01efa6b8266b1df3862c6323cbdb52b", + "chain": "eth", + "name": "Element Principal Token yvCurve-MIM-29APR22", + "symbol": "ePyvCurve-MIM-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-MIM-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0084178795867154, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1636645562, + "amount": 691.7806591217435, + "raw_amount": 691780659121743500000, + "raw_amount_hex_str": "0x2580629c429d1be771" + }, + { + "id": "0xc88c76dd8b92408fe9bea1a54922a31e232d873c", + "chain": "eth", + "name": "80ASX-20WETH", + "symbol": "80ASX-20WETH", + "display_symbol": null, + "optimized_symbol": "80ASX-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.752012514444528, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691057747, + "amount": 0.5730239591756298, + "raw_amount": 573023959175629800, + "raw_amount_hex_str": "0x7f3ca413e738be3" + }, + { + "id": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", + "chain": "eth", + "name": "Graph Token", + "symbol": "GRT", + "display_symbol": null, + "optimized_symbol": "GRT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc944e90c64b2c07662a292be6244bdf05cda44a7/8a3fcf468cdf3ae0c7a56cfb12ab4816.png", + "protocol_id": "thegraph", + "price": 0.13542501325757803, + "price_24h_change": 0.0324563158583087, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1607890633, + "amount": 4.073381297170433, + "raw_amount": 4073381297170432500, + "raw_amount_hex_str": "0x38878eb54490425a" + }, + { + "id": "0xc9b88361c09ec184bdd32cf52cffc79a1452f79d", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-16SEP22", + "symbol": "ePyvCurve-alUSD-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.008579664823669, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651238498, + "amount": 3.4140435605437474, + "raw_amount": 3414043560543747000, + "raw_amount_hex_str": "0x2f611e87a9eb7c99" + }, + { + "id": "0xc9c5ff67bb2fae526ae2467c359609d6bcb4c532", + "chain": "eth", + "name": "Tranchess qETH/ETH Balancer Pool", + "symbol": "qETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1949.5980585894042, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668491783, + "amount": 0.1122426227770841, + "raw_amount": 112242622777084110, + "raw_amount_hex_str": "0x18ec4121b4948c9" + }, + { + "id": "0xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf", + "chain": "eth", + "name": "Curve.fi USD-BTC-ETH", + "symbol": "crvTricrypto", + "display_symbol": null, + "optimized_symbol": "crvTricrypto", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1267.0841743242577, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1622187277, + "amount": 9.13523352988e-7, + "raw_amount": 913523352988, + "raw_amount_hex_str": "0xd4b23c259c" + }, + { + "id": "0xcaa052584b462198a5a9356c28bce0634d65f65c", + "chain": "eth", + "name": "Balancer Morpho Aave v2 Boosted StablePool", + "symbol": "bb-ma2-USD", + "display_symbol": null, + "optimized_symbol": "bb-ma2-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0106471452888934, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679168039, + "amount": 102.07287280750954, + "raw_amount": 102072872807509540000, + "raw_amount_hex_str": "0x5888bb1035f3c4ebb" + }, + { + "id": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", + "chain": "eth", + "name": "ParaSwap", + "symbol": "PSP", + "display_symbol": null, + "optimized_symbol": "PSP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcafe001067cdef266afb7eb5a286dcfd277f3de5/142412ec7069ec0a4806f2bfc2855022.png", + "protocol_id": "paraswap", + "price": 0.031563524263020996, + "price_24h_change": 0.073039412829931, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636966698, + "amount": 7817.954299116152, + "raw_amount": 7.817954299116152e+21, + "raw_amount_hex_str": "0x1a7cfe92dbfc0383e11" + }, + { + "id": "0xcce00da653eb50133455d4075fe8bca36750492c", + "chain": "eth", + "name": "Element Principal Token yvDAI-16SEP22", + "symbol": "ePyvDAI-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.99995, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649796306, + "amount": 846.7169215907458, + "raw_amount": 846716921590745800000, + "raw_amount_hex_str": "0x2de68eca1698ae3e57" + }, + { + "id": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5", + "chain": "eth", + "name": "Threshold Network Token", + "symbol": "T", + "display_symbol": null, + "optimized_symbol": "T", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcdf7028ceab81fa0c6971208e83fa7872994bee5/415842bd4135e852704aea093ce139d0.png", + "protocol_id": "threshold", + "price": 0.025802796354277013, + "price_24h_change": 0.02935877259639507, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640944196, + "amount": 0.0587644842674271, + "raw_amount": 58764484267427100, + "raw_amount_hex_str": "0xd0c5fcb22b451e" + }, + { + "id": "0xce621fc54d2547294a46b4d5c142bdeb2d0f0aeb", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1954.887053007699, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647499081, + "amount": 0.000003220458669281, + "raw_amount": 3220458669281, + "raw_amount_hex_str": "0x2edd24b84e1" + }, + { + "id": "0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a", + "chain": "eth", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.3285689592838517, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698710459, + "amount": 29.246454226360786, + "raw_amount": 29246454226360787000, + "raw_amount_hex_str": "0x195e0472a1df4d87d" + }, + { + "id": "0xcfe60a1535ecc5b0bc628dc97111c8bb01637911", + "chain": "eth", + "name": "Element Principal Token yvUSDC-16SEP22", + "symbol": "ePyvUSDC-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-16SEP22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647458268, + "amount": 251.4586, + "raw_amount": 251458600, + "raw_amount_hex_str": "0xefcf428" + }, + { + "id": "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5", + "chain": "eth", + "name": "Notional", + "symbol": "NOTE", + "display_symbol": null, + "optimized_symbol": "NOTE", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5/ebf0bbcfaf39b581a04aacbc502101a4.png", + "protocol_id": "notional", + "price": 0.14207682351401882, + "price_24h_change": 0.10468187834598103, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1629899104, + "amount": 0.00893664, + "raw_amount": 893664, + "raw_amount_hex_str": "0xda2e0" + }, + { + "id": "0xd0cd466b34a24fcb2f87676278af2005ca8a78c4", + "chain": "eth", + "name": "Popcorn", + "symbol": "POP", + "display_symbol": null, + "optimized_symbol": "POP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd0cd466b34a24fcb2f87676278af2005ca8a78c4/41dcbcb4a675480acd535ff047f024ba.png", + "protocol_id": "popcorn", + "price": 0.022395244988096946, + "price_24h_change": 0.1414331799562703, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1618395052, + "amount": 1.4999982309440762, + "raw_amount": 1499998230944076300, + "raw_amount_hex_str": "0x14d110719722d1df" + }, + { + "id": "0xd278166dabaf26707362f7cfdd204b277fd2a460", + "chain": "eth", + "name": "Balancer 50USH-50WETH", + "symbol": "50USH-50WETH", + "display_symbol": null, + "optimized_symbol": "50USH-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 7.297295869035944, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680608411, + "amount": 52.51509883621858, + "raw_amount": 52515098836218580000, + "raw_amount_hex_str": "0x2d8cb1c279556796a" + }, + { + "id": "0xd31a59c85ae9d8edefec411d448f90841571b89c", + "chain": "eth", + "name": "Wrapped SOL (Wormhole)", + "symbol": "SOL", + "display_symbol": null, + "optimized_symbol": "SOL", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd31a59c85ae9d8edefec411d448f90841571b89c/7c5db5c2eae571da837b65f5b9ae1a5c.png", + "protocol_id": "", + "price": 47.71845569742502, + "price_24h_change": -0.013891615462940668, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632316757, + "amount": 0.065785808, + "raw_amount": 65785808, + "raw_amount_hex_str": "0x3ebcfd0" + }, + { + "id": "0xd33526068d116ce69f19a9ee46f0bd304f21a51f", + "chain": "eth", + "name": "Rocket Pool Protocol", + "symbol": "RPL", + "display_symbol": null, + "optimized_symbol": "RPL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd33526068d116ce69f19a9ee46f0bd304f21a51f/0dac0c5e1dd543fb62581f0756e0b11f.png", + "protocol_id": "rocketpool", + "price": 27.459933112537243, + "price_24h_change": 0.03429475588376704, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632980703, + "amount": 0.000252996123096066, + "raw_amount": 252996123096066, + "raw_amount_hex_str": "0xe619400bf402" + }, + { + "id": "0xd40954a9ff856f9a2c6efa88ad45623157a7dff0", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.4267344728189963, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647839269, + "amount": 91.48478749826427, + "raw_amount": 91484787498264260000, + "raw_amount_hex_str": "0x4f59b4185c2239c2c" + }, + { + "id": "0xd5a14081a34d256711b02bbef17e567da48e80b5", + "chain": "eth", + "name": "Wrapped USDR", + "symbol": "wUSDR", + "display_symbol": null, + "optimized_symbol": "wUSDR", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5a14081a34d256711b02bbef17e567da48e80b5/c2524c9f38607e4862733fb51a2af417.png", + "protocol_id": "multichain", + "price": 0.5336560650807955, + "price_24h_change": -0.009379525357074021, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1673500139, + "amount": 82.86324508, + "raw_amount": 82863245080, + "raw_amount_hex_str": "0x134b08c718" + }, + { + "id": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", + "chain": "eth", + "name": "NFT Worlds", + "symbol": "WRLD", + "display_symbol": null, + "optimized_symbol": "WRLD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9/7e8c2ceca870a77f8910d33d85163f0d.png", + "protocol_id": "", + "price": 0.03220669872627996, + "price_24h_change": -0.03968567111755629, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640650326, + "amount": 4.0949999999418525, + "raw_amount": 4094999999941852700, + "raw_amount_hex_str": "0x38d45ccdbfc23e02" + }, + { + "id": "0xd5d99b7e9697ba8bb1da48f07ba81900c7572cea", + "chain": "eth", + "name": "Balancer DUSD-3POOL Stable Pool", + "symbol": "DUSD-3POOL-BPT", + "display_symbol": null, + "optimized_symbol": "DUSD-3POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0061975564173824, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692371747, + "amount": 5.799889409970106, + "raw_amount": 5799889409970105000, + "raw_amount_hex_str": "0x507d58b071d16d9a" + }, + { + "id": "0xd689abc77b82803f22c49de5c8a0049cc74d11fd", + "chain": "eth", + "name": "80USH-20unshETH", + "symbol": "80USH-20unshETH", + "display_symbol": null, + "optimized_symbol": "80USH-20unshETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.1949665883489458, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681890359, + "amount": 1142.3636133332263, + "raw_amount": 1.1423636133332264e+21, + "raw_amount_hex_str": "0x3ded7ad5d322a6abf7" + }, + { + "id": "0xd8721e92ba0f8235b375e9ec9a7b697ec4e2d6c6", + "chain": "eth", + "name": "80BIDS-20WETH", + "symbol": "80BIDS-20WETH", + "display_symbol": null, + "optimized_symbol": "80BIDS-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00047981665650502476, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687690631, + "amount": 2493.6199718123144, + "raw_amount": 2.4936199718123146e+21, + "raw_amount_hex_str": "0x872dedc8993497a483" + }, + { + "id": "0xd8dc4cc15945a16aa5201bcabfa1d32d2cb39fd6", + "chain": "eth", + "name": "Sense Space 1st June 2023 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-06-2023:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2023:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2014.1761519957247, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652969144, + "amount": 0.022896520284385536, + "raw_amount": 22896520284385536, + "raw_amount_hex_str": "0x5158438e24b0ff" + }, + { + "id": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chain": "eth", + "name": "Tether USD", + "symbol": "USDT", + "display_symbol": "", + "optimized_symbol": "USDT", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", + "protocol_id": "", + "price": 1.000465, + "price_24h_change": 0.00018994776436471217, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1511829681, + "amount": 56.93199, + "raw_amount": 56931990, + "raw_amount_hex_str": "0x364b696" + }, + { + "id": "0xdbbfb4ccd10a0828b95ce6fbe8a7502a9e6a76f5", + "chain": "eth", + "name": "Sense Space 1st July 2023 cDAI Sense Principal Token, A10", + "symbol": "SPACE-sP-cDAI:01-07-2023:10", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-cDAI:01-07-2023:10", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.738179963500506, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660069123, + "amount": 1.7887012788357777, + "raw_amount": 1788701278835777800, + "raw_amount_hex_str": "0x18d2be560e4b20c6" + }, + { + "id": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f", + "chain": "eth", + "name": "Gitcoin", + "symbol": "GTC", + "display_symbol": "", + "optimized_symbol": "GTC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f/18bdb51197eaa8954b3467dcf0a5c5e9.png", + "protocol_id": "gitcoin", + "price": 1.1205755561785906, + "price_24h_change": 0.06551978008071413, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620856082, + "amount": 600.9258778676896, + "raw_amount": 600925877867689500000, + "raw_amount_hex_str": "0x20938596143368992b" + }, + { + "id": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab", + "chain": "eth", + "name": "CoW Protocol Token", + "symbol": "COW", + "display_symbol": null, + "optimized_symbol": "COW", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab/01b4a8c7bfa381d0f47d140d58d06d54.png", + "protocol_id": "", + "price": 0.1562029548903704, + "price_24h_change": -0.06823439573016306, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644608664, + "amount": 3.740292097500236, + "raw_amount": 3740292097500236000, + "raw_amount_hex_str": "0x33e82fd883b3c8c8" + }, + { + "id": "0xdf2c03c12442c7a0895455a48569b889079ca52a", + "chain": "eth", + "name": "80ARCH-20WETH", + "symbol": "80ARCH-20WETH", + "display_symbol": null, + "optimized_symbol": "80ARCH-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 8.756604114222196, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683242339, + "amount": 62.00358507396346, + "raw_amount": 62003585073963460000, + "raw_amount_hex_str": "0x35c78fc1d9e4de34d" + }, + { + "id": "0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba", + "chain": "eth", + "name": "Balancer ankrETH/wstETH StablePool", + "symbol": "ankrETH/wstETH", + "display_symbol": null, + "optimized_symbol": "ankrETH/wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1930.2724481003947, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685154395, + "amount": 1.2722141812120653, + "raw_amount": 1272214181212065300, + "raw_amount_hex_str": "0x11a7d00ead5c0e67" + }, + { + "id": "0xe074fbcc87e18615d6b099ee603bd37de562416b", + "chain": "eth", + "name": "50WAGMI-50ICE", + "symbol": "50WAGMI-50ICE", + "display_symbol": null, + "optimized_symbol": "50WAGMI-50ICE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.08952389161074253, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695825635, + "amount": 5699.714464432158, + "raw_amount": 5.699714464432158e+21, + "raw_amount_hex_str": "0x134fb6d8b05029e1ce3" + }, + { + "id": "0xe29797910d413281d2821d5d9a989262c8121cc2", + "chain": "eth", + "name": "elimu.ai", + "symbol": "ELIMU", + "display_symbol": null, + "optimized_symbol": "ELIMU", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.0015763979394094966, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1623928435, + "amount": 2609.5598485877413, + "raw_amount": 2.6095598485877414e+21, + "raw_amount_hex_str": "0x8d76eaf83ffa785b14" + }, + { + "id": "0xe41d2489571d322189246dafa5ebde1f4699f498", + "chain": "eth", + "name": "0x Protocol Token", + "symbol": "ZRX", + "display_symbol": null, + "optimized_symbol": "ZRX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe41d2489571d322189246dafa5ebde1f4699f498/d7005102d4df2f6f8a79a5e8abe93b06.png", + "protocol_id": "0x", + "price": 0.28976819979690555, + "price_24h_change": 0.010439484629943098, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1502476756, + "amount": 19.965979726938276, + "raw_amount": 19965979726938276000, + "raw_amount_hex_str": "0x1151568c700ce85cd" + }, + { + "id": "0xe4af3c338260aabf119b5023d497437974769413", + "chain": "eth", + "name": "20USDC-80FOLD", + "symbol": "20USDC-80FOLD", + "display_symbol": null, + "optimized_symbol": "20USDC-80FOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.962218264080844, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683208187, + "amount": 17.236359481010393, + "raw_amount": 17236359481010395000, + "raw_amount_hex_str": "0xef33d9a0368f94cd" + }, + { + "id": "0xe4e72f872c4048925a78e1e6fddac411c9ae348a", + "chain": "eth", + "name": "2BTC", + "symbol": "2BTC", + "display_symbol": null, + "optimized_symbol": "2BTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 36933.82467921447, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691729291, + "amount": 0.018795502953768004, + "raw_amount": 18795502953768004, + "raw_amount_hex_str": "0x42c6690cef2444" + }, + { + "id": "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532", + "chain": "eth", + "name": "ZEON", + "symbol": "ZEON", + "display_symbol": null, + "optimized_symbol": "ZEON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532/132ae9ab3cb6f2e332d748726ea96ec2.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1539621663, + "amount": 985.9709680218301, + "raw_amount": 985970968021830100000, + "raw_amount_hex_str": "0x3573188b848d35f70b" + }, + { + "id": "0xe72c7d093ac50c57e47f4f2674243a4fff68f0f2", + "chain": "eth", + "name": "stDai.xyz", + "symbol": "https://stdai.xyz", + "display_symbol": null, + "optimized_symbol": "https://stdai.xyz", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663927511, + "amount": 777, + "raw_amount": 777, + "raw_amount_hex_str": "0x309" + }, + { + "id": "0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2", + "chain": "eth", + "name": "Balancer swETH-WETH Stable Pool", + "symbol": "swETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1920.117309632884, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692370463, + "amount": 0.10885876663831758, + "raw_amount": 108858766638317570, + "raw_amount_hex_str": "0x182be78b42a0001" + }, + { + "id": "0xe89c2dccfa045f3538ae3ebbfff3daec6a40a73a", + "chain": "eth", + "name": "$ USDCXMAS.com", + "symbol": "$ Visit USDCXMAS.com to claim", + "display_symbol": null, + "optimized_symbol": "$ Visit USDCXMAS.com to claim", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672053143, + "amount": 9000, + "raw_amount": 9000, + "raw_amount_hex_str": "0x2328" + }, + { + "id": "0xe91888a1d08e37598867d213a4acb5692071bb3a", + "chain": "eth", + "name": "20R-80RAFT", + "symbol": "20R-80RAFT", + "display_symbol": null, + "optimized_symbol": "20R-80RAFT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.01402583748042837, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696336955, + "amount": 69640.54280446797, + "raw_amount": 6.964054280446798e+22, + "raw_amount_hex_str": "0xebf38ad054123565043" + }, + { + "id": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb", + "chain": "eth", + "name": "Ankr Staked ETH", + "symbol": "ankrETH", + "display_symbol": "ankrETH", + "optimized_symbol": "ankrETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe95a203b1a91a908f9b9ce46459d101078c2c3cb/943011b2bba8d1d0a9c815caee4baf84.png", + "protocol_id": "ankr", + "price": 2208.2170098401434, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1604948706, + "amount": 0.226184428977988, + "raw_amount": 226184428977988000, + "raw_amount_hex_str": "0x323918a2ef52195" + }, + { + "id": "0xea34b59a4e7075203a93f97178b2581d5f3f9919", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1.024771324012701, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651434899, + "amount": 0.000075732300716355, + "raw_amount": 75732300716355, + "raw_amount_hex_str": "0x44e0cce1d943" + }, + { + "id": "0xea912e1afa137c15f1638142e32f978e92fbce39", + "chain": "eth", + "name": "Balancer DAI-USDT Fixed Rate Pool", + "symbol": "B-DAI-USDT-FIXED-RATE", + "display_symbol": null, + "optimized_symbol": "B-DAI-USDT-FIXED-RATE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0003481863489014, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667292155, + "amount": 2.52799920533739, + "raw_amount": 2527999205337390000, + "raw_amount_hex_str": "0x231541e2229adb33" + }, + { + "id": "0xeaa1cba8cc3cf01a92e9e853e90277b5b8a23e07", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-29APR22", + "symbol": "ePyvCurve-alUSD-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.008579664823669, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1637702559, + "amount": 15.528525296983258, + "raw_amount": 15528525296983257000, + "raw_amount_hex_str": "0xd780677be45ab12a" + }, + { + "id": "0xeb567dde03f3da7fe185bdacd5ab495ab220769d", + "chain": "eth", + "name": "ankrETH-Boosted Aave WETH StablePool", + "symbol": "ankrETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "ankrETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1932.1535185170305, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684280387, + "amount": 0.15395745027751706, + "raw_amount": 153957450277517060, + "raw_amount_hex_str": "0x222f77c3e50f702" + }, + { + "id": "0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983", + "chain": "eth", + "name": "Balancer UZD/bb-a-USD stableswap", + "symbol": "B-S-UZD-BB-A-USD", + "display_symbol": null, + "optimized_symbol": "B-S-UZD-BB-A-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0074275023301308574, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683442295, + "amount": 4.95e-15, + "raw_amount": 4950, + "raw_amount_hex_str": "0x1356" + }, + { + "id": "0xecf2c7a432e5f7d8ba0a85b12f2ae3e4874ec690", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1887.0252171224636, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647837401, + "amount": 0.0000119498554493, + "raw_amount": 11949855449300, + "raw_amount_hex_str": "0xade4ae3a0d4" + }, + { + "id": "0xed1480d12be41d92f36f5f7bdd88212e381a3677", + "chain": "eth", + "name": "FIAT DAO Token", + "symbol": "FDT", + "display_symbol": null, + "optimized_symbol": "FDT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed1480d12be41d92f36f5f7bdd88212e381a3677/3b6713634ee6c7285619f5d6f77329f9.png", + "protocol_id": "fiatdao", + "price": 0.0035256569063623375, + "price_24h_change": -0.001853158313969377, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635920329, + "amount": 0.499420319665554, + "raw_amount": 499420319665554050, + "raw_amount_hex_str": "0x6ee4c227b470265" + }, + { + "id": "0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Liquity", + "symbol": "LUSD3CRV-f", + "display_symbol": null, + "optimized_symbol": "LUSD3CRV-f", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca/45a771023b4a156c4bf6888411f5a38f.png", + "protocol_id": "curve", + "price": 1.0261885219256355, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1617695155, + "amount": 419.9876956078656, + "raw_amount": 419987695607865600000, + "raw_amount_hex_str": "0x16c48007f715b6ea31" + }, + { + "id": "0xedb171c18ce90b633db442f2a6f72874093b49ef", + "chain": "eth", + "name": "Wrapped Ampleforth", + "symbol": "WAMPL", + "display_symbol": null, + "optimized_symbol": "WAMPL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xedb171c18ce90b633db442f2a6f72874093b49ef/60204bc28b7d18732faa55afcdd29196.png", + "protocol_id": "", + "price": 5.402091042986501, + "price_24h_change": 0.029116487151217, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632315593, + "amount": 9.354050096237103, + "raw_amount": 9354050096237103000, + "raw_amount_hex_str": "0x81d04300ad6bc9a4" + }, + { + "id": "0xede11d3d5dd7d5454844f6f121cc106bf1144a45", + "chain": "eth", + "name": "$ LPBalancer.com", + "symbol": "LPBalancer.com", + "display_symbol": null, + "optimized_symbol": "LPBalancer.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1657981900, + "amount": 500, + "raw_amount": 500, + "raw_amount_hex_str": "0x1f4" + }, + { + "id": "0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1", + "chain": "eth", + "name": "Gyroscope ECLP wstETH/wETH", + "symbol": "ECLP-wstETH-wETH", + "display_symbol": null, + "optimized_symbol": "ECLP-wstETH-wETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1917.1851080090287, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693249103, + "amount": 0.00000260871853356, + "raw_amount": 2608718533560, + "raw_amount_hex_str": "0x25f63bdd3b8" + }, + { + "id": "0xf05e58fcea29ab4da01a495140b349f8410ba904", + "chain": "eth", + "name": "CLever CVX", + "symbol": "clevCVX", + "display_symbol": null, + "optimized_symbol": "clevCVX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf05e58fcea29ab4da01a495140b349f8410ba904/f1f9772044bbf5e8c3f5ab288d96e2ac.png", + "protocol_id": "clevercvx", + "price": 3.4716263416189492, + "price_24h_change": 0.001919125047534702, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1650535428, + "amount": 3.765972931308284, + "raw_amount": 3765972931308284000, + "raw_amount_hex_str": "0x34436c6d945de855" + }, + { + "id": "0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc", + "chain": "eth", + "name": "20WETH-80ALCX", + "symbol": "20WETH-80ALCX", + "display_symbol": null, + "optimized_symbol": "20WETH-80ALCX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 34.88580385819991, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677780875, + "amount": 51.78167596215289, + "raw_amount": 51781675962152894000, + "raw_amount_hex_str": "0x2ce9d77efbe81b37f" + }, + { + "id": "0xf17e65822b568b3903685a7c9f496cf7656cc6c2", + "chain": "eth", + "name": "Biconomy Token", + "symbol": "BICO", + "display_symbol": null, + "optimized_symbol": "BICO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf17e65822b568b3903685a7c9f496cf7656cc6c2/69060a56ebfc5a4cecd43b64c8910d22.png", + "protocol_id": "biconomy", + "price": 0.275122659719574, + "price_24h_change": 0.11456267448988001, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1633376291, + "amount": 2145.7681421030775, + "raw_amount": 2.1457681421030772e+21, + "raw_amount_hex_str": "0x745283d479d3d52ec4" + }, + { + "id": "0xf1f6004398e29437801257ecc2b0a852717430b7", + "chain": "eth", + "name": "50ASX-50WETH", + "symbol": "50ASX-50WETH", + "display_symbol": null, + "optimized_symbol": "50ASX-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 36.90359251448008, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691052947, + "amount": 0.021674328605956496, + "raw_amount": 21674328605956496, + "raw_amount_hex_str": "0x4d00afe14d9992" + }, + { + "id": "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", + "chain": "eth", + "name": "Rally", + "symbol": "RLY", + "display_symbol": null, + "optimized_symbol": "RLY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b/052a631e8e9ba5e59f9434548ea6f91c.png", + "protocol_id": "rally", + "price": 0.006207795959221199, + "price_24h_change": 0.029199652133861265, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1601929393, + "amount": 0.7120994357331588, + "raw_amount": 712099435733158800, + "raw_amount_hex_str": "0x9e1e2a9f7a18b85" + }, + { + "id": "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817", + "chain": "eth", + "name": "Wrapped NCG", + "symbol": "WNCG", + "display_symbol": null, + "optimized_symbol": "WNCG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf203ca1769ca8e9e8fe1da9d147db68b6c919817/5d3c7b19728c5855b7a91fe9ab0f4acf.png", + "protocol_id": "", + "price": 0.07637643853187948, + "price_24h_change": 0.028212447225687776, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628244716, + "amount": 0.015217136545103946, + "raw_amount": 15217136545103944, + "raw_amount_hex_str": "0x360fe7b2450049" + }, + { + "id": "0xf2051511b9b121394fa75b8f7d4e7424337af687", + "chain": "eth", + "name": "DAOhaus Token", + "symbol": "HAUS", + "display_symbol": null, + "optimized_symbol": "HAUS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf2051511b9b121394fa75b8f7d4e7424337af687/445ed9b4d899940d75305b98e2697f0a.png", + "protocol_id": "", + "price": 0.7158778585907956, + "price_24h_change": -0.01911063113528292, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599234880, + "amount": 267.64856679705207, + "raw_amount": 267648566797052100000, + "raw_amount_hex_str": "0xe825eb97064b3148d" + }, + { + "id": "0xf24d8651578a55b0c119b9910759a351a3458895", + "chain": "eth", + "name": "Stake DAO Balancer", + "symbol": "sdBal", + "display_symbol": null, + "optimized_symbol": "sdBal", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf24d8651578a55b0c119b9910759a351a3458895/e5049d9997377d22ca54fa8dc626342c.png", + "protocol_id": "stakedao", + "price": 11.086228361466972, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653567793, + "amount": 26.923987124682935, + "raw_amount": 26923987124682936000, + "raw_amount_hex_str": "0x175a537a3f7eac962" + }, + { + "id": "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80", + "chain": "eth", + "name": "Jelly Token", + "symbol": "JELLY", + "display_symbol": null, + "optimized_symbol": "JELLY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80/aff641efef043d373dc74d0a6a74ca02.png", + "protocol_id": "", + "price": 0.00005504116091567374, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635421158, + "amount": 18423.751965036692, + "raw_amount": 1.8423751965036694e+22, + "raw_amount_hex_str": "0x3e6c0eb9efabd134d6e" + }, + { + "id": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c", + "chain": "eth", + "name": "Enjin Coin", + "symbol": "ENJ", + "display_symbol": null, + "optimized_symbol": "ENJ", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c/5e91ff13592f1420dc3d25f0b1526ae7.png", + "protocol_id": "", + "price": 0.31992721761033077, + "price_24h_change": 0.03912193218274999, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1506906127, + "amount": 1489.6785814742284, + "raw_amount": 1.4896785814742284e+21, + "raw_amount_hex_str": "0x50c1717932072fde21" + }, + { + "id": "0xf656a566c9d3b2cb046481351a1179017530c6c9", + "chain": "eth", + "name": "heph10PoolDaiAura", + "symbol": "h10DaiAura", + "display_symbol": null, + "optimized_symbol": "h10DaiAura", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.180007876247907, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679754599, + "amount": 1.579e-15, + "raw_amount": 1579, + "raw_amount_hex_str": "0x62b" + }, + { + "id": "0xf65b5c5104c4fafd4b709d9d60a185eae063276c", + "chain": "eth", + "name": "Truebit", + "symbol": "TRU", + "display_symbol": null, + "optimized_symbol": "TRU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf65b5c5104c4fafd4b709d9d60a185eae063276c/c01f397719a7ef63a6754ee0f5f887b7.png", + "protocol_id": "", + "price": 0.17392884955374668, + "price_24h_change": 0.2392466376582226, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1618138342, + "amount": 4627.88937076259, + "raw_amount": 4.6278893707625906e+21, + "raw_amount_hex_str": "0xfae0dddf198e3d9fdd" + }, + { + "id": "0xf660870bd38d106e61f0d3539ed25b1320bc90e8", + "chain": "eth", + "name": "ApeWL.io (Otherside Beta)", + "symbol": "Otherside Beta Access (ApeWL.io)", + "display_symbol": null, + "optimized_symbol": "Otherside Beta Access (ApeWL.io)", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651990300, + "amount": 1, + "raw_amount": 1000000000000000000, + "raw_amount_hex_str": "0xde0b6b3a7640000" + }, + { + "id": "0xf7a826d47c8e02835d94fb0aa40f0cc9505cb134", + "chain": "eth", + "name": "Gyroscope ECLP wstETH/cbETH", + "symbol": "ECLP-wstETH-cbETH", + "display_symbol": null, + "optimized_symbol": "ECLP-wstETH-cbETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1916.145230618013, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693336211, + "amount": 0.000002411638760657, + "raw_amount": 2411638760657, + "raw_amount_hex_str": "0x23180df24d1" + }, + { + "id": "0xfd0205066521550d7d7ab19da8f72bb004b4c341", + "chain": "eth", + "name": "Liquidity Incentive Token", + "symbol": "LIT", + "display_symbol": null, + "optimized_symbol": "LIT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfd0205066521550d7d7ab19da8f72bb004b4c341/975226f93f2d8402ee4662af6e42223d.png", + "protocol_id": "bunni", + "price": 0.023737019007110196, + "price_24h_change": 0.024282107158103073, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1672973831, + "amount": 0.05540735299189571, + "raw_amount": 55407352991895710, + "raw_amount_hex_str": "0xc4d8b1a906d09e" + }, + { + "id": "0xfe0bb2ae94bf11de9773decb413b4a6a241cbcd0", + "chain": "eth", + "name": "# wbtc.gift", + "symbol": "Visit wbtc.gift to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit wbtc.gift to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697940239, + "amount": 0.7, + "raw_amount": 700000, + "raw_amount_hex_str": "0xaae60" + }, + { + "id": "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6", + "chain": "eth", + "name": "Synth sBTC", + "symbol": "sBTC", + "display_symbol": null, + "optimized_symbol": "sBTC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6/3e0d9a14a6f727b7bec8586c40d7b4c3.png", + "protocol_id": "", + "price": 37621.1, + "price_24h_change": 0.06263967569253147, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1569481945, + "amount": 0.004254948726251717, + "raw_amount": 4254948726251717, + "raw_amount_hex_str": "0xf1dda735da0c5" + }, + { + "id": "0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", + "chain": "eth", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0115279779933242, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1680683795, + "amount": 282.4012203434777, + "raw_amount": 282401220343477700000, + "raw_amount_hex_str": "0xf4f1aadad35cde825" + }, + { + "id": "0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462", + "chain": "eth", + "name": "pub.finance", + "symbol": "PINT", + "display_symbol": null, + "optimized_symbol": "PINT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462/47dba101f922e80f0aceac36a98db7ef.png", + "protocol_id": "", + "price": 0.14372061387445048, + "price_24h_change": 0.024261687193749156, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1604354259, + "amount": 12.988481226315663, + "raw_amount": 12988481226315663000, + "raw_amount_hex_str": "0xb4405adc0260075d" + }, + { + "id": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "chain": "eth", + "name": "Amp", + "symbol": "AMP", + "display_symbol": null, + "optimized_symbol": "AMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xff20817765cb7f73d4bde2e66e067e58d11095c2/c76dd38f00542547f74cd6a66a230287.png", + "protocol_id": "", + "price": 0.001931050197234181, + "price_24h_change": 0.04022584167769846, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1597105639, + "amount": 167.132070499232, + "raw_amount": 167132070499232000000, + "raw_amount_hex_str": "0x90f6c649d8a43de79" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-11-09-zkevm.json b/FeeSweep/2023-11-09-zkevm.json new file mode 100644 index 000000000..b0e58fdfe --- /dev/null +++ b/FeeSweep/2023-11-09-zkevm.json @@ -0,0 +1,502 @@ +[ + { + "id": "0x01e4464604ad0167d9dccda63ecd471b0ca0f0ef", + "chain": "pze", + "name": "50MATIC-50USDC", + "symbol": "50MATIC-50USDC", + "display_symbol": null, + "optimized_symbol": "50MATIC-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 0.92095315311275, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1688208426, + "amount": 0.00112479919618388, + "raw_amount": 1124799196183880, + "raw_amount_hex_str": "0x3feffb8883d48" + }, + { + "id": "0x1d0a8a31cdb04efac3153237526fb15cc65a2520", + "chain": "pze", + "name": "Balancer rETH Stable Pool", + "symbol": "B-rETH-STABLE", + "display_symbol": null, + "optimized_symbol": "B-rETH-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 1917.7762216878439, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686237030, + "amount": 2.0308070620811174, + "raw_amount": 2030807062081117200, + "raw_amount_hex_str": "0x1c2ee04366b31c0e" + }, + { + "id": "0x231dce3f4055cd5f2c415535db22fb35a1e876b1", + "chain": "pze", + "name": "50WETH-50MATIC", + "symbol": "50WETH-50MATIC", + "display_symbol": null, + "optimized_symbol": "50WETH-50MATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 39.74001648984038, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691480675, + "amount": 3.7e-17, + "raw_amount": 37, + "raw_amount_hex_str": "0x25" + }, + { + "id": "0x32b5d76f76dd68c676190ee98a9877587f9b3b22", + "chain": "pze", + "name": "50WETH-50MATIC", + "symbol": "50WETH-50MATIC", + "display_symbol": null, + "optimized_symbol": "50WETH-50MATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 39.483127696989094, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689852595, + "amount": 4e-18, + "raw_amount": 4, + "raw_amount_hex_str": "0x4" + }, + { + "id": "0x3cec7e4ce7d149735efd49773ecccb80cdff758e", + "chain": "pze", + "name": "50WETH-50wstETH", + "symbol": "50WETH-50wstETH", + "display_symbol": null, + "optimized_symbol": "50WETH-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 2044.6299525126135, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692416080, + "amount": 2.589118209e-9, + "raw_amount": 2589118209, + "raw_amount_hex_str": "0x9a52cf01" + }, + { + "id": "0x47eeb5e07b8db37f75f29422d90a2b729c8f3955", + "chain": "pze", + "name": "50USDT-50USDC", + "symbol": "50USDT-50USDC", + "display_symbol": null, + "optimized_symbol": "50USDT-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 1.0630752308625022, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687873364, + "amount": 25.57286154131606, + "raw_amount": 25572861541316060000, + "raw_amount_hex_str": "0x162e50e14bc6459f6" + }, + { + "id": "0x54725dc4fed400f12b43ca9bc24cc8b828e83f04", + "chain": "pze", + "name": "50MATIC-50USDC", + "symbol": "50MATIC-50USDC", + "display_symbol": null, + "optimized_symbol": "50MATIC-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 0.9101132616844936, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692155701, + "amount": 0.000114583964069177, + "raw_amount": 114583964069177, + "raw_amount_hex_str": "0x6836a879ad39" + }, + { + "id": "0x54bb71bcd1c3d38eea3ca2a460bc3cb4244595b6", + "chain": "pze", + "name": "50WETH-50wstETH", + "symbol": "50WETH-50wstETH", + "display_symbol": null, + "optimized_symbol": "50WETH-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 2044.634405449899, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692415156, + "amount": 3.544912037e-9, + "raw_amount": 3544912037, + "raw_amount_hex_str": "0xd34b10a5" + }, + { + "id": "0x5ace7c1549a21e5376145a52057bc6808381a902", + "chain": "pze", + "name": "50QUICK-50USDC", + "symbol": "50QUICK-50USDC", + "display_symbol": null, + "optimized_symbol": "50QUICK-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 500122.0877170467, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691934878, + "amount": 8.6e-17, + "raw_amount": 86, + "raw_amount_hex_str": "0x56" + }, + { + "id": "0x5b125477cd532b892c3a6b206014c6c9518a0afe", + "chain": "pze", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 44.402159477379726, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686941281, + "amount": 0.5627650313148068, + "raw_amount": 562765031314806850, + "raw_amount_hex_str": "0x7cf57d07787d837" + }, + { + "id": "0x65da876a95cd5b6a5880710628c436409b1b29fa", + "chain": "pze", + "name": "Balancer wstETH/ankrETH", + "symbol": "wstETH/ankrETH ", + "display_symbol": null, + "optimized_symbol": "wstETH/ankrETH ", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 1902.901262535047, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698760480, + "amount": 0.000003089446248929, + "raw_amount": 3089446248929, + "raw_amount_hex_str": "0x2cf5158a1e1" + }, + { + "id": "0x68a69c596b3839023c0e08d09682314f582314e5", + "chain": "pze", + "name": "50wstETH-BPT-50-bboUSD", + "symbol": "50wstETH-BPT-50-bboUSD", + "display_symbol": null, + "optimized_symbol": "50wstETH-BPT-50-bboUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 44.36698142926355, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686238251, + "amount": 0.26032293956015035, + "raw_amount": 260322939560150370, + "raw_amount_hex_str": "0x39cda55935e4557" + }, + { + "id": "0x6f34a44fce1506352a171232163e7716dd073ade", + "chain": "pze", + "name": "Balancer rETH/bboUSD", + "symbol": "B-rETH-bboUSD", + "display_symbol": null, + "optimized_symbol": "B-rETH-bboUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 45.93546102126422, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686602033, + "amount": 6.1809012113653505, + "raw_amount": 6180901211365350000, + "raw_amount_hex_str": "0x55c6f8e767369d33" + }, + { + "id": "0x7385feb96fa203e35527322ca233271834306d60", + "chain": "pze", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 502325.051355489, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691519389, + "amount": 1.3e-17, + "raw_amount": 13, + "raw_amount_hex_str": "0xd" + }, + { + "id": "0x9beddc42719c25d7dfc38017b3685044f83225cf", + "chain": "pze", + "name": "50USDT-50WETH", + "symbol": "50USDT-50WETH", + "display_symbol": null, + "optimized_symbol": "50USDT-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 502627.51566229877, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691934793, + "amount": 1.3e-17, + "raw_amount": 13, + "raw_amount_hex_str": "0xd" + }, + { + "id": "0x9e2d87f904862671eb49cb358e74284762cc9f42", + "chain": "pze", + "name": "Balancer wstETH/bboUSD", + "symbol": "B-wstETH/bboUSD", + "display_symbol": null, + "optimized_symbol": "B-wstETH/bboUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 46.94494186897562, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686589234, + "amount": 1.12e-16, + "raw_amount": 112, + "raw_amount_hex_str": "0x70" + }, + { + "id": "0xa4475aa0a6971e3cc82de08e9ce432ecc8a562ad", + "chain": "pze", + "name": "50BAL-50WETH", + "symbol": "50BAL-50WETH", + "display_symbol": null, + "optimized_symbol": "50BAL-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 82.51202435223826, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690201140, + "amount": 0.36796235609066064, + "raw_amount": 367962356090660700, + "raw_amount_hex_str": "0x51b43d0357fe722" + }, + { + "id": "0xb956e7737ebcdabdfe4b2b8de7156026916f6e0b", + "chain": "pze", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 502596.46471739747, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691540670, + "amount": 2.1e-17, + "raw_amount": 21, + "raw_amount_hex_str": "0x15" + }, + { + "id": "0xc951aebfa361e9d0063355b9e68f5fa4599aa3d1", + "chain": "pze", + "name": "33WETH-33MATIC-33USDC", + "symbol": "33WETH-33MATIC-33USDC", + "display_symbol": null, + "optimized_symbol": "33WETH-33MATIC-33USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 12.578890266727967, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686767189, + "amount": 7.176302798196936, + "raw_amount": 7176302798196936000, + "raw_amount_hex_str": "0x6397595f8f2b8cdf" + }, + { + "id": "0xca4d6fff7e481a22273b02b6df5563dc36846cdc", + "chain": "pze", + "name": "50USDC-50DAI", + "symbol": "50USDC-50DAI", + "display_symbol": null, + "optimized_symbol": "50USDC-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 500274.0615620908, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687430898, + "amount": 4e-18, + "raw_amount": 4, + "raw_amount_hex_str": "0x4" + }, + { + "id": "0xdf725fde6e89981fb30d9bf999841ac2c160b512", + "chain": "pze", + "name": "Balancer wstETH/rETH Stable Pool", + "symbol": "B-wstETH/rETH-STABLE", + "display_symbol": null, + "optimized_symbol": "B-wstETH/rETH-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 1929.8743414916912, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686237250, + "amount": 3.4992894799385152, + "raw_amount": 3499289479938515000, + "raw_amount_hex_str": "0x308ff93df1ff20b7" + }, + { + "id": "0xe1f2c039a68a216de6dd427be6c60decf405762a", + "chain": "pze", + "name": "Balancer wstETH Stable Pool", + "symbol": "B-wstETH-STABLE", + "display_symbol": null, + "optimized_symbol": "B-wstETH-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 1920.990047976445, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686236867, + "amount": 3.9509946319114873, + "raw_amount": 3950994631911487500, + "raw_amount_hex_str": "0x36d4c0af388f37ca" + }, + { + "id": "0xe274c9deb6ed34cfe4130f8d0a8a948dea5bb286", + "chain": "pze", + "name": "Balancer 0vix Boosted StablePool", + "symbol": "bb-o-USD", + "display_symbol": null, + "optimized_symbol": "bb-o-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 1.0053977770959428, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686235239, + "amount": 3.0210545443915797, + "raw_amount": 3021054544391579600, + "raw_amount_hex_str": "0x29ecf11a158a28eb" + }, + { + "id": "0xf74d0c533012e372a465712b49a26199a1b0714c", + "chain": "pze", + "name": "WETH-WBTC", + "symbol": "WETH-WBTC", + "display_symbol": null, + "optimized_symbol": "WETH-WBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 8438.187154309111, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691764507, + "amount": 0.000049938827265966, + "raw_amount": 49938827265966, + "raw_amount_hex_str": "0x2d6b4a0f47ae" + }, + { + "id": "0xfa2ab0d6d2e1cfaea03d4967d07adbd0200f156b", + "chain": "pze", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "pze_balancer2", + "price": 502035.7281266178, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691460633, + "amount": 1.2e-17, + "raw_amount": 12, + "raw_amount_hex_str": "0xc" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-11-15-avalanche.json b/FeeSweep/2023-11-15-avalanche.json new file mode 100644 index 000000000..f5aac958d --- /dev/null +++ b/FeeSweep/2023-11-15-avalanche.json @@ -0,0 +1,442 @@ +[ + { + "id": "0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa", + "chain": "avax", + "name": "Balancer Boosted ggAVAX-WAVAX", + "symbol": "ggAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "ggAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 20.722875367450765, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689850438, + "amount": 0.01520163301166129, + "raw_amount": 15201633011661292, + "raw_amount_hex_str": "0x3601cdffaa79eb" + }, + { + "id": "0x3396cca90c9335565ecdbae3a260dafb13a7959e", + "chain": "avax", + "name": "80BETS/20sAVAX Pool Token", + "symbol": "80BETS/20sAVAX", + "display_symbol": null, + "optimized_symbol": "80BETS/20sAVAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.0029315195484010906, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690622794, + "amount": 23934.675590044662, + "raw_amount": 2.393467559004466e+22, + "raw_amount_hex_str": "0x51180595dcca90fbe41" + }, + { + "id": "0x3441a6f48f0f5a1ada460885df5b461deb2ee494", + "chain": "avax", + "name": "50BTC.b-50USDC", + "symbol": "50BTC.b-50USDC", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 187563189.9901956, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694864473, + "amount": 6.5e-17, + "raw_amount": 65, + "raw_amount_hex_str": "0x41" + }, + { + "id": "0x3f1a2c4a3a751f6626bd90ef16e104f0772d4d6b", + "chain": "avax", + "name": "BTC.b/Boosted Aave V3 USD", + "symbol": "50BTC.b-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 197.4537188205862, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691145314, + "amount": 0.7540171358527642, + "raw_amount": 754017135852764200, + "raw_amount_hex_str": "0xa76ce97110fbc1c" + }, + { + "id": "0x3fc26a34594ec8adfd9431ff3b9e8fce00bedd19", + "chain": "avax", + "name": "50USDC-50EUROC", + "symbol": "50USDC-50EUROC", + "display_symbol": null, + "optimized_symbol": "50USDC-50EUROC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1040850.6267186799, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699210455, + "amount": 7.69e-16, + "raw_amount": 769, + "raw_amount_hex_str": "0x301" + }, + { + "id": "0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc", + "chain": "avax", + "name": "BPT-EUROC-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.9724383245307626, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689325569, + "amount": 421.86623627058634, + "raw_amount": 421866236270586360000, + "raw_amount_hex_str": "0x16de91f2beb74fa8a9" + }, + { + "id": "0x66bb9d104c55861feb3ec3559433f01f6373c966", + "chain": "avax", + "name": "BPT-VCHF-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.0121667765397384, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697684453, + "amount": 196.115515253416, + "raw_amount": 196115515253416000000, + "raw_amount_hex_str": "0xaa1a6460ef6900ccc" + }, + { + "id": "0x670734d704eb7ef424d75321670f921fbf42e9cf", + "chain": "avax", + "name": "Balancer sAVAX-ankrAVAX", + "symbol": "sAVAX-ankrAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-ankrAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 20.842094222056673, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689851390, + "amount": 22.742043271573152, + "raw_amount": 22742043271573150000, + "raw_amount_hex_str": "0x13b9bf7dcecae24b5" + }, + { + "id": "0x721bd1900aeabc29009b08e44be37529f518f2c2", + "chain": "avax", + "name": "33VCHF-33sAVAX-33VEUR", + "symbol": "33VCHF-33sAVAX-33VEUR", + "display_symbol": null, + "optimized_symbol": "33VCHF-33sAVAX-33VEUR", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 3.041628738564998, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696338373, + "amount": 73.16825245554485, + "raw_amount": 73168252455544850000, + "raw_amount_hex_str": "0x3f769d9f240da8b7d" + }, + { + "id": "0x90065d5e455e6b26a4eaf630c26289f6b6735647", + "chain": "avax", + "name": "Balancer QI-GGP-USDC", + "symbol": "BPT-QI-GGP-USDC", + "display_symbol": null, + "optimized_symbol": "BPT-QI-GGP-USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.3051070974294061, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690903637, + "amount": 0.24182218235508435, + "raw_amount": 241822182355084350, + "raw_amount_hex_str": "0x35b1ffe5e15a43d" + }, + { + "id": "0x96518f83d66bdc6a5812f01c54f8e022f6796399", + "chain": "avax", + "name": "Balancer 50BTC.b 50USD", + "symbol": "50BTC.b-50USD-BPT", + "display_symbol": null, + "optimized_symbol": "50BTC.b-50USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 193.89535827448086, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038848, + "amount": 0.000199656222727216, + "raw_amount": 199656222727216, + "raw_amount_hex_str": "0xb596163b9c30" + }, + { + "id": "0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9", + "chain": "avax", + "name": "Balancer yyAVAX-WAVAX Stable Pool", + "symbol": "yyAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "yyAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 20.650949522817985, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038616, + "amount": 35.16950341111793, + "raw_amount": 35169503411117933000, + "raw_amount_hex_str": "0x1e8132d043292c20e" + }, + { + "id": "0xa154009870e9b6431305f19b09f9cfd7284d4e7a", + "chain": "avax", + "name": "Balancer Boosted sAVAX-WAVAX", + "symbol": "sAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 20.827455822979836, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689792870, + "amount": 0.03296823166436684, + "raw_amount": 32968231664366840, + "raw_amount_hex_str": "0x75206e993a34f7" + }, + { + "id": "0xa1d14d922a575232066520eda11e27760946c991", + "chain": "avax", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.0066039858516036, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689792622, + "amount": 0.11906646503784356, + "raw_amount": 119066465037843570, + "raw_amount_hex_str": "0x1a70251b13dfc6c" + }, + { + "id": "0xab567c27450e3fa1b4ee4e67ca7d1003c49e7ea8", + "chain": "avax", + "name": "93BTC.b-7USDC", + "symbol": "93BTC.b-7USDC", + "display_symbol": null, + "optimized_symbol": "93BTC.b-7USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 11538.21338063286, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697802381, + "amount": 0.000012191219079723, + "raw_amount": 12191219079723, + "raw_amount_hex_str": "0xb167d485a2b" + }, + { + "id": "0xad0e5e0778cac28f1ff459602b31351871b5754a", + "chain": "avax", + "name": "BPT-VEUR-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.0236553170192118, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696930136, + "amount": 214.20654071821818, + "raw_amount": 214206540718218180000, + "raw_amount_hex_str": "0xb9cb681de4aa484ca" + }, + { + "id": "0xb06fdbd2941d2f42d60accee85086198ac729236", + "chain": "avax", + "name": "80HATCHY-20WAVAX", + "symbol": "80HATCHY-20WAVAX", + "display_symbol": null, + "optimized_symbol": "80HATCHY-20WAVAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 0.010950943066253889, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691028537, + "amount": 73.84254555069829, + "raw_amount": 73842545550698280000, + "raw_amount_hex_str": "0x400c56bf19bf910f6" + }, + { + "id": "0xb10968b6ca2ea1c25d392a9a990559ed3f686861", + "chain": "avax", + "name": "80WAVAX-20USDC", + "symbol": "80WAVAX-20USDC", + "display_symbol": null, + "optimized_symbol": "80WAVAX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 9.283867422482459, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696713768, + "amount": 0.17870954430892605, + "raw_amount": 178709544308926050, + "raw_amount_hex_str": "0x27ae7623a816662" + }, + { + "id": "0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c96", + "chain": "avax", + "name": "Balancer USDC-USDT Stable Pool", + "symbol": "USDC-USDT-BPT", + "display_symbol": null, + "optimized_symbol": "USDC-USDT-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 1.0014525848373212, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038450, + "amount": 1028.121032130906, + "raw_amount": 1.0281210321309062e+21, + "raw_amount_hex_str": "0x37bc0ba7811ea17491" + }, + { + "id": "0xc13546b97b9b1b15372368dc06529d7191081f5b", + "chain": "avax", + "name": "Balancer ggAVAX-WAVAX Stable Pool", + "symbol": "ggAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "ggAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 20.614356333043098, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038316, + "amount": 65.61485294131617, + "raw_amount": 65614852941316180000, + "raw_amount_hex_str": "0x38e96c91b94a5392d" + }, + { + "id": "0xece571847897fd61e764d455dc15cf1cd9de8d6f", + "chain": "avax", + "name": "Balancer Boosted yyAVAX-WAVAX", + "symbol": "yyAVAX-bb-a-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "yyAVAX-bb-a-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 20.787314654788588, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689850089, + "amount": 0.007602434221824163, + "raw_amount": 7602434221824163, + "raw_amount_hex_str": "0x1b025fa73858a3" + }, + { + "id": "0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc", + "chain": "avax", + "name": "Balancer sAVAX-WAVAX Stable Pool", + "symbol": "sAVAX-WAVAX-BPT", + "display_symbol": null, + "optimized_symbol": "sAVAX-WAVAX-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "avax_balancer2", + "price": 20.722067829556806, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692038154, + "amount": 204.2336917078458, + "raw_amount": 204233691707845770000, + "raw_amount_hex_str": "0xb124fd48824ca3124" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-11-15-base.json b/FeeSweep/2023-11-15-base.json new file mode 100644 index 000000000..b0513e5f9 --- /dev/null +++ b/FeeSweep/2023-11-15-base.json @@ -0,0 +1,1342 @@ +[ + { + "id": "0x002a1eb0804504dd5162757bc309fd34784ae7e0", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.17369742569156, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698392391, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0x012e776cc3ed4c5adea3eda8677e82343e4de396", + "chain": "base", + "name": "Balancer 50WETH-50USDbC Pool", + "symbol": "50WETH-50USDbC BPT", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 48.46308383509225, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691431253, + "amount": 0.604486310936122, + "raw_amount": 604486310936122000, + "raw_amount_hex_str": "0x8639118daef1289" + }, + { + "id": "0x029a77e8d39e261b2a1bdf9726201ce87305ef69", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 502237.17241100833, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697522195, + "amount": 1.3e-17, + "raw_amount": 13, + "raw_amount_hex_str": "0xd" + }, + { + "id": "0x031e96f4cebfef8829c2dabf3e45bc4886b77186", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.116318608132296, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699439533, + "amount": 1.7e-17, + "raw_amount": 17, + "raw_amount_hex_str": "0x11" + }, + { + "id": "0x036d68e4e0005da4ef1c9ebd53b948d2c083495e", + "chain": "base", + "name": " 50tBTC-50USD", + "symbol": " 50tBTC-50USD", + "display_symbol": null, + "optimized_symbol": " 50tBTC-50USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 192.21359957175596, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691577137, + "amount": 0.019455649030178004, + "raw_amount": 19455649030178010, + "raw_amount_hex_str": "0x451ecf495184d6" + }, + { + "id": "0x07d72005b9e2b0e4d9f2ee903de59a43439e15e6", + "chain": "base", + "name": "50WETH-50cbXEN", + "symbol": "50WETH-50cbXEN", + "display_symbol": null, + "optimized_symbol": "50WETH-50cbXEN", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.0006188366767573377, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693829071, + "amount": 22.335699875887013, + "raw_amount": 22335699875887014000, + "raw_amount_hex_str": "0x135f858b28ffb615e" + }, + { + "id": "0x08ecc11058efd2acfd8d351ecda17bf46b5dea35", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.1422800450209, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698925075, + "amount": 9e-18, + "raw_amount": 9, + "raw_amount_hex_str": "0x9" + }, + { + "id": "0x096fa90589c05a12b7c4356f9c908c650894e1e0", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501539.87567341316, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695119667, + "amount": 1.6e-17, + "raw_amount": 16, + "raw_amount_hex_str": "0x10" + }, + { + "id": "0x0be4dc963db6ca066ff147069b9c437da683608b", + "chain": "base", + "name": "It is not ogre until it is OGRE", + "symbol": "veOGRE", + "display_symbol": null, + "optimized_symbol": "veOGRE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 829.0072054644621, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691168451, + "amount": 0.000003326074467418, + "raw_amount": 3326074467418, + "raw_amount_hex_str": "0x306697cb45a" + }, + { + "id": "0x0c659734f1eef9c63b7ebdf78a164cdd745586db", + "chain": "base", + "name": "Balancer USDC/USDbC/axlUSDC", + "symbol": "USDC/USDbC/axlUSDC", + "display_symbol": null, + "optimized_symbol": "USDC/USDbC/axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0028484760692804, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694032789, + "amount": 121.22063799517694, + "raw_amount": 121220637995176940000, + "raw_amount_hex_str": "0x6924638008cbddbea" + }, + { + "id": "0x0d9e306cd13ab76588eb2363c2c69d7ccf32a7fe", + "chain": "base", + "name": "40WETH-60USDbC", + "symbol": "40WETH-60USDbC", + "display_symbol": null, + "optimized_symbol": "40WETH-60USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500506.7317354506, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693506859, + "amount": 7.3e-17, + "raw_amount": 73, + "raw_amount_hex_str": "0x49" + }, + { + "id": "0x109fb663fbe47bcef8cf1d74759ebb869e390105", + "chain": "base", + "name": "1WETH-99USDbC", + "symbol": "1WETH-99USDbC", + "display_symbol": null, + "optimized_symbol": "1WETH-99USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.5709450345771248, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692905203, + "amount": 0.000542238392422574, + "raw_amount": 542238392422574, + "raw_amount_hex_str": "0x1ed29b6c390ae" + }, + { + "id": "0x17e7d59bb209a3215ccc25fffef7161498b7c10d", + "chain": "base", + "name": "1WETH-99GOLD", + "symbol": "1WETH-99GOLD", + "display_symbol": null, + "optimized_symbol": "1WETH-99GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 6.589812847645862, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691862139, + "amount": 12.767089431717364, + "raw_amount": 12767089431717364000, + "raw_amount_hex_str": "0xb12dd031f9284113" + }, + { + "id": "0x18423174a94aa1856ed43b76214fa5a94534ceb0", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.26966009382169, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694515167, + "amount": 9.67147149041e-7, + "raw_amount": 967147149041, + "raw_amount_hex_str": "0xe12e7656f1" + }, + { + "id": "0x18f150c43598cd822d39711c55bd90407a8b8ad7", + "chain": "base", + "name": "90BPT-50STABAL3-50WETH-10ONE", + "symbol": "90BPT-50STABAL3-50WETH-10ONE", + "display_symbol": null, + "optimized_symbol": "90BPT-50STABAL3-50WETH-10ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 20.822871474967684, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693173391, + "amount": 0.004275312595321334, + "raw_amount": 4275312595321334, + "raw_amount_hex_str": "0xf305fc88c41f6" + }, + { + "id": "0x2423d6e341270bcd5add138bc3d4058857d5455f", + "chain": "base", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 47.53167035482807, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691065435, + "amount": 0.03034810447663124, + "raw_amount": 30348104476631240, + "raw_amount_hex_str": "0x6bd170b2efa0c7" + }, + { + "id": "0x26987d07edb3bbff6c20642aa63c2fddf29aecab", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.25564231147786, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697042071, + "amount": 1.6e-17, + "raw_amount": 16, + "raw_amount_hex_str": "0x10" + }, + { + "id": "0x2db50a0e0310723ef0c2a165cb9a9f80d772ba2f", + "chain": "base", + "name": "Balancer 50 STABAL3 50 WETH", + "symbol": "BPT-50STABAL3-50WETH", + "display_symbol": null, + "optimized_symbol": "BPT-50STABAL3-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 46.08960563167868, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691004073, + "amount": 1.1284077635952636, + "raw_amount": 1128407763595263500, + "raw_amount_hex_str": "0xfa8e8e1e6e37e27" + }, + { + "id": "0x2e756db1c5370874bef3e012d3606e6e0e685f5a", + "chain": "base", + "name": "axlUSD-(USDbC-DAI) Stableswap", + "symbol": "axlUSD-USDbC-DAI", + "display_symbol": null, + "optimized_symbol": "axlUSD-USDbC-DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0421833414207773, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691339439, + "amount": 0.000054744309356949, + "raw_amount": 54744309356949, + "raw_amount_hex_str": "0x31ca271cd995" + }, + { + "id": "0x2f5506155e08ca0766d963d5cb51137b8f8efb51", + "chain": "base", + "name": "33BALD-33WETH-33GOLD", + "symbol": "33BALD-33WETH-33GOLD", + "display_symbol": null, + "optimized_symbol": "33BALD-33WETH-33GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 5.142019798297595, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696477501, + "amount": 0.000915756918586558, + "raw_amount": 915756918586558, + "raw_amount_hex_str": "0x340e045d53cbe" + }, + { + "id": "0x31b974f089a43e183859c895d503bdce491f22cc", + "chain": "base", + "name": "50BAL-50USDbC", + "symbol": "50BAL-50USDbC", + "display_symbol": null, + "optimized_symbol": "50BAL-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.5821911611317256, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693828761, + "amount": 1.9912674424e-7, + "raw_amount": 199126744240, + "raw_amount_hex_str": "0x2e5ce0fcb0" + }, + { + "id": "0x3f3e72417d016687f02eb369025f33b60db585cd", + "chain": "base", + "name": "50WETH-50OGRE", + "symbol": "50WETH-50OGRE", + "display_symbol": null, + "optimized_symbol": "50WETH-50OGRE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2502.5348355017018, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692034807, + "amount": 0.000016212118593652, + "raw_amount": 16212118593652, + "raw_amount_hex_str": "0xebead91e074" + }, + { + "id": "0x4200000000000000000000000000000000000006", + "chain": "base", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/eth/d61441782d4a08a7479d54aea211679e.png", + "protocol_id": "base_nether", + "price": 2041.46, + "price_24h_change": 0.03344655991981327, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": null, + "amount": 7.014146518e-9, + "raw_amount": 7014146518, + "raw_amount_hex_str": "0x1a21361d6" + }, + { + "id": "0x433f09ca08623e48bac7128b7105de678e37d988", + "chain": "base", + "name": "Balancer 50GOLD/25WETH/25USDC", + "symbol": "50GOLD/25WETH/25USDC", + "display_symbol": null, + "optimized_symbol": "50GOLD/25WETH/25USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 22.003767109779826, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694033265, + "amount": 28.284923342783337, + "raw_amount": 28284923342783336000, + "raw_amount_hex_str": "0x188883beb99c14b65" + }, + { + "id": "0x4c1050754761c613799302f05201cc8a60c8cce0", + "chain": "base", + "name": "50WETH-50DAI", + "symbol": "50WETH-50DAI", + "display_symbol": null, + "optimized_symbol": "50WETH-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.41123344635281, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691715283, + "amount": 1.2e-17, + "raw_amount": 12, + "raw_amount_hex_str": "0xc" + }, + { + "id": "0x4e4b7d0ad9c88c878a29735dbc5beccbd1966a79", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.34128663979881, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691228009, + "amount": 0.000002795480843536, + "raw_amount": 2795480843536, + "raw_amount_hex_str": "0x28adfa48510" + }, + { + "id": "0x52e281318fed4efffb8e46c0847a8f9b71a461a8", + "chain": "base", + "name": " 50tBTC-50WETH", + "symbol": " 50tBTC-50WETH", + "display_symbol": null, + "optimized_symbol": " 50tBTC-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 8619.568201333757, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691576417, + "amount": 0.000553609705251311, + "raw_amount": 553609705251311, + "raw_amount_hex_str": "0x1f7814dd361ef" + }, + { + "id": "0x58f2110b61f97fd6b9200b038d92f17c722a5a33", + "chain": "base", + "name": "Balancer axlBAL/BAL Stable", + "symbol": "axlBAL/BAL", + "display_symbol": null, + "optimized_symbol": "axlBAL/BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.147289762801535, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694722607, + "amount": 1.2262999113384636, + "raw_amount": 1226299911338463500, + "raw_amount_hex_str": "0x1104b145ab6c1137" + }, + { + "id": "0x5c2142dc10f0c467eb6cde0a8157b7aa393d4276", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.18609331025917, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698213099, + "amount": 3e-18, + "raw_amount": 3, + "raw_amount_hex_str": "0x3" + }, + { + "id": "0x65e8e75899f683c8e2e73c77d6c5c63075f296cd", + "chain": "base", + "name": "50WETH-50SUS", + "symbol": "50WETH-50SUS", + "display_symbol": null, + "optimized_symbol": "50WETH-50SUS", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.20861489764954455, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692545799, + "amount": 13.142999718650664, + "raw_amount": 13142999718650665000, + "raw_amount_hex_str": "0xb665509c093b5740" + }, + { + "id": "0x668c6196e539391e0020a3dee3ac99b74984bcce", + "chain": "base", + "name": "50BAL-50WETH", + "symbol": "50BAL-50WETH", + "display_symbol": null, + "optimized_symbol": "50BAL-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 91.50569566622596, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695891635, + "amount": 0.000019036178358475, + "raw_amount": 19036178358475, + "raw_amount_hex_str": "0x115034a620cb" + }, + { + "id": "0x6b1baa0a046c9ebb7da8668b66e9282a896e1edb", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.35522448320978, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698437601, + "amount": 0.27123713329152543, + "raw_amount": 271237133291525440, + "raw_amount_hex_str": "0x3c3a0bc53bc9547" + }, + { + "id": "0x6db9ad76db82f980375249926658deae729c06c9", + "chain": "base", + "name": "50WETH-50USDC", + "symbol": "50WETH-50USDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 508259.36797274515, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697041429, + "amount": 1.43e-16, + "raw_amount": 143, + "raw_amount_hex_str": "0x8f" + }, + { + "id": "0x6fbfcf88db1aada31f34215b2a1df7fafb4883e9", + "chain": "base", + "name": "Balancer DAI-USDbC Stable Pool", + "symbol": "BPT-stabal3", + "display_symbol": null, + "optimized_symbol": "BPT-stabal3", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0067671854848308, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691003665, + "amount": 50.80062958060717, + "raw_amount": 50800629580607180000, + "raw_amount_hex_str": "0x2c1001773464ab98f" + }, + { + "id": "0x78380eff80f1381b29702c0f87da10bd7d7cec97", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.15493347632727, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696939573, + "amount": 0.000057115831262269, + "raw_amount": 57115831262269, + "raw_amount_hex_str": "0x33f250d55c3d" + }, + { + "id": "0x7bd499100daee002c8df900d831a3dc0c2c91040", + "chain": "base", + "name": "85BPT-stabal3-15ONE", + "symbol": "85BPT-stabal3-15ONE", + "display_symbol": null, + "optimized_symbol": "85BPT-stabal3-15ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.7111840723208456, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693090007, + "amount": 0.016822103739641166, + "raw_amount": 16822103739641164, + "raw_amount_hex_str": "0x3bc39d3dc6ad4c" + }, + { + "id": "0x868f0efc81a6c1df16298dcc82f7926b9099946b", + "chain": "base", + "name": "50BALD/50WETH", + "symbol": "50BALD/50WETH", + "display_symbol": null, + "optimized_symbol": "50BALD/50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.5839955078987122, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690926435, + "amount": 0.8989946763155193, + "raw_amount": 898994676315519400, + "raw_amount_hex_str": "0xc79dee520c0f95d" + }, + { + "id": "0x8c2062ec8d477366c749982e3703371a7ae1e665", + "chain": "base", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1040.5399646840212, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691723213, + "amount": 0.000013817634899761, + "raw_amount": 13817634899761, + "raw_amount_hex_str": "0xc912b384731" + }, + { + "id": "0x942856f463e5960cdce798a8380f20380569b5de", + "chain": "base", + "name": "50WETH-50axlUSDC", + "symbol": "50WETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 502540.61607243994, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692627053, + "amount": 6e-18, + "raw_amount": 6, + "raw_amount_hex_str": "0x6" + }, + { + "id": "0x9544eb53f98098c6a885a7a4cd014d7a4a03aa63", + "chain": "base", + "name": "80GOLD-20WETH", + "symbol": "80GOLD-20WETH", + "display_symbol": null, + "optimized_symbol": "80GOLD-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 27.47013937253227, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696184983, + "amount": 0.05348919387134664, + "raw_amount": 53489193871346640, + "raw_amount_hex_str": "0xbe082370060bce" + }, + { + "id": "0x990a0f03c3ee397cafda61cad277de18280751fd", + "chain": "base", + "name": "50WETH-50TAG", + "symbol": "50WETH-50TAG", + "display_symbol": null, + "optimized_symbol": "50WETH-50TAG", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 5.476852178213143, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699425967, + "amount": 145.392001085901, + "raw_amount": 145392001085901000000, + "raw_amount_hex_str": "0x7e1b826aaf4564f25" + }, + { + "id": "0xa0aa5caffc32a2fe3bdbebaf37e2c75d0dc6d1ab", + "chain": "base", + "name": "50BAL-50DAI", + "symbol": "50BAL-50DAI", + "display_symbol": null, + "optimized_symbol": "50BAL-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2.000224350435093, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694340063, + "amount": 0.003807170695221056, + "raw_amount": 3807170695221056, + "raw_amount_hex_str": "0xd869a00e34f40" + }, + { + "id": "0xa1d5264a2d3e2652756993c29729e092ca91d0d4", + "chain": "base", + "name": "40cbETH-40WETH-20rETH", + "symbol": "40cbETH-40WETH-20rETH", + "display_symbol": null, + "optimized_symbol": "40cbETH-40WETH-20rETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2023.6274196618683, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699581807, + "amount": 0.000278591033203253, + "raw_amount": 278591033203253, + "raw_amount_hex_str": "0xfd6087925a35" + }, + { + "id": "0xa30ad556d10c829a67f41f60d41afdd4efa9286c", + "chain": "base", + "name": "SIS-FOOB-ICE-SOLAR-WETH Index", + "symbol": "Friend Tech Index", + "display_symbol": null, + "optimized_symbol": "Friend Tech Index", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 38.96598050760969, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692492397, + "amount": 2.2490899336915793, + "raw_amount": 2249089933691579100, + "raw_amount_hex_str": "0x1f365f60e597eb33" + }, + { + "id": "0xa892be6ee527f4fb8b3b60486a53c0627cb1d27e", + "chain": "base", + "name": "50WETH-50LINU", + "symbol": "50WETH-50LINU", + "display_symbol": null, + "optimized_symbol": "50WETH-50LINU", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.011878329582969707, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691423711, + "amount": 262.49521314888716, + "raw_amount": 262495213148887150000, + "raw_amount_hex_str": "0xe3ada559983dd7c74" + }, + { + "id": "0xb1b1155337d19eb0ef9c75aa88aeb4e531440508", + "chain": "base", + "name": "50WETH-50Gekko", + "symbol": "50WETH-50Gekko", + "display_symbol": null, + "optimized_symbol": "50WETH-50Gekko", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 23.915477626212006, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693789333, + "amount": 0.04278591155799549, + "raw_amount": 42785911557995490, + "raw_amount_hex_str": "0x98018f53ce3be2" + }, + { + "id": "0xb301f96097f1ab4f189f04a4662c751c822ef38f", + "chain": "base", + "name": "50DAI-50USDbC", + "symbol": "50DAI-50USDbC", + "display_symbol": null, + "optimized_symbol": "50DAI-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.9999750833354478, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697046577, + "amount": 8.0028e-14, + "raw_amount": 80028, + "raw_amount_hex_str": "0x1389c" + }, + { + "id": "0xb328b50f1f7d97ee8ea391ab5096dd7657555f49", + "chain": "base", + "name": "Balancer GOLD/BAL/USDC", + "symbol": "GOLD/BAL/USDC", + "display_symbol": null, + "optimized_symbol": "GOLD/BAL/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.642051444479267, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694033753, + "amount": 144.4795699799845, + "raw_amount": 144479569979984500000, + "raw_amount_hex_str": "0x7d50e8b69462aa6fa" + }, + { + "id": "0xc561540c16d49d0bfc69c99f9fc66145b1d5ddbd", + "chain": "base", + "name": "axlUSD-(USDbC-DAI) Stableswap", + "symbol": "axlUSD-USDbC-DAI", + "display_symbol": null, + "optimized_symbol": "axlUSD-USDbC-DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500781.84557894134, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691342703, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0xc69793563a8f0a2c5b25bcfb8661de50da8eae10", + "chain": "base", + "name": "Balancer STG/USDbC Pool", + "symbol": "STG-USDbC-BPT", + "display_symbol": null, + "optimized_symbol": "STG-USDbC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.7604895175067943, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691688123, + "amount": 2.836888676202685, + "raw_amount": 2836888676202685000, + "raw_amount_hex_str": "0x275ea7387463a1d6" + }, + { + "id": "0xc771c1a5905420daec317b154eb13e4198ba97d0", + "chain": "base", + "name": "Balancer rETH-WETH Stable Pool", + "symbol": "rETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "rETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2041.5937907200864, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692107167, + "amount": 0.875083626680863, + "raw_amount": 875083626680863000, + "raw_amount_hex_str": "0xc24ebec0d12c90d" + }, + { + "id": "0xc8dd61ff747c4bf93995a8086a8562f136059dc3", + "chain": "base", + "name": "1cbETH-99ONE", + "symbol": "1cbETH-99ONE", + "display_symbol": null, + "optimized_symbol": "1cbETH-99ONE", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.019549661045392894, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692585869, + "amount": 0.17388767502543423, + "raw_amount": 173887675025434240, + "raw_amount_hex_str": "0x269c5eb4cb5a679" + }, + { + "id": "0xca0759728498476b83a2e551d7d3fa3a71a8e138", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 501624.7658486571, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697726771, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0xcc4ccab360dc7267117f20ecd929a7437eadc004", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.258314651856196, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697402059, + "amount": 2.09653810626e-7, + "raw_amount": 209653810626, + "raw_amount_hex_str": "0x30d05745c2" + }, + { + "id": "0xcd75320d7e9c2ec452a9dc1d3c3d8f5392e8f9a2", + "chain": "base", + "name": "SIS-FOOB-SOLAR-WETH Index", + "symbol": "Friend Tech Index", + "display_symbol": null, + "optimized_symbol": "Friend Tech Index", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 58.07183578795073, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692489629, + "amount": 0.017509630731620925, + "raw_amount": 17509630731620926, + "raw_amount_hex_str": "0x3e34ea97e8123e" + }, + { + "id": "0xcde67b70e8144d7d2772de59845b3a67266c2ca7", + "chain": "base", + "name": "50DAI-50BAL", + "symbol": "50DAI-50BAL", + "display_symbol": null, + "optimized_symbol": "50DAI-50BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 3.563525542766746, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690525003, + "amount": 0.2657347200823842, + "raw_amount": 265734720082384200, + "raw_amount_hex_str": "0x3b01451eaff9540" + }, + { + "id": "0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "chain": "base", + "name": "USD Base Coin", + "symbol": "USDbC", + "display_symbol": null, + "optimized_symbol": "USDbC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/base_token/logo_url/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca/02eafdd0ee21a4de9f19a6bc861f3024.png", + "protocol_id": "base_fxdx", + "price": 1, + "price_24h_change": 0, + "is_verified": false, + "is_core": true, + "is_wallet": true, + "time_at": 1690914161, + "amount": 0.000567, + "raw_amount": 567, + "raw_amount_hex_str": "0x237" + }, + { + "id": "0xdd6253dc8052fdecd9f425fd6173a244fd343e5d", + "chain": "base", + "name": "50cbETH-50axlUSDC", + "symbol": "50cbETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50cbETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 46.55423390238214, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697923953, + "amount": 0.000013332783823163, + "raw_amount": 13332783823163, + "raw_amount_hex_str": "0xc2047d7f93b" + }, + { + "id": "0xdede69b3859a9b16a4e11828f9619576ede8a7b1", + "chain": "base", + "name": "50USDbC-50STG", + "symbol": "50USDbC-50STG", + "display_symbol": null, + "optimized_symbol": "50USDbC-50STG", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 500298.12377069675, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699100429, + "amount": 2e-18, + "raw_amount": 2, + "raw_amount_hex_str": "0x2" + }, + { + "id": "0xe40cbccba664c7b1a953827c062f5070b78de868", + "chain": "base", + "name": "50WETH-50GOLD", + "symbol": "50WETH-50GOLD", + "display_symbol": null, + "optimized_symbol": "50WETH-50GOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 162.05808313718111, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691590801, + "amount": 0.7405472307078813, + "raw_amount": 740547230707881300, + "raw_amount_hex_str": "0xa46f3c861be154c" + }, + { + "id": "0xe58ca65f418d4121d6c70d4c133e60cf6fda363c", + "chain": "base", + "name": "Balancer USDbC/axlUSD Stable Pool", + "symbol": "BPT-USDbC-axlUSD", + "display_symbol": null, + "optimized_symbol": "BPT-USDbC-axlUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 1.0044320385657077, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691344327, + "amount": 30.181603162018128, + "raw_amount": 30181603162018128000, + "raw_amount_hex_str": "0x1a2da982ab7e59bf7" + }, + { + "id": "0xe94dfd524414220b3f5d321a20b6f9dbc1d53a1f", + "chain": "base", + "name": "80SIS-20WETH", + "symbol": "80SIS-20WETH", + "display_symbol": null, + "optimized_symbol": "80SIS-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 28.278993931516773, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692552269, + "amount": 0.000019067113433094, + "raw_amount": 19067113433094, + "raw_amount_hex_str": "0x11576885e806" + }, + { + "id": "0xee94d8df3ecf9158d1cd3d752c7b61fc4fd46b12", + "chain": "base", + "name": "50WETH-50USDbC", + "symbol": "50WETH-50USDbC", + "display_symbol": null, + "optimized_symbol": "50WETH-50USDbC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.117331109112364, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699445633, + "amount": 1.9e-17, + "raw_amount": 19, + "raw_amount_hex_str": "0x13" + }, + { + "id": "0xf912fe5769800bb19c66706cb7f61c97c7122f22", + "chain": "base", + "name": "50WETH-50axlUSDC", + "symbol": "50WETH-50axlUSDC", + "display_symbol": null, + "optimized_symbol": "50WETH-50axlUSDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 45.20648964649615, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697738707, + "amount": 0.06753290112947413, + "raw_amount": 67532901129474136, + "raw_amount_hex_str": "0xefecd0d679505b" + }, + { + "id": "0xfa4ac3ecfece20769f8b5d9b6dfa5b7ed6569de2", + "chain": "base", + "name": "Balancer MZ-WETH Pool", + "symbol": "MZ-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "MZ-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 51.87785100463118, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692624143, + "amount": 0.12320218633352456, + "raw_amount": 123202186333524560, + "raw_amount_hex_str": "0x1b5b3bc57f6124d" + }, + { + "id": "0xfab10dd71e11d0ad403cc31418b45d816f2f9882", + "chain": "base", + "name": "20WETH-80WELL", + "symbol": "20WETH-80WELL", + "display_symbol": null, + "optimized_symbol": "20WETH-80WELL", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 0.057914830171145154, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691704783, + "amount": 14.269979235295114, + "raw_amount": 14269979235295113000, + "raw_amount_hex_str": "0xc609268247f730bc" + }, + { + "id": "0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6", + "chain": "base", + "name": "Balancer cbETH/WETH StablePool", + "symbol": "cbETH/WETH", + "display_symbol": null, + "optimized_symbol": "cbETH/WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "base_balancer2", + "price": 2040.3425346426798, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692241741, + "amount": 0.45226553402986686, + "raw_amount": 452265534029866900, + "raw_amount_hex_str": "0x646c51b6400a765" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-11-15-mainnet.json b/FeeSweep/2023-11-15-mainnet.json new file mode 100644 index 000000000..63db21e8c --- /dev/null +++ b/FeeSweep/2023-11-15-mainnet.json @@ -0,0 +1,7842 @@ +[ + { + "id": "0x000b87c8a4c6cbcef7a2577e8aa0dc134c67c3d8", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7648760679750978, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647839442, + "amount": 92.5310479410539, + "raw_amount": 92531047941053890000, + "raw_amount_hex_str": "0x5042051da1528515d" + }, + { + "id": "0x00c2a4be503869fa751c2dbcb7156cc970b5a8da", + "chain": "eth", + "name": "bb-euler-FRAX-bb-euler-USDC", + "symbol": "bb-euler-FRAX-bb-euler-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "bb-euler-FRAX-bb-euler-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0069622502373003, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675964063, + "amount": 0.00017805188028749, + "raw_amount": 178051880287490, + "raw_amount_hex_str": "0xa1efef137d02" + }, + { + "id": "0x01536b22ea06e4a315e3daaf05a12683ed4dc14c", + "chain": "eth", + "name": "wUSK/paUSD/USDC", + "symbol": "e-cs-kp-usd", + "display_symbol": null, + "optimized_symbol": "e-cs-kp-usd", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.6689467955706828, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696582043, + "amount": 0.01655639630173778, + "raw_amount": 16556396301737780, + "raw_amount_hex_str": "0x3ad1f468535f34" + }, + { + "id": "0x02ca8086498552c071451724d3a34caa3922b65a", + "chain": "eth", + "name": "80ROOT-20WETH", + "symbol": "80ROOT-20WETH", + "display_symbol": null, + "optimized_symbol": "80ROOT-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.11240209938757838, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698446519, + "amount": 939.5146473164367, + "raw_amount": 939514647316436600000, + "raw_amount_hex_str": "0x32ee6289f8ec9ce30e" + }, + { + "id": "0x02d928e68d8f10c0358566152677db51e1e2dc8c", + "chain": "eth", + "name": "Balancer Boosted swETH-WETH", + "symbol": "swETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2075.0528582532434, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681569515, + "amount": 0.009605473708968673, + "raw_amount": 9605473708968672, + "raw_amount_hex_str": "0x222020a0528ae1" + }, + { + "id": "0x034e2d995b39a88ab9a532a9bf0deddac2c576ea", + "chain": "eth", + "name": "80SD-20ETHx", + "symbol": "80SD-20ETHx", + "display_symbol": null, + "optimized_symbol": "80SD-20ETHx", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.098303822643974, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692575471, + "amount": 68.2313282665926, + "raw_amount": 68231328266592590000, + "raw_amount_hex_str": "0x3b2e65f8dab522957" + }, + { + "id": "0x038a68ff68c393373ec894015816e33ad41bd564", + "chain": "eth", + "name": "Glitch", + "symbol": "GLCH", + "display_symbol": null, + "optimized_symbol": "GLCH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x038a68ff68c393373ec894015816e33ad41bd564/f4ba4174614971f177c220d931b0bf68.png", + "protocol_id": "", + "price": 0.00580114366320295, + "price_24h_change": 0.025407085834636037, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608173369, + "amount": 76.08624061003349, + "raw_amount": 76086240610033480000, + "raw_amount_hex_str": "0x41fe8a0b66ff249d4" + }, + { + "id": "0x0391d2021f89dc339f60fff84546ea23e337750f", + "chain": "eth", + "name": "BarnBridge Governance Token", + "symbol": "BOND", + "display_symbol": null, + "optimized_symbol": "BOND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0391d2021f89dc339f60fff84546ea23e337750f/160c85e7f4ed44ee16fd35d53008ea3c.png", + "protocol_id": "barnbridge", + "price": 4.378910226125465, + "price_24h_change": 0.0414778658209087, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599494104, + "amount": 0.000740309873162143, + "raw_amount": 740309873162143, + "raw_amount_hex_str": "0x2a14ed303779f" + }, + { + "id": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "chain": "eth", + "name": "Rai Reflex Index", + "symbol": "RAI", + "display_symbol": null, + "optimized_symbol": "RAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x03ab458634910aad20ef5f1c8ee96f1d6ac54919/89f0c429b594592724ea3cbf3d08a8ea.png", + "protocol_id": "reflexer", + "price": 2.7333090005880205, + "price_24h_change": 0.008351056509449959, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613221351, + "amount": 0.239279960732774, + "raw_amount": 239279960732773980, + "raw_amount_hex_str": "0x35217db4558ae6c" + }, + { + "id": "0x04248aabca09e9a1a3d5129a7ba05b7f17de7684", + "chain": "eth", + "name": "Balancer qETH-Boosted Aave WETH StablePool", + "symbol": "qETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2055.868799364074, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681144535, + "amount": 0.6363358808900635, + "raw_amount": 636335880890063500, + "raw_amount_hex_str": "0x8d4b81cba499a9f" + }, + { + "id": "0x04fa0d235c4abf4bcf4787af4cf447de572ef828", + "chain": "eth", + "name": "UMA Voting Token v1", + "symbol": "UMA", + "display_symbol": null, + "optimized_symbol": "UMA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x04fa0d235c4abf4bcf4787af4cf447de572ef828/cabffedd327aaea32dd7bcf155f9cbd6.png", + "protocol_id": "uma", + "price": 1.866320000786255, + "price_24h_change": 0.10250570377170255, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1578581061, + "amount": 0.001970754429405869, + "raw_amount": 1970754429405869, + "raw_amount_hex_str": "0x7006405b44aad" + }, + { + "id": "0x057acee6df29ecc20e87a77783838d90858c5e83", + "chain": "eth", + "name": "Wrapped Pirate Chain", + "symbol": "wARRR", + "display_symbol": null, + "optimized_symbol": "wARRR", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x057acee6df29ecc20e87a77783838d90858c5e83/95b10f25dc71d21b17555a57a8fe8bc5.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.012909528810034968, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1669853195, + "amount": 165.6457043, + "raw_amount": 16564570430, + "raw_amount_hex_str": "0x3db53493e" + }, + { + "id": "0x05b1a35fdbc43849aa836b00c8861696edce8cc4", + "chain": "eth", + "name": "50mevETH-50WETH", + "symbol": "50mevETH-50WETH", + "display_symbol": null, + "optimized_symbol": "50mevETH-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2033.1649875596163, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697099279, + "amount": 0.001230702004713562, + "raw_amount": 1230702004713562, + "raw_amount_hex_str": "0x45f5123d0b85a" + }, + { + "id": "0x06325440d014e39736583c165c2963ba99faf14e", + "chain": "eth", + "name": "Curve.fi ETH/stETH", + "symbol": "steCRV", + "display_symbol": null, + "optimized_symbol": "steCRV", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 2202.159348918377, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1609806378, + "amount": 0.381234451560607, + "raw_amount": 381234451560607000, + "raw_amount_hex_str": "0x54a6ab6bd692cff" + }, + { + "id": "0x064bcc35bfe023fe717a87574fae9333f98aae4d", + "chain": "eth", + "name": "80RATE-20WETH", + "symbol": "80RATE-20WETH", + "display_symbol": null, + "optimized_symbol": "80RATE-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.765465655730758, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689642755, + "amount": 0.5557521600242683, + "raw_amount": 555752160024268300, + "raw_amount_hex_str": "0x7b66da521670df6" + }, + { + "id": "0x065f5b35d4077334379847fe26f58b1029e51161", + "chain": "eth", + "name": "80SGT-10DAI-10WETH", + "symbol": "80SGT-10DAI-10WETH", + "display_symbol": null, + "optimized_symbol": "80SGT-10DAI-10WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.20314793150062946, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677356255, + "amount": 96.90836763695476, + "raw_amount": 96908367636954780000, + "raw_amount_hex_str": "0x540dfaeec5ba66e11" + }, + { + "id": "0x06c55dad9a50adbc824ea50ef7acf54a290e5493", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.7515516650541697, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647501192, + "amount": 11.574551385596456, + "raw_amount": 11574551385596455000, + "raw_amount_hex_str": "0xa0a111291cfb67d9" + }, + { + "id": "0x06c985ff69f7257e212a89828f79497a3c8b6edf", + "chain": "eth", + "name": "Coin", + "symbol": "COIN", + "display_symbol": null, + "optimized_symbol": "COIN", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0.009742827314705894, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653961493, + "amount": 95053, + "raw_amount": 95053, + "raw_amount_hex_str": "0x1734d" + }, + { + "id": "0x0740a6cfb9468b8b53070c0b327099293dccb82d", + "chain": "eth", + "name": "Element Principal Token yvCurveLUSD-29APR22", + "symbol": "ePyvCurveLUSD-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurveLUSD-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.024954878657951, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639513942, + "amount": 768.3981828286567, + "raw_amount": 768398182828656700000, + "raw_amount_hex_str": "0x29a7aabc2275bd2ae1" + }, + { + "id": "0x08209ed93725328828cb199afbe0e068c8e5e215", + "chain": "eth", + "name": "34WBTC-12MATIC-12AAVE-42stETH", + "symbol": "34WBTC-12MATIC-12AAVE-42stETH", + "display_symbol": null, + "optimized_symbol": "34WBTC-12MATIC-12AAVE-42stETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1302.6242059617084, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677749567, + "amount": 0.006092840005170265, + "raw_amount": 6092840005170265, + "raw_amount_hex_str": "0x15a567dc2e7459" + }, + { + "id": "0x08775ccb6674d6bdceb0797c364c2653ed84f384", + "chain": "eth", + "name": "Balancer 50WETH-50-3pool", + "symbol": "50WETH-50-3pool", + "display_symbol": null, + "optimized_symbol": "50WETH-50-3pool", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 45.387229895611355, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680364331, + "amount": 7.743894114981631, + "raw_amount": 7743894114981632000, + "raw_amount_hex_str": "0x6b77d6ab2db7d635" + }, + { + "id": "0x08cc92fedc1ce2d8525176a63fcff404450f2998", + "chain": "eth", + "name": "50B-baoUSD-LUSD-BPT-50BAO", + "symbol": "50B-baoUSD-LUSD-BPT-50BAO", + "display_symbol": null, + "optimized_symbol": "50B-baoUSD-LUSD-BPT-50BAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.016621780375487304, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683789479, + "amount": 2949.625970316465, + "raw_amount": 2.949625970316465e+21, + "raw_amount_hex_str": "0x9fe6488836f3cbdda3" + }, + { + "id": "0x09459654777bb2669ad8ad0b54e876d4b5ff77f4", + "chain": "eth", + "name": "Element Principal Token yvDAI-24FEB23", + "symbol": "ePyvDAI-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-24FEB23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999497299464302, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661282295, + "amount": 29.121950985069077, + "raw_amount": 29121950985069076000, + "raw_amount_hex_str": "0x19425f4204f611fd9" + }, + { + "id": "0x097f9f108ee0db2cb266aa16ccfb4831ec4d770b", + "chain": "eth", + "name": "Element Principal Token yvCurve-3Crypto-16SEP22", + "symbol": "ePyvCurve-3Crypto-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-3Crypto-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1321.7170470742121, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650481210, + "amount": 0.018352290212467388, + "raw_amount": 18352290212467388, + "raw_amount_hex_str": "0x41334f8aedd2bb" + }, + { + "id": "0x0a2a6c2996007da3fc8b30ca26179e1292c2ef0a", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698113855, + "amount": 946.8081404300132, + "raw_amount": 946808140430013200000, + "raw_amount_hex_str": "0x33539a3b510b19224c" + }, + { + "id": "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e", + "chain": "eth", + "name": "yearn.finance", + "symbol": "YFI", + "display_symbol": null, + "optimized_symbol": "YFI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/yearn/f14ac7f4efe5c51e1c6b32add3dea10c.png", + "protocol_id": "iearn", + "price": 11767.785182548487, + "price_24h_change": 0.19401720708385617, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594972885, + "amount": 0.2352636733830818, + "raw_amount": 235263673383081800, + "raw_amount_hex_str": "0x343d310808d5742" + }, + { + "id": "0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", + "chain": "eth", + "name": "Decentralized USD", + "symbol": "USDD", + "display_symbol": null, + "optimized_symbol": "USDD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6/70890e6172f62f4430bfeaff32680884.png", + "protocol_id": "", + "price": 0.99362, + "price_24h_change": -0.0002816448056651424, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651325080, + "amount": 41.741035429420634, + "raw_amount": 41741035429420640000, + "raw_amount_hex_str": "0x24345f291cf9c98de" + }, + { + "id": "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e", + "chain": "eth", + "name": "PoolTogether", + "symbol": "POOL", + "display_symbol": null, + "optimized_symbol": "POOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0cec1a9154ff802e7934fc916ed7ca50bde6844e/2484f4a3952ba986b8a7016cb697dccc.png", + "protocol_id": "pooltogether", + "price": 0.7212544504973221, + "price_24h_change": 0.03895579849122942, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613508749, + "amount": 0.021435254557757296, + "raw_amount": 21435254557757296, + "raw_amount_hex_str": "0x4c27401d95cf6f" + }, + { + "id": "0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd", + "chain": "eth", + "name": "Hakka Finance", + "symbol": "HAKKA", + "display_symbol": null, + "optimized_symbol": "HAKKA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd/5f9fa1ec47440398385fe2a9a1f17d6d.png", + "protocol_id": "hakka", + "price": 0.0017197338132842609, + "price_24h_change": 0.018090558268951087, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1586881841, + "amount": 0.27487339898896684, + "raw_amount": 274873398988966850, + "raw_amount_hex_str": "0x3d08be668f10bc7" + }, + { + "id": "0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da", + "chain": "eth", + "name": "BlackPool Token", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da/8b4ad02c904251c1e2858a65c5c49e74.png", + "protocol_id": "blackpool", + "price": 0.22501024560707583, + "price_24h_change": 0.032778229082047146, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1622152335, + "amount": 0.16840921670672093, + "raw_amount": 168409216706720930, + "raw_amount_hex_str": "0x2564f4a52b4b4ac" + }, + { + "id": "0x0f2d719407fdbeff09d87557abb7232601fd9f29", + "chain": "eth", + "name": "Synapse", + "symbol": "SYN", + "display_symbol": null, + "optimized_symbol": "SYN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f2d719407fdbeff09d87557abb7232601fd9f29/4497316d0335d94bcec6c0c397238971.png", + "protocol_id": "synapse", + "price": 0.4237582953026988, + "price_24h_change": 0.05662315969891047, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628972639, + "amount": 2259.5864510425918, + "raw_amount": 2.2595864510425918e+21, + "raw_amount_hex_str": "0x7a7e0fb16bcf43293e" + }, + { + "id": "0x0f5d2fb29fb7d3cfee444a200298f468908cc942", + "chain": "eth", + "name": "Decentraland MANA", + "symbol": "MANA", + "display_symbol": null, + "optimized_symbol": "MANA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x0f5d2fb29fb7d3cfee444a200298f468908cc942/c83dcbf8bae0f6cd1e31c6e176ce5155.png", + "protocol_id": "decentraland", + "price": 0.4493834005220749, + "price_24h_change": 0.08996033080599897, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1502824689, + "amount": 2117.2857453628917, + "raw_amount": 2.1172857453628917e+21, + "raw_amount_hex_str": "0x72c73e078c01537f9d" + }, + { + "id": "0x0fadd10f606554fec1574f28398469d98d68d297", + "chain": "eth", + "name": "Balancer 80XEX 20USDC Pool Token", + "symbol": "B-80XEX-20USDC", + "display_symbol": null, + "optimized_symbol": "B-80XEX-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 8.272606179357764e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680691199, + "amount": 16338254.338725785, + "raw_amount": 1.6338254338725784e+25, + "raw_amount_hex_str": "0xd83c28adce9a8be8cc2cb" + }, + { + "id": "0x0fd5663d4893ae0d579d580584806aadd2dd0b8b", + "chain": "eth", + "name": "Balancer 50rETH-50RPL", + "symbol": "50rETH-50RPL", + "display_symbol": null, + "optimized_symbol": "50rETH-50RPL", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 257.42455312799467, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662739812, + "amount": 3.93938246879e-7, + "raw_amount": 393938246879, + "raw_amount_hex_str": "0x5bb88c9cdf" + }, + { + "id": "0x10010078a54396f62c96df8532dc2b4847d47ed3", + "chain": "eth", + "name": "Hundred Finance", + "symbol": "HND", + "display_symbol": null, + "optimized_symbol": "HND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x10010078a54396f62c96df8532dc2b4847d47ed3/cae168ae659748f245f0d57b76521952.png", + "protocol_id": "hundred", + "price": 0.011402858653269437, + "price_24h_change": 0.11026868805752314, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1631627706, + "amount": 2755.380409112071, + "raw_amount": 2.755380409112071e+21, + "raw_amount_hex_str": "0x955e95ab74d37f0ce1" + }, + { + "id": "0x10f8ea49255e8a865ca4eda1630168c85cc8ee81", + "chain": "eth", + "name": "ELFI/WETH 50/50 Weighted Pool", + "symbol": "50ELFI-50WETH", + "display_symbol": null, + "optimized_symbol": "50ELFI-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 17.41307220579892, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692639599, + "amount": 1.9921761686e-8, + "raw_amount": 19921761686, + "raw_amount_hex_str": "0x4a36df596" + }, + { + "id": "0x114f1388fab456c4ba31b1850b244eedcd024136", + "chain": "eth", + "name": "Cool Cats", + "symbol": "COOL", + "display_symbol": null, + "optimized_symbol": "COOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x114f1388fab456c4ba31b1850b244eedcd024136/8915648a58d5afd9e481419f29a2b0f8.png", + "protocol_id": "nftx", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1625256758, + "amount": 0.11419228390229055, + "raw_amount": 114192283902290560, + "raw_amount_hex_str": "0x195b146f6162a78" + }, + { + "id": "0x11839d635e2f0270da37e8ef4324d4d5d5432957", + "chain": "eth", + "name": "10bb-a-USD-90callFLAIX260323", + "symbol": "10bb-a-USD-90callFLAIX260323", + "display_symbol": null, + "optimized_symbol": "10bb-a-USD-90callFLAIX260323", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.000021632006580394662, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679059403, + "amount": 0.24244401680865096, + "raw_amount": 242444016808650980, + "raw_amount_hex_str": "0x35d558c7bcc68d6" + }, + { + "id": "0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa", + "chain": "eth", + "name": "Starwire", + "symbol": "STR", + "display_symbol": null, + "optimized_symbol": "STR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x11c1a6b3ed6bb362954b29d3183cfa97a0c806aa/be315e8b8faeb413e73b8f1d2e4c28c2.png", + "protocol_id": "", + "price": 0.003890420684925466, + "price_24h_change": 0.03433367629841004, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602981353, + "amount": 50018.708750003345, + "raw_amount": 5.001870875000335e+22, + "raw_amount_hex_str": "0xa978506c5a6b84f5273" + }, + { + "id": "0x13c99770694f07279607a6274f28a28c33086424", + "chain": "eth", + "name": "Material", + "symbol": "MTRL", + "display_symbol": null, + "optimized_symbol": "MTRL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x13c99770694f07279607a6274f28a28c33086424/7428f5af9cc4e9770678a2b36c501a73.png", + "protocol_id": "", + "price": 0, + "price_24h_change": -0.5576737982578098, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638790558, + "amount": 12726.377904856998, + "raw_amount": 1.2726377904856998e+22, + "raw_amount_hex_str": "0x2b1e5f8dd3a3d5c622c" + }, + { + "id": "0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b", + "chain": "eth", + "name": "DefiPulse Index", + "symbol": "DPI", + "display_symbol": null, + "optimized_symbol": "DPI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b/feb43f922f3e344d42afbb598d0b2e7c.png", + "protocol_id": "tokensets", + "price": 87.80565979577979, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1599694252, + "amount": 0.9190830163663766, + "raw_amount": 919083016366376600, + "raw_amount_hex_str": "0xcc13d22459cc652" + }, + { + "id": "0x150d969723bc8924dc667ba3254bacd967fad266", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697146631, + "amount": 171.80547923704214, + "raw_amount": 171805479237042140000, + "raw_amount_hex_str": "0x95047ad1a05a54a11" + }, + { + "id": "0x158e0fbc2271e1dcebadd365a22e2b4dd173c0db", + "chain": "eth", + "name": "80IDLE-20USDC", + "symbol": "80IDLE-20USDC", + "display_symbol": null, + "optimized_symbol": "80IDLE-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.2135250370570217, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689599735, + "amount": 211.6973899229594, + "raw_amount": 211697389922959400000, + "raw_amount_hex_str": "0xb79e436839b5a8803" + }, + { + "id": "0x173063a30e095313eee39411f07e95a8a806014e", + "chain": "eth", + "name": "Balancer 50TEMPLE-50bb-a-USD", + "symbol": "50TEMPLE-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.37345604902429425, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666877015, + "amount": 0.004583886786538531, + "raw_amount": 4583886786538531, + "raw_amount_hex_str": "0x1049054f9a2c23" + }, + { + "id": "0x18aaa7115705e8be94bffebde57af9bfc265b998", + "chain": "eth", + "name": "Audius", + "symbol": "AUDIO", + "display_symbol": null, + "optimized_symbol": "AUDIO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x18aaa7115705e8be94bffebde57af9bfc265b998/8c4d2409af350ab696f37b9fde9d378d.png", + "protocol_id": "", + "price": 0.2011350735855258, + "price_24h_change": 0.04894550081535066, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1603333709, + "amount": 5.5795443874753765, + "raw_amount": 5579544387475376000, + "raw_amount_hex_str": "0x4d6e860f07fe8833" + }, + { + "id": "0x18fdf15ff782e44c1f9b6c5846ff6b0f0004f6a2", + "chain": "eth", + "name": "50OHM-50LUSD", + "symbol": "50OHM-50LUSD", + "display_symbol": null, + "optimized_symbol": "50OHM-50LUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.3766399132011826, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685952995, + "amount": 50.48557359854856, + "raw_amount": 50485573598548560000, + "raw_amount_hex_str": "0x2bca0c9b42f538691" + }, + { + "id": "0x194ebd173f6cdace046c53eacce9b953f28411d1", + "chain": "eth", + "name": "Curve.fi EURS/sEUR", + "symbol": "eursCRV", + "display_symbol": null, + "optimized_symbol": "eursCRV", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0910949594597925, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1608157510, + "amount": 2.248196352882993, + "raw_amount": 2248196352882993000, + "raw_amount_hex_str": "0x1f3332abe6eb672e" + }, + { + "id": "0x1a44e35d5451e0b78621a1b3e7a53dfaa306b1d0", + "chain": "eth", + "name": "baoETH-ETH StablePool", + "symbol": "B-baoETH-ETH-BPT", + "display_symbol": null, + "optimized_symbol": "B-baoETH-ETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1123.1733776506192, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681544303, + "amount": 0.18774232051145395, + "raw_amount": 187742320511453950, + "raw_amount_hex_str": "0x29afea553648b03" + }, + { + "id": "0x1b6e13673f29688e27311b332af1527f1ebf1d28", + "chain": "eth", + "name": "80PSDN-20WETH", + "symbol": "80PSDN-20WETH", + "display_symbol": null, + "optimized_symbol": "80PSDN-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 3.103294578159369, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684137239, + "amount": 53.151501573994565, + "raw_amount": 53151501573994560000, + "raw_amount_hex_str": "0x2e1a01112a48fc3d6" + }, + { + "id": "0x1bd2f176a812e312077bca87e37c08432bb09f3e", + "chain": "eth", + "name": "qETH/Boosted Aave v3 WETH", + "symbol": "qETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2048.4401383063287, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689520715, + "amount": 0.007532327892830541, + "raw_amount": 7532327892830541, + "raw_amount_hex_str": "0x1ac29cc062494d" + }, + { + "id": "0x1cf0f3aabe4d12106b27ab44df5473974279c524", + "chain": "eth", + "name": "xSNX", + "symbol": "xSNXa", + "display_symbol": null, + "optimized_symbol": "xSNXa", + "decimals": 18, + "logo_url": null, + "protocol_id": "xtoken", + "price": 0.4757563723635539, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621899341, + "amount": 70.66571045034482, + "raw_amount": 70665710450344820000, + "raw_amount_hex_str": "0x3d4af094069697b9c" + }, + { + "id": "0x1d1b44a4c5a047bdc9b3f06842566e5ea9c1966d", + "chain": "eth", + "name": "Balancer USDC-USDT Fixed Rate Pool", + "symbol": "B-USDC-USDT-FIXED-RATE", + "display_symbol": null, + "optimized_symbol": "B-USDC-USDT-FIXED-RATE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0002007613848884, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667287751, + "amount": 8.639631653279508, + "raw_amount": 8639631653279507000, + "raw_amount_hex_str": "0x77e62336c3f22577" + }, + { + "id": "0x1e5193ccc53f25638aa22a940af899b692e10b09", + "chain": "eth", + "name": "Alluo Token", + "symbol": "ALLUO", + "display_symbol": null, + "optimized_symbol": "ALLUO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e5193ccc53f25638aa22a940af899b692e10b09/0181c06bfff0edd1585037e86b02c978.png", + "protocol_id": "alluo", + "price": 0.014755912691555647, + "price_24h_change": 0.03525265586572346, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639219884, + "amount": 2743.9128871410508, + "raw_amount": 2.743912887141051e+21, + "raw_amount_hex_str": "0x94bf70d8fb32d52e33" + }, + { + "id": "0x1e83916ea2ef2d7a6064775662e163b2d4c330a7", + "chain": "eth", + "name": "EthereumGasLimit", + "symbol": "EGL", + "display_symbol": null, + "optimized_symbol": "EGL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1e83916ea2ef2d7a6064775662e163b2d4c330a7/61c37afbb6b52ba182266f62d47b8258.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628861140, + "amount": 216579.38247266778, + "raw_amount": 2.165793824726678e+23, + "raw_amount_hex_str": "0x2ddccab6a824d93715f6" + }, + { + "id": "0x1ee442b5326009bb18f2f472d3e0061513d1a0ff", + "chain": "eth", + "name": "Balancer 50rETH-BADGER", + "symbol": "50rETH-50BADGER", + "display_symbol": null, + "optimized_symbol": "50rETH-50BADGER", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 91.43856298073743, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675901651, + "amount": 87.58852560941523, + "raw_amount": 87588525609415230000, + "raw_amount_hex_str": "0x4bf88f3fa5566260f" + }, + { + "id": "0x1f068a896560632a4d2e05044bd7f03834f1a465", + "chain": "eth", + "name": "EthFork2.com", + "symbol": "EthFork2.com", + "display_symbol": null, + "optimized_symbol": "EthFork2.com", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661588028, + "amount": 350, + "raw_amount": 350000000000000000000, + "raw_amount_hex_str": "0x12f939c99edab80000" + }, + { + "id": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "chain": "eth", + "name": "Uniswap", + "symbol": "UNI", + "display_symbol": null, + "optimized_symbol": "UNI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984/fcee0c46fc9864f48ce6a40ed1cdd135.png", + "protocol_id": "uniswap3", + "price": 5.352594801252002, + "price_24h_change": 0.08611379141811233, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600107086, + "amount": 0.21765202497026323, + "raw_amount": 217652024970263230, + "raw_amount_hex_str": "0x305415d10ff3ab7" + }, + { + "id": "0x1fc4db3e7f9124baafb7b34346db7931dad621c2", + "chain": "eth", + "name": "loyaltyclaim.io", + "symbol": "Visit https://loyaltyclaim.io to claim reward", + "display_symbol": null, + "optimized_symbol": "Visit https://loyaltyclaim.io to claim reward", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687675475, + "amount": 587, + "raw_amount": 587000000000000000000, + "raw_amount_hex_str": "0x1fd242edf0d24c0000" + }, + { + "id": "0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9", + "chain": "eth", + "name": "R/DAI Stable Pool", + "symbol": "R-DAI-BLP", + "display_symbol": null, + "optimized_symbol": "R-DAI-BLP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00331608285931375, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684857023, + "amount": 3296.463715224545, + "raw_amount": 3.296463715224545e+21, + "raw_amount_hex_str": "0xb2b39fbb955b713fab" + }, + { + "id": "0x21fb757c2d3a5c574e8721027c3d7a506d77b6b3", + "chain": "eth", + "name": "Element Principal Token yvCurve-stETH-16SEP22", + "symbol": "ePyvCurve-stETH-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-stETH-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 2202.1593489183765, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648481776, + "amount": 0.10358715027583056, + "raw_amount": 103587150275830560, + "raw_amount_hex_str": "0x17003f6df7c6318" + }, + { + "id": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "chain": "eth", + "name": "Wrapped BTC", + "symbol": "WBTC", + "display_symbol": null, + "optimized_symbol": "WBTC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599/d3c52e7c7449afa8bd4fad1c93f50d93.png", + "protocol_id": "", + "price": 37453.9, + "price_24h_change": 0.05930051022139775, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1543095952, + "amount": 0.02613793, + "raw_amount": 2613793, + "raw_amount_hex_str": "0x27e221" + }, + { + "id": "0x226f7b842e0f0120b7e194d05432b3fd14773a9d", + "chain": "eth", + "name": "UNION Protocol Governance Token", + "symbol": "UNN", + "display_symbol": null, + "optimized_symbol": "UNN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x226f7b842e0f0120b7e194d05432b3fd14773a9d/353c0f098023ed2b6984fad42e786f36.png", + "protocol_id": "unn", + "price": 0.00027116022463675836, + "price_24h_change": 0.03935075821077488, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1606475731, + "amount": 513275.0134700667, + "raw_amount": 5.132750134700667e+23, + "raw_amount_hex_str": "0x6cb0b1b957743cf2243b" + }, + { + "id": "0x2361102893ccabfb543bc55ac4cc8d6d0824a67e", + "chain": "eth", + "name": "Element Principal Token yvcrvSTETH-15APR22", + "symbol": "ePyvcrvSTETH-15APR22", + "display_symbol": null, + "optimized_symbol": "ePyvcrvSTETH-15APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 2202.159348918376, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634646386, + "amount": 0.11170361717852023, + "raw_amount": 111703617178520240, + "raw_amount_hex_str": "0x18cd9d9160d4aad" + }, + { + "id": "0x245151454c790eb870498e9e5b590145fac1463f", + "chain": "eth", + "name": "$ RPoolBonus.com", + "symbol": "$RPL Claim at RPoolBonus.com", + "display_symbol": null, + "optimized_symbol": "$RPL Claim at RPoolBonus.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687784111, + "amount": 5000, + "raw_amount": 5000, + "raw_amount_hex_str": "0x1388" + }, + { + "id": "0x24a82db9e1d0e96d9cafa84a58825fbe9701ced2", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1816.6042550280984, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647499039, + "amount": 0.00000572017923657, + "raw_amount": 5720179236570, + "raw_amount_hex_str": "0x533d5405eda" + }, + { + "id": "0x24e79e946dea5482212c38aab2d0782f04cdb0e0", + "chain": "eth", + "name": "Paladin stkAAVE", + "symbol": "palStkAAVE", + "display_symbol": null, + "optimized_symbol": "palStkAAVE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x24e79e946dea5482212c38aab2d0782f04cdb0e0/add608fe8a15b03368f48fb40a42d8cf.png", + "protocol_id": "paladin", + "price": 111.19987632627245, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1632993706, + "amount": 0.001410377764356197, + "raw_amount": 1410377764356197, + "raw_amount_hex_str": "0x502bb29a4c065" + }, + { + "id": "0x25f8087ead173b73d6e8b84329989a8eea16cf73", + "chain": "eth", + "name": "Yield Guild Games Token", + "symbol": "YGG", + "display_symbol": null, + "optimized_symbol": "YGG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x25f8087ead173b73d6e8b84329989a8eea16cf73/4e2b963e26b873bc69a918edde1309bf.png", + "protocol_id": "yieldguild", + "price": 0.42367255544180443, + "price_24h_change": 0.09371936087926012, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1627299017, + "amount": 103.3948502972311, + "raw_amount": 103394850297231110000, + "raw_amount_hex_str": "0x59ae44c893326e681" + }, + { + "id": "0x26cc136e9b8fd65466f193a8e5710661ed9a9827", + "chain": "eth", + "name": "80BETS/20wstETH Pool Token", + "symbol": "80BETS/20wstETH", + "display_symbol": null, + "optimized_symbol": "80BETS/20wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.007267310537663049, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1690400639, + "amount": 5857.111605854258, + "raw_amount": 5.857111605854258e+21, + "raw_amount_hex_str": "0x13d83c0853798ced9d4" + }, + { + "id": "0x27054b13b1b798b345b591a4d22e6562d47ea75a", + "chain": "eth", + "name": "AirSwap Token", + "symbol": "AST", + "display_symbol": null, + "optimized_symbol": "AST", + "decimals": 4, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27054b13b1b798b345b591a4d22e6562d47ea75a/8193d103d453bab7acd302740b9cd0a1.png", + "protocol_id": "airswap", + "price": 0.10184992881317717, + "price_24h_change": 0.056292741543015536, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1507599220, + "amount": 0.0161, + "raw_amount": 161, + "raw_amount_hex_str": "0xa1" + }, + { + "id": "0x271d57ce059780462f89800141a089008ca78d4a", + "chain": "eth", + "name": "80PRTC-20WETH", + "symbol": "80PRTC-20WETH", + "display_symbol": null, + "optimized_symbol": "80PRTC-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.7327691455642074, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698689387, + "amount": 175.89409215737294, + "raw_amount": 175894092157372960000, + "raw_amount_hex_str": "0x9890558e3ea0955b5" + }, + { + "id": "0x274b103eb0e1490f9d45cd9a5a630e1de1bf3196", + "chain": "eth", + "name": "# apy-eth.net", + "symbol": "Visit https://apy-eth.net to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit https://apy-eth.net to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696718747, + "amount": 1.4, + "raw_amount": 1400000, + "raw_amount_hex_str": "0x155cc0" + }, + { + "id": "0x27c70cd1946795b66be9d954418546998b546634", + "chain": "eth", + "name": "DOGE KILLER", + "symbol": "LEASH", + "display_symbol": null, + "optimized_symbol": "LEASH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x27c70cd1946795b66be9d954418546998b546634/e2b22820fe3164795e5803e3ef64a9d0.png", + "protocol_id": "", + "price": 318.30461088116925, + "price_24h_change": 0.026966899898286947, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1598998068, + "amount": 0.004320528144273535, + "raw_amount": 4320528144273535, + "raw_amount_hex_str": "0xf597f5948107f" + }, + { + "id": "0x285328906d0d33cb757c1e471f5e2176683247c2", + "chain": "eth", + "name": "Element Principal Token yvcrv3crypto-29APR22", + "symbol": "ePyvcrv3crypto-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvcrv3crypto-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1321.7170470742121, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1636034117, + "amount": 0.16870319386359234, + "raw_amount": 168703193863592350, + "raw_amount_hex_str": "0x2575aa936b6999b" + }, + { + "id": "0x2930e74d4634ae54519ae0ccd69ce728531c252e", + "chain": "eth", + "name": "Your Dreams Token", + "symbol": "YOO", + "display_symbol": null, + "optimized_symbol": "YOO", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650555914, + "amount": 12416367592.041399, + "raw_amount": 1.24163675920414e+28, + "raw_amount_hex_str": "0x281e941be22cb79343f845b7" + }, + { + "id": "0x2a8f5649de50462ff9699ccc75a2fb0b53447503", + "chain": "eth", + "name": "Element Principal Token yvCurve-EURS-11FEB22", + "symbol": "ePyvCurve-EURS-11FEB22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-EURS-11FEB22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0910949594597923, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634236922, + "amount": 1.9061332050874682, + "raw_amount": 1906133205087468000, + "raw_amount_hex_str": "0x1a73f20d07d0ba65" + }, + { + "id": "0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884", + "chain": "eth", + "name": "Aladdin cvxCRV", + "symbol": "aCRV", + "display_symbol": null, + "optimized_symbol": "aCRV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884/6cf5b1bce4ec79f2cdf773b127c96e85.png", + "protocol_id": "concentrator", + "price": 0.8352046843625814, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1646643085, + "amount": 1261.27736173079, + "raw_amount": 1.26127736173079e+21, + "raw_amount_hex_str": "0x445fbd55f5d59bea6d" + }, + { + "id": "0x2ba592f78db6436527729929aaf6c908497cb200", + "chain": "eth", + "name": "Cream", + "symbol": "CREAM", + "display_symbol": null, + "optimized_symbol": "CREAM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2ba592f78db6436527729929aaf6c908497cb200/a5587c34049aadbc312d1847428235d9.png", + "protocol_id": "cream", + "price": 21.60706896092738, + "price_24h_change": 0.09669293837896059, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1596553617, + "amount": 35.04279261690979, + "raw_amount": 35042792616909790000, + "raw_amount_hex_str": "0x1e65102386c96e05f" + }, + { + "id": "0x2ba7aa2213fa2c909cd9e46fed5a0059542b36b0", + "chain": "eth", + "name": "TUSD bb-a-usd Stable Pool", + "symbol": "TUSD-bbausd", + "display_symbol": null, + "optimized_symbol": "TUSD-bbausd", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.26106243815274316, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666633715, + "amount": 0.001585337226757161, + "raw_amount": 1585337226757161, + "raw_amount_hex_str": "0x5a1db16400429" + }, + { + "id": "0x2c537e5624e4af88a7ae4060c022609376c8d0eb", + "chain": "eth", + "name": "BiLira", + "symbol": "TRYB", + "display_symbol": null, + "optimized_symbol": "TRYB", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2c537e5624e4af88a7ae4060c022609376c8d0eb/75a023de93f6f4de0c2155cb0e1ef5ef.png", + "protocol_id": "", + "price": 0.034577893042069804, + "price_24h_change": 0.000014537898686492538, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1563539445, + "amount": 317.111535, + "raw_amount": 317111535, + "raw_amount_hex_str": "0x12e6bcef" + }, + { + "id": "0x2c72692e94e757679289ac85d3556b2c0f717e0e", + "chain": "eth", + "name": "Element Principal Token yvDAI-29APR22", + "symbol": "ePyvDAI-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999497299464302, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641339630, + "amount": 60.97677550935169, + "raw_amount": 60976775509351694000, + "raw_amount_hex_str": "0x34e390641c7a578ab" + }, + { + "id": "0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198", + "chain": "eth", + "name": "Bankless Token", + "symbol": "BANK", + "display_symbol": null, + "optimized_symbol": "BANK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198/83da02d114aa95ca785cbd6a51635280.png", + "protocol_id": "", + "price": 0.0037622489933410836, + "price_24h_change": 0.020658403761175632, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620099970, + "amount": 18644.32032354594, + "raw_amount": 1.8644320323545942e+22, + "raw_amount_hex_str": "0x3f2b5ebd86c1fdc56a4" + }, + { + "id": "0x2e52c64fd319e380cdbcfc4577ea1fda558a32e4", + "chain": "eth", + "name": "50bb-a-WETH-50YieldETH", + "symbol": "50bb-a-WETH-50YieldETH", + "display_symbol": null, + "optimized_symbol": "50bb-a-WETH-50YieldETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2088.775972322645, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691530583, + "amount": 1.5e-17, + "raw_amount": 15, + "raw_amount_hex_str": "0xf" + }, + { + "id": "0x2e848426aec6dbf2260535a5bea048ed94d9ff3d", + "chain": "eth", + "name": "wbETH-wstETH StablePool", + "symbol": "wbETH-wstETH", + "display_symbol": null, + "optimized_symbol": "wbETH-wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2059.0129180527138, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683201371, + "amount": 0.6475540508817823, + "raw_amount": 647554050881782300, + "raw_amount_hex_str": "0x8fc92fa77ac823e" + }, + { + "id": "0x3035917be42af437cbdd774be26b9ec90a2bd677", + "chain": "eth", + "name": "Balancer INST 80 bbWETH 20", + "symbol": "80INST-bbWETH20", + "display_symbol": null, + "optimized_symbol": "80INST-bbWETH20", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.978236812355044, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683841055, + "amount": 0.010520363238690378, + "raw_amount": 10520363238690378, + "raw_amount_hex_str": "0x256036f1c00e4a" + }, + { + "id": "0x30d20208d987713f46dfd34ef128bb16c404d10f", + "chain": "eth", + "name": "Stader", + "symbol": "SD", + "display_symbol": null, + "optimized_symbol": "SD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x30d20208d987713f46dfd34ef128bb16c404d10f/099f57b5ca7c3703424ea1425678acaf.png", + "protocol_id": "stader", + "price": 0.7757816993678689, + "price_24h_change": -0.004298272954688276, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1642382824, + "amount": 587.462023480685, + "raw_amount": 587462023480685100000, + "raw_amount_hex_str": "0x1fd8ac5dd9366bc821" + }, + { + "id": "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3", + "chain": "eth", + "name": "Radicle", + "symbol": "RAD", + "display_symbol": null, + "optimized_symbol": "RAD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x31c8eacbffdd875c74b94b077895bd78cf1e64a3/e400b44466625a2161f3658bb763854a.png", + "protocol_id": "", + "price": 1.5968528205651307, + "price_24h_change": 0.09009471869335094, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1613423971, + "amount": 0.004999999999967232, + "raw_amount": 4999999999967232, + "raw_amount_hex_str": "0x11c37937e00000" + }, + { + "id": "0x3301ee63fb29f863f2333bd4466acb46cd8323e6", + "chain": "eth", + "name": "Akita Inu", + "symbol": "AKITA", + "display_symbol": null, + "optimized_symbol": "AKITA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3301ee63fb29f863f2333bd4466acb46cd8323e6/6173e15b13a34a6e42bda133ac37a6ed.png", + "protocol_id": "", + "price": 1.0774585129194106e-7, + "price_24h_change": 0.04517865255724238, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612076328, + "amount": 57362872.56584607, + "raw_amount": 5.736287256584608e+25, + "raw_amount_hex_str": "0x2f730f8d83f8a93e373a8c" + }, + { + "id": "0x333a4823466879eef910a04d473505da62142069", + "chain": "eth", + "name": "Nation3", + "symbol": "NATION", + "display_symbol": null, + "optimized_symbol": "NATION", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x333a4823466879eef910a04d473505da62142069/2415be916c6835d9c24d3f47506a5e18.png", + "protocol_id": "nation3", + "price": 64.34182720078415, + "price_24h_change": 0.03573512770157475, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1649799318, + "amount": 7.241223156129218, + "raw_amount": 7241223156129219000, + "raw_amount_hex_str": "0x647dfe18486a3e1a" + }, + { + "id": "0x3472a5a71965499acd81997a54bba8d852c6e53d", + "chain": "eth", + "name": "Badger", + "symbol": "BADGER", + "display_symbol": null, + "optimized_symbol": "BADGER", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3472a5a71965499acd81997a54bba8d852c6e53d/0e7643dba053739569d5b9f82225f4e5.png", + "protocol_id": "badger", + "price": 3.747064283088261, + "price_24h_change": 0.04403474097915514, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1606584722, + "amount": 931.4656801411899, + "raw_amount": 931465680141189900000, + "raw_amount_hex_str": "0x327eaedcf8c3400bfd" + }, + { + "id": "0x34d179259336812a1c7d320a0972e949da5fa26d", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2006.0116938633394, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648172795, + "amount": 0.025958318074766215, + "raw_amount": 25958318074766216, + "raw_amount_hex_str": "0x5c38f3e7d02387" + }, + { + "id": "0x35e78b3982e87ecfd5b3f3265b601c046cdbe232", + "chain": "eth", + "name": "SideShift Token", + "symbol": "XAI", + "display_symbol": null, + "optimized_symbol": "XAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x35e78b3982e87ecfd5b3f3265b601c046cdbe232/21a070376acfb15790c0d09b5d21b9ab.png", + "protocol_id": "sideshift", + "price": 0.0758250849566353, + "price_24h_change": 0.010856360235668877, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600064905, + "amount": 0.02741807529102729, + "raw_amount": 27418075291027290, + "raw_amount_hex_str": "0x6168981e25875a" + }, + { + "id": "0x36be1e97ea98ab43b4debf92742517266f5731a3", + "chain": "eth", + "name": "Balancer 50wstETH-ACX", + "symbol": "50wstETH-50ACX", + "display_symbol": null, + "optimized_symbol": "50wstETH-50ACX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 12.657879459117023, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675902863, + "amount": 164.8038523642013, + "raw_amount": 164803852364201330000, + "raw_amount_hex_str": "0x8ef1ce68e9823c1cd" + }, + { + "id": "0x37b18b10ce5635a84834b26095a0ae5639dcb752", + "chain": "eth", + "name": "Balancer ETHx-WETH Stable Pool", + "symbol": "ETHx-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "ETHx-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2040.7656814367917, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692370715, + "amount": 0.2083119659415986, + "raw_amount": 208311965941598600, + "raw_amount_hex_str": "0x2e412a11c698988" + }, + { + "id": "0x380aabe019ed2a9c2d632b51eddd30fd804d0fad", + "chain": "eth", + "name": "50R-50wstETH", + "symbol": "50R-50wstETH", + "display_symbol": null, + "optimized_symbol": "50R-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 7.02207696780111, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684846547, + "amount": 24.37085415389584, + "raw_amount": 24370854153895840000, + "raw_amount_hex_str": "0x15236aabb0bd08c6c" + }, + { + "id": "0x38ca7131cfd8e3d734129416e2e4559c21eb6aca", + "chain": "eth", + "name": "20WETH-80UNIDX", + "symbol": "20WETH-80UNIDX", + "display_symbol": null, + "optimized_symbol": "20WETH-80UNIDX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.3084783706988945, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1694977163, + "amount": 0.000016760559044853, + "raw_amount": 16760559044853, + "raw_amount_hex_str": "0xf3e5f2b08f5" + }, + { + "id": "0x39eb558131e5ebeb9f76a6cbf6898f6e6dce5e4e", + "chain": "eth", + "name": "QiDao Governance Pool", + "symbol": "QI BPT", + "display_symbol": null, + "optimized_symbol": "QI BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.17797959933767843, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692299435, + "amount": 255.9595246032141, + "raw_amount": 255959524603214100000, + "raw_amount_hex_str": "0xde026e77eb46f0be8" + }, + { + "id": "0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe", + "chain": "eth", + "name": "DSLA", + "symbol": "DSLA", + "display_symbol": null, + "optimized_symbol": "DSLA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe/920656e6a4fe6c869d9ad35551e08af8.png", + "protocol_id": "", + "price": 0.0010716, + "price_24h_change": 0.0829711975745327, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1550581410, + "amount": 1.7671530614258026, + "raw_amount": 1767153061425802500, + "raw_amount_hex_str": "0x18863058ba076d46" + }, + { + "id": "0x3b9fb87f7d081ceddb1289258fa5660d955317b6", + "chain": "eth", + "name": "50B-baoETH-ETH-BPT-50BAO", + "symbol": "50B-baoETH-ETH-BPT-50BAO", + "display_symbol": null, + "optimized_symbol": "50B-baoETH-ETH-BPT-50BAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.7820112563506023, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683886487, + "amount": 143.9477782639869, + "raw_amount": 143947778263986880000, + "raw_amount_hex_str": "0x7cdad3da9bfa25572" + }, + { + "id": "0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432", + "chain": "eth", + "name": "Candle", + "symbol": "CNDL", + "display_symbol": null, + "optimized_symbol": "CNDL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3d97edb1c1d87c0cbf098a0d2230d7380d4b1432/e9d1773a4453ca6646909bd2a3c56517.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651750698, + "amount": 2258.9097301624, + "raw_amount": 2.2589097301624e+21, + "raw_amount_hex_str": "0x7a74ab7f5db357e24c" + }, + { + "id": "0x3dbb8d974b82e82ce79c20c0f5995f4f1f533ede", + "chain": "eth", + "name": "zUSD-bb-e-USD", + "symbol": "zUSD-bb-e-USD-BPT", + "display_symbol": null, + "optimized_symbol": "zUSD-bb-e-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0073977076735328, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675956239, + "amount": 0.000249178466602354, + "raw_amount": 249178466602354, + "raw_amount_hex_str": "0xe2a061fccd72" + }, + { + "id": "0x3e1f8fc2fbab8695b5749afb1f390d30bb33c880", + "chain": "eth", + "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-06-2027:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 462.81243283482155, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652969783, + "amount": 0.07705061999391594, + "raw_amount": 77050619993915940, + "raw_amount_hex_str": "0x111bd217276021b" + }, + { + "id": "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7", + "chain": "eth", + "name": "Gro DAO Token", + "symbol": "GRO", + "display_symbol": null, + "optimized_symbol": "GRO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7/85aaee7416a5ecebc565f9bd79c9c360.png", + "protocol_id": "gro", + "price": 0.06548598455638374, + "price_24h_change": -0.0849355573597428, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632174690, + "amount": 2702.776060291374, + "raw_amount": 2.7027760602913744e+21, + "raw_amount_hex_str": "0x92848d7ae9e91d06d6" + }, + { + "id": "0x3f9fee026fcebb40719a69416c72b714d89a17d9", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 559.5404596110252, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648167646, + "amount": 0.000181094846238193, + "raw_amount": 181094846238193, + "raw_amount_hex_str": "0xa4b46dfb0df1" + }, + { + "id": "0x3fa8c89704e5d07565444009e5d9e624b40be813", + "chain": "eth", + "name": "Balancer GHO/LUSD Stable Pool", + "symbol": "GHO/LUSD", + "display_symbol": null, + "optimized_symbol": "GHO/LUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9711653687330498, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689432875, + "amount": 48.11859282263264, + "raw_amount": 48118592822632645000, + "raw_amount_hex_str": "0x29bc7953a9cadf821" + }, + { + "id": "0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e", + "chain": "eth", + "name": "Balancer STG/USDC", + "symbol": "STG/USDC", + "display_symbol": null, + "optimized_symbol": "STG/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.752869604590227, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692722363, + "amount": 25195.96625034557, + "raw_amount": 2.519596625034557e+22, + "raw_amount_hex_str": "0x555e045f2bd22834819" + }, + { + "id": "0x40370aed88933021e20cf7c4d67e00417cda2202", + "chain": "eth", + "name": "Xave Token", + "symbol": "XAV", + "display_symbol": null, + "optimized_symbol": "XAV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x40370aed88933021e20cf7c4d67e00417cda2202/247a2728076470579ab554e77b08df30.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669012907, + "amount": 1.9573375855194717, + "raw_amount": 1957337585519471600, + "raw_amount_hex_str": "0x1b29dc29e268ac39" + }, + { + "id": "0x408e41876cccdc0f92210600ef50372656052a38", + "chain": "eth", + "name": "Republic Token", + "symbol": "REN", + "display_symbol": null, + "optimized_symbol": "REN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x408e41876cccdc0f92210600ef50372656052a38/d0ef6c3fa48075b6f129bfe11f6b3364.png", + "protocol_id": "ren", + "price": 0.059955, + "price_24h_change": 0.10069763172388478, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1514688568, + "amount": 535.8468904869309, + "raw_amount": 535846890486930870000, + "raw_amount_hex_str": "0x1d0c5e93dbff27f1ec" + }, + { + "id": "0x40c806394d03d350420d13cd7d1de1c806f34956", + "chain": "eth", + "name": "Balancer qETH/WETH ", + "symbol": "qETH/WETH", + "display_symbol": null, + "optimized_symbol": "qETH/WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2038.106571067851, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695334895, + "amount": 0.06781170456246757, + "raw_amount": 67811704562467576, + "raw_amount_hex_str": "0xf0ea62d20f42fa" + }, + { + "id": "0x40fb0516ac8ff93b48bcf9da7717e523e78c34f7", + "chain": "eth", + "name": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "symbol": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "display_symbol": null, + "optimized_symbol": "17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2.880827387992608, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679181491, + "amount": 338.57678793145624, + "raw_amount": 338576787931456200000, + "raw_amount_hex_str": "0x125ab262c4573650c0" + }, + { + "id": "0x41503c9d499ddbd1dcdf818a1b05e9774203bf46", + "chain": "eth", + "name": "Balancer Boosted Aave v3 WETH StablePool", + "symbol": "wstETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2046.3559577743517, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689173579, + "amount": 0.000004959060006908, + "raw_amount": 4959060006908, + "raw_amount_hex_str": "0x4829f0297fc" + }, + { + "id": "0x418de6227499181b045cadf554030722e460881a", + "chain": "eth", + "name": "Element Principal Token yvCurve-MIM-11FEB22", + "symbol": "ePyvCurve-MIM-11FEB22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-MIM-11FEB22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0061697887056682, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1634061105, + "amount": 162.22004811443406, + "raw_amount": 162220048114434080000, + "raw_amount_hex_str": "0x8cb4162480b9e46bf" + }, + { + "id": "0x41c37a4683d6a05adb31c39d71348a8403b13ca9", + "chain": "eth", + "name": "Chain", + "symbol": "CHN", + "display_symbol": null, + "optimized_symbol": "CHN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41c37a4683d6a05adb31c39d71348a8403b13ca9/dfee7bb5fbe50c6450ff8cfa4b17546d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1605706401, + "amount": 1.0374047068213375, + "raw_amount": 1037404706821337300, + "raw_amount_hex_str": "0xe659a159e677103" + }, + { + "id": "0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68", + "chain": "eth", + "name": "Inverse DAO", + "symbol": "INV", + "display_symbol": null, + "optimized_symbol": "INV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68/b95fe3266be734e29d0385cadc44681c.png", + "protocol_id": "inverse", + "price": 29.772017064392816, + "price_24h_change": 0.010647895132394778, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608575013, + "amount": 0.000044598970632764, + "raw_amount": 44598970632764, + "raw_amount_hex_str": "0x289001cd4a3c" + }, + { + "id": "0x41e5560054824ea6b0732e656e3ad64e20e94e45", + "chain": "eth", + "name": "Civic", + "symbol": "CVC", + "display_symbol": null, + "optimized_symbol": "CVC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x41e5560054824ea6b0732e656e3ad64e20e94e45/f44e161ad5413bd61785905f6a724b61.png", + "protocol_id": "", + "price": 0.11473581812931388, + "price_24h_change": 0.08321654099554883, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1499817451, + "amount": 1.78988788, + "raw_amount": 178988788, + "raw_amount_hex_str": "0xaab26f4" + }, + { + "id": "0x4228290ee9cab692938ff0b4ba303fbcdb68e9f2", + "chain": "eth", + "name": "50bb-a-WETH-50ETHx", + "symbol": "50bb-a-WETH-50ETHx", + "display_symbol": null, + "optimized_symbol": "50bb-a-WETH-50ETHx", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2052.59821389572, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687940699, + "amount": 0.000005707034691283, + "raw_amount": 5707034691283, + "raw_amount_hex_str": "0x530c5c686d3" + }, + { + "id": "0x42ed016f826165c2e5976fe5bc3df540c5ad0af7", + "chain": "eth", + "name": "wstETH-rETH-sfrxETH-BPT", + "symbol": "wstETH-rETH-sfrxETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-rETH-sfrxETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2043.6525937640383, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689162815, + "amount": 5.187057498326551, + "raw_amount": 5187057498326551000, + "raw_amount_hex_str": "0x47fc21500147c87b" + }, + { + "id": "0x42fbd9f666aacc0026ca1b88c94259519e03dd67", + "chain": "eth", + "name": "50COIL-50USDC", + "symbol": "50COIL-50USDC", + "display_symbol": null, + "optimized_symbol": "50COIL-50USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.1711373073572915, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680729107, + "amount": 429.09239084313805, + "raw_amount": 429092390843138050000, + "raw_amount_hex_str": "0x1742da680afc5242d0" + }, + { + "id": "0x43b4fdfd4ff969587185cdb6f0bd875c5fc83f8c", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Alchemix USD", + "symbol": "alUSD3CRV-f", + "display_symbol": null, + "optimized_symbol": "alUSD3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0084674681205459, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1614641897, + "amount": 84.79787428041467, + "raw_amount": 84797874280414670000, + "raw_amount_hex_str": "0x498ce91613059972a" + }, + { + "id": "0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad", + "chain": "eth", + "name": "Prime", + "symbol": "D2D", + "display_symbol": null, + "optimized_symbol": "D2D", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad/8a54f7a353e7d3d9a5124320838ae0ce.png", + "protocol_id": "", + "price": 0.009388012038454853, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638439594, + "amount": 54552.70929096436, + "raw_amount": 5.455270929096436e+22, + "raw_amount_hex_str": "0xb8d4eec837daa9875d3" + }, + { + "id": "0x449d7c2e096e9f867339078535b15440d42f78e8", + "chain": "eth", + "name": "Element Principal Token yvDAI-28JAN22", + "symbol": "ePyvDAI-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999497299464303, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632229871, + "amount": 1.6345684269036274, + "raw_amount": 1634568426903627300, + "raw_amount_hex_str": "0x16af2752eea8e60d" + }, + { + "id": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "chain": "eth", + "name": "Paxos Gold", + "symbol": "PAXG", + "display_symbol": null, + "optimized_symbol": "PAXG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x45804880de22913dafe09f4980848ece6ecbaf78/c67db744859c16615fa81fcb3a71b3ae.png", + "protocol_id": "", + "price": 1945.5424084604492, + "price_24h_change": 0.0009628478055575122, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1566830180, + "amount": 0.000195449382386424, + "raw_amount": 195449382386424, + "raw_amount_hex_str": "0xb1c29b023af8" + }, + { + "id": "0x467bccd9d29f223bce8043b84e8c8b282827790f", + "chain": "eth", + "name": "Telcoin", + "symbol": "TEL", + "display_symbol": null, + "optimized_symbol": "TEL", + "decimals": 2, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x467bccd9d29f223bce8043b84e8c8b282827790f/161a26f47e94d3a29876733cccefa868.png", + "protocol_id": "", + "price": 0.002679978751908793, + "price_24h_change": 0.21928517979944856, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1580196479, + "amount": 9812.17, + "raw_amount": 981217, + "raw_amount_hex_str": "0xef8e1" + }, + { + "id": "0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7", + "chain": "eth", + "name": "Temple", + "symbol": "TEMPLE", + "display_symbol": null, + "optimized_symbol": "TEMPLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7/5e88fad758a4fd99011c1bb7221c5c1a.png", + "protocol_id": "temple", + "price": 1.0921380497449116, + "price_24h_change": 0.003510253981086098, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632930767, + "amount": 0.0498486954820145, + "raw_amount": 49848695482014504, + "raw_amount_hex_str": "0xb1191fdab8db29" + }, + { + "id": "0x4729f67394030472e853cb61954fe784bfb36c3b", + "chain": "eth", + "name": "25WBTC-50USDC-25WETH", + "symbol": "25WBTC-50USDC-25WETH", + "display_symbol": null, + "optimized_symbol": "25WBTC-50USDC-25WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 88.12460758312334, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1686652355, + "amount": 1.11606324940411, + "raw_amount": 1116063249404110100, + "raw_amount_hex_str": "0xf7d0d9cb799a4d3" + }, + { + "id": "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0", + "chain": "eth", + "name": "The 4th Pillar Token", + "symbol": "FOUR", + "display_symbol": null, + "optimized_symbol": "FOUR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0/ba71d3195857bc59eb461e88a5a62498.png", + "protocol_id": "", + "price": 0.0022011401093566807, + "price_24h_change": 0.04425821212462332, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1524482071, + "amount": 36686.721073303044, + "raw_amount": 3.6686721073303045e+22, + "raw_amount_hex_str": "0x7c4ca87c997218e860a" + }, + { + "id": "0x476c5e26a75bd202a9683ffd34359c0cc15be0ff", + "chain": "eth", + "name": "Serum", + "symbol": "SRM", + "display_symbol": null, + "optimized_symbol": "SRM", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x476c5e26a75bd202a9683ffd34359c0cc15be0ff/6458883add3412a15a0ace2fb0e6c780.png", + "protocol_id": "", + "price": 0.061044737269171284, + "price_24h_change": 0.1397916051568712, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1596238023, + "amount": 0.26469, + "raw_amount": 264690, + "raw_amount_hex_str": "0x409f2" + }, + { + "id": "0x478bbc744811ee8310b461514bdc29d03739084d", + "chain": "eth", + "name": "veCRV Stake DAO", + "symbol": "sdveCRV-DAO", + "display_symbol": null, + "optimized_symbol": "sdveCRV-DAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "stakedao", + "price": 0.6066, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1614598819, + "amount": 157.94985960428522, + "raw_amount": 157949859604285230000, + "raw_amount_hex_str": "0x88ffea074b43dda49" + }, + { + "id": "0x47e1cf97a0586367349a14306a65f54ba0b8f1b6", + "chain": "eth", + "name": "20WETH-80ALTR", + "symbol": "20WETH-80ALTR", + "display_symbol": null, + "optimized_symbol": "20WETH-80ALTR", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0069419688309243985, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692518831, + "amount": 3.4150305140825292, + "raw_amount": 3415030514082529300, + "raw_amount_hex_str": "0x2f64a028b1024008" + }, + { + "id": "0x483006684f422a9448023b2382615c57c5ecf18f", + "chain": "eth", + "name": "Balancer TUSD bbeUSD Stable Pool", + "symbol": "TUSD-bb-e-USD", + "display_symbol": null, + "optimized_symbol": "TUSD-bb-e-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0089632459163604, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676335379, + "amount": 0.000147196524185311, + "raw_amount": 147196524185311, + "raw_amount_hex_str": "0x85dfdc8946df" + }, + { + "id": "0x48f07301e9e29c3c38a80ae8d9ae771f224f1054", + "chain": "eth", + "name": "South African Tether", + "symbol": "XZAR", + "display_symbol": null, + "optimized_symbol": "XZAR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x48f07301e9e29c3c38a80ae8d9ae771f224f1054/9f75b8fcd7755ec78c71fb3449c8e1cb.png", + "protocol_id": "", + "price": 0.05359393242179276, + "price_24h_change": 0.03551102013616467, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1527678390, + "amount": 0.03344167048500867, + "raw_amount": 33441670485008670, + "raw_amount_hex_str": "0x76cf05a9f46122" + }, + { + "id": "0x496ff26b76b8d23bbc6cf1df1eee4a48795490f7", + "chain": "eth", + "name": "Balancer 50COMP-50wstETH", + "symbol": "50COMP-50WSTETH", + "display_symbol": null, + "optimized_symbol": "50COMP-50WSTETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 368.296816031149, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663944443, + "amount": 0.000010866337871306, + "raw_amount": 10866337871306, + "raw_amount_hex_str": "0x9e2043575ca" + }, + { + "id": "0x49e9e169f0b661ea0a883f490564f4cc275123ed", + "chain": "eth", + "name": "Element Principal Token yvWBTC-29APR22", + "symbol": "ePyvWBTC-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvWBTC-29APR22", + "decimals": 8, + "logo_url": null, + "protocol_id": "element", + "price": 37404, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639082867, + "amount": 0.00257344, + "raw_amount": 257344, + "raw_amount_hex_str": "0x3ed40" + }, + { + "id": "0x4a220e6096b25eadb88358cb44068a3248254675", + "chain": "eth", + "name": "Quant", + "symbol": "QNT", + "display_symbol": null, + "optimized_symbol": "QNT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4a220e6096b25eadb88358cb44068a3248254675/0fa0af99171fcb3a9a4b3e3189f6791b.png", + "protocol_id": "", + "price": 103.8059971566474, + "price_24h_change": 0.04298127022738613, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1523044361, + "amount": 3.6661770414563097, + "raw_amount": 3666177041456310000, + "raw_amount_hex_str": "0x32e0e0984fb22651" + }, + { + "id": "0x4b13006980acb09645131b91d259eaa111eaf5ba", + "chain": "eth", + "name": "Mycelium", + "symbol": "MYC", + "display_symbol": null, + "optimized_symbol": "MYC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4b13006980acb09645131b91d259eaa111eaf5ba/c34229f594e7de5f89c43b886a86c2c5.png", + "protocol_id": "", + "price": 0.0010154180976386386, + "price_24h_change": -0.012960140069912519, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1660182677, + "amount": 9340.018375535334, + "raw_amount": 9.340018375535334e+21, + "raw_amount_hex_str": "0x1fa52cb0b02dc94f68d" + }, + { + "id": "0x4c81255cc9ed7062180ea99962fe05ac0d57350b", + "chain": "eth", + "name": "cbETH/Boosted Aave v3 WETH", + "symbol": "cbETH-bb-a-WETH-BPT ", + "display_symbol": null, + "optimized_symbol": "cbETH-bb-a-WETH-BPT ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2043.9934427376425, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689553187, + "amount": 0.010856090427067203, + "raw_amount": 10856090427067204, + "raw_amount_hex_str": "0x26918e858e0b44" + }, + { + "id": "0x4cbde5c4b4b53ebe4af4adb85404725985406163", + "chain": "eth", + "name": "ETHx/bb-a-WETH Stable Pool", + "symbol": "B-ETHx/bb-a-WETH ", + "display_symbol": null, + "optimized_symbol": "B-ETHx/bb-a-WETH ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2047.833162121026, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689175655, + "amount": 0.00000141467351807, + "raw_amount": 1414673518070, + "raw_amount_hex_str": "0x149611ccdf6" + }, + { + "id": "0x4cc46a45b49a5073a6c1e0636cbad48efa35cdd3", + "chain": "eth", + "name": "24K GAMES", + "symbol": "24K", + "display_symbol": null, + "optimized_symbol": "24K", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646971567, + "amount": 31.64091782, + "raw_amount": 3164091782, + "raw_amount_hex_str": "0xbc983586" + }, + { + "id": "0x4da83bbe43235d600b914ec3dbde8b2eaa801869", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.048343812412896085, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698494831, + "amount": 9.523720617656974, + "raw_amount": 9523720617656973000, + "raw_amount_hex_str": "0x842b0d716381f7f0" + }, + { + "id": "0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227", + "chain": "eth", + "name": "Quasacoin", + "symbol": "QUA", + "display_symbol": null, + "optimized_symbol": "QUA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x4daeb4a06f70f4b1a5c329115731fe4b89c0b227/a67c193307d12eb4011a5a4c662ef0df.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1512380881, + "amount": 1247.3744351518874, + "raw_amount": 1.2473744351518875e+21, + "raw_amount_hex_str": "0x439ecc37e5cbc74fe1" + }, + { + "id": "0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c", + "chain": "eth", + "name": "SolarCoin on Mainnet", + "symbol": "SLR", + "display_symbol": null, + "optimized_symbol": "SLR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x4e9e4ab99cfc14b852f552f5fb3aa68617825b6c/81bd6ba22be0c3314bd798585775290e.png", + "protocol_id": "", + "price": 0.04545243279300048, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1619174554, + "amount": 540.5422461900775, + "raw_amount": 540542246190077500000, + "raw_amount_hex_str": "0x1d4d87d4fe8b50e72c" + }, + { + "id": "0x4ee4ddfb958416ca2afca3a894c3c3ed9a3cdda1", + "chain": "eth", + "name": "Sense Space 1st Aug 2022 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-08-2022:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-08-2022:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1996.6704381089849, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1656634308, + "amount": 0.000266315308888279, + "raw_amount": 266315308888279, + "raw_amount_hex_str": "0xf2365d6270d7" + }, + { + "id": "0x4f2e0f963794a3876a54c503ec63de95e9f24a75", + "chain": "eth", + "name": "50EVA-50WETH", + "symbol": "50EVA-50WETH", + "display_symbol": null, + "optimized_symbol": "50EVA-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 12.813169920435069, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677463907, + "amount": 0.03788908667835974, + "raw_amount": 37889086678359740, + "raw_amount_hex_str": "0x869bec7053debd" + }, + { + "id": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "chain": "eth", + "name": "Binance USD", + "symbol": "BUSD", + "display_symbol": null, + "optimized_symbol": "BUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/busd/a57860ceb2c054b0222dda257addf86a.png", + "protocol_id": "", + "price": 1, + "price_24h_change": 0.00020004000800157828, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1567727777, + "amount": 4.866814267563016, + "raw_amount": 4866814267563016000, + "raw_amount_hex_str": "0x438a65ca75e57e1f" + }, + { + "id": "0x4fd4687ec38220f805b6363c3c1e52d0df3b5023", + "chain": "eth", + "name": "Balancer 50wstETH-50bb-euler-USD", + "symbol": "50wstETH-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50wstETH-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 65.81521878894968, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675958987, + "amount": 0.000284576129434531, + "raw_amount": 284576129434531, + "raw_amount_hex_str": "0x102d20b1b43a3" + }, + { + "id": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", + "chain": "eth", + "name": "solace", + "symbol": "SOLACE", + "display_symbol": null, + "optimized_symbol": "SOLACE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40/06d669f7d8a66cc1d92a277e9fa541a6.png", + "protocol_id": "solace", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637651732, + "amount": 6142.490743441953, + "raw_amount": 6.142490743441952e+21, + "raw_amount_hex_str": "0x14cfc2ee2d986a55e93" + }, + { + "id": "0x50cf90b954958480b8df7958a9e965752f627124", + "chain": "eth", + "name": "bb-euler-USD", + "symbol": "bb-euler-USD-BPT", + "display_symbol": null, + "optimized_symbol": "bb-euler-USD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0093859255669375, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675954271, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd", + "chain": "eth", + "name": "RAZOR", + "symbol": "RAZOR", + "display_symbol": null, + "optimized_symbol": "RAZOR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd/85936c44506b8575e8130fb7e33632ee.png", + "protocol_id": "", + "price": 0.00415, + "price_24h_change": 0.05677316936159658, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611070839, + "amount": 0.5591955659528318, + "raw_amount": 559195565952831900, + "raw_amount_hex_str": "0x7c2a9678c97917c" + }, + { + "id": "0x514910771af9ca656af840dff83e8264ecf986ca", + "chain": "eth", + "name": "ChainLink Token", + "symbol": "LINK", + "display_symbol": null, + "optimized_symbol": "LINK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x514910771af9ca656af840dff83e8264ecf986ca/69425617db0ef93a7c21c4f9b81c7ca5.png", + "protocol_id": "chainlink", + "price": 15.042206026416114, + "price_24h_change": 0.07676656125662341, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1505597189, + "amount": 56.63449572738061, + "raw_amount": 56634495727380610000, + "raw_amount_hex_str": "0x311f625cd37e64167" + }, + { + "id": "0x51fa2efd62ee56a493f24ae963eace7d0051929e", + "chain": "eth", + "name": "POSEIDON OCEAN", + "symbol": "psdnOCEAN", + "display_symbol": null, + "optimized_symbol": "psdnOCEAN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x51fa2efd62ee56a493f24ae963eace7d0051929e/ba7ad5b1cdffba533c15373060ec9d93.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1666000007, + "amount": 1866.7065769019116, + "raw_amount": 1.8667065769019116e+21, + "raw_amount_hex_str": "0x6531c1fd74fbd65eb8" + }, + { + "id": "0x525fc44cbe181c1108c209091b5eec5a5028190d", + "chain": "eth", + "name": "$ Evmosia.com", + "symbol": "$ Evmosia.com", + "display_symbol": null, + "optimized_symbol": "$ Evmosia.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671409715, + "amount": 40000, + "raw_amount": 40000, + "raw_amount_hex_str": "0x9c40" + }, + { + "id": "0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e4", + "chain": "eth", + "name": "Gyroscope ECLP R/sDAI", + "symbol": "ECLP-R-sDAI", + "display_symbol": null, + "optimized_symbol": "ECLP-R-sDAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.000002431803200930934, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695206147, + "amount": 808.0604655789513, + "raw_amount": 808060465578951300000, + "raw_amount_hex_str": "0x2bce177827fe27506f" + }, + { + "id": "0x52bbca3b24c1c1ac050ff4546f37aa88282aae22", + "chain": "eth", + "name": "$ HEXPool.io", + "symbol": "wHEX", + "display_symbol": null, + "optimized_symbol": "wHEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685642099, + "amount": 93588.75, + "raw_amount": 9.358875e+22, + "raw_amount_hex_str": "0x13d174d04e8d175b0000" + }, + { + "id": "0x52c9886d5d87b0f06ebacbeff750b5ffad5d17d9", + "chain": "eth", + "name": "Element Principal Token yvUSDC-29APR22", + "symbol": "ePyvUSDC-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-29APR22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 0.999999045806079, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1637083548, + "amount": 0.002163, + "raw_amount": 2163, + "raw_amount_hex_str": "0x873" + }, + { + "id": "0x53fffb19bacd44b82e204d036d579e86097e5d09", + "chain": "eth", + "name": "BigMouthFrog", + "symbol": "BGBG", + "display_symbol": null, + "optimized_symbol": "BGBG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x53fffb19bacd44b82e204d036d579e86097e5d09/3f4a08cd1bf99074863825a9995fa7e7.png", + "protocol_id": "", + "price": 3.9386168355205447e-11, + "price_24h_change": 0.036296635152993764, + "is_verified": false, + "is_core": true, + "is_wallet": true, + "time_at": 1687084283, + "amount": 219.69945066954557, + "raw_amount": 219699450669545550000, + "raw_amount_hex_str": "0xbe8f13e5dcab83a77" + }, + { + "id": "0x54ca50ee86616379420cc56718e12566aa75abbe", + "chain": "eth", + "name": "50wUSDM-50wstETH", + "symbol": "50wUSDM-50wstETH", + "display_symbol": null, + "optimized_symbol": "50wUSDM-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 48.39451153208445, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698134843, + "amount": 3.1701584e-11, + "raw_amount": 31701584, + "raw_amount_hex_str": "0x1e3ba50" + }, + { + "id": "0x55096a35bf827919b3bb0a5e6b5e2af8095f3d4d", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-28JAN22", + "symbol": "ePyvCurve-alUSD-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0084660023053122, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632836406, + "amount": 4.1474331168929295, + "raw_amount": 4147433116892929000, + "raw_amount_hex_str": "0x398ea4721e181c81" + }, + { + "id": "0x586aa273f262909eef8fa02d90ab65f5015e0516", + "chain": "eth", + "name": "Fixed Income Asset Token", + "symbol": "FIAT", + "display_symbol": null, + "optimized_symbol": "FIAT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x586aa273f262909eef8fa02d90ab65f5015e0516/43d28043429b71370c3685bc469e6d2d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1649548526, + "amount": 811.4182391491705, + "raw_amount": 811418239149170500000, + "raw_amount_hex_str": "0x2bfcb0ad6d97443801" + }, + { + "id": "0x58b6a8a3302369daec383334672404ee733ab239", + "chain": "eth", + "name": "Livepeer Token", + "symbol": "LPT", + "display_symbol": null, + "optimized_symbol": "LPT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x58b6a8a3302369daec383334672404ee733ab239/3bf454e30e5f4b18011ea5e31d2e0e59.png", + "protocol_id": "", + "price": 7.54801070596864, + "price_24h_change": 0.1334468478349586, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1525118631, + "amount": 9.611559995466864, + "raw_amount": 9611559995466865000, + "raw_amount_hex_str": "0x85631ee443285964" + }, + { + "id": "0x59d1e836f7b7210a978b25a855085cc46fd090b5", + "chain": "eth", + "name": "AssangeDAO", + "symbol": "JUSTICE", + "display_symbol": null, + "optimized_symbol": "JUSTICE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x59d1e836f7b7210a978b25a855085cc46fd090b5/18a7cd6e19eb1a3cdbad5407156d2800.png", + "protocol_id": "", + "price": 0.00002984869801930843, + "price_24h_change": -0.012250696555730321, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644405370, + "amount": 146820.75531783528, + "raw_amount": 1.4682075531783528e+23, + "raw_amount_hex_str": "0x1f172b49bfdee428ba12" + }, + { + "id": "0x5a6a4d54456819380173272a5e8e9b9904bdf41b", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Magic Internet Money 3Pool", + "symbol": "MIM-3LP3CRV-f", + "display_symbol": null, + "optimized_symbol": "MIM-3LP3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1.0061697887056682, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1622664003, + "amount": 0.001180815197708221, + "raw_amount": 1180815197708221, + "raw_amount_hex_str": "0x431f1f6679fbd" + }, + { + "id": "0x5a98fcbea516cf06857215779fd812ca3bef1b32", + "chain": "eth", + "name": "Lido DAO Token", + "symbol": "LDO", + "display_symbol": null, + "optimized_symbol": "LDO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5a98fcbea516cf06857215779fd812ca3bef1b32/3a1a90da5ccd4849de3e83755f1fd8b5.png", + "protocol_id": "lido", + "price": 2.442045961161194, + "price_24h_change": 0.14057293133273496, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608242396, + "amount": 114.74313906352926, + "raw_amount": 114743139063529260000, + "raw_amount_hex_str": "0x63861850b06e8b75b" + }, + { + "id": "0x5ad5f864b346445a16fc95c59174269ed288e640", + "chain": "eth", + "name": "Sense Space 1st Apr 2023 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-04-2023:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-04-2023:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1443.7210835324224, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659544214, + "amount": 0.007607022901897472, + "raw_amount": 7607022901897472, + "raw_amount_hex_str": "0x1b068c09dda900" + }, + { + "id": "0x5aee1e99fe86960377de9f88689616916d5dcabe", + "chain": "eth", + "name": "wstETH-rETH-sfrxETH StablePool", + "symbol": "wstETH-rETH-sfrxETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-rETH-sfrxETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2084.6938696509364, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675903979, + "amount": 0.7790671014063838, + "raw_amount": 779067101406383700, + "raw_amount_hex_str": "0xacfcd66ab854ea0" + }, + { + "id": "0x5b3240b6be3e7487d61cd1afdfc7fe4fa1d81e64", + "chain": "eth", + "name": "Balancer DOLA bb-a-usd Stable", + "symbol": "DOLA BSP", + "display_symbol": null, + "optimized_symbol": "DOLA BSP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.20501416969900965, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664261567, + "amount": 0.003844606784921471, + "raw_amount": 3844606784921471, + "raw_amount_hex_str": "0xda8a645b75f7f" + }, + { + "id": "0x5b3b589b45531a2f0ae203d5044782ba46aefc4c", + "chain": "eth", + "name": "17DNT-17CVC-17OCEAN-17POLY-17USDC-17ENJ", + "symbol": "17DNT-17CVC-17OCEAN-17POLY-17USDC-17ENJ", + "display_symbol": null, + "optimized_symbol": "17DNT-17CVC-17OCEAN-17POLY-17USDC-17ENJ", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.21023419605877097, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699135307, + "amount": 181.64450171366863, + "raw_amount": 181644501713668640000, + "raw_amount_hex_str": "0x9d8d2e7ea2e0d5ea0" + }, + { + "id": "0x5bfe65bca476bda0d0d393372394ae352ec0627b", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2171.1341120577226, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651433369, + "amount": 0.000001034241951247, + "raw_amount": 1034241951247, + "raw_amount_hex_str": "0xf0cd9fc60f" + }, + { + "id": "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56", + "chain": "eth", + "name": "Balancer 80 BAL 20 WETH", + "symbol": "B-80BAL-20WETH", + "display_symbol": null, + "optimized_symbol": "B-80BAL-20WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5c6ee304399dbdb9c8ef030ab642b10820db8f56/a97c63ed3da766c9436a84d679a543ae.png", + "protocol_id": "balancer2", + "price": 11.739822843858821, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1620153071, + "amount": 1.860289084277977, + "raw_amount": 1860289084277976800, + "raw_amount_hex_str": "0x19d11310dfecef0b" + }, + { + "id": "0x5e8422345238f34275888049021821e8e08caa1f", + "chain": "eth", + "name": "Frax Ether", + "symbol": "frxETH", + "display_symbol": null, + "optimized_symbol": "frxETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x5e8422345238f34275888049021821e8e08caa1f/74628d212cf16e6183a7242b4ce71b92.png", + "protocol_id": "frax", + "price": 2037.26020404333, + "price_24h_change": 0.034866728574141595, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1665022895, + "amount": 3.214543369e-9, + "raw_amount": 3214543369, + "raw_amount_hex_str": "0xbf9a0a09" + }, + { + "id": "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5", + "chain": "eth", + "name": "Balancer 50wstETH-LDO", + "symbol": "50wstETH-50LDO", + "display_symbol": null, + "optimized_symbol": "50wstETH-50LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 75.22270121724549, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675902395, + "amount": 0.3716351862693692, + "raw_amount": 371635186269369150, + "raw_amount_hex_str": "0x528503b9f9f335b" + }, + { + "id": "0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa", + "chain": "eth", + "name": "Balancer Idle Boosted StablePool", + "symbol": "bb-i-USD", + "display_symbol": null, + "optimized_symbol": "bb-i-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.1895938326944134, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676336363, + "amount": 0.002440372366841927, + "raw_amount": 2440372366841927, + "raw_amount_hex_str": "0x8ab81780b9847" + }, + { + "id": "0x60e683c6514edd5f758a55b6f393bebbafaa8d5e", + "chain": "eth", + "name": "Page", + "symbol": "PAGE", + "display_symbol": null, + "optimized_symbol": "PAGE", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x60e683c6514edd5f758a55b6f393bebbafaa8d5e/c8bb13815f5143b60a2a38ab610a3e45.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1627438213, + "amount": 124.48588543, + "raw_amount": 12448588543, + "raw_amount_hex_str": "0x2e5fe62ff" + }, + { + "id": "0x6123b0049f904d730db3c36a31167d9d4121fa6b", + "chain": "eth", + "name": "Ribbon", + "symbol": "RBN", + "display_symbol": null, + "optimized_symbol": "RBN", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6123b0049f904d730db3c36a31167d9d4121fa6b/d01dd0342160eeee21906b1dba45a327.png", + "protocol_id": "ribbonlend", + "price": 0.18089855817770836, + "price_24h_change": 0.024991672411972577, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1621861922, + "amount": 1089.8711785205085, + "raw_amount": 1.0898711785205085e+21, + "raw_amount_hex_str": "0x3b15003e7abb3f1893" + }, + { + "id": "0x616e8bfa43f920657b3497dbf40d6b1a02d4608d", + "chain": "eth", + "name": "Aura BAL", + "symbol": "auraBAL", + "display_symbol": null, + "optimized_symbol": "auraBAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x616e8bfa43f920657b3497dbf40d6b1a02d4608d/05fa7bfd9613c2c4799bd4f0cebd620a.png", + "protocol_id": "", + "price": 11.24903185963832, + "price_24h_change": 0.016802282847856623, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1654771930, + "amount": 72.66583587072023, + "raw_amount": 72665835870720240000, + "raw_amount_hex_str": "0x3f070e8b96d1e12d1" + }, + { + "id": "0x6228f64d5ba8376652bfe7e36569d595347cf6fb", + "chain": "eth", + "name": "80T-20TBTC", + "symbol": "80T-20TBTC", + "display_symbol": null, + "optimized_symbol": "80T-20TBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.35199201974981026, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693279523, + "amount": 35.10667504721156, + "raw_amount": 35106675047211557000, + "raw_amount_hex_str": "0x1e733f6f3ca1d5f03" + }, + { + "id": "0x623729861bc3837c503708f995b93d317c3c1d7c", + "chain": "eth", + "name": "Balancer TBY-feb1924 USDC Stable Pool", + "symbol": "TBY-feb1924-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "TBY-feb1924-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 999975.5006002353, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693244579, + "amount": 2.5e-17, + "raw_amount": 25, + "raw_amount_hex_str": "0x19" + }, + { + "id": "0x639883476960a23b38579acfd7d71561a0f408cf", + "chain": "eth", + "name": "Balancer 50STG-50bbaUSD", + "symbol": "50STG-50bbaUSD", + "display_symbol": null, + "optimized_symbol": "50STG-50bbaUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.759046418520163, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680693239, + "amount": 0.010407133071785597, + "raw_amount": 10407133071785596, + "raw_amount_hex_str": "0x24f93b7ddfbe7d" + }, + { + "id": "0x6468e79a80c0eab0f9a2b574c8d5bc374af59414", + "chain": "eth", + "name": "E-RADIX", + "symbol": "eXRD", + "display_symbol": null, + "optimized_symbol": "eXRD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6468e79a80c0eab0f9a2b574c8d5bc374af59414/2e02f4e196ecbfdc48156256092ea745.png", + "protocol_id": "radix", + "price": 0.04454339099007508, + "price_24h_change": -0.013008257188585073, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1603805479, + "amount": 71.05679786474816, + "raw_amount": 71056797864748170000, + "raw_amount_hex_str": "0x3da1c752ed50cb3b7" + }, + { + "id": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "chain": "eth", + "name": "Olympus", + "symbol": "OHM", + "display_symbol": null, + "optimized_symbol": "OHM", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5/0ad387f86fba0c16654cfb0f720df5d6.png", + "protocol_id": "olympusdao", + "price": 11.401900989466647, + "price_24h_change": 0.008014783011772542, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639209014, + "amount": 56.342024575, + "raw_amount": 56342024575, + "raw_amount_hex_str": "0xd1e3f117f" + }, + { + "id": "0x64db005d040ee62e8fa202291c73e8a6151a0399", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7840051615050015, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649095346, + "amount": 2.074617375248661, + "raw_amount": 2074617375248661000, + "raw_amount_hex_str": "0x1cca8582d08cba0f" + }, + { + "id": "0x667102bd3413bfeaa3dffb48fa8288819e480a88", + "chain": "eth", + "name": "Tokenize Emblem", + "symbol": "TKX", + "display_symbol": null, + "optimized_symbol": "TKX", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x667102bd3413bfeaa3dffb48fa8288819e480a88/76c73234de2cd64ad7d946222611fd70.png", + "protocol_id": "", + "price": 6.823720714805505, + "price_24h_change": 0.03925485450589934, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1518449139, + "amount": 0.00034175, + "raw_amount": 34175, + "raw_amount_hex_str": "0x857f" + }, + { + "id": "0x67f117350eab45983374f4f83d275d8a5d62b1bf", + "chain": "eth", + "name": "Oats And Grains", + "symbol": "OG", + "display_symbol": null, + "optimized_symbol": "OG", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.20052263301492412, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680406619, + "amount": 1555.3428089990543, + "raw_amount": 1.5553428089990543e+21, + "raw_amount_hex_str": "0x5450b7ac39aadde0ec" + }, + { + "id": "0x67f8db40638d8e06ac78e1d04a805f59d11adf9b", + "chain": "eth", + "name": "Sense Space 1st July 2023 maDAI Sense Principal Token, A11", + "symbol": "SPACE-sP-maDAI:01-07-2023:11", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-maDAI:01-07-2023:11", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.9922490830906783, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1665427199, + "amount": 34.357809360083934, + "raw_amount": 34357809360083930000, + "raw_amount_hex_str": "0x1dccf7593d864d1a2" + }, + { + "id": "0x68037790a0229e9ce6eaa8a99ea92964106c4703", + "chain": "eth", + "name": "PAR Stablecoin", + "symbol": "PAR", + "display_symbol": null, + "optimized_symbol": "PAR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x68037790a0229e9ce6eaa8a99ea92964106c4703/3141498258ab923e325c2b7d0483bd31.png", + "protocol_id": "mimo", + "price": 1.0574264658500143, + "price_24h_change": -0.003133185739724195, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1607062049, + "amount": 449.4130662172098, + "raw_amount": 449413066217209800000, + "raw_amount_hex_str": "0x185cdbf2a1cfe4d38d" + }, + { + "id": "0x6810e776880c02933d47db1b9fc05908e5386b96", + "chain": "eth", + "name": "Gnosis Token", + "symbol": "GNO", + "display_symbol": null, + "optimized_symbol": "GNO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6810e776880c02933d47db1b9fc05908e5386b96/69e5fedeca09913fe078a8dca5b7e48c.png", + "protocol_id": "gnosis", + "price": 172.8, + "price_24h_change": 0.024911032028469855, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1492523116, + "amount": 0.000174228262083627, + "raw_amount": 174228262083627, + "raw_amount_hex_str": "0x9e75adabdc2b" + }, + { + "id": "0x68ca006db91312cd60a2238ce775be5f9f738bba", + "chain": "eth", + "name": "$ USDCGift.com", + "symbol": "$ USDCGift.com <- Visit to claim bonus", + "display_symbol": null, + "optimized_symbol": "$ USDCGift.com <- Visit to claim bonus", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668158975, + "amount": 7000, + "raw_amount": 7000, + "raw_amount_hex_str": "0x1b58" + }, + { + "id": "0x68e3266c9c8bbd44ad9dca5afbfe629022aee9fe", + "chain": "eth", + "name": "Balancer wjAURA wETH Pool", + "symbol": "B-wjAura-wETH", + "display_symbol": null, + "optimized_symbol": "B-wjAura-wETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.212142940221112, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681226003, + "amount": 57.93444020901596, + "raw_amount": 57934440209015960000, + "raw_amount_hex_str": "0x324007a6b9780f02a" + }, + { + "id": "0x6987633f18ca0b4a10831331fcc57211941b6ba0", + "chain": "eth", + "name": "20AGI-80WETH", + "symbol": "20AGI-80WETH", + "display_symbol": null, + "optimized_symbol": "20AGI-80WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 116.81344378791886, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682311763, + "amount": 0.768107945264947, + "raw_amount": 768107945264947000, + "raw_amount_hex_str": "0xaa8de1b4aac1ee5" + }, + { + "id": "0x6a556a2c2511e605a6c464ab5dccfdc0b19822e7", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2145.5993801931227, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647837528, + "amount": 0.000017053807901899, + "raw_amount": 17053807901899, + "raw_amount_hex_str": "0xf82a6297ccb" + }, + { + "id": "0x6a5ead5433a50472642cd268e584dafa5a394490", + "chain": "eth", + "name": "Balancer 50wstETH-50LDO", + "symbol": "50WSTETH-50LDO", + "display_symbol": null, + "optimized_symbol": "50WSTETH-50LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 76.95112918222162, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662739551, + "amount": 1.1424535e-11, + "raw_amount": 11424535, + "raw_amount_hex_str": "0xae5317" + }, + { + "id": "0x6a9603e481fb8f2c09804ea9adab49a338855b90", + "chain": "eth", + "name": "Balancer graviAURA Stable Pool", + "symbol": "B-graviAURA-STABLE", + "display_symbol": null, + "optimized_symbol": "B-graviAURA-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.1130601751782112, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666780871, + "amount": 17.256669599237974, + "raw_amount": 17256669599237974000, + "raw_amount_hex_str": "0xef7c01921cdca6be" + }, + { + "id": "0x6ae5a7857aad26722cb02cc168e38c52e0e4e45d", + "chain": "eth", + "name": "Balancer TBY-feb1924 USDC Stable Pool", + "symbol": "TBY-feb1924-USDC-BPT", + "display_symbol": null, + "optimized_symbol": "TBY-feb1924-USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9995644947558746, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693245515, + "amount": 12.22128930722457, + "raw_amount": 12221289307224570000, + "raw_amount_hex_str": "0xa99abddfae66784a" + }, + { + "id": "0x6b175474e89094c44da98b954eedeac495271d0f", + "chain": "eth", + "name": "Dai Stablecoin", + "symbol": "DAI", + "display_symbol": "", + "optimized_symbol": "DAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6b175474e89094c44da98b954eedeac495271d0f/549c4205dbb199f1b8b03af783f35e71.png", + "protocol_id": "makerdao", + "price": 0.99995, + "price_24h_change": -0.0004997751012045139, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1573672677, + "amount": 203.8126505821593, + "raw_amount": 203812650582159330000, + "raw_amount_hex_str": "0xb0c77fddbd86ad3da" + }, + { + "id": "0x6f0ed6f346007563d3266de350d174a831bde0ca", + "chain": "eth", + "name": "Balancer 50KNC-25WETH-25USDC", + "symbol": "50KNC-25WETH-25USDC-BPT", + "display_symbol": null, + "optimized_symbol": "50KNC-25WETH-25USDC-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 5.77165589339043, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693075463, + "amount": 0.3619229357470404, + "raw_amount": 361922935747040400, + "raw_amount_hex_str": "0x505cefe1544d481" + }, + { + "id": "0x6f4906c181e6acb096908238c5ffd088cca6ba9f", + "chain": "eth", + "name": "\"ChadPepe\"", + "symbol": "CPEPE", + "display_symbol": null, + "optimized_symbol": "CPEPE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0527598378299208, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683295967, + "amount": 5801.7304551870375, + "raw_amount": 5.801730455187037e+21, + "raw_amount_hex_str": "0x13a832f261b74b3a787" + }, + { + "id": "0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8", + "chain": "eth", + "name": "Silo Governance Token", + "symbol": "Silo", + "display_symbol": null, + "optimized_symbol": "Silo", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8/09fe11bd3f4cef64f9bd378ba3958402.png", + "protocol_id": "silo", + "price": 0.07248058056342037, + "price_24h_change": -0.019520895009848563, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638296826, + "amount": 7797.383953639318, + "raw_amount": 7.797383953639318e+21, + "raw_amount_hex_str": "0x1a6b270a18632789eff" + }, + { + "id": "0x7056c8dfa8182859ed0d4fb0ef0886fdf3d2edcf", + "chain": "eth", + "name": "Balancer 80OETH/20WETH", + "symbol": "80OETH/20WETH", + "display_symbol": null, + "optimized_symbol": "80OETH/20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1672.5218488683852, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699987895, + "amount": 6.09773e-13, + "raw_amount": 609773, + "raw_amount_hex_str": "0x94ded" + }, + { + "id": "0x70d5e3234f6329c1d5a26796dcf4e109d69a3488", + "chain": "eth", + "name": "Balancer uniETH/wstETH/rETH", + "symbol": "uniETH/wstETH/rETH", + "display_symbol": null, + "optimized_symbol": "uniETH/wstETH/rETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2038.4545915847689, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693833479, + "amount": 0.057635251621896796, + "raw_amount": 57635251621896800, + "raw_amount_hex_str": "0xccc2f4bb76a25c" + }, + { + "id": "0x7152a37bbf363262bad269ec4de2269dd0e84ca3", + "chain": "eth", + "name": "50DC50WETH", + "symbol": "50DC50WETH", + "display_symbol": null, + "optimized_symbol": "50DC50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.4995575680650162, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667605751, + "amount": 1.142e-15, + "raw_amount": 1142, + "raw_amount_hex_str": "0x476" + }, + { + "id": "0x720465a4ae6547348056885060eeb51f9cadb571", + "chain": "eth", + "name": "Element Principal Token yvcrvSTETH-28JAN22", + "symbol": "ePyvcrvSTETH-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvcrvSTETH-28JAN22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 2202.1593489183765, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631804744, + "amount": 0.11136072164257546, + "raw_amount": 111360721642575470, + "raw_amount_hex_str": "0x18ba1fc7f6fd669" + }, + { + "id": "0x724e3073317d4b1a8d0c6e89b137ea5af1f4051e", + "chain": "eth", + "name": "Element Principal Token yvCurve-stETH-24FEB23", + "symbol": "ePyvCurve-stETH-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-stETH-24FEB23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 2202.159348918376, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661789184, + "amount": 0.02671914687826391, + "raw_amount": 26719146878263910, + "raw_amount_hex_str": "0x5eecec2a616266" + }, + { + "id": "0x74e5e53056526b2609d82e85486005ef2a2db001", + "chain": "eth", + "name": "Balancer TruMATIC-MATIC Stable Pool", + "symbol": "TruMATIC-MATIC", + "display_symbol": null, + "optimized_symbol": "TruMATIC-MATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.31832631861286637, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697199371, + "amount": 0.0777906611414486, + "raw_amount": 77790661141448600, + "raw_amount_hex_str": "0x1145e31b42dc79d" + }, + { + "id": "0x758b4684be769e92eefea93f60dda0181ea303ec", + "chain": "eth", + "name": "Phonon DAO", + "symbol": "PHONON", + "display_symbol": null, + "optimized_symbol": "PHONON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x758b4684be769e92eefea93f60dda0181ea303ec/f305fb475c9f724396997a1a9aa3b02d.png", + "protocol_id": "", + "price": 0.00026246093531319723, + "price_24h_change": 0.03806714140386556, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639714953, + "amount": 1090693.6633654584, + "raw_amount": 1.0906936633654584e+24, + "raw_amount_hex_str": "0xe6f69f393830acae8937" + }, + { + "id": "0x759fabc513accd292ada967c4dd7bb94da39232e", + "chain": "eth", + "name": "Balancer 80RATE/20WETH", + "symbol": "80RATE/20WETH-BPT", + "display_symbol": null, + "optimized_symbol": "80RATE/20WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.7576822099134635, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689819743, + "amount": 8.576990780001584, + "raw_amount": 8576990780001583000, + "raw_amount_hex_str": "0x770797abebcb81cf" + }, + { + "id": "0x76e5f9860bd5b8666de322496f114b8a89183a2e", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.8624174786821354, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649095788, + "amount": 0.000741914814615684, + "raw_amount": 741914814615684, + "raw_amount_hex_str": "0x2a2c480fa9084" + }, + { + "id": "0x7758237b1ee34b7e702c5315f562b859481e344b", + "chain": "eth", + "name": "NOVA-WETH", + "symbol": "NOVA-WETH", + "display_symbol": null, + "optimized_symbol": "NOVA-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.7264262883962375, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697488691, + "amount": 3.649306226029704, + "raw_amount": 3649306226029704000, + "raw_amount_hex_str": "0x32a4f0ad7f1f331c" + }, + { + "id": "0x77b692c5ca2cceaeef4dcc959d6c3bd919710b66", + "chain": "eth", + "name": "80BREWSKI-20USDC", + "symbol": "80BREWSKI-20USDC", + "display_symbol": null, + "optimized_symbol": "80BREWSKI-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.00012708892209901954, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685788019, + "amount": 16201.113696626731, + "raw_amount": 1.6201113696626731e+22, + "raw_amount_hex_str": "0x36e439e3de72006d59d" + }, + { + "id": "0x793f2d5cd52dfafe7a1a1b0b3988940ba2d6a63d", + "chain": "eth", + "name": "Balancer vETH StablePool", + "symbol": "B-vETH-STABLE", + "display_symbol": null, + "optimized_symbol": "B-vETH-STABLE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2055.1437670632345, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680627563, + "amount": 0.33558342512528766, + "raw_amount": 335583425125287700, + "raw_amount_hex_str": "0x4a83b58df1a06e8" + }, + { + "id": "0x7966c5bae631294d7cffcea5430b78c2f76db6fa", + "chain": "eth", + "name": "Staked Apecoin", + "symbol": "sAPE", + "display_symbol": null, + "optimized_symbol": "sAPE", + "decimals": 18, + "logo_url": null, + "protocol_id": "tessera", + "price": 2.3891293379523826, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670860487, + "amount": 0.000908881765567925, + "raw_amount": 908881765567925, + "raw_amount_hex_str": "0x33a9f86c78db5" + }, + { + "id": "0x798b112420ad6391a4129ac25ef59663a44c88bb", + "chain": "eth", + "name": "Balancer 50wstETH-50ACX Pool", + "symbol": "wstETH-ACX", + "display_symbol": null, + "optimized_symbol": "wstETH-ACX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 13.277604959211772, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669644575, + "amount": 0.000251668816281154, + "raw_amount": 251668816281154, + "raw_amount_hex_str": "0xe4e436653e42" + }, + { + "id": "0x799ebfabe77a6e34311eeee9825190b9ece32824", + "chain": "eth", + "name": "BTRST", + "symbol": "BTRST", + "display_symbol": null, + "optimized_symbol": "BTRST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x799ebfabe77a6e34311eeee9825190b9ece32824/e6385202dd2bd0c1b0b3d28cb5bc459b.png", + "protocol_id": "", + "price": 0.4445, + "price_24h_change": 0.021609195402298897, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628607475, + "amount": 0.002468405856186437, + "raw_amount": 2468405856186437, + "raw_amount_hex_str": "0x8c50086383045" + }, + { + "id": "0x79c58f70905f734641735bc61e45c19dd9ad60bc", + "chain": "eth", + "name": "Balancer USDC-DAI-USDT Stable Pool", + "symbol": "USDC-DAI-USDT", + "display_symbol": null, + "optimized_symbol": "USDC-DAI-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0051280230936444, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679700419, + "amount": 710.856143901, + "raw_amount": 710856143901000100000, + "raw_amount_hex_str": "0x26891c5899c711675d" + }, + { + "id": "0x79c71d3436f39ce382d0f58f1b011d88100b9d91", + "chain": "eth", + "name": "Xeonbit Token", + "symbol": "XNS", + "display_symbol": null, + "optimized_symbol": "XNS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x79c71d3436f39ce382d0f58f1b011d88100b9d91/46f0db9a119b111002c5f1c8ec7bd156.png", + "protocol_id": "", + "price": 0.011053358985223432, + "price_24h_change": 0.03660705212884858, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1554428953, + "amount": 89.69343767614153, + "raw_amount": 89693437676141530000, + "raw_amount_hex_str": "0x4dcbf1a59aa0dd33d" + }, + { + "id": "0x7a6b87d7a874fce4c2d923b09c0e09e4936bcf57", + "chain": "eth", + "name": "$ USTBonus.com", + "symbol": "$ Visit USTBonus.com to claim", + "display_symbol": null, + "optimized_symbol": "$ Visit USTBonus.com to claim", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669300319, + "amount": 7000, + "raw_amount": 7000, + "raw_amount_hex_str": "0x1b58" + }, + { + "id": "0x7b4328c127b85369d9f82ca0503b000d09cf9180", + "chain": "eth", + "name": "Dogechain Token", + "symbol": "DC", + "display_symbol": null, + "optimized_symbol": "DC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b4328c127b85369d9f82ca0503b000d09cf9180/b3b8446c1a6ee2ef9e7ce6c28d433130.png", + "protocol_id": "", + "price": 0.0009466810944844983, + "price_24h_change": 0.31707808540675714, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1661076494, + "amount": 6331.425637225221, + "raw_amount": 6.331425637225221e+21, + "raw_amount_hex_str": "0x1573a2e77b9c2833e4c" + }, + { + "id": "0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool (USD)", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb2/44cee7bfd13a23eb37912d7da66f18eb.png", + "protocol_id": "balancer2", + "price": 0.0036406849450518327, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1639435704, + "amount": 143.81279664606467, + "raw_amount": 143812796646064670000, + "raw_amount_hex_str": "0x7cbcdb098c42c3de8" + }, + { + "id": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0", + "chain": "eth", + "name": "Matic Token", + "symbol": "MATIC", + "display_symbol": null, + "optimized_symbol": "MATIC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0/20aac20baa9069bd39342edd8c5cc801.png", + "protocol_id": "", + "price": 0.9062, + "price_24h_change": 0.03471112126056175, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1555778052, + "amount": 193.85760036698986, + "raw_amount": 193857600366989840000, + "raw_amount_hex_str": "0xa82508c6ea410a3d2" + }, + { + "id": "0x7d98f308db99fdd04bbf4217a4be8809f38faa64", + "chain": "eth", + "name": "Balancer 80wstETH/20GHO", + "symbol": "80wstETH/20GHO", + "display_symbol": null, + "optimized_symbol": "80wstETH/20GHO", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 402.8250998692385, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689434447, + "amount": 1.0122839914905413, + "raw_amount": 1012283991490541200, + "raw_amount_hex_str": "0xe0c5aed4c9bb6a3" + }, + { + "id": "0x7e4fee0c14673db4f1526fdbea53819e5808a9b5", + "chain": "eth", + "name": "Element Principal Token yvBalancer-BoostedAaveUSD-04MAY23", + "symbol": "ePyvBalancer-BoostedAaveUSD-04MAY23", + "display_symbol": null, + "optimized_symbol": "ePyvBalancer-BoostedAaveUSD-04MAY23", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.00019676749953120227, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667421959, + "amount": 18.26159065163822, + "raw_amount": 18261590651638219000, + "raw_amount_hex_str": "0xfd6e33f1907d8263" + }, + { + "id": "0x7e9afd25f5ec0eb24d7d4b089ae7ecb9651c8b1f", + "chain": "eth", + "name": "baoUSD-LUSD StablePool", + "symbol": "B-baoUSD-LUSD-BPT", + "display_symbol": null, + "optimized_symbol": "B-baoUSD-LUSD-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.485114350125791, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681222379, + "amount": 109.79811352280969, + "raw_amount": 109798113522809680000, + "raw_amount_hex_str": "0x5f3c142837f15ba13" + }, + { + "id": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0", + "symbol": "wstETH", + "display_symbol": null, + "optimized_symbol": "wstETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0/7e931af8cb34b6f5671ca2eb1b847849.png", + "protocol_id": "lido", + "price": 2337.534383310159, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1613752640, + "amount": 0.7235780215849041, + "raw_amount": 723578021584904100, + "raw_amount_hex_str": "0xa0aaa607fd91fb9" + }, + { + "id": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "chain": "eth", + "name": "Aave Token", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9/eee087b66747b09dbfb4ba0b34fd3697.png", + "protocol_id": "aave", + "price": 95.29601048992458, + "price_24h_change": 0.08329468139170089, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600970788, + "amount": 2.8490033810217996, + "raw_amount": 2849003381021800000, + "raw_amount_hex_str": "0x2789b17af9b0f540" + }, + { + "id": "0x7fce0080031e3639cb8b40e21ea59f8f3d840935", + "chain": "eth", + "name": "Eva Token", + "symbol": "EVA", + "display_symbol": null, + "optimized_symbol": "EVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676596199, + "amount": 3331120.881749351, + "raw_amount": 3.331120881749351e+24, + "raw_amount_hex_str": "0x2c1646cc2543322b14f35" + }, + { + "id": "0x808507121b80c02388fad14726482e061b8da827", + "chain": "eth", + "name": "Pendle", + "symbol": "PENDLE", + "display_symbol": null, + "optimized_symbol": "PENDLE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x808507121b80c02388fad14726482e061b8da827/b9351f830cd0a6457e489b8c685f29ad.png", + "protocol_id": "pendle", + "price": 1.0955664795138105, + "price_24h_change": 0.07954417904019524, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619495943, + "amount": 0.18985326143748185, + "raw_amount": 189853261437481860, + "raw_amount_hex_str": "0x2a27e890f6e3370" + }, + { + "id": "0x809d62f1c6e35720fd88df1c9fa7dec82b6ada52", + "chain": "eth", + "name": "ASAHI", + "symbol": "SUN", + "display_symbol": null, + "optimized_symbol": "SUN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650730353, + "amount": 197971097.59001258, + "raw_amount": 1.979710975900126e+26, + "raw_amount_hex_str": "0xa3c202b46f2fc6d175b1de" + }, + { + "id": "0x81b7f92c7b7d9349b989b4982588761bfa1aa627", + "chain": "eth", + "name": "4Pool Chainlink V2", + "symbol": "BUSD-DAI-USDC-BPT-USDT", + "display_symbol": null, + "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.540599791914231, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669068491, + "amount": 5.25596e-13, + "raw_amount": 525596, + "raw_amount_hex_str": "0x8051c" + }, + { + "id": "0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321", + "chain": "eth", + "name": "VitaDAO Token", + "symbol": "VITA", + "display_symbol": null, + "optimized_symbol": "VITA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321/ed46cc2757ddd792be9ec3b7218ef336.png", + "protocol_id": "", + "price": 2.4341028640047706, + "price_24h_change": 0.05013554806324002, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623977434, + "amount": 0.09269945761782954, + "raw_amount": 92699457617829540, + "raw_amount_hex_str": "0x14955aa622e9ea7" + }, + { + "id": "0x8290333cef9e6d528dd5618fb97a76f268f3edd4", + "chain": "eth", + "name": "Ankr Network", + "symbol": "ANKR", + "display_symbol": null, + "optimized_symbol": "ANKR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8290333cef9e6d528dd5618fb97a76f268f3edd4/7184a29596bf7517a912b57ce6797562.png", + "protocol_id": "ankr", + "price": 0.02601071366443088, + "price_24h_change": -0.025762528512165043, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1550710665, + "amount": 8492.055815610045, + "raw_amount": 8.492055815610046e+21, + "raw_amount_hex_str": "0x1cc5af2db7512e50e04" + }, + { + "id": "0x8334215586e93ee85e3f1a281eaf66e52015754d", + "chain": "eth", + "name": "50WETH-50FIEF", + "symbol": "50WETH-50FIEF", + "display_symbol": null, + "optimized_symbol": "50WETH-50FIEF", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.567428307138624, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687974707, + "amount": 1.9393936932856752, + "raw_amount": 1939393693285675300, + "raw_amount_hex_str": "0x1aea1c49e7ecf10d" + }, + { + "id": "0x8353157092ed8be69a9df8f95af097bbf33cb2af", + "chain": "eth", + "name": "Balancer GHO/USDT/USDC", + "symbol": "GHO/USDT/USDC", + "display_symbol": null, + "optimized_symbol": "GHO/USDT/USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9749862315957375, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692910907, + "amount": 1136.1991015367157, + "raw_amount": 1.1361991015367157e+21, + "raw_amount_hex_str": "0x3d97ee1701bdec9a9b" + }, + { + "id": "0x83d392a7be901892a8c861c96ea430b8d9c2bd51", + "chain": "eth", + "name": "Element Principal Token yvCurve-LUSD-16SEP22", + "symbol": "ePyvCurve-LUSD-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-LUSD-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.024954878657951, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650388639, + "amount": 31.23523832948818, + "raw_amount": 31235238329488180000, + "raw_amount_hex_str": "0x1b179dbc4efcefd6d" + }, + { + "id": "0x853d955acef822db058eb8505911ed77f175b99e", + "chain": "eth", + "name": "Frax", + "symbol": "FRAX", + "display_symbol": null, + "optimized_symbol": "FRAX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x853d955acef822db058eb8505911ed77f175b99e/4f323e33bfffa864c577e7bd2a3257c9.png", + "protocol_id": "frax", + "price": 0.9993510276360171, + "price_24h_change": -0.00004247693420976076, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1608140520, + "amount": 25.27221215404488, + "raw_amount": 25272212154044880000, + "raw_amount_hex_str": "0x15eb8ef0e62279189" + }, + { + "id": "0x865377367054516e17014ccded1e7d814edc9ce4", + "chain": "eth", + "name": "Dola USD Stablecoin", + "symbol": "DOLA", + "display_symbol": null, + "optimized_symbol": "DOLA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x865377367054516e17014ccded1e7d814edc9ce4/0c348eedfa7f89d3db2919e0a18988ea.png", + "protocol_id": "inverse", + "price": 0.9964277035728978, + "price_24h_change": -0.001040927049496578, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614116357, + "amount": 769.4258278168398, + "raw_amount": 769425827816839800000, + "raw_amount_hex_str": "0x29b5eda9ce819c7b61" + }, + { + "id": "0x866ec9652fa462f17f89684f8cc5297e0e438065", + "chain": "eth", + "name": "# paxos.gift", + "symbol": "Visit https://paxos.gift to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit https://paxos.gift to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1699155551, + "amount": 1.4, + "raw_amount": 1400000, + "raw_amount_hex_str": "0x155cc0" + }, + { + "id": "0x87a867f5d240a782d43d90b6b06dea470f3f8f22", + "chain": "eth", + "name": "Balancer 50COMP-50wstETH BPT", + "symbol": "B-50COMP-50wstETH", + "display_symbol": null, + "optimized_symbol": "B-50COMP-50wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 367.3436930550798, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681328963, + "amount": 0.18587994083642212, + "raw_amount": 185879940836422100, + "raw_amount_hex_str": "0x29460d2446cf1ec" + }, + { + "id": "0x8888801af4d980682e47f1a9036e589479e835c5", + "chain": "eth", + "name": "88mph.app", + "symbol": "MPH", + "display_symbol": null, + "optimized_symbol": "MPH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8888801af4d980682e47f1a9036e589479e835c5/32058e0e8684004754562c90f458e744.png", + "protocol_id": "88mph2", + "price": 0.4976127273255672, + "price_24h_change": 0.03412728967417736, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1605809018, + "amount": 414.0804824675657, + "raw_amount": 414080482467565670000, + "raw_amount_hex_str": "0x16728564e96d9e2038" + }, + { + "id": "0x888888435fde8e7d4c54cab67f206e4199454c60", + "chain": "eth", + "name": "DFX Token", + "symbol": "DFX", + "display_symbol": null, + "optimized_symbol": "DFX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x888888435fde8e7d4c54cab67f206e4199454c60/eaad30c2bb118c5cfee13eac513aa1a8.png", + "protocol_id": "dfx", + "price": 0.1322424815266367, + "price_24h_change": 0.18015928953661436, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1610615371, + "amount": 857.3871887489197, + "raw_amount": 857387188748919800000, + "raw_amount_hex_str": "0x2e7aa33188fe277446" + }, + { + "id": "0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab", + "chain": "eth", + "name": "Alchemist", + "symbol": "⚗️", + "display_symbol": "MIST", + "optimized_symbol": "MIST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab/bd99a167b17de42b302a00d8ec78f32f.png", + "protocol_id": "crucible", + "price": 0.9935984653305083, + "price_24h_change": 0.026520358239917788, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612643126, + "amount": 11.493286646362273, + "raw_amount": 11493286646362274000, + "raw_amount_hex_str": "0x9f805b4f9229f606" + }, + { + "id": "0x89045d0af6a12782ec6f701ee6698beaf17d0ea2", + "chain": "eth", + "name": "iUPixel", + "symbol": "PIXEL", + "display_symbol": null, + "optimized_symbol": "PIXEL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x89045d0af6a12782ec6f701ee6698beaf17d0ea2/964c07a3fb571d24f5aa601e9d3fe80f.png", + "protocol_id": "", + "price": 0.00031149702744957575, + "price_24h_change": 0.034172917088992644, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602981698, + "amount": 460337.16721424105, + "raw_amount": 4.603371672142411e+23, + "raw_amount_hex_str": "0x617aed86d282c31957db" + }, + { + "id": "0x8987a07ba83607a66c7351266e771fb865c9ca6c", + "chain": "eth", + "name": "Cage Governance Token", + "symbol": "CGT", + "display_symbol": null, + "optimized_symbol": "CGT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x8987a07ba83607a66c7351266e771fb865c9ca6c/c80a5505fccd765c0a1ba4b67a6e4e3d.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1637143700, + "amount": 15.790961789893558, + "raw_amount": 15790961789893558000, + "raw_amount_hex_str": "0xdb24c415745f3ee7" + }, + { + "id": "0x8a2228705ec979961f0e16df311debcf097a2766", + "chain": "eth", + "name": "Element Principal Token yvUSDC-28JAN22", + "symbol": "ePyvUSDC-28JAN22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-28JAN22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 1.0000000000000002, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1631632129, + "amount": 31.567058, + "raw_amount": 31567058, + "raw_amount_hex_str": "0x1e1acd2" + }, + { + "id": "0x8b66c529148690891a187379dbdb2873a4e0c449", + "chain": "eth", + "name": "Moonerium", + "symbol": "Moonerium", + "display_symbol": null, + "optimized_symbol": "Moonerium", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 46.33455574071873, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684417919, + "amount": 0.001408899266208972, + "raw_amount": 1408899266208972, + "raw_amount_hex_str": "0x50162ec4964cc" + }, + { + "id": "0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0", + "chain": "eth", + "name": "Balancer 50TEMPLE-50DAI", + "symbol": "50TEMPLE-50DAI", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0491589886365613, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680238631, + "amount": 451.6655148843032, + "raw_amount": 451665514884303200000, + "raw_amount_hex_str": "0x187c1e40c2c4ccd808" + }, + { + "id": "0x8c5f3c967eef7da094582d831fb1c80f92ecf5dd", + "chain": "eth", + "name": "50SNT-50WETH", + "symbol": "50SNT-50WETH", + "display_symbol": null, + "optimized_symbol": "50SNT-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 9.555059101795326, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677476783, + "amount": 4.507904505321695, + "raw_amount": 4507904505321694700, + "raw_amount_hex_str": "0x3e8f4b43811526e3" + }, + { + "id": "0x8d6cebd76f18e1558d4db88138e2defb3909fad6", + "chain": "eth", + "name": "Mai Stablecoin", + "symbol": "MAI", + "display_symbol": null, + "optimized_symbol": "MAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mai/295a642804394964de762d65824294cf.png", + "protocol_id": "mai", + "price": 0.7729075869281218, + "price_24h_change": 0.0025920174748138886, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1658859288, + "amount": 0.007052559459577903, + "raw_amount": 7052559459577903, + "raw_amount_hex_str": "0x190e43f558702f" + }, + { + "id": "0x8d7acc5d07818f187ab70b6033c690fd67c96d98", + "chain": "eth", + "name": "PlannerDAO", + "symbol": "PLAN", + "display_symbol": null, + "optimized_symbol": "PLAN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621455716, + "amount": 11.085849251675613, + "raw_amount": 11085849251675613000, + "raw_amount_hex_str": "0x99d8d928b7a7aaad" + }, + { + "id": "0x8e6c196e201942246cef85718c5d3a5622518053", + "chain": "eth", + "name": "Balancer 80 LE 20 WETH", + "symbol": "B-80LE-20WETH", + "display_symbol": null, + "optimized_symbol": "B-80LE-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.19178206985463944, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1688136155, + "amount": 6.233801427684616, + "raw_amount": 6233801427684616000, + "raw_amount_hex_str": "0x5682e95ed176e6d1" + }, + { + "id": "0x8e85e97ed19c0fa13b2549309965291fbbc0048b", + "chain": "eth", + "name": "sfrxETH-stETH-rETH StablePool", + "symbol": "sfrxETH-stETH-rETH-BPT", + "display_symbol": null, + "optimized_symbol": "sfrxETH-stETH-rETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2131.421253732058, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667418911, + "amount": 6.9161748152e-8, + "raw_amount": 69161748152, + "raw_amount_hex_str": "0x101a5c86b8" + }, + { + "id": "0x8ed9e70bfa17a1e2c4f8e561c8d0c2d1acc092fa", + "chain": "eth", + "name": "33LCNY-33LUSD-33WETH", + "symbol": "33LCNY-33LUSD-33WETH", + "display_symbol": null, + "optimized_symbol": "33LCNY-33LUSD-33WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 7.502559397231865, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692519623, + "amount": 1.930678182506807, + "raw_amount": 1930678182506806800, + "raw_amount_hex_str": "0x1acb2593ebea3e33" + }, + { + "id": "0x9001cbbd96f54a658ff4e6e65ab564ded76a5431", + "chain": "eth", + "name": "Balancer cbETH-Boosted Aave WETH StablePool", + "symbol": "cbETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "cbETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2056.1599130918066, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680874919, + "amount": 0.35409415617982215, + "raw_amount": 354094156179822200, + "raw_amount_hex_str": "0x4e9fec24c23d660" + }, + { + "id": "0x900db999074d9277c5da2a43f252d74366230da0", + "chain": "eth", + "name": "Giveth", + "symbol": "GIV", + "display_symbol": null, + "optimized_symbol": "GIV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x900db999074d9277c5da2a43f252d74366230da0/48a1779d740e93397c6204755092a146.png", + "protocol_id": "giveth", + "price": 0.008823190473421548, + "price_24h_change": -0.026470693489453037, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639666178, + "amount": 7019.957242057263, + "raw_amount": 7.019957242057263e+21, + "raw_amount_hex_str": "0x17c8d7a1e52d607759f" + }, + { + "id": "0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc", + "chain": "eth", + "name": "MIMO Parallel Governance Token", + "symbol": "MIMO", + "display_symbol": null, + "optimized_symbol": "MIMO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/coin/logo_url/mimo/6af9a128dea021ebe53a281780a7ebb5.png", + "protocol_id": "mimo", + "price": 0.01142324, + "price_24h_change": -0.05472985105874166, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1615370586, + "amount": 16273.402308473538, + "raw_amount": 1.6273402308473538e+22, + "raw_amount_hex_str": "0x3722ed2fb60430b109a" + }, + { + "id": "0x90eeee265528fa9aa620c19d45c644655de1fa81", + "chain": "eth", + "name": "Eva Token", + "symbol": "EVA", + "display_symbol": null, + "optimized_symbol": "EVA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 7.112912828184389e-8, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675064363, + "amount": 16052929.27629729, + "raw_amount": 1.605292927629729e+25, + "raw_amount_hex_str": "0xd47570a30b7e9bda1bd1b" + }, + { + "id": "0x92915c346287ddfbcec8f86c8eb52280ed05b3a3", + "chain": "eth", + "name": "Amplesense Elastic Finance token", + "symbol": "EEFI", + "display_symbol": null, + "optimized_symbol": "EEFI", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 1.7045316408799496, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1644855585, + "amount": 133.18463722073648, + "raw_amount": 133184637220736480000, + "raw_amount_hex_str": "0x7384ee1e8e9442777" + }, + { + "id": "0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd", + "chain": "eth", + "name": "Balancer wstETH-WETH Stable Pool", + "symbol": "wstETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "wstETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2042.0332038559181, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692039167, + "amount": 4.111391710714947, + "raw_amount": 4111391710714946600, + "raw_amount_hex_str": "0x390e98fa51a66315" + }, + { + "id": "0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593", + "chain": "eth", + "name": "StaFi", + "symbol": "rETH", + "display_symbol": null, + "optimized_symbol": "rETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593/1f7543f59d45f4b362c6d1802dcd1b00.png", + "protocol_id": "stafi", + "price": 2181.1163876116866, + "price_24h_change": 0.03653485038901109, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611803201, + "amount": 0.4834834807429825, + "raw_amount": 483483480742982460, + "raw_amount_hex_str": "0x6b5adaa04747339" + }, + { + "id": "0x959216bb492b2efa72b15b7aacea5b5c984c3cca", + "chain": "eth", + "name": "Balancer 50wstETH-50Tessera-Boosted-APE", + "symbol": "50wstETH-50stk-APE", + "display_symbol": null, + "optimized_symbol": "50wstETH-50stk-APE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 62.47702299992992, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675958315, + "amount": 0.000049988662366821, + "raw_amount": 49988662366821, + "raw_amount_hex_str": "0x2d76e4769265" + }, + { + "id": "0x95a4492f028aa1fd432ea71146b433e7b4446611", + "chain": "eth", + "name": "APY Governance Token", + "symbol": "APY", + "display_symbol": null, + "optimized_symbol": "APY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x95a4492f028aa1fd432ea71146b433e7b4446611/31f5a55b09524c2f39c8fbab8b9eb25d.png", + "protocol_id": "apy", + "price": 0.0015573769032323982, + "price_24h_change": -0.018069423657349898, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1604545092, + "amount": 5.32007461666674, + "raw_amount": 5320074616666740000, + "raw_amount_hex_str": "0x49d4b3ad48fe5524" + }, + { + "id": "0x95f1a3ca4af4d08b9c42d65ef07b66e8222ed85a", + "chain": "eth", + "name": "50somm-50WETH", + "symbol": "50somm-50WETH", + "display_symbol": null, + "optimized_symbol": "50somm-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 17.543147303477294, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691465927, + "amount": 11.162820569766506, + "raw_amount": 11162820569766504000, + "raw_amount_hex_str": "0x9aea4e2a405b2b7a" + }, + { + "id": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", + "chain": "eth", + "name": "TenX Community JAPAN", + "symbol": "TXJP", + "display_symbol": null, + "optimized_symbol": "TXJP", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 75.7228775747589, + "price_24h_change": 0.034593553618487684, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1508827879, + "amount": 0.72110039, + "raw_amount": 72110039, + "raw_amount_hex_str": "0x44c4fd7" + }, + { + "id": "0x965d79f1a1016b574a62986e13ca8ab04dfdd15c", + "chain": "eth", + "name": "M2", + "symbol": "M2", + "display_symbol": null, + "optimized_symbol": "M2", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x965d79f1a1016b574a62986e13ca8ab04dfdd15c/9c4c98bb688cad9d0775e42311676045.png", + "protocol_id": "m2cash", + "price": 0.0007566146877550937, + "price_24h_change": 0.04176743170210352, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619741983, + "amount": 279.58216405678513, + "raw_amount": 279582164056785160000, + "raw_amount_hex_str": "0xf27fb60eb7ba9fcc6" + }, + { + "id": "0x97e6e31afb2d93d437301e006d9da714616766a5", + "chain": "eth", + "name": "Midas", + "symbol": "MIDAS", + "display_symbol": null, + "optimized_symbol": "MIDAS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x97e6e31afb2d93d437301e006d9da714616766a5/9804ef6af458909c9f41570042527eaa.png", + "protocol_id": "", + "price": 0, + "price_24h_change": 0.17733797952296151, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1667822315, + "amount": 1.4449879581191298, + "raw_amount": 1444987958119129900, + "raw_amount_hex_str": "0x140da0e45c686335" + }, + { + "id": "0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63", + "chain": "eth", + "name": "SONM Token", + "symbol": "SNM", + "display_symbol": null, + "optimized_symbol": "SNM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/token/logo_url/0x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63/c1fdffa2e62a946fda0b8142da1aee6c.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1497526685, + "amount": 70.76889600927694, + "raw_amount": 70768896009276940000, + "raw_amount_hex_str": "0x3d61d9ff88382e0ce" + }, + { + "id": "0x99c88ad7dc566616548adde8ed3effa730eb6c34", + "chain": "eth", + "name": "Balancer Gearboox Boosted StablePool", + "symbol": "bb-g-USD", + "display_symbol": null, + "optimized_symbol": "bb-g-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.016027341685315867, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676566427, + "amount": 693.3828488214735, + "raw_amount": 693382848821473600000, + "raw_amount_hex_str": "0x25969ebb4da84f2f90" + }, + { + "id": "0x9b532ab955417afd0d012eb9f7389457cd0ea712", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.23350370134479592, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660860422, + "amount": 0.020381305014858703, + "raw_amount": 20381305014858704, + "raw_amount_hex_str": "0x4868b05d7833d0" + }, + { + "id": "0x9b692f571b256140a39a34676bffa30634c586e1", + "chain": "eth", + "name": "Balancer Idle JuniorBY Boosted StablePool", + "symbol": "bb-i-USD", + "display_symbol": null, + "optimized_symbol": "bb-i-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9907541576179829, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689516275, + "amount": 16.970204340500405, + "raw_amount": 16970204340500406000, + "raw_amount_hex_str": "0xeb8246ef89519d02" + }, + { + "id": "0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050", + "chain": "eth", + "name": "Tracer", + "symbol": "TCR", + "display_symbol": null, + "optimized_symbol": "TCR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050/9b533f8265c54ab60417e8e06767c30c.png", + "protocol_id": "", + "price": 0.00040484637877701176, + "price_24h_change": 0.0340733458667573, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1609975395, + "amount": 0.001036534736409761, + "raw_amount": 1036534736409761, + "raw_amount_hex_str": "0x3aeb90cc2d4a1" + }, + { + "id": "0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd", + "chain": "eth", + "name": "80Silo-20WETH", + "symbol": "80Silo-20WETH", + "display_symbol": null, + "optimized_symbol": "80Silo-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.46946861122758826, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678213451, + "amount": 2335.120957563176, + "raw_amount": 2.335120957563176e+21, + "raw_amount_hex_str": "0x7e96502ae7131bb3d5" + }, + { + "id": "0x9d1089802ee608ba84c5c98211afe5f37f96b36c", + "chain": "eth", + "name": "Fluid USDC", + "symbol": "fUSDC", + "display_symbol": null, + "optimized_symbol": "fUSDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9d1089802ee608ba84c5c98211afe5f37f96b36c/acda24faa880ba0b7dd1ac519dc945a6.png", + "protocol_id": "fluidity", + "price": 1.0052341311647672, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1662012933, + "amount": 0.017477, + "raw_amount": 17477, + "raw_amount_hex_str": "0x4445" + }, + { + "id": "0x9f41a3d1ec37090e52a9102b24bc6921a813925f", + "chain": "eth", + "name": "Sense Space 1st June 2027 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-06-2027:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2027:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1480.6567353784249, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659544897, + "amount": 0.03945322234666871, + "raw_amount": 39453222346668710, + "raw_amount_hex_str": "0x8c2a7f2737baa5" + }, + { + "id": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "chain": "eth", + "name": "Maker", + "symbol": "MKR", + "display_symbol": null, + "optimized_symbol": "MKR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2/1d0390168de63ca803e8db7990e4f6ec.png", + "protocol_id": "makerdao", + "price": 1418.700105349409, + "price_24h_change": 0.04296094072401769, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1511634257, + "amount": 0.8985450701744513, + "raw_amount": 898545070174451300, + "raw_amount_hex_str": "0xc7845fb0a6d368e" + }, + { + "id": "0x9f9d900462492d4c21e9523ca95a7cd86142f298", + "chain": "eth", + "name": "Balancer 50rETH-50RPL", + "symbol": "50rETH-50RPL", + "display_symbol": null, + "optimized_symbol": "50rETH-50RPL", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 253.753564067028, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675890263, + "amount": 2.811060573243491, + "raw_amount": 2811060573243491000, + "raw_amount_hex_str": "0x2702e4b29e48c1ce" + }, + { + "id": "0xa00486f88c98e2131e043e6b28fa53d46db7e6c7", + "chain": "eth", + "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-12-2022:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2122.0691087229593, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652967472, + "amount": 0.03866396606896321, + "raw_amount": 38663966068963210, + "raw_amount_hex_str": "0x895cac1b25f789" + }, + { + "id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "chain": "eth", + "name": "USD Coin", + "symbol": "USDC", + "display_symbol": null, + "optimized_symbol": "USDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdc/e87790bfe0b3f2ea855dc29069b38818.png", + "protocol_id": "", + "price": 1, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1533324504, + "amount": 403.583219, + "raw_amount": 403583219, + "raw_amount_hex_str": "0x180e30f3" + }, + { + "id": "0xa13a9247ea42d743238089903570127dda72fe44", + "chain": "eth", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa13a9247ea42d743238089903570127dda72fe44/44cee7bfd13a23eb37912d7da66f18eb.png", + "protocol_id": "balancer2", + "price": 0.00019676749953120233, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662537668, + "amount": 15.771330510513138, + "raw_amount": 15771330510513138000, + "raw_amount_hex_str": "0xdadf058a0a6a6a4a" + }, + { + "id": "0xa279dab6ec190ee4efce7da72896eb58ad533262", + "chain": "eth", + "name": "yfu.finance", + "symbol": "YFU", + "display_symbol": null, + "optimized_symbol": "YFU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa279dab6ec190ee4efce7da72896eb58ad533262/4cae6b44cb432fd05b4ed4b6986bbc86.png", + "protocol_id": "", + "price": 0.0063396175131514125, + "price_24h_change": 0.03464053282201897, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1600162041, + "amount": 18228.89948742489, + "raw_amount": 1.822889948742489e+22, + "raw_amount_hex_str": "0x3dc30cc8ef6d4b77ab8" + }, + { + "id": "0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9", + "chain": "eth", + "name": "Tempus", + "symbol": "TEMP", + "display_symbol": null, + "optimized_symbol": "TEMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9/9d092f467bded810ccd2a1f8a7a341b3.png", + "protocol_id": "raft", + "price": 0.013468437385015377, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635510955, + "amount": 8.442455644432426, + "raw_amount": 8442455644432427000, + "raw_amount_hex_str": "0x7529a0adb662e7eb" + }, + { + "id": "0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2", + "chain": "eth", + "name": "Meta", + "symbol": "MTA", + "display_symbol": null, + "optimized_symbol": "MTA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2/17557a59ad21559db3e23e16ec1a16bd.png", + "protocol_id": "mstable", + "price": 0.031405351297750475, + "price_24h_change": 0.06189920754569778, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594635836, + "amount": 15213.74562970801, + "raw_amount": 1.521374562970801e+22, + "raw_amount_hex_str": "0x338bd2234572983c833" + }, + { + "id": "0xa68ccd2c3805c175c9f9caf30ae497e173dab30e", + "chain": "eth", + "name": "Sense Space 1st July 2023 cUSDC Sense Principal Token, A9", + "symbol": "SPACE-sP-cUSDC:01-07-2023:9", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-cUSDC:01-07-2023:9", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.6461484765935225, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660068889, + "amount": 91.58003837353839, + "raw_amount": 91580038373538380000, + "raw_amount_hex_str": "0x4f6eda7b05b65c726" + }, + { + "id": "0xa718042e5622099e5f0ace4e7122058ab39e1bbe", + "chain": "eth", + "name": "Balancer 50TEMPLE-50bb-euler-USD", + "symbol": "50TEMPLE-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50TEMPLE-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0529205912027233, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675960415, + "amount": 0.006724969309434162, + "raw_amount": 6724969309434162, + "raw_amount_hex_str": "0x17e452eed07132" + }, + { + "id": "0xa9dd57145ca13a2f05199d85e3f2739af6478427", + "chain": "eth", + "name": "80TBTC-20WBTC", + "symbol": "80TBTC-20WBTC", + "display_symbol": null, + "optimized_symbol": "80TBTC-20WBTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 30798.97132650741, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691731199, + "amount": 0.000021838039836179, + "raw_amount": 21838039836179, + "raw_amount_hex_str": "0x13dc909b6613" + }, + { + "id": "0xab3af7f0c93ec60bce469649bfefda0de0980993", + "chain": "eth", + "name": "$ rEthLP.com", + "symbol": "$ rEthLP.com", + "display_symbol": null, + "optimized_symbol": "$ rEthLP.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687618163, + "amount": 5000, + "raw_amount": 5000, + "raw_amount_hex_str": "0x1388" + }, + { + "id": "0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf", + "chain": "eth", + "name": "Paladin Token", + "symbol": "PAL", + "display_symbol": null, + "optimized_symbol": "PAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf/445fbd915f5573ff4783b39329ca7bc1.png", + "protocol_id": "paladin", + "price": 0.13338667316674863, + "price_24h_change": 0.035108185147239346, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635408659, + "amount": 1185.6781644171872, + "raw_amount": 1.1856781644171874e+21, + "raw_amount_hex_str": "0x404697088b97a61700" + }, + { + "id": "0xabe580e7ee158da464b51ee1a83ac0289622e6be", + "chain": "eth", + "name": "Offshift", + "symbol": "XFT", + "display_symbol": null, + "optimized_symbol": "XFT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xabe580e7ee158da464b51ee1a83ac0289622e6be/ee34c8bec4551ca91087ef18d8337273.png", + "protocol_id": "", + "price": 0.46839940880418957, + "price_24h_change": 0.030722014052720265, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1594831562, + "amount": 157.62779756475396, + "raw_amount": 157627797564753940000, + "raw_amount_hex_str": "0x88b866ebcbe57bb5c" + }, + { + "id": "0xad0e5e0778cac28f1ff459602b31351871b5754a", + "chain": "eth", + "name": "BPT-EURS-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0512571903014571, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668652895, + "amount": 739.4887216505659, + "raw_amount": 739488721650565900000, + "raw_amount_hex_str": "0x281677b25cadb2bf3d" + }, + { + "id": "0xae78736cd615f374d3085123a210448e74fc6393", + "chain": "eth", + "name": "Rocket Pool ETH", + "symbol": "rETH", + "display_symbol": null, + "optimized_symbol": "rETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xae78736cd615f374d3085123a210448e74fc6393/0a56aa87c04449332f88702b2bd5f45c.png", + "protocol_id": "rocketpool", + "price": 2224.00760993641, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1632980684, + "amount": 0.7188274541014031, + "raw_amount": 718827454101403100, + "raw_amount_hex_str": "0x9f9c9c2d08335ce" + }, + { + "id": "0xae8535c23afedda9304b03c68a3563b75fc8f92b", + "chain": "eth", + "name": "swETH/Boosted Aave v3 WETH", + "symbol": "swETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2052.1309551199215, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689520463, + "amount": 0.000001469001331326, + "raw_amount": 1469001331326, + "raw_amount_hex_str": "0x156074d727e" + }, + { + "id": "0xb17548c7b510427baac4e267bea62e800b247173", + "chain": "eth", + "name": "Swarm Markets", + "symbol": "SMT", + "display_symbol": null, + "optimized_symbol": "SMT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb17548c7b510427baac4e267bea62e800b247173/9582e5b9b72518371bb342c0efc49c1f.png", + "protocol_id": "swarm", + "price": 0.1390314281799533, + "price_24h_change": 0.03385134170208616, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1625232545, + "amount": 1108.1762058273564, + "raw_amount": 1.1081762058273564e+21, + "raw_amount_hex_str": "0x3c1308c3d4afbe27b4" + }, + { + "id": "0xb209468fc8c99360657d48238e1a7cf0b13362b6", + "chain": "eth", + "name": "80SWIV-20WETH", + "symbol": "80SWIV-20WETH", + "display_symbol": null, + "optimized_symbol": "80SWIV-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.15275535112288469, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695750107, + "amount": 47.676032167405076, + "raw_amount": 47676032167405080000, + "raw_amount_hex_str": "0x295a34aa86646bf6e" + }, + { + "id": "0xb4efd85c19999d84251304bda99e90b92300bd93", + "chain": "eth", + "name": "Rocket Pool", + "symbol": "RPL", + "display_symbol": "RPL(old)", + "optimized_symbol": "RPL(old)", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb4efd85c19999d84251304bda99e90b92300bd93/0dac0c5e1dd543fb62581f0756e0b11f.png", + "protocol_id": "rocketpool", + "price": 29.316796828265527, + "price_24h_change": 0.04240542310366358, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1504750041, + "amount": 0.0086061706836381, + "raw_amount": 8606170683638101, + "raw_amount_hex_str": "0x1e934442798155" + }, + { + "id": "0xb53ecf1345cabee6ea1a65100ebb153cebcac40f", + "chain": "eth", + "name": "Childhoods End", + "symbol": "O", + "display_symbol": null, + "optimized_symbol": "O", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb53ecf1345cabee6ea1a65100ebb153cebcac40f/996bd647276bd1415dae387fb97044c0.png", + "protocol_id": "", + "price": 0.000019542668185698964, + "price_24h_change": 0.21441481215462568, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1650383811, + "amount": 155.7903179917363, + "raw_amount": 155790317991736300000, + "raw_amount_hex_str": "0x8720664cd0e96cdbc" + }, + { + "id": "0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a03", + "chain": "eth", + "name": "Balancer vETH/WETH StablePool", + "symbol": "vETH/WETH BPT", + "display_symbol": null, + "optimized_symbol": "vETH/WETH BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2042.1620424927403, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689519911, + "amount": 0.09890653535424314, + "raw_amount": 98906535354243140, + "raw_amount_hex_str": "0x15f62f849c1183d" + }, + { + "id": "0xb5e3de837f869b0248825e0175da73d4e8c3db6b", + "chain": "eth", + "name": "Balancer 50rETH-50bb-euler-USD", + "symbol": "50rETH-50bb-euler-USD", + "display_symbol": null, + "optimized_symbol": "50rETH-50bb-euler-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 64.6569802725722, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675959503, + "amount": 0.00013530571635119, + "raw_amount": 135305716351190, + "raw_amount_hex_str": "0x7b0f5128c0d6" + }, + { + "id": "0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206", + "chain": "eth", + "name": "Nexo", + "symbol": "NEXO", + "display_symbol": null, + "optimized_symbol": "NEXO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206/0fed72ccc71d9596a9c90536c8da2b95.png", + "protocol_id": "", + "price": 0.752719052536203, + "price_24h_change": 0.06198881833042275, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1524250249, + "amount": 676.4372781409888, + "raw_amount": 676437278140988800000, + "raw_amount_hex_str": "0x24ab73f88d09bea141" + }, + { + "id": "0xb65df73fc4f6591ebe00494a4bd47ed339a81210", + "chain": "eth", + "name": "AAA METAVERSE TOKEN", + "symbol": "AMT", + "display_symbol": null, + "optimized_symbol": "AMT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.002818628812532829, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653030386, + "amount": 562.5772921108754, + "raw_amount": 562577292110875460000, + "raw_amount_hex_str": "0x1e7f540a8339e63546" + }, + { + "id": "0xb7dff8b71e62bff9f850795bcea61ffbca7c87a3", + "chain": "eth", + "name": "Sense Space 1st Dec 2022 wstETH Sense Principal Token, A8", + "symbol": "SPACE-sP-wstETH:01-12-2022:8", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-12-2022:8", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2111.3455055502645, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659543677, + "amount": 0.016823993980989112, + "raw_amount": 16823993980989112, + "raw_amount_hex_str": "0x3bc55558f0aeb9" + }, + { + "id": "0xb83809806a076a1413437ea3e553d6bf41993a21", + "chain": "eth", + "name": "Element Principal Token yvUSDC-24FEB23", + "symbol": "ePyvUSDC-24FEB23", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-24FEB23", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 0.999999045806079, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661486935, + "amount": 16.087236, + "raw_amount": 16087236, + "raw_amount_hex_str": "0xf578c4" + }, + { + "id": "0xb8e2cbb2455e80ad0eb536ae30a5290bdd7baa91", + "chain": "eth", + "name": "80BREWSKI-20WETH", + "symbol": "80BREWSKI-20WETH", + "display_symbol": null, + "optimized_symbol": "80BREWSKI-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0006745078986254555, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685791475, + "amount": 2507.045707598529, + "raw_amount": 2.507045707598529e+21, + "raw_amount_hex_str": "0x87e83f9429d626c569" + }, + { + "id": "0xb9bd68a77ccf8314c0dfe51bc291c77590c4e9e6", + "chain": "eth", + "name": "Balancer 50wstETH-50bb-a-USD", + "symbol": "50wstETH-50bb-a-USD", + "display_symbol": null, + "optimized_symbol": "50wstETH-50bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 25.589312559840057, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664906015, + "amount": 0.0125422532991523, + "raw_amount": 12542253299152300, + "raw_amount_hex_str": "0x2c8f1ce89435ac" + }, + { + "id": "0xba100000625a3754423978a60c9317c58a424e3d", + "chain": "eth", + "name": "Balancer", + "symbol": "BAL", + "display_symbol": null, + "optimized_symbol": "BAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba100000625a3754423978a60c9317c58a424e3d/52990c207f4001bd9090dfd90e54374a.png", + "protocol_id": "balancer", + "price": 4.002182158276944, + "price_24h_change": 0.05671360371681368, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1592616779, + "amount": 7110.52192357343, + "raw_amount": 7.11052192357343e+21, + "raw_amount_hex_str": "0x181765080548d8a81a4" + }, + { + "id": "0xba485b556399123261a5f9c95d413b4f93107407", + "chain": "eth", + "name": "Gravitationally Bound AURA", + "symbol": "graviAURA", + "display_symbol": null, + "optimized_symbol": "graviAURA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xba485b556399123261a5f9c95d413b4f93107407/a8e2db7ff72e88ddc918855572e9110e.png", + "protocol_id": "badger", + "price": 1.1146751150831564, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1655385807, + "amount": 163.61654249763245, + "raw_amount": 163616542497632450000, + "raw_amount_hex_str": "0x8dea2ba8624fcb0e4" + }, + { + "id": "0xbb6c7b5e0804d07ae31a43e6e83ea66fb128a3bb", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1842.5978121414432, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648172657, + "amount": 0.005585389870334592, + "raw_amount": 5585389870334592, + "raw_amount_hex_str": "0x13d7e1eb274280" + }, + { + "id": "0xbc396689893d065f41bc2c6ecbee5e0085233447", + "chain": "eth", + "name": "Perpetual", + "symbol": "PERP", + "display_symbol": null, + "optimized_symbol": "PERP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbc396689893d065f41bc2c6ecbee5e0085233447/ccb9a7014a682d32c7fe19ce6c66070d.png", + "protocol_id": "perpetual", + "price": 0.6694737547393259, + "price_24h_change": 0.09702670235203675, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599343689, + "amount": 0.009363496712110932, + "raw_amount": 9363496712110932, + "raw_amount_hex_str": "0x21440cf7618353" + }, + { + "id": "0xbd482ffb3e6e50dc1c437557c3bea2b68f3683ee", + "chain": "eth", + "name": "4Pool Chainlink", + "symbol": "BUSD-DAI-USDC-BPT-USDT", + "display_symbol": null, + "optimized_symbol": "BUSD-DAI-USDC-BPT-USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.42800361452161684, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668203063, + "amount": 137.930014803117, + "raw_amount": 137930014803117000000, + "raw_amount_hex_str": "0x77a29d9adcc28c1a7" + }, + { + "id": "0xbe19d87ea6cd5b05bbc34b564291c371dae96747", + "chain": "eth", + "name": "Balancer GHO/3pool Stable Pool", + "symbol": "GHO-3POOL-BPT", + "display_symbol": null, + "optimized_symbol": "GHO-3POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.969422356378404, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692108155, + "amount": 716.7594361161499, + "raw_amount": 716759436116149900000, + "raw_amount_hex_str": "0x26db090d97e867a9ec" + }, + { + "id": "0xbe1f8b3493570501cb32bc87ae3150f4e1a9f0e4", + "chain": "eth", + "name": "GonczyPolski", + "symbol": "GP", + "display_symbol": null, + "optimized_symbol": "GP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659962474, + "amount": 18707.03543949801, + "raw_amount": 1.8707035439498009e+22, + "raw_amount_hex_str": "0x3f61c44b21a124b9e94" + }, + { + "id": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "chain": "eth", + "name": "Coinbase Wrapped Staked ETH", + "symbol": "cbETH", + "display_symbol": null, + "optimized_symbol": "cbETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xbe9895146f7af43049ca1c1ae358b0541ea49704/1f287272a7d8439af0f6b281ebf0143e.png", + "protocol_id": "", + "price": 2150.27, + "price_24h_change": 0.03429582918464441, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1643901537, + "amount": 0.13276660785578223, + "raw_amount": 132766607855782220, + "raw_amount_hex_str": "0x1d7ae86c347094f" + }, + { + "id": "0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33", + "chain": "eth", + "name": "R/bb-s-DAI Stable Pool", + "symbol": "R-bb-s-DAI-BLP", + "display_symbol": null, + "optimized_symbol": "R-bb-s-DAI-BLP", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.3145790902213221, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689167879, + "amount": 0.001611574821043787, + "raw_amount": 1611574821043787, + "raw_amount_hex_str": "0x5b9b800bcbe4b" + }, + { + "id": "0xbfa9180729f1c549334080005ca37093593fb7aa", + "chain": "eth", + "name": "$ ClaimLIDO.com", + "symbol": "$ ClaimLIDO.com", + "display_symbol": null, + "optimized_symbol": "$ ClaimLIDO.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667825063, + "amount": 400, + "raw_amount": 400, + "raw_amount_hex_str": "0x190" + }, + { + "id": "0xbfce47224b4a938865e3e2727dc34e0faa5b1d82", + "chain": "eth", + "name": "Balancer uniETH-WETH", + "symbol": "uniETH-WETH", + "display_symbol": null, + "optimized_symbol": "uniETH-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2047.5719256945495, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1682117411, + "amount": 0.39733411223606924, + "raw_amount": 397334112236069250, + "raw_amount_hex_str": "0x5839d4518f9e16a" + }, + { + "id": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "chain": "eth", + "name": "Compound", + "symbol": "COMP", + "display_symbol": null, + "optimized_symbol": "COMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc00e94cb662c3520282e6f5717214004a7f26888/dd174d3d7083fa027a433dc50edaf0bc.png", + "protocol_id": "compound3", + "price": 58.40666915908483, + "price_24h_change": 0.13731709683285973, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1583280535, + "amount": 5.7687117271119135, + "raw_amount": 5768711727111913000, + "raw_amount_hex_str": "0x500e94c07a22c0e0" + }, + { + "id": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "chain": "eth", + "name": "Synthetix Network Token", + "symbol": "SNX", + "display_symbol": null, + "optimized_symbol": "SNX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f/fb568c26c7902169572abe8fa966e791.png", + "protocol_id": "synthetix", + "price": 3.031636196033998, + "price_24h_change": 0.2034479163701093, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1565329008, + "amount": 0.04863918214181143, + "raw_amount": 48639182141811430, + "raw_amount_hex_str": "0xaccd1415ba6ae5" + }, + { + "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "chain": "eth", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2/61844453e63cf81301f845d7864236f6.png", + "protocol_id": "", + "price": 2042.36, + "price_24h_change": 0.03499721279075657, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1513077455, + "amount": 8.823863305652962, + "raw_amount": 8823863305652961000, + "raw_amount_hex_str": "0x7a74a8ecf80c80c3" + }, + { + "id": "0xc0c293ce456ff0ed870add98a0828dd4d2903dbf", + "chain": "eth", + "name": "Aura", + "symbol": "AURA", + "display_symbol": null, + "optimized_symbol": "AURA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc0c293ce456ff0ed870add98a0828dd4d2903dbf/f5bdc54131498b4bda381d301e855962.png", + "protocol_id": "aurafinance", + "price": 1.0399360738015009, + "price_24h_change": 0.04335768334746909, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1654771511, + "amount": 0.16259890333140747, + "raw_amount": 162598903331407460, + "raw_amount_hex_str": "0x241aad751efc66d" + }, + { + "id": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72", + "chain": "eth", + "name": "Ethereum Name Service", + "symbol": "ENS", + "display_symbol": null, + "optimized_symbol": "ENS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc18360217d8f7ab5e7c516566761ea12ce7f9d72/034d454d78d7be7f9675066fdb63e114.png", + "protocol_id": "ens", + "price": 8.862266976162285, + "price_24h_change": 0.07833117246550854, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635800117, + "amount": 0.000122993544439271, + "raw_amount": 122993544439271, + "raw_amount_hex_str": "0x6fdcaa86a5e7" + }, + { + "id": "0xc285b7e09a4584d027e5bc36571785b515898246", + "chain": "eth", + "name": "Coin98 Dollar", + "symbol": "CUSD", + "display_symbol": null, + "optimized_symbol": "CUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc285b7e09a4584d027e5bc36571785b515898246/5c76ada4733bb3b2b5591a1bd8d1d38b.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1657947314, + "amount": 13.55210093862448, + "raw_amount": 13552100938624480000, + "raw_amount_hex_str": "0xbc12bc0066f3335f" + }, + { + "id": "0xc2b021133d1b0cf07dba696fd5dd89338428225b", + "chain": "eth", + "name": "Balancer GHO/bb-a-USD Stable Pool", + "symbol": "GHO/bb-a-USD", + "display_symbol": null, + "optimized_symbol": "GHO/bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.9722758110916417, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689432443, + "amount": 396.22222911106655, + "raw_amount": 396222229111066500000, + "raw_amount_hex_str": "0x157ab02219e68f4384" + }, + { + "id": "0xc443c15033fcb6cf72cc24f1bda0db070ddd9786", + "chain": "eth", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc443c15033fcb6cf72cc24f1bda0db070ddd9786/ee454c97f462c9b0bd19726bcfa86720.png", + "protocol_id": "balancer2", + "price": 1.000053275367043, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1689173327, + "amount": 17.64075312816144, + "raw_amount": 17640753128161440000, + "raw_amount_hex_str": "0xf4d08b815e6c6d1b" + }, + { + "id": "0xc4ad29ba4b3c580e6d59105fff484999997675ff", + "chain": "eth", + "name": "Curve.fi USD-BTC-ETH", + "symbol": "crv3crypto", + "display_symbol": null, + "optimized_symbol": "crv3crypto", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1321.7170470742121, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1626210526, + "amount": 0.17431343489797024, + "raw_amount": 174313434897970240, + "raw_amount_hex_str": "0x26b49253eabf43e" + }, + { + "id": "0xc4fd39b52100c96a5f7dcd3c6522485897329889", + "chain": "eth", + "name": "Balancer KAI-WETH Weighted Pool", + "symbol": "B-KAI-WETH-WEIGHTED", + "display_symbol": null, + "optimized_symbol": "B-KAI-WETH-WEIGHTED", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 32.142660556055, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687806275, + "amount": 9e-18, + "raw_amount": 9, + "raw_amount_hex_str": "0x9" + }, + { + "id": "0xc63958d9d01efa6b8266b1df3862c6323cbdb52b", + "chain": "eth", + "name": "Element Principal Token yvCurve-MIM-29APR22", + "symbol": "ePyvCurve-MIM-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-MIM-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0061697887056682, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1636645562, + "amount": 691.7806591217435, + "raw_amount": 691780659121743500000, + "raw_amount_hex_str": "0x2580629c429d1be771" + }, + { + "id": "0xc88c76dd8b92408fe9bea1a54922a31e232d873c", + "chain": "eth", + "name": "80ASX-20WETH", + "symbol": "80ASX-20WETH", + "display_symbol": null, + "optimized_symbol": "80ASX-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 4.017786749462695, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691057747, + "amount": 22.447184928772288, + "raw_amount": 22447184928772290000, + "raw_amount_hex_str": "0x137846bc32ef96d07" + }, + { + "id": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", + "chain": "eth", + "name": "Graph Token", + "symbol": "GRT", + "display_symbol": null, + "optimized_symbol": "GRT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xc944e90c64b2c07662a292be6244bdf05cda44a7/8a3fcf468cdf3ae0c7a56cfb12ab4816.png", + "protocol_id": "thegraph", + "price": 0.13408138453457843, + "price_24h_change": 0.10559725652145323, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1607890633, + "amount": 4.073381297170433, + "raw_amount": 4073381297170432500, + "raw_amount_hex_str": "0x38878eb54490425a" + }, + { + "id": "0xc9b88361c09ec184bdd32cf52cffc79a1452f79d", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-16SEP22", + "symbol": "ePyvCurve-alUSD-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.008466002305312, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651238498, + "amount": 3.4140435605437474, + "raw_amount": 3414043560543747000, + "raw_amount_hex_str": "0x2f611e87a9eb7c99" + }, + { + "id": "0xc9c5ff67bb2fae526ae2467c359609d6bcb4c532", + "chain": "eth", + "name": "Tranchess qETH/ETH Balancer Pool", + "symbol": "qETH-BPT", + "display_symbol": null, + "optimized_symbol": "qETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2077.8445845201813, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668491783, + "amount": 0.1122426227770841, + "raw_amount": 112242622777084110, + "raw_amount_hex_str": "0x18ec4121b4948c9" + }, + { + "id": "0xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf", + "chain": "eth", + "name": "Curve.fi USD-BTC-ETH", + "symbol": "crvTricrypto", + "display_symbol": null, + "optimized_symbol": "crvTricrypto", + "decimals": 18, + "logo_url": null, + "protocol_id": "curve", + "price": 1300.3901197101668, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1622187277, + "amount": 9.13523352988e-7, + "raw_amount": 913523352988, + "raw_amount_hex_str": "0xd4b23c259c" + }, + { + "id": "0xcaa052584b462198a5a9356c28bce0634d65f65c", + "chain": "eth", + "name": "Balancer Morpho Aave v2 Boosted StablePool", + "symbol": "bb-ma2-USD", + "display_symbol": null, + "optimized_symbol": "bb-ma2-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0110323725821486, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679168039, + "amount": 102.07287280750954, + "raw_amount": 102072872807509540000, + "raw_amount_hex_str": "0x5888bb1035f3c4ebb" + }, + { + "id": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5", + "chain": "eth", + "name": "ParaSwap", + "symbol": "PSP", + "display_symbol": null, + "optimized_symbol": "PSP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcafe001067cdef266afb7eb5a286dcfd277f3de5/142412ec7069ec0a4806f2bfc2855022.png", + "protocol_id": "paraswap", + "price": 0.03391953008917168, + "price_24h_change": 0.033481310199553804, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636966698, + "amount": 14741.201384924107, + "raw_amount": 1.4741201384924105e+22, + "raw_amount_hex_str": "0x31f1f43cd5b31a79c58" + }, + { + "id": "0xcce00da653eb50133455d4075fe8bca36750492c", + "chain": "eth", + "name": "Element Principal Token yvDAI-16SEP22", + "symbol": "ePyvDAI-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvDAI-16SEP22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 0.9999497299464303, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649796306, + "amount": 846.7169215907458, + "raw_amount": 846716921590745800000, + "raw_amount_hex_str": "0x2de68eca1698ae3e57" + }, + { + "id": "0xcdf7028ceab81fa0c6971208e83fa7872994bee5", + "chain": "eth", + "name": "Threshold Network Token", + "symbol": "T", + "display_symbol": null, + "optimized_symbol": "T", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcdf7028ceab81fa0c6971208e83fa7872994bee5/415842bd4135e852704aea093ce139d0.png", + "protocol_id": "threshold", + "price": 0.024879210205198333, + "price_24h_change": 0.041118627577166666, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640944196, + "amount": 0.0587644842674271, + "raw_amount": 58764484267427100, + "raw_amount_hex_str": "0xd0c5fcb22b451e" + }, + { + "id": "0xce621fc54d2547294a46b4d5c142bdeb2d0f0aeb", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2081.409065162584, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647499081, + "amount": 0.000003220458669281, + "raw_amount": 3220458669281, + "raw_amount_hex_str": "0x2edd24b84e1" + }, + { + "id": "0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a", + "chain": "eth", + "name": "RDNT-WETH", + "symbol": "RDNT-WETH", + "display_symbol": null, + "optimized_symbol": "RDNT-WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.3403255828348368, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1698710459, + "amount": 1761.077296539328, + "raw_amount": 1.761077296539328e+21, + "raw_amount_hex_str": "0x5f77db669d77e6f930" + }, + { + "id": "0xcfe60a1535ecc5b0bc628dc97111c8bb01637911", + "chain": "eth", + "name": "Element Principal Token yvUSDC-16SEP22", + "symbol": "ePyvUSDC-16SEP22", + "display_symbol": null, + "optimized_symbol": "ePyvUSDC-16SEP22", + "decimals": 6, + "logo_url": null, + "protocol_id": "element", + "price": 0.999999045806079, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647458268, + "amount": 251.4586, + "raw_amount": 251458600, + "raw_amount_hex_str": "0xefcf428" + }, + { + "id": "0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5", + "chain": "eth", + "name": "Notional", + "symbol": "NOTE", + "display_symbol": null, + "optimized_symbol": "NOTE", + "decimals": 8, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5/ebf0bbcfaf39b581a04aacbc502101a4.png", + "protocol_id": "notional", + "price": 0.1379232002433956, + "price_24h_change": 0.02280049733510109, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1629899104, + "amount": 626.84420911, + "raw_amount": 62684420911, + "raw_amount_hex_str": "0xe98485b2f" + }, + { + "id": "0xd0cd466b34a24fcb2f87676278af2005ca8a78c4", + "chain": "eth", + "name": "Popcorn", + "symbol": "POP", + "display_symbol": null, + "optimized_symbol": "POP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd0cd466b34a24fcb2f87676278af2005ca8a78c4/41dcbcb4a675480acd535ff047f024ba.png", + "protocol_id": "popcorn", + "price": 0.022395244988096946, + "price_24h_change": 0.1414331799562703, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1618395052, + "amount": 1.4999982309440762, + "raw_amount": 1499998230944076300, + "raw_amount_hex_str": "0x14d110719722d1df" + }, + { + "id": "0xd278166dabaf26707362f7cfdd204b277fd2a460", + "chain": "eth", + "name": "Balancer 50USH-50WETH", + "symbol": "50USH-50WETH", + "display_symbol": null, + "optimized_symbol": "50USH-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 10.639038263765242, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1680608411, + "amount": 52.51509883621858, + "raw_amount": 52515098836218580000, + "raw_amount_hex_str": "0x2d8cb1c279556796a" + }, + { + "id": "0xd31a59c85ae9d8edefec411d448f90841571b89c", + "chain": "eth", + "name": "Wrapped SOL (Wormhole)", + "symbol": "SOL", + "display_symbol": null, + "optimized_symbol": "SOL", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd31a59c85ae9d8edefec411d448f90841571b89c/7c5db5c2eae571da837b65f5b9ae1a5c.png", + "protocol_id": "", + "price": 62.73432688718347, + "price_24h_change": -0.013891615462940668, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632316757, + "amount": 0.065785808, + "raw_amount": 65785808, + "raw_amount_hex_str": "0x3ebcfd0" + }, + { + "id": "0xd33526068d116ce69f19a9ee46f0bd304f21a51f", + "chain": "eth", + "name": "Rocket Pool Protocol", + "symbol": "RPL", + "display_symbol": null, + "optimized_symbol": "RPL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd33526068d116ce69f19a9ee46f0bd304f21a51f/0dac0c5e1dd543fb62581f0756e0b11f.png", + "protocol_id": "rocketpool", + "price": 29.166071666166328, + "price_24h_change": 0.015084951212575347, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632980703, + "amount": 0.000252996123096066, + "raw_amount": 252996123096066, + "raw_amount_hex_str": "0xe619400bf402" + }, + { + "id": "0xd40954a9ff856f9a2c6efa88ad45623157a7dff0", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.4270416274501147, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647839269, + "amount": 91.48478749826427, + "raw_amount": 91484787498264260000, + "raw_amount_hex_str": "0x4f59b4185c2239c2c" + }, + { + "id": "0xd5a14081a34d256711b02bbef17e567da48e80b5", + "chain": "eth", + "name": "Wrapped USDR", + "symbol": "wUSDR", + "display_symbol": null, + "optimized_symbol": "wUSDR", + "decimals": 9, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5a14081a34d256711b02bbef17e567da48e80b5/c2524c9f38607e4862733fb51a2af417.png", + "protocol_id": "multichain", + "price": 0.44026557957138107, + "price_24h_change": -0.12310097068079141, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1673500139, + "amount": 82.86324508, + "raw_amount": 82863245080, + "raw_amount_hex_str": "0x134b08c718" + }, + { + "id": "0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9", + "chain": "eth", + "name": "NFT Worlds", + "symbol": "WRLD", + "display_symbol": null, + "optimized_symbol": "WRLD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xd5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9/7e8c2ceca870a77f8910d33d85163f0d.png", + "protocol_id": "", + "price": 0.02746076826665267, + "price_24h_change": -0.11930519782949536, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640650326, + "amount": 4.0949999999418525, + "raw_amount": 4094999999941852700, + "raw_amount_hex_str": "0x38d45ccdbfc23e02" + }, + { + "id": "0xd5d99b7e9697ba8bb1da48f07ba81900c7572cea", + "chain": "eth", + "name": "Balancer DUSD-3POOL Stable Pool", + "symbol": "DUSD-3POOL-BPT", + "display_symbol": null, + "optimized_symbol": "DUSD-3POOL-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0066650774551678, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692371747, + "amount": 6.207963155777007, + "raw_amount": 6207963155777007000, + "raw_amount_hex_str": "0x56271d9956cd2d8d" + }, + { + "id": "0xd689abc77b82803f22c49de5c8a0049cc74d11fd", + "chain": "eth", + "name": "80USH-20unshETH", + "symbol": "80USH-20unshETH", + "display_symbol": null, + "optimized_symbol": "80USH-20unshETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.34096166097597547, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1681890359, + "amount": 1142.3636133332263, + "raw_amount": 1.1423636133332264e+21, + "raw_amount_hex_str": "0x3ded7ad5d322a6abf7" + }, + { + "id": "0xd8721e92ba0f8235b375e9ec9a7b697ec4e2d6c6", + "chain": "eth", + "name": "80BIDS-20WETH", + "symbol": "80BIDS-20WETH", + "display_symbol": null, + "optimized_symbol": "80BIDS-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0005107027120429265, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1687690631, + "amount": 2493.6199718123144, + "raw_amount": 2.4936199718123146e+21, + "raw_amount_hex_str": "0x872dedc8993497a483" + }, + { + "id": "0xd8dc4cc15945a16aa5201bcabfa1d32d2cb39fd6", + "chain": "eth", + "name": "Sense Space 1st June 2023 wstETH Sense Principal Token, A7", + "symbol": "SPACE-sP-wstETH:01-06-2023:7", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-wstETH:01-06-2023:7", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2144.5354068656166, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652969144, + "amount": 0.022896520284385536, + "raw_amount": 22896520284385536, + "raw_amount_hex_str": "0x5158438e24b0ff" + }, + { + "id": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chain": "eth", + "name": "Tether USD", + "symbol": "USDT", + "display_symbol": "", + "optimized_symbol": "USDT", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", + "protocol_id": "", + "price": 1.000195, + "price_24h_change": 0.000200001000004978, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1511829681, + "amount": 56.93199, + "raw_amount": 56931990, + "raw_amount_hex_str": "0x364b696" + }, + { + "id": "0xdbbfb4ccd10a0828b95ce6fbe8a7502a9e6a76f5", + "chain": "eth", + "name": "Sense Space 1st July 2023 cDAI Sense Principal Token, A10", + "symbol": "SPACE-sP-cDAI:01-07-2023:10", + "display_symbol": null, + "optimized_symbol": "SPACE-sP-cDAI:01-07-2023:10", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 0.7386130969221794, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660069123, + "amount": 1.7887012788357777, + "raw_amount": 1788701278835777800, + "raw_amount_hex_str": "0x18d2be560e4b20c6" + }, + { + "id": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f", + "chain": "eth", + "name": "Gitcoin", + "symbol": "GTC", + "display_symbol": "", + "optimized_symbol": "GTC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f/ea5a2a4e68c20a12cab5bb17cac38b26.png", + "protocol_id": "gitcoin", + "price": 1.1220682616021893, + "price_24h_change": 0.0643099335071595, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620856082, + "amount": 600.9258778676896, + "raw_amount": 600925877867689500000, + "raw_amount_hex_str": "0x20938596143368992b" + }, + { + "id": "0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab", + "chain": "eth", + "name": "CoW Protocol Token", + "symbol": "COW", + "display_symbol": null, + "optimized_symbol": "COW", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xdef1ca1fb7fbcdc777520aa7f396b4e015f497ab/01b4a8c7bfa381d0f47d140d58d06d54.png", + "protocol_id": "", + "price": 0.20278798462107048, + "price_24h_change": 0.026660192650421882, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644608664, + "amount": 3.740292097500236, + "raw_amount": 3740292097500236000, + "raw_amount_hex_str": "0x33e82fd883b3c8c8" + }, + { + "id": "0xdf2c03c12442c7a0895455a48569b889079ca52a", + "chain": "eth", + "name": "80ARCH-20WETH", + "symbol": "80ARCH-20WETH", + "display_symbol": null, + "optimized_symbol": "80ARCH-20WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 9.081894412702066, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683242339, + "amount": 62.00358507396346, + "raw_amount": 62003585073963460000, + "raw_amount_hex_str": "0x35c78fc1d9e4de34d" + }, + { + "id": "0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba", + "chain": "eth", + "name": "Balancer ankrETH/wstETH StablePool", + "symbol": "ankrETH/wstETH", + "display_symbol": null, + "optimized_symbol": "ankrETH/wstETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2055.315692307122, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1685154395, + "amount": 2.403230868248083, + "raw_amount": 2403230868248083000, + "raw_amount_hex_str": "0x2159fdbde72e3a7d" + }, + { + "id": "0xe074fbcc87e18615d6b099ee603bd37de562416b", + "chain": "eth", + "name": "50WAGMI-50ICE", + "symbol": "50WAGMI-50ICE", + "display_symbol": null, + "optimized_symbol": "50WAGMI-50ICE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.10135215362778732, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1695825635, + "amount": 5699.714464432158, + "raw_amount": 5.699714464432158e+21, + "raw_amount_hex_str": "0x134fb6d8b05029e1ce3" + }, + { + "id": "0xe29797910d413281d2821d5d9a989262c8121cc2", + "chain": "eth", + "name": "elimu.ai", + "symbol": "ELIMU", + "display_symbol": null, + "optimized_symbol": "ELIMU", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.0017290449711184353, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1623928435, + "amount": 2609.5598485877413, + "raw_amount": 2.6095598485877414e+21, + "raw_amount_hex_str": "0x8d76eaf83ffa785b14" + }, + { + "id": "0xe41d2489571d322189246dafa5ebde1f4699f498", + "chain": "eth", + "name": "0x Protocol Token", + "symbol": "ZRX", + "display_symbol": null, + "optimized_symbol": "ZRX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe41d2489571d322189246dafa5ebde1f4699f498/d7005102d4df2f6f8a79a5e8abe93b06.png", + "protocol_id": "0x", + "price": 0.5325065714429619, + "price_24h_change": 0.03936934958569297, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1502476756, + "amount": 19.965979726938276, + "raw_amount": 19965979726938276000, + "raw_amount_hex_str": "0x1151568c700ce85cd" + }, + { + "id": "0xe4af3c338260aabf119b5023d497437974769413", + "chain": "eth", + "name": "20USDC-80FOLD", + "symbol": "20USDC-80FOLD", + "display_symbol": null, + "optimized_symbol": "20USDC-80FOLD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 6.469000948990124, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683208187, + "amount": 17.236359481010393, + "raw_amount": 17236359481010395000, + "raw_amount_hex_str": "0xef33d9a0368f94cd" + }, + { + "id": "0xe4e72f872c4048925a78e1e6fddac411c9ae348a", + "chain": "eth", + "name": "2BTC", + "symbol": "2BTC", + "display_symbol": null, + "optimized_symbol": "2BTC", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 37449.140671098794, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691729291, + "amount": 0.018795502953768004, + "raw_amount": 18795502953768004, + "raw_amount_hex_str": "0x42c6690cef2444" + }, + { + "id": "0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532", + "chain": "eth", + "name": "ZEON", + "symbol": "ZEON", + "display_symbol": null, + "optimized_symbol": "ZEON", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe5b826ca2ca02f09c1725e9bd98d9a8874c30532/132ae9ab3cb6f2e332d748726ea96ec2.png", + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1539621663, + "amount": 985.9709680218301, + "raw_amount": 985970968021830100000, + "raw_amount_hex_str": "0x3573188b848d35f70b" + }, + { + "id": "0xe72c7d093ac50c57e47f4f2674243a4fff68f0f2", + "chain": "eth", + "name": "stDai.xyz", + "symbol": "https://stdai.xyz", + "display_symbol": null, + "optimized_symbol": "https://stdai.xyz", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663927511, + "amount": 777, + "raw_amount": 777, + "raw_amount_hex_str": "0x309" + }, + { + "id": "0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2", + "chain": "eth", + "name": "Balancer swETH-WETH Stable Pool", + "symbol": "swETH-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "swETH-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2044.1618026796941, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1692370463, + "amount": 0.5428751113026299, + "raw_amount": 542875111302629900, + "raw_amount_hex_str": "0x788ae09969809e9" + }, + { + "id": "0xe89c2dccfa045f3538ae3ebbfff3daec6a40a73a", + "chain": "eth", + "name": "$ USDCXMAS.com", + "symbol": "$ Visit USDCXMAS.com to claim", + "display_symbol": null, + "optimized_symbol": "$ Visit USDCXMAS.com to claim", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672053143, + "amount": 9000, + "raw_amount": 9000, + "raw_amount_hex_str": "0x2328" + }, + { + "id": "0xe91888a1d08e37598867d213a4acb5692071bb3a", + "chain": "eth", + "name": "20R-80RAFT", + "symbol": "20R-80RAFT", + "display_symbol": null, + "optimized_symbol": "20R-80RAFT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.0030432713770674473, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1696336955, + "amount": 123102.86445728154, + "raw_amount": 1.2310286445728153e+23, + "raw_amount_hex_str": "0x1a116b6e74f7ee2215cf" + }, + { + "id": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb", + "chain": "eth", + "name": "Ankr Staked ETH", + "symbol": "ankrETH", + "display_symbol": "ankrETH", + "optimized_symbol": "ankrETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xe95a203b1a91a908f9b9ce46459d101078c2c3cb/943011b2bba8d1d0a9c815caee4baf84.png", + "protocol_id": "ankr", + "price": 2322.0549481592607, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1604948706, + "amount": 0.226184428977988, + "raw_amount": 226184428977988000, + "raw_amount_hex_str": "0x323918a2ef52195" + }, + { + "id": "0xea34b59a4e7075203a93f97178b2581d5f3f9919", + "chain": "eth", + "name": "Compound USD Coin Adapter", + "symbol": "cUSDC-adapter", + "display_symbol": null, + "optimized_symbol": "cUSDC-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 1.0255089331773146, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651434899, + "amount": 0.000075732300716355, + "raw_amount": 75732300716355, + "raw_amount_hex_str": "0x44e0cce1d943" + }, + { + "id": "0xea912e1afa137c15f1638142e32f978e92fbce39", + "chain": "eth", + "name": "Balancer DAI-USDT Fixed Rate Pool", + "symbol": "B-DAI-USDT-FIXED-RATE", + "display_symbol": null, + "optimized_symbol": "B-DAI-USDT-FIXED-RATE", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0000754345358198, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667292155, + "amount": 2.52799920533739, + "raw_amount": 2527999205337390000, + "raw_amount_hex_str": "0x231541e2229adb33" + }, + { + "id": "0xeaa1cba8cc3cf01a92e9e853e90277b5b8a23e07", + "chain": "eth", + "name": "Element Principal Token yvCurve-alUSD-29APR22", + "symbol": "ePyvCurve-alUSD-29APR22", + "display_symbol": null, + "optimized_symbol": "ePyvCurve-alUSD-29APR22", + "decimals": 18, + "logo_url": null, + "protocol_id": "element", + "price": 1.0084660023053122, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1637702559, + "amount": 15.528525296983258, + "raw_amount": 15528525296983257000, + "raw_amount_hex_str": "0xd780677be45ab12a" + }, + { + "id": "0xeb567dde03f3da7fe185bdacd5ab495ab220769d", + "chain": "eth", + "name": "ankrETH-Boosted Aave WETH StablePool", + "symbol": "ankrETH-bb-a-WETH-BPT", + "display_symbol": null, + "optimized_symbol": "ankrETH-bb-a-WETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2057.5485869458084, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1684280387, + "amount": 0.15395745027751706, + "raw_amount": 153957450277517060, + "raw_amount_hex_str": "0x222f77c3e50f702" + }, + { + "id": "0xec3626fee40ef95e7c0cbb1d495c8b67b34d3983", + "chain": "eth", + "name": "Balancer UZD/bb-a-USD stableswap", + "symbol": "B-S-UZD-BB-A-USD", + "display_symbol": null, + "optimized_symbol": "B-S-UZD-BB-A-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 0.007436391565084398, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1683442295, + "amount": 4.95e-15, + "raw_amount": 4950, + "raw_amount_hex_str": "0x1356" + }, + { + "id": "0xecf2c7a432e5f7d8ba0a85b12f2ae3e4874ec690", + "chain": "eth", + "name": "Wrapped liquid staked Ether 2.0 Adapter", + "symbol": "wstETH-adapter", + "display_symbol": null, + "optimized_symbol": "wstETH-adapter", + "decimals": 18, + "logo_url": null, + "protocol_id": "sense", + "price": 2009.1551514785242, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647837401, + "amount": 0.0000119498554493, + "raw_amount": 11949855449300, + "raw_amount_hex_str": "0xade4ae3a0d4" + }, + { + "id": "0xed1480d12be41d92f36f5f7bdd88212e381a3677", + "chain": "eth", + "name": "FIAT DAO Token", + "symbol": "FDT", + "display_symbol": null, + "optimized_symbol": "FDT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed1480d12be41d92f36f5f7bdd88212e381a3677/3b6713634ee6c7285619f5d6f77329f9.png", + "protocol_id": "fiatdao", + "price": 0.003528768354027703, + "price_24h_change": 0.004097276312485393, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635920329, + "amount": 0.499420319665554, + "raw_amount": 499420319665554050, + "raw_amount_hex_str": "0x6ee4c227b470265" + }, + { + "id": "0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca", + "chain": "eth", + "name": "Curve.fi Factory USD Metapool: Liquity", + "symbol": "LUSD3CRV-f", + "display_symbol": null, + "optimized_symbol": "LUSD3CRV-f", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xed279fdd11ca84beef15af5d39bb4d4bee23f0ca/45a771023b4a156c4bf6888411f5a38f.png", + "protocol_id": "curve", + "price": 1.024954878657951, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1617695155, + "amount": 419.9876956078656, + "raw_amount": 419987695607865600000, + "raw_amount_hex_str": "0x16c48007f715b6ea31" + }, + { + "id": "0xedb171c18ce90b633db442f2a6f72874093b49ef", + "chain": "eth", + "name": "Wrapped Ampleforth", + "symbol": "WAMPL", + "display_symbol": null, + "optimized_symbol": "WAMPL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xedb171c18ce90b633db442f2a6f72874093b49ef/60204bc28b7d18732faa55afcdd29196.png", + "protocol_id": "", + "price": 6.500973072699087, + "price_24h_change": 0.037414686174768, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632315593, + "amount": 9.757711627564243, + "raw_amount": 9757711627564243000, + "raw_amount_hex_str": "0x876a5b06d5aa57c0" + }, + { + "id": "0xede11d3d5dd7d5454844f6f121cc106bf1144a45", + "chain": "eth", + "name": "$ LPBalancer.com", + "symbol": "LPBalancer.com", + "display_symbol": null, + "optimized_symbol": "LPBalancer.com", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1657981900, + "amount": 500, + "raw_amount": 500, + "raw_amount_hex_str": "0x1f4" + }, + { + "id": "0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1", + "chain": "eth", + "name": "Gyroscope ECLP wstETH/wETH", + "symbol": "ECLP-wstETH-wETH", + "display_symbol": null, + "optimized_symbol": "ECLP-wstETH-wETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2040.689741974751, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693249103, + "amount": 1.1345836223303534, + "raw_amount": 1134583622330353400, + "raw_amount_hex_str": "0xfbed9cb10fa073a" + }, + { + "id": "0xf05e58fcea29ab4da01a495140b349f8410ba904", + "chain": "eth", + "name": "CLever CVX", + "symbol": "clevCVX", + "display_symbol": null, + "optimized_symbol": "clevCVX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf05e58fcea29ab4da01a495140b349f8410ba904/f1f9772044bbf5e8c3f5ab288d96e2ac.png", + "protocol_id": "clevercvx", + "price": 3.7875673242981547, + "price_24h_change": 0.03833920081366989, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1650535428, + "amount": 3.765972931308284, + "raw_amount": 3765972931308284000, + "raw_amount_hex_str": "0x34436c6d945de855" + }, + { + "id": "0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc", + "chain": "eth", + "name": "20WETH-80ALCX", + "symbol": "20WETH-80ALCX", + "display_symbol": null, + "optimized_symbol": "20WETH-80ALCX", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 35.10315264430123, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677780875, + "amount": 122.99685749078928, + "raw_amount": 122996857490789270000, + "raw_amount_hex_str": "0x6aaec9e38fbd6982c" + }, + { + "id": "0xf17e65822b568b3903685a7c9f496cf7656cc6c2", + "chain": "eth", + "name": "Biconomy Token", + "symbol": "BICO", + "display_symbol": null, + "optimized_symbol": "BICO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf17e65822b568b3903685a7c9f496cf7656cc6c2/69060a56ebfc5a4cecd43b64c8910d22.png", + "protocol_id": "biconomy", + "price": 0.3021857391756929, + "price_24h_change": 0.18684359179571491, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1633376291, + "amount": 2317.8697829539, + "raw_amount": 2.3178697829539e+21, + "raw_amount_hex_str": "0x7da6e7aeff02fcce22" + }, + { + "id": "0xf1f6004398e29437801257ecc2b0a852717430b7", + "chain": "eth", + "name": "50ASX-50WETH", + "symbol": "50ASX-50WETH", + "display_symbol": null, + "optimized_symbol": "50ASX-50WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 51.04523022025198, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1691052947, + "amount": 0.021674328605956496, + "raw_amount": 21674328605956496, + "raw_amount_hex_str": "0x4d00afe14d9992" + }, + { + "id": "0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b", + "chain": "eth", + "name": "Rally", + "symbol": "RLY", + "display_symbol": null, + "optimized_symbol": "RLY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b/052a631e8e9ba5e59f9434548ea6f91c.png", + "protocol_id": "rally", + "price": 0.006202676967153211, + "price_24h_change": 0.029024562055672127, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1601929393, + "amount": 0.7120994357331588, + "raw_amount": 712099435733158800, + "raw_amount_hex_str": "0x9e1e2a9f7a18b85" + }, + { + "id": "0xf203ca1769ca8e9e8fe1da9d147db68b6c919817", + "chain": "eth", + "name": "Wrapped NCG", + "symbol": "WNCG", + "display_symbol": null, + "optimized_symbol": "WNCG", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf203ca1769ca8e9e8fe1da9d147db68b6c919817/5d3c7b19728c5855b7a91fe9ab0f4acf.png", + "protocol_id": "", + "price": 0.07465708946767168, + "price_24h_change": 0.060600453585468665, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1628244716, + "amount": 3402.671323843021, + "raw_amount": 3.402671323843021e+21, + "raw_amount_hex_str": "0xb8758cf4e8ef6e0189" + }, + { + "id": "0xf2051511b9b121394fa75b8f7d4e7424337af687", + "chain": "eth", + "name": "DAOhaus Token", + "symbol": "HAUS", + "display_symbol": null, + "optimized_symbol": "HAUS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf2051511b9b121394fa75b8f7d4e7424337af687/445ed9b4d899940d75305b98e2697f0a.png", + "protocol_id": "", + "price": 0.6534181348420194, + "price_24h_change": -0.01911063113528292, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599234880, + "amount": 267.64856679705207, + "raw_amount": 267648566797052100000, + "raw_amount_hex_str": "0xe825eb97064b3148d" + }, + { + "id": "0xf24d8651578a55b0c119b9910759a351a3458895", + "chain": "eth", + "name": "Stake DAO Balancer", + "symbol": "sdBal", + "display_symbol": null, + "optimized_symbol": "sdBal", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf24d8651578a55b0c119b9910759a351a3458895/e5049d9997377d22ca54fa8dc626342c.png", + "protocol_id": "stakedao", + "price": 11.739822843858821, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653567793, + "amount": 26.923987124682935, + "raw_amount": 26923987124682936000, + "raw_amount_hex_str": "0x175a537a3f7eac962" + }, + { + "id": "0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80", + "chain": "eth", + "name": "Jelly Token", + "symbol": "JELLY", + "display_symbol": null, + "optimized_symbol": "JELLY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf5f06ffa53ad7f5914f493f16e57b56c8dd2ea80/aff641efef043d373dc74d0a6a74ca02.png", + "protocol_id": "", + "price": 0.00005504116091567374, + "price_24h_change": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635421158, + "amount": 18423.751965036692, + "raw_amount": 1.8423751965036694e+22, + "raw_amount_hex_str": "0x3e6c0eb9efabd134d6e" + }, + { + "id": "0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c", + "chain": "eth", + "name": "Enjin Coin", + "symbol": "ENJ", + "display_symbol": null, + "optimized_symbol": "ENJ", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c/5e91ff13592f1420dc3d25f0b1526ae7.png", + "protocol_id": "", + "price": 0.2976086229303492, + "price_24h_change": 0.060709002559631575, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1506906127, + "amount": 1489.6785814742284, + "raw_amount": 1.4896785814742284e+21, + "raw_amount_hex_str": "0x50c1717932072fde21" + }, + { + "id": "0xf656a566c9d3b2cb046481351a1179017530c6c9", + "chain": "eth", + "name": "heph10PoolDaiAura", + "symbol": "h10DaiAura", + "display_symbol": null, + "optimized_symbol": "h10DaiAura", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.1576042083546094, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1679754599, + "amount": 1.579e-15, + "raw_amount": 1579, + "raw_amount_hex_str": "0x62b" + }, + { + "id": "0xf65b5c5104c4fafd4b709d9d60a185eae063276c", + "chain": "eth", + "name": "Truebit", + "symbol": "TRU", + "display_symbol": null, + "optimized_symbol": "TRU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xf65b5c5104c4fafd4b709d9d60a185eae063276c/c01f397719a7ef63a6754ee0f5f887b7.png", + "protocol_id": "", + "price": 0.1761767547088208, + "price_24h_change": 0.26581265437995155, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1618138342, + "amount": 4627.88937076259, + "raw_amount": 4.6278893707625906e+21, + "raw_amount_hex_str": "0xfae0dddf198e3d9fdd" + }, + { + "id": "0xf660870bd38d106e61f0d3539ed25b1320bc90e8", + "chain": "eth", + "name": "ApeWL.io (Otherside Beta)", + "symbol": "Otherside Beta Access (ApeWL.io)", + "display_symbol": null, + "optimized_symbol": "Otherside Beta Access (ApeWL.io)", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651990300, + "amount": 1, + "raw_amount": 1000000000000000000, + "raw_amount_hex_str": "0xde0b6b3a7640000" + }, + { + "id": "0xf7a826d47c8e02835d94fb0aa40f0cc9505cb134", + "chain": "eth", + "name": "Gyroscope ECLP wstETH/cbETH", + "symbol": "ECLP-wstETH-cbETH", + "display_symbol": null, + "optimized_symbol": "ECLP-wstETH-cbETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 2041.1492061685854, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1693336211, + "amount": 0.21070295050666255, + "raw_amount": 210702950506662530, + "raw_amount_hex_str": "0x2ec913796138a85" + }, + { + "id": "0xfd0205066521550d7d7ab19da8f72bb004b4c341", + "chain": "eth", + "name": "Liquidity Incentive Token", + "symbol": "LIT", + "display_symbol": null, + "optimized_symbol": "LIT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfd0205066521550d7d7ab19da8f72bb004b4c341/975226f93f2d8402ee4662af6e42223d.png", + "protocol_id": "bunni", + "price": 0.02348227954668817, + "price_24h_change": 0.027950133617712567, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1672973831, + "amount": 7319.405234959935, + "raw_amount": 7.319405234959934e+21, + "raw_amount_hex_str": "0x18cc92719533977958b" + }, + { + "id": "0xfe0bb2ae94bf11de9773decb413b4a6a241cbcd0", + "chain": "eth", + "name": "# wbtc.gift", + "symbol": "Visit wbtc.gift to claim rewards", + "display_symbol": null, + "optimized_symbol": "Visit wbtc.gift to claim rewards", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "price_24h_change": null, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1697940239, + "amount": 0.7, + "raw_amount": 700000, + "raw_amount_hex_str": "0xaae60" + }, + { + "id": "0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6", + "chain": "eth", + "name": "Synth sBTC", + "symbol": "sBTC", + "display_symbol": null, + "optimized_symbol": "sBTC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6/3e0d9a14a6f727b7bec8586c40d7b4c3.png", + "protocol_id": "", + "price": 37446.78, + "price_24h_change": 0.05967067300957922, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1569481945, + "amount": 0.004254948726251717, + "raw_amount": 4254948726251717, + "raw_amount_hex_str": "0xf1dda735da0c5" + }, + { + "id": "0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", + "chain": "eth", + "name": "Balancer Aave v3 Boosted StablePool", + "symbol": "bb-a-USD", + "display_symbol": null, + "optimized_symbol": "bb-a-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "balancer2", + "price": 1.0127385746998354, + "price_24h_change": null, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1680683795, + "amount": 282.4012203434777, + "raw_amount": 282401220343477700000, + "raw_amount_hex_str": "0xf4f1aadad35cde825" + }, + { + "id": "0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462", + "chain": "eth", + "name": "pub.finance", + "symbol": "PINT", + "display_symbol": null, + "optimized_symbol": "PINT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462/47dba101f922e80f0aceac36a98db7ef.png", + "protocol_id": "", + "price": 0.05901378236356652, + "price_24h_change": -0.10001688935367299, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1604354259, + "amount": 12.988481226315663, + "raw_amount": 12988481226315663000, + "raw_amount_hex_str": "0xb4405adc0260075d" + }, + { + "id": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "chain": "eth", + "name": "Amp", + "symbol": "AMP", + "display_symbol": null, + "optimized_symbol": "AMP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/eth_token/logo_url/0xff20817765cb7f73d4bde2e66e067e58d11095c2/c76dd38f00542547f74cd6a66a230287.png", + "protocol_id": "", + "price": 0.002176016452897761, + "price_24h_change": 0.14993139064464794, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1597105639, + "amount": 167.132070499232, + "raw_amount": 167132070499232000000, + "raw_amount_hex_str": "0x90f6c649d8a43de79" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-17-03-matic.json b/FeeSweep/2023-17-03-matic.json new file mode 100644 index 000000000..fc27e344b --- /dev/null +++ b/FeeSweep/2023-17-03-matic.json @@ -0,0 +1,5588 @@ +[ + { + "id": "0x0000000000004946c0e9f43f4dee607b0ef1fa1c", + "chain": "matic", + "name": "Chi Gastoken by 1inch", + "symbol": "CHI", + "display_symbol": null, + "optimized_symbol": "CHI", + "decimals": 0, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1620924200, + "amount": 476, + "raw_amount": 476, + "raw_amount_hex_str": "0x1dc" + }, + { + "id": "0x0075a4610de0a3778265a910ba5d2269f2b10145", + "chain": "matic", + "name": "worm5", + "symbol": "worm5", + "display_symbol": null, + "optimized_symbol": "worm5", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1657349481, + "amount": 0.07368293508490016, + "raw_amount": 73682935084900160, + "raw_amount_hex_str": "0x105c63d33be5f3e" + }, + { + "id": "0x00e5646f60ac6fb446f621d146b6e1886f002905", + "chain": "matic", + "name": "Rai Reflex Index (PoS)", + "symbol": "RAI", + "display_symbol": null, + "optimized_symbol": "RAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x00e5646f60ac6fb446f621d146b6e1886f002905/57a7ea8eca0147dccd9c23577ff62a8a.png", + "protocol_id": "", + "price": 2.9309082585431874, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614315673, + "amount": 0.011470374753298445, + "raw_amount": 11470374753298444, + "raw_amount_hex_str": "0x28c03ebc9c680d" + }, + { + "id": "0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6", + "chain": "matic", + "name": "Algebra", + "symbol": "ALGB", + "display_symbol": null, + "optimized_symbol": "ALGB", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0169ec1f8f639b32eec6d923e24c2a2ff45b9dd6/c17cf7def347fb9539f238fa66d27af9.png", + "protocol_id": "", + "price": 0.007753097703609348, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635429378, + "amount": 69.11312416874027, + "raw_amount": 69113124168740270000, + "raw_amount_hex_str": "0x3bf232441233a665d" + }, + { + "id": "0x0297e37f1873d2dab4487aa67cd56b58e2f27875", + "chain": "matic", + "name": "Balancer Polygon Base Pool", + "symbol": "B-POLYBASE", + "display_symbol": null, + "optimized_symbol": "B-POLYBASE", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 12.86876780242176, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1624480165, + "amount": 0.00160813879928757, + "raw_amount": 1608138799287570, + "raw_amount_hex_str": "0x5b697fde18d12" + }, + { + "id": "0x02d2e2d7a89d6c5cb3681cfcb6f7dac02a55eda4", + "chain": "matic", + "name": "Balancer csMATIC Stable Pool", + "symbol": "B-csMATIC-Stable", + "display_symbol": null, + "optimized_symbol": "B-csMATIC-Stable", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.1905474324143204, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667478958, + "amount": 1216.592301769843, + "raw_amount": 1.2165923017698433e+21, + "raw_amount_hex_str": "0x41f39c1cad6a564ebb" + }, + { + "id": "0x033d942a6b495c4071083f4cde1f17e986fe856c", + "chain": "matic", + "name": "AGA Token (PoS)", + "symbol": "AGA", + "display_symbol": null, + "optimized_symbol": "AGA", + "decimals": 4, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x033d942a6b495c4071083f4cde1f17e986fe856c/8bee453fd14f25c1b68e3a45a1468bfc.png", + "protocol_id": "", + "price": 0.05878363192003869, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614168122, + "amount": 43883.7654, + "raw_amount": 438837654, + "raw_amount_hex_str": "0x1a282196" + }, + { + "id": "0x034b2090b579228482520c589dbd397c53fc51cc", + "chain": "matic", + "name": "Vision Token (PoS)", + "symbol": "VISION", + "display_symbol": null, + "optimized_symbol": "VISION", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x034b2090b579228482520c589dbd397c53fc51cc/3b7732925419fac1ffa0176ebf974d1e.png", + "protocol_id": "", + "price": 0.5292945152315781, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611740444, + "amount": 5996.326459195519, + "raw_amount": 5.996326459195519e+21, + "raw_amount_hex_str": "0x1450fbf08bd38c33e30" + }, + { + "id": "0x04977e869e56f75b7816efd41c75cc4f7d4325af", + "chain": "matic", + "name": "Bancor USD Token (Wormhole)", + "symbol": "USDB", + "display_symbol": null, + "optimized_symbol": "USDB", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1643050996, + "amount": 0.000533591955354068, + "raw_amount": 533591955354068, + "raw_amount_hex_str": "0x1e54c8ef431d4" + }, + { + "id": "0x05f21bacc4fd8590d1eaca9830a64b66a733316c", + "chain": "matic", + "name": "Balancer tetuQi StablePool", + "symbol": "B-tetuQi-Stable", + "display_symbol": null, + "optimized_symbol": "B-tetuQi-Stable", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 0.08618979647286014, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667222474, + "amount": 2665.309711399179, + "raw_amount": 2.665309711399179e+21, + "raw_amount_hex_str": "0x907c9a4519faf7395f" + }, + { + "id": "0x0749902ae8ed9c6a508271bad18f185dba7185d4", + "chain": "matic", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1640319665, + "amount": 3.3099089810636584, + "raw_amount": 3309908981063658500, + "raw_amount_hex_str": "0x2def28ae7f2cab25" + }, + { + "id": "0x07c204761e3278c67b881eab804dc9e126011d88", + "chain": "matic", + "name": "Australian Dollar", + "symbol": "AUD", + "display_symbol": null, + "optimized_symbol": "AUD", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646585191, + "amount": 208737526.19923773, + "raw_amount": 2.087375261992377e+26, + "raw_amount_hex_str": "0xaca9e3f81f028377e40e9d" + }, + { + "id": "0x0839ded1edc8ae842574f0fe3ced4dcb456352dd", + "chain": "matic", + "name": "TheSandBox.PRO", + "symbol": "TheSandBox.PRO", + "display_symbol": null, + "optimized_symbol": "TheSandBox.PRO", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1673603743, + "amount": 52, + "raw_amount": 5200, + "raw_amount_hex_str": "0x1450" + }, + { + "id": "0x089443665084fc50aa6f1d0dc0307333fd481b85", + "chain": "matic", + "name": "Balancer csMATIC Stable Pool", + "symbol": "B-csMATIC-Stable", + "display_symbol": null, + "optimized_symbol": "B-csMATIC-Stable", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.1927200798940734, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667288762, + "amount": 0.00017526065290032, + "raw_amount": 175260652900320, + "raw_amount_hex_str": "0x9f660cf58fe0" + }, + { + "id": "0x089d0ffb1ca0776d5b0a4f14c2ac95fc7b23f68b", + "chain": "matic", + "name": "UNI", + "symbol": "www.uniswap.cab", + "display_symbol": null, + "optimized_symbol": "www.uniswap.cab", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668793920, + "amount": 38.48, + "raw_amount": 3848, + "raw_amount_hex_str": "0xf08" + }, + { + "id": "0x08e6d1f0c4877ef2993ad733fc6f1d022d0e9dbf", + "chain": "matic", + "name": "Jarvis Synthetic Polish Zloty", + "symbol": "jPLN", + "display_symbol": null, + "optimized_symbol": "jPLN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": null, + "amount": 1.5107369408375697, + "raw_amount": 1510736940837569800, + "raw_amount_hex_str": "0x14f7373e53af04f3" + }, + { + "id": "0x0aa7e58f2e8439d99b325501d857feaca8d8fd58", + "chain": "matic", + "name": "zBud", + "symbol": "ZBUD", + "display_symbol": null, + "optimized_symbol": "ZBUD", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649118900, + "amount": 0.00014382500598632, + "raw_amount": 143825005986320, + "raw_amount_hex_str": "0x82cede644210" + }, + { + "id": "0x0b1044f4ac5ebc55eb2ced7102f12b8bc5eca7aa", + "chain": "matic", + "name": "30AGA-4020USDC-80RVRS-30AGAr", + "symbol": "30AGA-4020USDC-80RVRS-30AGAr", + "display_symbol": null, + "optimized_symbol": "30AGA-4020USDC-80RVRS-30AGAr", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678302007, + "amount": 3.133567938e-9, + "raw_amount": 3133567938, + "raw_amount_hex_str": "0xbac673c2" + }, + { + "id": "0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a", + "chain": "matic", + "name": "SushiToken (PoS)", + "symbol": "SUSHI", + "display_symbol": null, + "optimized_symbol": "SUSHI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a/930cd4a36e687eaeddbcf9f3fd22d023.png", + "protocol_id": "matic_sushiswap_lending", + "price": 1.2047266193253823, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612502308, + "amount": 683.6469058969997, + "raw_amount": 683646905896999700000, + "raw_amount_hex_str": "0x250f81b6cbf992140f" + }, + { + "id": "0x0b8319061732b34cab22445fa83b81f950e4b7ed", + "chain": "matic", + "name": "Balancer stMATIC Stable Pool", + "symbol": "B-stMATIC-Stable", + "display_symbol": null, + "optimized_symbol": "B-stMATIC-Stable", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661013919, + "amount": 0.000486214953024705, + "raw_amount": 486214953024705, + "raw_amount_hex_str": "0x1ba35bd8f3cc1" + }, + { + "id": "0x0bb33cfe1ffebde0d59d6dcc80f29c14921f04d4", + "chain": "matic", + "name": "Wrapped BNB (Wormhole)", + "symbol": "WBNB", + "display_symbol": null, + "optimized_symbol": "WBNB", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661638841, + "amount": 0.44784462197714187, + "raw_amount": 447844621977141900, + "raw_amount_hex_str": "0x637104f97844276" + }, + { + "id": "0x0d0b8488222f7f83b23e365320a4021b12ead608", + "chain": "matic", + "name": "NextEarthToken", + "symbol": "NXTT", + "display_symbol": null, + "optimized_symbol": "NXTT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0d0b8488222f7f83b23e365320a4021b12ead608/2cb30f9b653fb3e5520b516e99112f16.png", + "protocol_id": "", + "price": 0.0009507352077116094, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1642939663, + "amount": 151.15296229487737, + "raw_amount": 151152962294877360000, + "raw_amount_hex_str": "0x831ab325d4e2da6c9" + }, + { + "id": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", + "chain": "matic", + "name": "Wrapped Matic", + "symbol": "WMATIC", + "display_symbol": "WMATIC", + "optimized_symbol": "WMATIC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270/f6e604ba0324726a3d687c618aa4f163.png", + "protocol_id": "", + "price": 1.182585, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1601030209, + "amount": 51.97793692589219, + "raw_amount": 51977936925892190000, + "raw_amount_hex_str": "0x2d156ba3e41769e3c" + }, + { + "id": "0x0e1a9cbf1d97347b4ac3fc95ce1edfa7e65416d1", + "chain": "matic", + "name": "20USDC-80RVRS", + "symbol": "20USDC-80RVRS", + "display_symbol": null, + "optimized_symbol": "20USDC-80RVRS", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678221251, + "amount": 14502.910635605773, + "raw_amount": 1.4502910635605773e+22, + "raw_amount_hex_str": "0x3123450ff5ea4bec51c" + }, + { + "id": "0x0e1ebcd5f01940dd4d7d5566b093739279dd9037", + "chain": "matic", + "name": "FauxETH", + "symbol": "FETH", + "display_symbol": null, + "optimized_symbol": "FETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660866904, + "amount": 0.04724874921097777, + "raw_amount": 47248749210977770, + "raw_amount_hex_str": "0xa7dc7cb0cd45ea" + }, + { + "id": "0x0e7be86d89eea872b81dfd92967e3d46ca04e638", + "chain": "matic", + "name": "Dumb", + "symbol": "DMB", + "display_symbol": null, + "optimized_symbol": "DMB", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1673730932, + "amount": 52.12036035794216, + "raw_amount": 52120360357942160000, + "raw_amount_hex_str": "0x2d350b7999c7e6a80" + }, + { + "id": "0x0e9b89007eee9c958c0eda24ef70723c2c93dd58", + "chain": "matic", + "name": "Ankr MATIC Reward Bearing Certif", + "symbol": "aMATICc", + "display_symbol": null, + "optimized_symbol": "aMATICc", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x0e9b89007eee9c958c0eda24ef70723c2c93dd58/e6f00926feecfec6a30471ad8e66a87b.png", + "protocol_id": "", + "price": 1.31576225617149, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1652363702, + "amount": 16.34771401884957, + "raw_amount": 16347714018849569000, + "raw_amount_hex_str": "0xe2debf494733b661" + }, + { + "id": "0x0ec3854a9bae95e4c5ccce224a1257e1feb5372b", + "chain": "matic", + "name": "Taxi", + "symbol": "TAXI", + "display_symbol": null, + "optimized_symbol": "TAXI", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1642383009, + "amount": 121.67006580407893, + "raw_amount": 121670065804078940000, + "raw_amount_hex_str": "0x69882e8369286ebb5" + }, + { + "id": "0x104592a158490a9228070e0a8e5343b499e125d0", + "chain": "matic", + "name": "Frax (PoS)", + "symbol": "FRAX", + "display_symbol": null, + "optimized_symbol": "FRAX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x104592a158490a9228070e0a8e5343b499e125d0/0df22754441275abbc3810bd384c1bca.png", + "protocol_id": "", + "price": 0.9975682862579172, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612970680, + "amount": 0.1158506963492789, + "raw_amount": 115850696349278900, + "raw_amount_hex_str": "0x19b959832e162b6" + }, + { + "id": "0x10d92f4e83d852cb0421edf0363b55a507cac838", + "chain": "matic", + "name": "VitalikHugeCock", + "symbol": "VHC", + "display_symbol": null, + "optimized_symbol": "VHC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661954108, + "amount": 0.001069272432652004, + "raw_amount": 1069272432652004, + "raw_amount_hex_str": "0x3cc7f63842ee4" + }, + { + "id": "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6", + "chain": "matic", + "name": "ICHI", + "symbol": "ICHI", + "display_symbol": null, + "optimized_symbol": "ICHI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6/e76d0f686f54a074c8aafa738b1ccd40.png", + "protocol_id": "matic_ichi", + "price": 3.7753114347682897, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644593108, + "amount": 12.794574336851777, + "raw_amount": 12794574336851778000, + "raw_amount_hex_str": "0xb18f7592206114b5" + }, + { + "id": "0x122409bd62da65f9ef89111ec26c387755eb5651", + "chain": "matic", + "name": "AnyCoin", + "symbol": "AYS", + "display_symbol": null, + "optimized_symbol": "AYS", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.407263482933412, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1640168307, + "amount": 1.4028587294383916, + "raw_amount": 1402858729438391600, + "raw_amount_hex_str": "0x1377f494ee3b2d27" + }, + { + "id": "0x1250a45076bbbf9527f35fbca5edd71e21507647", + "chain": "matic", + "name": "Region1", + "symbol": "Region1", + "display_symbol": null, + "optimized_symbol": "Region1", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1644912110, + "amount": 0.001360869458339711, + "raw_amount": 1360869458339711, + "raw_amount_hex_str": "0x4d5b41ca6677f" + }, + { + "id": "0x130ce4e4f76c2265f94a961d70618562de0bb8d2", + "chain": "matic", + "name": "Inverse BTC Flexible Leverage Index", + "symbol": "iBTC-FLI-P", + "display_symbol": null, + "optimized_symbol": "iBTC-FLI-P", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_tokensets", + "price": 177.918655419, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646671544, + "amount": 5.631601589579065, + "raw_amount": 5631601589579065000, + "raw_amount_hex_str": "0x4e2777cee762a867" + }, + { + "id": "0x14f2c84a58e065c846c5fdddade0d3548f97a517", + "chain": "matic", + "name": "MATICSWAP.NET", + "symbol": "MATICSWAP.NET", + "display_symbol": null, + "optimized_symbol": "MATICSWAP.NET", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1643927340, + "amount": 5800, + "raw_amount": 5.8e+21, + "raw_amount_hex_str": "0x13a6b2b564871a00000" + }, + { + "id": "0x156268ac20d6296e2134f6150c25538d62b4e7a0", + "chain": "matic", + "name": "25WMATIC-75USDC", + "symbol": "25WMATIC-75USDC", + "display_symbol": null, + "optimized_symbol": "25WMATIC-75USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678854381, + "amount": 0.01226688305204367, + "raw_amount": 12266883052043672, + "raw_amount_hex_str": "0x2b94aa46d17d97" + }, + { + "id": "0x1599fe55cda767b1f631ee7d414b41f5d6de393d", + "chain": "matic", + "name": "Milk", + "symbol": "MILK", + "display_symbol": null, + "optimized_symbol": "MILK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1599fe55cda767b1f631ee7d414b41f5d6de393d/5be12cc24cfcd3ff1074f9abb0287028.png", + "protocol_id": "", + "price": 0.00035598369533658, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1644922085, + "amount": 4.8036594422e-8, + "raw_amount": 48036594422, + "raw_amount_hex_str": "0xb2f3442f6" + }, + { + "id": "0x15ca66b2160b71018b8e8e67c1a3798a14bf7877", + "chain": "matic", + "name": "1WETH-99USD", + "symbol": "1WETH-99USD", + "display_symbol": null, + "optimized_symbol": "1WETH-99USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678503336, + "amount": 158965120951743460, + "raw_amount": 1.5896512095174344e+35, + "raw_amount_hex_str": "0x1e9d95e84b6de5722ea00b70066a29" + }, + { + "id": "0x1659ffb2d40dfb1671ac226a0d9dcc95a774521a", + "chain": "matic", + "name": "Daily COP", + "symbol": "DLYCOP", + "display_symbol": null, + "optimized_symbol": "DLYCOP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1659ffb2d40dfb1671ac226a0d9dcc95a774521a/8a4871757290653b6f8e3a2cc438953d.png", + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1630156574, + "amount": 219025.6001574322, + "raw_amount": 2.190256001574322e+23, + "raw_amount_hex_str": "0x2e6166cdafd20815597d" + }, + { + "id": "0x172370d5cd63279efa6d502dab29171933a610af", + "chain": "matic", + "name": "CRV (PoS)", + "symbol": "CRV", + "display_symbol": null, + "optimized_symbol": "CRV", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x172370d5cd63279efa6d502dab29171933a610af/9f6990ab9d8be30fc1ff159ebf45e638.png", + "protocol_id": "matic_curve", + "price": 0.944, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1615352367, + "amount": 0.8923096569367024, + "raw_amount": 892309656936702500, + "raw_amount_hex_str": "0xc621ee7c35ce1d5" + }, + { + "id": "0x197e5d6ccff265ac3e303a34db360ee1429f5d1a", + "chain": "matic", + "name": "Jarvis Synthetic Swedish Krona", + "symbol": "jSEK", + "display_symbol": null, + "optimized_symbol": "jSEK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x197e5d6ccff265ac3e303a34db360ee1429f5d1a/80750a30b954db616e7bebfd9d8ff60f.png", + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": null, + "amount": 3.5849701641623724, + "raw_amount": 3584970164162372600, + "raw_amount_hex_str": "0x31c05f5ecd45a34c" + }, + { + "id": "0x1a13f4ca1d028320a707d99520abfefca3998b7f", + "chain": "matic", + "name": "Aave Matic Market USDC", + "symbol": "amUSDC", + "display_symbol": null, + "optimized_symbol": "amUSDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1a13f4ca1d028320a707d99520abfefca3998b7f/3b059e5f3e870c53601cac8acd6e24f3.png", + "protocol_id": "matic_aave", + "price": 0.9977, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1617181351, + "amount": 0.000605, + "raw_amount": 605, + "raw_amount_hex_str": "0x25d" + }, + { + "id": "0x1ba6741462371177dd2db19f5c58a469f80d3714", + "chain": "matic", + "name": "50USDC-50jGBP", + "symbol": "50USDC-50jGBP", + "display_symbol": null, + "optimized_symbol": "50USDC-50jGBP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677765967, + "amount": 1e-18, + "raw_amount": 1, + "raw_amount_hex_str": "0x1" + }, + { + "id": "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6", + "chain": "matic", + "name": "(PoS) Wrapped BTC", + "symbol": "WBTC", + "display_symbol": null, + "optimized_symbol": "WBTC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6/d3c52e7c7449afa8bd4fad1c93f50d93.png", + "protocol_id": "", + "price": 26477.65, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599513849, + "amount": 0.00554507, + "raw_amount": 554507, + "raw_amount_hex_str": "0x8760b" + }, + { + "id": "0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c", + "chain": "matic", + "name": "Kyber Network Crystal v2 (PoS)", + "symbol": "KNC", + "display_symbol": null, + "optimized_symbol": "KNC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c/1d25e188deb06e642ea6f4f4f8eb0a0c.png", + "protocol_id": "matic_dmm_exchange", + "price": 0.716, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1623044638, + "amount": 1.1307949138971207, + "raw_amount": 1130794913897120600, + "raw_amount_hex_str": "0xfb163fba4a8036b" + }, + { + "id": "0x1ed0855c93bb3eb531232d4350f49861b026d087", + "chain": "matic", + "name": "Curve.fi Factory USD Metapool: SoftMiner", + "symbol": "SoftMiner3CRV-f", + "display_symbol": null, + "optimized_symbol": "SoftMiner3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_curve", + "price": 0.0003793436648035579, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647086256, + "amount": 0.04496430877135173, + "raw_amount": 44964308771351730, + "raw_amount_hex_str": "0x9fbeccf3e32cb0" + }, + { + "id": "0x1f82eadfd3778c3735f1d1aee4cfcb4351c1615b", + "chain": "matic", + "name": "4USDC-80RVRS-16lsMATIC", + "symbol": "4USDC-80RVRS-16lsMATIC", + "display_symbol": null, + "optimized_symbol": "4USDC-80RVRS-16lsMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678343478, + "amount": 7252.569542066152, + "raw_amount": 7.252569542066153e+21, + "raw_amount_hex_str": "0x189299f04bfb67c6025" + }, + { + "id": "0x20d3922b4a1a8560e1ac99fba4fade0c849e2142", + "chain": "matic", + "name": "Matic Aave interest bearing WETH", + "symbol": "maWETH", + "display_symbol": null, + "optimized_symbol": "maWETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x20d3922b4a1a8560e1ac99fba4fade0c849e2142/532c85fc1f3769c2bf4714ed21dc2a17.png", + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": null, + "amount": 0.000003729209497841, + "raw_amount": 3729209497841, + "raw_amount_hex_str": "0x364463518f1" + }, + { + "id": "0x210b1f90dad7236b48b02bc1be099f00dff26d9e", + "chain": "matic", + "name": "50WMATIC-50FOOT", + "symbol": "50WMATIC-50FOOT", + "display_symbol": null, + "optimized_symbol": "50WMATIC-50FOOT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678637910, + "amount": 0.4529157572563243, + "raw_amount": 452915757256324350, + "raw_amount_hex_str": "0x649147b4870b4f2" + }, + { + "id": "0x219b0d735dbdc5836fa057a043a0db7001b66810", + "chain": "matic", + "name": "25USDC-75DAI", + "symbol": "25USDC-75DAI", + "display_symbol": null, + "optimized_symbol": "25USDC-75DAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678118507, + "amount": 4e-18, + "raw_amount": 4, + "raw_amount_hex_str": "0x4" + }, + { + "id": "0x235737dbb56e8517391473f7c964db31fa6ef280", + "chain": "matic", + "name": "KastaToken", + "symbol": "KASTA", + "display_symbol": null, + "optimized_symbol": "KASTA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x235737dbb56e8517391473f7c964db31fa6ef280/ca4f5b799ca31300dded34b823020d65.png", + "protocol_id": "", + "price": 0.026776011809492767, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639574595, + "amount": 0.004694687464146373, + "raw_amount": 4694687464146373, + "raw_amount_hex_str": "0x10adcb1aa1c5c5" + }, + { + "id": "0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57", + "chain": "matic", + "name": "Wrapped LUNA Token (PoS)", + "symbol": "LUNA", + "display_symbol": null, + "optimized_symbol": "LUNA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57/b33049dfcb0a2382ffb36284f4c29814.png", + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614315957, + "amount": 5130.541080210441, + "raw_amount": 5.13054108021044e+21, + "raw_amount_hex_str": "0x116208f79ae04352c2c" + }, + { + "id": "0x253f34dc019d41082ddc12d3a960cbc99e7380fd", + "chain": "matic", + "name": "Doaibu", + "symbol": "DOA", + "display_symbol": null, + "optimized_symbol": "DOA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x253f34dc019d41082ddc12d3a960cbc99e7380fd/13a5e0fc57115de4b2c98ba3e28b8212.png", + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1640955073, + "amount": 15.934603631953523, + "raw_amount": 15934603631953523000, + "raw_amount_hex_str": "0xdd231593ff3d31f3" + }, + { + "id": "0x2551a4269f2147d0485b09eacc6a4f3e4bb4bd64", + "chain": "matic", + "name": "UNI", + "symbol": "uni-router.app", + "display_symbol": null, + "optimized_symbol": "uni-router.app", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668450234, + "amount": 10, + "raw_amount": 1000, + "raw_amount_hex_str": "0x3e8" + }, + { + "id": "0x255707b70bf90aa112006e1b07b9aea6de021424", + "chain": "matic", + "name": "TETU Reward Token", + "symbol": "TETU", + "display_symbol": null, + "optimized_symbol": "TETU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x255707b70bf90aa112006e1b07b9aea6de021424/fec6ade5dff80728a4eeeb56a79d9634.png", + "protocol_id": "matic_tetu", + "price": 0.02475186303254601, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1627742131, + "amount": 139623.83234205918, + "raw_amount": 1.3962383234205918e+23, + "raw_amount_hex_str": "0x1d9105eb0c559e14055c" + }, + { + "id": "0x258075e37377a0395efede6b4194f915c4fa2a07", + "chain": "matic", + "name": "50USDT-50LNK", + "symbol": "50USDT-50LNK", + "display_symbol": null, + "optimized_symbol": "50USDT-50LNK", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678052099, + "amount": 0.018824850579561285, + "raw_amount": 18824850579561284, + "raw_amount_hex_str": "0x42e11a13be9b45" + }, + { + "id": "0x25a88c235b406498bac270650c52086611e551d6", + "chain": "matic", + "name": "Balancer", + "symbol": "BalancerV2.com", + "display_symbol": null, + "optimized_symbol": "BalancerV2.com", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670158391, + "amount": 400, + "raw_amount": 40000, + "raw_amount_hex_str": "0x9c40" + }, + { + "id": "0x263026e7e53dbfdce5ae55ade22493f828922965", + "chain": "matic", + "name": "Ricochet", + "symbol": "RIC", + "display_symbol": null, + "optimized_symbol": "RIC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x263026e7e53dbfdce5ae55ade22493f828922965/322aa7d2d694f9455b0207d4f806f379.png", + "protocol_id": "", + "price": 0.011615742773995533, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1625856356, + "amount": 20.14831825837788, + "raw_amount": 20148318258377880000, + "raw_amount_hex_str": "0x1179d34b4a4217691" + }, + { + "id": "0x27610a91b1b620dd7130593d47b781ac5f8448b1", + "chain": "matic", + "name": "FFA", + "symbol": "FFA", + "display_symbol": null, + "optimized_symbol": "FFA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1657151346, + "amount": 0.000295335548531078, + "raw_amount": 295335548531078, + "raw_amount_hex_str": "0x10c9b2a75b186" + }, + { + "id": "0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015", + "chain": "matic", + "name": "THX Network (PoS)", + "symbol": "THX", + "display_symbol": null, + "optimized_symbol": "THX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x2934b36ca9a4b31e633c5be670c8c8b28b6aa015/0939518c154bd60a34da6785c93c412d.png", + "protocol_id": "", + "price": 0.03890642462359294, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635705305, + "amount": 63806.58635053967, + "raw_amount": 6.380658635053967e+22, + "raw_amount_hex_str": "0xd82f64420085d1e9bda" + }, + { + "id": "0x2a227fc77bb2cf8f1881a04ecc8fa01ec57ec9fc", + "chain": "matic", + "name": "Jarvis Synthetic Turkish Lira", + "symbol": "jTRY", + "display_symbol": null, + "optimized_symbol": "jTRY", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664900882, + "amount": 3.8974219169202837, + "raw_amount": 3897421916920283600, + "raw_amount_hex_str": "0x36166c9581db027c" + }, + { + "id": "0x2a7a9b5b4926306a75bdb5b71a1aad8a64181ec6", + "chain": "matic", + "name": "80RVRS-20lsMATIC", + "symbol": "80RVRS-20lsMATIC", + "display_symbol": null, + "optimized_symbol": "80RVRS-20lsMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678224074, + "amount": 4229.722653186817, + "raw_amount": 4.229722653186817e+21, + "raw_amount_hex_str": "0xe54b31870ad6fcf061" + }, + { + "id": "0x2b4fa97b84698dc1540d13d33754757bac3c8115", + "chain": "matic", + "name": "PlannerDAO Opportunity Index (PoS)", + "symbol": "PDAO", + "display_symbol": null, + "optimized_symbol": "PDAO", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.2870467491560524, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646654414, + "amount": 9.94455980779099, + "raw_amount": 9944559807790990000, + "raw_amount_hex_str": "0x8a022c74e7024141" + }, + { + "id": "0x2b8572cf7775243a03a92a0db80ef427682da0c2", + "chain": "matic", + "name": "8020USDC-80RVRS-201CT", + "symbol": "8020USDC-80RVRS-201CT", + "display_symbol": null, + "optimized_symbol": "8020USDC-80RVRS-201CT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678297642, + "amount": 3.4230923312e-8, + "raw_amount": 34230923312, + "raw_amount_hex_str": "0x7f8527030" + }, + { + "id": "0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b", + "chain": "matic", + "name": "Avalanche Token", + "symbol": "AVAX", + "display_symbol": null, + "optimized_symbol": "AVAX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b/8da43cd8fbb77a5dd325a3c4f40e082b.png", + "protocol_id": "", + "price": 16.68, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1627047264, + "amount": 31.872334953555217, + "raw_amount": 31872334953555220000, + "raw_amount_hex_str": "0x1ba5147c5fceccff5" + }, + { + "id": "0x2d46979fd4c5f7a04f65111399cff3da2dab5bd9", + "chain": "matic", + "name": "Balancer aMATICc Composable Stable Pool", + "symbol": "B-aMATICc-Stable", + "display_symbol": null, + "optimized_symbol": "B-aMATICc-Stable", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.2302998842177209, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1665413166, + "amount": 0.003311758571077835, + "raw_amount": 3311758571077835, + "raw_amount_hex_str": "0xbc406e13600cb" + }, + { + "id": "0x2e1ad108ff1d8c782fcbbb89aad783ac49586756", + "chain": "matic", + "name": "TrueUSD (PoS)", + "symbol": "TUSD", + "display_symbol": null, + "optimized_symbol": "TUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x2e1ad108ff1d8c782fcbbb89aad783ac49586756/27ee4a21b4710859ac742c37eb84a21f.png", + "protocol_id": "", + "price": 0.9976, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620793831, + "amount": 1684.388116279641, + "raw_amount": 1.684388116279641e+21, + "raw_amount_hex_str": "0x5b4f94b37c515befb6" + }, + { + "id": "0x2f1a7bbd5e5eb5c1bd769f2787de5cba22c3006c", + "chain": "matic", + "name": "16USDC-80RVRS-4lsMATIC", + "symbol": "16USDC-80RVRS-4lsMATIC", + "display_symbol": null, + "optimized_symbol": "16USDC-80RVRS-4lsMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678342200, + "amount": 31863.77787567219, + "raw_amount": 3.186377787567219e+22, + "raw_amount_hex_str": "0x6bf56bf8464afc7aafc" + }, + { + "id": "0x2fd23d735860bc64090d9807ff6c0d1a3d721f08", + "chain": "matic", + "name": "softbalanced.com", + "symbol": "USBL", + "display_symbol": null, + "optimized_symbol": "USBL", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1632299164, + "amount": 0.001334074306642412, + "raw_amount": 1334074306642412, + "raw_amount_hex_str": "0x4bd556126c1ec" + }, + { + "id": "0x329434fe066ac71d5fb93489f955a6959658097b", + "chain": "matic", + "name": "Aave interest bearing DAI (PoS)", + "symbol": "aDAI", + "display_symbol": null, + "optimized_symbol": "aDAI", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1621230074, + "amount": 0.001407130919444456, + "raw_amount": 1407130919444456, + "raw_amount_hex_str": "0x4ffc7329b1fe8" + }, + { + "id": "0x33cb1e3f25f78fc2b6436166c3f4e01620f5c6d9", + "chain": "matic", + "name": "HopUSDC.com", + "symbol": "hUSDC", + "display_symbol": null, + "optimized_symbol": "hUSDC", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678817255, + "amount": 1833.75, + "raw_amount": 183375, + "raw_amount_hex_str": "0x2cc4f" + }, + { + "id": "0x340f412860da7b7823df372a2b59ff78b7ae6abc", + "chain": "matic", + "name": "Inverse MATIC Flexible Leverage Index", + "symbol": "iMATIC-FLI-P", + "display_symbol": null, + "optimized_symbol": "iMATIC-FLI-P", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x340f412860da7b7823df372a2b59ff78b7ae6abc/695c068ccc48dff7a5716ce39b7527e0.png", + "protocol_id": "matic_tokensets", + "price": 63.23396533654584, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1643923390, + "amount": 1.7864916534959432, + "raw_amount": 1786491653495943200, + "raw_amount_hex_str": "0x18cae4b190d3703a" + }, + { + "id": "0x345c59e93de1e87509327795ab9ed4d158884a96", + "chain": "matic", + "name": "50FTRA-50WMATIC", + "symbol": "50FTRA-50WMATIC", + "display_symbol": null, + "optimized_symbol": "50FTRA-50WMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678409176, + "amount": 8.96619036e-10, + "raw_amount": 896619036, + "raw_amount_hex_str": "0x3571521c" + }, + { + "id": "0x360873c9b6080962bb4f96bb2089728b6761a1fc", + "chain": "matic", + "name": "Aave Matic Market USDT", + "symbol": "amUSDT ", + "display_symbol": null, + "optimized_symbol": "amUSDT ", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659664487, + "amount": 7.816116463518676, + "raw_amount": 7816116463518676000, + "raw_amount_hex_str": "0x6c786c83131cf4ee" + }, + { + "id": "0x36b4cb4b596025776c0fd0c2fdb2f883814a089c", + "chain": "matic", + "name": "WM-HEX-BAL-SAND-GROSH", + "symbol": "WM-HEX-BAL-SAND-GROSH", + "display_symbol": null, + "optimized_symbol": "WM-HEX-BAL-SAND-GROSH", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677921693, + "amount": 2.047242057952348, + "raw_amount": 2047242057952348000, + "raw_amount_hex_str": "0x1c6943ce117d477d" + }, + { + "id": "0x37b83b1d3f61b1fae6906603059cba0708abe6d2", + "chain": "matic", + "name": "8020USDC-80RVRS-20lsMATIC", + "symbol": "8020USDC-80RVRS-20lsMATIC", + "display_symbol": null, + "optimized_symbol": "8020USDC-80RVRS-20lsMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678320231, + "amount": 0.001480276427552054, + "raw_amount": 1480276427552054, + "raw_amount_hex_str": "0x5424db6a23536" + }, + { + "id": "0x37b8e1152fb90a867f3dcca6e8d537681b04705e", + "chain": "matic", + "name": "Proto Gyro Dollar", + "symbol": "p-GYD", + "display_symbol": null, + "optimized_symbol": "p-GYD", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670004490, + "amount": 0.0720393592356105, + "raw_amount": 72039359235610500, + "raw_amount_hex_str": "0xffef6a6115d780" + }, + { + "id": "0x37ef9ca66376a96bdf5eb9974738132757ed0730", + "chain": "matic", + "name": "SD-HEX-THX-SPHERE-BAL-SAND-LDO-GROSH", + "symbol": "SD-HEX-THX-SPHERE-BAL-SAND-LDO-GROSH", + "display_symbol": null, + "optimized_symbol": "SD-HEX-THX-SPHERE-BAL-SAND-LDO-GROSH", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677925305, + "amount": 19.048448930074564, + "raw_amount": 19048448930074563000, + "raw_amount_hex_str": "0x10859af60ff4396d9" + }, + { + "id": "0x3809dcdd5dde24b37abe64a5a339784c3323c44f", + "chain": "matic", + "name": "TrustSwap Token (PoS)", + "symbol": "SWAP", + "display_symbol": null, + "optimized_symbol": "SWAP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x3809dcdd5dde24b37abe64a5a339784c3323c44f/ef086c4baf41e0e99532f23320adbe3a.png", + "protocol_id": "", + "price": 0.37119353770148433, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1612673727, + "amount": 457.87987107753844, + "raw_amount": 457879871077538460000, + "raw_amount_hex_str": "0x18d25c14cb2255bd5e" + }, + { + "id": "0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7", + "chain": "matic", + "name": "Aavegotchi GHST Token (PoS)", + "symbol": "GHST", + "display_symbol": null, + "optimized_symbol": "GHST", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x385eeac5cb85a38a9a07a70c73e0a3271cfb54a7/70918cb9df86b2f332c9649077756581.png", + "protocol_id": "matic_aavegotchi", + "price": 1.1921500217539425, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1609946620, + "amount": 1.3341067516371565, + "raw_amount": 1334106751637156400, + "raw_amount_hex_str": "0x1283b305afc87261" + }, + { + "id": "0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4", + "chain": "matic", + "name": "Staked MATIC (PoS)", + "symbol": "stMATIC", + "display_symbol": null, + "optimized_symbol": "stMATIC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x3a58a54c066fdc0f2d55fc9c89f0415c92ebf3c4/8f7443e9c28581c4a108b8232d426332.png", + "protocol_id": "", + "price": 1.2652380969971573, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1645815648, + "amount": 1945.4079349078677, + "raw_amount": 1.9454079349078677e+21, + "raw_amount_hex_str": "0x6975f56195f1b3960e" + }, + { + "id": "0x3ce9db0a41807f32ece5758305bc9da239687ec6", + "chain": "matic", + "name": "Shimagnum", + "symbol": "SHM", + "display_symbol": null, + "optimized_symbol": "SHM", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647802193, + "amount": 1721.5933631803925, + "raw_amount": 1.7215933631803925e+21, + "raw_amount_hex_str": "0x5d53e84a6b855d8154" + }, + { + "id": "0x3d468ab2329f296e1b9d8476bb54dd77d8c2320f", + "chain": "matic", + "name": "20WETH-80BAL", + "symbol": "20WETH-80BAL", + "display_symbol": null, + "optimized_symbol": "20WETH-80BAL", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 16.890032513262582, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648637234, + "amount": 1.8752152232461576, + "raw_amount": 1875215223246157600, + "raw_amount_hex_str": "0x1a061a4f6afdf745" + }, + { + "id": "0x3ddf130b136ae0b5c47d55ad9b800208d345e88d", + "chain": "matic", + "name": "quick-v2.xyz", + "symbol": " QuickSwap Token", + "display_symbol": null, + "optimized_symbol": " QuickSwap Token", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667616274, + "amount": 8933, + "raw_amount": 8.933e+21, + "raw_amount_hex_str": "0x1e442474af004740000" + }, + { + "id": "0x3eae5bd24b2038fb40688e5f0b4682a773db3733", + "chain": "matic", + "name": "Poly Luna Classic ", + "symbol": "PLUNC", + "display_symbol": null, + "optimized_symbol": "PLUNC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1663121924, + "amount": 210.13605500398623, + "raw_amount": 210136055003986230000, + "raw_amount_hex_str": "0xb64393cad768b6393" + }, + { + "id": "0x3fa5bc9d4713979f86dfdddd15eee534cf3b6c24", + "chain": "matic", + "name": "Vector Appreciation Pool", + "symbol": "VAP", + "display_symbol": null, + "optimized_symbol": "VAP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678544667, + "amount": 0.0000091761334684, + "raw_amount": 9176133468400, + "raw_amount_hex_str": "0x8587c2d00f0" + }, + { + "id": "0x403e967b044d4be25170310157cb1a4bf10bdd0f", + "chain": "matic", + "name": "Aavegotchi FUD", + "symbol": "FUD", + "display_symbol": null, + "optimized_symbol": "FUD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x403e967b044d4be25170310157cb1a4bf10bdd0f/9ee3711b83317d404722ab0fa5a59f03.png", + "protocol_id": "", + "price": 0.0013258733579732706, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1648566392, + "amount": 0.7486273693632914, + "raw_amount": 748627369363291400, + "raw_amount_hex_str": "0xa63a8a04408bd19" + }, + { + "id": "0x4227c55bf21e95a87c00988fec98c50e9aba866c", + "chain": "matic", + "name": "Fluffy Corgi Inu", + "symbol": "FluffyCorgi", + "display_symbol": null, + "optimized_symbol": "FluffyCorgi", + "decimals": 9, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1638530028, + "amount": 9746.866254216, + "raw_amount": 9746866254216, + "raw_amount_hex_str": "0x8dd5e803188" + }, + { + "id": "0x42d256b4a4ec5b879477302402067d4462d7c851", + "chain": "matic", + "name": "HopUSDC.com", + "symbol": "hUSDC", + "display_symbol": null, + "optimized_symbol": "hUSDC", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678562286, + "amount": 1520, + "raw_amount": 152000, + "raw_amount_hex_str": "0x251c0" + }, + { + "id": "0x42e5e06ef5b90fe15f853f59299fc96259209c5c", + "chain": "matic", + "name": "Aavegotchi KEK", + "symbol": "KEK", + "display_symbol": null, + "optimized_symbol": "KEK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x42e5e06ef5b90fe15f853f59299fc96259209c5c/4f2a4b19f6724aa0b444551f29e933c5.png", + "protocol_id": "", + "price": 0.014826797670192843, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1648566500, + "amount": 0.005256985673352816, + "raw_amount": 5256985673352816, + "raw_amount_hex_str": "0x12ad335ba64670" + }, + { + "id": "0x43152bdc283c7c263aabb74cf1d27a5e611dc219", + "chain": "matic", + "name": "25USDC-25LINK-25WETH-25NEX", + "symbol": "25USDC-25LINK-25WETH-25NEX", + "display_symbol": null, + "optimized_symbol": "25USDC-25LINK-25WETH-25NEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677947124, + "amount": 0.16401667757615657, + "raw_amount": 164016677576156580, + "raw_amount_hex_str": "0x246b44c9c2aa591" + }, + { + "id": "0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f", + "chain": "matic", + "name": "Rainbow Token", + "symbol": "RBW", + "display_symbol": null, + "optimized_symbol": "RBW", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f/ed0f2b630b10a8c2049d5d2ec4c27a22.png", + "protocol_id": "matic_cryptounicorns", + "price": 0.03947297136685876, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1645813586, + "amount": 113500.23146999466, + "raw_amount": 1.1350023146999466e+23, + "raw_amount_hex_str": "0x1808dc20e3f60bf2ab4a" + }, + { + "id": "0x438374ea6e7aafee3be6f925ba50071dd22ed70b", + "chain": "matic", + "name": "Galaxy Coin", + "symbol": "GLXY", + "display_symbol": null, + "optimized_symbol": "GLXY", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1630071752, + "amount": 38581.595035019294, + "raw_amount": 3.85815950350193e+22, + "raw_amount_hex_str": "0x82b83306e4c7bc77736" + }, + { + "id": "0x438f1479ce240424f3ccaea5c112338075c4eede", + "chain": "matic", + "name": "t.me/maticroll", + "symbol": "t.me/maticroll", + "display_symbol": null, + "optimized_symbol": "t.me/maticroll", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1645355794, + "amount": 224.34022654796, + "raw_amount": 224340226547960000000, + "raw_amount_hex_str": "0xc295897709dd02e00" + }, + { + "id": "0x45c32fa6df82ead1e2ef74d17b76547eddfaff89", + "chain": "matic", + "name": "Frax", + "symbol": "FRAX", + "display_symbol": null, + "optimized_symbol": "FRAX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x45c32fa6df82ead1e2ef74d17b76547eddfaff89/aa8e1bfa48ac5f3c6929273a41cc5f8f.png", + "protocol_id": "", + "price": 0.9975682862579172, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1632204114, + "amount": 953.2421720019092, + "raw_amount": 953242172001909200000, + "raw_amount_hex_str": "0x33ace480f1379bcf2b" + }, + { + "id": "0x46c2c34c8a9722da85ba2f5efa7c7283d56b8c75", + "chain": "matic", + "name": "SKRSKR", + "symbol": "SKR", + "display_symbol": null, + "optimized_symbol": "SKR", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1640617323, + "amount": 525.9419383648042, + "raw_amount": 525941938364804200000, + "raw_amount_hex_str": "0x1c82e91e620a8b3f61" + }, + { + "id": "0x4731479cd56e3a55f8207db9734e3fdb5e136d43", + "chain": "matic", + "name": "u suck d", + "symbol": "usd", + "display_symbol": null, + "optimized_symbol": "usd", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641207400, + "amount": 0.006920745651050211, + "raw_amount": 6920745651050211, + "raw_amount_hex_str": "0x189661aa1c96e3" + }, + { + "id": "0x47401399b2eca91930c99126df20a11531f99465", + "chain": "matic", + "name": "3BRL", + "symbol": "3BRL", + "display_symbol": null, + "optimized_symbol": "3BRL", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666467911, + "amount": 6.99997816852e-7, + "raw_amount": 699997816852, + "raw_amount_hex_str": "0xa2fb1f0814" + }, + { + "id": "0x479d3214079c38ed9ab296d96b88bfe23eed0002", + "chain": "matic", + "name": "Brilliant", + "symbol": "BRL", + "display_symbol": null, + "optimized_symbol": "BRL", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1627661543, + "amount": 162.52742585394253, + "raw_amount": 162527425853942530000, + "raw_amount_hex_str": "0x8cf8568b4fae1f2d2" + }, + { + "id": "0x486880fb16408b47f928f472f57bec55ac6089d1", + "chain": "matic", + "name": "Jarvis Synthetic Philippine Peso", + "symbol": "jPHP", + "display_symbol": null, + "optimized_symbol": "jPHP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": null, + "amount": 14.67107479433844, + "raw_amount": 14671074794338440000, + "raw_amount_hex_str": "0xcb9a20cb75bad33a" + }, + { + "id": "0x48e6b98ef6329f8f0a30ebb8c7c960330d648085", + "chain": "matic", + "name": "Balancer Aave Boosted StablePool", + "symbol": "bb-am-usd", + "display_symbol": null, + "optimized_symbol": "bb-am-usd", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.0047312935352521, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662565651, + "amount": 2547.055147327636, + "raw_amount": 2.547055147327636e+21, + "raw_amount_hex_str": "0x8a137da99e31fb02ec" + }, + { + "id": "0x4905d01c9786b2612cfd8d58182b1e6611744c72", + "chain": "matic", + "name": "6520USDC-80RVRS-35lsMATIC", + "symbol": "6520USDC-80RVRS-35lsMATIC", + "display_symbol": null, + "optimized_symbol": "6520USDC-80RVRS-35lsMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678247146, + "amount": 6.689347133817366, + "raw_amount": 6689347133817366000, + "raw_amount_hex_str": "0x5cd555c6ca76258d" + }, + { + "id": "0x4973f591784d9c94052a6c3ebd553fcd37bb0e55", + "chain": "matic", + "name": "Balancer 80SD-20maticX", + "symbol": "80SD-20maticX", + "display_symbol": null, + "optimized_symbol": "80SD-20maticX", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.0917062589598658, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667226107, + "amount": 694.3375099066374, + "raw_amount": 694337509906637400000, + "raw_amount_hex_str": "0x25a3de5e8096630b48" + }, + { + "id": "0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007", + "chain": "matic", + "name": "Tangible", + "symbol": "TNGBL", + "display_symbol": null, + "optimized_symbol": "TNGBL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x49e6a20f1bbdfeec2a8222e052000bbb14ee6007/2f07fea3de4943f1b4b662a55dcfe084.png", + "protocol_id": "matic_tangible", + "price": 2.13516875728033, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1651674532, + "amount": 194.9870184973074, + "raw_amount": 194987018497307380000, + "raw_amount_hex_str": "0xa91fd0c3ce0871fa9" + }, + { + "id": "0x49fc111e5ddd5580f48d6fdc4314540cb3a5cc4b", + "chain": "matic", + "name": "1337 (PoS)", + "symbol": "1337", + "display_symbol": null, + "optimized_symbol": "1337", + "decimals": 4, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1615178029, + "amount": 1.1063, + "raw_amount": 11063, + "raw_amount_hex_str": "0x2b37" + }, + { + "id": "0x4ace9026454357e2edc6d3582f5d25cdb4aa7392", + "chain": "matic", + "name": "AAVEPool.org", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1673523487, + "amount": 50.28, + "raw_amount": 5028, + "raw_amount_hex_str": "0x13a4" + }, + { + "id": "0x4c815d49301a82685862b15b67e05bbac0df3e4b", + "chain": "matic", + "name": "NODE", + "symbol": "NODE", + "display_symbol": null, + "optimized_symbol": "NODE", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647722115, + "amount": 0.000311541049977788, + "raw_amount": 311541049977788, + "raw_amount_hex_str": "0x11b584d9debbc" + }, + { + "id": "0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c", + "chain": "matic", + "name": "Jarvis Synthetic Euro", + "symbol": "jEUR", + "display_symbol": null, + "optimized_symbol": "jEUR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c/e530ffb2b377ed7b886a5768cae968c1.png", + "protocol_id": "", + "price": 1.059267103586442, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": null, + "amount": 3.500282177434658, + "raw_amount": 3500282177434658300, + "raw_amount_hex_str": "0x30938018579fa53b" + }, + { + "id": "0x4e78011ce80ee02d2c3e649fb657e45898257815", + "chain": "matic", + "name": "Klima DAO", + "symbol": "KLIMA", + "display_symbol": null, + "optimized_symbol": "KLIMA", + "decimals": 9, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x4e78011ce80ee02d2c3e649fb657e45898257815/197079d025a14e33e533c512e6e158c6.png", + "protocol_id": "matic_klimadao", + "price": 3.0080642268361117, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1633375647, + "amount": 0.000458678, + "raw_amount": 458678, + "raw_amount_hex_str": "0x6ffb6" + }, + { + "id": "0x4f025829c4b13df652f38abd2ab901185ff1e609", + "chain": "matic", + "name": "Inverse ETH Flexible Leverage Index", + "symbol": "iETH-FLI-P", + "display_symbol": null, + "optimized_symbol": "iETH-FLI-P", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_tokensets", + "price": 118.81824769417327, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1643913869, + "amount": 2.885639402363928, + "raw_amount": 2885639402363927600, + "raw_amount_hex_str": "0x280bd9bf67c5bc50" + }, + { + "id": "0x4f9dd10e3e70991ee978037c164cd3141c425c7f", + "chain": "matic", + "name": "AAVEPool.com", + "symbol": "pAAVE", + "display_symbol": null, + "optimized_symbol": "pAAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1674658624, + "amount": 37.28, + "raw_amount": 3728, + "raw_amount_hex_str": "0xe90" + }, + { + "id": "0x501ace9c35e60f03a2af4d484f49f9b1efde9f40", + "chain": "matic", + "name": "solace", + "symbol": "SOLACE", + "display_symbol": null, + "optimized_symbol": "SOLACE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x501ace9c35e60f03a2af4d484f49f9b1efde9f40/06d669f7d8a66cc1d92a277e9fa541a6.png", + "protocol_id": "matic_solace", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1643945879, + "amount": 28465.253814502325, + "raw_amount": 2.8465253814502324e+22, + "raw_amount_hex_str": "0x6071ac098e9581b3dbf" + }, + { + "id": "0x505c1bbab813870a65e067c2fb4adcbfcbd0f850", + "chain": "matic", + "name": "MoonDAO test", + "symbol": "MooneyX", + "display_symbol": null, + "optimized_symbol": "MooneyX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1658105160, + "amount": 4175.455725544422, + "raw_amount": 4.175455725544423e+21, + "raw_amount_hex_str": "0xe25a16abdebe3f1802" + }, + { + "id": "0x50b728d8d964fd00c2d0aad81718b71311fef68a", + "chain": "matic", + "name": "Synthetix Network Token (PoS)", + "symbol": "SNX", + "display_symbol": null, + "optimized_symbol": "SNX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x50b728d8d964fd00c2d0aad81718b71311fef68a/fb568c26c7902169572abe8fa966e791.png", + "protocol_id": "", + "price": 2.954905581392991, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614597917, + "amount": 0.000158480674379362, + "raw_amount": 158480674379362, + "raw_amount_hex_str": "0x9023284cd662" + }, + { + "id": "0x513cdee00251f39de280d9e5f771a6eafebcc88e", + "chain": "matic", + "name": "2eur (PAR)", + "symbol": "2eur (PAR)", + "display_symbol": null, + "optimized_symbol": "2eur (PAR)", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.0616299642359013, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676243596, + "amount": 4.937347427341702, + "raw_amount": 4937347427341702000, + "raw_amount_hex_str": "0x4484fb537364151b" + }, + { + "id": "0x5229cadb824fd5117f00e3614c138b62f2bd3156", + "chain": "matic", + "name": "XXPP.org", + "symbol": "XXPP.org", + "display_symbol": null, + "optimized_symbol": "XXPP.org", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660157146, + "amount": 50000, + "raw_amount": 5e+22, + "raw_amount_hex_str": "0xa968163f0a57b400000" + }, + { + "id": "0x52f3b30922d252151d72746dd325390a4e3fa1fb", + "chain": "matic", + "name": "quicks.exchange", + "symbol": "quicks.exchange", + "display_symbol": null, + "optimized_symbol": "quicks.exchange", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1659086201, + "amount": 2200, + "raw_amount": 2.2e+21, + "raw_amount_hex_str": "0x77432217e683600000" + }, + { + "id": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39", + "chain": "matic", + "name": "ChainLink Token", + "symbol": "LINK", + "display_symbol": null, + "optimized_symbol": "LINK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39/69425617db0ef93a7c21c4f9b81c7ca5.png", + "protocol_id": "", + "price": 7.1003116310983945, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1598767775, + "amount": 197.7186799147026, + "raw_amount": 197718679914702570000, + "raw_amount_hex_str": "0xab7e5dbd2ef0226be" + }, + { + "id": "0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2", + "chain": "matic", + "name": "bZx Protocol Token (PoS)", + "symbol": "BZRX", + "display_symbol": null, + "optimized_symbol": "BZRX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x54cfe73f2c7d0c4b62ab869b473f5512dc0944d2/de8708b026fb8f3f787c15b2346df189.png", + "protocol_id": "matic_bzx2", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1622179072, + "amount": 372.9085422062209, + "raw_amount": 372908542206220900000, + "raw_amount_hex_str": "0x1437254761e68efc04" + }, + { + "id": "0x55110c24859411822932a5263c6e44318cc3e682", + "chain": "matic", + "name": "SWAPQ.org", + "symbol": "SWAPQ.org", + "display_symbol": null, + "optimized_symbol": "SWAPQ.org", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651760905, + "amount": 95000, + "raw_amount": 9500000000000, + "raw_amount_hex_str": "0x8a3e4201800" + }, + { + "id": "0x5522962dce6be2a009d29e5699a67c38b392beb9", + "chain": "matic", + "name": "Balancer", + "symbol": "BalancerV2.com", + "display_symbol": null, + "optimized_symbol": "BalancerV2.com", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669993762, + "amount": 450, + "raw_amount": 45000, + "raw_amount_hex_str": "0xafc8" + }, + { + "id": "0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d", + "chain": "matic", + "name": "Distant Universe Stardust Token", + "symbol": "DUST", + "display_symbol": null, + "optimized_symbol": "DUST", + "decimals": 8, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x556f501cf8a43216df5bc9cc57eb04d4ffaa9e6d/852bddae11c8ac68e7e2340f80bef7d7.png", + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1598984109, + "amount": 8832.63440924, + "raw_amount": 883263440924, + "raw_amount_hex_str": "0xcda69a881c" + }, + { + "id": "0x576cf361711cd940cd9c397bb98c4c896cbd38de", + "chain": "matic", + "name": "USD Coin (Wormhole)", + "symbol": "USDC", + "display_symbol": "USDCso", + "optimized_symbol": "USDCso", + "decimals": 6, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x576cf361711cd940cd9c397bb98c4c896cbd38de/cebdd996dd1b6ea6c0537c6f773cd31b.png", + "protocol_id": "", + "price": 0.9951457489057928, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636467417, + "amount": 0.000092, + "raw_amount": 92, + "raw_amount_hex_str": "0x5c" + }, + { + "id": "0x580a84c73811e1839f75d86d75d88cca0c241ff4", + "chain": "matic", + "name": "Qi Dao", + "symbol": "QI", + "display_symbol": null, + "optimized_symbol": "QI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x580a84c73811e1839f75d86d75d88cca0c241ff4/be77e8e47016b1e9d3f01b7edc9b8d4f.png", + "protocol_id": "matic_mai", + "price": 0.0842590916127987, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620071746, + "amount": 3765.808759949869, + "raw_amount": 3.765808759949869e+21, + "raw_amount_hex_str": "0xcc25184b10823701fe" + }, + { + "id": "0x58db49376fec6fca063f510d6eca078ee149aee4", + "chain": "matic", + "name": "USD Coin (PoS)", + "symbol": "USDC", + "display_symbol": null, + "optimized_symbol": "USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1656431441, + "amount": 10232.655089257103, + "raw_amount": 1.0232655089257104e+22, + "raw_amount_hex_str": "0x22ab69db4bfc6b336c0" + }, + { + "id": "0x596ebe76e2db4470966ea395b0d063ac6197a8c5", + "chain": "matic", + "name": "Jarvis Reward Token (PoS)", + "symbol": "JRT", + "display_symbol": null, + "optimized_symbol": "JRT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x596ebe76e2db4470966ea395b0d063ac6197a8c5/daf3e9c8675f61832bff1059e5116de6.png", + "protocol_id": "", + "price": 0.012430810158078292, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614167970, + "amount": 134295.61634507088, + "raw_amount": 1.3429561634507088e+23, + "raw_amount_hex_str": "0x1c702e11312bfd493b33" + }, + { + "id": "0x5a0801bad20b6c62d86c566ca90688a6b9ea1d3f", + "chain": "matic", + "name": "Moo Curve aTriCrypto3", + "symbol": "mooCurveATriCrypto3", + "display_symbol": null, + "optimized_symbol": "mooCurveATriCrypto3", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_beefy", + "price": 1372.6156542938875, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1630045733, + "amount": 0.001579002312971512, + "raw_amount": 1579002312971512, + "raw_amount_hex_str": "0x59c181ff6d4f8" + }, + { + "id": "0x5a56cfa6637d44efe1491b86cb6221a8acd2998d", + "chain": "matic", + "name": "25AGA-50RVRS-25AGAr", + "symbol": "25AGA-50RVRS-25AGAr", + "display_symbol": null, + "optimized_symbol": "25AGA-50RVRS-25AGAr", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678222362, + "amount": 67.93746119265873, + "raw_amount": 67937461192658730000, + "raw_amount_hex_str": "0x3aed25901b24f465e" + }, + { + "id": "0x5ade2dae680999af21314b8bd78b34346be51818", + "chain": "matic", + "name": "AAVEPool.com", + "symbol": "pAAVE", + "display_symbol": null, + "optimized_symbol": "pAAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677445262, + "amount": 40.28, + "raw_amount": 4028, + "raw_amount_hex_str": "0xfbc" + }, + { + "id": "0x5c6f81b7cbc427745d95219f10bcb05cf1ece4d8", + "chain": "matic", + "name": "8020USDC-80RVRS-21CT-18lsMATIC", + "symbol": "8020USDC-80RVRS-21CT-18lsMATIC", + "display_symbol": null, + "optimized_symbol": "8020USDC-80RVRS-21CT-18lsMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678250465, + "amount": 3.12843784129e-7, + "raw_amount": 312843784129, + "raw_amount_hex_str": "0x48d6f14fc1" + }, + { + "id": "0x5f0197ba06860dac7e31258bdf749f92b6a636d4", + "chain": "matic", + "name": "Flare Token", + "symbol": "1FLR", + "display_symbol": null, + "optimized_symbol": "1FLR", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x5f0197ba06860dac7e31258bdf749f92b6a636d4/051ee183887b4918b3362c71e04fd423.png", + "protocol_id": "", + "price": 0.0004307478162104716, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1631465015, + "amount": 228.4123907664559, + "raw_amount": 228412390766455880000, + "raw_amount_hex_str": "0xc61dbd338ac5120aa" + }, + { + "id": "0x5fe2b58c013d7601147dcdd68c143a77499f5531", + "chain": "matic", + "name": "Graph Token (PoS)", + "symbol": "GRT", + "display_symbol": null, + "optimized_symbol": "GRT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x5fe2b58c013d7601147dcdd68c143a77499f5531/9446e7f2fa061e831c95096d5d435fa4.png", + "protocol_id": "", + "price": 0.15419388514074797, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614317452, + "amount": 55.566195699373075, + "raw_amount": 55566195699373070000, + "raw_amount_hex_str": "0x30322c89614f8617d" + }, + { + "id": "0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05", + "chain": "matic", + "name": "Impermax (PoS)", + "symbol": "IMX", + "display_symbol": null, + "optimized_symbol": "IMX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x60bb3d364b765c497c8ce50ae0ae3f0882c5bd05/3ce65bd522f6b93f3381795bd6d421ed.png", + "protocol_id": "matic_impermax", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1624288634, + "amount": 0.3519650218749413, + "raw_amount": 351965021874941250, + "raw_amount_hex_str": "0x4e26e529637ed46" + }, + { + "id": "0x60e49e3b837eaba8ab3b110ae3e964ba09048722", + "chain": "matic", + "name": "long", + "symbol": "long", + "display_symbol": null, + "optimized_symbol": "long", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1673661610, + "amount": 0.39224142738449796, + "raw_amount": 392241427384497900, + "raw_amount_hex_str": "0x57185800171f712" + }, + { + "id": "0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2", + "chain": "matic", + "name": "Elemental Particles", + "symbol": "EP", + "display_symbol": null, + "optimized_symbol": "EP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x60ed6acef3a96f8cdaf0c0d207bbafa66e751af2/9cbd7383ce02539e86ff2197ded9f810.png", + "protocol_id": "matic_firebot", + "price": 173.0752683805679, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1666856669, + "amount": 0.1525375645831615, + "raw_amount": 152537564583161500, + "raw_amount_hex_str": "0x21dec1b57e1eea5" + }, + { + "id": "0x625bfdd5052c27c45c8482efb26990af66aea94a", + "chain": "matic", + "name": "15WMATIC-15USDC-70MASQ", + "symbol": "15WMATIC-15USDC-70MASQ", + "display_symbol": null, + "optimized_symbol": "15WMATIC-15USDC-70MASQ", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677628886, + "amount": 1618.1606633409124, + "raw_amount": 1.6181606633409125e+21, + "raw_amount_hex_str": "0x57b87d85ed098c1a5b" + }, + { + "id": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", + "chain": "matic", + "name": "Aave Polygon USDC", + "symbol": "aPolUSDC", + "display_symbol": null, + "optimized_symbol": "aPolUSDC", + "decimals": 6, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x625e7708f30ca75bfd92586e17077590c60eb4cd/edbff4857cf186c17bfdac67f2b0e6b1.png", + "protocol_id": "matic_aave3", + "price": 0.9977, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1646995017, + "amount": 0.602893, + "raw_amount": 602893, + "raw_amount_hex_str": "0x9330d" + }, + { + "id": "0x62646b12ff5080d19584e9aef449279522a37f8d", + "chain": "matic", + "name": "AAVEPool.com", + "symbol": "pAAVE", + "display_symbol": null, + "optimized_symbol": "pAAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1674081453, + "amount": 58.22, + "raw_amount": 5822, + "raw_amount_hex_str": "0x16be" + }, + { + "id": "0x628d90d8a3937f50c71cabc76ca790095763d484", + "chain": "matic", + "name": "Crypto Yacht Club", + "symbol": "CYC", + "display_symbol": null, + "optimized_symbol": "CYC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1658762023, + "amount": 15.483648122805311, + "raw_amount": 15483648122805311000, + "raw_amount_hex_str": "0xd6e0f7ee8af4557a" + }, + { + "id": "0x6295e742f709fcc971413a7411c2c285081fbea7", + "chain": "matic", + "name": "AAVEPool.com", + "symbol": "pAAVE", + "display_symbol": null, + "optimized_symbol": "pAAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1676896575, + "amount": 49.08, + "raw_amount": 4908, + "raw_amount_hex_str": "0x132c" + }, + { + "id": "0x62f594339830b90ae4c084ae7d223ffafd9658a7", + "chain": "matic", + "name": "Sphere Finance", + "symbol": "SPHERE", + "display_symbol": null, + "optimized_symbol": "SPHERE", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x62f594339830b90ae4c084ae7d223ffafd9658a7/a07f70a95972affee40171c2f02554f4.png", + "protocol_id": "matic_sphere", + "price": 0.003664214819155001, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1652137136, + "amount": 1097471.464656706, + "raw_amount": 1.0974714646567059e+24, + "raw_amount_hex_str": "0xe8660c1c943fe2e8c0ec" + }, + { + "id": "0x64060ab139feaae7f06ca4e63189d86adeb51691", + "chain": "matic", + "name": "Unicorn Milk", + "symbol": "UNIM", + "display_symbol": null, + "optimized_symbol": "UNIM", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x64060ab139feaae7f06ca4e63189d86adeb51691/07c302121eea0493e38cf8f3b6ff3db6.png", + "protocol_id": "", + "price": 0.0014455847754499583, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1643228771, + "amount": 841329.7901331553, + "raw_amount": 8.413297901331553e+23, + "raw_amount_hex_str": "0xb228944dc9d599bf1047" + }, + { + "id": "0x6553c62167a8457724bfd89533d2b09164202652", + "chain": "matic", + "name": "Smart", + "symbol": "SMT", + "display_symbol": null, + "optimized_symbol": "SMT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1647816603, + "amount": 10.04089758910648, + "raw_amount": 10040897589106480000, + "raw_amount_hex_str": "0x8b586f2888c49357" + }, + { + "id": "0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70", + "chain": "matic", + "name": "Fitmint Token", + "symbol": "FITT", + "display_symbol": null, + "optimized_symbol": "FITT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x656bf6767fa8863ac0dd0b7d2a26602b838a2e70/5cd03e9cee7fe8aa1fd1947ebb3af975.png", + "protocol_id": "", + "price": 0.0009545928932065415, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1656025175, + "amount": 430494.47292041616, + "raw_amount": 4.3049447292041616e+23, + "raw_amount_hex_str": "0x5b2926f297a5d8bc3e20" + }, + { + "id": "0x65fe9314be50890fb01457be076fafd05ff32b9a", + "chain": "matic", + "name": "Balancer wstETH StablePool", + "symbol": "B-stETH-BPT", + "display_symbol": null, + "optimized_symbol": "B-stETH-BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1724.080941836338, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677786502, + "amount": 6.873480184003809, + "raw_amount": 6873480184003809000, + "raw_amount_hex_str": "0x5f6381cf623bcff5" + }, + { + "id": "0x6749441fdc8650b5b5a854ed255c82ef361f1596", + "chain": "matic", + "name": "Luchadores.io LUCHA Token", + "symbol": "LUCHA", + "display_symbol": null, + "optimized_symbol": "LUCHA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x6749441fdc8650b5b5a854ed255c82ef361f1596/c79c35d481e723830df3d6c4d41075b1.png", + "protocol_id": "", + "price": 0.02065444594978938, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639668924, + "amount": 396.70899570574016, + "raw_amount": 396708995705740100000, + "raw_amount_hex_str": "0x15817179bd729b5aea" + }, + { + "id": "0x6b526daf03b4c47af2bcc5860b12151823ff70e0", + "chain": "matic", + "name": "Jarvis Synthetic New Zealand Dollar", + "symbol": "jNZD", + "display_symbol": null, + "optimized_symbol": "jNZD", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": null, + "amount": 0.4622668907067951, + "raw_amount": 462266890706795100, + "raw_amount_hex_str": "0x66a4d49b400ba53" + }, + { + "id": "0x6b9a80572382159d3656ea43bea144f1151ccce7", + "chain": "matic", + "name": "Rotomico", + "symbol": "RTM", + "display_symbol": null, + "optimized_symbol": "RTM", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1645350364, + "amount": 420000, + "raw_amount": 4.2e+23, + "raw_amount_hex_str": "0x58f03ee118a13e800000" + }, + { + "id": "0x6df922bcbea7a7b8e22518dd8317139deeee73bf", + "chain": "matic", + "name": "The Great Coins", + "symbol": "TGC", + "display_symbol": null, + "optimized_symbol": "TGC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641177963, + "amount": 7.17516956852e-7, + "raw_amount": 717516956852, + "raw_amount_hex_str": "0xa70f57e4b4" + }, + { + "id": "0x6e14790535c04b1a58592fbee6109d9bc57a51ad", + "chain": "matic", + "name": "Gotchi Vault DAO Token", + "symbol": "VLT", + "display_symbol": null, + "optimized_symbol": "VLT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1642361880, + "amount": 0.03469425924334323, + "raw_amount": 34694259243343236, + "raw_amount_hex_str": "0x7b423eb5f1dd84" + }, + { + "id": "0x6e853072505c1c88d7f2a28dcb1c0efddb8f3b16", + "chain": "matic", + "name": "Plox Monero Bog Brothers", + "symbol": "plox", + "display_symbol": null, + "optimized_symbol": "plox", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641281774, + "amount": 174531.0974563406, + "raw_amount": 1.745310974563406e+23, + "raw_amount_hex_str": "0x24f559894f2807dc3fa8" + }, + { + "id": "0x6f2c60dbfce1a872878b685a4c2297af52636feb", + "chain": "matic", + "name": "AAVEPool.com", + "symbol": "pAAVE", + "display_symbol": null, + "optimized_symbol": "pAAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1674308550, + "amount": 55.17, + "raw_amount": 5517, + "raw_amount_hex_str": "0x158d" + }, + { + "id": "0x6f8a06447ff6fcf75d803135a7de15ce88c1d4ec", + "chain": "matic", + "name": "SHIBA INU (PoS)", + "symbol": "SHIB", + "display_symbol": null, + "optimized_symbol": "SHIB", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.000010863427413144068, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620022377, + "amount": 3425.469566004346, + "raw_amount": 3.4254695660043454e+21, + "raw_amount_hex_str": "0xb9b1f0955d8882d7b1" + }, + { + "id": "0x70118a4f48f494047d8397bfa341e61990fe40f5", + "chain": "matic", + "name": "50wstETH-50WHALE", + "symbol": "50wstETH-50WHALE", + "display_symbol": null, + "optimized_symbol": "50wstETH-50WHALE", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678230149, + "amount": 1.2815348589e-8, + "raw_amount": 12815348589, + "raw_amount_hex_str": "0x2fbdab36d" + }, + { + "id": "0x71c3f47a6e571da30084a984c430d2bb000cff74", + "chain": "matic", + "name": "AAVEPool.org", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672922829, + "amount": 59.29, + "raw_amount": 5929, + "raw_amount_hex_str": "0x1729" + }, + { + "id": "0x726e324c29a1e49309672b244bdc4ff62a270407", + "chain": "matic", + "name": "BPT-XSGD-USDC", + "symbol": "BPT", + "display_symbol": null, + "optimized_symbol": "BPT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660876171, + "amount": 116.10143022578828, + "raw_amount": 116101430225788270000, + "raw_amount_hex_str": "0x64b3b23a89ae908e7" + }, + { + "id": "0x72928d5436ff65e57f72d5566dcd3baedc649a88", + "chain": "matic", + "name": "humanDAO (PoS)", + "symbol": "HDAO", + "display_symbol": null, + "optimized_symbol": "HDAO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x72928d5436ff65e57f72d5566dcd3baedc649a88/b31af6fb52cba52831e0ebd1cea1d52e.png", + "protocol_id": "", + "price": 0.011286711031040403, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638364261, + "amount": 169057.69683223037, + "raw_amount": 1.6905769683223037e+23, + "raw_amount_hex_str": "0x23cca2d80ad8f3b4d1dc" + }, + { + "id": "0x72f4de7ef3e2cebf98ae2aff38533fe899629ebf", + "chain": "matic", + "name": "THX-stMATIC-SPHERE-GROSH-MaticX", + "symbol": "THX-stMATIC-SPHERE-GROSH-MaticX", + "display_symbol": null, + "optimized_symbol": "THX-stMATIC-SPHERE-GROSH-MaticX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678711027, + "amount": 5.654420871452333, + "raw_amount": 5654420871452333000, + "raw_amount_hex_str": "0x4e7889d2fd7895fd" + }, + { + "id": "0x7419b5961aef8097a9fd1573f8e3b4cd5800f7ae", + "chain": "matic", + "name": "60iBTC-FLI-P-20WBTC-20BTC2x-FLI-P", + "symbol": "60iBTC-FLI-P-20WBTC-20BTC2x-FLI-P", + "display_symbol": null, + "optimized_symbol": "60iBTC-FLI-P-20WBTC-20BTC2x-FLI-P", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 133708.7288619481, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652212554, + "amount": 1.978597075e-9, + "raw_amount": 1978597075, + "raw_amount_hex_str": "0x75eefed3" + }, + { + "id": "0x74358a222259ab6b6aa4b367f333595f6563d96e", + "chain": "matic", + "name": "8020USDC-80RVRS-20lsMATIC", + "symbol": "8020USDC-80RVRS-20lsMATIC", + "display_symbol": null, + "optimized_symbol": "8020USDC-80RVRS-20lsMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678297332, + "amount": 1.09068078213e-7, + "raw_amount": 109068078213, + "raw_amount_hex_str": "0x1964f6cc85" + }, + { + "id": "0x767058f11800fba6a682e73a6e79ec5eb74fac8c", + "chain": "matic", + "name": "Jarvis Synthetic British Pound", + "symbol": "jGBP", + "display_symbol": null, + "optimized_symbol": "jGBP", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x767058f11800fba6a682e73a6e79ec5eb74fac8c/65a8ec523d827d3aec41d332b0b24f7d.png", + "protocol_id": "", + "price": 1.2114178466212266, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": null, + "amount": 0.19034369461359554, + "raw_amount": 190343694613595550, + "raw_amount_hex_str": "0x2a43c94eeadc5a2" + }, + { + "id": "0x79e02896e4e30f144df91e6007d3be54131b8fa6", + "chain": "matic", + "name": "50USDC-50TUSD", + "symbol": "50USDC-50TUSD", + "display_symbol": null, + "optimized_symbol": "50USDC-50TUSD", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678118807, + "amount": 3e-18, + "raw_amount": 3, + "raw_amount_hex_str": "0x3" + }, + { + "id": "0x7afc28a39638d2d885ec314f2f8114f9db8b9b73", + "chain": "matic", + "name": "UNI", + "symbol": "app.uniswap.cab", + "display_symbol": null, + "optimized_symbol": "app.uniswap.cab", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668551988, + "amount": 20, + "raw_amount": 2000, + "raw_amount_hex_str": "0x7d0" + }, + { + "id": "0x7b367a058f370c0057762280547d0b974cf3ac10", + "chain": "matic", + "name": "PAR Stablecoin (PoS)", + "symbol": "PAR", + "display_symbol": null, + "optimized_symbol": "PAR", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1625028044, + "amount": 0.019836020712003972, + "raw_amount": 19836020712003972, + "raw_amount_hex_str": "0x4678c1784bd985" + }, + { + "id": "0x7bda64742bacbfd6d9312921f6b072ed08fcb7c0", + "chain": "matic", + "name": "Alpha Beta Coin", + "symbol": "ABC", + "display_symbol": null, + "optimized_symbol": "ABC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641027531, + "amount": 2524363.1222577863, + "raw_amount": 2.5243631222577863e+24, + "raw_amount_hex_str": "0x2168dffc2b46c62008f3c" + }, + { + "id": "0x7bfe43e475ebea07fa03337da551e18502c8793c", + "chain": "matic", + "name": "Stepn.fitness", + "symbol": "GMT", + "display_symbol": null, + "optimized_symbol": "GMT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649282339, + "amount": 245.3, + "raw_amount": 245300000000000000000, + "raw_amount_hex_str": "0xd4c38aa584b520000" + }, + { + "id": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619", + "chain": "matic", + "name": "Wrapped Ether", + "symbol": "WETH", + "display_symbol": null, + "optimized_symbol": "WETH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619/61844453e63cf81301f845d7864236f6.png", + "protocol_id": "", + "price": 1734.73, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1598443525, + "amount": 1.555026774611857, + "raw_amount": 1555026774611857000, + "raw_amount_hex_str": "0x1594909cd4f60dac" + }, + { + "id": "0x7d60a4cb5ca92e2da965637025122296ea6854f9", + "chain": "matic", + "name": "2EUR (PAR)", + "symbol": "2EUR (PAR)", + "display_symbol": null, + "optimized_symbol": "2EUR (PAR)", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.0643455011886789, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666541785, + "amount": 0.000489924061893403, + "raw_amount": 489924061893403, + "raw_amount_hex_str": "0x1bd9555ad131b" + }, + { + "id": "0x7d645cbbcade2a130bf1bf0528b8541d32d3f8cf", + "chain": "matic", + "name": "Alerto", + "symbol": "ALRTO", + "display_symbol": null, + "optimized_symbol": "ALRTO", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641008069, + "amount": 11279553.725796085, + "raw_amount": 1.1279553725796084e+25, + "raw_amount_hex_str": "0x95489d52c66a1bfb85396" + }, + { + "id": "0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4", + "chain": "matic", + "name": "SOL", + "symbol": "SOL", + "display_symbol": null, + "optimized_symbol": "SOL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x7dff46370e9ea5f0bad3c4e29711ad50062ea7a4/9aa4990a19587f9bc17f1a514e0afed7.png", + "protocol_id": "", + "price": 19.981223191805327, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1625586165, + "amount": 131.2455502711603, + "raw_amount": 131245550271160300000, + "raw_amount_hex_str": "0x71d65dc9a572ebe12" + }, + { + "id": "0x7f1d09d44511323c51fe803763c59ff929d7c1fb", + "chain": "matic", + "name": "AAVEPool.com", + "symbol": "pAAVE", + "display_symbol": null, + "optimized_symbol": "pAAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1674403404, + "amount": 57.08, + "raw_amount": 5708, + "raw_amount_hex_str": "0x164c" + }, + { + "id": "0x7f49a51970e4b4ce3b4ca2d47cd7c4e9978a110a", + "chain": "matic", + "name": "Appreciation Vector Pool", + "symbol": "AVP", + "display_symbol": null, + "optimized_symbol": "AVP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678509142, + "amount": 0.000098915823188986, + "raw_amount": 98915823188986, + "raw_amount_hex_str": "0x59f6a280fbfa" + }, + { + "id": "0x7f4c2f7671e6817bb01195d24e4eafc94435f5d0", + "chain": "matic", + "name": "$0Bets.io", + "symbol": "0Bets.io", + "display_symbol": null, + "optimized_symbol": "0Bets.io", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662659082, + "amount": 3000000, + "raw_amount": 300000000000000, + "raw_amount_hex_str": "0x110d9316ec000" + }, + { + "id": "0x7fc9e0aa043787bfad28e29632ada302c790ce33", + "chain": "matic", + "name": "TETU_ST_BAL", + "symbol": "tetuBAL", + "display_symbol": null, + "optimized_symbol": "tetuBAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x7fc9e0aa043787bfad28e29632ada302c790ce33/1d3a9bc0fbd5d721688604b80c3638d1.png", + "protocol_id": "matic_tetu", + "price": 16.890032513262582, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1649155501, + "amount": 152.51928446420243, + "raw_amount": 152519284464202450000, + "raw_amount_hex_str": "0x844a159236d8a4bd5" + }, + { + "id": "0x801048e776b5c89ee8fe8dbb0bb4f385f89a1002", + "chain": "matic", + "name": "WM-THX-SPHERE-BGROSH", + "symbol": "WM-THX-SPHERE-BGROSH", + "display_symbol": null, + "optimized_symbol": "WM-THX-SPHERE-BGROSH", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1677780198, + "amount": 28.89215325397558, + "raw_amount": 28892153253975580000, + "raw_amount_hex_str": "0x190f58c4eab5c5879" + }, + { + "id": "0x80ab6dc6e6ca99f2319213cd97fa02c14e4bd434", + "chain": "matic", + "name": "Focused Sharpe Index ", + "symbol": "FSI", + "display_symbol": null, + "optimized_symbol": "FSI", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_dhedge", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1629225482, + "amount": 0.00000564571260968, + "raw_amount": 5645712609680, + "raw_amount_hex_str": "0x5227eb1d190" + }, + { + "id": "0x8159462d255c1d24915cb51ec361f700174cd994", + "chain": "matic", + "name": "Balancer stMATIC Stable Pool", + "symbol": "B-stMATIC-Stable", + "display_symbol": null, + "optimized_symbol": "B-stMATIC-Stable", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.194758322650722, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662566113, + "amount": 79.88962186597419, + "raw_amount": 79889621865974200000, + "raw_amount_hex_str": "0x454b0f3d051abea83" + }, + { + "id": "0x831753dd7087cac61ab5644b308642cc1c33dc13", + "chain": "matic", + "name": "Quickswap", + "symbol": "QUICK", + "display_symbol": null, + "optimized_symbol": "QUICK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x831753dd7087cac61ab5644b308642cc1c33dc13/3f40a8915d99b9dd0e24d5205c89eb34.png", + "protocol_id": "matic_quickswap", + "price": 90.23219892757919, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602175296, + "amount": 0.005125994240309156, + "raw_amount": 5125994240309156, + "raw_amount_hex_str": "0x12361089d077a4" + }, + { + "id": "0x84072c5d4150b9d2eea0e3345d343d5333673125", + "chain": "matic", + "name": "Panda Panda", + "symbol": "PP", + "display_symbol": null, + "optimized_symbol": "PP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1640611205, + "amount": 376.0840950112882, + "raw_amount": 376084095011288200000, + "raw_amount_hex_str": "0x1463371bd5761724cc" + }, + { + "id": "0x8439e5dfefa4aeefec51dc8ba49585b61cf0a387", + "chain": "matic", + "name": "Lithereum", + "symbol": "Lithereum", + "display_symbol": null, + "optimized_symbol": "Lithereum", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 3.404833151016379, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671446929, + "amount": 0.010000754412785598, + "raw_amount": 10000754412785598, + "raw_amount_hex_str": "0x2387a216428fbe" + }, + { + "id": "0x8440178087c4fd348d43d0205f4574e0348a06f0", + "chain": "matic", + "name": "STAR", + "symbol": "STAR", + "display_symbol": null, + "optimized_symbol": "STAR", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 3.415426566627698, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641959576, + "amount": 0.21404732240262886, + "raw_amount": 214047322402628860, + "raw_amount_hex_str": "0x2f872e7d8eea500" + }, + { + "id": "0x852555976ff18c2a888bd27ff311c9ec904de9c3", + "chain": "matic", + "name": "Usd penny", + "symbol": "USDP", + "display_symbol": null, + "optimized_symbol": "USDP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653021277, + "amount": 1227471.3504096803, + "raw_amount": 1.2274713504096804e+24, + "raw_amount_hex_str": "0x103ed5af0efaa6ed890d4" + }, + { + "id": "0x85955046df4668e1dd369d2de9f3aeb98dd2a369", + "chain": "matic", + "name": "DefiPulse Index (PoS)", + "symbol": "DPI", + "display_symbol": null, + "optimized_symbol": "DPI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x85955046df4668e1dd369d2de9f3aeb98dd2a369/cac4b8786465385d6d4c4b7620db33f7.png", + "protocol_id": "", + "price": 83.8060757288645, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614144342, + "amount": 0.003319029213046614, + "raw_amount": 3319029213046614, + "raw_amount_hex_str": "0xbcaa3b53e2756" + }, + { + "id": "0x8a6b62f5501410d179641e731a8f1cecef1c28ec", + "chain": "matic", + "name": "PolygonClassics.com", + "symbol": "PolygonClassics.com", + "display_symbol": null, + "optimized_symbol": "PolygonClassics.com", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1665788585, + "amount": 1497, + "raw_amount": 1.497e+21, + "raw_amount_hex_str": "0x51270c608dd7c40000" + }, + { + "id": "0x8ac5fafe2e52e52f5352aec64b64ff8b305e1d4a", + "chain": "matic", + "name": "Balancer 50THX-50stMATIC", + "symbol": "B-50THX-50stMATIC", + "display_symbol": null, + "optimized_symbol": "B-50THX-50stMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 0.22260997574374547, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664224189, + "amount": 2572.2657853989076, + "raw_amount": 2.5722657853989076e+21, + "raw_amount_hex_str": "0x8b715bd75f41129b66" + }, + { + "id": "0x8b42b196e497a91a2668e95c949e067037af2922", + "chain": "matic", + "name": "80RVRS-201CT", + "symbol": "80RVRS-201CT", + "display_symbol": null, + "optimized_symbol": "80RVRS-201CT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678304897, + "amount": 1e-12, + "raw_amount": 1000000, + "raw_amount_hex_str": "0xf4240" + }, + { + "id": "0x8c92e38eca8210f4fcbf17f0951b198dd7668292", + "chain": "matic", + "name": "dHedge DAO Token (PoS)", + "symbol": "DHT", + "display_symbol": null, + "optimized_symbol": "DHT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x8c92e38eca8210f4fcbf17f0951b198dd7668292/0f08e26a6166f8b39b59f64ed9fef096.png", + "protocol_id": "", + "price": 0.15187628679159243, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1618204861, + "amount": 564.89, + "raw_amount": 564890000000000000000, + "raw_amount_hex_str": "0x1e9f6c6e15a2690000" + }, + { + "id": "0x8d8723ae74cec3f01633dcfe27751edb6ec68712", + "chain": "matic", + "name": "FTRA", + "symbol": "50FTRA", + "display_symbol": null, + "optimized_symbol": "50FTRA", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678415574, + "amount": 1.4092e-14, + "raw_amount": 14092, + "raw_amount_hex_str": "0x370c" + }, + { + "id": "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063", + "chain": "matic", + "name": "(PoS) Dai Stablecoin", + "symbol": "DAI", + "display_symbol": null, + "optimized_symbol": "DAI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x8f3cf7ad23cd3cadbd9735aff958023239c6a063/549c4205dbb199f1b8b03af783f35e71.png", + "protocol_id": "matic_goodghosting", + "price": 1.0001, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599854803, + "amount": 2983.566548009831, + "raw_amount": 2.983566548009831e+21, + "raw_amount_hex_str": "0xa1bd4dafcd486a31b8" + }, + { + "id": "0x8fd0195469b51a935dc3c48617ced6b400e38c9c", + "chain": "matic", + "name": "Crypto 4 A Cause Fund", + "symbol": "C4C", + "display_symbol": null, + "optimized_symbol": "C4C", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1656218092, + "amount": 7078.2522694616355, + "raw_amount": 7.078252269461636e+21, + "raw_amount_hex_str": "0x17fb67ba8e3374e6170" + }, + { + "id": "0x91bd4023a21bc12814905f251eb348e298dbc0f0", + "chain": "matic", + "name": "UNI", + "symbol": "www.uniswap.cab - Claim UNI", + "display_symbol": null, + "optimized_symbol": "www.uniswap.cab - Claim UNI", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668964697, + "amount": 328.88, + "raw_amount": 32888, + "raw_amount_hex_str": "0x8078" + }, + { + "id": "0x925a8aa33c970a7046dfdc8932adf32b8587dd41", + "chain": "matic", + "name": "xeth", + "symbol": "xeth", + "display_symbol": null, + "optimized_symbol": "xeth", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1654508931, + "amount": 19.029449012803394, + "raw_amount": 19029449012803396000, + "raw_amount_hex_str": "0x108162f0e078dde4e" + }, + { + "id": "0x92bc61bd96f275ea5507a3e1e5fbf0bc69cc98dc", + "chain": "matic", + "name": "2SGD", + "symbol": "2SGD", + "display_symbol": null, + "optimized_symbol": "2SGD", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 0.06278347815523974, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666541632, + "amount": 3.403233592192304, + "raw_amount": 3403233592192303600, + "raw_amount_hex_str": "0x2f3ab6ebc64c82f8" + }, + { + "id": "0x93b251d5bb6fa3df58f86ca07b32ebbb0bce61f1", + "chain": "matic", + "name": "50Cum-50USDT", + "symbol": "50Cum-50USDT", + "display_symbol": null, + "optimized_symbol": "50Cum-50USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678865718, + "amount": 0.001522013328406466, + "raw_amount": 1522013328406466, + "raw_amount_hex_str": "0x5684357c877c2" + }, + { + "id": "0x943120412e22d196db99968cb928d68daac7fc3b", + "chain": "matic", + "name": "miMATIC", + "symbol": "miMATIC", + "display_symbol": null, + "optimized_symbol": "miMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1658431467, + "amount": 0.2985294688628851, + "raw_amount": 298529468862885100, + "raw_amount_hex_str": "0x42496f8628eed08" + }, + { + "id": "0x951806a2581c22c478ac613a675e6c898e2abe21", + "chain": "matic", + "name": "GMONEY", + "symbol": "SGCOIN", + "display_symbol": null, + "optimized_symbol": "SGCOIN", + "decimals": 9, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1643738173, + "amount": 1796.540878991, + "raw_amount": 1796540878991, + "raw_amount_hex_str": "0x1a24a2e508f" + }, + { + "id": "0x95e9464b5cc3bf81210259812b51665a437aa11b", + "chain": "matic", + "name": "wPGX.app", + "symbol": "wPGX.app", + "display_symbol": null, + "optimized_symbol": "wPGX.app", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1644892146, + "amount": 7936, + "raw_amount": 7.936e+21, + "raw_amount_hex_str": "0x1ae361fc1451c000000" + }, + { + "id": "0x960d43be128585ca45365cd74a7773b9d814dfbe", + "chain": "matic", + "name": "FireVault FBX", + "symbol": "fireFBX", + "display_symbol": null, + "optimized_symbol": "fireFBX", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_firebot", + "price": 1.09780653243793, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1666867243, + "amount": 2.800403647136072, + "raw_amount": 2800403647136072000, + "raw_amount_hex_str": "0x26dd0847a74101d0" + }, + { + "id": "0x9715a23d25399ef10d819e4999689de3d14eb7e2", + "chain": "matic", + "name": "AAVEPool.org", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672175868, + "amount": 92.84, + "raw_amount": 9284, + "raw_amount_hex_str": "0x2444" + }, + { + "id": "0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3", + "chain": "matic", + "name": "Balancer (PoS)", + "symbol": "BAL", + "display_symbol": null, + "optimized_symbol": "BAL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x9a71012b13ca4d3d0cdc72a177df3ef03b0e76a3/52990c207f4001bd9090dfd90e54374a.png", + "protocol_id": "matic_balancer2", + "price": 6.641232588036496, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620794191, + "amount": 402.70515798207583, + "raw_amount": 402705157982075800000, + "raw_amount_hex_str": "0x15d4a81f8fb3310c6e" + }, + { + "id": "0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f", + "chain": "matic", + "name": "1Inch (PoS)", + "symbol": "1INCH", + "display_symbol": null, + "optimized_symbol": "1INCH", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f/73b05710c95a431e9e3c62dd5b8096ae.png", + "protocol_id": "", + "price": 0.5100958581567978, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614146614, + "amount": 0.5268812693499771, + "raw_amount": 526881269349977150, + "raw_amount_hex_str": "0x74fdbb912698c5b" + }, + { + "id": "0x9cd6746665d9557e1b9a775819625711d0693439", + "chain": "matic", + "name": "LUNA (Wormhole)", + "symbol": "LUNA", + "display_symbol": null, + "optimized_symbol": "LUNA", + "decimals": 6, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0x9cd6746665d9557e1b9a775819625711d0693439/6facb6ecdec3ccf5ec9bcc98be286b71.png", + "protocol_id": "", + "price": 0.0001281, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636835455, + "amount": 870.681181, + "raw_amount": 870681181, + "raw_amount_hex_str": "0x33e58a5d" + }, + { + "id": "0x9d47b3faa5ff227d2bd404f572ef0ab0c8409161", + "chain": "matic", + "name": "Validator (PoS)", + "symbol": "VALX", + "display_symbol": null, + "optimized_symbol": "VALX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1623646433, + "amount": 468.2853783999758, + "raw_amount": 468285378399975800000, + "raw_amount_hex_str": "0x1962c3de928ff03092" + }, + { + "id": "0x9d75cc71555ddabcb89b52c818c2c689e2191401", + "chain": "matic", + "name": "Python Test Weighted Pool V2", + "symbol": "PTWPv2", + "display_symbol": null, + "optimized_symbol": "PTWPv2", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.0890115362696582, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662736399, + "amount": 0.000250027429854575, + "raw_amount": 250027429854575, + "raw_amount_hex_str": "0xe3660c23fd6f" + }, + { + "id": "0x9da313d30f6da94114c21c9c3c174c4fc75c6644", + "chain": "matic", + "name": "Polygon Power Index", + "symbol": "PPI", + "display_symbol": null, + "optimized_symbol": "PPI", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_tokensets", + "price": 1.0591839945445292, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1658117479, + "amount": 0.021109675133348726, + "raw_amount": 21109675133348730, + "raw_amount_hex_str": "0x4aff233fa5ab76" + }, + { + "id": "0x9e76ab239a78a5ee72450b06c50483a4cfad7c91", + "chain": "matic", + "name": "33AF-33BTT-33WBNB", + "symbol": "33AF-33BTT-33WBNB", + "display_symbol": null, + "optimized_symbol": "33AF-33BTT-33WBNB", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678643205, + "amount": 31.45496229166415, + "raw_amount": 31454962291664146000, + "raw_amount_hex_str": "0x1b486798c79f2d3f6" + }, + { + "id": "0x9feeebe28b8626a8607d4fa5443e13c39d445bb8", + "chain": "matic", + "name": "uniswap.cab", + "symbol": "UNI", + "display_symbol": null, + "optimized_symbol": "UNI", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668608517, + "amount": 38.48, + "raw_amount": 3848, + "raw_amount_hex_str": "0xf08" + }, + { + "id": "0xa23cd4da2400b31bcf18e3a8f27578c706dbf902", + "chain": "matic", + "name": "eDPX", + "symbol": "eDPX", + "display_symbol": null, + "optimized_symbol": "eDPX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672237740, + "amount": 4.49143483377, + "raw_amount": 4491434833770000000, + "raw_amount_hex_str": "0x3e54c82f46ad2e80" + }, + { + "id": "0xa3e4285ad0e95fac467514d92e612de475d2ec3c", + "chain": "matic", + "name": "Balancer", + "symbol": "BalancerV2.com", + "display_symbol": null, + "optimized_symbol": "BalancerV2.com", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670071809, + "amount": 1035, + "raw_amount": 103500, + "raw_amount_hex_str": "0x1944c" + }, + { + "id": "0xa3fa99a148fa48d14ed51d610c367c61876997f1", + "chain": "matic", + "name": "miMATIC", + "symbol": "miMATIC", + "display_symbol": null, + "optimized_symbol": "miMATIC", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xa3fa99a148fa48d14ed51d610c367c61876997f1/be77e8e47016b1e9d3f01b7edc9b8d4f.png", + "protocol_id": "matic_mai", + "price": 0.9962894390698389, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619914589, + "amount": 3420.2405862249148, + "raw_amount": 3.420240586224915e+21, + "raw_amount_hex_str": "0xb9695f83f5d5d477da" + }, + { + "id": "0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb", + "chain": "matic", + "name": "Nash Exchange Token (PoS)", + "symbol": "NEX", + "display_symbol": null, + "optimized_symbol": "NEX", + "decimals": 8, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xa486c6bc102f409180ccb8a94ba045d39f8fc7cb/c34674f11dc6064e831e0cb4124c9407.png", + "protocol_id": "", + "price": 0.11746535783840417, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1620563473, + "amount": 38.0381618, + "raw_amount": 3803816180, + "raw_amount_hex_str": "0xe2b9a0f4" + }, + { + "id": "0xa48d164f6eb0edc68bd03b56fa59e12f24499ad1", + "chain": "matic", + "name": "2eur (agEUR)", + "symbol": "2eur (agEUR)", + "display_symbol": null, + "optimized_symbol": "2eur (agEUR)", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 0.04570260264956614, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664437789, + "amount": 0.000098543421526051, + "raw_amount": 98543421526051, + "raw_amount_hex_str": "0x599feda29023" + }, + { + "id": "0xa584484f422bfc2128566f8f954b7f2e31e94cc8", + "chain": "matic", + "name": "$DOWN Vault [via ChainPort.io]", + "symbol": "DOWN", + "display_symbol": null, + "optimized_symbol": "DOWN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646096213, + "amount": 1366.0654890880037, + "raw_amount": 1.3660654890880037e+21, + "raw_amount_hex_str": "0x4a0df78c99b2b7892a" + }, + { + "id": "0xa934bcbf24a7272781197b6559230c30bf0bb2e6", + "chain": "matic", + "name": "$DOWN Vault (PoS)", + "symbol": "DOWN", + "display_symbol": null, + "optimized_symbol": "DOWN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.061943979978714536, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1657866847, + "amount": 521.3842666406266, + "raw_amount": 521384266640626600000, + "raw_amount_hex_str": "0x1c43a90418f0194ac5" + }, + { + "id": "0xab25b6d70f746970900589bb3891436708435837", + "chain": "matic", + "name": "25WMATIC-25LINK-25WETH-25NEX", + "symbol": "25WMATIC-25LINK-25WETH-25NEX", + "display_symbol": null, + "optimized_symbol": "25WMATIC-25LINK-25WETH-25NEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678014233, + "amount": 0.00152593327527374, + "raw_amount": 1525933275273740, + "raw_amount_hex_str": "0x56bd406d2da0c" + }, + { + "id": "0xadac33f543267c4d59a8c299cf804c303bc3e4ac", + "chain": "matic", + "name": "MIMO Parallel Governance Token (PoS)", + "symbol": "MIMO", + "display_symbol": null, + "optimized_symbol": "MIMO", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xadac33f543267c4d59a8c299cf804c303bc3e4ac/d33494e8c7969112a847f9f87a156a97.png", + "protocol_id": "", + "price": 0.0240009, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1625027934, + "amount": 21963.980291072476, + "raw_amount": 2.1963980291072477e+22, + "raw_amount_hex_str": "0x4a6ab7538934fc95bba" + }, + { + "id": "0xae7729e24b67b9c0396af335216ea35159121783", + "chain": "matic", + "name": "50USDT-50Cho", + "symbol": "50USDT-50Cho", + "display_symbol": null, + "optimized_symbol": "50USDT-50Cho", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678785027, + "amount": 3e-18, + "raw_amount": 3, + "raw_amount_hex_str": "0x3" + }, + { + "id": "0xae8f935830f6b418804836eacb0243447b6d977c", + "chain": "matic", + "name": "20USDC-80GHST", + "symbol": "20USDC-80GHST", + "display_symbol": null, + "optimized_symbol": "20USDC-80GHST", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678388943, + "amount": 3888.03126514752, + "raw_amount": 3.88803126514752e+21, + "raw_amount_hex_str": "0xd2c545dbfaaa88c52f" + }, + { + "id": "0xaee24d5296444c007a532696aada9de5ce6cafd0", + "chain": "matic", + "name": "SW DAO [via ChainPort.io]", + "symbol": "SWD", + "display_symbol": null, + "optimized_symbol": "SWD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xaee24d5296444c007a532696aada9de5ce6cafd0/3886faa6c8fbddf5b918d7d1495a1a95.png", + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1642095747, + "amount": 14.500853789085259, + "raw_amount": 14500853789085260000, + "raw_amount_hex_str": "0xc93d61b13e4dd4ab" + }, + { + "id": "0xaf01a84dd4732f358d5499094c081c25c10a69b3", + "chain": "matic", + "name": "usdpool", + "symbol": "usdp", + "display_symbol": null, + "optimized_symbol": "usdp", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653742997, + "amount": 0.014511001924000644, + "raw_amount": 14511001924000644, + "raw_amount_hex_str": "0x338dadeb03db84" + }, + { + "id": "0xaf0d9d65fc54de245cda37af3d18cbec860a4d4b", + "chain": "matic", + "name": "Wrapped USDR", + "symbol": "wUSDR", + "display_symbol": null, + "optimized_symbol": "wUSDR", + "decimals": 9, + "logo_url": null, + "protocol_id": "matic_tangible", + "price": 0.9624019977725999, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672356513, + "amount": 1367.193408153, + "raw_amount": 1367193408153, + "raw_amount_hex_str": "0x13e5313d299" + }, + { + "id": "0xaf28b7702e239e7ed107b6e036851f56e0415188", + "chain": "matic", + "name": "PlannerDAO (PoS)", + "symbol": "PLAN", + "display_symbol": null, + "optimized_symbol": "PLAN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.08244883637575558, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1640159528, + "amount": 6.671425372563681, + "raw_amount": 6671425372563681000, + "raw_amount_hex_str": "0x5c95aa07952faf5a" + }, + { + "id": "0xaf6b1a3067bb5245114225556e5b7a52cf002752", + "chain": "matic", + "name": "$ xBets.org", + "symbol": "$ Free Claim and Play", + "display_symbol": null, + "optimized_symbol": "$ Free Claim and Play", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1667128644, + "amount": 500, + "raw_amount": 50000000000, + "raw_amount_hex_str": "0xba43b7400" + }, + { + "id": "0xb0e35478a389dd20050d66a67fb761678af99678", + "chain": "matic", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "display_symbol": null, + "optimized_symbol": "UNI-V2", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_quickswap", + "price": 0.007761762507644171, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1652961215, + "amount": 0.2904151510752083, + "raw_amount": 290415151075208300, + "raw_amount_hex_str": "0x407c30a8d3aac83" + }, + { + "id": "0xb33eaad8d922b1083446dc23f610c2567fb5180f", + "chain": "matic", + "name": "Uniswap (PoS)", + "symbol": "UNI", + "display_symbol": null, + "optimized_symbol": "UNI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xb33eaad8d922b1083446dc23f610c2567fb5180f/fcee0c46fc9864f48ce6a40ed1cdd135.png", + "protocol_id": "", + "price": 6.180881625913339, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1602233478, + "amount": 0.00031046047350267, + "raw_amount": 310460473502670, + "raw_amount_hex_str": "0x11a5cb63d6bce" + }, + { + "id": "0xb3d658d5b95bf04e2932370dd1ff976fe18dd66a", + "chain": "matic", + "name": "Balancer Tetu Boosted StablePool", + "symbol": "bb-t-USD", + "display_symbol": null, + "optimized_symbol": "bb-t-USD", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678371706, + "amount": 0.026509815135592276, + "raw_amount": 26509815135592276, + "raw_amount_hex_str": "0x5e2e895237df53" + }, + { + "id": "0xb424dfdf817faf38ff7acf6f2efd2f2a843d1aca", + "chain": "matic", + "name": "Vault Qi", + "symbol": "vQi", + "display_symbol": null, + "optimized_symbol": "vQi", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_gotchivault", + "price": 0.0842590916127987, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1645472966, + "amount": 16.11740886177767, + "raw_amount": 16117408861777670000, + "raw_amount_hex_str": "0xdfac89f751fdad7d" + }, + { + "id": "0xb5466ab4f8eff1aab6ba562b2f51f58ebdee23c4", + "chain": "matic", + "name": "AAVEPool.io", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669334314, + "amount": 658.82, + "raw_amount": 65882, + "raw_amount_hex_str": "0x1015a" + }, + { + "id": "0xb54b2125b711cd183edd3dd09433439d53961652", + "chain": "matic", + "name": "Balancer MAI bb-am-usd Stable", + "symbol": "Mai BSP", + "display_symbol": null, + "optimized_symbol": "Mai BSP", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 1.0209333317059457, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662580832, + "amount": 51.81251868485586, + "raw_amount": 51812518684855860000, + "raw_amount_hex_str": "0x2cf0b0b3ab91f7708" + }, + { + "id": "0xb5f402e3e4e9fa2c30c65068f145be9a63366710", + "chain": "matic", + "name": "Sigma Coin", + "symbol": "SGM", + "display_symbol": null, + "optimized_symbol": "SGM", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1670355216, + "amount": 3.02925240866e-7, + "raw_amount": 302925240866, + "raw_amount_hex_str": "0x4687c05a22" + }, + { + "id": "0xb6c3c00d730acca326db40e418353f04f7444e2b", + "chain": "matic", + "name": "first choice coin", + "symbol": "fcc", + "display_symbol": null, + "optimized_symbol": "fcc", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0.010872618686222024, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1651405504, + "amount": 4.749642601025528, + "raw_amount": 4749642601025528000, + "raw_amount_hex_str": "0x41ea1ec7ec306113" + }, + { + "id": "0xb74ae4f3818dee1faf66b66dcd35a10e57371227", + "chain": "matic", + "name": "USD_Inno", + "symbol": "USD-I", + "display_symbol": null, + "optimized_symbol": "USD-I", + "decimals": 4, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1661853720, + "amount": 0.0749, + "raw_amount": 749, + "raw_amount_hex_str": "0x2ed" + }, + { + "id": "0xb76c90b51338016011eaf27c348e3d84a623c5bf", + "chain": "matic", + "name": "klima-dao.io", + "symbol": "KLIMA", + "display_symbol": null, + "optimized_symbol": "KLIMA", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669565088, + "amount": 6200, + "raw_amount": 620000, + "raw_amount_hex_str": "0x975e0" + }, + { + "id": "0xb7fd3398484ea4eff33e003db4c85d4984f8d62e", + "chain": "matic", + "name": "AAVEPool.com", + "symbol": "pAAVE", + "display_symbol": null, + "optimized_symbol": "pAAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1675539468, + "amount": 57.08, + "raw_amount": 5708, + "raw_amount_hex_str": "0x164c" + }, + { + "id": "0xb932d203f83b8417be0f61d9dafad09cc24a4715", + "chain": "matic", + "name": "CAT", + "symbol": "CAT", + "display_symbol": null, + "optimized_symbol": "CAT", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xb932d203f83b8417be0f61d9dafad09cc24a4715/3b99be030008cebb98d5f42f62ab626c.png", + "protocol_id": "matic_kittyfinance", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1639473886, + "amount": 0.000148738794641628, + "raw_amount": 148738794641628, + "raw_amount_hex_str": "0x8746f304d8dc" + }, + { + "id": "0xb93e0b311cc52ac2d206737ceaa9f7a28bb3680a", + "chain": "matic", + "name": "40WBTC-10SD-30WETH-10BAL-10LDO", + "symbol": "40WBTC-10SD-30WETH-10BAL-10LDO", + "display_symbol": null, + "optimized_symbol": "40WBTC-10SD-30WETH-10BAL-10LDO", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678538607, + "amount": 0.003425296140485077, + "raw_amount": 3425296140485077, + "raw_amount_hex_str": "0xc2b49e7b441d5" + }, + { + "id": "0xba6f652fa17384af20a2d59813345b0ee0128d48", + "chain": "matic", + "name": "AAVEPool.org", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671568683, + "amount": 61.84, + "raw_amount": 6184, + "raw_amount_hex_str": "0x1828" + }, + { + "id": "0xbae28251b2a4e621aa7e20538c06dee010bc06de", + "chain": "matic", + "name": "dHEDGE Stablecoin Yield", + "symbol": "dUSD", + "display_symbol": null, + "optimized_symbol": "dUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xbae28251b2a4e621aa7e20538c06dee010bc06de/24209209fe1958888910fda1cd716908.png", + "protocol_id": "matic_dhedge", + "price": 0, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1627812443, + "amount": 1019.1977676879388, + "raw_amount": 1.0191977676879388e+21, + "raw_amount_hex_str": "0x374035d9c55eb0556d" + }, + { + "id": "0xbbba073c31bf03b8acf7c28ef0738decf3695683", + "chain": "matic", + "name": "SAND", + "symbol": "SAND", + "display_symbol": null, + "optimized_symbol": "SAND", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xbbba073c31bf03b8acf7c28ef0738decf3695683/81853b2ea8c205afa8ebbdf213637520.png", + "protocol_id": "matic_sandbox", + "price": 0.6243210230048667, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636029077, + "amount": 138.49719918656265, + "raw_amount": 138497199186562650000, + "raw_amount_hex_str": "0x78208e4dedd9614de" + }, + { + "id": "0xbf29ef6e23af0ac5b6bf931c8b3f1080f5bc1206", + "chain": "matic", + "name": "Balancer vQi StablePool", + "symbol": "B-vQi-Stable", + "display_symbol": null, + "optimized_symbol": "B-vQi-Stable", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 0.08687727242817787, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669739732, + "amount": 36.90701827570395, + "raw_amount": 36907018275703950000, + "raw_amount_hex_str": "0x2003011947a2f0913" + }, + { + "id": "0xbf9bd029c19a871f652fb403f9ac5a572e4cf2f8", + "chain": "matic", + "name": "Wrapped BTC", + "symbol": "WBTC", + "display_symbol": null, + "optimized_symbol": "WBTC", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1654813231, + "amount": 0.00001552, + "raw_amount": 1552, + "raw_amount_hex_str": "0x610" + }, + { + "id": "0xc05c8edc67081ecef0c27815088df039d7fe2d77", + "chain": "matic", + "name": "55WMATIC-45USDC", + "symbol": "55WMATIC-45USDC", + "display_symbol": null, + "optimized_symbol": "55WMATIC-45USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678846142, + "amount": 0.002997951608349699, + "raw_amount": 2997951608349699, + "raw_amount_hex_str": "0xaa69f00ab6403" + }, + { + "id": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "chain": "matic", + "name": "(PoS) Tether USD", + "symbol": "USDT", + "display_symbol": null, + "optimized_symbol": "USDT", + "decimals": 6, + "logo_url": "https://static.debank.com/image/coin/logo_url/usdt/23af7472292cb41dc39b3f1146ead0fe.png", + "protocol_id": "", + "price": 1.0019, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599512847, + "amount": 341.569846, + "raw_amount": 341569846, + "raw_amount_hex_str": "0x145bf136" + }, + { + "id": "0xc229cc41f523f165436f2d52c62b80602cd76f51", + "chain": "matic", + "name": "STEPN.me", + "symbol": "STEPN.me", + "display_symbol": null, + "optimized_symbol": "STEPN.me", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646662737, + "amount": 10, + "raw_amount": 10000000000000000000, + "raw_amount_hex_str": "0x8ac7230489e80000" + }, + { + "id": "0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539", + "chain": "matic", + "name": "Adamant", + "symbol": "ADDY", + "display_symbol": "ADDY", + "optimized_symbol": "ADDY", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xc3fdbadc7c795ef1d6ba111e06ff8f16a20ea539/0d9eaf16f87081ebac3579acb667c507.png", + "protocol_id": "matic_adamant", + "price": 0.24196012962829028, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619813437, + "amount": 0.034462316293861754, + "raw_amount": 34462316293861756, + "raw_amount_hex_str": "0x7a6f4b48d5317d" + }, + { + "id": "0xc8a5bcb5d53cd824497b5381b592bb747d6d27b3", + "chain": "matic", + "name": "Galaxy X Coin", + "symbol": "GAX", + "display_symbol": null, + "optimized_symbol": "GAX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1630074543, + "amount": 159980.17971792308, + "raw_amount": 1.5998017971792306e+23, + "raw_amount_hex_str": "0x21e08afcd221c46a568c" + }, + { + "id": "0xc9357cc86fa836b1761caad9b13fce0863cf281a", + "chain": "matic", + "name": "Large Cap Vector Pool", + "symbol": "LVP", + "display_symbol": null, + "optimized_symbol": "LVP", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678551803, + "amount": 0.000393861871165692, + "raw_amount": 393861871165692, + "raw_amount_hex_str": "0x166371cebe0fc" + }, + { + "id": "0xc98a49482caf35f5e0bbdf931d4f4d6c27d1ed3a", + "chain": "matic", + "name": "$ TetherLP.com", + "symbol": "TetherLP.com", + "display_symbol": null, + "optimized_symbol": "TetherLP.com", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1660500548, + "amount": 734, + "raw_amount": 734000000000000000000, + "raw_amount_hex_str": "0x27ca4bd719f0b80000" + }, + { + "id": "0xc9cc612c3d118f40d2f876bbd49f270b18f82da1", + "chain": "matic", + "name": "LUNC10K", + "symbol": "LUNC10K", + "display_symbol": null, + "optimized_symbol": "LUNC10K", + "decimals": 6, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1662751196, + "amount": 0.028176, + "raw_amount": 28176, + "raw_amount_hex_str": "0x6e10" + }, + { + "id": "0xcecf60b95109cb4c897b22877612228f0c76e52c", + "chain": "matic", + "name": "Curve.fi Factory USD Metapool: Lithereum", + "symbol": "Lithereum3CRV-f", + "display_symbol": null, + "optimized_symbol": "Lithereum3CRV-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_curve", + "price": 0.002525101294041568, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1643978139, + "amount": 16.76336977326815, + "raw_amount": 16763369773268150000, + "raw_amount_hex_str": "0xe8a373fe1e2b25f7" + }, + { + "id": "0xcf61cf1da7806b8a77d0ee7b4c752b9ab20ab5c3", + "chain": "matic", + "name": "33LINK-33WETH-33NEX", + "symbol": "33LINK-33WETH-33NEX", + "display_symbol": null, + "optimized_symbol": "33LINK-33WETH-33NEX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678024098, + "amount": 2.09e-16, + "raw_amount": 209, + "raw_amount_hex_str": "0xd1" + }, + { + "id": "0xcf68f02d7dd6a4642ae6a77f6a3676d0cbc834c9", + "chain": "matic", + "name": "GGBoxs.com", + "symbol": "GGBoxs.com", + "display_symbol": null, + "optimized_symbol": "GGBoxs.com", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1669638810, + "amount": 60000, + "raw_amount": 6e+22, + "raw_amount_hex_str": "0xcb49b44ba602d800000" + }, + { + "id": "0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f", + "chain": "matic", + "name": "VOXEL Token", + "symbol": "VOXEL", + "display_symbol": null, + "optimized_symbol": "VOXEL", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xd0258a3fd00f38aa8090dfee343f10a9d4d30d3f/fc569c6027d2752c44dccdbaeceeb882.png", + "protocol_id": "", + "price": 0.26942899984446345, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1638678011, + "amount": 0.0004185, + "raw_amount": 418500000000000, + "raw_amount_hex_str": "0x17c9f9fd6a800" + }, + { + "id": "0xd106fb0cfb6a3b6a8e9b08c19f8f4d39e4b4cda1", + "chain": "matic", + "name": "Curve.fi Factory Plain Pool: CRV Miner", + "symbol": "CRV Miner-f", + "display_symbol": null, + "optimized_symbol": "CRV Miner-f", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_curve", + "price": 0.00002742838941022505, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1645910138, + "amount": 0.00002994753915376, + "raw_amount": 29947539153760, + "raw_amount_hex_str": "0x1b3cb46ee360" + }, + { + "id": "0xd1451da6ec352bd86f4a697d74399f7a99d493d9", + "chain": "matic", + "name": "MASK", + "symbol": "MASK", + "display_symbol": null, + "optimized_symbol": "MASK", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649671676, + "amount": 471.92736171596647, + "raw_amount": 471927361715966500000, + "raw_amount_hex_str": "0x19954ecb1a3376a4b4" + }, + { + "id": "0xd27cc01b975f16abc8e49b747440d2b71c943da0", + "chain": "matic", + "name": "80TETU-20USDC", + "symbol": "80TETU-20USDC", + "display_symbol": null, + "optimized_symbol": "80TETU-20USDC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678218154, + "amount": 0.001668767794531095, + "raw_amount": 1668767794531095, + "raw_amount_hex_str": "0x5edbc479b0b17" + }, + { + "id": "0xd31de8ed2d7457124f69bf71e44b31e704dc416e", + "chain": "matic", + "name": "Zloadr", + "symbol": "ZDR", + "display_symbol": null, + "optimized_symbol": "ZDR", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1654015953, + "amount": 1, + "raw_amount": 1000000000000000000, + "raw_amount_hex_str": "0xde0b6b3a7640000" + }, + { + "id": "0xd41b32f9e27c44bb6d9e08aed0eb1cc610384999", + "chain": "matic", + "name": "GreatBritishPoundStable", + "symbol": "GBPS", + "display_symbol": null, + "optimized_symbol": "GBPS", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649889121, + "amount": 7.6196327938e-7, + "raw_amount": 761963279380, + "raw_amount_hex_str": "0xb1688cf414" + }, + { + "id": "0xd6ca869a4ec9ed2c7e618062cdc45306d8dbbc14", + "chain": "matic", + "name": "BTC 2x Flexible Leverage Index", + "symbol": "BTC2x-FLI-P", + "display_symbol": null, + "optimized_symbol": "BTC2x-FLI-P", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_tokensets", + "price": 19.177491680200003, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1646669846, + "amount": 10.635918777974195, + "raw_amount": 10635918777974194000, + "raw_amount_hex_str": "0x939a5fc6ed0f027d" + }, + { + "id": "0xd85d1e945766fea5eda9103f918bd915fbca63e6", + "chain": "matic", + "name": "Celsius (PoS)", + "symbol": "CEL", + "display_symbol": null, + "optimized_symbol": "CEL", + "decimals": 4, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xd85d1e945766fea5eda9103f918bd915fbca63e6/918b6fcda4690ab777c7c6da8b48bdbc.png", + "protocol_id": "", + "price": 0.3858423398691887, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1611040782, + "amount": 0.0243, + "raw_amount": 243, + "raw_amount_hex_str": "0xf3" + }, + { + "id": "0xd8b83d5ad4102def6255643e8ab2ba5410d4d0f8", + "chain": "matic", + "name": "AIRDROP", + "symbol": "AIR", + "display_symbol": null, + "optimized_symbol": "AIR", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1655102538, + "amount": 333.1080960278393, + "raw_amount": 333108096027839300000, + "raw_amount_hex_str": "0x120ecdb0747a11c184" + }, + { + "id": "0xd8f67e743fb7c54dca49ae3294b587f47c9a91d4", + "chain": "matic", + "name": "BANKLESSVOTING", + "symbol": "BVOTE", + "display_symbol": null, + "optimized_symbol": "BVOTE", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664439032, + "amount": 100, + "raw_amount": 100000000000000000000, + "raw_amount_hex_str": "0x56bc75e2d63100000" + }, + { + "id": "0xd9503c336512120aa6834ab5d9258a32940bb2c6", + "chain": "matic", + "name": "AAVEPool.org", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671487363, + "amount": 62, + "raw_amount": 6200, + "raw_amount_hex_str": "0x1838" + }, + { + "id": "0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7", + "chain": "matic", + "name": "(PoS) Binance USD", + "symbol": "BUSD", + "display_symbol": null, + "optimized_symbol": "BUSD", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7/c67d96935d377f350fac55aed5c458de.png", + "protocol_id": "", + "price": 0.9983, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1599512867, + "amount": 0.002857598685858215, + "raw_amount": 2857598685858215, + "raw_amount_hex_str": "0xa26f88a94c9a7" + }, + { + "id": "0xdb26f69b0a149af048d893e62ab50885a8d4fb9b", + "chain": "matic", + "name": "Very Nasty Token", + "symbol": "VNT", + "display_symbol": null, + "optimized_symbol": "VNT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649532113, + "amount": 788.112644239725, + "raw_amount": 788112644239725000000, + "raw_amount_hex_str": "0x2ab9429256169e4ae0" + }, + { + "id": "0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab", + "chain": "matic", + "name": "Bankless Token (PoS)", + "symbol": "BANK", + "display_symbol": null, + "optimized_symbol": "BANK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xdb7cb471dd0b49b29cab4a1c14d070f27216a0ab/65548d47f97a234fd98885f0bc89d4ff.png", + "protocol_id": "", + "price": 0.007197706763084346, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1626674919, + "amount": 51245.07633984692, + "raw_amount": 5.124507633984692e+22, + "raw_amount_hex_str": "0xada004baf0a3e546a5b" + }, + { + "id": "0xdbf31df14b66535af65aac99c32e9ea844e14501", + "chain": "matic", + "name": "renBTC", + "symbol": "renBTC", + "display_symbol": null, + "optimized_symbol": "renBTC", + "decimals": 8, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xdbf31df14b66535af65aac99c32e9ea844e14501/7ec502c1a24ea6d4cee9f31595acf6d7.png", + "protocol_id": "", + "price": 27397.135958426567, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1622000289, + "amount": 0.09323181, + "raw_amount": 9323181, + "raw_amount_hex_str": "0x8e42ad" + }, + { + "id": "0xdddca1d1fd4e72b85b7b95f07651ab36b62f69e9", + "chain": "matic", + "name": "Grosh", + "symbol": "GROSH", + "display_symbol": null, + "optimized_symbol": "GROSH", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1645721955, + "amount": 118610.63356308683, + "raw_amount": 1.1861063356308682e+23, + "raw_amount_hex_str": "0x191de5344f8ec763e0d9" + }, + { + "id": "0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32", + "chain": "matic", + "name": "Telcoin (PoS)", + "symbol": "TEL", + "display_symbol": null, + "optimized_symbol": "TEL", + "decimals": 2, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32/161a26f47e94d3a29876733cccefa868.png", + "protocol_id": "matic_telcoin", + "price": 0.0023936847730009576, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1614168204, + "amount": 1020315.19, + "raw_amount": 102031519, + "raw_amount_hex_str": "0x614e09f" + }, + { + "id": "0xe0cca86b254005889ac3a81e737f56a14f4a38f5", + "chain": "matic", + "name": "Alta Finance", + "symbol": "ALTA", + "display_symbol": null, + "optimized_symbol": "ALTA", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xe0cca86b254005889ac3a81e737f56a14f4a38f5/cec21c3f56d978832222dc6c61383145.png", + "protocol_id": "", + "price": 0, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1647303459, + "amount": 1.5001443528818506, + "raw_amount": 1500144352881850600, + "raw_amount_hex_str": "0x14d195574154b8d4" + }, + { + "id": "0xe21fc865c08342cfa9f52fb5c162114a61467365", + "chain": "matic", + "name": "moon doges", + "symbol": "dmoo", + "display_symbol": null, + "optimized_symbol": "dmoo", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1653404026, + "amount": 1182006.1861271453, + "raw_amount": 1.1820061861271453e+24, + "raw_amount_hex_str": "0xfa4caf09e176e07912f1" + }, + { + "id": "0xe22483774bd8611be2ad2f4194078dac9159f4ba", + "chain": "matic", + "name": "2BRL (BRZ)", + "symbol": "2BRL (BRZ)", + "display_symbol": null, + "optimized_symbol": "2BRL (BRZ)", + "decimals": 18, + "logo_url": null, + "protocol_id": "matic_balancer2", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1668778434, + "amount": 0.11557601946464595, + "raw_amount": 115576019464645950, + "raw_amount_hex_str": "0x19a9bc700be6d41" + }, + { + "id": "0xe2ff0ba7f46031b0284ebb3f0124b6454d67db15", + "chain": "matic", + "name": "50Poo-50USDT", + "symbol": "50Poo-50USDT", + "display_symbol": null, + "optimized_symbol": "50Poo-50USDT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678861456, + "amount": 6.43249333722e-7, + "raw_amount": 643249333722, + "raw_amount_hex_str": "0x95c4a5e5da" + }, + { + "id": "0xe3627374ac4baf5375e79251b0af23afc450fc0e", + "chain": "matic", + "name": "Waru Token", + "symbol": "WARU", + "display_symbol": null, + "optimized_symbol": "WARU", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xe3627374ac4baf5375e79251b0af23afc450fc0e/5833e3fb2a9af01ce70f583ef8a1191e.png", + "protocol_id": "", + "price": 0.001656580793670769, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1657179488, + "amount": 3606.432524466524, + "raw_amount": 3.6064325244665237e+21, + "raw_amount_hex_str": "0xc3814e294dca678f66" + }, + { + "id": "0xe3684e842f85397d21f9c25865c6949b94ce1381", + "chain": "matic", + "name": "BLACKTWITTER TOKEN", + "symbol": "BT", + "display_symbol": null, + "optimized_symbol": "BT", + "decimals": 9, + "logo_url": null, + "protocol_id": "", + "price": 1.870240115640349e-9, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1641525080, + "amount": 479319.374781082, + "raw_amount": 479319374781082, + "raw_amount_hex_str": "0x1b3f03d115a9a" + }, + { + "id": "0xe40673c96b2ebc214c4599140eafecacac46f1c2", + "chain": "matic", + "name": "25wstETH-5WMATIC-5WBTC-5WETH-5QUICK-25dQUICK-5QUICK-25MaticX", + "symbol": "25wstETH-5WMATIC-5WBTC-5WETH-5QUICK-25dQUICK-5QUICK-25MaticX", + "display_symbol": null, + "optimized_symbol": "25wstETH-5WMATIC-5WBTC-5WETH-5QUICK-25dQUICK-5QUICK-25MaticX", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678318731, + "amount": 0.040130441003429995, + "raw_amount": 40130441003429990, + "raw_amount_hex_str": "0x8e926c68b07068" + }, + { + "id": "0xe479fff28859f88f8361864675d72e1bb775bdc2", + "chain": "matic", + "name": "BARZ", + "symbol": "BARZ", + "display_symbol": null, + "optimized_symbol": "BARZ", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1649982841, + "amount": 9654.220984886222, + "raw_amount": 9.65422098488622e+21, + "raw_amount_hex_str": "0x20b5b3af37fc10af08d" + }, + { + "id": "0xe537632a4967d4d292c15c966bad1d75fd28f2c7", + "chain": "matic", + "name": "AAVEPool.org", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1671713310, + "amount": 37.84, + "raw_amount": 3784, + "raw_amount_hex_str": "0xec8" + }, + { + "id": "0xe5417af564e4bfda1c483642db72007871397896", + "chain": "matic", + "name": "Gains Network", + "symbol": "GNS", + "display_symbol": null, + "optimized_symbol": "GNS", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xe5417af564e4bfda1c483642db72007871397896/9dc1bb50d224f58fb2e52c58785f1d59.png", + "protocol_id": "matic_gtrade", + "price": 8.96148943784811, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1635324508, + "amount": 0.20839451825819957, + "raw_amount": 208394518258199580, + "raw_amount_hex_str": "0x2e45db5d1eb2c1c" + }, + { + "id": "0xe6469ba6d2fd6130788e0ea9c0a0515900563b59", + "chain": "matic", + "name": "UST (Wormhole)", + "symbol": "UST", + "display_symbol": null, + "optimized_symbol": "UST", + "decimals": 6, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xe6469ba6d2fd6130788e0ea9c0a0515900563b59/57ae3a082518049e3dcf26e142c0d699.png", + "protocol_id": "", + "price": 0.023083224655693596, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636468795, + "amount": 1118.309482, + "raw_amount": 1118309482, + "raw_amount_hex_str": "0x42a80c6a" + }, + { + "id": "0xe7299f9ec12afe623cad4ee241f5329fd9e2225a", + "chain": "matic", + "name": "DuKet", + "symbol": "DUKT", + "display_symbol": null, + "optimized_symbol": "DUKT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650828263, + "amount": 749908.7736522972, + "raw_amount": 7.499087736522973e+23, + "raw_amount_hex_str": "0x9ecca2d601cc64b0f93f" + }, + { + "id": "0xe7ca5575779e5ff74f5735e01051951d123527d2", + "chain": "matic", + "name": "18USDC-70RVRS-21CT-10lsMATIC", + "symbol": "18USDC-70RVRS-21CT-10lsMATIC", + "display_symbol": null, + "optimized_symbol": "18USDC-70RVRS-21CT-10lsMATIC", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1678228659, + "amount": 143.63098192887605, + "raw_amount": 143630981928876050000, + "raw_amount_hex_str": "0x7c947c1132334e8b3" + }, + { + "id": "0xe93ce33bd5d76929d52c492223408d4327687794", + "chain": "matic", + "name": "Commando Meta DAO Token", + "symbol": "CMD", + "display_symbol": null, + "optimized_symbol": "CMD", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1674129447, + "amount": 20.84838058680629, + "raw_amount": 20848380586806290000, + "raw_amount_hex_str": "0x1215453af2abd270f" + }, + { + "id": "0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0", + "chain": "matic", + "name": "Seed (PoS)", + "symbol": "SEED", + "display_symbol": null, + "optimized_symbol": "SEED", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xeaecc18198a475c921b24b8a6c1c1f0f5f3f7ea0/9ad8e9ad144a20bb9f0cefc717c85531.png", + "protocol_id": "", + "price": 3.7342351751492355, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1636521777, + "amount": 683.1249914359313, + "raw_amount": 683124991435931300000, + "raw_amount_hex_str": "0x250843805c127241bc" + }, + { + "id": "0xee327f889d5947c1dc1934bb208a1e792f953e96", + "chain": "matic", + "name": "Frax Ether", + "symbol": "frxETH", + "display_symbol": null, + "optimized_symbol": "frxETH", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1673220278, + "amount": 0.003205002971858095, + "raw_amount": 3205002971858095, + "raw_amount_hex_str": "0xb62eee7a444af" + }, + { + "id": "0xef7ad4f8529b657907c7021791b5fd2245065fbf", + "chain": "matic", + "name": "AAVEPool.org", + "symbol": "AAVE", + "display_symbol": null, + "optimized_symbol": "AAVE", + "decimals": 2, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1672323526, + "amount": 58.78, + "raw_amount": 5878, + "raw_amount_hex_str": "0x16f6" + }, + { + "id": "0xefa1aa32976e3f19da5e649fdeec77b72469bfb3", + "chain": "matic", + "name": "ApeCoin.com.de", + "symbol": "ApeCoin.com.de", + "display_symbol": null, + "optimized_symbol": "ApeCoin.com.de", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1648022230, + "amount": 10, + "raw_amount": 10000000000000000000, + "raw_amount_hex_str": "0x8ac7230489e80000" + }, + { + "id": "0xf28164a485b0b2c90639e47b0f377b4a438a16b1", + "chain": "matic", + "name": "Dragon QUICK", + "symbol": "dQUICK", + "display_symbol": null, + "optimized_symbol": "dQUICK", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xf28164a485b0b2c90639e47b0f377b4a438a16b1/d2cc6bfd4d3d5452b6316b1bcc3a8ec7.png", + "protocol_id": "matic_quickswap", + "price": 151.55055818858585, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1616850195, + "amount": 0.06245690545627273, + "raw_amount": 62456905456272730, + "raw_amount_hex_str": "0xdde4397f7dc555" + }, + { + "id": "0xf31cdb090d1d4b86a7af42b62dc5144be8e42906", + "chain": "matic", + "name": "0Bets.io", + "symbol": "0Bets.io", + "display_symbol": null, + "optimized_symbol": "0Bets.io", + "decimals": 8, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650569332, + "amount": 3000000, + "raw_amount": 300000000000000, + "raw_amount_hex_str": "0x110d9316ec000" + }, + { + "id": "0xf7b9c6c5dab9c56101a6aecc92f04e18be580606", + "chain": "matic", + "name": "Terra Luna Classic Node", + "symbol": "TLCN", + "display_symbol": null, + "optimized_symbol": "TLCN", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1664764377, + "amount": 0.000300732052220919, + "raw_amount": 300732052220919, + "raw_amount_hex_str": "0x11183a3252bf7" + }, + { + "id": "0xfa68fb4628dff1028cfec22b4162fccd0d45efb6", + "chain": "matic", + "name": "Liquid Staking Matic (PoS)", + "symbol": "MaticX", + "display_symbol": null, + "optimized_symbol": "MaticX", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xfa68fb4628dff1028cfec22b4162fccd0d45efb6/49c8b7e2665db48c5cecdc06abe1787c.png", + "protocol_id": "matic_stader", + "price": 1.2499887489703565, + "is_verified": true, + "is_core": false, + "is_wallet": false, + "time_at": 1650548572, + "amount": 85.69435379022639, + "raw_amount": 85694353790226380000, + "raw_amount_hex_str": "0x4a53f80be7b17cb67" + }, + { + "id": "0xfa78cba4ebbf8fe28b4fc1468948f16fda2752b3", + "chain": "matic", + "name": "Flourishing AI Token", + "symbol": "AI", + "display_symbol": null, + "optimized_symbol": "AI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xfa78cba4ebbf8fe28b4fc1468948f16fda2752b3/195990b10ff13d0355e43950a7a4c824.png", + "protocol_id": "", + "price": 0.09050555957448006, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1675065693, + "amount": 13.866987430877046, + "raw_amount": 13866987430877047000, + "raw_amount_hex_str": "0xc0716f99123ba7a4" + }, + { + "id": "0xfae400bf04f88e47d899cfe7e7c16bf8c8ae919b", + "chain": "matic", + "name": "Pikatic", + "symbol": "PKT", + "display_symbol": null, + "optimized_symbol": "PKT", + "decimals": 18, + "logo_url": null, + "protocol_id": "", + "price": 0, + "is_verified": false, + "is_core": false, + "is_wallet": false, + "time_at": 1650371746, + "amount": 440000, + "raw_amount": 4.4e+23, + "raw_amount_hex_str": "0x5d2c72a2ac16a3000000" + }, + { + "id": "0xfbdd194376de19a88118e84e279b977f165d01b8", + "chain": "matic", + "name": "beefy.finance", + "symbol": "BIFI", + "display_symbol": null, + "optimized_symbol": "BIFI", + "decimals": 18, + "logo_url": "https://static.debank.com/image/matic_token/logo_url/0xfbdd194376de19a88118e84e279b977f165d01b8/92134086c01a3eaca15b9fc20178db2c.png", + "protocol_id": "matic_beefy", + "price": 498.9409169859957, + "is_verified": true, + "is_core": true, + "is_wallet": true, + "time_at": 1619766301, + "amount": 0.00001383608574725, + "raw_amount": 13836085747250, + "raw_amount_hex_str": "0xc9576f9de32" + } +] \ No newline at end of file diff --git a/FeeSweep/2023-29-09-base-sweeptokens.json b/FeeSweep/2023-29-09-base-sweeptokens.json new file mode 100644 index 000000000..522a8d182 --- /dev/null +++ b/FeeSweep/2023-29-09-base-sweeptokens.json @@ -0,0 +1,10 @@ +[ + "0x17e7d59bB209a3215Ccc25FFfEf7161498B7C10d", + "0xFb4C2E6E6e27B5b4a07a36360C89EDE29bB3c9B6", + "0xE40cBcCba664C7B1a953827C062F5070B78de868", + "0x433f09ca08623E48BAc7128B7105De678E37D988", + "0xC771c1a5905420DAEc317b154EB13e4198BA97D0", + "0x0C659734f1eEF9C63B7Ebdf78a164CDd745586Db", + "0xfAB10dd71e11d0ad403cc31418B45D816f2F9882", + "0x868F0Efc81A6c1DF16298Dcc82f7926B9099946B" +] \ No newline at end of file diff --git a/FeeSweep/README.md b/FeeSweep/README.md new file mode 100644 index 000000000..2b9e8ef5a --- /dev/null +++ b/FeeSweep/README.md @@ -0,0 +1,31 @@ +## Generate Github Actions Fee Sweep JSON +Files here are read by github actions and transformed into transaction builder json files in the out directory. + +In order to trigger a run, the Sweep Fees label must be set on PR, and the files must be named starting with YYYY-MM-DD of the current day + + +### Steps to use + +- Go to https://balancer.defilytica.com/. +- Select a chain. +- Click Protocol Revenue. +- once it is done loading, open the JavaSCript console in your browser. Find the Token Balances Object that looks like this and copy it to your clipboard: + +![img.png](images/consoleView.png) +- Copy the contents of this file into a file in this directory named like YYYY-MM-DD-chain.json + - Note that year must be 4 digit and day and month always 2 with a leading 0 + - Note that -chain is just to allow for 3 different files for 3 different chains, all JSON files with YYYY-MM-DDD of today in this file will be processed + - Note that updates overwrite, so if you push 2 files with data for the same chain they will be overwritten. +- Push all of your changes to a new branch, create a pull request with the label Sweep Fees + - Note that the label must be set before the PR is created for the action to trigger. +- Note that the funds are currently all swept into the LM multsig. + + +With any luck, once the PR is commited, the action should run and build resulting output files in the out/ dir. + + +### Recommended process + +- Each Sunday, grab outputs for all 3 chains and save them to this directory. +- Validate outputs, adjust as needed (this was a human process before) +- \ No newline at end of file diff --git a/FeeSwap/feeSweep.json b/FeeSweep/feeSweep.json similarity index 88% rename from FeeSwap/feeSweep.json rename to FeeSweep/feeSweep.json index c0f2e97b4..88d1507b5 100644 --- a/FeeSwap/feeSweep.json +++ b/FeeSweep/feeSweep.json @@ -12,7 +12,7 @@ }, "transactions": [ { - "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "to": "", "value": "0", "data": null, "contractMethod": { @@ -38,7 +38,7 @@ }, "contractInputsValues": { "amounts": "[]", - "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "recipient": "", "tokens": "[]" } } diff --git a/FeeSweep/images/2023-11-09-mainnet.json b/FeeSweep/images/2023-11-09-mainnet.json new file mode 100644 index 000000000..fd159e250 --- /dev/null +++ b/FeeSweep/images/2023-11-09-mainnet.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[228986581409166458880, 1371844531966189824, 289908386198149103616, 68393621187944357888, 3555678818549289984, 361570432339103580160, 165546351678293573632, 3179394244986328603164672, 198589227654894649344, 168928891942517637120]", "recipient": "", "tokens": "[0x02ca8086498552c071451724d3a34caa3922b65a, 0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e, 0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e4, 0x6810e776880c02933d47db1b9fc05908e5386b96, 0x888888435fde8e7d4c54cab67f206e4199454c60, 0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd, 0xb53ecf1345cabee6ea1a65100ebb153cebcac40f, 0xba100000625a3754423978a60c9317c58a424e3d, 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a]"}}]} \ No newline at end of file diff --git a/FeeSweep/images/2023-11-09-mainnet.report.txt b/FeeSweep/images/2023-11-09-mainnet.report.txt new file mode 100644 index 000000000..09f66ef0c --- /dev/null +++ b/FeeSweep/images/2023-11-09-mainnet.report.txt @@ -0,0 +1,12 @@ +Sweep 228.9866 of 80ROOT-20WETH(0x02ca8086498552c071451724d3a34caa3922b65a) worth $108.7636945551533 +Sweep 1.3718 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $76.98982959762239 +Sweep 289.9084 of STG/USDC(0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e) worth $216.05214454158212 +Sweep 68.3936 of ECLP-R-sDAI(0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e4) worth $68.28917500879145 +Sweep 3.5557 of GNO(0x6810e776880c02933d47db1b9fc05908e5386b96) worth $441 +Sweep 361.5704 of DFX(0x888888435fde8e7d4c54cab67f206e4199454c60) worth $51.45113544863309 +Sweep 165.5464 of 80Silo-20WETH(0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd) worth $73.44124394809188 +Sweep 3179394.2450 of O(0xb53ecf1345cabee6ea1a65100ebb153cebcac40f) worth $61.89570593211522 +Sweep 198.5892 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $745.7347954869269 +Sweep 168.9289 of RDNT-WETH(0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a) worth $221.82380624531137 + +>>>Total USD Value of sweeps at time of input json: $2065.441530764228 \ No newline at end of file diff --git a/FeeSweep/images/consoleView.png b/FeeSweep/images/consoleView.png new file mode 100644 index 000000000..f968f19a0 Binary files /dev/null and b/FeeSweep/images/consoleView.png differ diff --git a/FeeSwap/out/2023-02-03-arb.json b/FeeSweep/out/2023-02-03-arb.json similarity index 100% rename from FeeSwap/out/2023-02-03-arb.json rename to FeeSweep/out/2023-02-03-arb.json diff --git a/FeeSwap/out/2023-02-03-arb.report.txt b/FeeSweep/out/2023-02-03-arb.report.txt similarity index 100% rename from FeeSwap/out/2023-02-03-arb.report.txt rename to FeeSweep/out/2023-02-03-arb.report.txt diff --git a/FeeSwap/out/2023-02-03-eth.json b/FeeSweep/out/2023-02-03-eth.json similarity index 92% rename from FeeSwap/out/2023-02-03-eth.json rename to FeeSweep/out/2023-02-03-eth.json index d5fb26bd2..550d2a870 100644 --- a/FeeSwap/out/2023-02-03-eth.json +++ b/FeeSweep/out/2023-02-03-eth.json @@ -27,11 +27,7 @@ "name": "amounts", "type": "uint256[]" }, - { - "internalType": "address", - "name": "recipient", - "type": "address" - } + { "internalType": "address", "name": "recipient", "type": "address" } ], "name": "withdrawCollectedFees", "payable": false diff --git a/FeeSwap/out/2023-02-03-eth.report.txt b/FeeSweep/out/2023-02-03-eth.report.txt similarity index 100% rename from FeeSwap/out/2023-02-03-eth.report.txt rename to FeeSweep/out/2023-02-03-eth.report.txt diff --git a/FeeSwap/out/2023-02-03-matic.json b/FeeSweep/out/2023-02-03-matic.json similarity index 100% rename from FeeSwap/out/2023-02-03-matic.json rename to FeeSweep/out/2023-02-03-matic.json diff --git a/FeeSwap/out/2023-02-03-matic.report.txt b/FeeSweep/out/2023-02-03-matic.report.txt similarity index 100% rename from FeeSwap/out/2023-02-03-matic.report.txt rename to FeeSweep/out/2023-02-03-matic.report.txt diff --git a/FeeSweep/out/2023-02-05-arb.json b/FeeSweep/out/2023-02-05-arb.json new file mode 100644 index 000000000..58eb20fdf --- /dev/null +++ b/FeeSweep/out/2023-02-05-arb.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { "internalType": "address", "name": "recipient", "type": "address" } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[4661567654059247616, 6976239331299942203392, 10780651141715669811200, 6420074960192885760]", + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "tokens": "[0x5979d7b546e38e414f7e9822514be443a4800529, 0x65c936f008bc34fe819bce9fa5afd9dc2d49977f, 0x6694340fc020c5e6b96567843da2df01b2ce1eb6, 0x82af49447d8a07e3bd95bd0d56f35241523fbab1]" + } + } + ] +} diff --git a/FeeSweep/out/2023-02-05-arb.report.txt b/FeeSweep/out/2023-02-05-arb.report.txt new file mode 100644 index 000000000..2bc7aec56 --- /dev/null +++ b/FeeSweep/out/2023-02-05-arb.report.txt @@ -0,0 +1,6 @@ +Sweep 4.6616 of wstETH(0x5979d7b546e38e414f7e9822514be443a4800529) worth $7340.667759600742 +Sweep 6976.2394 of Y2K(0x65c936f008bc34fe819bce9fa5afd9dc2d49977f) worth $18762.521820219463 +Sweep 10780.6512 of STG(0x6694340fc020c5e6b96567843da2df01b2ce1eb6) worth $7713.294228292734 +Sweep 6.4201 of WETH(0x82af49447d8a07e3bd95bd0d56f35241523fbab1) worth $9976.86 + +>>>Total USD Value of sweeps at time of input json: $43793.34380811294 \ No newline at end of file diff --git a/FeeSweep/out/2023-02-05-eth.json b/FeeSweep/out/2023-02-05-eth.json new file mode 100644 index 000000000..5cfbca950 --- /dev/null +++ b/FeeSweep/out/2023-02-05-eth.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { "internalType": "address", "name": "recipient", "type": "address" } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[39393824294404243456, 3301856855480699191296, 3041227511574, 68279844528978255872, 7184219296936715354112, 6916174775592902656, 8587719823351344005120, 34924343759307370496, 375666656695196036628480, 654260119613487316992, 515965510614868603961344]", + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "tokens": "[0x0fd5663d4893ae0d579d580584806aadd2dd0b8b, 0x3472a5a71965499acd81997a54bba8d852c6e53d, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321, 0x8e85e97ed19c0fa13b2549309965291fbbc0048b, 0xba100000625a3754423978a60c9317c58a424e3d, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xcdf7028ceab81fa0c6971208e83fa7872994bee5, 0xd33526068d116ce69f19a9ee46f0bd304f21a51f, 0xfd0205066521550d7d7ab19da8f72bb004b4c341]" + } + } + ] +} diff --git a/FeeSweep/out/2023-02-05-eth.report.txt b/FeeSweep/out/2023-02-05-eth.report.txt new file mode 100644 index 000000000..5c31fd63c --- /dev/null +++ b/FeeSweep/out/2023-02-05-eth.report.txt @@ -0,0 +1,13 @@ +Sweep 39.3938 of 50rETH-50RPL(0x0fd5663d4893ae0d579d580584806aadd2dd0b8b) worth $10359.591201737758 +Sweep 3301.8569 of BADGER(0x3472a5a71965499acd81997a54bba8d852c6e53d) worth $10940.144923637014 +Sweep 3041.2275 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $30617.209845941463 +Sweep 68.2798 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $125093.31659544139 +Sweep 7184.2194 of VITA(0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321) worth $11188.759159932488 +Sweep 6.9162 of sfrxETH-stETH-rETH-BPT(0x8e85e97ed19c0fa13b2549309965291fbbc0048b) worth $10090.748207761202 +Sweep 8587.7199 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $60872.52013875295 +Sweep 34.9243 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $56508 +Sweep 375666.6605 of T(0xcdf7028ceab81fa0c6971208e83fa7872994bee5) worth $17615.136239902975 +Sweep 654.2601 of RPL(0xd33526068d116ce69f19a9ee46f0bd304f21a51f) worth $26198.254234731667 +Sweep 515965.5158 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $28602.413008034848 + +>>>Total USD Value of sweeps at time of input json: $388086.0935558738 \ No newline at end of file diff --git a/FeeSweep/out/2023-02-05-matic.json b/FeeSweep/out/2023-02-05-matic.json new file mode 100644 index 000000000..fdea339a1 --- /dev/null +++ b/FeeSweep/out/2023-02-05-matic.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { "internalType": "address", "name": "recipient", "type": "address" } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[4937842915831787290624, 3935302300765427073024]", + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "tokens": "[0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270, 0xfa68fb4628dff1028cfec22b4162fccd0d45efb6]" + } + } + ] +} diff --git a/FeeSweep/out/2023-02-05-matic.report.txt b/FeeSweep/out/2023-02-05-matic.report.txt new file mode 100644 index 000000000..275df7c3b --- /dev/null +++ b/FeeSweep/out/2023-02-05-matic.report.txt @@ -0,0 +1,4 @@ +Sweep 4937.8430 of WMATIC(0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270) worth $6087.424677 +Sweep 3935.3023 of MaticX(0xfa68fb4628dff1028cfec22b4162fccd0d45efb6) worth $5100.15651552894 + +>>>Total USD Value of sweeps at time of input json: $11187.58119252894 \ No newline at end of file diff --git a/FeeSweep/out/2023-02-11-cowswap.md b/FeeSweep/out/2023-02-11-cowswap.md new file mode 100644 index 000000000..5cf8dc139 --- /dev/null +++ b/FeeSweep/out/2023-02-11-cowswap.md @@ -0,0 +1,5 @@ +| | Symbol | Amount | Cowswap ID | +|---:|:-------------|---------------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | WETH | 14211455805623672832 | ['0x3b50a92dfb4465bf5dc53b2df1bec07839163ce0c6b4001bcf066a79b982e4d37c68c42de679ffb0f16216154c996c354cf1161b63e833ef'] | +| 1 | wstETH | 36820276191791951872 | ['0x65cded45ded902acae0e65e35db33e0adf239dbfd401f372557a7cde9f52c1ea7c68c42de679ffb0f16216154c996c354cf1161b63e833ee'] | +| 2 | 50rETH-50RPL | 39393824294404243456 | ['0x70176a9168820720189c625aef89fc88020413efbe2ec27f3490a937bbf7547a7c68c42de679ffb0f16216154c996c354cf1161b63e833ec'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-02-11-eth.json b/FeeSweep/out/2023-02-11-eth.json new file mode 100644 index 000000000..926c1d20e --- /dev/null +++ b/FeeSweep/out/2023-02-11-eth.json @@ -0,0 +1 @@ +{"transactions": {"0": {"contractInputsValues": {"tokens": "[0x0fd5663d4893ae0d579d580584806aadd2dd0b8b, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0xba100000625a3754423978a60c9317c58a424e3d, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2]", "amounts": "[39393824294404243456, 36820276191791951872, 2782992331272351645696, 14211455805623672832]"}}}} \ No newline at end of file diff --git a/FeeSweep/out/2023-02-11-eth.report.txt b/FeeSweep/out/2023-02-11-eth.report.txt new file mode 100644 index 000000000..579efe189 --- /dev/null +++ b/FeeSweep/out/2023-02-11-eth.report.txt @@ -0,0 +1,6 @@ +Sweep 39.3938 of 50rETH-50RPL(0x0fd5663d4893ae0d579d580584806aadd2dd0b8b) worth $10658.05482729567 +Sweep 36.8203 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $60527.24759494452 +Sweep 2782.9924 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $17579.856528100703 +Sweep 14.2115 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $21258.02 + +>>>Total USD Value of sweeps at time of input json: $110023.1789503409 \ No newline at end of file diff --git a/FeeSweep/out/2023-02-12-cowswap.md b/FeeSweep/out/2023-02-12-cowswap.md new file mode 100644 index 000000000..fb6bb3e5d --- /dev/null +++ b/FeeSweep/out/2023-02-12-cowswap.md @@ -0,0 +1,3 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:---------|:-------------------------------------------|---------:|:-------------| +| 0 | renBTC | 0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D | 0.182231 | [] | \ No newline at end of file diff --git a/FeeSweep/out/2023-02-17-eth.json b/FeeSweep/out/2023-02-17-eth.json new file mode 100644 index 000000000..69213f204 --- /dev/null +++ b/FeeSweep/out/2023-02-17-eth.json @@ -0,0 +1 @@ +{"transactions": {"0": {"contractInputsValues": {"tokens": "[0x0391d2021f89dc339f60fff84546ea23e337750f, 0x0fd5663d4893ae0d579d580584806aadd2dd0b8b, 0x333a4823466879eef910a04d473505da62142069, 0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68, 0x616e8bfa43f920657b3497dbf40d6b1a02d4608d, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x6810e776880c02933d47db1b9fc05908e5386b96, 0x6a5ead5433a50472642cd268e584dafa5a394490, 0x6b175474e89094c44da98b954eedeac495271d0f, 0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8, 0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x8e85e97ed19c0fa13b2549309965291fbbc0048b, 0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050, 0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2, 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48, 0xba100000625a3754423978a60c9317c58a424e3d, 0xba485b556399123261a5f9c95d413b4f93107407, 0xc00e94cb662c3520282e6f5717214004a7f26888, 0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xc0c293ce456ff0ed870add98a0828dd4d2903dbf, 0xc18360217d8f7ab5e7c516566761ea12ce7f9d72, 0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5, 0xf203ca1769ca8e9e8fe1da9d147db68b6c919817, 0xfd0205066521550d7d7ab19da8f72bb004b4c341]", "amounts": "[1749229559978865983488, 39393824294404243456, 9700542554852866048, 151420945257024978944, 581981883187456049152, 1335976693310, 47979201718111895552, 114245346796521996288, 6328067082251376001024, 148283055035827280150528, 5378039183975026524160, 64392482373640527872, 6916174775592902656, 103653472410483472465920, 7690896481070638080, 8686767883, 10842466274873566035968, 2489211156020711653376, 102774360430413955072, 3582622369109548466176, 27891154080642490368, 5484180980338804129792, 417234104602774339584, 5007991328823, 69282606168891105214464, 337896577677392611377152]"}}}} \ No newline at end of file diff --git a/FeeSweep/out/2023-02-17-eth.report.txt b/FeeSweep/out/2023-02-17-eth.report.txt new file mode 100644 index 000000000..b86d923c7 --- /dev/null +++ b/FeeSweep/out/2023-02-17-eth.report.txt @@ -0,0 +1,28 @@ +Sweep 1749.2296 of BOND(0x0391d2021f89dc339f60fff84546ea23e337750f) worth $8452.234424994238 +Sweep 39.3938 of 50rETH-50RPL(0x0fd5663d4893ae0d579d580584806aadd2dd0b8b) worth $11722.11419955785 +Sweep 9.7005 of NATION(0x333a4823466879eef910a04d473505da62142069) worth $7643.214762024231 +Sweep 151.4209 of INV(0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68) worth $9423.125608502889 +Sweep 581.9819 of auraBAL(0x616e8bfa43f920657b3497dbf40d6b1a02d4608d) worth $9806.448583617233 +Sweep 1335.9767 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $14242.300517246786 +Sweep 47.9792 of GNO(0x6810e776880c02933d47db1b9fc05908e5386b96) worth $5137.099999999999 +Sweep 114.2453 of 50WSTETH-50LDO(0x6a5ead5433a50472642cd268e584dafa5a394490) worth $8321.93949016352 +Sweep 6328.0671 of DAI(0x6b175474e89094c44da98b954eedeac495271d0f) worth $6322.9376 +Sweep 148283.0565 of Silo(0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8) worth $6965.462669419971 +Sweep 5378.0392 of MATIC(0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0) worth $7857.258000000001 +Sweep 64.3925 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $118389.65088097469 +Sweep 6.9162 of sfrxETH-stETH-rETH-BPT(0x8e85e97ed19c0fa13b2549309965291fbbc0048b) worth $10136.113848293136 +Sweep 103653.4734 of TCR(0x9c4a4204b79dd291d6b6571c5be8bbcd0622f050) worth $6605.627884358679 +Sweep 7.6909 of MKR(0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2) worth $5107.994444014042 +Sweep 8686.7680 of USDC(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48) worth $8686 +Sweep 10842.4664 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $78177.01087488246 +Sweep 2489.2112 of graviAURA(0xba485b556399123261a5f9c95d413b4f93107407) worth $7080.396931556307 +Sweep 102.7744 of COMP(0xc00e94cb662c3520282e6f5717214004a7f26888) worth $5194.289211112211 +Sweep 3582.6224 of SNX(0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f) worth $9146.664687123082 +Sweep 27.8912 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $45008.73 +Sweep 5484.1810 of AURA(0xc0c293ce456ff0ed870add98a0828dd4d2903dbf) worth $14627.627742255414 +Sweep 417.2341 of ENS(0xc18360217d8f7ab5e7c516566761ea12ce7f9d72) worth $6246.959532412495 +Sweep 50079.9138 of NOTE(0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5) worth $8681.857291032222 +Sweep 69282.6069 of WNCG(0xf203ca1769ca8e9e8fe1da9d147db68b6c919817) worth $13041.579652824634 +Sweep 337896.5811 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $19432.58671152769 + +>>>Total USD Value of sweeps at time of input json: $451457.2255478937 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-03-arb.json b/FeeSweep/out/2023-03-03-arb.json new file mode 100644 index 000000000..fe1f95d1a --- /dev/null +++ b/FeeSweep/out/2023-03-03-arb.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[5281731297686309888, 1431941500479868239872, 7763234379268920180736, 5917195714189440000]", + "recipient": "0xe649B71783d5008d10a96b6871e3840a398d4F06", + "tokens": "[0x5979d7b546e38e414f7e9822514be443a4800529, 0x65c936f008bc34fe819bce9fa5afd9dc2d49977f, 0x6694340fc020c5e6b96567843da2df01b2ce1eb6, 0x82af49447d8a07e3bd95bd0d56f35241523fbab1]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-03-arb.report.txt b/FeeSweep/out/2023-03-03-arb.report.txt new file mode 100644 index 000000000..b9116df2e --- /dev/null +++ b/FeeSweep/out/2023-03-03-arb.report.txt @@ -0,0 +1,6 @@ +Sweep 5.2817 of wstETH(0x5979d7b546e38e414f7e9822514be443a4800529) worth $8680.641853969855 +Sweep 1431.9415 of Y2K(0x65c936f008bc34fe819bce9fa5afd9dc2d49977f) worth $6363.0160881679185 +Sweep 7763.2345 of STG(0x6694340fc020c5e6b96567843da2df01b2ce1eb6) worth $6735.011852433992 +Sweep 5.9172 of WETH(0x82af49447d8a07e3bd95bd0d56f35241523fbab1) worth $7806.65 + +>>>Total USD Value of sweeps at time of input json: $29585.31979457177 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-03-cowswap.md b/FeeSweep/out/2023-03-03-cowswap.md new file mode 100644 index 000000000..df49c5703 --- /dev/null +++ b/FeeSweep/out/2023-03-03-cowswap.md @@ -0,0 +1,2 @@ +| Symbol | Address | Amount | Cowswap ID | +|----------|-----------|----------|--------------| \ No newline at end of file diff --git a/FeeSweep/out/2023-03-03-eth.json b/FeeSweep/out/2023-03-03-eth.json new file mode 100644 index 000000000..48b71f539 --- /dev/null +++ b/FeeSweep/out/2023-03-03-eth.json @@ -0,0 +1 @@ +{"transactions": {"0": {"contractInputsValues": {"tokens": "[0x3472a5a71965499acd81997a54bba8d852c6e53d, 0x476c5e26a75bd202a9683ffd34359c0cc15be0ff, 0x5aee1e99fe86960377de9f88689616916d5dcabe, 0x6123b0049f904d730db3c36a31167d9d4121fa6b, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x6a5ead5433a50472642cd268e584dafa5a394490, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0xba100000625a3754423978a60c9317c58a424e3d, 0xbe9895146f7af43049ca1c1ae358b0541ea49704, 0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xc0c293ce456ff0ed870add98a0828dd4d2903dbf, 0xfd0205066521550d7d7ab19da8f72bb004b4c341]", "amounts": "[1778171151089344446464, 14960174632, 4038967632809822720, 34417370318477474136064, 2196644510545, 1142442067017, 81295310374948782080, 9894985450092765380608, 8013507375774359552, 2634116973640486486016, 42738138261717868544, 4486147178578391334912, 513257506152966294339584]"}}}} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-03-eth.report.txt b/FeeSweep/out/2023-03-03-eth.report.txt new file mode 100644 index 000000000..0c50538d5 --- /dev/null +++ b/FeeSweep/out/2023-03-03-eth.report.txt @@ -0,0 +1,15 @@ +Sweep 1778.1889 of BADGER(0x3472a5a71965499acd81997a54bba8d852c6e53d) worth $6008.737491737854 +Sweep 14960.3242 of SRM(0x476c5e26a75bd202a9683ffd34359c0cc15be0ff) worth $6757.88104740999 +Sweep 4.0390 of wstETH-rETH-sfrxETH-BPT(0x5aee1e99fe86960377de9f88689616916d5dcabe) worth $6237.782046254793 +Sweep 34417.7145 of RBN(0x6123b0049f904d730db3c36a31167d9d4121fa6b) worth $7653.356455159464 +Sweep 2196.6665 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $22371.386465513624 +Sweep 0.0000 of 50WSTETH-50LDO(0x6a5ead5433a50472642cd268e584dafa5a394490) worth $0.0 +Sweep 81.2961 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $140523.47410428294 +Sweep 9895.0844 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $65000.7288667858 +Sweep 8.0136 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $12629.734096967624 +Sweep 2634.1433 of SNX(0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f) worth $7428.440601963494 +Sweep 42.7386 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $65616.59999999999 +Sweep 4486.1920 of AURA(0xc0c293ce456ff0ed870add98a0828dd4d2903dbf) worth $13773.242398425533 +Sweep 513262.6388 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $56453.568019545935 + +>>>Total USD Value of sweeps at time of input json: $410454.931594047 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-03-matic.json b/FeeSweep/out/2023-03-03-matic.json new file mode 100644 index 000000000..45e1f5ccc --- /dev/null +++ b/FeeSweep/out/2023-03-03-matic.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0xe649B71783d5008d10a96b6871e3840a398d4F06", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[5126519702134468902912, 194046428]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270, 0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-03-matic.report.txt b/FeeSweep/out/2023-03-03-matic.report.txt new file mode 100644 index 000000000..5cee04f39 --- /dev/null +++ b/FeeSweep/out/2023-03-03-matic.report.txt @@ -0,0 +1,4 @@ +Sweep 5126.5198 of WMATIC(0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270) worth $5940.82896 +Sweep 1940464.3000 of TEL(0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32) worth $5077.93583770361 + +>>>Total USD Value of sweeps at time of input json: $11018.76479770361 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-17-arb.json b/FeeSweep/out/2023-03-17-arb.json new file mode 100644 index 000000000..d77533150 --- /dev/null +++ b/FeeSweep/out/2023-03-17-arb.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-17-arb.report.txt b/FeeSweep/out/2023-03-17-arb.report.txt new file mode 100644 index 000000000..3063e743b --- /dev/null +++ b/FeeSweep/out/2023-03-17-arb.report.txt @@ -0,0 +1,2 @@ + +>>>Total USD Value of sweeps at time of input json: $0 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-17-cowswap.md b/FeeSweep/out/2023-03-17-cowswap.md new file mode 100644 index 000000000..df49c5703 --- /dev/null +++ b/FeeSweep/out/2023-03-17-cowswap.md @@ -0,0 +1,2 @@ +| Symbol | Address | Amount | Cowswap ID | +|----------|-----------|----------|--------------| \ No newline at end of file diff --git a/FeeSweep/out/2023-03-17-eth.json b/FeeSweep/out/2023-03-17-eth.json new file mode 100644 index 000000000..10f0f85a3 --- /dev/null +++ b/FeeSweep/out/2023-03-17-eth.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[245785055033553518592, 1584286955672256905216, 284576126588911616000, 11113615224195617128448, 13061025170774681600, 36949754018438410403840, 526040991398292422656, 3004096197315, 125371965659268120576, 49765550731753317990400, 78980811469671219200, 31419871222508179456, 7053378359, 6724969241872503406592, 135305714997755494400, 6192097260992414613504, 5622310891502269440, 5834338296815098527744, 37077263795075162112, 2676295478429141172224, 119937317540492891652096, 346458273675908546560, 146439326501778374656, 308101270957554296422400]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x1f9840a85d5af5bf1d1762f925bdaddc4201f984, 0x4fd4687ec38220f805b6363c3c1e52d0df3b5023, 0x50cf90b954958480b8df7958a9e965752f627124, 0x5aee1e99fe86960377de9f88689616916d5dcabe, 0x6123b0049f904d730db3c36a31167d9d4121fa6b, 0x616e8bfa43f920657b3497dbf40d6b1a02d4608d, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x808507121b80c02388fad14726482e061b8da827, 0x959216bb492b2efa72b15b7aacea5b5c984c3cca, 0x9f9d900462492d4c21e9523ca95a7cd86142f298, 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48, 0xa718042e5622099e5f0ace4e7122058ab39e1bbe, 0xb5e3de837f869b0248825e0175da73d4e8c3db6b, 0xba100000625a3754423978a60c9317c58a424e3d, 0xbe9895146f7af43049ca1c1ae358b0541ea49704, 0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xc0c293ce456ff0ed870add98a0828dd4d2903dbf, 0xcafe001067cdef266afb7eb5a286dcfd277f3de5, 0xd33526068d116ce69f19a9ee46f0bd304f21a51f, 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc, 0xfd0205066521550d7d7ab19da8f72bb004b4c341]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-17-eth.report.txt b/FeeSweep/out/2023-03-17-eth.report.txt new file mode 100644 index 000000000..76f7a5b83 --- /dev/null +++ b/FeeSweep/out/2023-03-17-eth.report.txt @@ -0,0 +1,26 @@ +Sweep 245.7851 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $18438.69460495549 +Sweep 1584.2870 of UNI(0x1f9840a85d5af5bf1d1762f925bdaddc4201f984) worth $9657.777205230987 +Sweep 284.5761 of 50wstETH-50bb-euler-USD(0x4fd4687ec38220f805b6363c3c1e52d0df3b5023) worth $17982.945318006663 +Sweep 11113.6153 of bb-euler-USD-BPT(0x50cf90b954958480b8df7958a9e965752f627124) worth $11113.818307606243 +Sweep 13.0610 of wstETH-rETH-sfrxETH-BPT(0x5aee1e99fe86960377de9f88689616916d5dcabe) worth $22250.865020307894 +Sweep 36949.7544 of RBN(0x6123b0049f904d730db3c36a31167d9d4121fa6b) worth $9045.061259741975 +Sweep 526.0410 of auraBAL(0x616e8bfa43f920657b3497dbf40d6b1a02d4608d) worth $9029.46280612782 +Sweep 3004.0962 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $30803.879809006143 +Sweep 125.3720 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $239032.58086147808 +Sweep 49765.5512 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $15626.184035807464 +Sweep 78.9808 of 50wstETH-50stk-APE(0x959216bb492b2efa72b15b7aacea5b5c984c3cca) worth $7101.832621512033 +Sweep 31.4199 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $8550.949750903286 +Sweep 7053.3784 of USDC(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48) worth $7042.4205 +Sweep 6724.9693 of 50TEMPLE-50bb-euler-USD(0xa718042e5622099e5f0ace4e7122058ab39e1bbe) worth $5710.630695558199 +Sweep 135.3057 of 50rETH-50bb-euler-USD(0xb5e3de837f869b0248825e0175da73d4e8c3db6b) worth $8406.365674698167 +Sweep 6192.0973 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $40656.25725983869 +Sweep 5.6223 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $8775.913984670613 +Sweep 5834.3384 of SNX(0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f) worth $16728.895464663976 +Sweep 37.0773 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $63593.01 +Sweep 2676.2955 of AURA(0xc0c293ce456ff0ed870add98a0828dd4d2903dbf) worth $9342.070296289729 +Sweep 119937.3187 of PSP(0xcafe001067cdef266afb7eb5a286dcfd277f3de5) worth $5508.989498635881 +Sweep 346.4583 of RPL(0xd33526068d116ce69f19a9ee46f0bd304f21a51f) worth $14586.820622308896 +Sweep 146.4393 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $6411.376735991678 +Sweep 308101.2740 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $32354.59502194589 + +>>>Total USD Value of sweeps at time of input json: $617751.3973552857 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-17-matic.json b/FeeSweep/out/2023-03-17-matic.json new file mode 100644 index 000000000..02e85e2b8 --- /dev/null +++ b/FeeSweep/out/2023-03-17-matic.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[6873480115269007360]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x65fe9314be50890fb01457be076fafd05ff32b9a]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-17-matic.report.txt b/FeeSweep/out/2023-03-17-matic.report.txt new file mode 100644 index 000000000..9667e79ba --- /dev/null +++ b/FeeSweep/out/2023-03-17-matic.report.txt @@ -0,0 +1,3 @@ +Sweep 6.8735 of B-stETH-BPT(0x65fe9314be50890fb01457be076fafd05ff32b9a) worth $10344.485651018029 + +>>>Total USD Value of sweeps at time of input json: $10344.485651018029 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-31-arb.json b/FeeSweep/out/2023-03-31-arb.json new file mode 100644 index 000000000..c713b236e --- /dev/null +++ b/FeeSweep/out/2023-03-31-arb.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[4541688048362429349888, 101095466188819537068032, 3880848106422097408, 7749306572957220339712, 15232756854096857088]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x0052688295413b32626d226a205b95cdb337de86, 0x32df62dc3aed2cd6224193052ce665dc18165841, 0x5979d7b546e38e414f7e9822514be443a4800529, 0x6694340fc020c5e6b96567843da2df01b2ce1eb6, 0x82af49447d8a07e3bd95bd0d56f35241523fbab1]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-31-arb.report.txt b/FeeSweep/out/2023-03-31-arb.report.txt new file mode 100644 index 000000000..7d3b9bbb0 --- /dev/null +++ b/FeeSweep/out/2023-03-31-arb.report.txt @@ -0,0 +1,7 @@ +Sweep 4541.6881 of 20ARB-80USDC(0x0052688295413b32626d226a205b95cdb337de86) worth $5931.223542712534 +Sweep 101095.4672 of RDNT-WETH(0x32df62dc3aed2cd6224193052ce665dc18165841) worth $165414.75017550404 +Sweep 3.8808 of wstETH(0x5979d7b546e38e414f7e9822514be443a4800529) worth $6000.170601928663 +Sweep 7749.3067 of STG(0x6694340fc020c5e6b96567843da2df01b2ce1eb6) worth $5200.842455661483 +Sweep 15.2328 of WETH(0x82af49447d8a07e3bd95bd0d56f35241523fbab1) worth $26919.0 + +>>>Total USD Value of sweeps at time of input json: $209465.98677580673 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-31-eth.json b/FeeSweep/out/2023-03-31-eth.json new file mode 100644 index 000000000..5fba95142 --- /dev/null +++ b/FeeSweep/out/2023-03-31-eth.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[166037739241499525120, 4999999949999999811584, 284576126588911616000, 11113615224195617128448, 20253107075342798848, 23970157765764239589376, 1590008962053, 81494683379313410048, 36811194111724246532096, 22493436414584156160, 160036486325106527698944, 6724969241872503406592, 135305714997755494400, 10835685747333206638592, 6572142682147682304, 4273292420485025366016, 23193138011470741504, 4729331701718417408, 165702578401512207155200]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x31c8eacbffdd875c74b94b077895bd78cf1e64a3, 0x4fd4687ec38220f805b6363c3c1e52d0df3b5023, 0x50cf90b954958480b8df7958a9e965752f627124, 0x5aee1e99fe86960377de9f88689616916d5dcabe, 0x6123b0049f904d730db3c36a31167d9d4121fa6b, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x808507121b80c02388fad14726482e061b8da827, 0x9f9d900462492d4c21e9523ca95a7cd86142f298, 0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9, 0xa718042e5622099e5f0ace4e7122058ab39e1bbe, 0xb5e3de837f869b0248825e0175da73d4e8c3db6b, 0xba100000625a3754423978a60c9317c58a424e3d, 0xbe9895146f7af43049ca1c1ae358b0541ea49704, 0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xe95a203b1a91a908f9b9ce46459d101078c2c3cb, 0xfd0205066521550d7d7ab19da8f72bb004b4c341]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-31-eth.report.txt b/FeeSweep/out/2023-03-31-eth.report.txt new file mode 100644 index 000000000..ac96d08ef --- /dev/null +++ b/FeeSweep/out/2023-03-31-eth.report.txt @@ -0,0 +1,21 @@ +Sweep 166.0377 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $12052.207349357785 +Sweep 5000.0000 of RAD(0x31c8eacbffdd875c74b94b077895bd78cf1e64a3) worth $9728.316069691642 +Sweep 284.5761 of 50wstETH-50bb-euler-USD(0x4fd4687ec38220f805b6363c3c1e52d0df3b5023) worth $18121.61702293923 +Sweep 11113.6153 of bb-euler-USD-BPT(0x50cf90b954958480b8df7958a9e965752f627124) worth $11120.59069898241 +Sweep 20.2531 of wstETH-rETH-sfrxETH-BPT(0x5aee1e99fe86960377de9f88689616916d5dcabe) worth $35962.35883768807 +Sweep 23970.1580 of RBN(0x6123b0049f904d730db3c36a31167d9d4121fa6b) worth $5198.491815511471 +Sweep 1590.0090 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $16367.025502104936 +Sweep 81.4947 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $161942.98477507778 +Sweep 36811.1945 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $13512.602421469466 +Sweep 22.4934 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $6295.996099883986 +Sweep 160036.4879 of TEMP(0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9) worth $69119.5484 +Sweep 6724.9693 of 50TEMPLE-50bb-euler-USD(0xa718042e5622099e5f0ace4e7122058ab39e1bbe) worth $6532.113437243052 +Sweep 135.3057 of 50rETH-50bb-euler-USD(0xb5e3de837f869b0248825e0175da73d4e8c3db6b) worth $8469.299533659309 +Sweep 10835.6859 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $74423.16624575797 +Sweep 6.5721 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $10904.08256797566 +Sweep 4273.2925 of SNX(0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f) worth $10392.516245448947 +Sweep 23.1931 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $41244.75 +Sweep 4.7293 of ankrETH(0xe95a203b1a91a908f9b9ce46459d101078c2c3cb) worth $7928.914620333898 +Sweep 165702.5801 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $18679.11181379158 + +>>>Total USD Value of sweeps at time of input json: $537995.6934569172 \ No newline at end of file diff --git a/FeeSweep/out/2023-03-31-matic.json b/FeeSweep/out/2023-03-31-matic.json new file mode 100644 index 000000000..4e2ebaceb --- /dev/null +++ b/FeeSweep/out/2023-03-31-matic.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[10732002425778069504, 266242233]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x65fe9314be50890fb01457be076fafd05ff32b9a, 0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-03-31-matic.report.txt b/FeeSweep/out/2023-03-31-matic.report.txt new file mode 100644 index 000000000..d543b2145 --- /dev/null +++ b/FeeSweep/out/2023-03-31-matic.report.txt @@ -0,0 +1,4 @@ +Sweep 10.7320 of B-stETH-BPT(0x65fe9314be50890fb01457be076fafd05ff32b9a) worth $17814.65396680728 +Sweep 2662422.3600 of TEL(0xdf7837de1f2fa4631d716cf2502f8b230f1dcc32) worth $6856.311836742308 + +>>>Total USD Value of sweeps at time of input json: $24670.96580354959 \ No newline at end of file diff --git a/FeeSweep/out/2023-04-13-op.json b/FeeSweep/out/2023-04-13-op.json new file mode 100644 index 000000000..7c628fb16 --- /dev/null +++ b/FeeSweep/out/2023-04-13-op.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[830382793901193472, 416440335212181184, 126885877785788976, 1357868542687703296, 2116383659126764, 937842269409657344, 18166732051535552, 37158450537658864, 78833775121276485632, 6567058170570619904, 592202013744236, 1017477021596656000, 5669824969678872576, 966495708385599360, 6734766484399, 2597357013368948224, 26, 47055005817405912, 26472054839639, 982130, 1087248459327328640, 443146, 3653970090435802624, 933944426023, 7979413166882915, 3424352394459011, 52890770715442, 38411990986257840, 2974207835700657152, 8523003174425431, 414737884164834752, 9827059671, 207772966582, 37126597880654495744]", + "recipient": "0x7f4b5250C63E24360055342D2a4427079290F044", + "tokens": "[0x00a35fd824c717879bf370e70ac6868b95870dfb, 0x0994206dfe8de6ec6920ff4d779b0d950605fb53, 0x10010078a54396f62c96df8532dc2b4847d47ed3, 0x1f131ec1175f023ee1534b16fa8ab237c00e2381, 0x1f32b1c2345538c0c6f582fcb022739c4a194ebb, 0x23ca0306b21ea71552b148cf3c4db4fc85ae1929, 0x296f55f8fb28e498b858d0bcda06d955b2cb3f97, 0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6, 0x39fde572a18448f8139b7788099f0a0740f51205, 0x3f56e0c36d275367b8c502090edf38289b3dea0d, 0x4200000000000000000000000000000000000006, 0x4200000000000000000000000000000000000042, 0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a5, 0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337, 0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642, 0x59aba93eb2fb1d12ae0a292d96655a13469417a0, 0x68f180fcce6836688e9084f035309e29bf0a2095, 0x785f08fb77ec934c01736e30546f87b4daccbe50, 0x7d6bff131b359da66d92f215fd4e186003bfaa42, 0x7f5c764cbc14f9669b88837ca1490cca17c31607, 0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9, 0x94b008aa00579c1307b0ef2c499ad98a8ce58e58, 0x97513e975a7fa9072c72c92d8000b0db90b163c5, 0x9964b1bd3cc530e5c58ba564e45d45290f677be2, 0x9bcef72be871e61ed4fbbc7630889bee758eb81d, 0xc40f949f8a4e094d1b49a23ea9241d289b7b2819, 0xc5b001dc33727f8f26880b184090d3e252470d45, 0xc77e5645dbe48d54afc06655e39d3fe17eb76c1c, 0xda10009cbd5d07dd0cecc66161fc93d7c9000da1, 0xdc125d09891c5b6b66061e3170e9a1e1c5cf9be4, 0xdfa46478f9e5ea86d57387849598dbfb2e964b02, 0xe0b50b0635b90f7021d2618f76ab9a31b92d0094, 0xf572649606db4743d217a2fa6e8b8eb79742c24a, 0xfd389dc9533717239856190f42475d3f263a270d]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-04-13-op.report.txt b/FeeSweep/out/2023-04-13-op.report.txt new file mode 100644 index 000000000..2ecdfce2a --- /dev/null +++ b/FeeSweep/out/2023-04-13-op.report.txt @@ -0,0 +1,36 @@ +Sweep 0.8304 of IB(0x00a35fd824c717879bf370e70ac6868b95870dfb) worth $0.0 +Sweep 0.4164 of CRV(0x0994206dfe8de6ec6920ff4d779b0d950605fb53) worth $0.0 +Sweep 0.1269 of HND(0x10010078a54396f62c96df8532dc2b4847d47ed3) worth $0.0 +Sweep 1.3579 of bbrfaUSD-MAI(0x1f131ec1175f023ee1534b16fa8ab237c00e2381) worth $1.0154452467073323 +Sweep 0.0021 of wstETH(0x1f32b1c2345538c0c6f582fcb022739c4a194ebb) worth $0.0 +Sweep 0.9378 of bbrfsoUSD(0x23ca0306b21ea71552b148cf3c4db4fc85ae1929) worth $0.0 +Sweep 0.0182 of STG(0x296f55f8fb28e498b858d0bcda06d955b2cb3f97) worth $0.0 +Sweep 0.0372 of LINK(0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6) worth $0.0 +Sweep 78.8338 of OATH(0x39fde572a18448f8139b7788099f0a0740f51205) worth $15.055614918937604 +Sweep 6.5671 of QI(0x3f56e0c36d275367b8c502090edf38289b3dea0d) worth $0.5314392820954636 +Sweep 0.0006 of WETH(0x4200000000000000000000000000000000000006) worth $0.0 +Sweep 1.0175 of OP(0x4200000000000000000000000000000000000042) worth $2.368 +Sweep 5.6698 of BPT-overnight-II(0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a5) worth $5.016903092006314 +Sweep 0.9665 of bb-rf-aUSD-asUSD(0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337) worth $0.0 +Sweep 0.0000 of BIFI(0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642) worth $0.0 +Sweep 2.5974 of BPT-TERB(0x59aba93eb2fb1d12ae0a292d96655a13469417a0) worth $0 +Sweep 0.0000 of WBTC(0x68f180fcce6836688e9084f035309e29bf0a2095) worth $0.0 +Sweep 0.0471 of IBT-IBRETH(0x785f08fb77ec934c01736e30546f87b4daccbe50) worth $0.0 +Sweep 0.0000 of BPT-USD+(0x7d6bff131b359da66d92f215fd4e186003bfaa42) worth $0.0 +Sweep 0.9821 of USDC(0x7f5c764cbc14f9669b88837ca1490cca17c31607) worth $0.0 +Sweep 1.0872 of sUSD(0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9) worth $1.0012131631560988 +Sweep 0.4431 of USDT(0x94b008aa00579c1307b0ef2c499ad98a8ce58e58) worth $0.0 +Sweep 3.6540 of BEETS(0x97513e975a7fa9072c72c92d8000b0db90b163c5) worth $0.155633078290067 +Sweep 0.0000 of test-bb-rf-a-USD(0x9964b1bd3cc530e5c58ba564e45d45290f677be2) worth $0.0 +Sweep 0.0080 of rETH(0x9bcef72be871e61ed4fbbc7630889bee758eb81d) worth $0.0 +Sweep 0.0034 of LUSD(0xc40f949f8a4e094d1b49a23ea9241d289b7b2819) worth $0.0 +Sweep 0.0001 of ERN(0xc5b001dc33727f8f26880b184090d3e252470d45) worth $0.0 +Sweep 0.0384 of BPT-LDO-WSTEH(0xc77e5645dbe48d54afc06655e39d3fe17eb76c1c) worth $0.0 +Sweep 2.9742 of DAI(0xda10009cbd5d07dd0cecc66161fc93d7c9000da1) worth $2 +Sweep 0.0085 of BPT-IB-RETH(0xdc125d09891c5b6b66061e3170e9a1e1c5cf9be4) worth $0 +Sweep 0.4147 of MAI(0xdfa46478f9e5ea86d57387849598dbfb2e964b02) worth $0.0 +Sweep 0.0000 of test-bb-TRI(0xe0b50b0635b90f7021d2618f76ab9a31b92d0094) worth $0.0 +Sweep 0.0000 of test-bb-USD-MAI(0xf572649606db4743d217a2fa6e8b8eb79742c24a) worth $0.0 +Sweep 37.1266 of GRAIN(0xfd389dc9533717239856190f42475d3f263a270d) worth $1.9919138795747857 + +>>>Total USD Value of sweeps at time of input json: $29.13616266076766 \ No newline at end of file diff --git a/FeeSweep/out/2023-04-14-rescue-euler.json b/FeeSweep/out/2023-04-14-rescue-euler.json new file mode 100644 index 000000000..ac9944101 --- /dev/null +++ b/FeeSweep/out/2023-04-14-rescue-euler.json @@ -0,0 +1,57 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1681321880536, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0xd2d40233494806c3d91ca24493c91ee62ca69c36605b0738eae83d7cf012ca7c" + }, + "transactions": [ + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": "0x0e8e3e84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000006d5c247b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000001d7c00000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000067a0335795650085b30000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b", + "contractMethod": null, + "contractInputsValues": null + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": "0x0e8e3e84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000006d5c247b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000001d7c00000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000067a0335795650085b30000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b", + "contractMethod": null, + "contractInputsValues": null + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": "0x0e8e3e84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000006d5c247b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000001d7c00000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000067a0335795650085b30000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b", + "contractMethod": null, + "contractInputsValues": null + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": "0x0e8e3e84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000006d5c247b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000001d7c00000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000067a0335795650085b30000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b", + "contractMethod": null, + "contractInputsValues": null + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": "0x0e8e3e84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000006d5c247b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000001d7c00000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000067a0335795650085b30000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b", + "contractMethod": null, + "contractInputsValues": null + }, + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": "0x0e8e3e84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000006d5c247b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000001d7c00000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000067a0335795650085b30000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b", + "contractMethod": null, + "contractInputsValues": null + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-04-16-op.json b/FeeSweep/out/2023-04-16-op.json new file mode 100644 index 000000000..38dac2da4 --- /dev/null +++ b/FeeSweep/out/2023-04-16-op.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[4151913969505967616, 2082201676060905984, 634429388928944896, 6789342713438516224, 10581918295633822, 4689211347048287232, 90833660257677760, 185792252688294304, 394168875606382477312, 32835290852853104640, 2961010068721181, 5087385107983280128, 28349124848394366976, 4832478541927996416, 33673832421995, 12986785066844741632, 134, 235275029087029568, 132360274198195, 4910650, 5436242296636643328, 2215733, 18269850452179013632, 4669722130118, 39897065834414576, 17121761972295056, 264453853577210, 192059954931289216, 14871039178503284736, 42615015872127160, 2073689420824173824, 49135298355, 1038864832914, 185632989403272478720]", "recipient": "0x7f4b5250C63E24360055342D2a4427079290F044", "tokens": "[0x00a35fd824c717879bf370e70ac6868b95870dfb, 0x0994206dfe8de6ec6920ff4d779b0d950605fb53, 0x10010078a54396f62c96df8532dc2b4847d47ed3, 0x1f131ec1175f023ee1534b16fa8ab237c00e2381, 0x1f32b1c2345538c0c6f582fcb022739c4a194ebb, 0x23ca0306b21ea71552b148cf3c4db4fc85ae1929, 0x296f55f8fb28e498b858d0bcda06d955b2cb3f97, 0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6, 0x39fde572a18448f8139b7788099f0a0740f51205, 0x3f56e0c36d275367b8c502090edf38289b3dea0d, 0x4200000000000000000000000000000000000006, 0x4200000000000000000000000000000000000042, 0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a5, 0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337, 0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642, 0x59aba93eb2fb1d12ae0a292d96655a13469417a0, 0x68f180fcce6836688e9084f035309e29bf0a2095, 0x785f08fb77ec934c01736e30546f87b4daccbe50, 0x7d6bff131b359da66d92f215fd4e186003bfaa42, 0x7f5c764cbc14f9669b88837ca1490cca17c31607, 0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9, 0x94b008aa00579c1307b0ef2c499ad98a8ce58e58, 0x97513e975a7fa9072c72c92d8000b0db90b163c5, 0x9964b1bd3cc530e5c58ba564e45d45290f677be2, 0x9bcef72be871e61ed4fbbc7630889bee758eb81d, 0xc40f949f8a4e094d1b49a23ea9241d289b7b2819, 0xc5b001dc33727f8f26880b184090d3e252470d45, 0xc77e5645dbe48d54afc06655e39d3fe17eb76c1c, 0xda10009cbd5d07dd0cecc66161fc93d7c9000da1, 0xdc125d09891c5b6b66061e3170e9a1e1c5cf9be4, 0xdfa46478f9e5ea86d57387849598dbfb2e964b02, 0xe0b50b0635b90f7021d2618f76ab9a31b92d0094, 0xf572649606db4743d217a2fa6e8b8eb79742c24a, 0xfd389dc9533717239856190f42475d3f263a270d]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-04-16-op.report.txt b/FeeSweep/out/2023-04-16-op.report.txt new file mode 100644 index 000000000..6f6ce0898 --- /dev/null +++ b/FeeSweep/out/2023-04-16-op.report.txt @@ -0,0 +1,36 @@ +Sweep 4.1519 of IB(0x00a35fd824c717879bf370e70ac6868b95870dfb) worth $6.161080214787525 +Sweep 2.0822 of CRV(0x0994206dfe8de6ec6920ff4d779b0d950605fb53) worth $2.126 +Sweep 0.6344 of HND(0x10010078a54396f62c96df8532dc2b4847d47ed3) worth $0.0 +Sweep 6.7893 of bbrfaUSD-MAI(0x1f131ec1175f023ee1534b16fa8ab237c00e2381) worth $6.092671480243993 +Sweep 0.0106 of wstETH(0x1f32b1c2345538c0c6f582fcb022739c4a194ebb) worth $0.0 +Sweep 4.6892 of bbrfsoUSD(0x23ca0306b21ea71552b148cf3c4db4fc85ae1929) worth $4.006764233239727 +Sweep 0.0908 of STG(0x296f55f8fb28e498b858d0bcda06d955b2cb3f97) worth $0.0 +Sweep 0.1858 of LINK(0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6) worth $0.0 +Sweep 394.1689 of OATH(0x39fde572a18448f8139b7788099f0a0740f51205) worth $76.0501574110438 +Sweep 32.8353 of QI(0x3f56e0c36d275367b8c502090edf38289b3dea0d) worth $2.8343428378424727 +Sweep 0.0030 of WETH(0x4200000000000000000000000000000000000006) worth $0.0 +Sweep 5.0874 of OP(0x4200000000000000000000000000000000000042) worth $11.84 +Sweep 28.3491 of BPT-overnight-II(0x43da214fab3315aa6c02e0b8f2bfb7ef2e3c60a5) worth $28.09465731523536 +Sweep 4.8325 of bb-rf-aUSD-asUSD(0x479a7d1fcdd71ce0c2ed3184bfbe9d23b92e8337) worth $4.182495834021076 +Sweep 0.0000 of BIFI(0x4e720dd3ac5cfe1e1fbde4935f386bb1c66f4642) worth $0.0 +Sweep 12.9868 of BPT-TERB(0x59aba93eb2fb1d12ae0a292d96655a13469417a0) worth $0 +Sweep 0.0000 of WBTC(0x68f180fcce6836688e9084f035309e29bf0a2095) worth $0.0 +Sweep 0.2353 of IBT-IBRETH(0x785f08fb77ec934c01736e30546f87b4daccbe50) worth $0.0 +Sweep 0.0001 of BPT-USD+(0x7d6bff131b359da66d92f215fd4e186003bfaa42) worth $0.0 +Sweep 4.9107 of USDC(0x7f5c764cbc14f9669b88837ca1490cca17c31607) worth $3.9964 +Sweep 5.4362 of sUSD(0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9) worth $5.006065815780493 +Sweep 2.2157 of USDT(0x94b008aa00579c1307b0ef2c499ad98a8ce58e58) worth $2.0022 +Sweep 18.2699 of BEETS(0x97513e975a7fa9072c72c92d8000b0db90b163c5) worth $0.9337984697404021 +Sweep 0.0000 of test-bb-rf-a-USD(0x9964b1bd3cc530e5c58ba564e45d45290f677be2) worth $0.0 +Sweep 0.0399 of rETH(0x9bcef72be871e61ed4fbbc7630889bee758eb81d) worth $0.0 +Sweep 0.0171 of LUSD(0xc40f949f8a4e094d1b49a23ea9241d289b7b2819) worth $0.0 +Sweep 0.0003 of ERN(0xc5b001dc33727f8f26880b184090d3e252470d45) worth $0.0 +Sweep 0.1921 of BPT-LDO-WSTEH(0xc77e5645dbe48d54afc06655e39d3fe17eb76c1c) worth $0.0 +Sweep 14.8710 of DAI(0xda10009cbd5d07dd0cecc66161fc93d7c9000da1) worth $14 +Sweep 0.0426 of BPT-IB-RETH(0xdc125d09891c5b6b66061e3170e9a1e1c5cf9be4) worth $0 +Sweep 2.0737 of MAI(0xdfa46478f9e5ea86d57387849598dbfb2e964b02) worth $1.9943371990581933 +Sweep 0.0000 of test-bb-TRI(0xe0b50b0635b90f7021d2618f76ab9a31b92d0094) worth $0.0 +Sweep 0.0000 of test-bb-USD-MAI(0xf572649606db4743d217a2fa6e8b8eb79742c24a) worth $0.0 +Sweep 185.6330 of GRAIN(0xfd389dc9533717239856190f42475d3f263a270d) worth $9.95956939787393 + +>>>Total USD Value of sweeps at time of input json: $179.2805402088669 \ No newline at end of file diff --git a/FeeSweep/out/2023-04-28-arb.json b/FeeSweep/out/2023-04-28-arb.json new file mode 100644 index 000000000..7262fa535 --- /dev/null +++ b/FeeSweep/out/2023-04-28-arb.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[57112790434664088076288, 315111748127953584128, 4676539625214275584, 6457039290654014464]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x32df62dc3aed2cd6224193052ce665dc18165841, 0x4e352cf164e64adcbad318c3a1e222e9eba4ce42, 0x5979d7b546e38e414f7e9822514be443a4800529, 0x82af49447d8a07e3bd95bd0d56f35241523fbab1]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-04-28-arb.report.txt b/FeeSweep/out/2023-04-28-arb.report.txt new file mode 100644 index 000000000..262332a55 --- /dev/null +++ b/FeeSweep/out/2023-04-28-arb.report.txt @@ -0,0 +1,6 @@ +Sweep 57118.5023 of RDNT-WETH(0x32df62dc3aed2cd6224193052ce665dc18165841) worth $105012.6663990502 +Sweep 315.1433 of MCB(0x4e352cf164e64adcbad318c3a1e222e9eba4ce42) worth $5257.725682978282 +Sweep 4.6770 of wstETH(0x5979d7b546e38e414f7e9822514be443a4800529) worth $8532.916868543638 +Sweep 6.4577 of WETH(0x82af49447d8a07e3bd95bd0d56f35241523fbab1) worth $11439.3 + +>>>Total USD Value of sweeps at time of input json: $130242.60895057213 \ No newline at end of file diff --git a/FeeSweep/out/2023-04-28-cowswap.md b/FeeSweep/out/2023-04-28-cowswap.md new file mode 100644 index 000000000..be6714557 --- /dev/null +++ b/FeeSweep/out/2023-04-28-cowswap.md @@ -0,0 +1,9 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:--------------|:-------------------------------------------|-------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | WBTC | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 | 0.271385 | ['0xa6cb079c65416e88d0b03647caad5b21f7b83d74619642619508439e38cbf1217c68c42de679ffb0f16216154c996c354cf1161b644c49bf'] | +| 1 | rETH | 0x9559Aaa82d9649C7A7b220E7c461d2E74c9a3593 | 2.91574 | ['0x35b71ef26f79eaa169a709df3f29f37be19e38f96d80ce015dcfb8d95b6a963d7c68c42de679ffb0f16216154c996c354cf1161b644c49c2'] | +| 2 | 20WETH-80ALCX | 0xf16aEe6a71aF1A9Bc8F56975A4c2705ca7A782Bc | 129.616 | ['0x73f9622f72153d1461a58485691bd51d54f51cbcf0473b11172654ed416ba6c77c68c42de679ffb0f16216154c996c354cf1161b644c49e9'] | +| 3 | AURA | 0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF | 1372.86 | ['0xfa7ee08ef8f296b965de695739d53f1e2f1c5cf79a3c578bed3dc44ca2578f0c7c68c42de679ffb0f16216154c996c354cf1161b644c49ed'] | +| 4 | T | 0xCdF7028ceAB81fA0C6971208e83fa7872994beE5 | 85032.4 | ['0x0ebffdfa4bd789f14333e57ca96f91a6bbcc14af0a22b574c83f1b2e99d67c037c68c42de679ffb0f16216154c996c354cf1161b644c49f1'] | +| 5 | DAI | 0x6B175474E89094C44Da98b954EedeAC495271d0F | 5186.09 | ['0x448d0f981abbecbf94b1d7799d7600927130ea1a1c4edbb68e3994dcf510b0d87c68c42de679ffb0f16216154c996c354cf1161b644c49f5'] | +| 6 | BADGER | 0x3472A5A71965499acd81997a54BBA8D852C6E53d | 3329.85 | ['0x89b42799919cee1f298cefef04ef4fa65bf414342a3c07bf04431ec32349bc137c68c42de679ffb0f16216154c996c354cf1161b644c49fa'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-04-28-eth.json b/FeeSweep/out/2023-04-28-eth.json new file mode 100644 index 000000000..68f5ff203 --- /dev/null +++ b/FeeSweep/out/2023-04-28-eth.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[1355005854903791255552, 9511930937171435847680, 123742862575855796224, 284547671821729464320, 23065313135018049536, 1111042171992, 61683580826557874176, 32312947765669051498496, 88709050783557238784, 28845265215178461184, 7385172273, 6724296812191284199424, 135292185779177570304, 4463226024432095985664, 16218399438425978880, 23682978779589013504, 86703069196007260553216]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x0391d2021f89dc339f60fff84546ea23e337750f, 0x0f2d719407fdbeff09d87557abb7232601fd9f29, 0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x4fd4687ec38220f805b6363c3c1e52d0df3b5023, 0x5aee1e99fe86960377de9f88689616916d5dcabe, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x808507121b80c02388fad14726482e061b8da827, 0x959216bb492b2efa72b15b7aacea5b5c984c3cca, 0x9f9d900462492d4c21e9523ca95a7cd86142f298, 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48, 0xa718042e5622099e5f0ace4e7122058ab39e1bbe, 0xb5e3de837f869b0248825e0175da73d4e8c3db6b, 0xba100000625a3754423978a60c9317c58a424e3d, 0xbe9895146f7af43049ca1c1ae358b0541ea49704, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xfd0205066521550d7d7ab19da8f72bb004b4c341]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-04-28-eth.report.txt b/FeeSweep/out/2023-04-28-eth.report.txt new file mode 100644 index 000000000..b9a210181 --- /dev/null +++ b/FeeSweep/out/2023-04-28-eth.report.txt @@ -0,0 +1,19 @@ +Sweep 1355.1414 of BOND(0x0391d2021f89dc339f60fff84546ea23e337750f) worth $6059.920297942301 +Sweep 9512.8822 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $8064.9735513696005 +Sweep 123.7552 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $9277.182727322714 +Sweep 284.5761 of 50wstETH-50bb-euler-USD(0x4fd4687ec38220f805b6363c3c1e52d0df3b5023) worth $18300.475276063284 +Sweep 23.0676 of wstETH-rETH-sfrxETH-BPT(0x5aee1e99fe86960377de9f88689616916d5dcabe) worth $44150.86192127512 +Sweep 1111.1533 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $11565.416611362443 +Sweep 61.6897 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $130130.94049688222 +Sweep 32316.1794 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $16292.179399269879 +Sweep 88.7179 of 50wstETH-50stk-APE(0x959216bb492b2efa72b15b7aacea5b5c984c3cca) worth $8332.46168672099 +Sweep 28.8482 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $8718.95555139211 +Sweep 7385.9109 of USDC(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48) worth $7382.784500000001 +Sweep 6724.9693 of 50TEMPLE-50bb-euler-USD(0xa718042e5622099e5f0ace4e7122058ab39e1bbe) worth $6791.032365069665 +Sweep 135.3057 of 50rETH-50bb-euler-USD(0xb5e3de837f869b0248825e0175da73d4e8c3db6b) worth $8552.053506437374 +Sweep 4463.6724 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $27521.150176967953 +Sweep 16.2200 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $31377.591960724636 +Sweep 23.6853 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $43838.92 +Sweep 86711.7404 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $8168.175213212346 + +>>>Total USD Value of sweeps at time of input json: $394525.07524201256 \ No newline at end of file diff --git a/FeeSweep/out/2023-04-28-matic.json b/FeeSweep/out/2023-04-28-matic.json new file mode 100644 index 000000000..d77533150 --- /dev/null +++ b/FeeSweep/out/2023-04-28-matic.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-04-28-matic.report.txt b/FeeSweep/out/2023-04-28-matic.report.txt new file mode 100644 index 000000000..3063e743b --- /dev/null +++ b/FeeSweep/out/2023-04-28-matic.report.txt @@ -0,0 +1,2 @@ + +>>>Total USD Value of sweeps at time of input json: $0 \ No newline at end of file diff --git a/FeeSweep/out/2023-05-11-arb.json b/FeeSweep/out/2023-05-11-arb.json new file mode 100644 index 000000000..82f04af10 --- /dev/null +++ b/FeeSweep/out/2023-05-11-arb.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[342577201160926855168, 176001578231753146368, 562657850251892621312, 11548233185949959323648, 4568387374117675520, 2219240913844889190400, 723068217256830173184, 36976275729882038272, 269015409946073759744, 2719471704346368512, 862852066376269299712, 677730563092560609280, 3619544244571828387840, 2513224964085130752, 2208290263112295424, 140309837352783904768, 511114819929720094720, 99013969525212234907648, 53874022562119557120, 2959302240968437137408, 1688783663543582720000, 25518951257328106602496, 61981625255258521600, 12650094595319052288, 1538264318, 930646759]", + "recipient": "0x0a7C92Fc003908327BB2726D62D080d9276ab24d", + "tokens": "[0x0052688295413b32626d226a205b95cdb337de86, 0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8, 0x077794c30afeccdf5ad2abc0588e8cee7197b71a, 0x32df62dc3aed2cd6224193052ce665dc18165841, 0x354a6da3fcde098f8389cad84b0182725c6c91de, 0x3efd3e18504dc213188ed2b694f886a305a6e5ed, 0x3f56e0c36d275367b8c502090edf38289b3dea0d, 0x4e352cf164e64adcbad318c3a1e222e9eba4ce42, 0x539bde0d7dbd336b79148aa742883198bbf60342, 0x5979d7b546e38e414f7e9822514be443a4800529, 0x64343594ab9b56e99087bfa6f2335db24c2d1f17, 0x65c936f008bc34fe819bce9fa5afd9dc2d49977f, 0x6694340fc020c5e6b96567843da2df01b2ce1eb6, 0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55, 0x82af49447d8a07e3bd95bd0d56f35241523fbab1, 0x965772e0e9c84b6f359c8597c891108dcf1c5b1a, 0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d, 0xc74fe4c715510ec2f8c61d70d397b32043f55abe, 0xc764b55852f8849ae69923e45ce077a576bf9a8d, 0xd449efa0a587f2cb6be3ae577bc167a774525810, 0xda10009cbd5d07dd0cecc66161fc93d7c9000da1, 0xdb298285fe4c5410b05390ca80e8fbe9de1f259b, 0xf97f4df75117a78c1a5a0dbb814af92458539fb4, 0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a, 0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9, 0xff970a61a04b1ca14834a43f5de4533ebddb5cc8]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-05-11-arb.report.txt b/FeeSweep/out/2023-05-11-arb.report.txt new file mode 100644 index 000000000..0e3a19a7e --- /dev/null +++ b/FeeSweep/out/2023-05-11-arb.report.txt @@ -0,0 +1,30 @@ +This was a test of the mimic vault on arbi + +Sweep 685.1544 of 20ARB-80USDC(0x0052688295413b32626d226a205b95cdb337de86) worth $799.1962588794969 +Sweep 352.0032 of BAL(0x040d1edc9569d4bab2d15287dc5a4f10f56a56b8) worth $1925.4371342250972 +Sweep 1125.3157 of bb-rf-USD-BPT(0x077794c30afeccdf5ad2abc0588e8cee7197b71a) worth $1126.644429601359 +Sweep 23096.4664 of RDNT-WETH(0x32df62dc3aed2cd6224193052ce665dc18165841) worth $32568.871946301162 +Sweep 9.1368 of COMP(0x354a6da3fcde098f8389cad84b0182725c6c91de) worth $306.9456156743181 +Sweep 4438.4818 of PEG_80-WETH_20(0x3efd3e18504dc213188ed2b694f886a305a6e5ed) worth $5082.066518884715 +Sweep 1446.1364 of MAI(0x3f56e0c36d275367b8c502090edf38289b3dea0d) worth $1442.9287580313721 +Sweep 73.9526 of MCB(0x4e352cf164e64adcbad318c3a1e222e9eba4ce42) worth $930.5967944431133 +Sweep 538.0308 of MAGIC(0x539bde0d7dbd336b79148aa742883198bbf60342) worth $435.2511214043044 +Sweep 5.4389 of wstETH(0x5979d7b546e38e414f7e9822514be443a4800529) worth $10096.193636252226 +Sweep 1725.7041 of VST(0x64343594ab9b56e99087bfa6f2335db24c2d1f17) worth $1722.201425031972 +Sweep 1355.4611 of Y2K(0x65c936f008bc34fe819bce9fa5afd9dc2d49977f) worth $1903.1223959944382 +Sweep 7239.0885 of STG(0x6694340fc020c5e6b96567843da2df01b2ce1eb6) worth $4446.720847340832 +Sweep 5.0264 of DPX(0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55) worth $654.3102077602613 +Sweep 4.4166 of WETH(0x82af49447d8a07e3bd95bd0d56f35241523fbab1) worth $7176.24 +Sweep 280.6197 of PICKLE(0x965772e0e9c84b6f359c8597c891108dcf1c5b1a) worth $339.2255579511929 +Sweep 1022.2296 of BICO(0xa68ec98d7ca870cf1dd0b00ebbb7c4bf60a8e74d) worth $309.4294695921005 +Sweep 198027.9391 of MYC(0xc74fe4c715510ec2f8c61d70d397b32043f55abe) worth $2316.296504504752 +Sweep 107.7480 of 20WETH-80ARB(0xc764b55852f8849ae69923e45ce077a576bf9a8d) worth $422.9015159861169 +Sweep 5918.6045 of BPT-OG(0xd449efa0a587f2cb6be3ae577bc167a774525810) worth $2469.828021172204 +Sweep 3377.5673 of DAI(0xda10009cbd5d07dd0cecc66161fc93d7c9000da1) worth $3377 +Sweep 51037.9025 of FOREX(0xdb298285fe4c5410b05390ca80e8fbe9de1f259b) worth $521.8992581414147 +Sweep 123.9633 of LINK(0xf97f4df75117a78c1a5a0dbb814af92458539fb4) worth $781.6562394437096 +Sweep 25.3002 of GMX(0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a) worth $1478.275532487659 +Sweep 3076.5286 of USDT(0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9) worth $3077.49186 +Sweep 1861.2935 of USDC(0xff970a61a04b1ca14834a43f5de4533ebddb5cc8) worth $1860.0695 + +>>>Total USD Value of sweeps at time of input json: $87570.80054910379 \ No newline at end of file diff --git a/FeeSweep/out/2023-05-12-arb.json b/FeeSweep/out/2023-05-12-arb.json new file mode 100644 index 000000000..16b8dd2c5 --- /dev/null +++ b/FeeSweep/out/2023-05-12-arb.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[12676178355049044377600]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x32df62dc3aed2cd6224193052ce665dc18165841]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-05-12-arb.report.txt b/FeeSweep/out/2023-05-12-arb.report.txt new file mode 100644 index 000000000..55f13ced4 --- /dev/null +++ b/FeeSweep/out/2023-05-12-arb.report.txt @@ -0,0 +1,3 @@ +Sweep 12677.4461 of RDNT-WETH(0x32df62dc3aed2cd6224193052ce665dc18165841) worth $17778.041400803937 + +>>>Total USD Value of sweeps at time of input json: $17778.041400803937 \ No newline at end of file diff --git a/FeeSweep/out/2023-05-12-cowswap.md b/FeeSweep/out/2023-05-12-cowswap.md new file mode 100644 index 000000000..55ec92570 --- /dev/null +++ b/FeeSweep/out/2023-05-12-cowswap.md @@ -0,0 +1,5 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:---------|:-------------------------------------------|------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | rETH | 0xae78736Cd615f374D3085123A210448E74Fc6393 | 0.635088 | ['0xe2513a6592b139a84c58939b97126d12ac10285ab0252c5cbc7220064411671f7c68c42de679ffb0f16216154c996c354cf1161b645ece50'] | +| 1 | DAI | 0x6B175474E89094C44Da98b954EedeAC495271d0F | 5020.42 | ['0x4846380b3a53e9ef9dd03f4cc4535fa4f9983bd206d6497109c6f5bbce44b0cf7c68c42de679ffb0f16216154c996c354cf1161b645ece52'] | +| 2 | wstETH | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 | 1.30206 | ['0x788d184a44354bb3512bef2923835a379681b90355a6459ceac5a116de35c0497c68c42de679ffb0f16216154c996c354cf1161b645ece53'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-05-12-eth.json b/FeeSweep/out/2023-05-12-eth.json new file mode 100644 index 000000000..3996f6377 --- /dev/null +++ b/FeeSweep/out/2023-05-12-eth.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[146345688963408150528, 284547671821729464320, 27121883556310700032, 52800915429544930836480, 22576139725439936495616, 1302371082909, 12176371714551464329216, 62544979436791889920, 15881263634650054524928, 6377373650750374150144, 63512002827180818432, 6724296812191284199424, 135292185779177570304, 2263952242745930940416, 23647670920046837760, 24002552396922802176]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x4fd4687ec38220f805b6363c3c1e52d0df3b5023, 0x5aee1e99fe86960377de9f88689616916d5dcabe, 0x6123b0049f904d730db3c36a31167d9d4121fa6b, 0x639883476960a23b38579acfd7d71561a0f408cf, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x67f117350eab45983374f4f83d275d8a5d62b1bf, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x808507121b80c02388fad14726482e061b8da827, 0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0, 0x959216bb492b2efa72b15b7aacea5b5c984c3cca, 0xa718042e5622099e5f0ace4e7122058ab39e1bbe, 0xb5e3de837f869b0248825e0175da73d4e8c3db6b, 0xba100000625a3754423978a60c9317c58a424e3d, 0xbe9895146f7af43049ca1c1ae358b0541ea49704, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-05-12-eth.report.txt b/FeeSweep/out/2023-05-12-eth.report.txt new file mode 100644 index 000000000..f2f361aa1 --- /dev/null +++ b/FeeSweep/out/2023-05-12-eth.report.txt @@ -0,0 +1,18 @@ +Sweep 146.3603 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $10050.028543934091 +Sweep 284.5761 of 50wstETH-50bb-euler-USD(0x4fd4687ec38220f805b6363c3c1e52d0df3b5023) worth $18105.21962528025 +Sweep 27.1246 of wstETH-rETH-sfrxETH-BPT(0x5aee1e99fe86960377de9f88689616916d5dcabe) worth $48010.7032889091 +Sweep 52806.1960 of RBN(0x6123b0049f904d730db3c36a31167d9d4121fa6b) worth $7952.474032745384 +Sweep 22578.3976 of 50STG-50bbaUSD(0x639883476960a23b38579acfd7d71561a0f408cf) worth $17717.00674390672 +Sweep 1302.5013 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $13689.287649580283 +Sweep 12177.5895 of OG(0x67f117350eab45983374f4f83d275d8a5d62b1bf) worth $5036.373839844042 +Sweep 62.5512 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $122825.69033062787 +Sweep 15882.8519 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $5793.864173994776 +Sweep 6378.0115 of 50TEMPLE-50DAI(0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0) worth $6444.912974100881 +Sweep 63.5184 of 50wstETH-50stk-APE(0x959216bb492b2efa72b15b7aacea5b5c984c3cca) worth $5147.8513376756655 +Sweep 6724.9693 of 50TEMPLE-50bb-euler-USD(0xa718042e5622099e5f0ace4e7122058ab39e1bbe) worth $6790.51638560785 +Sweep 135.3057 of 50rETH-50bb-euler-USD(0xb5e3de837f869b0248825e0175da73d4e8c3db6b) worth $8478.737335041129 +Sweep 2264.1787 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $12187.650736877848 +Sweep 23.6500 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $41936.865976454996 +Sweep 24.0050 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $42316.32 + +>>>Total USD Value of sweeps at time of input json: $372483.5029745809 \ No newline at end of file diff --git a/FeeSweep/out/2023-05-12-matic.json b/FeeSweep/out/2023-05-12-matic.json new file mode 100644 index 000000000..874b456af --- /dev/null +++ b/FeeSweep/out/2023-05-12-matic.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[16031870548501610889216, 3423895905744005632]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x216690738aac4aa0c4770253ca26a28f0115c595, 0x65fe9314be50890fb01457be076fafd05ff32b9a]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-05-12-matic.report.txt b/FeeSweep/out/2023-05-12-matic.report.txt new file mode 100644 index 000000000..dd8c0c10d --- /dev/null +++ b/FeeSweep/out/2023-05-12-matic.report.txt @@ -0,0 +1,4 @@ +Sweep 16033.4739 of stMATIC-bb-a-WMATIC-BPT(0x216690738aac4aa0c4770253ca26a28f0115c595) worth $13589.4691801525 +Sweep 3.4242 of B-stETH-BPT(0x65fe9314be50890fb01457be076fafd05ff32b9a) worth $5242.385357444948 + +>>>Total USD Value of sweeps at time of input json: $18831.85453759745 \ No newline at end of file diff --git a/FeeSweep/out/2023-06-09-cowswap.md b/FeeSweep/out/2023-06-09-cowswap.md new file mode 100644 index 000000000..43f385992 --- /dev/null +++ b/FeeSweep/out/2023-06-09-cowswap.md @@ -0,0 +1,3 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:-------------|:-------------------------------------------|---------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | 50USH-50WETH | 0xD278166DAbaf26707362f7CfDd204b277FD2a460 | 228.86 | ['0x0d20a6e8ea482a06572d936cd7533548ffcb2c0ece07ec204161197517ed72bc7c68c42de679ffb0f16216154c996c354cf1161b6483aa05'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-06-09-eth.json b/FeeSweep/out/2023-06-09-eth.json new file mode 100644 index 000000000..9fc609d91 --- /dev/null +++ b/FeeSweep/out/2023-06-09-eth.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[5015302438378005504, 11683080031411340574720, 139683037305230409728, 18726773091542773760, 14674320116751372648448, 589190901091, 996303392840743911424, 25573893334078164992, 21927064024839459176448, 2297996880989740859392, 3561355939052792832, 2617480897821290790912, 4540700061948253306880, 15342532738422829056, 23089632999740051456, 8579423204303762882560]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x02d928e68d8f10c0358566152677db51e1e2dc8c, 0x0f2d719407fdbeff09d87557abb7232601fd9f29, 0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x5aee1e99fe86960377de9f88689616916d5dcabe, 0x639883476960a23b38579acfd7d71561a0f408cf, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x68e3266c9c8bbd44ad9dca5afbfe629022aee9fe, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x808507121b80c02388fad14726482e061b8da827, 0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321, 0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593, 0xba100000625a3754423978a60c9317c58a424e3d, 0xba485b556399123261a5f9c95d413b4f93107407, 0xbe9895146f7af43049ca1c1ae358b0541ea49704, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xfebb0bbf162e64fb9d0dfe186e517d84c395f016]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-06-09-eth.report.txt b/FeeSweep/out/2023-06-09-eth.report.txt new file mode 100644 index 000000000..d49fb2fd3 --- /dev/null +++ b/FeeSweep/out/2023-06-09-eth.report.txt @@ -0,0 +1,18 @@ +Sweep 5.0158 of swETH-bb-a-WETH-BPT(0x02d928e68d8f10c0358566152677db51e1e2dc8c) worth $9297.820404526201 +Sweep 11684.2485 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $7930.351330923858 +Sweep 139.6970 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $9252.243322971248 +Sweep 18.7286 of wstETH-rETH-sfrxETH-BPT(0x5aee1e99fe86960377de9f88689616916d5dcabe) worth $33520.4840165895 +Sweep 14675.7877 of 50STG-50bbaUSD(0x639883476960a23b38579acfd7d71561a0f408cf) worth $11622.71278906473 +Sweep 589.2498 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $6253.398833178184 +Sweep 996.4030 of B-wjAura-wETH(0x68e3266c9c8bbd44ad9dca5afbfe629022aee9fe) worth $5650.704965925786 +Sweep 25.5765 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $51972.84792433553 +Sweep 21929.2570 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $12890.825283353164 +Sweep 2298.2267 of VITA(0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321) worth $5368.8891423055975 +Sweep 3.5617 of rETH(0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593) worth $5796.100852003723 +Sweep 2617.7427 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $13033.927170151841 +Sweep 4541.1542 of graviAURA(0xba485b556399123261a5f9c95d413b4f93107407) worth $8862.312030299267 +Sweep 15.3441 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $28706.21905252253 +Sweep 23.0919 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $42425.11 +Sweep 8580.2812 of bb-a-USD(0xfebb0bbf162e64fb9d0dfe186e517d84c395f016) worth $8587.181997471136 + +>>>Total USD Value of sweeps at time of input json: $261171.12911562232 \ No newline at end of file diff --git a/FeeSweep/out/2023-06-09-matic.json b/FeeSweep/out/2023-06-09-matic.json new file mode 100644 index 000000000..a10e7d59d --- /dev/null +++ b/FeeSweep/out/2023-06-09-matic.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[22236229408950218391552, 7706176368076305465344]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x216690738aac4aa0c4770253ca26a28f0115c595, 0xe78b25c06db117fdf8f98583cdaaa6c92b79e917]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-06-09-matic.report.txt b/FeeSweep/out/2023-06-09-matic.report.txt new file mode 100644 index 000000000..70ee19e7b --- /dev/null +++ b/FeeSweep/out/2023-06-09-matic.report.txt @@ -0,0 +1,4 @@ +Sweep 22238.4533 of stMATIC-bb-a-WMATIC-BPT(0x216690738aac4aa0c4770253ca26a28f0115c595) worth $17490.842306419803 +Sweep 7706.9471 of MaticX-bb-a-WMATIC-BPT(0xe78b25c06db117fdf8f98583cdaaa6c92b79e917) worth $6065.775266115488 + +>>>Total USD Value of sweeps at time of input json: $23556.61757253529 \ No newline at end of file diff --git a/FeeSweep/out/2023-06-23-cowswap.md b/FeeSweep/out/2023-06-23-cowswap.md new file mode 100644 index 000000000..5d27def1f --- /dev/null +++ b/FeeSweep/out/2023-06-23-cowswap.md @@ -0,0 +1,4 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:--------------------|:-------------------------------------------|-----------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | bb-a-USD | 0xfeBb0bbf162E64fb9D0dfe186E517d84C395f016 | 7223.44 | ['0x7e11a9563cc0ad88401d99b58e60b1e6d6ca7438969b1503edd6a08f8410f35a7c68c42de679ffb0f16216154c996c354cf1161b64962c33'] | +| 1 | swETH-bb-a-WETH-BPT | 0x02D928E68D8F10C0358566152677Db51E1e2Dc8C | 2.45849 | ['0x9264dd021e3ca0f9ab33e4d3d074c23752f8bc4fabb3344122e2861dd3306e087c68c42de679ffb0f16216154c996c354cf1161b64962c37'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-06-23-eth.report.txt b/FeeSweep/out/2023-06-23-eth.report.txt new file mode 100644 index 000000000..770dd8823 --- /dev/null +++ b/FeeSweep/out/2023-06-23-eth.report.txt @@ -0,0 +1,7 @@ +Sweep 112.4949 of INV(0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68) worth $4179.105006955615 +Sweep 41.0546 of GNO(0x6810e776880c02933d47db1b9fc05908e5386b96) worth $4727.3 +Sweep 4575.1704 of bb-g-USD(0x99c88ad7dc566616548adde8ed3effa730eb6c34) worth $4590.217476433661 +Sweep 15.2722 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $4257.306317378487 +Sweep 98495.9238 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $4215.889842179294 + +>>>Total USD Value of sweeps at time of input json: $21969.818642947055 \ No newline at end of file diff --git a/FeeSweep/out/2023-07-07-cowswap-1strun.md b/FeeSweep/out/2023-07-07-cowswap-1strun.md new file mode 100644 index 000000000..fe9a324a0 --- /dev/null +++ b/FeeSweep/out/2023-07-07-cowswap-1strun.md @@ -0,0 +1,11 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:---------------|:-------------------------------------------|------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | auraBAL | 0x616e8BfA43F920657B3497DBf40D6b1A02D4608d | 387.053 | ['0x5f4cd35f38307fe756649c43069d8bf6e327a763f79a5538f74559a104e093767c68c42de679ffb0f16216154c996c354cf1161b64a859c5'] | +| 1 | 50STG-50bbaUSD | 0x639883476960a23b38579acfd7D71561A0f408Cf | 33232 | ['0xd420f4507572bc036936f2fe4655b1bd68c47388b4e11a53be4b6301e5ac04b47c68c42de679ffb0f16216154c996c354cf1161b64a859c9'] | +| 2 | OHM | 0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5 | 511.158 | ['0x029ba17eb198a248cf36485fc9131755d3f65afb6bb66cf350eb42d551a8f65d7c68c42de679ffb0f16216154c996c354cf1161b64a859cd'] | +| 3 | wstETH | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 | 16.7165 | ['0x1a3da35d276a671beb12cf7e9c5ec2c15c31e54734452fb6e2decaee66c9927e7c68c42de679ffb0f16216154c996c354cf1161b64a859cf'] | +| 4 | PENDLE | 0x808507121B80c02388fAd14726482e061B8da827 | 21813.2 | ['0x77118f1092f3c7e5454d5091b5d511138506358bc8961d7d968cab490cc58f8e7c68c42de679ffb0f16216154c996c354cf1161b64a859d1'] | +| 5 | rETH | 0x9559Aaa82d9649C7A7b220E7c461d2E74c9a3593 | 3.93566 | ['0x7d4748b2c713f6b8428649bd4b3c12759dfc12f9e15ebc4d19e3cf71a7367de87c68c42de679ffb0f16216154c996c354cf1161b64a859d2'] | +| 6 | graviAURA | 0xBA485b556399123261a5F9c95d413B4f93107407 | 3178.77 | ['0x47021b430a4b2aff40ae0fe2d6d91ab0bdaf076c08795584a88298732ad6fa187c68c42de679ffb0f16216154c996c354cf1161b64a859d4'] | +| 7 | cbETH | 0xBe9895146f7AF43049ca1c1AE358B0541Ea49704 | 7.2237 | ['0xcdce9aba64ed44864b0f3a58524fd459189e81a48e15959ccaa2d10d2a1575707c68c42de679ffb0f16216154c996c354cf1161b64a859d6'] | +| 8 | WETH | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | 16.5648 | ['0x9501859fe4c08d1a89161d6a6de8e4b0d8dfd9fe33a9e8e6286fe74fd3e5e1047c68c42de679ffb0f16216154c996c354cf1161b64a859d8'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-07-07-cowswap.md b/FeeSweep/out/2023-07-07-cowswap.md new file mode 100644 index 000000000..ac974ca4f --- /dev/null +++ b/FeeSweep/out/2023-07-07-cowswap.md @@ -0,0 +1,3 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:---------|:-------------------------------------------|---------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | BADGER | 0x3472A5A71965499acd81997a54BBA8D852C6E53d | 2081.51 | ['0x9637ffcfda3d645d84dbabb6c7c5512f0d5b096a1846005175a8b223ac52a44f7c68c42de679ffb0f16216154c996c354cf1161b64a88576'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-07-07-eth.json b/FeeSweep/out/2023-07-07-eth.json new file mode 100644 index 000000000..22b8661c2 --- /dev/null +++ b/FeeSweep/out/2023-07-07-eth.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[387014310392186077184, 33228661108627755499520, 511107727661, 16714860248668942336, 21811055076552422195200, 3935270725503119360, 5331299892906185195520, 3178459560738525544448, 7222983987560867840, 16563147007247077376, 253295042871853940736]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x616e8bfa43f920657b3497dbf40d6b1a02d4608d, 0x639883476960a23b38579acfd7d71561a0f408cf, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x808507121b80c02388fad14726482e061b8da827, 0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593, 0xba100000625a3754423978a60c9317c58a424e3d, 0xba485b556399123261a5f9c95d413b4f93107407, 0xbe9895146f7af43049ca1c1ae358b0541ea49704, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-07-07-eth.report-1strun.txt b/FeeSweep/out/2023-07-07-eth.report-1strun.txt new file mode 100644 index 000000000..8f50a11bc --- /dev/null +++ b/FeeSweep/out/2023-07-07-eth.report-1strun.txt @@ -0,0 +1,13 @@ +Sweep 387.0530 of auraBAL(0x616e8bfa43f920657b3497dbf40d6b1a02d4608d) worth $5056.280756162465 +Sweep 33231.9843 of 50STG-50bbaUSD(0x639883476960a23b38579acfd7d71561a0f408cf) worth $25776.587234605333 +Sweep 511.1588 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $5418.046961409022 +Sweep 16.7165 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $33638.182103320316 +Sweep 21813.2364 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $19936.59542437573 +Sweep 3.9357 of rETH(0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593) worth $5862.24735680123 +Sweep 5331.8331 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $24758.051634537474 +Sweep 3178.7774 of graviAURA(0xba485b556399123261a5f9c95d413b4f93107407) worth $5754.100969789282 +Sweep 7.2237 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $13546.56037487488 +Sweep 16.5648 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $29754.4 +Sweep 253.3204 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $8042.333639786349 + +>>>Total USD Value of sweeps at time of input json: $177543.38645566208 \ No newline at end of file diff --git a/FeeSweep/out/2023-07-07-eth.report.txt b/FeeSweep/out/2023-07-07-eth.report.txt new file mode 100644 index 000000000..8f50a11bc --- /dev/null +++ b/FeeSweep/out/2023-07-07-eth.report.txt @@ -0,0 +1,13 @@ +Sweep 387.0530 of auraBAL(0x616e8bfa43f920657b3497dbf40d6b1a02d4608d) worth $5056.280756162465 +Sweep 33231.9843 of 50STG-50bbaUSD(0x639883476960a23b38579acfd7d71561a0f408cf) worth $25776.587234605333 +Sweep 511.1588 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $5418.046961409022 +Sweep 16.7165 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $33638.182103320316 +Sweep 21813.2364 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $19936.59542437573 +Sweep 3.9357 of rETH(0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593) worth $5862.24735680123 +Sweep 5331.8331 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $24758.051634537474 +Sweep 3178.7774 of graviAURA(0xba485b556399123261a5f9c95d413b4f93107407) worth $5754.100969789282 +Sweep 7.2237 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $13546.56037487488 +Sweep 16.5648 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $29754.4 +Sweep 253.3204 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $8042.333639786349 + +>>>Total USD Value of sweeps at time of input json: $177543.38645566208 \ No newline at end of file diff --git a/FeeSweep/out/2023-07-21-cowswap.md b/FeeSweep/out/2023-07-21-cowswap.md new file mode 100644 index 000000000..276be55b7 --- /dev/null +++ b/FeeSweep/out/2023-07-21-cowswap.md @@ -0,0 +1,11 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:----------------|:-------------------------------------------|------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | SYN | 0x0f2D719407FdBeFF09D87557AbB7232601FD9F29 | 10376.1 | ['0x84c3fc19aa8928c844c5f458f975f9c1c8866e65230c21f2aee0765fc9153f317c68c42de679ffb0f16216154c996c354cf1161b64bad6b9'] | +| 1 | 50rETH-50BADGER | 0x1ee442b5326009Bb18F2F472d3e0061513d1A0fF | 127.343 | ['0x8c33d8a1aafc20c94c28f143b2d6d867d893180b581ca008211c08b4a1d606967c68c42de679ffb0f16216154c996c354cf1161b64bad6bd'] | +| 2 | RBN | 0x6123B0049F904d730dB3C36a31167D9d4121fA6B | 27295.8 | ['0x7a01a94d38523b80e67607182ead3a99b8e5c7f188ff409683e024eb053ccfee7c68c42de679ffb0f16216154c996c354cf1161b64bad6bf'] | +| 3 | 50STG-50bbaUSD | 0x639883476960a23b38579acfd7D71561A0f408Cf | 14599.2 | ['0x118cf24facf6a40d497ed1cc5f493f79fb9d71090196b73daff95c01d0e200f07c68c42de679ffb0f16216154c996c354cf1161b64bad6c2'] | +| 4 | OHM | 0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5 | 488.408 | ['0x501e5e1b2f893975c87247b1baf98fa9de7f4ddf41041c78f0286c358943b0da7c68c42de679ffb0f16216154c996c354cf1161b64bad6c4'] | +| 5 | wstETH | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 | 18.1032 | ['0x04be207f54c2ebe8e40c3530037bcbb9f9bfb8039702b90301942e840a0d8f147c68c42de679ffb0f16216154c996c354cf1161b64bad6c6'] | +| 6 | SNX | 0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F | 1672.56 | ['0x4eade90a637f602aedc7bd4e1bf95cad8940cf1c5a948b6f351c7d397994c7a37c68c42de679ffb0f16216154c996c354cf1161b64bad6c8'] | +| 7 | WETH | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | 17.9813 | ['0xfe8f1fe37f556fb63000e3491b5eae454e0590f8016e47542078363c602fcc1a7c68c42de679ffb0f16216154c996c354cf1161b64bad6cb'] | +| 8 | ankrETH/wstETH | 0xdfE6e7e18f6Cc65FA13C8D8966013d4FdA74b6ba | 5.19329 | ['0x538504ec2b1386fbd2d6246ef31d92ca3ca4047e2189e5ab0847cf6d67a7b4fb7c68c42de679ffb0f16216154c996c354cf1161b64bad6ce'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-07-21-eth.report.txt b/FeeSweep/out/2023-07-21-eth.report.txt new file mode 100644 index 000000000..0165c003b --- /dev/null +++ b/FeeSweep/out/2023-07-21-eth.report.txt @@ -0,0 +1,12 @@ +Sweep 10376.1482 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $7398.084404085655 +Sweep 127.3428 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $8358.036292678293 +Sweep 27295.8583 of RBN(0x6123b0049f904d730db3c36a31167d9d4121fa6b) worth $5720.913843322289 +Sweep 14599.1693 of 50STG-50bbaUSD(0x639883476960a23b38579acfd7d71561a0f408cf) worth $11653.386494985689 +Sweep 488.4087 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $5202.041439042928 +Sweep 18.1033 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $38484.974243112105 +Sweep 3741.4226 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $17459.714530766047 +Sweep 1672.5666 of SNX(0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f) worth $5034.628584886644 +Sweep 17.9813 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $32112.83 +Sweep 5.1933 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $9487.044700011988 + +>>>Total USD Value of sweeps at time of input json: $140911.6545328916 \ No newline at end of file diff --git a/FeeSweep/out/2023-08-04-cowswap.md b/FeeSweep/out/2023-08-04-cowswap.md new file mode 100644 index 000000000..0b1beea28 --- /dev/null +++ b/FeeSweep/out/2023-08-04-cowswap.md @@ -0,0 +1,15 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:------------------------|:-------------------------------------------|------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | 50WETH-50-3pool | 0x08775ccb6674d6bDCeB0797C364C2653ED84F384 | 130.003 | ['0xeb7c170acd5568d5de362f9debae69d23444006700bcaf4075f4f9953b44e8277c68c42de679ffb0f16216154c996c354cf1161b64cd52cb'] | +| 1 | 50rETH-50BADGER | 0x1ee442b5326009Bb18F2F472d3e0061513d1A0fF | 148.347 | ['0x5b92c124728a1f2cc108f2a7eae563fcad5a257fa14b1752e8277c2b14f2b2ae7c68c42de679ffb0f16216154c996c354cf1161b64cd52ce'] | +| 2 | wstETH-rETH-sfrxETH-BPT | 0x42ED016F826165C2e5976fe5bC3df540C5aD0Af7 | 5.95775 | ['0xccb15f9da8096cbd4e24ef29fa49cbd3990968b76b68731026fabe23f2ad3c207c68c42de679ffb0f16216154c996c354cf1161b64cd52d1'] | +| 3 | 50STG-50bbaUSD | 0x639883476960a23b38579acfd7D71561A0f408Cf | 10805.5 | ['0xf1d5b052d135665922698040c643a5cd6c943d021d1f53b62d45707fbb174ed47c68c42de679ffb0f16216154c996c354cf1161b64cd52d3'] | +| 4 | wstETH | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 | 18.9699 | ['0x0049e74c0a33152e62d925369c0efa10e6a4ea4035793de5d3b5097f193986017c68c42de679ffb0f16216154c996c354cf1161b64cd52d7'] | +| 5 | 50TEMPLE-50DAI | 0x8Bd4A1E74A27182D23B98c10Fd21D4FbB0eD4BA0 | 5504.03 | ['0x2ea5af28a7a7a894ee5bd2be662c2fb03fee6f834a6bc31b20bb246f853d1f307c68c42de679ffb0f16216154c996c354cf1161b64cd52da'] | +| 6 | rETH | 0x9559Aaa82d9649C7A7b220E7c461d2E74c9a3593 | 5.39995 | ['0x26ab5f4799f5f3c4da8a7cb324ad7f3af7e0ebf62e5fb16066673be34fa278a37c68c42de679ffb0f16216154c996c354cf1161b64cd52dc'] | +| 7 | 50rETH-50RPL | 0x9F9d900462492D4C21e9523ca95A7CD86142F298 | 25.1967 | ['0x0f667a444d013fa207ad993cb082d33b0c22d56c14815328ca36e03ef689c4837c68c42de679ffb0f16216154c996c354cf1161b64cd52de'] | +| 8 | rETH | 0xae78736Cd615f374D3085123A210448E74Fc6393 | 4.15117 | ['0x6bb71db769845b43bef521aabcfc4d7a1272d468aa7adeb15d13e4530e8083eb7c68c42de679ffb0f16216154c996c354cf1161b64cd52e1'] | +| 9 | graviAURA | 0xBA485b556399123261a5F9c95d413B4f93107407 | 5177.38 | ['0x681de947200ec234ad09602983dfb251723bdadd20008f2f5c6909d1b7b79df57c68c42de679ffb0f16216154c996c354cf1161b64cd52e2'] | +| 10 | cbETH | 0xBe9895146f7AF43049ca1c1AE358B0541Ea49704 | 3.76377 | ['0x83722cbe773293b3bf424c770531ca758b37a67684c069e1a3c15a5bd3df234c7c68c42de679ffb0f16216154c996c354cf1161b64cd52e5'] | +| 11 | WETH | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | 17.7286 | ['0x4c0d08bc8100b0f18c101fc4ee17eb7bb1379faf72f58e440aeb2234c3b7dd727c68c42de679ffb0f16216154c996c354cf1161b64cd52e9'] | +| 12 | WNCG | 0xf203Ca1769ca8e9e8FE1DA9D147DB68B6c919817 | 56625.6 | ['0x6848f16a7e40b73b1abac52804aa9a632fb2f99ba9ce5a2afb4124e2badcfb047c68c42de679ffb0f16216154c996c354cf1161b64cd52ec'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-08-04-eth.report.txt b/FeeSweep/out/2023-08-04-eth.report.txt new file mode 100644 index 000000000..8b863e580 --- /dev/null +++ b/FeeSweep/out/2023-08-04-eth.report.txt @@ -0,0 +1,17 @@ +Sweep 130.0030 of 50WETH-50-3pool(0x08775ccb6674d6bdceb0797c364c2653ed84f384) worth $5586.025521084828 +Sweep 148.3475 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $9514.90221818362 +Sweep 5.9578 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $9175.611185375732 +Sweep 10805.4772 of 50STG-50bbaUSD(0x639883476960a23b38579acfd7d71561a0f408cf) worth $8479.493275000896 +Sweep 18.9699 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $37456.50913438841 +Sweep 5504.0343 of 50TEMPLE-50DAI(0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0) worth $5655.966507231493 +Sweep 5.4000 of rETH(0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593) worth $9712.521516331628 +Sweep 25.1967 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $5885.021032119857 +Sweep 4.1512 of rETH(0xae78736cd615f374d3085123a210448e74fc6393) worth $7919.883564085122 +Sweep 5034.9205 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $21400.95216591617 +Sweep 5177.3879 of graviAURA(0xba485b556399123261a5f9c95d413b4f93107407) worth $7122.777444627431 +Sweep 3.7638 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $5744.895753952353 +Sweep 17.7286 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $31188.37 +Sweep 5.0449 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $9235.556034523117 +Sweep 56625.6736 of WNCG(0xf203ca1769ca8e9e8fe1da9d147db68b6c919817) worth $5513.501816087208 + +>>>Total USD Value of sweeps at time of input json: $179591.98716890786 \ No newline at end of file diff --git a/FeeSweep/out/2023-08-18-cowswap.md b/FeeSweep/out/2023-08-18-cowswap.md new file mode 100644 index 000000000..a15ca7d9d --- /dev/null +++ b/FeeSweep/out/2023-08-18-cowswap.md @@ -0,0 +1,17 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:------------------------|:-------------------------------------------|------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | 50rETH-50BADGER | 0x1ee442b5326009Bb18F2F472d3e0061513d1A0fF | 158.52 | ['0x9d1bc5a235c475f1fab0bbd6d2e982c2586c15437e9f7d6bb5bfe4a05a4dbf597c68c42de679ffb0f16216154c996c354cf1161b64dfb18b'] | +| 1 | 50wstETH-50ACX | 0x36Be1E97eA98AB43b4dEBf92742517266F5731a3 | 540.858 | ['0xfa076b05538b669962f93be3fdf1565a9bf16d1e4c9ff257dbf343aecea1f98e7c68c42de679ffb0f16216154c996c354cf1161b64dfb18e'] | +| 2 | wstETH-bb-a-WETH-BPT | 0x41503C9D499ddbd1dCdf818a1b05e9774203Bf46 | 12.802 | ['0x6b0b9f3f673963f967eea63ec6a30cba1fca666075ae75c31167764055096a617c68c42de679ffb0f16216154c996c354cf1161b64dfb191'] | +| 3 | wstETH-rETH-sfrxETH-BPT | 0x42ED016F826165C2e5976fe5bC3df540C5aD0Af7 | 16.2059 | ['0x0661c3239be181d63404a0f04c44cc38e3fd8391d93a63d09806787a221c41f27c68c42de679ffb0f16216154c996c354cf1161b64dfb193'] | +| 4 | B-ETHx/bb-a-WETH | 0x4CbdE5C4B4B53EBE4aF4adB85404725985406163 | 3.33774 | ['0xbd13d585258a27d970976683cc4ee8b68664d255a0097707683fd42898f3eab17c68c42de679ffb0f16216154c996c354cf1161b64dfb196'] | +| 5 | 50STG-50bbaUSD | 0x639883476960a23b38579acfd7D71561A0f408Cf | 12060.6 | ['0x18cbcd6412b6f07de11162a07a59c88b66f50802f055be80a228b1cd27d927497c68c42de679ffb0f16216154c996c354cf1161b64dfb198'] | +| 6 | wstETH | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 | 8.48264 | ['0x567bd7856c40f4abec8c6eaf31a5bd793813ae54825e025f740ca3f03cc13b717c68c42de679ffb0f16216154c996c354cf1161b64dfb19c'] | +| 7 | PENDLE | 0x808507121B80c02388fAd14726482e061B8da827 | 16198.6 | ['0xfca516937ac2156e95f704a47476ecd544fc6a06430df109f9220baa33df9d6a7c68c42de679ffb0f16216154c996c354cf1161b64dfb1a0'] | +| 8 | B-50COMP-50wstETH | 0x87a867f5D240a782d43D90b6B06DEa470F3f8F22 | 48.4196 | ['0x691dd01844cee9d21f76b35bd71058445baba8217c8df968bce2a3ca5a9cd3437c68c42de679ffb0f16216154c996c354cf1161b64dfb1a2'] | +| 9 | swETH-bb-a-WETH-BPT | 0xaE8535c23afeDdA9304B03c68a3563B75fc8f92b | 5.21981 | ['0x181a9786e1aa86c437d8805feabf96edc953ce6c698011075811a0877e51614a7c68c42de679ffb0f16216154c996c354cf1161b64dfb1a5'] | +| 10 | WETH | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | 18.3896 | ['0xf2676bc1b289e087f9fd0168874fc59754773765c4416b014b8cd297f61176607c68c42de679ffb0f16216154c996c354cf1161b64dfb1a8'] | +| 11 | GHO/bb-a-USD | 0xc2B021133D1b0cF07dba696fd5DD89338428225B | 5881.9 | ['0xa447d721d6a078a48760132d42d340b20d6fb0999cf6c0091edf81ddfa51efeb7c68c42de679ffb0f16216154c996c354cf1161b64dfb1aa'] | +| 12 | RPL | 0xD33526068D116cE69F19A9ee46F0bd304F21A51f | 252.996 | ['0x6d5a499b97941b14ba954ecd6eb0131a1d711d66378bd07ba2f13332c471acb47c68c42de679ffb0f16216154c996c354cf1161b64dfb1ad'] | +| 13 | ankrETH/wstETH | 0xdfE6e7e18f6Cc65FA13C8D8966013d4FdA74b6ba | 3.58463 | ['0x836e90854a1a73c8c61c73237759b14dfe7ede283f061ddc2f68fc6ca65cc4297c68c42de679ffb0f16216154c996c354cf1161b64dfb1b0'] | +| 14 | 20WETH-80ALCX | 0xf16aEe6a71aF1A9Bc8F56975A4c2705ca7A782Bc | 207.548 | ['0xa082b132ebe5c1b1360cc76771276d9068d90172d99964eadbf04c9eba7a5a347c68c42de679ffb0f16216154c996c354cf1161b64dfb1b2'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-08-18-eth.report.txt b/FeeSweep/out/2023-08-18-eth.report.txt new file mode 100644 index 000000000..660ec149b --- /dev/null +++ b/FeeSweep/out/2023-08-18-eth.report.txt @@ -0,0 +1,18 @@ +Sweep 158.5203 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $9761.202712767494 +Sweep 540.8584 of 50wstETH-50ACX(0x36be1e97ea98ab43b4debf92742517266f5731a3) worth $5612.896892050031 +Sweep 12.8020 of wstETH-bb-a-WETH-BPT(0x41503c9d499ddbd1dcdf818a1b05e9774203bf46) worth $20298.393555108476 +Sweep 16.2059 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $27092.157953632304 +Sweep 3.3377 of B-ETHx/bb-a-WETH (0x4cbde5c4b4b53ebe4af4adb85404725985406163) worth $5064.668491082248 +Sweep 12060.5866 of 50STG-50bbaUSD(0x639883476960a23b38579acfd7d71561a0f408cf) worth $8921.406885691507 +Sweep 8.4826 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $15320.683209182946 +Sweep 16198.6221 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $8808.588547787564 +Sweep 48.4196 of B-50COMP-50wstETH(0x87a867f5d240a782d43d90b6b06dea470f3f8f22) worth $13628.731424155656 +Sweep 5.2198 of swETH-bb-a-WETH-BPT(0xae8535c23afedda9304b03c68a3563b75fc8f92b) worth $8462.871163005568 +Sweep 5285.0502 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $19482.67382880325 +Sweep 18.3896 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $30338.46 +Sweep 5881.9031 of GHO/bb-a-USD(0xc2b021133d1b0cf07dba696fd5dd89338428225b) worth $5826.6704950747635 +Sweep 252.9961 of RPL(0xd33526068d116ce69f19a9ee46f0bd304f21a51f) worth $6467.340431951238 +Sweep 3.5846 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $5099.793319584929 +Sweep 207.5477 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $5198.288964528895 + +>>>Total USD Value of sweeps at time of input json: $195384.82787440685 \ No newline at end of file diff --git a/FeeSweep/out/2023-08-22-cowswap.md b/FeeSweep/out/2023-08-22-cowswap.md new file mode 100644 index 000000000..e93a63901 --- /dev/null +++ b/FeeSweep/out/2023-08-22-cowswap.md @@ -0,0 +1,53 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:------------------------|:-------------------------------------------|------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | BOND | 0x0391D2021f89DC339F60Fff84546EA23E337750f | 740.309 | ['0xf97082dfc112293f644434d58fe1fc61f5aa9bc1954515d13b5451d40566cfa37c68c42de679ffb0f16216154c996c354cf1161b64e56c35'] | +| 1 | 50WETH-50-3pool | 0x08775ccb6674d6bDCeB0797C364C2653ED84F384 | 33.2982 | ['0x36cec9f97784e6cdfe6559ad368ef655079ccd691f84f2474c97a9165ec5a0a47c68c42de679ffb0f16216154c996c354cf1161b64e56c3a'] | +| 2 | SYN | 0x0f2D719407FdBeFF09D87557AbB7232601FD9F29 | 4553.14 | ['0x54e802e98ad53eda857e349f472b1cfccf4be8fc959f2ab8115a4b6b9a1f5e9f7c68c42de679ffb0f16216154c996c354cf1161b64e56c3e'] | +| 3 | 50rETH-50BADGER | 0x1ee442b5326009Bb18F2F472d3e0061513d1A0fF | 40.8263 | ['0x6bab0a9e9ae8978ad42ff9b73064cbc75c3c2a1dbff264b289f69ce8c7bc3dc37c68c42de679ffb0f16216154c996c354cf1161b64e56c41'] | +| 4 | UNI | 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 | 365.904 | ['0x09597d7b4eefbe3db4aa7366a5f0eb78b9105108663a7aece64919b953358e767c68c42de679ffb0f16216154c996c354cf1161b64e56c45'] | +| 5 | R-DAI-BLP | 0x20a61B948E33879ce7F23e535CC7BAA3BC66c5a9 | 5480.18 | ['0x379ee4ed21a279549492ce5dfa080f9c83e75d30b05bf6aab851b8e8fe7a68f97c68c42de679ffb0f16216154c996c354cf1161b64e56c47'] | +| 6 | 80BETS/20wstETH | 0x26Cc136e9b8FD65466F193a8e5710661Ed9A9827 | 148915 | ['0x2347a90fb0f962aa554924901c578c2e9dec080b2b10d0a23ed46289752dce2d7c68c42de679ffb0f16216154c996c354cf1161b64e56c49'] | +| 7 | AST | 0x27054b13b1B798B345b591a4d22e6562d47eA75a | 16026 | ['0x31c9005d7acfb11eda7d27749d34c90e59e086bc81cc658533753f92a6de19137c68c42de679ffb0f16216154c996c354cf1161b64e56c4b'] | +| 8 | BANK | 0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198 | 269299 | ['0xf79431dcb8ce292c4d73072348dc1412bb136453f76d3629ecaa6668f7db8eb27c68c42de679ffb0f16216154c996c354cf1161b64e56c4d'] | +| 9 | wbETH-wstETH | 0x2E848426AEc6dbF2260535a5bEa048ed94d9FF3D | 2.79046 | ['0xd8bb789517d3e14af5000b132f726ebc73f3b8428b3642e1b048b6cb480aa7b27c68c42de679ffb0f16216154c996c354cf1161b64e56c52'] | +| 10 | SD | 0x30D20208d987713f46DFD34EF128Bb16C404D10f | 2702.43 | ['0xea3d97d636890caccf14d0c473f544b1bc90268eb39df6acfa6eee6f8b2467057c68c42de679ffb0f16216154c996c354cf1161b64e56c56'] | +| 11 | BADGER | 0x3472A5A71965499acd81997a54BBA8D852C6E53d | 1258.05 | ['0x2fbb7acdd583d8f82dffa4c6a72527e2b3b11a3b615049e8c96adcfc8fb5c06e7c68c42de679ffb0f16216154c996c354cf1161b64e56c5a'] | +| 12 | 50R-50wstETH | 0x380aAbE019ed2a9C2d632b51eDDD30fd804d0fAD | 103.369 | ['0xaf495710dd068f44038b2721385f83a98848d771486f4b4462ed095c525ceaa07c68c42de679ffb0f16216154c996c354cf1161b64e56c5d'] | +| 13 | INV | 0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 | 57.9906 | ['0x006108ce60aac2b7faf4863c6aec76ce7c4924c3badc48644668e3d939b9c7367c68c42de679ffb0f16216154c996c354cf1161b64e56c62'] | +| 14 | CVC | 0x41e5560054824eA6B0732E656E3Ad64E20e94E45 | 23101.2 | ['0xacea10cbcbafbfb2ce0a478a3a50458a7a945242646752654eb5fea6dd5154667c68c42de679ffb0f16216154c996c354cf1161b64e56c66'] | +| 15 | wstETH-rETH-sfrxETH-BPT | 0x42ED016F826165C2e5976fe5bC3df540C5aD0Af7 | 5.66372 | ['0x19afefb5d2023224ab40c39e9bb6509093d50313c2e9b9f0d46ef7f588113c697c68c42de679ffb0f16216154c996c354cf1161b64e56c6b'] | +| 16 | 50COIL-50USDC | 0x42FBD9F666AaCC0026ca1B88C94259519e03dd67 | 2095.95 | ['0x2693dd22224e087dd1d00caec030b65fb3389998e7487190e0f96a5b6417e0167c68c42de679ffb0f16216154c996c354cf1161b64e56c70'] | +| 17 | XZAR | 0x48f07301E9E29c3C38a80ae8d9ae771F224f1054 | 33441.6 | ['0x7f4baa6344df95ca4a0af5eeb13a551bb14728254a0dfec2d9e60865a9e341637c68c42de679ffb0f16216154c996c354cf1161b64e56c74'] | +| 18 | LINK | 0x514910771AF9Ca656af840dff83E8264EcF986CA | 341.179 | ['0xdeba5e03bc51868560a755ba1b2f95617435f722581b5c9dab4d89869a1ecebe7c68c42de679ffb0f16216154c996c354cf1161b64e56c7d'] | +| 19 | 50wstETH-50LDO | 0x5f1f4E50ba51D723F12385a8a9606afc3A0555f5 | 79.907 | ['0x8f6baf05343beb1d55c3f2ddd40dce6b23bde29eef6e87d221366d137331fff97c68c42de679ffb0f16216154c996c354cf1161b64e56c85'] | +| 20 | RBN | 0x6123B0049F904d730dB3C36a31167D9d4121fA6B | 9429.19 | ['0x87d68f81fa0805fdeee15b16ae28d6bb547591513726508ce12a64522e2a29607c68c42de679ffb0f16216154c996c354cf1161b64e56c8c'] | +| 21 | auraBAL | 0x616e8BfA43F920657B3497DBf40D6b1A02D4608d | 358.181 | ['0x5d4b61d41d0a56d7e5b9ed88ffcfcc9b93a8a9d878ed7e3358c40f5c8173706f7c68c42de679ffb0f16216154c996c354cf1161b64e56c8f'] | +| 22 | OHM | 0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5 | 282.373 | ['0x0bae6ad1cb62c1b994d69daeeca5a28216bd5b6a963c4091977d3c0f275676237c68c42de679ffb0f16216154c996c354cf1161b64e56c96'] | +| 23 | GNO | 0x6810e776880C02933D47DB1b9fc05908e5386b96 | 28.9325 | ['0xf601b64c94906651feb36a2467cfe453eb7be45d95ccef9c3ca6129608ff87107c68c42de679ffb0f16216154c996c354cf1161b64e56c9a'] | +| 24 | USDC-DAI-USDT | 0x79c58f70905F734641735BC61e45c19dD9Ad60bC | 1970.94 | ['0x0e476ccef8eb391d79e66cc61a8820ff34868414e12690b6d05ccc42a0fe86957c68c42de679ffb0f16216154c996c354cf1161b64e56c9d'] | +| 25 | wstETH | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 | 2.05498 | ['0xc21b428882b576e1ae9e7d2930a3d2b1869031a5860ade386439df94045c0d987c68c42de679ffb0f16216154c996c354cf1161b64e56ca1'] | +| 26 | VITA | 0x81f8f0bb1cB2A06649E51913A151F0E7Ef6FA321 | 3321.56 | ['0x44a0885ae6642701b5f0b17225737683be04ed70d835de93bf5328df9d6e19d97c68c42de679ffb0f16216154c996c354cf1161b64e56ca5'] | +| 27 | DOLA | 0x865377367054516e17014CcdED1e7d814EDC9ce4 | 4653.51 | ['0xba0f6a138ca96987c9434d027c3d255cd1e9ff3c24843ee8e7497ce94db4139e7c68c42de679ffb0f16216154c996c354cf1161b64e56ca8'] | +| 28 | MPH | 0x8888801aF4d980682e47f1A9036e589479e835C5 | 1114.06 | ['0xf22ca1028c05f019a5830b0b740eb6d7f7f2b6d2c0a8834d0e0066469c45886a7c68c42de679ffb0f16216154c996c354cf1161b64e56cae'] | +| 29 | DFX | 0x888888435FDe8e7d4c54cAb67f206e4199454c60 | 31639.2 | ['0x0e94b493bcbb992c8c9f03ed930f8ee3c8618877555283067540bd59bf5693f97c68c42de679ffb0f16216154c996c354cf1161b64e56cb2'] | +| 30 | 50TEMPLE-50DAI | 0x8Bd4A1E74A27182D23B98c10Fd21D4FbB0eD4BA0 | 2281.59 | ['0xae9b74e7f5b69cd4482663d0cc0440bef10bcfdaa8b365fed549beb05053a47a7c68c42de679ffb0f16216154c996c354cf1161b64e56cb8'] | +| 31 | MAI | 0x8D6CeBD76f18E1558D4DB88138e2DeFB3909fAD6 | 2005.24 | ['0x4efc69ae4f04f8535c672fdbdc74b9b545240b90378a9035d61b9d6caec8fb307c68c42de679ffb0f16216154c996c354cf1161b64e56cbb'] | +| 32 | rETH | 0x9559Aaa82d9649C7A7b220E7c461d2E74c9a3593 | 1.92017 | ['0x0c373b3270924757f6d445b44d70272d04620559d1c97d8370ad9e7bbc74009d7c68c42de679ffb0f16216154c996c354cf1161b64e56cbf'] | +| 33 | M2 | 0x965d79F1A1016B574a62986e13Ca8Ab04DfdD15C | 4.27533e+06 | ['0x5856ec7768563a15d94c28446a7e12cf60a2a47ff1f93730e52ca93fcd1f41187c68c42de679ffb0f16216154c996c354cf1161b64e56cc3'] | +| 34 | 50rETH-50RPL | 0x9F9d900462492D4C21e9523ca95A7CD86142F298 | 18.3578 | ['0x0114e4eed6e8760e7a2dd5d2edc6d66b8099d040f72716055d5f28b0c6d772e47c68c42de679ffb0f16216154c996c354cf1161b64e56cc9'] | +| 35 | PAL | 0xAB846Fb6C81370327e784Ae7CbB6d6a6af6Ff4BF | 12885 | ['0x0499ac93b9ef5decf09744d5e9473dcc7cf6554f8c6f4048138a54d052807de37c68c42de679ffb0f16216154c996c354cf1161b64e56ccc'] | +| 36 | O | 0xb53ecF1345caBeE6eA1a65100Ebb153cEbcac40f | 6.75013e+07 | ['0xdf05c75902f86833e99567bf56866f9b38860930150061b02deeef8ba42678827c68c42de679ffb0f16216154c996c354cf1161b64e56cd0'] | +| 37 | graviAURA | 0xBA485b556399123261a5F9c95d413B4f93107407 | 2620.88 | ['0x3369eedc1611c074aa62753c202e9bd7b23837167feebafc555d19e6c72c58557c68c42de679ffb0f16216154c996c354cf1161b64e56cd5'] | +| 38 | cbETH | 0xBe9895146f7AF43049ca1c1AE358B0541Ea49704 | 1.04897 | ['0x66ce26150cb2c927c68981a8eefa6a64b0cd0112c9a771a39910565689ec8bfe7c68c42de679ffb0f16216154c996c354cf1161b64e56cd7'] | +| 39 | SNX | 0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F | 721.649 | ['0xf20527d89ef301245fe4d396b3e5bdd5fcf5d5c94cad81dda8e91e0a089ce0357c68c42de679ffb0f16216154c996c354cf1161b64e56cde'] | +| 40 | WETH | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | 4.74218 | ['0x2f3f4d04e8aea9aad6f7bbb2b9f1574c38348c6fd184f04e0775c7dff4b2553a7c68c42de679ffb0f16216154c996c354cf1161b64e56ce1'] | +| 41 | AURA | 0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF | 2645.94 | ['0xce7ff55fd6f67a78aa65ddddd72047e02939c12658c879ca7066d8d971f3cf957c68c42de679ffb0f16216154c996c354cf1161b64e56ce6'] | +| 42 | PSP | 0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5 | 78367.4 | ['0x9747e7d4f2471c8a3efe486c35baf94643769466eed548f051a230a9edddbcf47c68c42de679ffb0f16216154c996c354cf1161b64e56ce8'] | +| 43 | T | 0xCdF7028ceAB81fA0C6971208e83fa7872994beE5 | 138559 | ['0x61fd4a6600fb8d562b3a1bf7d21c3ede6ffd7ae6699045d0775ff212b035d9be7c68c42de679ffb0f16216154c996c354cf1161b64e56cec'] | +| 44 | NOTE | 0xCFEAead4947f0705A14ec42aC3D44129E1Ef3eD5 | 24344 | ['0x87432c8ce7a0db576f2a98acea00852355e3e1b732885d6e2e1d022cc18b46197c68c42de679ffb0f16216154c996c354cf1161b64e56cee'] | +| 45 | 50USH-50WETH | 0xD278166DAbaf26707362f7CfDd204b277FD2a460 | 341.501 | ['0x273d2fc4088f51c857b6ddf49e690d01448995c5062b1c15edb4260e8538dbb17c68c42de679ffb0f16216154c996c354cf1161b64e56cf1'] | +| 46 | USDT | 0xdAC17F958D2ee523a2206206994597C13D831ec7 | 1218.37 | ['0x03814f4b4f2625cac68c73ac1780c1a359ba94af76428eb6ae354e286b6571c67c68c42de679ffb0f16216154c996c354cf1161b64e56cf5'] | +| 47 | ankrETH/wstETH | 0xdfE6e7e18f6Cc65FA13C8D8966013d4FdA74b6ba | 1.5639 | ['0x5d3c50f7378bcd3c345f936e777e2f744bb0ac1941e05eaf832dd6c405a2c0eb7c68c42de679ffb0f16216154c996c354cf1161b64e56cf9'] | +| 48 | ankrETH | 0xE95A203B1a91a908F9B9CE46459d101078c2c3cb | 2.1752 | ['0xd4e7630065ed8bd66b33d8319ad08cfdf0cc1ff22f9531af9c49c77165b1ccfd7c68c42de679ffb0f16216154c996c354cf1161b64e56cfc'] | +| 49 | BICO | 0xF17e65822b568B3903685a7c9F496CF7656Cc6C2 | 8248.25 | ['0xbbd8b3eff4e2c1a305b3d0a9e381763b8cb28766aec31ebf4d38b4b04ae53bd37c68c42de679ffb0f16216154c996c354cf1161b64e56d02'] | +| 50 | LIT | 0xfd0205066521550D7d7AB19DA8F72bb004b4C341 | 163263 | ['0x7fb633575916506434438e40919594f2c115195b2b7a6b1e99d3abd4378b0be37c68c42de679ffb0f16216154c996c354cf1161b64e56d05'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-08-22-eth.report.txt b/FeeSweep/out/2023-08-22-eth.report.txt new file mode 100644 index 000000000..d6f75f0a0 --- /dev/null +++ b/FeeSweep/out/2023-08-22-eth.report.txt @@ -0,0 +1,69 @@ +Sweep 740.3099 of BOND(0x0391d2021f89dc339f60fff84546ea23e337750f) worth $1898.8904356178134 +Sweep 33.2982 of 50WETH-50-3pool(0x08775ccb6674d6bdceb0797c364c2653ed84f384) worth $1335.3448104206811 +Sweep 4553.1437 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $1948.6824217458911 +Sweep 40.8263 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $2386.850078396564 +Sweep 365.9043 of UNI(0x1f9840a85d5af5bf1d1762f925bdaddc4201f984) worth $1677.7490956968197 +Sweep 5480.1887 of R-DAI-BLP(0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9) worth $5385.932049885856 +Sweep 148915.4330 of 80BETS/20wstETH(0x26cc136e9b8fd65466f193a8e5710661ed9a9827) worth $1230.425352170434 +Sweep 16025.9886 of AST(0x27054b13b1b798b345b591a4d22e6562d47ea75a) worth $1261.191532408796 +Sweep 269298.9467 of BANK(0x2d94aa3e47d9d5024503ca8491fce9a2fb4da198) worth $1048.9111267066737 +Sweep 2.7905 of wbETH-wstETH(0x2e848426aec6dbf2260535a5bea048ed94d9ff3d) worth $3274.78775422378 +Sweep 2702.4354 of SD(0x30d20208d987713f46dfd34ef128bb16c404d10f) worth $1791.5617112683913 +Sweep 1258.0483 of BADGER(0x3472a5a71965499acd81997a54bba8d852c6e53d) worth $2501.1055233561115 +Sweep 103.3688 of 50R-50wstETH(0x380aabe019ed2a9c2d632b51eddd30fd804d0fad) worth $4384.167643718957 +Sweep 4.9591 of wstETH-bb-a-WETH-BPT(0x41503c9d499ddbd1dcdf818a1b05e9774203bf46) worth $6515.82181494655 +Sweep 57.9906 of INV(0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68) worth $1716.9133292896547 +Sweep 23101.2027 of CVC(0x41e5560054824ea6b0732e656e3ad64e20e94e45) worth $1542.716954416651 +Sweep 5.6637 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $8149.887752561216 +Sweep 2095.9511 of 50COIL-50USDC(0x42fbd9f666aacc0026ca1b88c94259519e03dd67) worth $2630.3091277020662 +Sweep 33441.6705 of XZAR(0x48f07301e9e29c3c38a80ae8d9ae771f224f1054) worth $1761.0577931077717 +Sweep 1.4147 of B-ETHx/bb-a-WETH (0x4cbde5c4b4b53ebe4af4adb85404725985406163) worth $1630.315125286672 +Sweep 341.1796 of LINK(0x514910771af9ca656af840dff83e8264ecf986ca) worth $2053.5342487607645 +Sweep 2162.1610 of ePyvUSDC-29APR22(0x52c9886d5d87b0f06ebacbeff750b5ffad5d17d9) worth $2163.2971999999995 +Sweep 1180.8152 of MIM-3LP3CRV-f(0x5a6a4d54456819380173272a5e8e9b9904bdf41b) worth $1193.0464349699942 +Sweep 79.9071 of 50wstETH-50LDO(0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5) worth $4282.8041056882985 +Sweep 2440.3724 of bb-i-USD(0x60683b05e9a39e3509d8fdb9c959f23170f8a0fa) worth $2489.847548553905 +Sweep 9429.1996 of RBN(0x6123b0049f904d730db3c36a31167d9d4121fa6b) worth $2050.311747578334 +Sweep 358.1818 of auraBAL(0x616e8bfa43f920657b3497dbf40d6b1a02d4608d) worth $3458.9966604347487 +Sweep 10407.1331 of 50STG-50bbaUSD(0x639883476960a23b38579acfd7d71561a0f408cf) worth $7664.593833192186 +Sweep 282.3732 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $3014.225759926407 +Sweep 28.9326 of GNO(0x6810e776880c02933d47db1b9fc05908e5386b96) worth $2735.6 +Sweep 1970.9396 of USDC-DAI-USDT(0x79c58f70905f734641735bc61e45c19dd9ad60bc) worth $1973.8106120907578 +Sweep 2.0550 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $3696.0997612165224 +Sweep 3321.5620 of VITA(0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321) worth $6017.665475933874 +Sweep 4653.5109 of DOLA(0x865377367054516e17014ccded1e7d814edc9ce4) worth $4633.293138929908 +Sweep 15.5261 of B-50COMP-50wstETH(0x87a867f5d240a782d43d90b6b06dea470f3f8f22) worth $4112.486878008933 +Sweep 1114.0633 of MPH(0x8888801af4d980682e47f1a9036e589479e835c5) worth $1121.0555178787515 +Sweep 31639.2333 of DFX(0x888888435fde8e7d4c54cab67f206e4199454c60) worth $1183.5480370946386 +Sweep 2281.5922 of 50TEMPLE-50DAI(0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0) worth $2347.255406225195 +Sweep 2005.2453 of MAI(0x8d6cebd76f18e1558d4db88138e2defb3909fad6) worth $1903.8555499824504 +Sweep 73301.3548 of MIMO(0x90b831fa3bebf58e9744a14d638e25b4ee06f9bc) worth $1116.74953112 +Sweep 1.9202 of rETH(0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593) worth $1716.5629596924923 +Sweep 49.9887 of 50wstETH-50stk-APE(0x959216bb492b2efa72b15b7aacea5b5c984c3cca) worth $2675.3647048209577 +Sweep 4275336.6447 of M2(0x965d79f1a1016b574a62986e13ca8ab04dfdd15c) worth $2270.869807688706 +Sweep 3.2782 of MKR(0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2) worth $3204.266068453012 +Sweep 18.3578 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $3701.915632946885 +Sweep 2769.3731 of USDC(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48) worth $2770.1076 +Sweep 12885.0129 of PAL(0xab846fb6c81370327e784ae7cbb6d6a6af6ff4bf) worth $1225.4812205409812 +Sweep 1.4690 of swETH-bb-a-WETH-BPT(0xae8535c23afedda9304b03c68a3563b75fc8f92b) worth $1630.5974572278242 +Sweep 67501385.6651 of O(0xb53ecf1345cabee6ea1a65100ebb153cebcac40f) worth $1062.0041638583086 +Sweep 1264.7333 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $4336.848402511638 +Sweep 2620.8837 of graviAURA(0xba485b556399123261a5f9c95d413b4f93107407) worth $2839.952331819401 +Sweep 1.0490 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $1705.667159145411 +Sweep 1611.5748 of R-bb-s-DAI-BLP(0xbf2ef8bdc2fc0f3203b3a01778e3ec5009aeef33) worth $1584.6261174849922 +Sweep 721.6500 of SNX(0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f) worth $1477.7859888568494 +Sweep 4.7422 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $6503.92 +Sweep 2645.9456 of AURA(0xc0c293ce456ff0ed870add98a0828dd4d2903dbf) worth $2891.182663715421 +Sweep 78367.4810 of PSP(0xcafe001067cdef266afb7eb5a286dcfd277f3de5) worth $1860.457578621203 +Sweep 138559.0290 of T(0xcdf7028ceab81fa0c6971208e83fa7872994bee5) worth $2534.0277849773197 +Sweep 24344.0449 of NOTE(0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5) worth $3527.1791683508673 +Sweep 341.5009 of 50USH-50WETH(0xd278166dabaf26707362f7cfdd204b277fd2a460) worth $2624.6874115500427 +Sweep 1218.3743 of USDT(0xdac17f958d2ee523a2206206994597c13d831ec7) worth $1217.54325 +Sweep 1.5639 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $1637.4281818206005 +Sweep 2.1752 of ankrETH(0xe95a203b1a91a908f9b9ce46459d101078c2c3cb) worth $3664.756762128792 +Sweep 499420.3197 of FDT(0xed1480d12be41d92f36f5f7bdd88212e381a3677) worth $1862.4287351121955 +Sweep 507.4448 of WAMPL(0xedb171c18ce90b633db442f2a6f72874093b49ef) worth $1366.1813474879552 +Sweep 8248.2548 of BICO(0xf17e65822b568b3903685a7c9f496cf7656cc6c2) worth $1704.3599341242116 +Sweep 163262.6858 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $4249.80888718908 + +>>>Total USD Value of sweeps at time of input json: $181130.71020063822 \ No newline at end of file diff --git a/FeeSweep/out/2023-09-01-cowswap.md b/FeeSweep/out/2023-09-01-cowswap.md new file mode 100644 index 000000000..e2a44cd64 --- /dev/null +++ b/FeeSweep/out/2023-09-01-cowswap.md @@ -0,0 +1,8 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:---------|:-------------------------------------------|----------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | R | 0x183015a9bA6fF60230fdEaDc3F43b3D788b13e21 | 1109.52 | ['0x454cc2dfa696632c81f659ddd5cec86844ae25486b5d39ef572930720e0ff89f7c68c42de679ffb0f16216154c996c354cf1161b64f2af97'] | +| 1 | APE | 0x4d224452801ACEd8B2F0aebE155379bb5D594381 | 916.476 | ['0x9fbbac460d60608638d31d38459f7e765ee4bf95bf242113c57b9ff351fc02477c68c42de679ffb0f16216154c996c354cf1161b64f2af9a'] | +| 2 | DAI | 0x6B175474E89094C44Da98b954EedeAC495271d0F | 2043.66 | ['0x3f1a0b5a36d6081e848bc5f9dedcbf280f4a51f0722382e6377d0fb1775716917c68c42de679ffb0f16216154c996c354cf1161b64f2afa0'] | +| 3 | WETH | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | 1.5243 | ['0xb6c2617a6c37ec6d2aaf74dbf8ee09555dde6f948dfcad86a3738fba30d426867c68c42de679ffb0f16216154c996c354cf1161b64f2afa5'] | +| 4 | WAMPL | 0xEDB171C18cE90B633DB442f2A6F72874093b49Ef | 507.444 | ['0xb96052066cd5c90856bf102d25a560819e01a909b38e95ad5849da07e892e6e47c68c42de679ffb0f16216154c996c354cf1161b64f2afa7'] | +| 5 | USDT | 0xdAC17F958D2ee523a2206206994597C13D831ec7 | 3313.01 | ['0x1f01643c531fbc0ae1ac48cf01ae2ff62c88fce084539efaa936096dfb410e2f7c68c42de679ffb0f16216154c996c354cf1161b64f2afaa'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-09-01-eth.report.txt b/FeeSweep/out/2023-09-01-eth.report.txt new file mode 100644 index 000000000..15de62819 --- /dev/null +++ b/FeeSweep/out/2023-09-01-eth.report.txt @@ -0,0 +1,7 @@ +Sweep 8.2476 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $13220.736784395587 +Sweep 960.2245 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $10479.494200798406 +Sweep 21.2238 of B-50COMP-50wstETH(0x87a867f5d240a782d43d90b6b06dea470f3f8f22) worth $5806.04465083225 +Sweep 3765.8629 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $12903.43511428237 +Sweep 6.5948 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $9869.52 + +>>>Total USD Value of sweeps at time of input json: $52279.23075030862 \ No newline at end of file diff --git a/FeeSweep/out/2023-09-15-avax.json b/FeeSweep/out/2023-09-15-avax.json new file mode 100644 index 000000000..5db9491bd --- /dev/null +++ b/FeeSweep/out/2023-09-15-avax.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[152001128483535355904, 1122986680830129602560, 329649348412018917376, 1190545583911888224256, 382510015293303619584]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa, 0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc, 0xa154009870e9b6431305f19b09f9cfd7284d4e7a, 0xa1d14d922a575232066520eda11e27760946c991, 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-09-15-avax.report.txt b/FeeSweep/out/2023-09-15-avax.report.txt new file mode 100644 index 000000000..33a71c3fb --- /dev/null +++ b/FeeSweep/out/2023-09-15-avax.report.txt @@ -0,0 +1,7 @@ +Sweep 152.0163 of ggAVAX-bb-a-WAVAX-BPT(0x054e7b0c73e1ee5aed6864fa511658fc2b54bcaa) worth $1417.60139342686 +Sweep 1123.0990 of BPT(0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc) worth $1082.9554206261826 +Sweep 329.6823 of sAVAX-bb-a-WAVAX-BPT(0xa154009870e9b6431305f19b09f9cfd7284d4e7a) worth $3076.6900840480857 +Sweep 1190.6647 of bb-a-USD(0xa1d14d922a575232066520eda11e27760946c991) worth $1192.532845614365 +Sweep 382.5483 of sAVAX-WAVAX-BPT(0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc) worth $3566.6591650409423 + +>>>Total USD Value of sweeps at time of input json: $10336.438908756436 \ No newline at end of file diff --git a/FeeSweep/out/2023-09-15-base.json b/FeeSweep/out/2023-09-15-base.json new file mode 100644 index 000000000..659593a45 --- /dev/null +++ b/FeeSweep/out/2023-09-15-base.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xAcf05BE5134d64d150d153818F8C67EE36996650", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[365038993713692378862, 1920002445927844271, 1123343997521867226497, 26030137338558423607, 998469736580667788875]", + "recipient": "0xe649B71783d5008d10a96b6871e3840a398d4F06", + "tokens": "[0xE40cBcCba664C7B1a953827C062F5070B78de868, 0xFb4C2E6E6e27B5b4a07a36360C89EDE29bB3c9B6, 0x6FbFcf88DB1aADA31F34215b2a1Df7fafb4883e9, 0x2Db50a0e0310723EF0C2a165CB9A9f80D772ba2F, 0xE58cA65f418D4121d6C70d4C133E60cf6fDa363C]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-09-15-cowswap.md b/FeeSweep/out/2023-09-15-cowswap.md new file mode 100644 index 000000000..d77156fd6 --- /dev/null +++ b/FeeSweep/out/2023-09-15-cowswap.md @@ -0,0 +1,10 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:------------------------|:-------------------------------------------|------------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | SYN | 0x0f2D719407FdBeFF09D87557AbB7232601FD9F29 | 15446.2 | ['0x7814a9316ac49d3e7a07f9bd73b3a909930edf7d1821660d3b4a41d8191c3e707c68c42de679ffb0f16216154c996c354cf1161b650497e5'] | +| 1 | 50rETH-50BADGER | 0x1ee442b5326009Bb18F2F472d3e0061513d1A0fF | 167.945 | ['0xd142acf96b810c74165195f94b249bf3d7af80aa92f100b49aca4586e0b3d6eb7c68c42de679ffb0f16216154c996c354cf1161b650497e8'] | +| 2 | wstETH-rETH-sfrxETH-BPT | 0x42ED016F826165C2e5976fe5bC3df540C5aD0Af7 | 12.4312 | ['0x1a2a4507105dcb0463f321dceb2f5c6ef3eac070dda17bc6c620b6bbf32b61c67c68c42de679ffb0f16216154c996c354cf1161b650497ed'] | +| 3 | wstETH | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 | 3.43776 | ['0x1e7a4dffb8bae182c7f73e572755d7e70a91f46d6d77c46c813f42a13bf42a2e7c68c42de679ffb0f16216154c996c354cf1161b650497f4'] | +| 4 | B-50COMP-50wstETH | 0x87a867f5D240a782d43D90b6B06DEa470F3f8F22 | 23.1523 | ['0x5ab39df86dd5c367177ef51da3619fae3d9f75a7c9bd183b939bdfe0f3d01b5d7c68c42de679ffb0f16216154c996c354cf1161b650497f8'] | +| 5 | wstETH-WETH-BPT | 0x93d199263632a4EF4Bb438F1feB99e57b4b5f0BD | 5.89397 | ['0xa67f2e41761ff8060469fb69f8af72e2be12c7000f6899e8e50dfad70513211b7c68c42de679ffb0f16216154c996c354cf1161b650497fd'] | +| 6 | WETH | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | 10.3814 | ['0xbeb743b508cdab3401d824568b553e61f42f1b26a0c0ae7b78a70c0e152cb4a97c68c42de679ffb0f16216154c996c354cf1161b65049802'] | +| 7 | swETH-WETH-BPT | 0xE7e2c68d3b13d905BBb636709cF4DfD21076b9D2 | 6.17642 | ['0x7668c2d2fe50501ea89509a84085ef33ff6bd6b57079cecb50252d5100a40f4a7c68c42de679ffb0f16216154c996c354cf1161b65049807'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-09-15-eth.json b/FeeSweep/out/2023-09-15-eth.json new file mode 100644 index 000000000..af2353267 --- /dev/null +++ b/FeeSweep/out/2023-09-15-eth.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[15444631922957864665088, 167927921171061374976, 12429951453278865408, 3437422761522084352, 23149999541147803648, 5893384307749734400, 2907637189043018530816, 10380421443716335616, 6175805666936543232]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x0f2d719407fdbeff09d87557abb7232601fd9f29, 0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x42ed016f826165c2e5976fe5bc3df540c5ad0af7, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x87a867f5d240a782d43d90b6b06dea470f3f8f22, 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd, 0xba100000625a3754423978a60c9317c58a424e3d, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-09-15-eth.report.txt b/FeeSweep/out/2023-09-15-eth.report.txt new file mode 100644 index 000000000..ce6c2d511 --- /dev/null +++ b/FeeSweep/out/2023-09-15-eth.report.txt @@ -0,0 +1,11 @@ +Sweep 15446.1765 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $5289.0491063682 +Sweep 167.9447 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $10455.491853974218 +Sweep 12.4312 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $19597.696328176007 +Sweep 3.4378 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $5562.871933903929 +Sweep 23.1523 of B-50COMP-50wstETH(0x87a867f5d240a782d43d90b6b06dea470f3f8f22) worth $6358.087826347786 +Sweep 5.8940 of wstETH-WETH-BPT(0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd) worth $8151.407927758884 +Sweep 2907.9280 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $9552.536075248214 +Sweep 10.3815 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $16292.1 +Sweep 6.1764 of swETH-WETH-BPT(0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2) worth $9794.674727160567 + +>>>Total USD Value of sweeps at time of input json: $91053.91577893781 \ No newline at end of file diff --git a/FeeSweep/out/2023-09-29-8453.json b/FeeSweep/out/2023-09-29-8453.json new file mode 100644 index 000000000..fb31a8be9 --- /dev/null +++ b/FeeSweep/out/2023-09-29-8453.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xAcf05BE5134d64d150d153818F8C67EE36996650", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[49537991034009170767, 1682245310931674138, 12709883008466426316, 124083870455123644204, 545504407500169560, 856044396492925304844, 5781042508094797278292, 42103345718611148207]", + "recipient": "0xdd1e4b267ff123eb2ccf1134bd2dc90c14956ddc", + "tokens": "[0x17e7d59bB209a3215Ccc25FFfEf7161498B7C10d, 0xFb4C2E6E6e27B5b4a07a36360C89EDE29bB3c9B6, 0xE40cBcCba664C7B1a953827C062F5070B78de868, 0x433f09ca08623E48BAc7128B7105De678E37D988, 0xC771c1a5905420DAEc317b154EB13e4198BA97D0, 0x0C659734f1eEF9C63B7Ebdf78a164CDd745586Db, 0xfAB10dd71e11d0ad403cc31418B45D816f2F9882, 0x868F0Efc81A6c1DF16298Dcc82f7926B9099946B]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-09-29-8453.report.txt b/FeeSweep/out/2023-09-29-8453.report.txt new file mode 100644 index 000000000..e69de29bb diff --git a/FeeSweep/out/2023-09-29-cowswap.md b/FeeSweep/out/2023-09-29-cowswap.md new file mode 100644 index 000000000..240c61c4d --- /dev/null +++ b/FeeSweep/out/2023-09-29-cowswap.md @@ -0,0 +1,3 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:---------|:-------------------------------------------|---------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | PENDLE | 0x808507121B80c02388fAd14726482e061B8da827 | 9733.23 | ['0x8d42a4a480e116f246056bf4743e30ee0963b16e16914c37cba337d43181dd067c68c42de679ffb0f16216154c996c354cf1161b65175f15'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-09-29-eth.report.txt b/FeeSweep/out/2023-09-29-eth.report.txt new file mode 100644 index 000000000..a8e44c878 --- /dev/null +++ b/FeeSweep/out/2023-09-29-eth.report.txt @@ -0,0 +1,13 @@ +Sweep 116.1406 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $7339.792588218959 +Sweep 5971.2727 of R-DAI-BLP(0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9) worth $5947.731152444924 +Sweep 3.6752 of ETHx-WETH-BPT(0x37b18b10ce5635a84834b26095a0ae5639dcb752) worth $5029.016462372047 +Sweep 15196.7207 of STG/USDC(0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e) worth $10399.806153759602 +Sweep 12.1149 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $20156.98666768607 +Sweep 5.7413 of wstETH-WETH-BPT(0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd) worth $8380.554827327267 +Sweep 23338.9024 of 80Silo-20WETH(0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd) worth $7479.565375551363 +Sweep 4109.5444 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $13738.067752986697 +Sweep 10.1873 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $16698.399999999998 +Sweep 7.0241 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $11813.90413289077 +Sweep 620.8632 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $17677.31135651186 + +>>>Total USD Value of sweeps at time of input json: $124661.13646974954 \ No newline at end of file diff --git a/FeeSweep/out/2023-10-13-arb.json b/FeeSweep/out/2023-10-13-arb.json new file mode 100644 index 000000000..269f237ce --- /dev/null +++ b/FeeSweep/out/2023-10-13-arb.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-10-13-arb.report.txt b/FeeSweep/out/2023-10-13-arb.report.txt new file mode 100644 index 000000000..3063e743b --- /dev/null +++ b/FeeSweep/out/2023-10-13-arb.report.txt @@ -0,0 +1,2 @@ + +>>>Total USD Value of sweeps at time of input json: $0 \ No newline at end of file diff --git a/FeeSweep/out/2023-10-13-avax.json b/FeeSweep/out/2023-10-13-avax.json new file mode 100644 index 000000000..6a389e210 --- /dev/null +++ b/FeeSweep/out/2023-10-13-avax.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[209879361739374985216, 279684006169513328640, 631362524713202221056]", + "recipient": "0xd0E6C1d2295E2a9e1927D25dBe6C461A4D23c8B4", + "tokens": "[0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9, 0xc13546b97b9b1b15372368dc06529d7191081f5b, 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-10-13-avax.report.txt b/FeeSweep/out/2023-10-13-avax.report.txt new file mode 100644 index 000000000..d77fbcf20 --- /dev/null +++ b/FeeSweep/out/2023-10-13-avax.report.txt @@ -0,0 +1,5 @@ +Sweep 209.9004 of yyAVAX-WAVAX-BPT(0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9) worth $1899.9942517947893 +Sweep 279.7120 of ggAVAX-WAVAX-BPT(0xc13546b97b9b1b15372368dc06529d7191081f5b) worth $2531.4764539037665 +Sweep 631.4257 of sAVAX-WAVAX-BPT(0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc) worth $5751.151227602399 + +>>>Total USD Value of sweeps at time of input json: $10182.621933300954 \ No newline at end of file diff --git a/FeeSweep/out/2023-10-13-base.json b/FeeSweep/out/2023-10-13-base.json new file mode 100644 index 000000000..f1e17f04f --- /dev/null +++ b/FeeSweep/out/2023-10-13-base.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xAcf05BE5134d64d150d153818F8C67EE36996650", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[159501620417306787840, 1966362325641644800]", + "recipient": "0xd0E6C1d2295E2a9e1927D25dBe6C461A4D23c8B4", + "tokens": "[0x433f09ca08623e48bac7128b7105de678e37d988, 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-10-13-base.report.txt b/FeeSweep/out/2023-10-13-base.report.txt new file mode 100644 index 000000000..a5eda3fd7 --- /dev/null +++ b/FeeSweep/out/2023-10-13-base.report.txt @@ -0,0 +1,4 @@ +Sweep 159.5176 of 50GOLD/25WETH/25USDC(0x433f09ca08623e48bac7128b7105de678e37d988) worth $2922.382794616562 +Sweep 1.9666 of cbETH/WETH(0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6) worth $1542.6558692892845 + +>>>Total USD Value of sweeps at time of input json: $4465.038663905847 \ No newline at end of file diff --git a/FeeSweep/out/2023-10-13-eth.json b/FeeSweep/out/2023-10-13-eth.json new file mode 100644 index 000000000..e51b29ec0 --- /dev/null +++ b/FeeSweep/out/2023-10-13-eth.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[41212923886095065088, 6603228756082425856000, 93003813465069125632, 14051169663249879040, 887713381927016071168, 365099101926505840640, 3394922602206872064, 1194384850836293156864, 4625912012956760539136, 61380392909885865984, 1789708883968, 10403852875255828480, 27647240035838676992, 275674862438576783360, 563634815290, 353768505216533790720, 2227568924360324153344, 5055889490150305792, 2669064876616815104, 833201126649822314496, 3993529862514989858816, 2681654805219049472000, 2956317680657833656320, 9008179785550422016, 2076639076245404672, 2795542058403094633381888, 24860878962814812160, 2196341509, 84416113988617558294528, 1001690206046035712, 3371979073015283974144, 4913332702596619567104, 11150541558317389824, 1625826434411255824384, 51614191597492809760768, 1968395825943401472, 4251734136457169920, 1102210810102288256, 86791255496738422784, 20088048611499511382016, 59796361320136221655040]", "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "tokens": "[0x08775ccb6674d6bdceb0797c364c2653ed84f384, 0x0f2d719407fdbeff09d87557abb7232601fd9f29, 0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x24e79e946dea5482212c38aab2d0782f04cdb0e0, 0x3472a5a71965499acd81997a54bba8d852c6e53d, 0x36be1e97ea98ab43b4debf92742517266f5731a3, 0x37b18b10ce5635a84834b26095a0ae5639dcb752, 0x3fa8c89704e5d07565444009e5d9e624b40be813, 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e, 0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68, 0x41e5560054824ea6b0732e656e3ad64e20e94e45, 0x42ed016f826165c2e5976fe5bc3df540c5ad0af7, 0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5, 0x616e8bfa43f920657b3497dbf40d6b1a02d4608d, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x6f0ed6f346007563d3266de350d174a831bde0ca, 0x79c58f70905f734641735bc61e45c19dd9ad60bc, 0x7d98f308db99fdd04bbf4217a4be8809f38faa64, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321, 0x8353157092ed8be69a9df8f95af097bbf33cb2af, 0x865377367054516e17014ccded1e7d814edc9ce4, 0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0, 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd, 0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593, 0x965d79f1a1016b574a62986e13ca8ab04dfdd15c, 0x9f9d900462492d4c21e9523ca95a7cd86142f298, 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48, 0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9, 0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a03, 0xba100000625a3754423978a60c9317c58a424e3d, 0xba485b556399123261a5f9c95d413b4f93107407, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xc0c293ce456ff0ed870add98a0828dd4d2903dbf, 0xcdf7028ceab81fa0c6971208e83fa7872994bee5, 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba, 0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2, 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1, 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc, 0xf203ca1769ca8e9e8fe1da9d147db68b6c919817, 0xfd0205066521550d7d7ab19da8f72bb004b4c341]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-10-13-eth.report.txt b/FeeSweep/out/2023-10-13-eth.report.txt new file mode 100644 index 000000000..1a99f90c2 --- /dev/null +++ b/FeeSweep/out/2023-10-13-eth.report.txt @@ -0,0 +1,43 @@ +Sweep 41.2170 of 50WETH-50-3pool(0x08775ccb6674d6bdceb0797c364c2653ed84f384) worth $1619.0943842116765 +Sweep 6603.8891 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $1816.5304257050313 +Sweep 93.0131 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $5317.461983896095 +Sweep 14.0526 of palStkAAVE(0x24e79e946dea5482212c38aab2d0782f04cdb0e0) worth $1025.8122030647528 +Sweep 887.8022 of BADGER(0x3472a5a71965499acd81997a54bba8d852c6e53d) worth $1740.466939753998 +Sweep 365.1356 of 50wstETH-50ACX(0x36be1e97ea98ab43b4debf92742517266f5731a3) worth $3317.914358186421 +Sweep 3.3953 of ETHx-WETH-BPT(0x37b18b10ce5635a84834b26095a0ae5639dcb752) worth $4646.323361605355 +Sweep 1194.5043 of GHO/LUSD(0x3fa8c89704e5d07565444009e5d9e624b40be813) worth $1174.4523470989352 +Sweep 4626.3747 of STG/USDC(0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e) worth $2986.2379679116398 +Sweep 61.3865 of INV(0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68) worth $2211.00006006794 +Sweep 17898.8787 of CVC(0x41e5560054824ea6b0732e656e3ad64e20e94e45) worth $1286.7083527760965 +Sweep 10.4049 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $15521.326080087503 +Sweep 27.6500 of 50wstETH-50LDO(0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5) worth $1402.2125446596428 +Sweep 275.7024 of auraBAL(0x616e8bfa43f920657b3497dbf40d6b1a02d4608d) worth $2397.804172407359 +Sweep 563.6912 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $6529.480213087932 +Sweep 353.8039 of 50KNC-25WETH-25USDC-BPT(0x6f0ed6f346007563d3266de350d174a831bde0ca) worth $1673.1870693087612 +Sweep 2227.7917 of USDC-DAI-USDT(0x79c58f70905f734641735bc61e45c19dd9ad60bc) worth $2234.142694670228 +Sweep 5.0564 of 80wstETH/20GHO(0x7d98f308db99fdd04bbf4217a4be8809f38faa64) worth $1619.9964210641215 +Sweep 2.6693 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $3530.8717215001006 +Sweep 833.2845 of VITA(0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321) worth $1454.803053030738 +Sweep 3993.9293 of GHO/USDT/USDC(0x8353157092ed8be69a9df8f95af097bbf33cb2af) worth $3938.713221810686 +Sweep 2681.9230 of DOLA(0x865377367054516e17014ccded1e7d814edc9ce4) worth $2671.967499096385 +Sweep 2956.6133 of 50TEMPLE-50DAI(0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0) worth $3053.648823147637 +Sweep 9.0091 of wstETH-WETH-BPT(0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd) worth $13940.096194926078 +Sweep 2.0768 of rETH(0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593) worth $3297.389462247653 +Sweep 2795821.6406 of M2(0x965d79f1a1016b574a62986e13ca8ab04dfdd15c) worth $1510.2193560703515 +Sweep 24.8634 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $4144.929674143925 +Sweep 2196.5612 of USDC(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48) worth $2196 +Sweep 84424.5564 of TEMP(0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9) worth $1524.1393481525054 +Sweep 1.0018 of vETH/WETH BPT(0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a03) worth $1550.1289331523578 +Sweep 3372.3163 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $10183.814086921358 +Sweep 4913.8241 of graviAURA(0xba485b556399123261a5f9c95d413b4f93107407) worth $4041.175883911719 +Sweep 11.1517 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $16993.9 +Sweep 1625.9890 of AURA(0xc0c293ce456ff0ed870add98a0828dd4d2903dbf) worth $1243.8300686874315 +Sweep 51619.3535 of T(0xcdf7028ceab81fa0c6971208e83fa7872994bee5) worth $1121.6431899134914 +Sweep 1.9686 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $1559.4453758687614 +Sweep 4.2522 of swETH-WETH-BPT(0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2) worth $6204.757563709079 +Sweep 1.1023 of ECLP-wstETH-wETH(0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1) worth $1548.2975404950264 +Sweep 86.7999 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $2209.863584078826 +Sweep 20090.0576 of WNCG(0xf203ca1769ca8e9e8fe1da9d147db68b6c919817) worth $1097.3326017608485 +Sweep 59802.3416 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $1170.4561740232405 + +>>>Total USD Value of sweeps at time of input json: $148707.57493621166 \ No newline at end of file diff --git a/FeeSweep/out/2023-10-26-avalanche.json b/FeeSweep/out/2023-10-26-avalanche.json new file mode 100644 index 000000000..df0afae85 --- /dev/null +++ b/FeeSweep/out/2023-10-26-avalanche.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[166646932919975477248, 359523775928026136576]", "recipient": "", "tokens": "[0xc13546b97b9b1b15372368dc06529d7191081f5b, 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-10-26-avalanche.report.txt b/FeeSweep/out/2023-10-26-avalanche.report.txt new file mode 100644 index 000000000..b0deee616 --- /dev/null +++ b/FeeSweep/out/2023-10-26-avalanche.report.txt @@ -0,0 +1,4 @@ +Sweep 166.6636 of ggAVAX-WAVAX-BPT(0xc13546b97b9b1b15372368dc06529d7191081f5b) worth $1746.8978667644956 +Sweep 359.5597 of sAVAX-WAVAX-BPT(0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc) worth $3796.2398403874327 + +>>>Total USD Value of sweeps at time of input json: $5543.137707151928 \ No newline at end of file diff --git a/FeeSweep/out/2023-10-26-base.json b/FeeSweep/out/2023-10-26-base.json new file mode 100644 index 000000000..565d837cb --- /dev/null +++ b/FeeSweep/out/2023-10-26-base.json @@ -0,0 +1 @@ +{"version": "1.0", "chainId": "1", "createdAt": 1675378561300, "meta": {"name": "Transactions Batch", "description": "", "txBuilderVersion": "1.11.1", "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", "createdFromOwnerAddress": "", "checksum": ""}, "transactions": [{"to": "0xAcf05BE5134d64d150d153818F8C67EE36996650", "value": "0", "data": null, "contractMethod": {"inputs": [{"internalType": "contract IERC20[]", "name": "tokens", "type": "address[]"}, {"internalType": "uint256[]", "name": "amounts", "type": "uint256[]"}, {"internalType": "address", "name": "recipient", "type": "address"}], "name": "withdrawCollectedFees", "payable": false}, "contractInputsValues": {"amounts": "[125607089906827296768, 351508181964102172672, 1128791463305102592]", "recipient": "", "tokens": "[0x433f09ca08623e48bac7128b7105de678e37d988, 0xb328b50f1f7d97ee8ea391ab5096dd7657555f49, 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6]"}}]} \ No newline at end of file diff --git a/FeeSweep/out/2023-10-26-base.report.txt b/FeeSweep/out/2023-10-26-base.report.txt new file mode 100644 index 000000000..f3f651d4e --- /dev/null +++ b/FeeSweep/out/2023-10-26-base.report.txt @@ -0,0 +1,5 @@ +Sweep 125.6197 of 50GOLD/25WETH/25USDC(0x433f09ca08623e48bac7128b7105de678e37d988) worth $2565.8005987251327 +Sweep 351.5433 of GOLD/BAL/USDC(0xb328b50f1f7d97ee8ea391ab5096dd7657555f49) worth $1178.321864428597 +Sweep 1.1289 of cbETH/WETH(0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6) worth $1783.1027728703402 + +>>>Total USD Value of sweeps at time of input json: $5527.22523602407 \ No newline at end of file diff --git a/FeeSweep/out/2023-10-26-mainnet.json b/FeeSweep/out/2023-10-26-mainnet.json new file mode 100644 index 000000000..bc8b80779 --- /dev/null +++ b/FeeSweep/out/2023-10-26-mainnet.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[44641070453268455424, 14097898131583198560256, 1090872485347186704384, 14102367265803943936, 1630031012586775379968, 473178495874966290432, 1679103190163371264, 1262186371529741959168, 8778583252486356729856, 65195623329877909504, 1789708883968, 8438214456108938240, 30124387163938603008, 354604534778112376832, 353768505216533790720, 2478794767511235067904, 7224437023165532160, 3719535805997344768, 1898342761113594626048, 926901876720240427008, 5921413122345145466880, 2801133894626558083072, 4213017778319135866880, 10517081974406791168, 2560293171485237248, 2795542058403094633381888, 4584070997, 84416113988617558294528, 1001690206046035712, 2087619404687059451904, 3387037798487094198272, 486343182235929935872, 9410781706779871232, 1625826434411255824384, 43604016804620151029760, 51614191597492809760768, 4418192192229490176, 1180069362829598976, 2469053783438236160, 184139676690970804224, 29284310703108201119744, 1947901308392172800, 73080089972542070063104]", + "recipient": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "tokens": "[0x08775ccb6674d6bdceb0797c364c2653ed84f384, 0x0f2d719407fdbeff09d87557abb7232601fd9f29, 0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9, 0x24e79e946dea5482212c38aab2d0782f04cdb0e0, 0x3472a5a71965499acd81997a54bba8d852c6e53d, 0x36be1e97ea98ab43b4debf92742517266f5731a3, 0x37b18b10ce5635a84834b26095a0ae5639dcb752, 0x3fa8c89704e5d07565444009e5d9e624b40be813, 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e, 0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68, 0x41e5560054824ea6b0732e656e3ad64e20e94e45, 0x42ed016f826165c2e5976fe5bc3df540c5ad0af7, 0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5, 0x616e8bfa43f920657b3497dbf40d6b1a02d4608d, 0x6f0ed6f346007563d3266de350d174a831bde0ca, 0x79c58f70905f734641735bc61e45c19dd9ad60bc, 0x7d98f308db99fdd04bbf4217a4be8809f38faa64, 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, 0x808507121b80c02388fad14726482e061b8da827, 0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321, 0x8353157092ed8be69a9df8f95af097bbf33cb2af, 0x865377367054516e17014ccded1e7d814edc9ce4, 0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0, 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd, 0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593, 0x965d79f1a1016b574a62986e13ca8ab04dfdd15c, 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48, 0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9, 0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a03, 0xba100000625a3754423978a60c9317c58a424e3d, 0xba485b556399123261a5f9c95d413b4f93107407, 0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xc0c293ce456ff0ed870add98a0828dd4d2903dbf, 0xcafe001067cdef266afb7eb5a286dcfd277f3de5, 0xcdf7028ceab81fa0c6971208e83fa7872994bee5, 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba, 0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2, 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1, 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc, 0xf203ca1769ca8e9e8fe1da9d147db68b6c919817, 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb134, 0xfd0205066521550d7d7ab19da8f72bb004b4c341]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-10-26-mainnet.report.txt b/FeeSweep/out/2023-10-26-mainnet.report.txt new file mode 100644 index 000000000..8c5a1a7dd --- /dev/null +++ b/FeeSweep/out/2023-10-26-mainnet.report.txt @@ -0,0 +1,45 @@ +Sweep 44.6455 of 50WETH-50-3pool(0x08775ccb6674d6bdceb0797c364c2653ed84f384) worth $1866.6533377513797 +Sweep 14099.3081 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $4955.599773957463 +Sweep 1090.9816 of R-DAI-BLP(0x20a61b948e33879ce7f23e535cc7baa3bc66c5a9) worth $1091.5435158597159 +Sweep 14.1038 of palStkAAVE(0x24e79e946dea5482212c38aab2d0782f04cdb0e0) worth $1275.894845219736 +Sweep 1630.1940 of BADGER(0x3472a5a71965499acd81997a54bba8d852c6e53d) worth $3948.735454553454 +Sweep 473.2258 of 50wstETH-50ACX(0x36be1e97ea98ab43b4debf92742517266f5731a3) worth $4974.926817711654 +Sweep 1.6793 of ETHx-WETH-BPT(0x37b18b10ce5635a84834b26095a0ae5639dcb752) worth $1785.6082148407577 +Sweep 1262.3126 of GHO/LUSD(0x3fa8c89704e5d07565444009e5d9e624b40be813) worth $1207.708416911972 +Sweep 8779.4612 of STG/USDC(0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e) worth $6118.7114957867925 +Sweep 65.2021 of INV(0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68) worth $2064.560301182873 +Sweep 17898.8787 of CVC(0x41e5560054824ea6b0732e656e3ad64e20e94e45) worth $1611.078085870852 +Sweep 8.4391 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $14300.644778842296 +Sweep 30.1274 of 50wstETH-50LDO(0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5) worth $1821.4459259259288 +Sweep 354.6400 of auraBAL(0x616e8bfa43f920657b3497dbf40d6b1a02d4608d) worth $3551.3240693353714 +Sweep 353.8039 of 50KNC-25WETH-25USDC-BPT(0x6f0ed6f346007563d3266de350d174a831bde0ca) worth $1843.2696287399738 +Sweep 2479.0427 of USDC-DAI-USDT(0x79c58f70905f734641735bc61e45c19dd9ad60bc) worth $2488.7757244890176 +Sweep 7.2252 of 80wstETH/20GHO(0x7d98f308db99fdd04bbf4217a4be8809f38faa64) worth $2521.8146994508265 +Sweep 3.7199 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $6070.773628759351 +Sweep 1898.5326 of PENDLE(0x808507121b80c02388fad14726482e061b8da827) worth $1505.7888704607174 +Sweep 926.9946 of VITA(0x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321) worth $1839.7155455132418 +Sweep 5922.0053 of GHO/USDT/USDC(0x8353157092ed8be69a9df8f95af097bbf33cb2af) worth $5696.1141386536565 +Sweep 2801.4140 of DOLA(0x865377367054516e17014ccded1e7d814edc9ce4) worth $2791.759455174132 +Sweep 4213.4391 of 50TEMPLE-50DAI(0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba0) worth $4379.180086037032 +Sweep 10.5181 of wstETH-WETH-BPT(0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd) worth $17842.697298306564 +Sweep 2.5605 of rETH(0x9559aaa82d9649c7a7b220e7c461d2e74c9a3593) worth $3771.0225454657207 +Sweep 2795821.6406 of M2(0x965d79f1a1016b574a62986e13ca8ab04dfdd15c) worth $1734.81757470871 +Sweep 4584.5294 of USDC(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48) worth $4584 +Sweep 84424.5564 of TEMP(0xa36fdbbae3c9d55a1d67ee5821d53b50b63a1ab9) worth $1613.6125184986138 +Sweep 1.0018 of vETH/WETH BPT(0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a03) worth $1787.101500684038 +Sweep 2087.8282 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $6970.645573075364 +Sweep 3387.3765 of graviAURA(0xba485b556399123261a5f9c95d413b4f93107407) worth $3483.596951655711 +Sweep 486.3918 of SNX(0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f) worth $1122.9665703921503 +Sweep 9.4117 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $15911.01 +Sweep 1625.9890 of AURA(0xc0c293ce456ff0ed870add98a0828dd4d2903dbf) worth $1544.6881425420695 +Sweep 43608.3776 of PSP(0xcafe001067cdef266afb7eb5a286dcfd277f3de5) worth $1189.8347660087577 +Sweep 51619.3535 of T(0xcdf7028ceab81fa0c6971208e83fa7872994bee5) worth $1110.598021989026 +Sweep 4.4186 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $7187.467915074614 +Sweep 1.1802 of swETH-WETH-BPT(0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2) worth $1788.6475039624358 +Sweep 2.4693 of ECLP-wstETH-wETH(0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1) worth $3566.239710434115 +Sweep 184.1581 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $5369.407857417892 +Sweep 29287.2394 of WNCG(0xf203ca1769ca8e9e8fe1da9d147db68b6c919817) worth $1715.5320821705777 +Sweep 1.9481 of ECLP-wstETH-cbETH(0xf7a826d47c8e02835d94fb0aa40f0cc9505cb134) worth $1783.7912117477179 +Sweep 73087.3987 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $1547.7056666236408 + +>>>Total USD Value of sweeps at time of input json: $165337.01022178587 \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-avalanche.json b/FeeSweep/out/2023-11-09-avalanche.json new file mode 100644 index 000000000..eda62638f --- /dev/null +++ b/FeeSweep/out/2023-11-09-avalanche.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[121617469140552269824, 175348546361828343808, 76016739783921762304, 340822035245567508480]", + "recipient": "0xDd1e4b267Ff123eB2ccF1134bd2dc90C14956dDC", + "tokens": "[0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9, 0xc13546b97b9b1b15372368dc06529d7191081f5b, 0xece571847897fd61e764d455dc15cf1cd9de8d6f, 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-avalanche.report.txt b/FeeSweep/out/2023-11-09-avalanche.report.txt new file mode 100644 index 000000000..e3d866f58 --- /dev/null +++ b/FeeSweep/out/2023-11-09-avalanche.report.txt @@ -0,0 +1,6 @@ +Sweep 121.6296 of yyAVAX-WAVAX-BPT(0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9) worth $1645.2203845992199 +Sweep 175.3661 of ggAVAX-WAVAX-BPT(0xc13546b97b9b1b15372368dc06529d7191081f5b) worth $2375.3145062399753 +Sweep 76.0243 of yyAVAX-bb-a-WAVAX-BPT(0xece571847897fd61e764d455dc15cf1cd9de8d6f) worth $1039.7924496481414 +Sweep 340.8561 of sAVAX-WAVAX-BPT(0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc) worth $4637.844934216442 + +>>>Total USD Value of sweeps at time of input json: $9698.172274703778 \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-base.json b/FeeSweep/out/2023-11-09-base.json new file mode 100644 index 000000000..2822b47cc --- /dev/null +++ b/FeeSweep/out/2023-11-09-base.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xAcf05BE5134d64d150d153818F8C67EE36996650", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[1102462123626770071552, 86949228758028337152, 922389645016584290304, 1055169504022867456]", + "recipient": "0xDd1e4b267Ff123eB2ccF1134bd2dc90C14956dDC", + "tokens": "[0x0c659734f1eef9c63b7ebdf78a164cdd745586db, 0x433f09ca08623e48bac7128b7105de678e37d988, 0x990a0f03c3ee397cafda61cad277de18280751fd, 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-base.report.txt b/FeeSweep/out/2023-11-09-base.report.txt new file mode 100644 index 000000000..c9c8ccba3 --- /dev/null +++ b/FeeSweep/out/2023-11-09-base.report.txt @@ -0,0 +1,6 @@ +Sweep 1102.5724 of USDC/USDbC/axlUSDC(0x0c659734f1eef9c63b7ebdf78a164cdd745586db) worth $1104.5069749344027 +Sweep 86.9579 of 50GOLD/25WETH/25USDC(0x433f09ca08623e48bac7128b7105de678e37d988) worth $1919.7224091009614 +Sweep 922.4819 of 50WETH-50TAG(0x990a0f03c3ee397cafda61cad277de18280751fd) worth $7114.666259738901 +Sweep 1.0553 of cbETH/WETH(0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6) worth $2043.101044094025 + +>>>Total USD Value of sweeps at time of input json: $12181.99668786829 \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-cowswap.md b/FeeSweep/out/2023-11-09-cowswap.md new file mode 100644 index 000000000..9888b3416 --- /dev/null +++ b/FeeSweep/out/2023-11-09-cowswap.md @@ -0,0 +1,31 @@ +| | Symbol | Address | Amount | Cowswap ID | +|---:|:------------------------|:-------------------------------------------|-----------:|:-----------------------------------------------------------------------------------------------------------------------| +| 0 | 80ROOT-20WETH | 0x02CA8086498552C071451724D3A34cAA3922b65a | 11220.3 | ['0xaaefa1fddeedd3fbe1815468a1b53e84730765d5b3943212a0828137027572937c68c42de679ffb0f16216154c996c354cf1161b654d4302'] | +| 1 | SYN | 0x0f2D719407FdBeFF09D87557AbB7232601FD9F29 | 3899 | ['0x81115cfdd18997d7c1adfe83e6a2b6cae5e8050eb4aa6968c4bb8b7643abcabf7c68c42de679ffb0f16216154c996c354cf1161b654d4304'] | +| 2 | 50rETH-50BADGER | 0x1ee442b5326009Bb18F2F472d3e0061513d1A0fF | 102.296 | ['0xf0d2498ef3361665c91952059e4d66e637098203e7becf9c37080111d0ecde737c68c42de679ffb0f16216154c996c354cf1161b654d4306'] | +| 3 | 80BETS/20wstETH | 0x26Cc136e9b8FD65466F193a8e5710661Ed9A9827 | 153375 | ['0x30f7d301f5e5c96f9bfd9b85f71fadcf89935323ea66e183f3bd5390911df76f7c68c42de679ffb0f16216154c996c354cf1161b654d430a'] | +| 4 | 80PRTC-20WETH | 0x271d57cE059780462F89800141A089008Ca78D4a | 2807.82 | ['0x5e9560959d6ddc8dffc7c7ff34e2c05af4699afd16fe8462a889616c005f78387c68c42de679ffb0f16216154c996c354cf1161b654d430d'] | +| 5 | BADGER | 0x3472A5A71965499acd81997a54BBA8D852C6E53d | 882.742 | ['0x311d9c5070799ba2bcc8b8f66c3be8e7c518aafa7ef8f497c7be0d5f8755f5a47c68c42de679ffb0f16216154c996c354cf1161b654d4311'] | +| 6 | 50wstETH-50ACX | 0x36Be1E97eA98AB43b4dEBf92742517266F5731a3 | 157.861 | ['0xb2e726ac001881db7e66d79e97c08bd622b29cb7d2943412bb44130db70bb5987c68c42de679ffb0f16216154c996c354cf1161b654d4314'] | +| 7 | ETHx-WETH-BPT | 0x37b18B10ce5635a84834b26095A0AE5639dCB752 | 2.08231 | ['0x2eae5a72f5d300fde15b28b9e5287a1b5109ef634004f18453ffcd46e2ce7c3f7c68c42de679ffb0f16216154c996c354cf1161b654d4316'] | +| 8 | INV | 0x41D5D79431A913C4aE7d69a668ecdfE5fF9DFB68 | 44.5989 | ['0xa3ee7c9ee585fe9dd01824fa5470d47695d7f8e0d46b89460e1c14bb87fff7627c68c42de679ffb0f16216154c996c354cf1161b654d431a'] | +| 9 | wstETH-rETH-sfrxETH-BPT | 0x42ED016F826165C2e5976fe5bC3df540C5aD0Af7 | 13.784 | ['0x5bfc4736def065e371c04506c086b23b32498c8fc00f4c484d71f82b930ad4b07c68c42de679ffb0f16216154c996c354cf1161b654d431c'] | +| 10 | GNO | 0x6810e776880C02933D47DB1b9fc05908e5386b96 | 174.228 | ['0xdddbe59ffa19211a6f52ae4871927eafe62a2cc5f754da23b82d962491e7cfb37c68c42de679ffb0f16216154c996c354cf1161b654d4320'] | +| 11 | BTRST | 0x799ebfABE77a6E34311eeEe9825190B9ECe32824 | 2468.4 | ['0x8519ecd732af86b3a671bc42ea37133afa4ce3b23a0757b9ea071f5964e894387c68c42de679ffb0f16216154c996c354cf1161b654d4321'] | +| 12 | wstETH | 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0 | 1.03938 | ['0xd0af5ad8f034a3082abaed2495696c73cade5f7b7b1538c6e1f85ff958d57dcd7c68c42de679ffb0f16216154c996c354cf1161b654d4323'] | +| 13 | DFX | 0x888888435FDe8e7d4c54cAb67f206e4199454c60 | 17716.9 | ['0x6289a0b11633d68a063d85a34ac2759526415dd2ece60f7f83dc991e99e885117c68c42de679ffb0f16216154c996c354cf1161b654d4325'] | +| 14 | wstETH-WETH-BPT | 0x93d199263632a4EF4Bb438F1feB99e57b4b5f0BD | 10.2342 | ['0x60e6f7bdbc7f3452164834f904b843a650cf8c4ef9e3a10e7d89d2e9b1a6a8027c68c42de679ffb0f16216154c996c354cf1161b654d4328'] | +| 15 | 80Silo-20WETH | 0x9CC64EE4CB672Bc04C54B00a37E1Ed75b2Cc19Dd | 8111.76 | ['0xd8c4c1faa4a6e48d81cf3e5e6097c20c5642fcab99fe1bb34e4264170a3884f17c68c42de679ffb0f16216154c996c354cf1161b654d432a'] | +| 16 | O | 0xb53ecF1345caBeE6eA1a65100Ebb153cEbcac40f | 1.5579e+08 | ['0xbb28494b8ede980f8a3711260f7cc2695df363d348fd5531d7959af7e3bcab6c7c68c42de679ffb0f16216154c996c354cf1161b654d432e'] | +| 17 | cbETH | 0xBe9895146f7AF43049ca1c1AE358B0541Ea49704 | 1.31396 | ['0xbee5a3b316e8a1e948be0b627c1fd3f9b239ae90ea9bf36a9d00cd6d123d167b7c68c42de679ffb0f16216154c996c354cf1161b654d4330'] | +| 18 | WETH | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | 21.2686 | ['0xfab4a01e0e323642d2cd39d3a3ad35afb36140fae2bad105e689a8f9c0b7b40b7c68c42de679ffb0f16216154c996c354cf1161b654d4334'] | +| 19 | ENS | 0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72 | 122.993 | ['0x6500fdf7b1b95ed8085dde3b94619c9e1ff2da7712402a96bae210dabf08b6027c68c42de679ffb0f16216154c996c354cf1161b654d4336'] | +| 20 | 80ASX-20WETH | 0xc88c76dD8b92408Fe9bEa1a54922A31E232d873c | 478.621 | ['0x8e42d2d913246e3640e209d8702abc94658c82df6ad8cdd15ab76ed28a341a6b7c68c42de679ffb0f16216154c996c354cf1161b654d433a'] | +| 21 | T | 0xCdF7028ceAB81fA0C6971208e83fa7872994beE5 | 58764.4 | ['0x7ecfa81159774efadb779bc2367d2c748da5a0f1087b3c1e984b1d7303226a7f7c68c42de679ffb0f16216154c996c354cf1161b654d433c'] | +| 22 | RDNT-WETH | 0xcF7b51ce5755513d4bE016b0e28D6EDEffa1d52a | 8671.45 | ['0xe8648c332f578ddb6469bfe1fe1d5df6faa4f9f1fe2bdabaf5eabbd86ab25eee7c68c42de679ffb0f16216154c996c354cf1161b654d433f'] | +| 23 | NOTE | 0xCFEAead4947f0705A14ec42aC3D44129E1Ef3eD5 | 8936.63 | ['0x223777e4cd591250ee7ffb9c9a1f8bbbe5c2bf383a3041c1809b1620b0717ec07c68c42de679ffb0f16216154c996c354cf1161b654d4341'] | +| 24 | ankrETH/wstETH | 0xdfE6e7e18f6Cc65FA13C8D8966013d4FdA74b6ba | 2.20868 | ['0x1c2aabebf4a2920f64034b9ee5057f3038a4154749c30fd9c4c2187c00a8da957c68c42de679ffb0f16216154c996c354cf1161b654d4347'] | +| 25 | swETH-WETH-BPT | 0xE7e2c68d3b13d905BBb636709cF4DfD21076b9D2 | 1.33738 | ['0x542e20d242afac7e14f619d5d02c2b9f2a9e8d7c526229773184b58bfa101eb67c68c42de679ffb0f16216154c996c354cf1161b654d434a'] | +| 26 | 20WETH-80ALCX | 0xf16aEe6a71aF1A9Bc8F56975A4c2705ca7A782Bc | 59.6375 | ['0xb7876174ad8a12ab8adc98fc41c88a4dfa0e19efba3f6731744a4ac8bf3de1397c68c42de679ffb0f16216154c996c354cf1161b654d4357'] | +| 27 | WNCG | 0xf203Ca1769ca8e9e8FE1DA9D147DB68B6c919817 | 15217.1 | ['0xc30816b9170444159ba3880dca417bc8f7a0998d26e83aee1095e17f6af3279f7c68c42de679ffb0f16216154c996c354cf1161b654d4359'] | +| 28 | LIT | 0xfd0205066521550D7d7AB19DA8F72bb004b4C341 | 55407.3 | ['0x5df4126afd4c96b8fc7bd2fbd69afeb24e0f22d3bf51f36a7095492f9cf734397c68c42de679ffb0f16216154c996c354cf1161b654d435f'] | \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-eth.report.txt b/FeeSweep/out/2023-11-09-eth.report.txt new file mode 100644 index 000000000..12875745b --- /dev/null +++ b/FeeSweep/out/2023-11-09-eth.report.txt @@ -0,0 +1,39 @@ +Sweep 11220.3425 of 80ROOT-20WETH(0x02ca8086498552c071451724d3a34caa3922b65a) worth $5369.384660569233 +Sweep 3898.9993 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $1636.4218354182299 +Sweep 102.2961 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $9192.401119664562 +Sweep 153375.2892 of 80BETS/20wstETH(0x26cc136e9b8fd65466f193a8e5710661ed9a9827) worth $1108.2462225214042 +Sweep 2807.8226 of 80PRTC-20WETH(0x271d57ce059780462f89800141a089008ca78d4a) worth $2236.462418574307 +Sweep 882.7427 of BADGER(0x3472a5a71965499acd81997a54bba8d852c6e53d) worth $3690.5753870351255 +Sweep 157.8611 of 50wstETH-50ACX(0x36be1e97ea98ab43b4debf92742517266f5731a3) worth $1996.8284065762011 +Sweep 2.0823 of ETHx-WETH-BPT(0x37b18b10ce5635a84834b26095a0ae5639dcb752) worth $3863.6884802509257 +Sweep 14205.5109 of STG/USDC(0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e) worth $11007.220490420075 +Sweep 44.5990 of INV(0x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68) worth $1376.649250487773 +Sweep 13.7840 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $25199.93136817049 +Sweep 3466.1610 of ECLP-R-sDAI(0x52b69d6b3eb0bd6b2b4a48a316dfb0e1460e67e4) worth $3480.7736016764575 +Sweep 174.2283 of GNO(0x6810e776880c02933d47db1b9fc05908e5386b96) worth $25404 +Sweep 2468.4059 of BTRST(0x799ebfabe77a6e34311eeee9825190b9ece32824) worth $1055.8104 +Sweep 1.0394 of wstETH(0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0) worth $2193.6602517636416 +Sweep 3.9198 of B-50COMP-50wstETH(0x87a867f5d240a782d43d90b6b06dea470f3f8f22) worth $1037.8312527305297 +Sweep 17716.9512 of DFX(0x888888435fde8e7d4c54cab67f206e4199454c60) worth $3336.4307200631847 +Sweep 10.2342 of wstETH-WETH-BPT(0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd) worth $19335.011318357607 +Sweep 8111.7712 of 80Silo-20WETH(0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd) worth $3614.247481465974 +Sweep 18.2041 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $4296.714477414527 +Sweep 1780.9983 of USDC(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48) worth $1780 +Sweep 155790318.0043 of O(0xb53ecf1345cabee6ea1a65100ebb153cebcac40f) worth $3071.6871187596457 +Sweep 9840.2544 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $37408.835321829225 +Sweep 1.3140 of cbETH(0xbe9895146f7af43049ca1c1ae358b0541ea49704) worth $2016.06 +Sweep 21.2686 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $40174.47 +Sweep 122.9935 of ENS(0xc18360217d8f7ab5e7c516566761ea12ce7f9d72) worth $1049.378080337615 +Sweep 478.6216 of 80ASX-20WETH(0xc88c76dd8b92408fe9bea1a54922a31e232d873c) worth $1297.6151646955964 +Sweep 58764.4843 of T(0xcdf7028ceab81fa0c6971208e83fa7872994bee5) worth $1512.154847952116 +Sweep 8671.4602 of RDNT-WETH(0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a) worth $11736.993693453442 +Sweep 8936.6387 of NOTE(0xcfeaead4947f0705a14ec42ac3d44129e1ef3ed5) worth $1253.2618854386633 +Sweep 2.2087 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $3891.423294321442 +Sweep 1.3374 of swETH-WETH-BPT(0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d2) worth $1935.2586460107698 +Sweep 2.6087 of ECLP-wstETH-wETH(0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1) worth $3865.1224452776473 +Sweep 59.6375 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $2068.5891310031893 +Sweep 15217.1365 of WNCG(0xf203ca1769ca8e9e8fe1da9d147db68b6c919817) worth $1165.6250220522065 +Sweep 2.4116 of ECLP-wstETH-cbETH(0xf7a826d47c8e02835d94fb0aa40f0cc9505cb134) worth $3860.888204913395 +Sweep 55407.3530 of LIT(0xfd0205066521550d7d7ab19da8f72bb004b4c341) worth $1305.9025966277923 + +>>>Total USD Value of sweeps at time of input json: $249825.55459583297 \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-mainnet.json b/FeeSweep/out/2023-11-09-mainnet.json new file mode 100644 index 000000000..ec26acfe9 --- /dev/null +++ b/FeeSweep/out/2023-11-09-mainnet.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[14351490630980372480, 338542930252663095296, 2295771002012156297216, 1272086959793944064, 51776497794556682240]", + "recipient": "", + "tokens": "[0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x40fb0516ac8ff93b48bcf9da7717e523e78c34f7, 0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd, 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba, 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-mainnet.report.txt b/FeeSweep/out/2023-11-09-mainnet.report.txt new file mode 100644 index 000000000..b0ce4ca04 --- /dev/null +++ b/FeeSweep/out/2023-11-09-mainnet.report.txt @@ -0,0 +1,7 @@ +Sweep 14.3529 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $1368.3782503950717 +Sweep 338.5768 of 17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH(0x40fb0516ac8ff93b48bcf9da7717e523e78c34f7) worth $1001.0987493939102 +Sweep 2296.0006 of 80Silo-20WETH(0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd) worth $1007.5956006207559 +Sweep 1.2722 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $1930.2724481003947 +Sweep 51.7817 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $1779.1759967681953 + +>>>Total USD Value of sweeps at time of input json: $7086.5210452783285 \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-zkevm.json b/FeeSweep/out/2023-11-09-zkevm.json new file mode 100644 index 000000000..a74b22ad5 --- /dev/null +++ b/FeeSweep/out/2023-11-09-zkevm.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[2030603981374909184, 3498939550990521344, 3950599532448296448]", + "recipient": "0xDd1e4b267Ff123eB2ccF1134bd2dc90C14956dDC", + "tokens": "[0x1d0a8a31cdb04efac3153237526fb15cc65a2520, 0xdf725fde6e89981fb30d9bf999841ac2c160b512, 0xe1f2c039a68a216de6dd427be6c60decf405762a]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-11-09-zkevm.report.txt b/FeeSweep/out/2023-11-09-zkevm.report.txt new file mode 100644 index 000000000..4989cfa4e --- /dev/null +++ b/FeeSweep/out/2023-11-09-zkevm.report.txt @@ -0,0 +1,5 @@ +Sweep 2.0308 of B-rETH-STABLE(0x1d0a8a31cdb04efac3153237526fb15cc65a2520) worth $3835.5524433756877 +Sweep 3.4993 of B-wstETH/rETH-STABLE(0xdf725fde6e89981fb30d9bf999841ac2c160b512) worth $5789.623024475073 +Sweep 3.9510 of B-wstETH-STABLE(0xe1f2c039a68a216de6dd427be6c60decf405762a) worth $5762.970143929335 + +>>>Total USD Value of sweeps at time of input json: $15388.145611780095 \ No newline at end of file diff --git a/FeeSweep/out/2023-11-15-avalanche.json b/FeeSweep/out/2023-11-15-avalanche.json new file mode 100644 index 000000000..3db55d2a4 --- /dev/null +++ b/FeeSweep/out/2023-11-15-avalanche.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[421824049646959329280, 196095903701890662400, 22739769067245993984, 73160935630299291648, 35165986460776820736, 214185120064146374656, 1028018220027693105152, 65608291456022044672, 204213268338674991104]", + "recipient": "0x68247248489fb0c1f55aea1bbac0aae829d9bf77", + "tokens": "[0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc, 0x66bb9d104c55861feb3ec3559433f01f6373c966, 0x670734d704eb7ef424d75321670f921fbf42e9cf, 0x721bd1900aeabc29009b08e44be37529f518f2c2, 0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9, 0xad0e5e0778cac28f1ff459602b31351871b5754a, 0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c96, 0xc13546b97b9b1b15372368dc06529d7191081f5b, 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-11-15-avalanche.report.txt b/FeeSweep/out/2023-11-15-avalanche.report.txt new file mode 100644 index 000000000..a965296a4 --- /dev/null +++ b/FeeSweep/out/2023-11-15-avalanche.report.txt @@ -0,0 +1,11 @@ +Sweep 421.8662 of BPT(0x55bec22f8f6c69137ceaf284d9b441db1b9bfedc) worth $409.39653462745105 +Sweep 196.1155 of BPT(0x66bb9d104c55861feb3ec3559433f01f6373c966) worth $198.38468820178872 +Sweep 22.7420 of sAVAX-ankrAVAX-BPT(0x670734d704eb7ef424d75321670f921fbf42e9cf) worth $458.5260728852468 +Sweep 73.1683 of 33VCHF-33sAVAX-33VEUR(0x721bd1900aeabc29009b08e44be37529f518f2c2) worth $222.03889791524483 +Sweep 35.1695 of yyAVAX-WAVAX-BPT(0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad9) worth $722.7832332986295 +Sweep 214.2065 of BPT(0xad0e5e0778cac28f1ff459602b31351871b5754a) worth $219.0622378421113 +Sweep 1028.1210 of USDC-USDT-BPT(0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c96) worth $1029.4932572127661 +Sweep 65.6149 of ggAVAX-WAVAX-BPT(0xc13546b97b9b1b15372368dc06529d7191081f5b) worth $1339.9331616478014 +Sweep 204.2337 of sAVAX-WAVAX-BPT(0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc) worth $4227.301837229588 + +>>>Total USD Value of sweeps at time of input json: $8826.919920860628 \ No newline at end of file diff --git a/FeeSweep/out/2023-11-15-base.json b/FeeSweep/out/2023-11-15-base.json new file mode 100644 index 000000000..b1088c2ad --- /dev/null +++ b/FeeSweep/out/2023-11-15-base.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xAcf05BE5134d64d150d153818F8C67EE36996650", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[121208515931377418240, 28282094850449059840, 145377461885792403456, 144465122022986498048]", + "recipient": "0x68247248489fb0c1f55aea1bbac0aae829d9bf77", + "tokens": "[0x0c659734f1eef9c63b7ebdf78a164cdd745586db, 0x433f09ca08623e48bac7128b7105de678e37d988, 0x990a0f03c3ee397cafda61cad277de18280751fd, 0xb328b50f1f7d97ee8ea391ab5096dd7657555f49]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-11-15-base.report.txt b/FeeSweep/out/2023-11-15-base.report.txt new file mode 100644 index 000000000..776a0e3bc --- /dev/null +++ b/FeeSweep/out/2023-11-15-base.report.txt @@ -0,0 +1,6 @@ +Sweep 121.2206 of USDC/USDbC/axlUSDC(0x0c659734f1eef9c63b7ebdf78a164cdd745586db) worth $121.34466560438293 +Sweep 28.2849 of 50GOLD/25WETH/25USDC(0x433f09ca08623e48bac7128b7105de678e37d988) worth $616.1054790738351 +Sweep 145.3920 of 50WETH-50TAG(0x990a0f03c3ee397cafda61cad277de18280751fd) worth $794.1435658409057 +Sweep 144.4796 of GOLD/BAL/USDC(0xb328b50f1f7d97ee8ea391ab5096dd7657555f49) worth $524.4554080050144 + +>>>Total USD Value of sweeps at time of input json: $2056.049118524138 \ No newline at end of file diff --git a/FeeSweep/out/2023-11-15-mainnet.json b/FeeSweep/out/2023-11-15-mainnet.json new file mode 100644 index 000000000..7722a2f26 --- /dev/null +++ b/FeeSweep/out/2023-11-15-mainnet.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1675378561300, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.11.1", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "withdrawCollectedFees", + "payable": false + }, + "contractInputsValues": { + "amounts": "[95043, 768321343010373763072, 2259360492397487456256, 2117074016788355481600, 87579766756854284288, 1261151233994616995840, 35039288337648099328, 931372533573175738368, 164787371978964893696, 25193446653720533139456, 338542930252663095296, 5186538792576717824, 429049481604053729280, 54547254020035261235200, 56628832277807874048, 72658569287133167616, 56336390372, 7796604215243954978816, 710785058286610022400, 1136085481626561937408, 769348885234058133504, 4110980571543875072, 2334887445467419639808, 2810779467186166272, 739414772778400874496, 676369634413174718464, 7109810871381072543744, 716687760172538265600, 8822980919322395648, 691711481055831261184, 14739727264785612406784, 846632249898586734592, 1760901188809674194944, 52509847326334951424, 600865785279902777344, 61997384715456061440, 2402990545161257984, 5699144492985714999296, 1134470163968120320, 122984557805040189440, 2317637995975604699136, 4627426581825514373120]", + "recipient": "0x68247248489fb0c1f55aea1bbac0aae829d9bf77", + "tokens": "[0x06c985ff69f7257e212a89828f79497a3c8b6edf, 0x0740a6cfb9468b8b53070c0b327099293dccb82d, 0x0f2d719407fdbeff09d87557abb7232601fd9f29, 0x0f5d2fb29fb7d3cfee444a200298f468908cc942, 0x1ee442b5326009bb18f2f472d3e0061513d1a0ff, 0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884, 0x2ba592f78db6436527729929aaf6c908497cb200, 0x3472a5a71965499acd81997a54bba8d852c6e53d, 0x36be1e97ea98ab43b4debf92742517266f5731a3, 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e, 0x40fb0516ac8ff93b48bcf9da7717e523e78c34f7, 0x42ed016f826165c2e5976fe5bc3df540c5ad0af7, 0x42fbd9f666aacc0026ca1b88c94259519e03dd67, 0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad, 0x514910771af9ca656af840dff83e8264ecf986ca, 0x616e8bfa43f920657b3497dbf40d6b1a02d4608d, 0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5, 0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8, 0x79c58f70905f734641735bc61e45c19dd9ad60bc, 0x8353157092ed8be69a9df8f95af097bbf33cb2af, 0x865377367054516e17014ccded1e7d814edc9ce4, 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd, 0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd, 0x9f9d900462492d4c21e9523ca95a7cd86142f298, 0xad0e5e0778cac28f1ff459602b31351871b5754a, 0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206, 0xba100000625a3754423978a60c9317c58a424e3d, 0xbe19d87ea6cd5b05bbc34b564291c371dae96747, 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0xc63958d9d01efa6b8266b1df3862c6323cbdb52b, 0xcafe001067cdef266afb7eb5a286dcfd277f3de5, 0xcce00da653eb50133455d4075fe8bca36750492c, 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a, 0xd278166dabaf26707362f7cfdd204b277fd2a460, 0xde30da39c46104798bb5aa3fe8b9e0e1f348163f, 0xdf2c03c12442c7a0895455a48569b889079ca52a, 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba, 0xe074fbcc87e18615d6b099ee603bd37de562416b, 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1, 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc, 0xf17e65822b568b3903685a7c9f496cf7656cc6c2, 0xf65b5c5104c4fafd4b709d9d60a185eae063276c]" + } + } + ] +} \ No newline at end of file diff --git a/FeeSweep/out/2023-11-15-mainnet.report.txt b/FeeSweep/out/2023-11-15-mainnet.report.txt new file mode 100644 index 000000000..da85b91f8 --- /dev/null +++ b/FeeSweep/out/2023-11-15-mainnet.report.txt @@ -0,0 +1,44 @@ +Sweep 95053.0000 of COIN(0x06c985ff69f7257e212a89828f79497a3c8b6edf) worth $926.0849647447393 +Sweep 768.3982 of ePyvCurveLUSD-29APR22(0x0740a6cfb9468b8b53070c0b327099293dccb82d) worth $787.1653468093064 +Sweep 2259.5865 of SYN(0x0f2d719407fdbeff09d87557abb7232601fd9f29) worth $957.2699890887966 +Sweep 2117.2857 of MANA(0x0f5d2fb29fb7d3cfee444a200298f468908cc942) worth $951.3446589052327 +Sweep 87.5885 of 50rETH-50BADGER(0x1ee442b5326009bb18f2f472d3e0061513d1a0ff) worth $7955.154979324157 +Sweep 1261.2774 of aCRV(0x2b95a1dcc3d405535f9ed33c219ab38e8d7e0884) worth $1053.1931069812151 +Sweep 35.0428 of CREAM(0x2ba592f78db6436527729929aaf6c908497cb200) worth $756.2474136324582 +Sweep 931.4657 of BADGER(0x3472a5a71965499acd81997a54bba8d852c6e53d) worth $3488.516847555171 +Sweep 164.8039 of 50wstETH-50ACX(0x36be1e97ea98ab43b4debf92742517266f5731a3) worth $2075.892231295192 +Sweep 25195.9663 of STG/USDC(0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e) worth $18968.549687650768 +Sweep 338.5768 of 17DNT-17WBTC-17KEY-17SNT-17USDC-17WETH(0x40fb0516ac8ff93b48bcf9da7717e523e78c34f7) worth $973.7196571415014 +Sweep 5.1871 of wstETH-rETH-sfrxETH-BPT(0x42ed016f826165c2e5976fe5bc3df540c5ad0af7) worth $10218.262968820192 +Sweep 429.0924 of 50COIL-50USDC(0x42fbd9f666aacc0026ca1b88c94259519e03dd67) worth $502.417904856278 +Sweep 54552.7093 of D2D(0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad) worth $512.1348327217892 +Sweep 56.6345 of LINK(0x514910771af9ca656af840dff83e8264ecf986ca) worth $842.3635374793024 +Sweep 72.6658 of auraBAL(0x616e8bfa43f920657b3497dbf40d6b1a02d4608d) worth $809.9302938939591 +Sweep 56.3420 of OHM(0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5) worth $638.5064554101323 +Sweep 7797.3840 of Silo(0x6f80310ca7f2c654691d1383149fa1a57d8ab1f8) worth $565.1310866529886 +Sweep 710.8561 of USDC-DAI-USDT(0x79c58f70905f734641735bc61e45c19dd9ad60bc) worth $713.6408963964875 +Sweep 1136.1991 of GHO/USDT/USDC(0x8353157092ed8be69a9df8f95af097bbf33cb2af) worth $1107.5843590927577 +Sweep 769.4258 of DOLA(0x865377367054516e17014ccded1e7d814edc9ce4) worth $766.2529040475584 +Sweep 4.1114 of wstETH-WETH-BPT(0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd) worth $8168.132815423673 +Sweep 2335.1210 of 80Silo-20WETH(0x9cc64ee4cb672bc04c54b00a37e1ed75b2cc19dd) worth $1096.2092072164187 +Sweep 2.8111 of 50rETH-50RPL(0x9f9d900462492d4c21e9523ca95a7cd86142f298) worth $507.507128134056 +Sweep 739.4887 of BPT(0xad0e5e0778cac28f1ff459602b31351871b5754a) worth $776.8790636327768 +Sweep 676.4373 of NEXO(0xb62132e35a6c13ee1ee0f84dc5d40bad8d815206) worth $508.83807951447324 +Sweep 7110.5219 of BAL(0xba100000625a3754423978a60c9317c58a424e3d) worth $28455.515145349073 +Sweep 716.7594 of GHO-3POOL-BPT(0xbe19d87ea6cd5b05bbc34b564291c371dae96747) worth $694.1064071669373 +Sweep 8.8239 of WETH(0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) worth $16338.88 +Sweep 691.7807 of ePyvCurve-MIM-29APR22(0xc63958d9d01efa6b8266b1df3862c6323cbdb52b) worth $695.2633239956167 +Sweep 14741.2014 of PSP(0xcafe001067cdef266afb7eb5a286dcfd277f3de5) worth $500.00779304447974 +Sweep 846.7169 of ePyvDAI-16SEP22(0xcce00da653eb50133455d4075fe8bca36750492c) worth $845.95747153468 +Sweep 1761.0773 of RDNT-WETH(0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a) worth $2360.3133513721477 +Sweep 52.5151 of 50USH-50WETH(0xd278166dabaf26707362f7cfdd204b277fd2a460) worth $553.2299897157926 +Sweep 600.9259 of GTC(0xde30da39c46104798bb5aa3fe8b9e0e1f348163f) worth $673.2409569613136 +Sweep 62.0036 of 80ARCH-20WETH(0xdf2c03c12442c7a0895455a48569b889079ca52a) worth $563.0774535875281 +Sweep 2.4032 of ankrETH/wstETH(0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba) worth $4110.631384614244 +Sweep 5699.7145 of 50WAGMI-50ICE(0xe074fbcc87e18615d6b099ee603bd37de562416b) worth $577.60592352476 +Sweep 1.1346 of ECLP-wstETH-wETH(0xf01b0684c98cd7ada480bfdf6e43876422fa1fc1) worth $2040.689741974751 +Sweep 122.9969 of 20WETH-80ALCX(0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc) worth $4282.584622604751 +Sweep 2317.8698 of BICO(0xf17e65822b568b3903685a7c9f496cf7656cc6c2) worth $700.1643576700804 +Sweep 4627.8894 of TRU(0xf65b5c5104c4fafd4b709d9d60a185eae063276c) worth $815.1698440377138 + +>>>Total USD Value of sweeps at time of input json: $130833.36818357524 \ No newline at end of file diff --git a/FeeSweep/out/placeholder b/FeeSweep/out/placeholder new file mode 100644 index 000000000..e69de29bb diff --git a/FeeSweep/out/rescueEulerFees.json b/FeeSweep/out/rescueEulerFees.json new file mode 100644 index 000000000..aa94ab24d --- /dev/null +++ b/FeeSweep/out/rescueEulerFees.json @@ -0,0 +1 @@ +{"version":"1.0","chainId":"1","createdAt":1681469236371,"meta":{"name":"Transactions Batch","description":"","txBuilderVersion":"1.13.3","createdFromSafeAddress":"0x7c68c42De679ffB0f16216154C996C354cF1161B","createdFromOwnerAddress":"","checksum":"0x0b149776f5e262796e8da1dbea0b02e3dae56b3aa045dfd2b68516347e605bad"},"transactions":[{"to":"0x5ef4c5352882b10893b70DbcaA0C000965bd23c5","value":"0","data":"0x6daefab6000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b000000000000000000000000000000000000000000000000000000000000000100000000000000000000000050cf90b954958480b8df7958a9e965752f627124000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000025a78653906d00f0c53","contractMethod":null,"contractInputsValues":{}},{"to":"0xBA12222222228d8Ba445958a75a0704d566BF2C8","value":"0","data":"0x8bdb391350cf90b954958480b8df7958a9e965752f62712400000000000000000000046f0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000003c640f0d3036ad85afa2d5a9e32be651657b874f00000000000000000000000050cf90b954958480b8df7958a9e965752f627124000000000000000000000000d4e7c1f3da1144c9e2cfd1b015eda7652b4a4399000000000000000000000000eb486af868aeb3b6e53066abc9623b1041b42bc000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000025a78653906d00f0c53","contractMethod":null,"contractInputsValues":{}},{"to":"0xBA12222222228d8Ba445958a75a0704d566BF2C8","value":"0","data":"0x8bdb39133c640f0d3036ad85afa2d5a9e32be651657b874f00000000000000000000046b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000003c640f0d3036ad85afa2d5a9e32be651657b874f0000000000000000000000004d19f33948b99800b6113ff3e83bec9b537c85d2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000234000d2fcdef4778a","contractMethod":null,"contractInputsValues":{}},{"to":"0xBA12222222228d8Ba445958a75a0704d566BF2C8","value":"0","data":"0x8bdb3913d4e7c1f3da1144c9e2cfd1b015eda7652b4a439900000000000000000000046a0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000d4e7c1f3da1144c9e2cfd1b015eda7652b4a4399000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eb91861f8a4e1c12333f42dce8fb0ecdc28da7160000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000012ad7d9fd2414d37d44","contractMethod":null,"contractInputsValues":{}},{"to":"0xBA12222222228d8Ba445958a75a0704d566BF2C8","value":"0","data":"0x8bdb3913eb486af868aeb3b6e53066abc9623b1041b42bc000000000000000000000046c0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000eb486af868aeb3b6e53066abc9623b1041b42bc00000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000e025e3ca2be02316033184551d4d3aa22024d9dc0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000010c80cc21dcd9a8cdc7","contractMethod":null,"contractInputsValues":{}},{"to":"0xBA12222222228d8Ba445958a75a0704d566BF2C8","value":"0","data":"0x0e8e3e84000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000006d5c247b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000001d7c00000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000067a0335795650085b30000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b0000000000000000000000007c68c42de679ffb0f16216154c996c354cf1161b","contractMethod":null,"contractInputsValues":{}}]} \ No newline at end of file diff --git a/FeeSweep/testMimicOpSweet.json b/FeeSweep/testMimicOpSweet.json new file mode 100644 index 000000000..cfb837423 --- /dev/null +++ b/FeeSweep/testMimicOpSweet.json @@ -0,0 +1 @@ +{"version":"1.0","chainId":"10","createdAt":1680545430984,"meta":{"name":"Transactions Batch","description":"","txBuilderVersion":"1.13.3","createdFromSafeAddress":"0xdCB017f63aCd34DD032A702315459ceCc05536DD","createdFromOwnerAddress":"","checksum":"0xae01b35151538ae828a92929b689779735411affd9e2d6a1dd9b2c8837cd8634"},"transactions":[{"to":"0xC128a9954e6c874eA3d62ce62B468bA073093F25","value":"0","data":null,"contractMethod":{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawCollectedFees","payable":false},"contractInputsValues":{"tokens":"[0xf30dB0Ca4605e5115Df91B56BD299564dcA02666, 0x359EA8618c405023Fc4B98dAb1B01F373792a126, 0x0c5b4c92c948691EEBf185C17eeB9c230DC019E9, 0x374Ad0f47F4ca39c78E5Cc54f1C9e426FF8f231A]","amounts":"[29028662863792471877, 15196663248267268306, 7813104610775949891, 20257941760487388647]","recipient":"0x7f4b5250C63E24360055342D2a4427079290F044"}}]} diff --git a/MaxiOps/00NewChainDeployment/linea-maxi-safe-setup.json b/MaxiOps/00NewChainDeployment/linea-maxi-safe-setup.json new file mode 100644 index 000000000..106355759 --- /dev/null +++ b/MaxiOps/00NewChainDeployment/linea-maxi-safe-setup.json @@ -0,0 +1,57 @@ +{ + "version": "1.0", + "chainId": "59144", + "createdAt": 1715167035913, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x1d59424549659c351dae53383c573bca3b67bd575e18dfc50ab81f21953cb302" + }, + "transactions": [ + { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "prevOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "owner", + "type": "address", + "internalType": "address" + }, + { + "name": "_threshold", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "removeOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "owner": "0x8053484489b110181a6DBA0b59Dda887e433F470", + "_threshold": "3" + } + }, + { + "to": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/00NewChainDeployment/mode+fraxtal-maxi-safe-setup.json b/MaxiOps/00NewChainDeployment/mode+fraxtal-maxi-safe-setup.json new file mode 100644 index 000000000..e4f1f4894 --- /dev/null +++ b/MaxiOps/00NewChainDeployment/mode+fraxtal-maxi-safe-setup.json @@ -0,0 +1,57 @@ +{ + "version": "1.0", + "chainId": "59144", + "createdAt": 1715167035913, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x1d59424549659c351dae53383c573bca3b67bd575e18dfc50ab81f21953cb302" + }, + "transactions": [ + { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "prevOwner", + "type": "address", + "internalType": "address" + }, + { + "name": "owner", + "type": "address", + "internalType": "address" + }, + { + "name": "_threshold", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "removeOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "owner": "0x8053484489b110181a6DBA0b59Dda887e433F470", + "_threshold": "3" + } + }, + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/00NewChainDeployment/replaceDAOTemplateOwners.json b/MaxiOps/00NewChainDeployment/replaceDAOTemplateOwners.json new file mode 100644 index 000000000..32c2aa048 --- /dev/null +++ b/MaxiOps/00NewChainDeployment/replaceDAOTemplateOwners.json @@ -0,0 +1,307 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1715095980758, + "meta": { + "name": "Transactions Batch", + "description": "Tenderly: https://dashboard.tenderly.co/public/safe/safe-apps/simulator/584b6cac-2739-4965-bf80-6744af9b9705", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "oldOwner": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "newOwner": "0xAc1aA53108712d7f38093A67d380aD54B562a650" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "oldOwner": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "newOwner": "0x823DF0278e4998cD0D06FB857fBD51e85b18A250" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "oldOwner": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "newOwner": "0x9BE6ff2A1D5139Eda96339E2644dC1F05d803600" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "oldOwner": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "newOwner": "0x9F7dfAb2222A473284205cdDF08a677726d786A0" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438", + "oldOwner": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "newOwner": "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "oldOwner": "0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438", + "newOwner": "0x0951FF0835302929d6c0162b3d2495A85e38ec3A" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "prevOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "oldOwner", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "swapOwner", + "payable": false + }, + "contractInputsValues": { + "prevOwner": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + "oldOwner": "0x11761c7b08287d9489CD84C04DF6852F5C07107b", + "newOwner": "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7", + "_threshold": "2" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1", + "_threshold": "2" + } + }, + { + "to": "0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA", + "_threshold": "6" + } + } + ] +} diff --git a/MaxiOps/00NewChainDeployment/replaceDAOTemplateOwners.report.txt b/MaxiOps/00NewChainDeployment/replaceDAOTemplateOwners.report.txt new file mode 100644 index 000000000..9d22c8617 --- /dev/null +++ b/MaxiOps/00NewChainDeployment/replaceDAOTemplateOwners.report.txt @@ -0,0 +1,121 @@ +FILENAME: `MaxiOps/00NewChainDeployment/replaceDAOTemplateOwners.json` +MULTISIG: `!NOT FOUND (gnosis:0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e)` +COMMIT: `f60220fbdd70d26570a24fbc999e4889b0bd88ad` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/f2d3b1c4-19d0-4fd3-860c-61a21251daf7) +``` ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=======================+========================================================+=========+===================================================================================+==============+============+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/emergency/zendragon)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 (EOA/emeritus/solarcurve_signer)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0xAc1aA53108712d7f38093A67d380aD54B562a650 (EOA/dao/davgarai)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/emergency/zekraken)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 (EOA/emergency/zendragon)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x823DF0278e4998cD0D06FB857fBD51e85b18A250 (EOA/dao/nanexcool)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D (EOA/maxi_deployers/mikeb)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae (EOA/emergency/zekraken)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x9BE6ff2A1D5139Eda96339E2644dC1F05d803600 (EOA/dao/bonustrack87)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D (EOA/maxi_deployers/mikeb)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x9F7dfAb2222A473284205cdDF08a677726d786A0 (EOA/dao/StefanDGeorge)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438 (EOA/maxis/danko)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 (EOA/maxis/xeonus)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 (EOA/dao/trentmc0)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "prevOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438 (EOA/maxis/danko)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0x0951FF0835302929d6c0162b3d2495A85e38ec3A (EOA/dao/mounibec)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| swapOwner | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "prevOwner": [ | | | +| | | | "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F (EOA/dao/tritium)" | | | +| | | | ], | | | +| | | | "oldOwner": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ], | | | +| | | | "newOwner": [ | | | +| | | | "0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 (EOA/dao/eboadom)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| addOwnerWithThreshold | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "owner": [ | | | +| | | | "0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 (EOA/dao/0xSausageDoge)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| addOwnerWithThreshold | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "owner": [ | | | +| | | | "0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 (EOA/dao/0xMaki)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| addOwnerWithThreshold | 0x4f22C2784Cbd2B24a172566491Ee73fee1A63c2e (Not Found) | 0 | { | N/A | N/A | +| | | | "owner": [ | | | +| | | | "0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA (EOA/dao/AlexLangeVC)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "6" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20.csv b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20.csv new file mode 100644 index 000000000..9b09359dd --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20.csv @@ -0,0 +1,12 @@ +recipientGaugeAddr,poolAddress,symbol,distribution,pctDistribution,pctToAura,distroToAura,distroToBalancer,voteWeightNoBoost,staticBoost,dynamicBoost,boost,voteWeight,cap,fixedIncentive +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069,rETH/wETH BPT,20000.0,20.0,0,0.0,20000.0,0.9758041777170349,1.0,1.0,1.0,0.9758041777170349,20%,0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552EEcD4b211bFc790CB,wstETH-WETH-BPT,17258.698675252937,17.258698675252937,0,0.0,17258.698675252937,0.23321110786370652,1.0,3.0,3.0,0.6996333235911196,20%,0 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb,cbETH/rETH/wstETH,16898.388794344544,16.898388794344545,0,0.0,16898.388794344544,0.2390552675344067,1.5,2.260364720569193,2.760364720569193,0.6598797267682062,20%,0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3FD4954a851eaD144c2FF72B1f5a38Ea5976Bd54,ankrETH/wstETH-BPT,10733.13290725405,10.733132907254051,0,0.0,10733.13290725405,0.28716462053194564,1.5,1.0,1.5,0.4307469307979185,20%,0 +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27,sFRAX/4POOL,10090.665252634475,10.090665252634475,0,0.0,10090.665252634475,0.4018410084424595,1.0,1.0,1.0,0.4018410084424595,20%,0 +0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x125bC5a031B2Db6733bfa35d914ffa428095978B,ECLP-AUSDC-AUSDT,7894.1361811126735,7.894136181112674,0,0.0,7894.1361811126735,0.17868221802318018,1.75,1.0,1.75,0.3126938815405653,20%,0 +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3,wstETH/sfrxETH,6169.690815171983,6.1696908151719825,0,0.0,6169.690815171983,0.0711401667128731,1.5,3.0,3.5,0.24899058349505584,20%,0 +0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xef0c116A2818A5b1A5D836A291856A321f43C2Fb,ECLP-WOETH-WETH,4075.6088229588668,4.075608822958867,0,0.0,4075.6088229588668,0.1649374320213969,1.0,1.0,1.0,0.1649374320213969,20%,0 +0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xB61371Ab661B1ACec81C699854D2f911070C059E,ezETH/wstETH,2877.1989512901996,2.8771989512901994,0,0.0,2877.1989512901996,0.0768603479000373,1.5,1.0,1.5,0.11529052185005595,20%,0 +0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0xCDCef9765D369954a4A936064535710f7235110A,ECLP-weETH-wstETH,2001.479258845087,2.001479258845087,0,0.0,2001.479258845087,3.9063149129299996e-05,1.5,1.0,1.5,5.859472369395e-05,20%,2000 +0x59907f88C360D576Aa38dba84F26578367F96b6C,0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739,rsETH/wETH,2001.000341135186,2.001000341135186,0,0.0,2001.000341135186,3.9063149129299996e-05,1.0,1.0,1.0,3.9063149129299996e-05,20%,2000 diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.json b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.json new file mode 100644 index 000000000..af7cf1126 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256[]", + "name": "planIds", + "type": "uint256[]" + } + ], + "name": "redeemPlans", + "payable": false + }, + "contractInputsValues": { + "planIds": "[1562]" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x59907f88C360D576Aa38dba84F26578367F96b6C,0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0x260cbb867359a1084eC97de4157d06ca74e89415]", + "amountsPerPeriod": "[1000500170567500000000,8449194397172200000000,1000739629422500000000,3947068090556300000000,10000000000000000000000,5045332626317200000000,1438599475645000000000,5366566453627000000000,3084845407585900000000,2037804411479400000000,8629349337626400000000]", + "maxPeriods": "[1,1,1,1,1,1,1,1,1,1,1]" + } + }, + { + "to": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "49999999999999400000000" + } + } + ] +} diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.report.txt b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.report.txt new file mode 100644 index 000000000..0622418f0 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.report.txt @@ -0,0 +1,52 @@ +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `eaf569c9e1d9b7fe3a92c8e31811ff6f375fb3af` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/02f24e6c-6be0-41f5-9df4-bf40df11333f) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 49999.9999999994 (RAW: 49999999999999400000000) | N/A | 2 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `eaf569c9e1d9b7fe3a92c8e31811ff6f375fb3af` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/921b5a3a-12bf-4ff7-9d0e-3dc795913ae1) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+---------------------------------------------------+---------+------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+---------------------------------------------------+---------+------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 49999999999999400000000/1e18 = 49999.9999999994 | 1 | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "1000500170567500000000/1e18 = 1000.5001705675", | 1, | | | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "8449194397172200000000/1e18 = 8449.1943971722", | 1, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)", | "1000739629422500000000/1e18 = 1000.7396294225", | 1, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)", | "3947068090556300000000/1e18 = 3947.0680905563", | 1, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "10000000000000000000000/1e18 = 10000.0", | 1, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "5045332626317200000000/1e18 = 5045.3326263172", | 1, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "1438599475645000000000/1e18 = 1438.599475645", | 1, | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "5366566453627000000000/1e18 = 5366.566453627", | 1, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "3084845407585900000000/1e18 = 3084.8454075859", | 1, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "2037804411479400000000/1e18 = 2037.8044114794", | 1, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)" | "8629349337626400000000/1e18 = 8629.3493376264" | 1 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+---------------------------------------------------+---------+------------------------------------------------------+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-06_2024-06-20_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `eaf569c9e1d9b7fe3a92c8e31811ff6f375fb3af` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/fea87f7a-dd51-488a-8b44-ee8bfa91d247) +``` ++-------------+--------------------------------------------------------+-------+----------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+--------------------------------------------------------+-------+----------------+------------+----------+ +| redeemPlans | 0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C (Not Found) | 0 | { | N/A | N/A | +| | | | "planIds": [ | | | +| | | | 1562 | | | +| | | | ] | | | +| | | | } | | | ++-------------+--------------------------------------------------------+-------+----------------+------------+----------+ +``` diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27.csv b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27.csv new file mode 100644 index 000000000..ab473ecdd --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27.csv @@ -0,0 +1,16 @@ +recipientGaugeAddr,poolAddress,symbol,distribution,pctDistribution,pctToAura,distroToAura,distroToBalancer,voteWeightNoBoost,staticBoost,dynamicBoost,boost,voteWeight,cap,fixedIncentive +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069,rETH/wETH BPT,16102.205918126516,18.297961270598314,0,0.0,16102.205918126516,1.062670152865554,1.0,1.0,1.0,1.062670152865554,20%,0 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb,cbETH/rETH/wstETH,10718.853915026875,12.18051581253054,0,0.0,10718.853915026875,0.2275189149475758,1.5,2.457486731444444,2.957486731444444,0.6728841721100924,20%,0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552EEcD4b211bFc790CB,wstETH-WETH-BPT,10582.20871062672,12.025237171166728,0,0.0,10582.20871062672,0.3034528587834563,1.0,2.4805227075594396,2.4805227075594396,0.7527217068861912,20%,0 +0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0xCDCef9765D369954a4A936064535710f7235110A,ECLP-weETH-wstETH,10138.892204510194,11.52146841421613,0,0.0,10138.892204510194,0.2636551563862605,1.5,1.0,1.5,0.39548273457939076,20%,4000 +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3,wstETH/sfrxETH,9289.357451369096,10.556088012919428,0,0.0,9289.357451369096,0.43221762767574284,1.5,1.0,1.5,0.6483264415136143,20%,0 +0x59907f88C360D576Aa38dba84F26578367F96b6C,0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739,rsETH/wETH,6782.139050099604,7.706976193295005,0,0.0,6782.139050099604,0.1734695333279586,1.0,1.0,1.0,0.1734695333279586,20%,4000 +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27,sFRAX/4POOL,6543.848339582164,7.436191294979731,0,0.0,6543.848339582164,0.4462649223453811,1.0,1.0,1.0,0.4462649223453811,20%,0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3FD4954a851eaD144c2FF72B1f5a38Ea5976Bd54,ankrETH/wstETH-BPT,5874.611639046477,6.675695044370997,0,0.0,5874.611639046477,0.2707908226606283,1.5,1.0,1.5,0.40618623399094245,20%,0 +0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x125bC5a031B2Db6733bfa35d914ffa428095978B,ECLP-AUSDC-AUSDT,5019.531147701066,5.704012667842121,0,0.0,5019.531147701066,0.1873086017364727,1.75,1.0,1.75,0.32779005303882724,20%,0 +0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xef0c116A2818A5b1A5D836A291856A321f43C2Fb,ECLP-WOETH-WETH,3724.8351542113837,4.232767220694754,0,0.0,3724.8351542113837,0.2636195135550357,1.0,1.0,1.0,0.2636195135550357,20%,0 +0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc,ETHx/wstETH,1675.8464268947753,1.9043709396531536,0,0.0,1675.8464268947753,0.06937355619869359,1.5,1.0,1.5,0.10406033429804039,20%,0 +0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xB61371Ab661B1ACec81C699854D2f911070C059E,ezETH/wstETH,1547.6700428051245,1.758715957733096,0,0.0,1547.6700428051245,0.0606588418497748,1.5,1.259736180192523,1.7597361801925233,0.10674355865162508,20%,0 +96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0x7967FA58B9501600D96bD843173b9334983EE6E6,ECLP-wstETH/ETH,10000,10000000000000000000000,10,0,0,10000,0,2,1,2,0,20%,10000 +0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1,0x5b89dC91E5a4Dc6D4AB0D970AF6A7F981971a443,instETH-wstETH,1000,1000000000000000000000,1,0,0,1000,0,1.5,1,1.5,0,20%,1000 +0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825,0xB8Cb384E65096386C1eDaaF784e842c957FA3645,inETH-wstETH,1000,1000000000000000000000,1,0,0,1000,0,1.5,1,1.5,0,20%,1000 \ No newline at end of file diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27_bal_injector_stream.json b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27_bal_injector_stream.json new file mode 100644 index 000000000..3c1e02499 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x59907f88C360D576Aa38dba84F26578367F96b6C,0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0x260cbb867359a1084eC97de4157d06ca74e89415,0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1,0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825]", + "amountsPerPeriod": "[837923213447350000000,3391069525049800000000,5359426957513400000000,5069446102255050000000,2509765573850500000000,8051102959063250000000,3271924169791050000000,773835021402550000000,2937305819523200000000,4644678725684500000000,1862417577105650000000,5291104355313350000000,5000000000000000000000,500000000000000000000,500000000000000000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "50000000000000000000000" + } + } + ] +} diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27_bal_injector_stream.report.txt b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27_bal_injector_stream.report.txt new file mode 100644 index 000000000..93c5aed64 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27_bal_injector_stream.report.txt @@ -0,0 +1,40 @@ +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `660742b425cbdf4f27370e1c36f491f865ef1d16` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ce866da7-c4b3-49ca-a483-3ede809ccee1) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+----------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+----------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 50000.0 (RAW: 50000000000000000000000) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+----------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-13_2024-06-27_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `660742b425cbdf4f27370e1c36f491f865ef1d16` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4a650d6d-fa92-4bc9-b0eb-aeca8d88edb1) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 49999999999999650000000/1e18 = 49999.99999999965 | 0 | +| | | | "0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804 (gauges/ETHx/wstETH-gauge-8f57)", | "837923213447350000000/1e18 = 837.92321344735", | 2, | | | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "3391069525049800000000/1e18 = 3391.0695250498", | 2, | | | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "5359426957513400000000/1e18 = 5359.4269575134", | 2, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)", | "5069446102255050000000/1e18 = 5069.44610225505", | 2, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)", | "2509765573850500000000/1e18 = 2509.7655738505", | 2, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "8051102959063250000000/1e18 = 8051.10295906325", | 2, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "3271924169791050000000/1e18 = 3271.92416979105", | 2, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "773835021402550000000/1e18 = 773.83502140255", | 2, | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "2937305819523200000000/1e18 = 2937.3058195232", | 2, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "4644678725684500000000/1e18 = 4644.6787256845", | 2, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "1862417577105650000000/1e18 = 1862.41757710565", | 2, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)", | "5291104355313350000000/1e18 = 5291.10435531335", | 2, | | | +| | | | "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19 (gauges/ECLP-wstETH-WETH-gauge-96d7)", | "5000000000000000000000/1e18 = 5000.0", | 2, | | | +| | | | "0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1 (gauges/instETH/wstETH-gauge-b072)", | "500000000000000000000/1e18 = 500.0", | 2, | | | +| | | | "0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825 (gauges/inETH/wstETH-gauge-2dea)" | "500000000000000000000/1e18 = 500.0" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +``` diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11.csv b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11.csv new file mode 100644 index 000000000..2ade1d4d8 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11.csv @@ -0,0 +1,17 @@ +recipientGaugeAddr,poolAddress,symbol,distribution,pctDistribution,pctToAura,distroToAura,distroToBalancer,voteWeightNoBoost,staticBoost,dynamicBoost,boost,voteWeight,cap,fixedIncentive +0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0x7967FA58B9501600D96bD843173b9334983EE6E6,ECLP-wstETH-WETH,14035.963367431807,14.035963367431807,0,0.0,14035.963367431807,0.36240487333187466,2.0,1.0,2.0,0.7248097466637493,20%,6000 +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3,wstETH/sfrxETH,10586.763767611817,10.586763767611817,0,0.0,10586.763767611817,0.6365874020357397,1.5,1.0,1.5,0.9548811030536095,20%,0 +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069,rETH/wETH BPT,8993.411453341663,8.993411453341663,0,0.0,8993.411453341663,0.8111674953071206,1.0,1.0,1.0,0.8111674953071206,20%,0 +0x59907f88C360D576Aa38dba84F26578367F96b6C,0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739,rsETH/wETH,8982.23851858494,8.98223851858494,0,0.0,8982.23851858494,0.4493767421973714,1.0,1.0,1.0,0.4493767421973714,20%,4000 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552EEcD4b211bFc790CB,wstETH-WETH-BPT,8152.829982977749,8.15282998297775,0,0.0,8152.829982977749,0.2451168729192139,1.0,3.0,3.0,0.7353506187576417,20%,0 +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27,sFRAX/4POOL,7282.7797647019415,7.2827797647019406,0,0.0,7282.7797647019415,0.6568757863748796,1.0,1.0,1.0,0.6568757863748796,20%,0 +0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0xCDCef9765D369954a4A936064535710f7235110A,ECLP-weETH-wstETH,6854.20404869184,6.854204048691841,0,0.0,6854.20404869184,0.4121467186911519,1.5,1.0,1.5,0.6182200780367278,20%,0 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb,cbETH/rETH/wstETH,6749.181464187531,6.749181464187531,0,0.0,6749.181464187531,0.17392785348891682,1.5,3.0,3.5,0.6087474872112089,20%,0 +0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xB61371Ab661B1ACec81C699854D2f911070C059E,ezETH/wstETH,5436.0928662038705,5.436092866203871,0,0.0,5436.0928662038705,0.32687498378953406,1.5,1.0,1.5,0.4903124756843011,20%,0 +0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xef0c116A2818A5b1A5D836A291856A321f43C2Fb,ECLP-WOETH-WETH,4411.901456629227,4.411901456629227,0,0.0,4411.901456629227,0.3979347628742153,1.0,1.0,1.0,0.3979347628742153,20%,0 +0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x125bC5a031B2Db6733bfa35d914ffa428095978B,ECLP-AUSDC-AUSDT,4274.029536109555,4.274029536109555,0,0.0,4274.029536109555,0.2202853151625116,1.75,1.0,1.75,0.38549930153439527,20%,0 +0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc,ETHx/wstETH,3300.0,3.3000000000000003,0,0.0,3300.0,0.0,1.5,1.0,1.5,0.0,20%,3300 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3FD4954a851eaD144c2FF72B1f5a38Ea5976Bd54,ankrETH/wstETH-BPT,3149.9831117022113,3.1499831117022112,0,0.0,3149.9831117022113,0.1894100604822801,1.5,1.0,1.5,0.2841150907234201,20%,0 +0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x6e822c64c00393b2078f2a5BB75c575aB505B55c,ECLP-GYD-AUSDC,2895.3103309129233,2.8953103309129236,0,0.0,2895.3103309129233,0.1492255360778304,1.75,1.0,1.75,0.2611446881362032,20%,0 +0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x7272163A931DaC5BBe1CB5feFaF959BB65F7346F,ECLP-GYD-AUSDT,2895.3103309129233,2.8953103309129236,0,0.0,2895.3103309129233,0.1492255360778304,1.75,1.0,1.75,0.2611446881362032,20%,0 +0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8,0xE8a6026365254f779b6927f00f8724EA1B8aE5E0,gUSDC/USDC,2000.0,2.0,0,0.0,2000.0,0.0,1.75,1.0,1.75,0.0,20%,2000 diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11_bal_injector_stream.json b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11_bal_injector_stream.json new file mode 100644 index 000000000..e4cf81186 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x59907f88C360D576Aa38dba84F26578367F96b6C,0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0x260cbb867359a1084eC97de4157d06ca74e89415,0xdB66fFFf713B1FA758E348e69E2f2e24595111cF]", + "amountsPerPeriod": "[3374590732093750000000,1574991555851100000000,1447655165456450000000,2718046433101900000000,3641389882350950000000,1000000000000000000000,4496705726670800000000,2137014768054750000000,5293381883805900000000,2205950728314600000000,1447655165456450000000,1650000000000000000000,4491119259292450000000,7017981683715900000000,4076414991488850000000,3427102024345900000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "49999999999999995805696" + } + } + ] +} diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11_bal_injector_stream.report.txt b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11_bal_injector_stream.report.txt new file mode 100644 index 000000000..5ccecb7ef --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11_bal_injector_stream.report.txt @@ -0,0 +1,41 @@ +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `880ef6eac93f33cd261788973d7af163c65ad45c` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d8be0360-f0ae-433d-82c4-dd5db37c0b34) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 49999.99999999999 (RAW: 49999999999999995805696) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-06-27_2024-07-11_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `880ef6eac93f33cd261788973d7af163c65ad45c` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a5c7fccd-bad8-4ac6-90ae-14a1b0f9fd72) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 49999999999999750000000/1e18 = 49999.99999999975 | 0 | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "3374590732093750000000/1e18 = 3374.59073209375", | 2, | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "1574991555851100000000/1e18 = 1574.9915558511", | 2, | | | +| | | | "0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525)", | "1447655165456450000000/1e18 = 1447.65516545645", | 2, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "2718046433101900000000/1e18 = 2718.0464331019", | 2, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "3641389882350950000000/1e18 = 3641.38988235095", | 2, | | | +| | | | "0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8 (gauges/gUSDC/USDC-gauge-0ce9)", | "1000000000000000000000/1e18 = 1000.0", | 2, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "4496705726670800000000/1e18 = 4496.7057266708", | 2, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)", | "2137014768054750000000/1e18 = 2137.01476805475", | 2, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "5293381883805900000000/1e18 = 5293.3818838059", | 2, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "2205950728314600000000/1e18 = 2205.9507283146", | 2, | | | +| | | | "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964)", | "1447655165456450000000/1e18 = 1447.65516545645", | 2, | | | +| | | | "0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804 (gauges/ETHx/wstETH-gauge-8f57)", | "1650000000000000000000/1e18 = 1650.0", | 2, | | | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "4491119259292450000000/1e18 = 4491.11925929245", | 2, | | | +| | | | "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19 (gauges/ECLP-wstETH-WETH-gauge-96d7)", | "7017981683715900000000/1e18 = 7017.9816837159", | 2, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)", | "4076414991488850000000/1e18 = 4076.41499148885", | 2, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)" | "3427102024345900000000/1e18 = 3427.1020243459" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +``` diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25.csv b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25.csv new file mode 100644 index 000000000..0eb3ec630 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25.csv @@ -0,0 +1,19 @@ +recipientGaugeAddr,poolAddress,symbol,distribution,pctDistribution,pctToAura,distroToAura,distroToBalancer,voteWeightNoBoost,staticBoost,dynamicBoost,boost,voteWeight,cap,fixedIncentive +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3,wstETH/sfrxETH,17135.65667001662,17.13565667001662,0,0.0,17135.65667001662,1.386969638511673,1.5,1.0,1.5,2.0804544577675097,20%,0 +0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0x7967FA58B9501600D96bD843173b9334983EE6E6,ECLP-wstETH-WETH,12006.616578310965,12.006616578310965,0,0.0,12006.616578310965,0.7288666977892977,2.0,1.0,2.0,1.4577333955785954,20%,0 +0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8,0x59743f1812bb85Db83e9e4EE061D124AAa642900,sUSDe/sFRAX,9573.682755409689,9.573682755409688,0,0.0,9573.682755409689,0.1273747627204597,1.5,1.0,1.5,0.19106214408068956,20%,8000 +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069,rETH/wETH BPT,7048.657969780438,7.048657969780438,0,0.0,7048.657969780438,0.8557834798457115,1.0,1.0,1.0,0.8557834798457115,20%,0 +0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0xCDCef9765D369954a4A936064535710f7235110A,ECLP-weETH-wstETH,6906.7187598536375,6.9067187598536375,0,0.0,6906.7187598536375,0.5590336808286845,1.5,1.0,1.5,0.8385505212430269,20%,0 +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27,sFRAX/4POOL,5895.617742940876,5.8956177429408765,0,0.0,5895.617742940876,0.7157918981918231,1.0,1.0,1.0,0.7157918981918231,20%,0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552EEcD4b211bFc790CB,wstETH-WETH-BPT,5253.570039784398,5.253570039784399,0,0.0,5253.570039784398,0.2126134492331789,1.0,3.0,3.0,0.6378403476995367,20%,0 +0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xB61371Ab661B1ACec81C699854D2f911070C059E,ezETH/wstETH,5240.38057196267,5.240380571962669,0,0.0,5240.38057196267,0.4241593355611747,1.5,1.0,1.5,0.636239003341762,20%,0 +0x59907f88C360D576Aa38dba84F26578367F96b6C,0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739,rsETH/wETH,5129.833078220905,5.129833078220905,0,0.0,5129.833078220905,0.6228173393472617,1.0,1.0,1.0,0.6228173393472617,20%,0 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb,cbETH/rETH/wstETH,4701.193657247073,4.701193657247074,0,0.0,4701.193657247073,0.1630788192863332,1.5,3.0,3.5,0.5707758675021661,20%,0 +0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8,0xE8a6026365254f779b6927f00f8724EA1B8aE5E0,gUSDC/USDC,3875.922342027567,3.8759223420275672,0,0.0,3875.922342027567,0.2689022768543039,1.75,1.0,1.75,0.4705789844950318,20%,0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3FD4954a851eaD144c2FF72B1f5a38Ea5976Bd54,ankrETH/wstETH-BPT,3229.282800829261,3.2292828008292607,0,0.0,3229.282800829261,0.2613799567281934,1.5,1.0,1.5,0.39206993509229016,20%,0 +0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x125bC5a031B2Db6733bfa35d914ffa428095978B,ECLP-AUSDC-AUSDT,3161.9366474435383,3.161936647443538,0,0.0,3161.9366474435383,0.2193676469074582,1.75,1.0,1.75,0.38389338208805185,20%,0 +0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xef0c116A2818A5b1A5D836A291856A321f43C2Fb,ECLP-WOETH-WETH,3147.365510819377,3.1473655108193768,0,0.0,3147.365510819377,0.3821242881613791,1.0,1.0,1.0,0.3821242881613791,20%,0 +0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C,0xdfa752ca3fF49d4B6dBE08E2d5a111f51773D395,sFRAX/FRAX,2797.658231839445,2.7976582318394447,0,0.0,2797.658231839445,0.3396660339212257,1.0,1.0,1.0,0.3396660339212257,20%,0 +0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x6e822c64c00393b2078f2a5BB75c575aB505B55c,ECLP-GYD-AUSDC,2447.9509528595095,2.4479509528595096,0,0.0,2447.9509528595095,0.1698330169606125,1.75,1.0,1.75,0.29720777968107187,20%,0 +0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x7272163A931DaC5BBe1CB5feFaF959BB65F7346F,ECLP-GYD-AUSDT,2447.9509528595095,2.4479509528595096,0,0.0,2447.9509528595095,0.1698330169606125,1.75,1.0,1.75,0.29720777968107187,20%,0 +0x879049Df2744B8D8848985C82275AD4c07379905,0x315dd595e82bDc0c194f3A38A08fDE480D7E5d21,ECLP-wUSDM-GYD,0.004737794534273487,4.737794534273486e-06,0,0.0,0.004737794534273487,5.752196107e-07,1.0,1.0,1.0,5.752196107e-07,20%,0 diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25_bal_injector_stream.json b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25_bal_injector_stream.json new file mode 100644 index 000000000..a1d491068 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x879049Df2744B8D8848985C82275AD4c07379905,0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x260cbb867359a1084eC97de4157d06ca74e89415,0x59907f88C360D576Aa38dba84F26578367F96b6C,0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8,0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8]", + "amountsPerPeriod": "[2368897250000000,2350596828623500000000,1223975476429750000000,1398829115919700000000,2947808871470400000000,3524328984890200000000,3453359379926800000000,8567828335008300000000,1614641400414600000000,2626785019892150000000,2564916539110450000000,6003308289155450000000,1223975476429750000000,1580968323721750000000,1573682755409650000000,2620190285981300000000,4786841377704800000000,1937961171013750000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "49999999999999995805696" + } + } + ] +} diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25_bal_injector_stream.report.txt b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25_bal_injector_stream.report.txt new file mode 100644 index 000000000..f6e03208c --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25_bal_injector_stream.report.txt @@ -0,0 +1,43 @@ +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `e64c3f5d053f666ba132292f66d64334f0e4b4f5` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/0c01d4f5-c027-437e-b657-df590aadce7c) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 49999.99999999999 (RAW: 49999999999999995805696) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-11_2024-07-25_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `e64c3f5d053f666ba132292f66d64334f0e4b4f5` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/0d5662da-8bc4-47c7-b82e-eaf7b30ad1bc) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 49999999999999550000000/1e18 = 49999.99999999955 | 0 | +| | | | "0x879049Df2744B8D8848985C82275AD4c07379905 (gauges/ECLP-wUSDM-GYD-gauge-8790)", | "2368897250000000/1e18 = 0.00236889725", | 2, | | | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "2350596828623500000000/1e18 = 2350.5968286235", | 2, | | | +| | | | "0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525)", | "1223975476429750000000/1e18 = 1223.97547642975", | 2, | | | +| | | | "0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C (gauges/sFRAX/FRAX-gauge-7dc6)", | "1398829115919700000000/1e18 = 1398.8291159197", | 2, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "2947808871470400000000/1e18 = 2947.8088714704", | 2, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "3524328984890200000000/1e18 = 3524.3289848902", | 2, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)", | "3453359379926800000000/1e18 = 3453.3593799268", | 2, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "8567828335008300000000/1e18 = 8567.8283350083", | 2, | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "1614641400414600000000/1e18 = 1614.6414004146", | 2, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)", | "2626785019892150000000/1e18 = 2626.78501989215", | 2, | | | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "2564916539110450000000/1e18 = 2564.91653911045", | 2, | | | +| | | | "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19 (gauges/ECLP-wstETH-WETH-gauge-96d7)", | "6003308289155450000000/1e18 = 6003.30828915545", | 2, | | | +| | | | "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964)", | "1223975476429750000000/1e18 = 1223.97547642975", | 2, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)", | "1580968323721750000000/1e18 = 1580.96832372175", | 2, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "1573682755409650000000/1e18 = 1573.68275540965", | 2, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "2620190285981300000000/1e18 = 2620.1902859813", | 2, | | | +| | | | "0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8 (gauges/sUSDe/sFRAX-gauge-4b88)", | "4786841377704800000000/1e18 = 4786.8413777048", | 2, | | | +| | | | "0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8 (gauges/gUSDC/USDC-gauge-0ce9)" | "1937961171013750000000/1e18 = 1937.96117101375" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +``` diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08.csv b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08.csv new file mode 100644 index 000000000..876dcca83 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08.csv @@ -0,0 +1,20 @@ +recipientGaugeAddr,poolAddress,symbol,distribution,pctDistribution,pctToAura,distroToAura,distroToBalancer,voteWeightNoBoost,staticBoost,dynamicBoost,boost,voteWeight,cap,fixedIncentive +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3,wstETH/sfrxETH,13253.073596275159,13.253073596275158,0,0.0,13253.073596275159,1.134324906995878,1.5,1.0,1.5,1.7014873604938172,20%,0 +0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0xCDCef9765D369954a4A936064535710f7235110A,ECLP-weETH-wstETH,11571.830400032684,11.571830400032685,0,0.0,11571.830400032684,0.5671624534979389,1.5,2.1194294438880217,2.6194294438880217,1.4856420301602722,20%,0 +0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0x7967FA58B9501600D96bD843173b9334983EE6E6,ECLP-wstETH-WETH,7730.959597827168,7.730959597827168,0,0.0,7730.959597827168,0.4962671468106962,2.0,1.0,2.0,0.9925342936213924,20%,0 +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27,sFRAX/4POOL,7167.565537984007,7.167565537984006,0,0.0,7167.565537984007,0.9202033082966102,1.0,1.0,1.0,0.9202033082966102,20%,0 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb,cbETH/rETH/wstETH,6324.852691756339,6.324852691756338,0,0.0,6324.852691756339,0.23200347416624548,1.5,3.0,3.5,0.8120121595818591,20%,0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552EEcD4b211bFc790CB,wstETH-WETH-BPT,6292.463649916332,6.292463649916331,0,0.0,6292.463649916332,0.2692846377338602,1.0,3.0,3.0,0.8078539132015805,20%,0 +0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8,0x59743f1812bb85Db83e9e4EE061D124AAa642900,sUSDe/sFRAX,6153.62445939471,6.1536244593947105,0,0.0,6153.62445939471,0.18432779738682992,1.5,1.0,1.5,0.2764916960802449,20%,4000 +0x59907f88C360D576Aa38dba84F26578367F96b6C,0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739,rsETH/wETH,5396.842153746653,5.396842153746653,0,0.0,5396.842153746653,0.49569406382849507,1.0,1.3977777260814366,1.3977777260814364,0.6928701213702602,20%,0 +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069,rETH/wETH BPT,4996.276352465883,4.996276352465883,0,0.0,4996.276352465883,0.6414437376733596,1.0,1.0,1.0,0.6414437376733596,20%,0 +0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xB61371Ab661B1ACec81C699854D2f911070C059E,ezETH/wstETH,4747.327689749551,4.747327689749551,0,0.0,4747.327689749551,0.3114702067080572,1.5,1.4567926884232087,1.9567926884232087,0.6094826231479918,20%,0 +0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8,0xE8a6026365254f779b6927f00f8724EA1B8aE5E0,gUSDC/USDC,4058.753788859263,4.058753788859263,0,0.0,4058.753788859263,0.2977602880864177,1.75,1.0,1.75,0.521080504151231,20%,0 +0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc,ETHx/wstETH,3598.1539032536143,3.598153903253614,0,0.0,3598.1539032536143,0.2135373910454814,1.5,1.6633058301832697,2.16330583018327,0.46194668301081465,20%,0 +0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x125bC5a031B2Db6733bfa35d914ffa428095978B,ECLP-AUSDC-AUSDT,3325.8514294673373,3.3258514294673374,0,0.0,3325.8514294673373,0.21977545073045102,1.75,1.19283439300548,1.94283439300548,0.4269873044174016,20%,0 +0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x7272163A931DaC5BBe1CB5feFaF959BB65F7346F,ECLP-GYD-AUSDT,3285.65782907655,3.28565782907655,0,0.0,3285.65782907655,0.2410440427366241,1.75,1.0,1.75,0.4218270747890922,20%,0 +0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x6e822c64c00393b2078f2a5BB75c575aB505B55c,ECLP-GYD-AUSDC,2802.472854212344,2.802472854212344,0,0.0,2802.472854212344,0.20559638939300237,1.75,1.0,1.75,0.35979368143775414,20%,0 +0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xef0c116A2818A5b1A5D836A291856A321f43C2Fb,ECLP-WOETH-WETH,2761.056999223991,2.7610569992239915,0,0.0,2761.056999223991,0.3544765334362119,1.0,1.0,1.0,0.3544765334362119,20%,0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3FD4954a851eaD144c2FF72B1f5a38Ea5976Bd54,ankrETH/wstETH-BPT,2667.75341739535,2.66775341739535,0,0.0,2667.75341739535,0.22833187525084117,1.5,1.0,1.5,0.34249781287626174,20%,0 +0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C,0xdfa752ca3fF49d4B6dBE08E2d5a111f51773D395,sFRAX/FRAX,2264.0667393636727,2.2640667393636726,0,0.0,2264.0667393636727,0.2906707574176937,1.0,1.0,1.0,0.2906707574176937,20%,0 +0x879049Df2744B8D8848985C82275AD4c07379905,0x315dd595e82bDc0c194f3A38A08fDE480D7E5d21,ECLP-wUSDM-GYD,1601.4169099993908,1.6014169099993907,0,0.0,1601.4169099993908,0.2055968837304913,1.0,1.0,1.0,0.2055968837304913,20%,0 diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.json b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.json new file mode 100644 index 000000000..0ad7e6ce6 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C,0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x59907f88C360D576Aa38dba84F26578367F96b6C,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8,0x260cbb867359a1084eC97de4157d06ca74e89415,0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0x879049Df2744B8D8848985C82275AD4c07379905,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8]", + "amountsPerPeriod": "[1401236427106150000000,1132033369681800000000,3162426345878150000000,1333876708697650000000,2698421076873300000000,2498138176232900000000,1380528499611950000000,2373663844874750000000,2029376894429600000000,3146231824958150000000,1799076951626800000000,5785915200016300000000,3865479798913550000000,1642828914538250000000,6626536798137550000000,800708454999650000000,3583782768992000000000,1662925714733650000000,3076812229697350000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "49999999999999995805696" + } + } + ] +} diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.report.txt b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.report.txt new file mode 100644 index 000000000..f8b677a01 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.report.txt @@ -0,0 +1,44 @@ +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `a1183bbaee0869d9483c57dde67e1baf181b4c60` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6c40b9fe-1440-4928-bab8-4f481f9cfa98) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 49999.99999999999 (RAW: 49999999999999995805696) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `a1183bbaee0869d9483c57dde67e1baf181b4c60` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/033918ac-8a46-4bec-a4cd-8210c68a2475) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 49999999999999500000000/1e18 = 49999.9999999995 | 0 | +| | | | "0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525)", | "1401236427106150000000/1e18 = 1401.23642710615", | 2, | | | +| | | | "0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C (gauges/sFRAX/FRAX-gauge-7dc6)", | "1132033369681800000000/1e18 = 1132.0333696818", | 2, | | | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "3162426345878150000000/1e18 = 3162.42634587815", | 2, | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "1333876708697650000000/1e18 = 1333.87670869765", | 2, | | | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "2698421076873300000000/1e18 = 2698.4210768733", | 2, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "2498138176232900000000/1e18 = 2498.1381762329", | 2, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "1380528499611950000000/1e18 = 1380.52849961195", | 2, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "2373663844874750000000/1e18 = 2373.66384487475", | 2, | | | +| | | | "0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8 (gauges/gUSDC/USDC-gauge-0ce9)", | "2029376894429600000000/1e18 = 2029.3768944296", | 2, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)", | "3146231824958150000000/1e18 = 3146.23182495815", | 2, | | | +| | | | "0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804 (gauges/ETHx/wstETH-gauge-8f57)", | "1799076951626800000000/1e18 = 1799.0769516268", | 2, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)", | "5785915200016300000000/1e18 = 5785.9152000163", | 2, | | | +| | | | "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19 (gauges/ECLP-wstETH-WETH-gauge-96d7)", | "3865479798913550000000/1e18 = 3865.47979891355", | 2, | | | +| | | | "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964)", | "1642828914538250000000/1e18 = 1642.82891453825", | 2, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "6626536798137550000000/1e18 = 6626.53679813755", | 2, | | | +| | | | "0x879049Df2744B8D8848985C82275AD4c07379905 (gauges/ECLP-wUSDM-GYD-gauge-8790)", | "800708454999650000000/1e18 = 800.70845499965", | 2, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "3583782768992000000000/1e18 = 3583.782768992", | 2, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)", | "1662925714733650000000/1e18 = 1662.92571473365", | 2, | | | +| | | | "0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8 (gauges/sUSDe/sFRAX-gauge-4b88)" | "3076812229697350000000/1e18 = 3076.81222969735" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +``` diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22.csv b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22.csv new file mode 100644 index 000000000..190008de1 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22.csv @@ -0,0 +1,26 @@ +recipientGaugeAddr,poolAddress,symbol,distribution,pctDistribution,pctToAura,distroToAura,distroToBalancer,voteWeightNoBoost,staticBoost,dynamicBoost,boost,voteWeight,cap,fixedIncentive +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3,wstETH/sfrxETH,12930.312680025683,12.930312680025683,0,0.0,12930.312680025683,1.343258815239993,1.5,1.0,1.5,2.014888222859989,20%,0 +0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0xCDCef9765D369954a4A936064535710f7235110A,ECLP-weETH-wstETH,8357.211099320644,8.357211099320644,0,0.0,8357.211099320644,0.5716219951533236,1.5,1.7782132441443639,2.278213244144364,1.302276800002527,20%,0 +0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0x7967FA58B9501600D96bD843173b9334983EE6E6,ECLP-wstETH-WETH,8352.94659183683,8.35294659183683,0,0.0,8352.94659183683,0.6508061378929114,2.0,1.0,2.0,1.3016122757858228,20%,0 +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27,sFRAX/4POOL,8250.415253726624,8.250415253726624,0,0.0,8250.415253726624,1.2856351535967003,1.0,1.0,1.0,1.2856351535967003,20%,0 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb,cbETH/rETH/wstETH,6610.38897748043,6.61038897748043,0,0.0,6610.38897748043,0.2943072105910335,1.5,3.0,3.5,1.0300752370686173,20%,0 +0xdDbDca6213b4a03d8C6fC1419Ef7B0b16B61d363,0x69D9BC07A19CAAD9aE4ca40Af18d5A688839a299,ECLP-gUSDC-AUSDC,5052.645860963055,5.052645860963055,0,0.0,5052.645860963055,0.4499069917096327,1.75,1.0,1.75,0.7873372354918573,20%,0 +0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xB61371Ab661B1ACec81C699854D2f911070C059E,ezETH/wstETH,4655.726303573579,4.655726303573578,0,0.0,4655.726303573579,0.48365770831517846,1.5,1.0,1.5,0.7254865624727677,20%,0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552EEcD4b211bFc790CB,wstETH-WETH-BPT,4367.670831752321,4.367670831752321,0,0.0,4367.670831752321,0.22686660763745128,1.0,3.0,3.0,0.6805998229123539,20%,0 +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069,rETH/wETH BPT,4200.1116423857375,4.200111642385738,0,0.0,4200.1116423857375,0.6544896239062441,1.0,1.0,1.0,0.6544896239062441,20%,0 +0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x7272163A931DaC5BBe1CB5feFaF959BB65F7346F,ECLP-GYD-AUSDT,4184.198786968082,4.184198786968082,0,0.0,4184.198786968082,0.3725771290452348,1.75,1.0,1.75,0.652009975829161,20%,0 +0x59907f88C360D576Aa38dba84F26578367F96b6C,0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739,rsETH/wETH,3887.6267773256827,3.8876267773256825,0,0.0,3887.6267773256827,0.6057961321081596,1.0,1.0,1.0,0.6057961321081596,20%,0 +0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc,ETHx/wstETH,3052.8436371541725,3.0528436371541723,0,0.0,3052.8436371541725,0.1879785942926082,1.5,2.030685021079224,2.530685021079224,0.4757146128598321,20%,0 +0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8,0x59743f1812bb85Db83e9e4EE061D124AAa642900,sUSDe/sFRAX,2909.7662723389894,2.9097662723389894,0,0.0,2909.7662723389894,0.302279557527266,1.5,1.0,1.5,0.453419336290899,20%,0 +0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xef0c116A2818A5b1A5D836A291856A321f43C2Fb,ECLP-WOETH-WETH,2885.89836372433,2.8858983637243303,0,0.0,2885.89836372433,0.3068280204715471,1.0,1.465642145948161,1.465642145948161,0.4497000783609446,20%,0 +0x7a45919ca9Cf2176833492B9D049B34312AF90fa,0xa899c63BA9ff275d6bfc83E43ee8E58fF6987584,ECLP-rETH-wstETH,2526.3249631837984,2.5263249631837983,0,0.0,2526.3249631837984,0.3936689344952577,1.0,1.0,1.0,0.3936689344952577,20%,0 +0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x125bC5a031B2Db6733bfa35d914ffa428095978B,ECLP-AUSDC-AUSDT,2526.308701565633,2.526308701565633,0,0.0,2526.308701565633,0.22495222885750019,1.75,1.0,1.75,0.39366640050062535,20%,0 +0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x6e822c64c00393b2078f2a5BB75c575aB505B55c,ECLP-GYD-AUSDC,2526.308701565633,2.526308701565633,0,0.0,2526.308701565633,0.22495222885750019,1.75,1.0,1.75,0.39366640050062535,20%,0 +0xdEC026525FE4FEF54857bCF551aEA97aBc24A673,0xdeEaF8B0A8Cf26217261b813e085418C7dD8F1eE,ECLP-sUSDe-GYD,2300.761686258295,2.300761686258295,0,0.0,2300.761686258295,0.3585201487362732,1.0,1.0,1.0,0.3585201487362732,20%,0 +0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF,0x36C2f879f446c3b6533f9703745C0504f3a84885,ECLP-sFRAX-aFRAX,2300.761686258295,2.300761686258295,0,0.0,2300.761686258295,0.3585201487362732,1.0,1.0,1.0,0.3585201487362732,20%,0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3FD4954a851eaD144c2FF72B1f5a38Ea5976Bd54,ankrETH/wstETH-BPT,2189.4366937498353,2.189436693749835,0,0.0,2189.4366937498353,0.22744849347939583,1.5,1.0,1.5,0.3411727402190937,20%,0 +0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C,0xdfa752ca3fF49d4B6dBE08E2d5a111f51773D395,sFRAX/FRAX,1894.7315261742256,1.8947315261742255,0,0.0,1894.7315261742256,0.2952498003754691,1.0,1.0,1.0,0.2952498003754691,20%,0 +0x879049Df2744B8D8848985C82275AD4c07379905,0x315dd595e82bDc0c194f3A38A08fDE480D7E5d21,ECLP-wUSDM-GYD,1443.604972323219,1.4436049723232192,0,0.0,1443.604972323219,0.22495222885750019,1.0,1.0,1.0,0.22495222885750019,20%,0 +0xd9BE61a0a58A301B078033757bAC9474C276362E,0x71c64ac8Ec1DA03f8A05C3cfEB6493E6DAd54a6F,ECLP-wUSDM-USDC-rh,1308.2832677860818,1.3082832677860816,0,0.0,1308.2832677860818,0.2038654913967418,1.0,1.0,1.0,0.2038654913967418,20%,0 +0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825,0xB8Cb384E65096386C1eDaaF784e842c957FA3645,inETH/wstETH,1285.7106784753669,1.285710678475367,0,0.0,1285.7106784753669,0.1335653858841407,1.5,1.0,1.5,0.20034807882621108,20%,0 +0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1,0x5b89dC91E5a4Dc6D4AB0D970AF6A7F981971a443,instETH/wstETH,0.004044083445852227,4.044083445852227e-06,0,0.0,0.004044083445852227,4.2011750780000006e-07,1.5,1.0,1.5,6.301762617000001e-07,20%,0 diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22_bal_injector_stream.json b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22_bal_injector_stream.json new file mode 100644 index 000000000..6543ec3ca --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0xdDbDca6213b4a03d8C6fC1419Ef7B0b16B61d363,0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825,0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0x260cbb867359a1084eC97de4157d06ca74e89415,0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C,0xd9BE61a0a58A301B078033757bAC9474C276362E,0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x7a45919ca9Cf2176833492B9D049B34312AF90fa,0x879049Df2744B8D8848985C82275AD4c07379905,0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF,0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1,0xdEC026525FE4FEF54857bCF551aEA97aBc24A673,0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x59907f88C360D576Aa38dba84F26578367F96b6C,0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b]", + "amountsPerPeriod": "[1094718346874900000000,2526322930481500000000,642855339237650000000,4176473295918400000000,2183835415876150000000,947365763087100000000,654141633893000000000,1454883136169450000000,4125207626863300000000,6465156340012800000000,4178605549660300000000,2100055821192850000000,2327863151786750000000,1526421818577050000000,1263162481591850000000,721802486161600000000,3305194488740200000000,1150380843129100000000,2022041700000000,1150380843129100000000,2092099393484000000000,1263154350782800000000,1943813388662800000000,1442949181862150000000,1263154350782800000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "49999999999999995805696" + } + } + ] +} diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22_bal_injector_stream.report.txt b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22_bal_injector_stream.report.txt new file mode 100644 index 000000000..0569a21e9 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22_bal_injector_stream.report.txt @@ -0,0 +1,50 @@ +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `928ef941891162f8184294ad14592e66dd564371` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2fb6f0a0-48b7-48f3-bbb9-ffa578135ac1) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 49999.99999999999 (RAW: 49999999999999995805696) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-08_2024-08-22_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `928ef941891162f8184294ad14592e66dd564371` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e8978b64-ee2a-4ce1-977f-825f010940ff) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 49999999999999300000000/1e18 = 49999.9999999993 | 0 | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "1094718346874900000000/1e18 = 1094.7183468749", | 2, | | | +| | | | "0xdDbDca6213b4a03d8C6fC1419Ef7B0b16B61d363 (gauges/ECLP-gUSDC-AUSDC-gauge-ddbd)", | "2526322930481500000000/1e18 = 2526.3229304815", | 2, | | | +| | | | "0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825 (gauges/inETH/wstETH-gauge-2dea)", | "642855339237650000000/1e18 = 642.85533923765", | 2, | | | +| | | | "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19 (gauges/ECLP-wstETH-WETH-gauge-96d7)", | "4176473295918400000000/1e18 = 4176.4732959184", | 2, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)", | "2183835415876150000000/1e18 = 2183.83541587615", | 2, | | | +| | | | "0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C (gauges/sFRAX/FRAX-gauge-7dc6)", | "947365763087100000000/1e18 = 947.3657630871", | 2, | | | +| | | | "0xd9BE61a0a58A301B078033757bAC9474C276362E (gauges/ECLP-wUSDM-USDC-rh-gauge-d9be)", | "654141633893000000000/1e18 = 654.141633893", | 2, | | | +| | | | "0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8 (gauges/sUSDe/sFRAX-gauge-4b88)", | "1454883136169450000000/1e18 = 1454.88313616945", | 2, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "4125207626863300000000/1e18 = 4125.2076268633", | 2, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "6465156340012800000000/1e18 = 6465.1563400128", | 2, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)", | "4178605549660300000000/1e18 = 4178.6055496603", | 2, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "2100055821192850000000/1e18 = 2100.05582119285", | 2, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "2327863151786750000000/1e18 = 2327.86315178675", | 2, | | | +| | | | "0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804 (gauges/ETHx/wstETH-gauge-8f57)", | "1526421818577050000000/1e18 = 1526.42181857705", | 2, | | | +| | | | "0x7a45919ca9Cf2176833492B9D049B34312AF90fa (gauges/ECLP-rETH-wstETH-gauge-7a45)", | "1263162481591850000000/1e18 = 1263.16248159185", | 2, | | | +| | | | "0x879049Df2744B8D8848985C82275AD4c07379905 (gauges/ECLP-wUSDM-GYD-gauge-8790)", | "721802486161600000000/1e18 = 721.8024861616", | 2, | | | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "3305194488740200000000/1e18 = 3305.1944887402", | 2, | | | +| | | | "0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF (gauges/ECLP-sFRAX-aFRAX-gauge-b76e)", | "1150380843129100000000/1e18 = 1150.3808431291", | 2, | | | +| | | | "0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1 (gauges/instETH/wstETH-gauge-b072)", | "2022041700000000/1e18 = 0.0020220417", | 2, | | | +| | | | "0xdEC026525FE4FEF54857bCF551aEA97aBc24A673 (gauges/ECLP-sUSDe-GYD-gauge-dec0)", | "1150380843129100000000/1e18 = 1150.3808431291", | 2, | | | +| | | | "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964)", | "2092099393484000000000/1e18 = 2092.099393484", | 2, | | | +| | | | "0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525)", | "1263154350782800000000/1e18 = 1263.1543507828", | 2, | | | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "1943813388662800000000/1e18 = 1943.8133886628", | 2, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "1442949181862150000000/1e18 = 1442.94918186215", | 2, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)" | "1263154350782800000000/1e18 = 1263.1543507828" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +``` diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05.csv b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05.csv new file mode 100644 index 000000000..cc911f87c --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05.csv @@ -0,0 +1,26 @@ +recipientGaugeAddr,poolAddress,symbol,distribution,pctDistribution,pctToAura,distroToAura,distroToBalancer,voteWeightNoBoost,staticBoost,dynamicBoost,boost,voteWeight,cap,fixedIncentive +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bFeA1Fe18dFcaBD21C7165c40c6859d3,wstETH/sfrxETH,16828.783811829704,16.8287838118297,0,0.0,16828.783811829704,1.7299804902196916,1.5,1.0,1.5,2.5949707353295373,20%,0 +0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0xCDCef9765D369954a4A936064535710f7235110A,ECLP-weETH-wstETH,8981.130502149937,8.981130502149938,0,0.0,8981.130502149937,0.577064969537998,1.5,1.8998606716830715,2.3998606716830713,1.384875525400231,20%,0 +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2CE4457aCac29dA4736aE6f5Cd9F583a6b335c27,sFRAX/4POOL,8926.441485134012,8.926441485134012,0,0.0,8926.441485134012,1.3764425690863877,1.0,1.0,1.0,1.3764425690863877,20%,0 +0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0x7967FA58B9501600D96bD843173b9334983EE6E6,ECLP-wstETH-WETH,8616.913080075085,8.616913080075085,0,0.0,8616.913080075085,0.6643568995150696,2.0,1.0,2.0,1.3287137990301392,20%,0 +0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x7272163A931DaC5BBe1CB5feFaF959BB65F7346F,ECLP-GYD-AUSDT,5316.578849836886,5.316578849836886,0,0.0,5316.578849836886,0.46846154207023755,1.75,1.0,1.75,0.8198076986229157,20%,0 +0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x6e822c64c00393b2078f2a5BB75c575aB505B55c,ECLP-GYD-AUSDC,5316.578849836886,5.316578849836886,0,0.0,5316.578849836886,0.46846154207023755,1.75,1.0,1.75,0.8198076986229157,20%,0 +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0EC47c54cA5e20aaAe4616c25C825c7f48D4069,rETH/wETH BPT,4793.198957232152,4.793198957232152,0,0.0,4793.198957232152,0.7391033815459744,1.0,1.0,1.0,0.7391033815459744,20%,0 +0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0xB61371Ab661B1ACec81C699854D2f911070C059E,ezETH/wstETH,4611.731403814842,4.611731403814842,0,0.0,4611.731403814842,0.47408092253968526,1.5,1.0,1.5,0.7111213838095278,20%,0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552EEcD4b211bFc790CB,wstETH-WETH-BPT,4466.772479367356,4.466772479367356,0,0.0,4466.772479367356,0.22958965216856048,1.0,3.0,3.0,0.6887689565056814,20%,0 +0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591,0xff38cC0cE0DE4476C5a3e78675b48420A851035B,ECLP-GHO-GYD-rh,4410.052617334224,4.410052617334224,0,0.0,4410.052617334224,0.3716261425968548,1.0,1.0,1.0,0.3716261425968548,20%,2000 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6CeD12420a9AF5a83765a8c48Be2aFcD1A8FEb,cbETH/rETH/wstETH,4381.90665397228,4.38190665397228,0,0.0,4381.90665397228,0.2099905158239958,1.5,2.717682395846058,3.217682395846058,0.6756827860615044,20%,0 +0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x7B54C44fBe6Db6D97FD22b8756f89c0aF16202Cc,ETHx/wstETH,4126.3599798344985,4.126359979834499,0,0.0,4126.3599798344985,0.216628597358087,1.5,2.4371833531142593,2.9371833531142593,0.6362779099686647,20%,0 +0x59907f88C360D576Aa38dba84F26578367F96b6C,0x90e6CB5249f5e1572afBF8A96D8A1ca6aCFFd739,rsETH/wETH,3481.5540887348297,3.4815540887348297,0,0.0,3481.5540887348297,0.5368499039950233,1.0,1.0,1.0,0.5368499039950233,20%,0 +0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8,0x59743f1812bb85Db83e9e4EE061D124AAa642900,sUSDe/sFRAX,2945.61986563072,2.94561986563072,0,0.0,2945.61986563072,0.3028064865604004,1.5,1.0,1.5,0.4542097298406006,20%,0 +0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF,0x36C2f879f446c3b6533f9703745C0504f3a84885,ECLP-sFRAX-aFRAX,2677.836241482473,2.677836241482473,0,0.0,2677.836241482473,0.41291793621872785,1.0,1.0,1.0,0.41291793621872785,20%,0 +0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b,0x125bC5a031B2Db6733bfa35d914ffa428095978B,ECLP-AUSDC-AUSDT,2265.00315425392,2.26500315425392,0,0.0,2265.00315425392,0.199577002505718,1.75,1.0,1.75,0.3492597543850065,20%,0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3FD4954a851eaD144c2FF72B1f5a38Ea5976Bd54,ankrETH/wstETH-BPT,1969.859731474976,1.969859731474976,0,0.0,1969.859731474976,0.20249941659631998,1.5,1.0,1.5,0.30374912489447997,20%,0 +0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825,0xB8Cb384E65096386C1eDaaF784e842c957FA3645,inETH/wstETH,1673.6476509265403,1.6736476509265403,0,0.0,1673.6476509265403,0.1720491400911361,1.5,1.0,1.5,0.2580737101367041,20%,0 +0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C,0xdfa752ca3fF49d4B6dBE08E2d5a111f51773D395,sFRAX/FRAX,1249.6569126918207,1.2496569126918207,0,0.0,1249.6569126918207,0.19269503690207299,1.0,1.0,1.0,0.19269503690207299,20%,0 +0x7a45919ca9Cf2176833492B9D049B34312AF90fa,0xa899c63BA9ff275d6bfc83E43ee8E58fF6987584,ECLP-rETH-wstETH,1205.0263086671118,1.2050263086671118,0,0.0,1205.0263086671118,0.1858130712984274,1.0,1.0,1.0,0.1858130712984274,20%,0 +0xdEC026525FE4FEF54857bCF551aEA97aBc24A673,0xdeEaF8B0A8Cf26217261b813e085418C7dD8F1eE,ECLP-sUSDe-GYD,892.6120804941578,0.8926120804941577,0,0.0,892.6120804941578,0.1376393120729093,1.0,1.0,1.0,0.1376393120729093,20%,0 +0x879049Df2744B8D8848985C82275AD4c07379905,0x315dd595e82bDc0c194f3A38A08fDE480D7E5d21,ECLP-wUSDM-GYD,847.9814764694484,0.8479814764694483,0,0.0,847.9814764694484,0.1307573464692636,1.0,1.0,1.0,0.1307573464692636,20%,0 +0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xef0c116A2818A5b1A5D836A291856A321f43C2Fb,ECLP-WOETH-WETH,14.738150987808064,0.014738150987808065,0,0.0,14.738150987808064,0.0022725985985598,1.0,1.0,1.0,0.0022725985985598,20%,0 +0xcfab2efeF3aFfdd158568DC896115Eac26B3C498,0x38161e9eFb8De52D00A1eB0f773223FD28FDd7c2,ECLP-GHO-USDe-rh,0.012333776108425534,1.2333776108425535e-05,0,0.0,0.012333776108425534,9.509239769e-07,2.0,1.0,2.0,1.9018479538e-06,20%,0 +0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1,0x5b89dC91E5a4Dc6D4AB0D970AF6A7F981971a443,instETH/wstETH,0.0033339922211615674,3.333992221161567e-06,0,0.0,0.0033339922211615674,3.427307381e-07,1.5,1.0,1.5,5.1409610715e-07,20%,0 diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05_bal_injector_stream.json b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05_bal_injector_stream.json new file mode 100644 index 000000000..277258a22 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x052597B6633814a0a6eA9020eE46E25Aa6936E49,0x879049Df2744B8D8848985C82275AD4c07379905,0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804,0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8,0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x7a45919ca9Cf2176833492B9D049B34312AF90fa,0xdEC026525FE4FEF54857bCF551aEA97aBc24A673,0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912,0x40e86216712cB9871B9C698EA3AFB22f88c00E6e,0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1,0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591,0x59907f88C360D576Aa38dba84F26578367F96b6C,0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09,0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C,0xdB66fFFf713B1FA758E348e69E2f2e24595111cF,0xcfab2efeF3aFfdd158568DC896115Eac26B3C498,0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825,0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19,0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x260cbb867359a1084eC97de4157d06ca74e89415,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b]", + "amountsPerPeriod": "[2658289424918400000000,423990738234700000000,2063179989917200000000,1472809932815350000000,2190953326986100000000,602513154333550000000,446306040247050000000,2305865701907400000000,7369075493900000000,1666996100000000,2205026308667100000000,1740777044367400000000,2658289424918400000000,624828456345900000000,4490565251074950000000,6166888050000000,836823825463250000000,4308456540037500000000,1338918120741200000000,984929865737450000000,2233386239683650000000,8414391905914850000000,2396599478616050000000,4463220742567000000000,1132501577126950000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912ce59144191c1204e64559fe8253a0e49e6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "49999999999999995805696" + } + } + ] +} diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05_bal_injector_stream.report.txt b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05_bal_injector_stream.report.txt new file mode 100644 index 000000000..822300b38 --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05_bal_injector_stream.report.txt @@ -0,0 +1,50 @@ +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `83afcd49caf8c51357cf1c4d0d28104c476e97cf` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9f25016b-607a-4586-b6c0-4cea90489e5e) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 49999.99999999999 (RAW: 49999999999999995805696) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/arbitrum_stip_bridge_start_q2_2024_2024-08-22_2024-09-05_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `83afcd49caf8c51357cf1c4d0d28104c476e97cf` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/239973e0-cc52-4620-beef-aae895453c20) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 49999999999999450000000/1e18 = 49999.99999999945 | 0 | +| | | | "0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525)", | "2658289424918400000000/1e18 = 2658.2894249184", | 2, | | | +| | | | "0x879049Df2744B8D8848985C82275AD4c07379905 (gauges/ECLP-wUSDM-GYD-gauge-8790)", | "423990738234700000000/1e18 = 423.9907382347", | 2, | | | +| | | | "0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804 (gauges/ETHx/wstETH-gauge-8f57)", | "2063179989917200000000/1e18 = 2063.1799899172", | 2, | | | +| | | | "0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8 (gauges/sUSDe/sFRAX-gauge-4b88)", | "1472809932815350000000/1e18 = 1472.80993281535", | 2, | | | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "2190953326986100000000/1e18 = 2190.9533269861", | 2, | | | +| | | | "0x7a45919ca9Cf2176833492B9D049B34312AF90fa (gauges/ECLP-rETH-wstETH-gauge-7a45)", | "602513154333550000000/1e18 = 602.51315433355", | 2, | | | +| | | | "0xdEC026525FE4FEF54857bCF551aEA97aBc24A673 (gauges/ECLP-sUSDe-GYD-gauge-dec0)", | "446306040247050000000/1e18 = 446.30604024705", | 2, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "2305865701907400000000/1e18 = 2305.8657019074", | 2, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "7369075493900000000/1e18 = 7.3690754939", | 2, | | | +| | | | "0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1 (gauges/instETH/wstETH-gauge-b072)", | "1666996100000000/1e18 = 0.0016669961", | 2, | | | +| | | | "0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591 (gauges/ECLP-GHO-GYD-rh-gauge-2ffa)", | "2205026308667100000000/1e18 = 2205.0263086671", | 2, | | | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "1740777044367400000000/1e18 = 1740.7770443674", | 2, | | | +| | | | "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964)", | "2658289424918400000000/1e18 = 2658.2894249184", | 2, | | | +| | | | "0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C (gauges/sFRAX/FRAX-gauge-7dc6)", | "624828456345900000000/1e18 = 624.8284563459", | 2, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)", | "4490565251074950000000/1e18 = 4490.56525107495", | 2, | | | +| | | | "0xcfab2efeF3aFfdd158568DC896115Eac26B3C498 (gauges/ECLP-GHO-USDe-rh-gauge-cfab)", | "6166888050000000/1e18 = 0.00616688805", | 2, | | | +| | | | "0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825 (gauges/inETH/wstETH-gauge-2dea)", | "836823825463250000000/1e18 = 836.82382546325", | 2, | | | +| | | | "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19 (gauges/ECLP-wstETH-WETH-gauge-96d7)", | "4308456540037500000000/1e18 = 4308.4565400375", | 2, | | | +| | | | "0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF (gauges/ECLP-sFRAX-aFRAX-gauge-b76e)", | "1338918120741200000000/1e18 = 1338.9181207412", | 2, | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "984929865737450000000/1e18 = 984.92986573745", | 2, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)", | "2233386239683650000000/1e18 = 2233.38623968365", | 2, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "8414391905914850000000/1e18 = 8414.39190591485", | 2, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "2396599478616050000000/1e18 = 2396.59947861605", | 2, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "4463220742567000000000/1e18 = 4463.220742567", | 2, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)" | "1132501577126950000000/1e18 = 1132.50157712695" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+-------------------------------------------------------+----------+ +``` diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/conclude_stip.json b/MaxiOps/00grants/Arbitrum/LTIPP/conclude_stip.json new file mode 100644 index 000000000..a2630dede --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/conclude_stip.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726832144524, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "0x18103990e1e45507505d50b7e4a18f9527873d7b69374a77c2e6944cdaabf4bb" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[]", + "amountsPerPeriod": "[]", + "maxPeriods": "[]" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/00grants/Arbitrum/LTIPP/conclude_stip.report.txt b/MaxiOps/00grants/Arbitrum/LTIPP/conclude_stip.report.txt new file mode 100644 index 000000000..cc57eb6fe --- /dev/null +++ b/MaxiOps/00grants/Arbitrum/LTIPP/conclude_stip.report.txt @@ -0,0 +1,30 @@ +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/conclude_stip.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `52a2b1aaed9b5590d1250b7c9f6914033613b044` +CHAIN(S): `arbitrum` +TENDERLY: `🟪 SKIPPED (ValueError("Unknown format '', attempted to normalize to '0x'"))` + +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+-----------+--------------------+---------+---------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+-----------+--------------------+---------+---------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [] | [] | [] | raw: 0/1e18 = 0.0 | 0 | ++------------------+-------------------------------------------------------------------------------------------------+--------+-----------+--------------------+---------+---------------------------+----------+ +``` +FILENAME: `MaxiOps/00grants/Arbitrum/LTIPP/conclude_stip.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `52a2b1aaed9b5590d1250b7c9f6914033613b044` +CHAIN(S): `arbitrum` +TENDERLY: `🟪 SKIPPED (ValueError("Unknown format '', attempted to normalize to '0x'"))` + +``` ++-------------------+--------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+--------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| transferOwnership | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+--------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/01-2024/bal_ggp_refund.json b/MaxiOps/01-2024/bal_ggp_refund.json new file mode 100644 index 000000000..360a22b6c --- /dev/null +++ b/MaxiOps/01-2024/bal_ggp_refund.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1706277547922, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x9bb1b2dfed3adc1ad0101f2964faa5e88a88db8ac605fecc66d028f938094737" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x9010E01806518EDBbc84C083c5ff4e04b6622AE0", + "amount": "3000000000000000000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6", + "amount": "3545000000000000000000" + } + } + ] +} diff --git a/MaxiOps/01-2024/bal_ggp_refund.report.txt b/MaxiOps/01-2024/bal_ggp_refund.report.txt new file mode 100644 index 000000000..b14c8de97 --- /dev/null +++ b/MaxiOps/01-2024/bal_ggp_refund.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/01-2024/bal_ggp_refund.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `babf38dbf5dcabce77e397db5a6f949430f6bb7a` +CHAIN(S): `mainnet` +``` ++------------+------------------------------------------------+------------------------------------------------+--------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+================================================+======================================+=======+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:0x9010E01806518EDBbc84C083c5ff4e04b6622AE0 | 3000.0 (RAW: 3000000000000000000000) | N/A | 0 | ++------------+------------------------------------------------+------------------------------------------------+--------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:0x25B70c8050B7e327Ce62CfD80A0C60cCcf057Fa6 | 3545.0 (RAW: 3545000000000000000000) | N/A | 1 | ++------------+------------------------------------------------+------------------------------------------------+--------------------------------------+-------+------------+ +``` diff --git a/MaxiOps/04-2024-Misc/Base_DI_USDC_for_weETH.json b/MaxiOps/04-2024-Misc/Base_DI_USDC_for_weETH.json new file mode 100644 index 000000000..9bab7101c --- /dev/null +++ b/MaxiOps/04-2024-Misc/Base_DI_USDC_for_weETH.json @@ -0,0 +1,74 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1714671381861, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "", + "checksum": "0x21a801be9b68e3c0f89e4becca79d37e5b3066d69c652ab2012edae273403527" + }, + "transactions": [ + { + "to": "0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF7862A614fFEA2BF8Ef2D66a872bE2Df735D22E6", + "data": "0xe8de0d4d000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000a6e7840fc8193cfebddf177fa410038e5dd08f7a" + } + }, + { + "to": "0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "ERC20token", "type": "address", "internalType": "address" } + ], + "name": "setInjectTokenAddress", + "payable": false + }, + "contractInputsValues": { + "ERC20token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913" + } + }, + { + "to": "0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xF7862A614fFEA2BF8Ef2D66a872bE2Df735D22E6]", + "amountsPerPeriod": "[2000000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/04-2024-Misc/Base_DI_USDC_for_weETH.report.txt b/MaxiOps/04-2024-Misc/Base_DI_USDC_for_weETH.report.txt new file mode 100644 index 000000000..4c7149c63 --- /dev/null +++ b/MaxiOps/04-2024-Misc/Base_DI_USDC_for_weETH.report.txt @@ -0,0 +1,39 @@ +FILENAME: `MaxiOps/04-2024-Misc/Base_DI_USDC_for_weETH.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `51a09d9a150feafa43377fe8fe0feda200d7705e` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/8dfdf1f2-1646-4825-83d0-fbfc2d05b937) +``` ++------------------+------------------------------------------------------------------------------------+----------+------------------------------------------------------------------------------+----------------------------+-----------+------------------------------+------------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++==================+====================================================================================+==========+==============================================================================+============================+===========+==============================+============+ +| setRecipientList | 0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A(maxiKeepers/gaugeRewardsInjectors/usdc) | USDbC | [ | [ | [ | raw: 2000000000/1e6 = 2000.0 | 2 | +| | | | "0xF7862A614fFEA2BF8Ef2D66a872bE2Df735D22E6 (gauges/weETH/wETH-gauge-f786)" | "2000000000/1e6 = 2000.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+------------------------------------------------------------------------------------+----------+------------------------------------------------------------------------------+----------------------------+-----------+------------------------------+------------+ +``` +FILENAME: `MaxiOps/04-2024-Misc/Base_DI_USDC_for_weETH.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `51a09d9a150feafa43377fe8fe0feda200d7705e` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/97b2f890-b3c1-46d1-be81-e53ee279f2f7) +``` ++-----------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=======================+=================================================================================================================+=========+==================================================================================================================================================+==============+============+ +| performAction | 0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xF7862A614fFEA2BF8Ef2D66a872bE2Df735D22E6 (gauges/weETH/wETH-gauge-f786)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913000000000000000000000000a6e7840fc8193cfebddf177fa410038e5dd08f7a" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setInjectTokenAddress | 0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A (maxiKeepers/gaugeRewardsInjectors/usdc) | 0 | { | N/A | N/A | +| | | | "ERC20token": [ | | | +| | | | "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/04-2024-Misc/Bridge_USDC_to_Arbitrum&Base.json b/MaxiOps/04-2024-Misc/Bridge_USDC_to_Arbitrum&Base.json new file mode 100644 index 000000000..ba5cae178 --- /dev/null +++ b/MaxiOps/04-2024-Misc/Bridge_USDC_to_Arbitrum&Base.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714607324020, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x301f5a7132d04fe310a2eaaac8a7303393ed01c2ca5fbbca2c2a09b1de2755f4" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "7200000000" + } + }, + { + "to": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "destinationDomain", + "type": "uint32", + "internalType": "uint32" + }, + { + "name": "mintRecipient", + "type": "bytes32", + "internalType": "bytes32" + }, + { "name": "burnToken", "type": "address", "internalType": "address" } + ], + "name": "depositForBurn", + "payable": false + }, + "contractInputsValues": { + "amount": "3200000000", + "destinationDomain": "3", + "mintRecipient": "0x000000000000000000000000c38c5f97b34e175ffd35407fc91a937300e33860", + "burnToken": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + } + }, + { + "to": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "destinationDomain", + "type": "uint32", + "internalType": "uint32" + }, + { + "name": "mintRecipient", + "type": "bytes32", + "internalType": "bytes32" + }, + { "name": "burnToken", "type": "address", "internalType": "address" } + ], + "name": "depositForBurn", + "payable": false + }, + "contractInputsValues": { + "amount": "4000000000", + "destinationDomain": "6", + "mintRecipient": "0x00000000000000000000000065226673F3D202E0f897C862590d7e1A992B2048", + "burnToken": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + } + } + ] +} diff --git a/MaxiOps/04-2024-Misc/Bridge_USDC_to_Arbitrum&Base.report.txt b/MaxiOps/04-2024-Misc/Bridge_USDC_to_Arbitrum&Base.report.txt new file mode 100644 index 000000000..89d446e5a --- /dev/null +++ b/MaxiOps/04-2024-Misc/Bridge_USDC_to_Arbitrum&Base.report.txt @@ -0,0 +1,49 @@ +FILENAME: `MaxiOps/04-2024-Misc/Bridge_USDC_to_Arbitrum&Base.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `939daef72b1f505df389642eeae881b1435a059e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/23a7df9f-f933-40ee-b180-0dddc1acca8b) +``` ++----------------+----------------------------------------------------------+---------+--------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++================+==========================================================+=========+==========================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xBd3fa81B58Ba92a82136038B25aDec7066af3155 (N/A) " | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | "raw:7200000000, 18 decimals:7.2E-9, 6 decimals: 7200" | | | +| | | | ] | | | +| | | | } | | | ++----------------+----------------------------------------------------------+---------+--------------------------------------------------------------------------+--------------+------------+ +| depositForBurn | 0xBd3fa81B58Ba92a82136038B25aDec7066af3155 (Not Found) | 0 | { | N/A | N/A | +| | | | "amount": [ | | | +| | | | "raw:3200000000, 18 decimals:3.2E-9, 6 decimals: 3200" | | | +| | | | ], | | | +| | | | "destinationDomain": [ | | | +| | | | "3" | | | +| | | | ], | | | +| | | | "mintRecipient": [ | | | +| | | | "0x000000000000000000000000c38c5f97b34e175ffd35407fc91a937300e33860" | | | +| | | | ], | | | +| | | | "burnToken": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ] | | | +| | | | } | | | ++----------------+----------------------------------------------------------+---------+--------------------------------------------------------------------------+--------------+------------+ +| depositForBurn | 0xBd3fa81B58Ba92a82136038B25aDec7066af3155 (Not Found) | 0 | { | N/A | N/A | +| | | | "amount": [ | | | +| | | | "raw:4000000000, 18 decimals:4E-9, 6 decimals: 4000" | | | +| | | | ], | | | +| | | | "destinationDomain": [ | | | +| | | | "6" | | | +| | | | ], | | | +| | | | "mintRecipient": [ | | | +| | | | "0x00000000000000000000000065226673F3D202E0f897C862590d7e1A992B2048" | | | +| | | | ], | | | +| | | | "burnToken": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) " | | | +| | | | ] | | | +| | | | } | | | ++----------------+----------------------------------------------------------+---------+--------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/04-2024-Misc/Transfer_USDC_From_SAFE_Claim.json b/MaxiOps/04-2024-Misc/Transfer_USDC_From_SAFE_Claim.json new file mode 100644 index 000000000..a7d3eb0a5 --- /dev/null +++ b/MaxiOps/04-2024-Misc/Transfer_USDC_From_SAFE_Claim.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714260704307, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x219dc186dc70d2c373d18ee9d2a6264bc9bfc903b1f743540a3a6d2aba7f498d" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x14EaC885d30a4A3e066bF9736BCfFd0B4A77aad4", + "value": "24970530000" + } + } + ] +} diff --git a/MaxiOps/04-2024-Misc/Transfer_USDC_From_SAFE_Claim.report.txt b/MaxiOps/04-2024-Misc/Transfer_USDC_From_SAFE_Claim.report.txt new file mode 100644 index 000000000..8f9bde027 --- /dev/null +++ b/MaxiOps/04-2024-Misc/Transfer_USDC_From_SAFE_Claim.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/04-2024-Misc/Transfer_USDC_From_SAFE_Claim.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `da5b34c904f0991f75c231809dd1d3ac46c369e1` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/73e36d1e-fcc8-477f-b9a8-08eede8ab15d) +``` ++------------+-------------------------------------------------+------------------------------------------------+-----------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+================================================+=============================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x14EaC885d30a4A3e066bF9736BCfFd0B4A77aad4 | 24970.53 (RAW: 24970530000) | N/A | 0 | ++------------+-------------------------------------------------+------------------------------------------------+-----------------------------+-------+------------+ +``` diff --git a/MaxiOps/04-2024-Misc/USDC-Injector-Arbitrum.json b/MaxiOps/04-2024-Misc/USDC-Injector-Arbitrum.json new file mode 100644 index 000000000..ecfac3862 --- /dev/null +++ b/MaxiOps/04-2024-Misc/USDC-Injector-Arbitrum.json @@ -0,0 +1,76 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1714580520719, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x9fae81939824bac730bae1d055e21b5e18b671dc9336094b9631aefa368d2960" + }, + "transactions": [ + { + "to": "0xAa5A381b23667902ad6EdBd060B3A9bb7Caeb24B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "_distributor": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2" + } + }, + { + "to": "0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "_distributor": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2" + } + }, + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xAa5A381b23667902ad6EdBd060B3A9bb7Caeb24B, 0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69]", + "amountsPerPeriod": "[2000000000, 1200000000]", + "maxPeriods": "[3, 3]" + } + } + ] +} diff --git a/MaxiOps/04-2024-Misc/USDC-Injector-Arbitrum.report.txt b/MaxiOps/04-2024-Misc/USDC-Injector-Arbitrum.report.txt new file mode 100644 index 000000000..4e92589a2 --- /dev/null +++ b/MaxiOps/04-2024-Misc/USDC-Injector-Arbitrum.report.txt @@ -0,0 +1,43 @@ +FILENAME: `MaxiOps/04-2024-Misc/USDC-Injector-Arbitrum.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `1156c2e05e8283ac5caf5f529edd13d79b31723a` +CHAIN(S): `arbitrum` +TENDERLY: SKIPPED (`ValueError("when sending a str, it must be a hex string. Got: ' 0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69'")`) +``` ++------------------+-------------------------------------------------------+----------+----------------------------------------------------------------------------------+-----------------------------+-----------+------------------------------+------------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++==================+=======================================================+==========+==================================================================================+=============================+===========+==============================+============+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(Not Found) | USDC | [ | [ | [ | raw: 3200000000/1e6 = 3200.0 | 2 | +| | | | "0xAa5A381b23667902ad6EdBd060B3A9bb7Caeb24B (gauges/jitoSOL/wSOL-gauge-aa5a)", | "2000000000/1e6 = 2000.0", | "3", | | | +| | | | "0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69 (gauges/jitoSOL/wstETH-gauge-fa7c)" | "1200000000/1e6 = 1200.0" | "3" | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------+----------+----------------------------------------------------------------------------------+-----------------------------+-----------+------------------------------+------------+ +``` +FILENAME: `MaxiOps/04-2024-Misc/USDC-Injector-Arbitrum.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `1156c2e05e8283ac5caf5f529edd13d79b31723a` +CHAIN(S): `arbitrum` +TENDERLY: SKIPPED (`ValueError("when sending a str, it must be a hex string. Got: ' 0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69'")`) +``` ++------------------------+-------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++========================+===============================================================================+=========+=========================================================+==============+============+ +| set_reward_distributor | 0xAa5A381b23667902ad6EdBd060B3A9bb7Caeb24B (gauges/jitoSOL/wSOL-gauge-aa5a) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xaf88d065e77c8cC2239327C5EDb3A432268e5831 (N/A) " | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++------------------------+-------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| set_reward_distributor | 0xfA7C98b893b26e99EFb53110B1B72FFAaC607b69 (gauges/jitoSOL/wstETH-gauge-fa7c) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0xaf88d065e77c8cC2239327C5EDb3A432268e5831 (N/A) " | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 (N/A) " | | | +| | | | ] | | | +| | | | } | | | ++------------------------+-------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/05-2024-Misc/Polygon_WMATIC_Incentives/WMATIC_Injector_Initialization.json b/MaxiOps/05-2024-Misc/Polygon_WMATIC_Incentives/WMATIC_Injector_Initialization.json new file mode 100644 index 000000000..2093ff4ec --- /dev/null +++ b/MaxiOps/05-2024-Misc/Polygon_WMATIC_Incentives/WMATIC_Injector_Initialization.json @@ -0,0 +1,94 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1716416459552, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x30a82e20066ebbbf8db9991eb0b439e6677e58de04dff7d93f2a67b667fa6005" + }, + "transactions": [ + { + "to": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "value": "140056870000000000000000", + "data": null, + "contractMethod": { "inputs": [], "name": "deposit", "payable": true }, + "contractInputsValues": {} + }, + { + "to": "0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xAB093cd16e765b5B23D34030aaFaF026558e0A19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x07dAcD2229824D6Ff928181563745a573b026B3d", + "data": "0xe8de0d4d0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127000000000000000000000000095aadd5092f5b3a4bbbefdf4187962b811bf9e79" + } + }, + { + "to": "0xAB093cd16e765b5B23D34030aaFaF026558e0A19", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x527D7DD0316920C1531B6cFBB3134dDE5FeEEaeb", + "data": "0xe8de0d4d0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127000000000000000000000000095aadd5092f5b3a4bbbefdf4187962b811bf9e79" + } + }, + { + "to": "0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "gaugeAddresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amountsPerPeriod", + "type": "uint256[]" + }, + { "internalType": "uint8[]", "name": "maxPeriods", "type": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x07dAcD2229824D6Ff928181563745a573b026B3d, 0x527D7DD0316920C1531B6cFBB3134dDE5FeEEaeb]", + "amountsPerPeriod": "[5835700000000000000000, 5835700000000000000000]", + "maxPeriods": "[12, 12]" + } + } + ] +} diff --git a/MaxiOps/05-2024-Misc/Polygon_WMATIC_Incentives/WMATIC_Injector_Initialization.report.txt b/MaxiOps/05-2024-Misc/Polygon_WMATIC_Incentives/WMATIC_Injector_Initialization.report.txt new file mode 100644 index 000000000..670c2fd79 --- /dev/null +++ b/MaxiOps/05-2024-Misc/Polygon_WMATIC_Incentives/WMATIC_Injector_Initialization.report.txt @@ -0,0 +1,47 @@ +FILENAME: `MaxiOps/05-2024-Misc/Polygon_WMATIC_Incentives/WMATIC_Injector_Initialization.json` +MULTISIG: `multisigs/lm (polygon:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `22c244dd36155b3535ad8e8c0a8dd26437a5132c` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/aae274e0-f1c5-40d8-ad4c-7479d42a5d75) +``` ++------------------+--------------------------------------------------------------------------------------+----------+----------------------------------------------------------------------------------+------------------------------------------+-----------+---------------------------------------------+------------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++==================+======================================================================================+==========+==================================================================================+==========================================+===========+=============================================+============+ +| setRecipientList | 0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79(maxiKeepers/gaugeRewardsInjectors/wmatic) | WMATIC | [ | [ | [ | raw: 11671400000000000000000/1e18 = 11671.4 | 4 | +| | | | "0x07dAcD2229824D6Ff928181563745a573b026B3d (gauges/USDC/USDT/DAI-gauge-07da)", | "5835700000000000000000/1e18 = 5835.7", | "12", | | | +| | | | "0x527D7DD0316920C1531B6cFBB3134dDE5FeEEaeb (gauges/wBTC/wETH/USDC-gauge-527d)" | "5835700000000000000000/1e18 = 5835.7" | "12" | | | +| | | | ] | ] | ] | | | ++------------------+--------------------------------------------------------------------------------------+----------+----------------------------------------------------------------------------------+------------------------------------------+-----------+---------------------------------------------+------------+ +``` +FILENAME: `MaxiOps/05-2024-Misc/Polygon_WMATIC_Incentives/WMATIC_Injector_Initialization.json` +MULTISIG: `multisigs/lm (polygon:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `22c244dd36155b3535ad8e8c0a8dd26437a5132c` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7cf9a48b-eaf2-41fe-8992-1d3ba07eb4f1) +``` ++-----------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+=================================================================================================================+===========================================+==================================================================================================================================================+==============+============+ +| deposit | 0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270 (tokens/WMATIC) | 140056870000000000000000/1e18 = 140056.87 | {} | N/A | N/A | ++-----------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| acceptOwnership | 0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79 (maxiKeepers/gaugeRewardsInjectors/wmatic) | 0 | "0x79ba5097" | N/A | N/A | ++-----------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xAB093cd16e765b5B23D34030aaFaF026558e0A19 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x07dAcD2229824D6Ff928181563745a573b026B3d (gauges/USDC/USDT/DAI-gauge-07da)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127000000000000000000000000095aadd5092f5b3a4bbbefdf4187962b811bf9e79" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| performAction | 0xAB093cd16e765b5B23D34030aaFaF026558e0A19 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x527D7DD0316920C1531B6cFBB3134dDE5FeEEaeb (gauges/wBTC/wETH/USDC-gauge-527d)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127000000000000000000000000095aadd5092f5b3a4bbbefdf4187962b811bf9e79" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/05-2024-Misc/USDCinjector_setup_Gyro_rehype_Arbitrum.json b/MaxiOps/05-2024-Misc/USDCinjector_setup_Gyro_rehype_Arbitrum.json new file mode 100644 index 000000000..7e869a959 --- /dev/null +++ b/MaxiOps/05-2024-Misc/USDCinjector_setup_Gyro_rehype_Arbitrum.json @@ -0,0 +1,93 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1717182479941, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xd35bcfc36b20fc7dd79e158aaab8a944f85d6190311f0f2c5eddac01a6964244" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe39fEEB09C4dDE420eAAADd066F949ab84c94bb8", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831000000000000000000000000abc414cee2f6e8ee262d6dc106c86a3f627f84d2" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1C8D981BBc56B7C65289FE34d7FF692ABDe9c8D5", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831000000000000000000000000abc414cee2f6e8ee262d6dc106c86a3f627f84d2" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831000000000000000000000000abc414cee2f6e8ee262d6dc106c86a3f627f84d2" + } + }, + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xe39fEEB09C4dDE420eAAADd066F949ab84c94bb8, 0x1C8D981BBc56B7C65289FE34d7FF692ABDe9c8D5, 0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b]", + "amountsPerPeriod": "[280000000, 280000000, 1440000000]", + "maxPeriods": "[1, 1, 1]" + } + } + ] +} diff --git a/MaxiOps/05-2024-Misc/USDCinjector_setup_Gyro_rehype_Arbitrum.report.txt b/MaxiOps/05-2024-Misc/USDCinjector_setup_Gyro_rehype_Arbitrum.report.txt new file mode 100644 index 000000000..4d089bf10 --- /dev/null +++ b/MaxiOps/05-2024-Misc/USDCinjector_setup_Gyro_rehype_Arbitrum.report.txt @@ -0,0 +1,51 @@ +FILENAME: `MaxiOps/05-2024-Misc/USDCinjector_setup_Gyro_rehype_Arbitrum.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `53bba175bfc374cf357c4d0329807ac50b9dec11` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/149b4efe-a0b7-4ca1-ae42-d77eb43f6a0b) +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 2000000000/1e6 = 2000.0 | 3 | +| | | | "0xe39fEEB09C4dDE420eAAADd066F949ab84c94bb8 (gauges/2CLP-AUSDC-USDC-gauge-e39f)", | "280000000/1e6 = 280.0", | "1", | | | +| | | | "0x1C8D981BBc56B7C65289FE34d7FF692ABDe9c8D5 (gauges/2CLP-AUSDT-USDT-gauge-1c8d)", | "280000000/1e6 = 280.0", | "1", | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)" | "1440000000/1e6 = 1440.0" | "1" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +``` +FILENAME: `MaxiOps/05-2024-Misc/USDCinjector_setup_Gyro_rehype_Arbitrum.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `53bba175bfc374cf357c4d0329807ac50b9dec11` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/2d2b9ed1-be01-43d5-9ef9-94c7b9b269ff) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xe39fEEB09C4dDE420eAAADd066F949ab84c94bb8 (gauges/2CLP-AUSDC-USDC-gauge-e39f)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831000000000000000000000000abc414cee2f6e8ee262d6dc106c86a3f627f84d2" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x1C8D981BBc56B7C65289FE34d7FF692ABDe9c8D5 (gauges/2CLP-AUSDT-USDT-gauge-1c8d)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831000000000000000000000000abc414cee2f6e8ee262d6dc106c86a3f627f84d2" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831000000000000000000000000abc414cee2f6e8ee262d6dc106c86a3f627f84d2" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/05-2024-Misc/Update_GHO_StablePool_Amp.json b/MaxiOps/05-2024-Misc/Update_GHO_StablePool_Amp.json new file mode 100644 index 000000000..7a2b6927c --- /dev/null +++ b/MaxiOps/05-2024-Misc/Update_GHO_StablePool_Amp.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1715607004148, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xd725fe177a15615c3096942041e4c52ab063888be23dc4c64edf92add0675d5f" + }, + "transactions": [ + { + "to": "0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { "internalType": "uint256", "name": "endTime", "type": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "750", "endTime": "1716830958" } + } + ] +} diff --git a/MaxiOps/05-2024-Misc/Update_GHO_StablePool_Amp.report.txt b/MaxiOps/05-2024-Misc/Update_GHO_StablePool_Amp.report.txt new file mode 100644 index 000000000..ad3ab01c0 --- /dev/null +++ b/MaxiOps/05-2024-Misc/Update_GHO_StablePool_Amp.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/05-2024-Misc/Update_GHO_StablePool_Amp.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4df54e0f72458bb44f9634b88412762fffdaaccf` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5194631d-f801-442d-82ab-9d7d92ed85f9) +``` ++-----------------------------------+-----------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===================================+=======================================================================+=========+=========================================================+==============+============+ +| startAmplificationParameterUpdate | 0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF (pools/GHO/USDT/USDC-8353) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:750, 18 decimals:7.5E-16, 6 decimals: 0.00075" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1716830958" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------------------+-----------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors.json b/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors.json new file mode 100644 index 000000000..1096b7fec --- /dev/null +++ b/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors.json @@ -0,0 +1,51 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1715889313196, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0xfdab3a09efaba98d3524b4ef02eb02bea28f4e6d5ee92cc8f5d67d4b5ecb7fc6" + }, + "transactions": [ + { + "to": "0xDd439304A77f54B1F7854751Ac1169b279591Ef7", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { "internalType": "uint256", "name": "endTime", "type": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "1000", "endTime": "1716845886" } + }, + { + "to": "0xbAd20c15A773bf03ab973302F61FAbceA5101f0A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { "internalType": "uint256", "name": "endTime", "type": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "2000", "endTime": "1716845886" } + } + ] +} diff --git a/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors.report.txt b/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors.report.txt new file mode 100644 index 000000000..28470b7a2 --- /dev/null +++ b/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `2d5c7a71e18bd1d92a6c5423ab76a3e7719043a5` +CHAIN(S): `gnosis` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/af42a024-78ae-4bf3-b00f-09a6984279dc) +``` ++-----------------------------------+------------------------------------------------------------------------+---------+------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===================================+========================================================================+=========+======================================================+==============+============+ +| startAmplificationParameterUpdate | 0xDd439304A77f54B1F7854751Ac1169b279591Ef7 (pools/EURe/sDAI-dd43) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:1000, 18 decimals:1E-15, 6 decimals: 0.001" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1716845886" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------------------+------------------------------------------------------------------------+---------+------------------------------------------------------+--------------+------------+ +| startAmplificationParameterUpdate | 0xbAd20c15A773bf03ab973302F61FAbceA5101f0A (pools/bb-WETH-wstETH-bad2) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:2000, 18 decimals:2E-15, 6 decimals: 0.002" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1716845886" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------------------+------------------------------------------------------------------------+---------+------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors_1000.json b/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors_1000.json new file mode 100644 index 000000000..8a1b5a3dc --- /dev/null +++ b/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors_1000.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717159269774, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x3079b57502fe6aa6540e7027cf77495251b5ddd59b7c9d3dfd8b6c490a8cc760" + }, + "transactions": [ + { + "to": "0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { "internalType": "uint256", "name": "endTime", "type": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "1000", "endTime": "1717504844" } + } + ] +} diff --git a/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors_1000.report.txt b/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors_1000.report.txt new file mode 100644 index 000000000..72c8bbe04 --- /dev/null +++ b/MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors_1000.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/05-2024-Misc/Update_GNO_Pool_Amp_Factors_1000.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `320207616c17d7ec1ec639c36bc33f53a9f704a3` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d846bdfb-8503-41bf-b5f6-b10a2cf349bd) +``` ++-----------------------------------+-----------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------------------+-----------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| startAmplificationParameterUpdate | 0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF (pools/GHO/USDT/USDC-8353) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:1000, 18 decimals:1E-15, 6 decimals: 0.001" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1717504844" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------------------+-----------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/08-2024-Misc/sweep-lm-after-cowamm-ops.json b/MaxiOps/08-2024-Misc/sweep-lm-after-cowamm-ops.json new file mode 100644 index 000000000..950dea91b --- /dev/null +++ b/MaxiOps/08-2024-Misc/sweep-lm-after-cowamm-ops.json @@ -0,0 +1,117 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724248610217, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x259fc76c59829facde3fbb161d22bba807ddffc3f291d0c9e3c072943c21be65" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "23222445589" + } + }, + { + "to": "0x43D4A3cd90ddD2F8f4f693170C9c8098163502ad", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "1302797788329662371414852" + } + }, + { + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "3744999898492215570" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "amount": "1978000000000000000000" + } + }, + { + "to": "0xC5c91aea7551095c3E1FF0f94f682c45b347AD73", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "amount": "726346844379189492574" + } + }, + { + "to": "0xf08D4dEa369C456d26a3168ff0024B904F2d8b91", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "5194381554063539272643" + } + } + ] +} diff --git a/MaxiOps/08-2024-Misc/sweep-lm-after-cowamm-ops.report.txt b/MaxiOps/08-2024-Misc/sweep-lm-after-cowamm-ops.report.txt new file mode 100644 index 000000000..ab18170c6 --- /dev/null +++ b/MaxiOps/08-2024-Misc/sweep-lm-after-cowamm-ops.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/08-2024-Misc/sweep-lm-after-cowamm-ops.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7a54316a4543f0d23f733a63d0e203b4decc40bd` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fbd40b1a-eb42-416d-bd93-9630494a1298) +``` ++----------+---------------------------------------------------------------+----------------------------------------------------------+-----------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+---------------------------------------------------------------+----------------------------------------------------------+-----------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 23222.445589 (RAW: 23222445589) | N/A | 0 | +| transfer | D2D:0x43D4A3cd90ddD2F8f4f693170C9c8098163502ad | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 1302797.7883296623 (RAW: 1302797788329662371414852) | N/A | 1 | +| transfer | WETH:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 3.7449998984922157 (RAW: 3744999898492215570) | N/A | 2 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 1978.0 (RAW: 1978000000000000000000) | N/A | 3 | +| transfer | 80BAL20wETH/wETH:0xC5c91aea7551095c3E1FF0f94f682c45b347AD73 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 726.3468443791895 (RAW: 726346844379189492574) | N/A | 4 | +| transfer | BCoW-50WETH-50USDC:0xf08D4dEa369C456d26a3168ff0024B904F2d8b91 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 5194.38155406354 (RAW: 5194381554063539272643) | N/A | 5 | ++----------+---------------------------------------------------------------+----------------------------------------------------------+-----------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/08-2024-Misc/sweep-lm-arb1.json b/MaxiOps/08-2024-Misc/sweep-lm-arb1.json new file mode 100644 index 000000000..53b712676 --- /dev/null +++ b/MaxiOps/08-2024-Misc/sweep-lm-arb1.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1724249648565, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x4239e75813fadb2b30d640ceadbfe395ea61f550ff3c52f9ff4beb1242c2fb94" + }, + "transactions": [ + { + "to": "0x3f09C77B19AD8Bb527355ec32d5ce98421fec2E3", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "amount": "19999999999999999999998" + } + } + ] +} diff --git a/MaxiOps/08-2024-Misc/sweep-lm-arb1.report.txt b/MaxiOps/08-2024-Misc/sweep-lm-arb1.report.txt new file mode 100644 index 000000000..ed4dcb911 --- /dev/null +++ b/MaxiOps/08-2024-Misc/sweep-lm-arb1.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/08-2024-Misc/sweep-lm-arb1.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7a54316a4543f0d23f733a63d0e203b4decc40bd` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/955cd613-0c05-424d-a58c-520be0616e49) +``` ++----------+-------------------------------------------------------+----------------------------------------------------------+----------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------------+----------------------------------------------------------+----------------------------------------+-----+----------+ +| transfer | axlBAL/BAL:0x3f09C77B19AD8Bb527355ec32d5ce98421fec2E3 | multisigs/dao:0xaF23DC5983230E9eEAf93280e312e57539D098D0 | 20000.0 (RAW: 19999999999999999999998) | N/A | 0 | ++----------+-------------------------------------------------------+----------------------------------------------------------+----------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/BIP-592-MYSO/BIP-592-ordered-single-payload.json b/MaxiOps/BIP-592-MYSO/BIP-592-ordered-single-payload.json new file mode 100644 index 000000000..4db6f42ba --- /dev/null +++ b/MaxiOps/BIP-592-MYSO/BIP-592-ordered-single-payload.json @@ -0,0 +1,180 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713438338041, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x5842da3b3e9ab2f10e53c89fa7631156b0e8cec156220d5ea36e952b36a20aea" + }, + "transactions": [ + { + "to": "0x1874a08F7975b25944FEb989BbAaA464f61aB3bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "createVault", + "payable": false + }, + "contractInputsValues": { + "salt": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + }, + { + "to": "0x71E1cc2F7574C798ED893Ef04D55D1E573bE95B1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "lenderVault", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "collToken", + "type": "address" + }, + { + "internalType": "address", + "name": "loanToken", + "type": "address" + }, + { + "internalType": "address", + "name": "oracleAddr", + "type": "address" + }, + { + "internalType": "uint256", + "name": "minLoan", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "maxLoan", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "validUntil", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "earliestRepayTenor", + "type": "uint256" + }, + { + "internalType": "address", + "name": "borrowerCompartmentImplementation", + "type": "address" + }, + { + "internalType": "bool", + "name": "isSingleUse", + "type": "bool" + }, + { + "internalType": "address", + "name": "whitelistAddr", + "type": "address" + }, + { + "internalType": "bool", + "name": "isWhitelistAddrSingleBorrower", + "type": "bool" + } + ], + "internalType": "struct DataTypesPeerToPeer.GeneralQuoteInfo", + "name": "generalQuoteInfo", + "type": "tuple" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "loanPerCollUnitOrLtv", + "type": "uint256" + }, + { + "internalType": "int256", + "name": "interestRatePctInBase", + "type": "int256" + }, + { + "internalType": "uint256", + "name": "upfrontFeePctInBase", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "tenor", + "type": "uint256" + } + ], + "internalType": "struct DataTypesPeerToPeer.QuoteTuple[]", + "name": "quoteTuples", + "type": "tuple[]" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "internalType": "struct DataTypesPeerToPeer.OnChainQuote", + "name": "onChainQuote", + "type": "tuple" + } + ], + "name": "addOnChainQuote", + "payable": false + }, + "contractInputsValues": { + "lenderVault": "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54", + "onChainQuote": "[[\"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\"0xba100000625a3754423978a60c9317c58a424e3D\",\"0x90B9eA01b1c0E2A1b95B03DFBb8E2A4b3F903bfC\",\"20000000000000000000000\",\"100000000000000000000000\",\"1735779846\",\"0\",\"0x0000000000000000000000000000000000000000\",\"true\",\"0x0000000000000000000000000000000000000000\",\"false\"], [[\"800000000000000000\",\"0\",\"40000000000000000\",\"2592000\"]],\"0x0000000000000000000000000000000000000000000000000000000000000000\"]" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54", + "value": "25000000000000000000000" + } + } + ] +} diff --git a/MaxiOps/BIP-592-MYSO/BIP-592-ordered-single-payload.report.txt b/MaxiOps/BIP-592-MYSO/BIP-592-ordered-single-payload.report.txt new file mode 100644 index 000000000..5c80d088b --- /dev/null +++ b/MaxiOps/BIP-592-MYSO/BIP-592-ordered-single-payload.report.txt @@ -0,0 +1,86 @@ +FILENAME: `MaxiOps/BIP-592-MYSO/BIP-592-ordered-single-payload.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bda5526097969b7316f6032c35f2c0ab82fd52b3` +CHAIN(S): `mainnet` +TENDERLY: [SKIPPED] +``` ++------------+------------------------------------------------+------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54 | 25000.0 (RAW: 25000000000000000000000) | BIP-592 | 2 | ++------------+------------------------------------------------+------------------------------------------------+----------------------------------------+---------+------------+ +``` +FILENAME: `MaxiOps/BIP-592-MYSO/BIP-592-ordered-single-payload.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bda5526097969b7316f6032c35f2c0ab82fd52b3` +CHAIN(S): `mainnet` +TENDERLY: [SKIPPED] +``` ++-----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================+=========+================================================================================+==============+============+ +| createVault | 0x1874a08F7975b25944FEb989BbAaA464f61aB3bc (Not Found) | 0 | { | BIP-592 | N/A | +| | | | "salt": [ | | | +| | | | [ | | | +| | | | "0x0000000000000000000000000000000000000000000000000000000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------+--------------+------------+ +| addOnChainQuote | 0x71E1cc2F7574C798ED893Ef04D55D1E573bE95B1 (Not Found) | 0 | { | BIP-592 | N/A | +| | | | "lenderVault": [ | | | +| | | | "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54 (N/A) " | | | +| | | | ], | | | +| | | | "onChainQuote": [ | | | +| | | | [ | | | +| | | | "\"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0xba100000625a3754423978a60c9317c58a424e3D\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x90B9eA01b1c0E2A1b95B03DFBb8E2A4b3F903bfC\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"20000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"100000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"1735779846\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"true\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"false\"]" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "[[\"800000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"40000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"2592000\"]]" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000000000000000000000000000\"" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591A-createVault.json b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591A-createVault.json new file mode 100644 index 000000000..583dd56c6 --- /dev/null +++ b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591A-createVault.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713438338041, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x5842da3b3e9ab2f10e53c89fa7631156b0e8cec156220d5ea36e952b36a20aea" + }, + "transactions": [ + { + "to": "0x1874a08F7975b25944FEb989BbAaA464f61aB3bc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "createVault", + "payable": false + }, + "contractInputsValues": { + "salt": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] +} diff --git a/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591A-createVault.report.txt b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591A-createVault.report.txt new file mode 100644 index 000000000..f9aee0a8d --- /dev/null +++ b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591A-createVault.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591A-createVault.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bda5526097969b7316f6032c35f2c0ab82fd52b3` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/29ae5767-49ed-41b3-b79a-95f84c3fcc8f) +``` ++-------------+--------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=============+========================================================+=========+============================================================================+==============+============+ +| createVault | 0x1874a08F7975b25944FEb989BbAaA464f61aB3bc (Not Found) | 0 | { | BIP-592 | N/A | +| | | | "salt": [ | | | +| | | | [ | | | +| | | | "0x0000000000000000000000000000000000000000000000000000000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-------------+--------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591B-transfer-BAL-to-vault.json b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591B-transfer-BAL-to-vault.json new file mode 100644 index 000000000..ab237bd54 --- /dev/null +++ b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591B-transfer-BAL-to-vault.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713438117014, + "meta": { + "name": "Transactions Batch", + "description": "Transfer 25000 BAL to Myso Vault", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54", + "value": "25000000000000000000000" + } + } + ] +} diff --git a/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591B-transfer-BAL-to-vault.report.txt b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591B-transfer-BAL-to-vault.report.txt new file mode 100644 index 000000000..42c25d128 --- /dev/null +++ b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591B-transfer-BAL-to-vault.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591B-transfer-BAL-to-vault.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bda5526097969b7316f6032c35f2c0ab82fd52b3` +CHAIN(S): `mainnet` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/e907246e-fc98-4183-bc5b-62fd98980bd3) +``` ++------------+------------------------------------------------+------------------------------------------------+----------------------------------------+---------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+================================================+========================================+=========+============+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54 | 25000.0 (RAW: 25000000000000000000000) | BIP-592 | 0 | ++------------+------------------------------------------------+------------------------------------------------+----------------------------------------+---------+------------+ +``` diff --git a/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591C-addOnChainQuoteTemplate.json b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591C-addOnChainQuoteTemplate.json new file mode 100644 index 000000000..94a42e7cc --- /dev/null +++ b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591C-addOnChainQuoteTemplate.json @@ -0,0 +1,136 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713444950634, + "meta": { + "name": "Template for on-chain quote. Adjust to market conditions at execution time!", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x96f46915400642e686202014de0b6814bff18c37ae23050f5c1c2e9898e56e31" + }, + "transactions": [ + { + "to": "0x71E1cc2F7574C798ED893Ef04D55D1E573bE95B1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "lenderVault", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "collToken", + "type": "address" + }, + { + "internalType": "address", + "name": "loanToken", + "type": "address" + }, + { + "internalType": "address", + "name": "oracleAddr", + "type": "address" + }, + { + "internalType": "uint256", + "name": "minLoan", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "maxLoan", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "validUntil", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "earliestRepayTenor", + "type": "uint256" + }, + { + "internalType": "address", + "name": "borrowerCompartmentImplementation", + "type": "address" + }, + { + "internalType": "bool", + "name": "isSingleUse", + "type": "bool" + }, + { + "internalType": "address", + "name": "whitelistAddr", + "type": "address" + }, + { + "internalType": "bool", + "name": "isWhitelistAddrSingleBorrower", + "type": "bool" + } + ], + "internalType": "struct DataTypesPeerToPeer.GeneralQuoteInfo", + "name": "generalQuoteInfo", + "type": "tuple" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "loanPerCollUnitOrLtv", + "type": "uint256" + }, + { + "internalType": "int256", + "name": "interestRatePctInBase", + "type": "int256" + }, + { + "internalType": "uint256", + "name": "upfrontFeePctInBase", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "tenor", + "type": "uint256" + } + ], + "internalType": "struct DataTypesPeerToPeer.QuoteTuple[]", + "name": "quoteTuples", + "type": "tuple[]" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "internalType": "struct DataTypesPeerToPeer.OnChainQuote", + "name": "onChainQuote", + "type": "tuple" + } + ], + "name": "addOnChainQuote", + "payable": false + }, + "contractInputsValues": { + "lenderVault": "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54", + "onChainQuote": "[[\"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\"0xba100000625a3754423978a60c9317c58a424e3D\",\"0x90B9eA01b1c0E2A1b95B03DFBb8E2A4b3F903bfC\",\"20000000000000000000000\",\"100000000000000000000000\",\"1735779846\",\"0\",\"0x0000000000000000000000000000000000000000\",\"true\",\"0x0000000000000000000000000000000000000000\",\"false\"], [[\"800000000000000000\",\"0\",\"40000000000000000\",\"2592000\"]],\"0x0000000000000000000000000000000000000000000000000000000000000000\"]" + } + } + ] +} diff --git a/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591C-addOnChainQuoteTemplate.report.txt b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591C-addOnChainQuoteTemplate.report.txt new file mode 100644 index 000000000..10850691f --- /dev/null +++ b/MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591C-addOnChainQuoteTemplate.report.txt @@ -0,0 +1,66 @@ +FILENAME: `MaxiOps/BIP-592-MYSO/LM-Multi-BIP-591C-addOnChainQuoteTemplate.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `bda5526097969b7316f6032c35f2c0ab82fd52b3` +CHAIN(S): `mainnet` +TENDERLY: [SKIPPED] +``` ++-----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++=================+========================================================+=========+================================================================================+==============+============+ +| addOnChainQuote | 0x71E1cc2F7574C798ED893Ef04D55D1E573bE95B1 (Not Found) | 0 | { | BIP-592 | N/A | +| | | | "lenderVault": [ | | | +| | | | "0xdC84A5e6Bf288af75CC821226634644Ed6a7aB54 (N/A) " | | | +| | | | ], | | | +| | | | "onChainQuote": [ | | | +| | | | [ | | | +| | | | "\"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0xba100000625a3754423978a60c9317c58a424e3D\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x90B9eA01b1c0E2A1b95B03DFBb8E2A4b3F903bfC\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"20000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"100000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"1735779846\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"true\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"false\"]" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "[[\"800000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"40000000000000000\"" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"2592000\"]]" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "\"0x0000000000000000000000000000000000000000000000000000000000000000\"" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept14-2024.json b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept14-2024.json new file mode 100644 index 000000000..3bce8134c --- /dev/null +++ b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept14-2024.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726337798292, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb87150a72864a3bbe0710ee147d70c28b54ad61db38313272369ea8870152e56" + }, + "transactions": [ + { + "to": "0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "message", "type": "bytes", "internalType": "bytes" }, + { "name": "attestation", "type": "bytes", "internalType": "bytes" } + ], + "name": "receiveMessage", + "payable": false + }, + "contractInputsValues": { + "message": "0x000000000000000000000003000000000001A411000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF315500000000000000000000000019330D10D9CC8751218EAF51E8885D058642E08A000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB48000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860000000000000000000000000000000000000000000000000000000037E11D600000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860", + "attestation": "0x6a2610e793948e40b74e4459aff0e745fbe9d32621ba02fecb91647d633a830332a8227ed1aa30ea2d558a8f273050ecc574ce4629fc5c9417d72efd7a9c7ad61cf838da5120bf297e0ba3421d521abdb3a4a51734be90e9b3cd494b16f93c084f6204db316e74f5a34fe0d5480cb09092417c9063905b199407f3dae7dd367cc01b" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "15000000000" + } + } + ] +} diff --git a/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept14-2024.report.txt b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept14-2024.report.txt new file mode 100644 index 000000000..bb449db3f --- /dev/null +++ b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept14-2024.report.txt @@ -0,0 +1,33 @@ +FILENAME: `MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept14-2024.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b419020b3590f56384533b2121c7ca8cc2cacd6b` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f347db9b-ffee-431d-bf73-7f163aa9466a) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+----------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+----------------------------+-----+----------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector:0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 | 15000.0 (RAW: 15000000000) | N/A | 1 | ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+----------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept14-2024.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b419020b3590f56384533b2121c7ca8cc2cacd6b` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/dbf78470-db24-4f6d-96be-557037ed5080) + +``` ++----------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| receiveMessage | 0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca (Not Found) | 0 | { | N/A | N/A | +| | | | "message": [ | | | +| | | | "0x000000000000000000000003000000000001A411000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF315500000000000000000000000019330D10D9CC8751218EAF51E8885D058642E08A000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB48000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860000000000000000000000000000000000000000000000000000000037E11D600000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860" | | | +| | | | ], | | | +| | | | "attestation": [ | | | +| | | | "0x6a2610e793948e40b74e4459aff0e745fbe9d32621ba02fecb91647d633a830332a8227ed1aa30ea2d558a8f273050ecc574ce4629fc5c9417d72efd7a9c7ad61cf838da5120bf297e0ba3421d521abdb3a4a51734be90e9b3cd494b16f93c084f6204db316e74f5a34fe0d5480cb09092417c9063905b199407f3dae7dd367cc01b" | | | +| | | | ] | | | +| | | | } | | | ++----------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept20-2024.json b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept20-2024.json new file mode 100644 index 000000000..f16f8ed36 --- /dev/null +++ b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept20-2024.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726833787810, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xbea87cbb73ebff2d30a13f7ebb36a09d108de58e239a67e5a9bb288ae1ba0903" + }, + "transactions": [ + { + "to": "0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "message", "type": "bytes", "internalType": "bytes" }, + { "name": "attestation", "type": "bytes", "internalType": "bytes" } + ], + "name": "receiveMessage", + "payable": false + }, + "contractInputsValues": { + "message": "0x000000000000000000000003000000000001AA37000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF315500000000000000000000000019330D10D9CC8751218EAF51E8885D058642E08A000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB48000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E3386000000000000000000000000000000000000000000000000000000004A817C800000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860", + "attestation": "0x974551d7873ddc39269c35d07ccdf1746ce491d0794261cf80ff30e084b0b52c2cebdf7d710aae3453853890329d391bb8591e026b340d4c9f3a93b794ca5b441b7309122321181ad9db6f490cb4d7fea8ee490eece9b5cc04ae60b86ac43a1a5c54e13622be386907cbd9592b03ed071d3e1c2f3be2569f1b16a879eaedcc0f521b" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "6000000000" + } + } + ] +} diff --git a/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept20-2024.report.txt b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept20-2024.report.txt new file mode 100644 index 000000000..284d725cb --- /dev/null +++ b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept20-2024.report.txt @@ -0,0 +1,33 @@ +FILENAME: `MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept20-2024.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `1473e3150c00aefe31c5dda39449d5f7dd9df1bd` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4656a250-3da2-40c0-8b1b-88143007d723) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector:0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 | 6000.0 (RAW: 6000000000) | N/A | 1 | ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/CCTP_Bridge/receive/claimArbiUSDC-CoW-Sept20-2024.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `1473e3150c00aefe31c5dda39449d5f7dd9df1bd` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a58e929f-08c6-4573-ae8c-dac6a14bf5bf) + +``` ++----------------+-------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------+-------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| receiveMessage | 0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca (circle/message_transmitter) | 0 | { | N/A | N/A | +| | | | "message": [ | | | +| | | | "0x000000000000000000000003000000000001AA37000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF315500000000000000000000000019330D10D9CC8751218EAF51E8885D058642E08A000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB48000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E3386000000000000000000000000000000000000000000000000000000004A817C800000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860" | | | +| | | | ], | | | +| | | | "attestation": [ | | | +| | | | "0x974551d7873ddc39269c35d07ccdf1746ce491d0794261cf80ff30e084b0b52c2cebdf7d710aae3453853890329d391bb8591e026b340d4c9f3a93b794ca5b441b7309122321181ad9db6f490cb4d7fea8ee490eece9b5cc04ae60b86ac43a1a5c54e13622be386907cbd9592b03ed071d3e1c2f3be2569f1b16a879eaedcc0f521b" | | | +| | | | ] | | | +| | | | } | | | ++----------------+-------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC.json b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC.json new file mode 100644 index 000000000..b1ae70bd3 --- /dev/null +++ b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1715193245588, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x383bbde1a0fa18089fef4d0f07fca15a785b14563241a3e34530459e2fdddc97" + }, + "transactions": [ + { + "to": "0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "message", "type": "bytes", "internalType": "bytes" }, + { "name": "attestation", "type": "bytes", "internalType": "bytes" } + ], + "name": "receiveMessage", + "payable": false + }, + "contractInputsValues": { + "message": "0x000000000000000000000003000000000000D6E2000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF315500000000000000000000000019330D10D9CC8751218EAF51E8885D058642E08A000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB48000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E3386000000000000000000000000000000000000000000000000000000000BEBC2000000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860", + "attestation": "0xaa6fd30f1a8b66ad584d31d2c5db9b7094a417981a92789baef99467877d7efe0f7791fff2a0ef0f10da34ade24543df1d55375458da75b6bc8a7db0aa099ef41ba462bb0a93541c726b3bcfe719bb272aa4faebd3937881fbfe81c65ea319eec27d0b3eb0a28bd07e769351033d898bcd769c4b057761c79448403b3f4ce079bc1c" + } + } + ] +} diff --git a/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC.report.txt b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC.report.txt new file mode 100644 index 000000000..d4c41652b --- /dev/null +++ b/MaxiOps/CCTP_Bridge/receive/claimArbiUSDC.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/CCTP_Bridge/receive/claimArbiUSDC.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `67ad82eccb21b043f1aa5f279217e4d7439ef731` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/09fcc93a-1345-4d8d-b4c4-c5c8449cd3e7) +``` ++----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++================+========================================================+=========+==========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| receiveMessage | 0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca (Not Found) | 0 | { | N/A | N/A | +| | | | "message": [ | | | +| | | | "0x000000000000000000000003000000000000D6E2000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF315500000000000000000000000019330D10D9CC8751218EAF51E8885D058642E08A000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB48000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E3386000000000000000000000000000000000000000000000000000000000BEBC2000000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860" | | | +| | | | ], | | | +| | | | "attestation": [ | | | +| | | | "0xaa6fd30f1a8b66ad584d31d2c5db9b7094a417981a92789baef99467877d7efe0f7791fff2a0ef0f10da34ade24543df1d55375458da75b6bc8a7db0aa099ef41ba462bb0a93541c726b3bcfe719bb272aa4faebd3937881fbfe81c65ea319eec27d0b3eb0a28bd07e769351033d898bcd769c4b057761c79448403b3f4ce079bc1c" | | | +| | | | ] | | | +| | | | } | | | ++----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/CCTP_Bridge/receive/claimBaseUSDC.json b/MaxiOps/CCTP_Bridge/receive/claimBaseUSDC.json new file mode 100644 index 000000000..542358cfe --- /dev/null +++ b/MaxiOps/CCTP_Bridge/receive/claimBaseUSDC.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1715193245588, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "", + "checksum": "0x383bbde1a0fa18089fef4d0f07fca15a785b14563241a3e34530459e2fdddc97" + }, + "transactions": [ + { + "to": "0xAD09780d193884d503182aD4588450C416D6F9D4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "message", "type": "bytes", "internalType": "bytes" }, + { "name": "attestation", "type": "bytes", "internalType": "bytes" } + ], + "name": "receiveMessage", + "payable": false + }, + "contractInputsValues": { + "message": "0x000000000000000000000006000000000000D6E3000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF31550000000000000000000000001682AE6375C4E4A97E4B583BC394C861A46D8962000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB4800000000000000000000000065226673F3D202E0F897C862590D7E1A992B204800000000000000000000000000000000000000000000000000000000EE6B2800000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860", + "attestation": "0x178fed4847c8ab86c837610cd2a9a7b03292b234cce77b1a81467089ded8fffc0085d918adf6afe9cd374b84b9aca260b2dcb056e6327ae014ea36e69c4e40a51cb86c58898a5627ffd8efd5c66cc9e06bfcfb621d5c10fa6ba444e032def097886c26e821a7eedf72f11b02af1dac450cf89243fd902fd4bfe77a2993429b66881b" + } + } + ] +} diff --git a/MaxiOps/CCTP_Bridge/receive/claimBaseUSDC.report.txt b/MaxiOps/CCTP_Bridge/receive/claimBaseUSDC.report.txt new file mode 100644 index 000000000..b83a4cbd9 --- /dev/null +++ b/MaxiOps/CCTP_Bridge/receive/claimBaseUSDC.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/CCTP_Bridge/receive/claimBaseUSDC.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `67ad82eccb21b043f1aa5f279217e4d7439ef731` +CHAIN(S): `base` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/7bc6b37f-85c9-4d04-929c-8383acff3a19) +``` ++----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++================+========================================================+=========+==========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| receiveMessage | 0xAD09780d193884d503182aD4588450C416D6F9D4 (Not Found) | 0 | { | N/A | N/A | +| | | | "message": [ | | | +| | | | "0x000000000000000000000006000000000000D6E3000000000000000000000000BD3FA81B58BA92A82136038B25ADEC7066AF31550000000000000000000000001682AE6375C4E4A97E4B583BC394C861A46D8962000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A0B86991C6218B36C1D19D4A2E9EB0CE3606EB4800000000000000000000000065226673F3D202E0F897C862590D7E1A992B204800000000000000000000000000000000000000000000000000000000EE6B2800000000000000000000000000C38C5F97B34E175FFD35407FC91A937300E33860" | | | +| | | | ], | | | +| | | | "attestation": [ | | | +| | | | "0x178fed4847c8ab86c837610cd2a9a7b03292b234cce77b1a81467089ded8fffc0085d918adf6afe9cd374b84b9aca260b2dcb056e6327ae014ea36e69c4e40a51cb86c58898a5627ffd8efd5c66cc9e06bfcfb621d5c10fa6ba444e032def097886c26e821a7eedf72f11b02af1dac450cf89243fd902fd4bfe77a2993429b66881b" | | | +| | | | ] | | | +| | | | } | | | ++----------------+--------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools-9-13-2024.json b/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools-9-13-2024.json new file mode 100644 index 000000000..fae46c26e --- /dev/null +++ b/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools-9-13-2024.json @@ -0,0 +1,77 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726243666370, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x301f5a7132d04fe310a2eaaac8a7303393ed01c2ca5fbbca2c2a09b1de2755f4" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "15000000000" + } + }, + { + "to": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "destinationDomain", + "type": "uint32", + "internalType": "uint32" + }, + { + "name": "mintRecipient", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "burnToken", + "type": "address", + "internalType": "address" + } + ], + "name": "depositForBurn", + "payable": false + }, + "contractInputsValues": { + "amount": "15000000000", + "destinationDomain": "3", + "mintRecipient": "0x000000000000000000000000c38c5f97B34E175FFd35407fc91a937300E33860", + "burnToken": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + } + } + ] +} diff --git a/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools-9-13-2024.report.txt b/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools-9-13-2024.report.txt new file mode 100644 index 000000000..3e5daff59 --- /dev/null +++ b/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools-9-13-2024.report.txt @@ -0,0 +1,34 @@ +FILENAME: `MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools-9-13-2024.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4895015045050694a5385b5b2cdc3c5a431c795d` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7121f244-1731-434a-89c1-728a45bdf6a9) + +``` ++----------------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xBd3fa81B58Ba92a82136038B25aDec7066af3155 (circle/cctp_messenger)" | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | "raw:15000000000, 18 decimals:1.5E-8, 6 decimals: 15000" | | | +| | | | ] | | | +| | | | } | | | +| depositForBurn | 0xBd3fa81B58Ba92a82136038B25aDec7066af3155 (circle/cctp_messenger) | 0 | { | N/A | N/A | +| | | | "amount": [ | | | +| | | | "raw:15000000000, 18 decimals:1.5E-8, 6 decimals: 15000" | | | +| | | | ], | | | +| | | | "destinationDomain": [ | | | +| | | | "3" | | | +| | | | ], | | | +| | | | "mintRecipient": [ | | | +| | | | "0x000000000000000000000000c38c5f97B34E175FFd35407fc91a937300E33860" | | | +| | | | ], | | | +| | | | "burnToken": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC)" | | | +| | | | ] | | | +| | | | } | | | ++----------------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools_Extension.json b/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools_Extension.json new file mode 100644 index 000000000..efe173261 --- /dev/null +++ b/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools_Extension.json @@ -0,0 +1,77 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726599651405, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x301f5a7132d04fe310a2eaaac8a7303393ed01c2ca5fbbca2c2a09b1de2755f4" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "20000000000" + } + }, + { + "to": "0xBd3fa81B58Ba92a82136038B25aDec7066af3155", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "destinationDomain", + "type": "uint32", + "internalType": "uint32" + }, + { + "name": "mintRecipient", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "burnToken", + "type": "address", + "internalType": "address" + } + ], + "name": "depositForBurn", + "payable": false + }, + "contractInputsValues": { + "amount": "20000000000", + "destinationDomain": "3", + "mintRecipient": "0x000000000000000000000000c38c5f97B34E175FFd35407fc91a937300E33860", + "burnToken": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + } + } + ] +} diff --git a/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools_Extension.report.txt b/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools_Extension.report.txt new file mode 100644 index 000000000..a85fc0151 --- /dev/null +++ b/MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools_Extension.report.txt @@ -0,0 +1,34 @@ +FILENAME: `MaxiOps/CCTP_Bridge/send/USDC_Arbi_CowPools_Extension.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7e0067064a89758283ac98f6c02e9040b13ea4dd` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/112eaa0d-3b06-4ebc-8963-d9d6ba6cde55) + +``` ++----------------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xBd3fa81B58Ba92a82136038B25aDec7066af3155 (circle/cctp_messenger)" | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | "raw:20000000000, 18 decimals:2E-8, 6 decimals: 20000" | | | +| | | | ] | | | +| | | | } | | | +| depositForBurn | 0xBd3fa81B58Ba92a82136038B25aDec7066af3155 (circle/cctp_messenger) | 0 | { | N/A | N/A | +| | | | "amount": [ | | | +| | | | "raw:20000000000, 18 decimals:2E-8, 6 decimals: 20000" | | | +| | | | ], | | | +| | | | "destinationDomain": [ | | | +| | | | "3" | | | +| | | | ], | | | +| | | | "mintRecipient": [ | | | +| | | | "0x000000000000000000000000c38c5f97B34E175FFd35407fc91a937300E33860" | | | +| | | | ], | | | +| | | | "burnToken": [ | | | +| | | | "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC)" | | | +| | | | ] | | | +| | | | } | | | ++----------------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mainnet-Payroll-Safe.json b/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mainnet-Payroll-Safe.json new file mode 100644 index 000000000..0bca59a53 --- /dev/null +++ b/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mainnet-Payroll-Safe.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729517970432, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x332bf12bbe8c56a99be8cba01cc27e31faf0ae91bf311072fe92935dd826fb54" + }, + "transactions": [ + { + "to": "0x166f54F44F271407f24AA1BE415a730035637325", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6", + "_threshold": "4" + } + } + ] +} diff --git a/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mainnet-Payroll-Safe.report.txt b/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mainnet-Payroll-Safe.report.txt new file mode 100644 index 000000000..e1156e7f3 --- /dev/null +++ b/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mainnet-Payroll-Safe.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mainnet-Payroll-Safe.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `7f2ce385b8e119a996a6b6f26c850ea43ffb2dc5` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8fa13064-9ed0-444c-9ef2-730c315bee2a) + +``` ++-----------------------+-----------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------+-----------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| addOwnerWithThreshold | 0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops) | 0 | { | N/A | N/A | +| | | | "owner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (EOA/emergency/franz)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "4" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+-----------------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mode-LM-Strategy-Safe.json b/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mode-LM-Strategy-Safe.json new file mode 100644 index 000000000..b39ec4bdb --- /dev/null +++ b/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mode-LM-Strategy-Safe.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1729519103795, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x9614dfc1a00c287a7934eb4a97582a8f1d049494685132c17ba55a758f219d7f" + }, + "transactions": [ + { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "payable": false + }, + "contractInputsValues": { + "owner": "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6", + "_threshold": "4" + } + } + ] +} diff --git a/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mode-LM-Strategy-Safe.report.txt b/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mode-LM-Strategy-Safe.report.txt new file mode 100644 index 000000000..0ae706fc4 --- /dev/null +++ b/MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mode-LM-Strategy-Safe.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/Multisig-Signer-Management/Add-Franz-to-High-Value-Safes/Mode-LM-Strategy-Safe.json` +MULTISIG: `multisigs/lm (mode:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `7f2ce385b8e119a996a6b6f26c850ea43ffb2dc5` +CHAIN(S): `mode` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/79676d45-f7a3-4ec6-83a5-5934aae4d765) + +``` ++-----------------------+-----------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------+-----------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +| addOwnerWithThreshold | 0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/lm) | 0 | { | N/A | N/A | +| | | | "owner": [ | | | +| | | | "0x89c7D6ABA9Cd18D8A93571E583EEAc58Da75acE6 (EOA/emergency/franz)" | | | +| | | | ], | | | +| | | | "_threshold": [ | | | +| | | | "4" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+-----------------------------------------------------------+-------+------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q1_2024/February_2024_payload.json b/MaxiOps/Payroll_Txns/Q1_2024/February_2024_payload.json new file mode 100644 index 000000000..35162151f --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q1_2024/February_2024_payload.json @@ -0,0 +1,281 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1706894727934, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0x98aed9e55029e865c462494512b34e0ed16942936acf6ae2542662fac52145ba" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "159361900000000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "159361900000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "amount": "382468500000000000000" + } + }, + { + "to": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "382468500000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "amount": "713941200000000000000" + } + }, + { + "to": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_vestingPeriod", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "713941200000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "484460100000000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_vestingPeriod", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "484460100000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2304488F0eddF15227C21b021739448B51E791C0", + "amount": "346771400000000000000" + } + }, + { + "to": "0x2304488F0eddF15227C21b021739448B51E791C0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "346771400000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x01B894622C7aa890d758C8a0E8156480F0Fa5f6C", + "amount": "79680900000000000000" + } + }, + { + "to": "0x01B894622C7aa890d758C8a0E8156480F0Fa5f6C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_vestingPeriod", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "79680900000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xd411b886e96291b089273a5835D2BE4406700352", + "amount": "509958000000000000000" + } + }, + { + "to": "0xd411b886e96291b089273a5835D2BE4406700352", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_vestingPeriod", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "509958000000000000000", + "_vestingPeriod": "31536000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q1_2024/February_2024_payload.report.txt b/MaxiOps/Payroll_Txns/Q1_2024/February_2024_payload.report.txt new file mode 100644 index 000000000..7ce0a858c --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q1_2024/February_2024_payload.report.txt @@ -0,0 +1,220 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q1_2024/February_2024_payload.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `9e334b79fdc1793a0e6e7b88d9ec96f3b0704ed0` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/b17cb6c7-f4d4-47c7-b331-4ff584d5e45e) +``` ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==============================================================================+=========+===================================================================================================+==============+============+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:159361900000000000000, 18 decimals:159.36190000000002, 6 decimals: 159361900000000.03" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "159361900000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:159361900000000000000, 18 decimals:159.36190000000002, 6 decimals: 159361900000000.03" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "159361900000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:382468500000000000000, 18 decimals:382.4685, 6 decimals: 382468500000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "382468500000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:382468500000000000000, 18 decimals:382.4685, 6 decimals: 382468500000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "382468500000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:713941200000000000000, 18 decimals:713.9412, 6 decimals: 713941199999999.9" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "713941200000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:713941200000000000000, 18 decimals:713.9412, 6 decimals: 713941199999999.9" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "713941200000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:484460100000000000000, 18 decimals:484.4601, 6 decimals: 484460100000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "484460100000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:484460100000000000000, 18 decimals:484.4601, 6 decimals: 484460100000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "484460100000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:346771400000000000000, 18 decimals:346.77139999999997, 6 decimals: 346771399999999.94" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "346771400000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:346771400000000000000, 18 decimals:346.77139999999997, 6 decimals: 346771399999999.94" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "346771400000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x01B894622C7aa890d758C8a0E8156480F0Fa5f6C (maxiVestingContracts/Dubstard) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:79680900000000000000, 18 decimals:79.6809, 6 decimals: 79680900000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "79680900000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x01B894622C7aa890d758C8a0E8156480F0Fa5f6C (maxiVestingContracts/Dubstard) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:79680900000000000000, 18 decimals:79.6809, 6 decimals: 79680900000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "79680900000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xd411b886e96291b089273a5835D2BE4406700352 (maxiVestingContracts/gosuto) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:509958000000000000000, 18 decimals:509.958, 6 decimals: 509958000000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "509958000000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0xd411b886e96291b089273a5835D2BE4406700352 (maxiVestingContracts/gosuto) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:509958000000000000000, 18 decimals:509.958, 6 decimals: 509958000000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "509958000000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q1_2024/March_2024_payload.json b/MaxiOps/Payroll_Txns/Q1_2024/March_2024_payload.json new file mode 100644 index 000000000..0cc93989e --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q1_2024/March_2024_payload.json @@ -0,0 +1,281 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1709160252460, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0xe4cc2ddcbb93d303ce2b374ea270464ec7a16ff0664c0011db19b563b1b4b06c" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "159361900000000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "159361900000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "amount": "382468500000000000000" + } + }, + { + "to": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "382468500000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "amount": "713941200000000000000" + } + }, + { + "to": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "713941200000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "484460100000000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "484460100000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2304488F0eddF15227C21b021739448B51E791C0", + "amount": "346771400000000000000" + } + }, + { + "to": "0x2304488F0eddF15227C21b021739448B51E791C0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "346771400000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x01B894622C7aa890d758C8a0E8156480F0Fa5f6C", + "amount": "79680900000000000000" + } + }, + { + "to": "0x01B894622C7aa890d758C8a0E8156480F0Fa5f6C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "79680900000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xd411b886e96291b089273a5835D2BE4406700352", + "amount": "509958000000000000000" + } + }, + { + "to": "0xd411b886e96291b089273a5835D2BE4406700352", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "509958000000000000000", + "_vestingPeriod": "31536000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q1_2024/March_2024_payload.report.txt b/MaxiOps/Payroll_Txns/Q1_2024/March_2024_payload.report.txt new file mode 100644 index 000000000..431264c35 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q1_2024/March_2024_payload.report.txt @@ -0,0 +1,220 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q1_2024/March_2024_payload.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `9e334b79fdc1793a0e6e7b88d9ec96f3b0704ed0` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/87cf1363-db54-4284-99d5-5c8bffd42cf9) +``` ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==============================================================================+=========+===================================================================================================+==============+============+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:159361900000000000000, 18 decimals:159.36190000000002, 6 decimals: 159361900000000.03" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "159361900000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:159361900000000000000, 18 decimals:159.36190000000002, 6 decimals: 159361900000000.03" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "159361900000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:382468500000000000000, 18 decimals:382.4685, 6 decimals: 382468500000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "382468500000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:382468500000000000000, 18 decimals:382.4685, 6 decimals: 382468500000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "382468500000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:713941200000000000000, 18 decimals:713.9412, 6 decimals: 713941199999999.9" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "713941200000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:713941200000000000000, 18 decimals:713.9412, 6 decimals: 713941199999999.9" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "713941200000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:484460100000000000000, 18 decimals:484.4601, 6 decimals: 484460100000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "484460100000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:484460100000000000000, 18 decimals:484.4601, 6 decimals: 484460100000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "484460100000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:346771400000000000000, 18 decimals:346.77139999999997, 6 decimals: 346771399999999.94" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "346771400000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:346771400000000000000, 18 decimals:346.77139999999997, 6 decimals: 346771399999999.94" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "346771400000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x01B894622C7aa890d758C8a0E8156480F0Fa5f6C (maxiVestingContracts/Dubstard) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:79680900000000000000, 18 decimals:79.6809, 6 decimals: 79680900000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "79680900000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x01B894622C7aa890d758C8a0E8156480F0Fa5f6C (maxiVestingContracts/Dubstard) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:79680900000000000000, 18 decimals:79.6809, 6 decimals: 79680900000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "79680900000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xd411b886e96291b089273a5835D2BE4406700352 (maxiVestingContracts/gosuto) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:509958000000000000000, 18 decimals:509.958, 6 decimals: 509958000000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "509958000000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0xd411b886e96291b089273a5835D2BE4406700352 (maxiVestingContracts/gosuto) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:509958000000000000000, 18 decimals:509.958, 6 decimals: 509958000000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "509958000000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+---------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q2_2024/April_2024_TritsQ1&TeamBonuses.json b/MaxiOps/Payroll_Txns/Q2_2024/April_2024_TritsQ1&TeamBonuses.json new file mode 100644 index 000000000..ea4a030a3 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/April_2024_TritsQ1&TeamBonuses.json @@ -0,0 +1,129 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1712359998854, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0x54cdc809276f5d7bade4d1b1ac40783f6a3c75c8bf545379c737a0d1babada32" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "amount": "1494978629000000000000" + } + }, + { + "to": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "1494978629000000000000", + "_vestingPeriod": "27594000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "amount": "121443502200000000000" + } + }, + { + "to": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "121443502200000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "amount": "59064872220000000000" + } + }, + { + "to": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "59064872220000000000", + "_vestingPeriod": "31536000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q2_2024/April_2024_TritsQ1&TeamBonuses.report.txt b/MaxiOps/Payroll_Txns/Q2_2024/April_2024_TritsQ1&TeamBonuses.report.txt new file mode 100644 index 000000000..9b6ce701e --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/April_2024_TritsQ1&TeamBonuses.report.txt @@ -0,0 +1,100 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q2_2024/April_2024_TritsQ1&TeamBonuses.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `9e334b79fdc1793a0e6e7b88d9ec96f3b0704ed0` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/0abbf8f5-cab8-4634-8848-99bae16f8135) +``` ++-----------+------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==============================================================================+=========+================================================================================================+==============+============+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:1494978629000000000000, 18 decimals:1494.978629, 6 decimals: 1494978629000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "1494978629000000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:1494978629000000000000, 18 decimals:1494.978629, 6 decimals: 1494978629000000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "1494978629000000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "27594000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:121443502200000000000, 18 decimals:121.4435022, 6 decimals: 121443502200000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "121443502200000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:121443502200000000000, 18 decimals:121.4435022, 6 decimals: 121443502200000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "121443502200000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------+--------------+------------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) " | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:59064872220000000000, 18 decimals:59.064872220000005, 6 decimals: 59064872220000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "59064872220000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------+--------------+------------+ +| deposit | 0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | [ | | | +| | | | "raw:59064872220000000000, 18 decimals:59.064872220000005, 6 decimals: 59064872220000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | "59064872220000000000" | | | +| | | | ] | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+------------------------------------------------------------------------------+---------+------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q2_2024/Freelancer_USDC_June_2024.json b/MaxiOps/Payroll_Txns/Q2_2024/Freelancer_USDC_June_2024.json new file mode 100644 index 000000000..c1bb6602e --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/Freelancer_USDC_June_2024.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719998315227, + "meta": { + "name": "Transactions Batch", + "description": "Pay Jalbrekt and Hyferion Freelance work for June 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xA0c60A3Bf0934869f03955f3431E044059B03E62", + "value": "6720000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096", + "value": "3480000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q2_2024/Freelancer_USDC_June_2024.report.txt b/MaxiOps/Payroll_Txns/Q2_2024/Freelancer_USDC_June_2024.report.txt new file mode 100644 index 000000000..ea6ae1681 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/Freelancer_USDC_June_2024.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q2_2024/Freelancer_USDC_June_2024.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `4ab841d22db32bd79e370a6cdf225d8579b8da52` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/40a2d480-18f8-4f2c-919a-17b1be9fb2f8) +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/jalbrekt:0xA0c60A3Bf0934869f03955f3431E044059B03E62 | 6720.0 (RAW: 6720000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/hyferion:0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096 | 3480.0 (RAW: 3480000000) | N/A | 1 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q2_2024/USDC_June.json b/MaxiOps/Payroll_Txns/Q2_2024/USDC_June.json new file mode 100644 index 000000000..cbed529ba --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/USDC_June.json @@ -0,0 +1,165 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719404832679, + "meta": { + "name": "Transactions Batch", + "description": "Maxi Payroll and partial discretionary allocations for June 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x99AfD53f807766A8B98400B0C785E500c041F32B", + "value": "12580000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93", + "value": "13850000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4", + "value": "8000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "value": "5000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3f993093c3917Fe7A117f37cFD008775249f59c8", + "value": "3750000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8c42138C925d1049EC6B29F1EcF817b1628e54Ba", + "value": "1000000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q2_2024/USDC_June.report.txt b/MaxiOps/Payroll_Txns/Q2_2024/USDC_June.report.txt new file mode 100644 index 000000000..b7e100bc8 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/USDC_June.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q2_2024/USDC_June.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `474aa6c5021aa8791184176c1c9cf9907356268d` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7fb57747-0bf2-42e9-ac76-d63c71327c31) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------------------+----------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------------+----------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/xeonus:0x99AfD53f807766A8B98400B0C785E500c041F32B | 12580.0 (RAW: 12580000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/tritium:0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93 | 13850.0 (RAW: 13850000000) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/mikeb:0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4 | 8000.0 (RAW: 8000000000) | N/A | 2 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/zen_dragon:0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 | 5000.0 (RAW: 5000000000) | N/A | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/gosuto:0x3f993093c3917Fe7A117f37cFD008775249f59c8 | 3750.0 (RAW: 3750000000) | N/A | 4 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/external-payees/discord-antiscam-bot:0x8c42138C925d1049EC6B29F1EcF817b1628e54Ba | 1000.0 (RAW: 1000000000) | N/A | 5 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------------+----------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q2_2024/USDC_May.json b/MaxiOps/Payroll_Txns/Q2_2024/USDC_May.json new file mode 100644 index 000000000..2c8580abd --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/USDC_May.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1716655545248, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xb9ee563c0e115a88cff53961eca10e58e9dad6317270f2c59c965ed69ae13968" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93", + "value": "13500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x99AfD53f807766A8B98400B0C785E500c041F32B", + "value": "12500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "value": "5000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4", + "value": "8000000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q2_2024/USDC_May.report.txt b/MaxiOps/Payroll_Txns/Q2_2024/USDC_May.report.txt new file mode 100644 index 000000000..6b9531753 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/USDC_May.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q2_2024/USDC_May.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `cacf1dcc07a225aaf9b6977a2ff8a36fcf96424b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b6d5f4e8-96b6-40f7-a2f3-8626e82797e7) +``` ++------------+-------------------------------------------------+--------------------------------------------------------------------+----------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+====================================================================+============================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93 | 13500.0 (RAW: 13500000000) | N/A | 0 | ++------------+-------------------------------------------------+--------------------------------------------------------------------+----------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x99AfD53f807766A8B98400B0C785E500c041F32B | 12500.0 (RAW: 12500000000) | N/A | 1 | ++------------+-------------------------------------------------+--------------------------------------------------------------------+----------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/emergency/zendragon:0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 | 5000.0 (RAW: 5000000000) | N/A | 2 | ++------------+-------------------------------------------------+--------------------------------------------------------------------+----------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | N/A:0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4 | 8000.0 (RAW: 8000000000) | N/A | 3 | ++------------+-------------------------------------------------+--------------------------------------------------------------------+----------------------------+-------+------------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q2_2024/veBAL_April.json b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_April.json new file mode 100644 index 000000000..eb09f6dca --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_April.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1712495341475, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xf7a11899e445ab4bb330bb66fe6d1417281fa5348983435cb20d37e10ac59025" + }, + "transactions": [ + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE4F920335d1e93382Ad99EcA12bB3F8aFD4A450F", + "amount": "277322906700000000000" + } + }, + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE1c3E247d8643d196D27BCd3e1505cA37da2BF1e", + "amount": "554645813300000000000" + } + }, + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x3f993093c3917Fe7A117f37cFD008775249f59c8", + "amount": "554645813300000000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q2_2024/veBAL_April.report.txt b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_April.report.txt new file mode 100644 index 000000000..196252b30 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_April.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q2_2024/veBAL_April.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `9e334b79fdc1793a0e6e7b88d9ec96f3b0704ed0` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/901b0bf2-c9e7-4263-a48e-043f5a6e5860) +``` ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+===========================================================+================================================+==========================================+=======+============+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0xE4F920335d1e93382Ad99EcA12bB3F8aFD4A450F | 277.3229067 (RAW: 277322906700000000000) | N/A | 0 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0xE1c3E247d8643d196D27BCd3e1505cA37da2BF1e | 554.6458133 (RAW: 554645813300000000000) | N/A | 1 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0x3f993093c3917Fe7A117f37cFD008775249f59c8 | 554.6458133 (RAW: 554645813300000000000) | N/A | 2 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q2_2024/veBAL_June.json b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_June.json new file mode 100644 index 000000000..cae84eb84 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_June.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1716653799813, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x509d1f3ca0544a5ef904001307b02a75366b1ddf4c5163b52f8cf29a76a62f5c" + }, + "transactions": [ + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE4F920335d1e93382Ad99EcA12bB3F8aFD4A450F", + "amount": "277322906700000000000" + } + }, + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE1c3E247d8643d196D27BCd3e1505cA37da2BF1e", + "amount": "554645813300000000000" + } + }, + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x3f993093c3917Fe7A117f37cFD008775249f59c8", + "amount": "554645813300000000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q2_2024/veBAL_June.report.txt b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_June.report.txt new file mode 100644 index 000000000..b3872d2dc --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_June.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q2_2024/veBAL_June.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `3371854eca07466162fedf70e6df368fdf3d7674` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9dc326b4-242a-4360-bce6-8145bca46757) +``` ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+===========================================================+================================================+==========================================+=======+============+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0xE4F920335d1e93382Ad99EcA12bB3F8aFD4A450F | 277.3229067 (RAW: 277322906700000000000) | N/A | 0 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0xE1c3E247d8643d196D27BCd3e1505cA37da2BF1e | 554.6458133 (RAW: 554645813300000000000) | N/A | 1 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0x3f993093c3917Fe7A117f37cFD008775249f59c8 | 554.6458133 (RAW: 554645813300000000000) | N/A | 2 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q2_2024/veBAL_May.json b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_May.json new file mode 100644 index 000000000..f050413c6 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_May.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714257187218, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xe1f86a398572236420c6b9d933599659b92a031d0919e4d774cf6fcac804539f" + }, + "transactions": [ + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE4F920335d1e93382Ad99EcA12bB3F8aFD4A450F", + "amount": "277322906700000000000" + } + }, + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xE1c3E247d8643d196D27BCd3e1505cA37da2BF1e", + "amount": "554645813300000000000" + } + }, + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "recipient", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x3f993093c3917Fe7A117f37cFD008775249f59c8", + "amount": "554645813300000000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q2_2024/veBAL_May.report.txt b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_May.report.txt new file mode 100644 index 000000000..5db2442bf --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q2_2024/veBAL_May.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q2_2024/veBAL_May.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `6301b52cc2d180425dd88d0f7a6c134adcb8361a` +CHAIN(S): `mainnet` +TENDERLY: SKIPPED (`JSONDecodeError('Expecting value: line 1 column 1 (char 0)')`) +``` ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+===========================================================+================================================+==========================================+=======+============+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0xE4F920335d1e93382Ad99EcA12bB3F8aFD4A450F | 277.3229067 (RAW: 277322906700000000000) | N/A | 0 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0xE1c3E247d8643d196D27BCd3e1505cA37da2BF1e | 554.6458133 (RAW: 554645813300000000000) | N/A | 1 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +| transfer | B-80BAL-20WETH:0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 | N/A:0x3f993093c3917Fe7A117f37cFD008775249f59c8 | 554.6458133 (RAW: 554645813300000000000) | N/A | 2 | ++------------+-----------------------------------------------------------+------------------------------------------------+------------------------------------------+-------+------------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_Discretionary_USDC_September_2024.json b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_Discretionary_USDC_September_2024.json new file mode 100644 index 000000000..1a387428c --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_Discretionary_USDC_September_2024.json @@ -0,0 +1,165 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727936779828, + "meta": { + "name": "Transactions Batch", + "description": "Pay Freelancers and Discretionary spendings for September 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xA0c60A3Bf0934869f03955f3431E044059B03E62", + "value": "3360000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096", + "value": "2820000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x94ac474B5Badc251Cf11C06713FB1E522de0747E", + "value": "2587500000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x99AfD53f807766A8B98400B0C785E500c041F32B", + "value": "240000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE743449D33F2F330A46dbC050565239F5dF8805A", + "value": "3500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x195A4B5583b2AB22C2a72Ef4E8f618adb0e29845", + "value": "100000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_Discretionary_USDC_September_2024.report.txt b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_Discretionary_USDC_September_2024.report.txt new file mode 100644 index 000000000..0b5a89b60 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_Discretionary_USDC_September_2024.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q3_2024/Freelancer_Discretionary_USDC_September_2024.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `d33daa83832355a0da00afac5002f8b28f411d32` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/84d29e13-c5fb-4ab9-9362-95814e4c4aa0) + +``` ++----------+-------------------------------------------------+--------------------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+--------------------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/jalbrekt:0xA0c60A3Bf0934869f03955f3431E044059B03E62 | 3360.0 (RAW: 3360000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/hyferion:0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096 | 2820.0 (RAW: 2820000000) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/external-payees/onchainification-labs:0x94ac474B5Badc251Cf11C06713FB1E522de0747E | 2587.5 (RAW: 2587500000) | N/A | 2 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/xeonus:0x99AfD53f807766A8B98400B0C785E500c041F32B | 240.0 (RAW: 240000000) | N/A | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/zen_dragon:0xE743449D33F2F330A46dbC050565239F5dF8805A | 3500.0 (RAW: 3500000000) | N/A | 4 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/external-payees/drpc-usdc:0x195A4B5583b2AB22C2a72Ef4E8f618adb0e29845 | 100.0 (RAW: 100000000) | N/A | 5 | ++----------+-------------------------------------------------+--------------------------------------------------------------------------------------+--------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_August_2024.json b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_August_2024.json new file mode 100644 index 000000000..0d331e105 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_August_2024.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1725439029455, + "meta": { + "name": "Transactions Batch", + "description": "Pay Jalbrekt and Hyferion Freelance work for August 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xA0c60A3Bf0934869f03955f3431E044059B03E62", + "value": "6300000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096", + "value": "3090000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_August_2024.report.txt b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_August_2024.report.txt new file mode 100644 index 000000000..032b5608d --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_August_2024.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_August_2024.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `404c8a59bb8cacc0fa803665e6e06a75cf092bef` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c42ba402-daad-46cf-8fe8-3d2a93354f2b) +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/jalbrekt:0xA0c60A3Bf0934869f03955f3431E044059B03E62 | 6300.0 (RAW: 6300000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/hyferion:0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096 | 3090.0 (RAW: 3090000000) | N/A | 1 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_July_2024.json b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_July_2024.json new file mode 100644 index 000000000..cbe372fa3 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_July_2024.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722860984399, + "meta": { + "name": "Transactions Batch", + "description": "Pay Jalbrekt and Hyferion Freelance work for July 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xA0c60A3Bf0934869f03955f3431E044059B03E62", + "value": "4740000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096", + "value": "3045000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_July_2024.report.txt b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_July_2024.report.txt new file mode 100644 index 000000000..397ae81c8 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_July_2024.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q3_2024/Freelancer_USDC_July_2024.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `50ed3a3d35573a8854dfed0ccfdf7919a6880435` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/304e5f07-43ee-482a-bbe4-3ea03916bd98) +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/jalbrekt:0xA0c60A3Bf0934869f03955f3431E044059B03E62 | 4740.0 (RAW: 4740000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/hyferion:0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096 | 3045.0 (RAW: 3045000000) | N/A | 1 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q3_2024/USDC_August.json b/MaxiOps/Payroll_Txns/Q3_2024/USDC_August.json new file mode 100644 index 000000000..8b905c75b --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/USDC_August.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722216149413, + "meta": { + "name": "Transactions Batch", + "description": "Contributor salaries for August", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xd147d279c5512f8d35af812f492943c33608dc94949263699fd3ec9c3467f27b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x99AfD53f807766A8B98400B0C785E500c041F32B", + "value": "12500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93", + "value": "13500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4", + "value": "8000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "value": "5000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3f993093c3917Fe7A117f37cFD008775249f59c8", + "value": "7500000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q3_2024/USDC_August.report.txt b/MaxiOps/Payroll_Txns/Q3_2024/USDC_August.report.txt new file mode 100644 index 000000000..d45f4f68b --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/USDC_August.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q3_2024/USDC_August.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `afd618e39f911e49b630995deaf68206e2562a6c` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2be822cd-d4b8-4b6a-8e16-3a5e53bc4135) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/xeonus:0x99AfD53f807766A8B98400B0C785E500c041F32B | 12500.0 (RAW: 12500000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/tritium:0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93 | 13500.0 (RAW: 13500000000) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/mikeb:0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4 | 8000.0 (RAW: 8000000000) | N/A | 2 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/zen_dragon:0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 | 5000.0 (RAW: 5000000000) | N/A | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/gosuto:0x3f993093c3917Fe7A117f37cFD008775249f59c8 | 7500.0 (RAW: 7500000000) | N/A | 4 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q3_2024/USDC_July.json b/MaxiOps/Payroll_Txns/Q3_2024/USDC_July.json new file mode 100644 index 000000000..5592f1346 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/USDC_July.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722216149413, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xd147d279c5512f8d35af812f492943c33608dc94949263699fd3ec9c3467f27b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x99AfD53f807766A8B98400B0C785E500c041F32B", + "value": "12500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93", + "value": "13500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4", + "value": "8000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "value": "5000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3f993093c3917Fe7A117f37cFD008775249f59c8", + "value": "7500000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q3_2024/USDC_July.report.txt b/MaxiOps/Payroll_Txns/Q3_2024/USDC_July.report.txt new file mode 100644 index 000000000..57ff1fe77 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/USDC_July.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q3_2024/USDC_July.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `4581951d82e105e093ad9dfd435805012ae315d4` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/283091b0-45cc-4003-990f-35227df1e641) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/xeonus:0x99AfD53f807766A8B98400B0C785E500c041F32B | 12500.0 (RAW: 12500000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/tritium:0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93 | 13500.0 (RAW: 13500000000) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/mikeb:0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4 | 8000.0 (RAW: 8000000000) | N/A | 2 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/zen_dragon:0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 | 5000.0 (RAW: 5000000000) | N/A | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/gosuto:0x3f993093c3917Fe7A117f37cFD008775249f59c8 | 7500.0 (RAW: 7500000000) | N/A | 4 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q3_2024/USDC_September.json b/MaxiOps/Payroll_Txns/Q3_2024/USDC_September.json new file mode 100644 index 000000000..7019cfc9a --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/USDC_September.json @@ -0,0 +1,100 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722216149413, + "meta": { + "name": "Transactions Batch", + "description": "Contributor salaries for September 2024", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xd147d279c5512f8d35af812f492943c33608dc94949263699fd3ec9c3467f27b" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x99AfD53f807766A8B98400B0C785E500c041F32B", + "value": "12500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93", + "value": "13500000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4", + "value": "8000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE743449D33F2F330A46dbC050565239F5dF8805A", + "value": "5000000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3f993093c3917Fe7A117f37cFD008775249f59c8", + "value": "7500000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q3_2024/USDC_September.report.txt b/MaxiOps/Payroll_Txns/Q3_2024/USDC_September.report.txt new file mode 100644 index 000000000..8c5d800e9 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q3_2024/USDC_September.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q3_2024/USDC_September.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `4bb1da48f7b7387eacac04dfd99bef04a61a9ebb` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6f1b9da8-7117-4736-8869-f812c2aa2cae) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/xeonus:0x99AfD53f807766A8B98400B0C785E500c041F32B | 12500.0 (RAW: 12500000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/tritium:0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93 | 13500.0 (RAW: 13500000000) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/mikeb:0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4 | 8000.0 (RAW: 8000000000) | N/A | 2 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/zen_dragon:0xE743449D33F2F330A46dbC050565239F5dF8805A | 5000.0 (RAW: 5000000000) | N/A | 3 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/gosuto:0x3f993093c3917Fe7A117f37cFD008775249f59c8 | 7500.0 (RAW: 7500000000) | N/A | 4 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------+----------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Nov_2024.json b/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Nov_2024.json new file mode 100644 index 000000000..a19c0093a --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Nov_2024.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733213048893, + "meta": { + "name": "Transactions Batch", + "description": "Contributor payroll Nov 2024", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xA0c60A3Bf0934869f03955f3431E044059B03E62", + "value": "3120000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096", + "value": "4260000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Nov_2024.report.txt b/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Nov_2024.report.txt new file mode 100644 index 000000000..45bbdd239 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Nov_2024.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Nov_2024.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `921e6f5f7961e479472d58fe71c01793435ce3e0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9c129b52-a5c2-433f-9316-93c0f0267d3b) + +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/jalbrekt:0xA0c60A3Bf0934869f03955f3431E044059B03E62 | 3120.0 (RAW: 3120000000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/hyferion:0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096 | 4260.0 (RAW: 4260000000) | N/A | 1 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Oct_2024.json b/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Oct_2024.json new file mode 100644 index 000000000..6f8727ecb --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Oct_2024.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730876384604, + "meta": { + "name": "Transactions Batch", + "description": "Payment", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x94ac474B5Badc251Cf11C06713FB1E522de0747E", + "value": "747500000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xA0c60A3Bf0934869f03955f3431E044059B03E62", + "value": "5280000000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096", + "value": "2880000000" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Oct_2024.report.txt b/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Oct_2024.report.txt new file mode 100644 index 000000000..f82d0c893 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Oct_2024.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q4_2024/Discretionary_Pay_Oct_2024.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `23430497cc14896dca821f9b7578277055e5a3ea` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/850b4af1-5be7-4dc5-a014-51c811d6f6b4) + +``` ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | payees/onchainification-labs:0x94ac474B5Badc251Cf11C06713FB1E522de0747E | 747.5 (RAW: 747500000) | N/A | 0 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/jalbrekt:0xA0c60A3Bf0934869f03955f3431E044059B03E62 | 5280.0 (RAW: 5280000000) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | EOA/contributors-payees/hyferion:0xE24fA83aF4dDd6d3e448908ed3F931f0A23a6096 | 2880.0 (RAW: 2880000000) | N/A | 2 | ++----------+-------------------------------------------------+-----------------------------------------------------------------------------+--------------------------+-----+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q4_2024/README.md b/MaxiOps/Payroll_Txns/Q4_2024/README.md new file mode 100644 index 000000000..29505db1c --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/README.md @@ -0,0 +1,6 @@ +sUSDS was bought at 1.0038 (https://explorer.cow.fi/orders/0x1da5f1f2822333f99f009141abc1c22613a49277ee4942a92053468060bbba67166f54f44f271407f24aa1be415a7300356373256706bc02?tab=overview) + +streams can be entered via https://app.sablier.com/create/csv/?shape=linear +vesting can be entered via https://app.sablier.com/create/csv/?shape=tranchedMonthly + +all tokens will need approval to 0xB5Ec9706C3Be9d22326D208f491E5DEef7C8d9f0 (SablierV2BatchLockup) diff --git a/MaxiOps/Payroll_Txns/Q4_2024/auraBAL-Bridge-to-Arbi.json b/MaxiOps/Payroll_Txns/Q4_2024/auraBAL-Bridge-to-Arbi.json new file mode 100644 index 000000000..5938d4e76 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/auraBAL-Bridge-to-Arbi.json @@ -0,0 +1,105 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730313002279, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xadac125dd7f95ee13b63636b9c7302e7f167e6ff0f76eaa83b41d0e112217195" + }, + "transactions": [ + { + "to": "0x616e8BfA43F920657B3497DBf40D6b1A02D4608d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68", + "amount": "3754762013519924575855" + } + }, + { + "to": "0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68", + "value": "10000000000000000", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_from", "type": "address", "internalType": "address" }, + { "name": "_dstChainId", "type": "uint16", "internalType": "uint16" }, + { "name": "_toAddress", "type": "bytes", "internalType": "bytes" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_refundAddress", + "type": "address", + "internalType": "address payable" + }, + { + "name": "_zroPaymentAddress", + "type": "address", + "internalType": "address" + }, + { "name": "_adapterParams", "type": "bytes", "internalType": "bytes" } + ], + "name": "sendFrom", + "payable": true + }, + "contractInputsValues": { + "_from": "0x166f54F44F271407f24AA1BE415a730035637325", + "_dstChainId": "110", + "_toAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "_amount": "3754762013519924575855", + "_refundAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "_zroPaymentAddress": "0x0000000000000000000000000000000000000000", + "_adapterParams": "0x" + } + }, + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "decreaseApproval", + "payable": false + }, + "contractInputsValues": { + "spender": "0x3e0d44542972859de3CAdaF856B1a4FD351B4D2E", + "amount": "144929929968331053" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { + "name": "subtractedValue", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "decreaseAllowance", + "payable": false + }, + "contractInputsValues": { + "spender": "0xC92E8bdf79f0507f65a392b0ab4667716BFE0110", + "subtractedValue": "8442075728265832876867" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q4_2024/auraBAL-Bridge-to-Arbi.report.txt b/MaxiOps/Payroll_Txns/Q4_2024/auraBAL-Bridge-to-Arbi.report.txt new file mode 100644 index 000000000..c23d3b23f --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/auraBAL-Bridge-to-Arbi.report.txt @@ -0,0 +1,59 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q4_2024/auraBAL-Bridge-to-Arbi.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `727144e3033e1af4758e62ac80d7b2d15dffbb8e` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/009cd3d2-7002-4008-93cf-2730ef673f59) + +``` ++-------------------+-----------------------------------------------------------------+-------------------------------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+-----------------------------------------------------------------+-------------------------------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x616e8BfA43F920657B3497DBf40D6b1A02D4608d (tokens/AURABAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68 (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:3754762013519924575855, 18 decimals:3754.762013519924575855, 6 decimals: 3754762013519924.575855" | | | +| | | | ] | | | +| | | | } | | | +| sendFrom | 0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68 (Not Found) | 10000000000000000/1e18 = 0.01 | { | N/A | N/A | +| | | | "_from": [ | | | +| | | | "0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops)" | | | +| | | | ], | | | +| | | | "_dstChainId": [ | | | +| | | | "110" | | | +| | | | ], | | | +| | | | "_toAddress": [ | | | +| | | | "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD (N/A)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:3754762013519924575855, 18 decimals:3754.762013519924575855, 6 decimals: 3754762013519924.575855" | | | +| | | | ], | | | +| | | | "_refundAddress": [ | | | +| | | | "0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops)" | | | +| | | | ], | | | +| | | | "_zroPaymentAddress": [ | | | +| | | | "0x0000000000000000000000000000000000000000 (zero/zero)" | | | +| | | | ], | | | +| | | | "_adapterParams": [ | | | +| | | | "0x" | | | +| | | | ] | | | +| | | | } | | | +| decreaseApproval | 0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 (tokens/BalWeth8020) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x3e0d44542972859de3CAdaF856B1a4FD351B4D2E (stake_dao/sdBAL_deposit_contract)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:144929929968331053, 18 decimals:0.144929929968331053, 6 decimals: 144929929968.331053" | | | +| | | | ] | | | +| | | | } | | | +| decreaseAllowance | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xC92E8bdf79f0507f65a392b0ab4667716BFE0110 (cow/vault_relayer)" | | | +| | | | ], | | | +| | | | "subtractedValue": [ | | | +| | | | "raw:8442075728265832876867, 18 decimals:8442.075728265832876867, 6 decimals: 8442075728265832.876867" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+-----------------------------------------------------------------+-------------------------------+------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Delegate-to-voting-Optimizer.json b/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Delegate-to-voting-Optimizer.json new file mode 100644 index 000000000..a779497df --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Delegate-to-voting-Optimizer.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729869697101, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x1672cbe2631f9e2d3b3a58fc28cfa270980bb8398d98ccc55b4d8011b3e33880" + }, + "transactions": [ + { + "to": "0x469788fE6E9E9681C6ebF3bF78e7Fd26Fc015446", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "id", "type": "bytes32" }, + { "internalType": "address", "name": "delegate", "type": "address" } + ], + "name": "setDelegate", + "payable": false + }, + "contractInputsValues": { + "id": "0x736462616c2e6574680000000000000000000000000000000000000000000000", + "delegate": "0x52ea58f4FC3CEd48fa18E909226c1f8A0EF887DC" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Delegate-to-voting-Optimizer.report.txt b/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Delegate-to-voting-Optimizer.report.txt new file mode 100644 index 000000000..67901d134 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Delegate-to-voting-Optimizer.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Delegate-to-voting-Optimizer.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `3247f67a2f44972b28b031a094c193411ac603a0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a86bf61f-bfff-4993-bdec-b10360750215) + +``` ++-------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +| setDelegate | 0x469788fE6E9E9681C6ebF3bF78e7Fd26Fc015446 (Not Found) | 0 | { | N/A | N/A | +| | | | "id": [ | | | +| | | | "0x736462616c2e6574680000000000000000000000000000000000000000000000" | | | +| | | | ], | | | +| | | | "delegate": [ | | | +| | | | "0x52ea58f4FC3CEd48fa18E909226c1f8A0EF887DC (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++-------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Mint-and-Stake.json b/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Mint-and-Stake.json new file mode 100644 index 000000000..42224038e --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Mint-and-Stake.json @@ -0,0 +1,51 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729622692940, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x8e921edcc6b2dbbeebbcabc71f6e896c4e2e4db148df880094a415c3a40ffde8" + }, + "transactions": [ + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x3e0d44542972859de3CAdaF856B1a4FD351B4D2E", + "amount": "8032855070070031668947" + } + }, + { + "to": "0x3e0d44542972859de3CAdaF856B1a4FD351B4D2E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bool", "name": "_lock", "type": "bool" }, + { "internalType": "bool", "name": "_stake", "type": "bool" }, + { "internalType": "address", "name": "_user", "type": "address" } + ], + "name": "depositAll", + "payable": false + }, + "contractInputsValues": { + "_lock": "true", + "_stake": "true", + "_user": "0x166f54F44F271407f24AA1BE415a730035637325" + } + } + ] +} diff --git a/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Mint-and-Stake.report.txt b/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Mint-and-Stake.report.txt new file mode 100644 index 000000000..a433c3433 --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Mint-and-Stake.report.txt @@ -0,0 +1,31 @@ +FILENAME: `MaxiOps/Payroll_Txns/Q4_2024/sdBAL-Mint-and-Stake.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `813a21eb23b100e6a2561c139e1162c39691c6eb` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6898a264-75bf-4ed3-83c3-bc605e2bd1f7) + +``` ++------------+-----------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------+-----------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 (tokens/BalWeth8020) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x3e0d44542972859de3CAdaF856B1a4FD351B4D2E (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:8032855070070031668947, 18 decimals:8032.855070070031668947, 6 decimals: 8032855070070031.668947" | | | +| | | | ] | | | +| | | | } | | | +| depositAll | 0x3e0d44542972859de3CAdaF856B1a4FD351B4D2E (Not Found) | 0 | { | N/A | N/A | +| | | | "_lock": [ | | | +| | | | "true" | | | +| | | | ], | | | +| | | | "_stake": [ | | | +| | | | "true" | | | +| | | | ], | | | +| | | | "_user": [ | | | +| | | | "0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops)" | | | +| | | | ] | | | +| | | | } | | | ++------------+-----------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/Payroll_Txns/Q4_2024/susds_streams_24q4-25q1.csv b/MaxiOps/Payroll_Txns/Q4_2024/susds_streams_24q4-25q1.csv new file mode 100644 index 000000000..58055611f --- /dev/null +++ b/MaxiOps/Payroll_Txns/Q4_2024/susds_streams_24q4-25q1.csv @@ -0,0 +1,7 @@ +address,amount,start,end +0x99AfD53f807766A8B98400B0C785E500c041F32B,77702.394,2024-10-01 02:00,2025-03-31 01:59 +0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93,80690.947,2024-10-01 02:00,2025-03-31 01:59 +0x1b7D0C1d2A730fa791A2937AD75Fef11AeACa3D4,53793.965,2024-10-01 02:00,2025-03-31 01:59 +0xE743449D33F2F330A46dbC050565239F5dF8805A,65748.179,2024-10-01 02:00,2025-03-31 01:59 +0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae,10459.938,2024-10-01 02:00,2025-03-31 01:59 +0x3f993093c3917Fe7A117f37cFD008775249f59c8,44828.304,2024-10-01 02:00,2025-03-31 01:59 diff --git a/MaxiOps/PoL/mainnet/SendCowAMMBalEthLMResultsToDAO.json b/MaxiOps/PoL/mainnet/SendCowAMMBalEthLMResultsToDAO.json new file mode 100644 index 000000000..5fa959c72 --- /dev/null +++ b/MaxiOps/PoL/mainnet/SendCowAMMBalEthLMResultsToDAO.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723584809518, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x4c61304d473da399ebec063b8984a5e39568429e946bac5b1a6e448674fd9a3d" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "amount": "1043947122069901445248" + } + }, + { + "to": "0xf8f5b88328dff3d19e5f4f11a9700293ac8f638f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "amount": "156039119661920131226849" + } + } + ] +} diff --git a/MaxiOps/PoL/mainnet/SendCowAMMBalEthLMResultsToDAO.report.txt b/MaxiOps/PoL/mainnet/SendCowAMMBalEthLMResultsToDAO.report.txt new file mode 100644 index 000000000..e7c888df3 --- /dev/null +++ b/MaxiOps/PoL/mainnet/SendCowAMMBalEthLMResultsToDAO.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/PoL/mainnet/SendCowAMMBalEthLMResultsToDAO.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `207801994cbfae547d2b7c2ea2c78e936ebda70a` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f72ca790-df5f-457b-8917-058e0c5806ad) +``` ++----------+-------------------------------------------------------------+----------------------------------------------------------+----------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------------------+----------------------------------------------------------+----------------------------------------------------+-----+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 1043.9471220699015 (RAW: 1043947122069901445248) | N/A | 0 | +| transfer | BCoW-50BAL-50ETH:0xf8F5B88328DFF3d19E5f4F11A9700293Ac8f638F | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 156039.11966192012 (RAW: 156039119661920131226849) | N/A | 1 | ++----------+-------------------------------------------------------------+----------------------------------------------------------+----------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1000to1250-7days.json b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1000to1250-7days.json new file mode 100644 index 000000000..70215d985 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1000to1250-7days.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727806742875, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x3f1474d1eab040b2710fac5e0137a288fd10492e427b80354158df03851bd5b6" + }, + "transactions": [ + { + "to": "0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { "internalType": "uint256", "name": "endTime", "type": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "1250", "endTime": "1728411486" } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1000to1250-7days.report.txt b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1000to1250-7days.report.txt new file mode 100644 index 000000000..dedb2e6b9 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1000to1250-7days.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1000to1250-7days.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `052829507ca1465d3253ffc75fb35a131a0b2992` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/54f54b05-7b09-4975-b0d1-5735c9891ef0) + +``` ++-----------------------------------+-----------------------------------------------------------------------+-------+-----------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------------------+-----------------------------------------------------------------------+-------+-----------------------------------------------------------+------------+----------+ +| startAmplificationParameterUpdate | 0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF (pools/GHO/USDT/USDC-8353) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:1250, 18 decimals:1.25E-15, 6 decimals: 0.00125" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1728411486" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------------------+-----------------------------------------------------------------------+-------+-----------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1250to1500-7days.json b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1250to1500-7days.json new file mode 100644 index 000000000..b83bfc489 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1250to1500-7days.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729782749724, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8c9d3c9a7779e540d5616f3d30e500ca35cdf0115d4c5779f6816fd06b154504" + }, + "transactions": [ + { + "to": "0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { "internalType": "uint256", "name": "endTime", "type": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "1500", "endTime": "1730386800" } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1250to1500-7days.report.txt b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1250to1500-7days.report.txt new file mode 100644 index 000000000..ac605e4c5 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1250to1500-7days.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/GHO_USDC_USDT_1250to1500-7days.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `244d84494a28a664f7da7b0161980f0bf175e5bd` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/01b59d54-3f4e-46d9-a1b4-0f3387642258) + +``` ++-----------------------------------+-----------------------------------------------------------------------+-------+---------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------------------+-----------------------------------------------------------------------+-------+---------------------------------------------------------+------------+----------+ +| startAmplificationParameterUpdate | 0x8353157092ED8Be69a9DF8F95af097bbF33Cb2aF (pools/GHO/USDT/USDC-8353) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:1500, 18 decimals:1.5E-15, 6 decimals: 0.0015" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1730386800" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------------------+-----------------------------------------------------------------------+-------+---------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/sUSDE-USDC-100-to-500-7Days.json b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/sUSDE-USDC-100-to-500-7Days.json new file mode 100644 index 000000000..d3b75b5f0 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/sUSDE-USDC-100-to-500-7Days.json @@ -0,0 +1,33 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730138311131, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xdbf2ba459cc5e0206c548aeabf355351f6f16b38770bf7b541968a66c5473029" + }, + "transactions": [ + { + "to": "0xb819feeF8F0fcDC268AfE14162983A69f6BF179E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { "internalType": "uint256", "name": "endTime", "type": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "500", "endTime": "1730828673" } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/sUSDE-USDC-100-to-500-7Days.report.txt b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/sUSDE-USDC-100-to-500-7Days.report.txt new file mode 100644 index 000000000..37eed7fb3 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/sUSDE-USDC-100-to-500-7Days.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/sUSDE-USDC-100-to-500-7Days.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `5a6c3f925523734fd3c44571c66f139dcdc9b2ab` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/51a28887-467c-4c8f-b505-d1f0655b2400) + +``` ++-----------------------------------+--------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------------------+--------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| startAmplificationParameterUpdate | 0xb819feeF8F0fcDC268AfE14162983A69f6BF179E (pools/sUSDe/USDC-b819) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:500, 18 decimals:5E-16, 6 decimals: 0.0005" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1730828673" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------------------+--------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/v3-AaveLidowstETHto5000-&-Ethx-aWETHto500.json b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/v3-AaveLidowstETHto5000-&-Ethx-aWETHto500.json new file mode 100644 index 000000000..97f0f8778 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/v3-AaveLidowstETHto5000-&-Ethx-aWETHto500.json @@ -0,0 +1,51 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734036363630, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x420d6f5f57fa299ac728c6e069d230d286887b79d7f500dc6233ba349c355362" + }, + "transactions": [ + { + "to": "0xc4Ce391d82D164c166dF9c8336DDF84206b2F812", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { "internalType": "uint256", "name": "endTime", "type": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "5000", "endTime": "1735263157" } + }, + { + "to": "0x4AB7aB316D43345009B2140e0580B072eEc7DF16", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "rawEndValue", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "endTime", "type": "uint256", "internalType": "uint256" } + ], + "name": "startAmplificationParameterUpdate", + "payable": false + }, + "contractInputsValues": { "rawEndValue": "500", "endTime": "1734312757" } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/v3-AaveLidowstETHto5000-&-Ethx-aWETHto500.report.txt b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/v3-AaveLidowstETHto5000-&-Ethx-aWETHto500.report.txt new file mode 100644 index 000000000..12402dbba --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/v3-AaveLidowstETHto5000-&-Ethx-aWETHto500.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolAmpChanges/Mainnet/v3-AaveLidowstETHto5000-&-Ethx-aWETHto500.json` +MULTISIG: `multisigs/maxi_omni (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `d654fb99d33de2d1a313438c98c780654df2aa7c` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/43161f19-0260-480f-a737-c39334719e8c) + +``` ++-----------------------------------+-------------------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------------------+-------------------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| startAmplificationParameterUpdate | 0xc4Ce391d82D164c166dF9c8336DDF84206b2F812 (pools/Aave Lido wETH-wstETH-c4ce) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:5000, 18 decimals:5E-15, 6 decimals: 0.005" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1735263157" | | | +| | | | ] | | | +| | | | } | | | +| startAmplificationParameterUpdate | 0x4AB7aB316D43345009B2140e0580B072eEc7DF16 (pools/ETHx waWETH-4ab7) | 0 | { | N/A | N/A | +| | | | "rawEndValue": [ | | | +| | | | "raw:500, 18 decimals:5E-16, 6 decimals: 0.0005" | | | +| | | | ], | | | +| | | | "endTime": [ | | | +| | | | "1734312757" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------------------+-------------------------------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Avalanche/BTC-WAVAX-changeFees.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Avalanche/BTC-WAVAX-changeFees.json new file mode 100644 index 000000000..4293c647f --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Avalanche/BTC-WAVAX-changeFees.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1726033544921, + "meta": { + "name": "Transactions Batch", + "description": "Set swap fee to 0.5% for 50BTC.b-50sAVAX", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x" + }, + "transactions": [ + { + "to": "0xb8a049353e647f29cf94f32b609bad6f67aff080", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "swapFeePercentage", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "5000000000000000" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Avalanche/BTC-WAVAX-changeFees.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Avalanche/BTC-WAVAX-changeFees.report.txt new file mode 100644 index 000000000..5fd098f34 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Avalanche/BTC-WAVAX-changeFees.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/PoolSwapFeeChanges/BTC-WAVAX-changeFees.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `55afbac00c15c132cf36cf308e9808fdedc8b5f6` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c8375032-c6cf-43f1-8fae-aff9b7970beb) + +``` ++----------------------+-------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+-------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| setSwapFeePercentage | 0xb8a049353e647f29cf94f32b609bad6f67aff080 (pools/50BTC.b-50sAVAX-b8a0) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": [ | | | +| | | | "5000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+-------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps.json new file mode 100644 index 000000000..dc7534026 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps.json @@ -0,0 +1,36 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733512232643, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6", + "createdFromOwnerAddress": "", + "checksum": "0xfd542aa3d5ec563320f86c37d3a66c614e99366d2ade25a137c490f4e0467d13" + }, + "transactions": [ + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { "internalType": "uint256[]", "name": "fees", "type": "uint256[]" } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x5c6ee304399dbdb9c8ef030ab642b10820db8f56]", + "fees": "[10000000000000000]" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps.report.txt new file mode 100644 index 000000000..b82a98c06 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps.json` +MULTISIG: `multisigs/feeManager (mainnet:0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6)` +COMMIT: `059e749eeb78fe874e8821ea794df176a36cabd5` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/acaa28dd-57e3-44d0-8dc0-aaa7eff03589) + +``` ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +| setSwapFees | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B (gauntlet/GauntletFeeSetter) | 0 | { | N/A | N/A | +| | | | "addresses": [ | | | +| | | | "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56 (tokens/BalWeth8020)" | | | +| | | | ], | | | +| | | | "fees": [ | | | +| | | | "10000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps_part2.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps_part2.json new file mode 100644 index 000000000..dc7534026 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps_part2.json @@ -0,0 +1,36 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733512232643, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6", + "createdFromOwnerAddress": "", + "checksum": "0xfd542aa3d5ec563320f86c37d3a66c614e99366d2ade25a137c490f4e0467d13" + }, + "transactions": [ + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { "internalType": "uint256[]", "name": "fees", "type": "uint256[]" } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x5c6ee304399dbdb9c8ef030ab642b10820db8f56]", + "fees": "[10000000000000000]" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps_part2.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps_part2.report.txt new file mode 100644 index 000000000..994eff0a7 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps_part2.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80-20-bal-weth-50bps-to-100bps_part2.json` +MULTISIG: `multisigs/feeManager (mainnet:0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6)` +COMMIT: `25234348bc6e5c1e39a30313902d94f019acea56` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c52d4d9d-6b3e-44a0-86d5-5efd72849b81) + +``` ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +| setSwapFees | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B (gauntlet/GauntletFeeSetter) | 0 | { | N/A | N/A | +| | | | "addresses": [ | | | +| | | | "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56 (tokens/BalWeth8020)" | | | +| | | | ], | | | +| | | | "fees": [ | | | +| | | | "10000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH-changeFeesToOnePercent.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH-changeFeesToOnePercent.json new file mode 100644 index 000000000..c467551da --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH-changeFeesToOnePercent.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1725344898847, + "meta": { + "name": "Transactions Batch", + "description": "Set swap fee to 1% for Balancer 80BAL20wETH/wETH", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x" + }, + "transactions": [ + { + "to": "0xc5c91aea7551095c3e1ff0f94f682c45b347ad73", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "swapFeePercentage", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "10000000000000000" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH-changeFeesToOnePercent.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH-changeFeesToOnePercent.report.txt new file mode 100644 index 000000000..9ba6a9aa4 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH-changeFeesToOnePercent.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/PoolSwapFeeChanges/80BAL20WETH-WETH-changeFeesToOnePercent.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `70859effa0fbb351c05e663f1032c7923893f0d9` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2b313848-9c61-4ca0-a066-b37b470948ae) +``` ++----------------------+--------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+--------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| setSwapFeePercentage | 0xc5c91aea7551095c3e1ff0f94f682c45b347ad73 (pools/80BAL20wETH/wETH-c5c9) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": [ | | | +| | | | "10000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+--------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH_changeFees.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH_changeFees.json new file mode 100644 index 000000000..ce765c692 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH_changeFees.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1724400515066, + "meta": { + "name": "Transactions Batch", + "description": "Set swap fee to 0.1% from 1% for BAL80WETH20-WETH weighted pool", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf4fc914a89d4dfb729cab33e9d3fdf749fc3bf57651e07aa1082042d726378d3" + }, + "transactions": [ + { + "to": "0xC5c91aea7551095c3E1FF0f94f682c45b347AD73", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "swapFeePercentage", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "1000000000000000" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH_changeFees.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH_changeFees.report.txt new file mode 100644 index 000000000..06b0cb6bc --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-WETH_changeFees.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/PoolSwapFeeChanges/80BAL20WETH-WETH_changeFees.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `59927591bde77e9e39121b7e2d7999cf77af87ff` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/656a6ee5-8ed8-40b2-adca-fa1f88343632) +``` ++----------------------+--------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+--------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| setSwapFeePercentage | 0xC5c91aea7551095c3E1FF0f94f682c45b347AD73 (pools/80BAL20wETH/wETH-c5c9) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": [ | | | +| | | | "1000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+--------------------------------------------------------------------------+-------+--------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-from-1-to-0.5-Sept26-2024.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-from-1-to-0.5-Sept26-2024.json new file mode 100644 index 000000000..0fb424758 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-from-1-to-0.5-Sept26-2024.json @@ -0,0 +1,36 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727385100692, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6", + "createdFromOwnerAddress": "", + "checksum": "0x13dfb2b574d60458df325e1c911fdf5ba234c9b3e4d0268a7e2997a2231dc1b4" + }, + "transactions": [ + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { "internalType": "uint256[]", "name": "fees", "type": "uint256[]" } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x5c6ee304399dbdb9c8ef030ab642b10820db8f56]", + "fees": "[5000000000000000]" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-from-1-to-0.5-Sept26-2024.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-from-1-to-0.5-Sept26-2024.report.txt new file mode 100644 index 000000000..c11ac67fa --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/80BAL20WETH-from-1-to-0.5-Sept26-2024.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/PoolSwapFeeChanges/Mainnet/80BAL20WETH-from-1-to-0.5-Sept26-2024.json` +MULTISIG: `multisigs/feeManager (mainnet:0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6)` +COMMIT: `df102cf85b564b20be4709a8e232e8e5e015be10` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d5491e0a-defa-49e1-857b-d994540137bd) + +``` ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +| setSwapFees | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B (gauntlet/GauntletFeeSetter) | 0 | { | N/A | N/A | +| | | | "addresses": [ | | | +| | | | "0x5c6ee304399dbdb9c8ef030ab642b10820db8f56 (tokens/BalWeth8020)" | | | +| | | | ], | | | +| | | | "fees": [ | | | +| | | | "5000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------+-------------------------------------------------------------------------+-------+-----------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp.json new file mode 100644 index 000000000..d7f706698 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733497384882, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf4d17dbf1bdb8c6168befbb4ab141bd612d0fdfedd7e4cbcbd04a5038c47b370" + }, + "transactions": [ + { + "to": "0x05ff47AFADa98a98982113758878F9A8B9FddA0a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { "swapFeePercentage": "100000000000000" } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp.report.txt new file mode 100644 index 000000000..100a4aa70 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e2ccff30bce929a94adec9592291bb316a05a97d` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5e93ca76-bdd1-4b34-b0f7-426b3d2ea00b) + +``` ++----------------------+--------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+--------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| setSwapFeePercentage | 0x05ff47AFADa98a98982113758878F9A8B9FddA0a (pools/weETH/rETH-05ff) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": [ | | | +| | | | "100000000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+--------------------------------------------------------------------+-------+--------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp_part2.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp_part2.json new file mode 100644 index 000000000..d7f706698 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp_part2.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733497384882, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf4d17dbf1bdb8c6168befbb4ab141bd612d0fdfedd7e4cbcbd04a5038c47b370" + }, + "transactions": [ + { + "to": "0x05ff47AFADa98a98982113758878F9A8B9FddA0a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { "swapFeePercentage": "100000000000000" } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp_part2.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp_part2.report.txt new file mode 100644 index 000000000..e06e82a66 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp_part2.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/reth-weeth-fee-update-4bp-1bp_part2.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4a75db2687f781c582f1a8c6266728018651964d` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1729f236-84de-49dd-9971-1e513f813f15) + +``` ++----------------------+--------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+--------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| setSwapFeePercentage | 0x05ff47AFADa98a98982113758878F9A8B9FddA0a (pools/weETH/rETH-05ff) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": [ | | | +| | | | "100000000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+--------------------------------------------------------------------+-------+--------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/sfrxETH-rETH-wstETH-fee-update-less-than-1-bp-to-2bps.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/sfrxETH-rETH-wstETH-fee-update-less-than-1-bp-to-2bps.json new file mode 100644 index 000000000..7acaf9f18 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/sfrxETH-rETH-wstETH-fee-update-less-than-1-bp-to-2bps.json @@ -0,0 +1,36 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734125468826, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6", + "createdFromOwnerAddress": "", + "checksum": "0x2ced6c8d0074ae084d09f2cda72de7101499ab4aa4c63ad1c6cf4e4e15ef9150" + }, + "transactions": [ + { + "to": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "addresses", + "type": "address[]" + }, + { "internalType": "uint256[]", "name": "fees", "type": "uint256[]" } + ], + "name": "setSwapFees", + "payable": false + }, + "contractInputsValues": { + "addresses": "[0x5aEe1e99fE86960377DE9f88689616916D5DcaBe]", + "fees": "[200000000000000]" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/sfrxETH-rETH-wstETH-fee-update-less-than-1-bp-to-2bps.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/sfrxETH-rETH-wstETH-fee-update-less-than-1-bp-to-2bps.report.txt new file mode 100644 index 000000000..0ee4d8f6c --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/sfrxETH-rETH-wstETH-fee-update-less-than-1-bp-to-2bps.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/sfrxETH-rETH-wstETH-fee-update-less-than-1-bp-to-2bps.json` +MULTISIG: `multisigs/feeManager (mainnet:0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6)` +COMMIT: `4a75db2687f781c582f1a8c6266728018651964d` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8f6221ca-d5f0-4d89-8852-b5ab8c745cbe) + +``` ++-------------+-------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+-------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| setSwapFees | 0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B (gauntlet/GauntletFeeSetter) | 0 | { | N/A | N/A | +| | | | "addresses": [ | | | +| | | | "0x5aEe1e99fE86960377DE9f88689616916D5DcaBe (pools/wstETH-rETH-sfrxETH-BPT-5aee)" | | | +| | | | ], | | | +| | | | "fees": [ | | | +| | | | "200000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------+-------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/tETH-wstETH-3bps-to-5bps.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/tETH-wstETH-3bps-to-5bps.json new file mode 100644 index 000000000..3abce4da3 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/tETH-wstETH-3bps-to-5bps.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729772715011, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x1e6b9c74986a401ae967cad4e5d45190a2910abad074241394ccbce281478bd3" + }, + "transactions": [ + { + "to": "0x1D13531bf6344c102280CE4c458781FBF14Dad14", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { "swapFeePercentage": "500000000000000" } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/tETH-wstETH-3bps-to-5bps.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/tETH-wstETH-3bps-to-5bps.report.txt new file mode 100644 index 000000000..9f8826109 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/tETH-wstETH-3bps-to-5bps.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Mainnet/tETH-wstETH-3bps-to-5bps.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7eca9d9f432ea5c86f70f01d1e0a57e6e981748c` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/85aa7e1f-ce7e-4f2f-9bda-2b6b49147d06) + +``` ++----------------------+---------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+---------------------------------------------------------------------+-------+--------------------------+------------+----------+ +| setSwapFeePercentage | 0x1D13531bf6344c102280CE4c458781FBF14Dad14 (pools/tETH/wstETH-1d13) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": [ | | | +| | | | "500000000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+---------------------------------------------------------------------+-------+--------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Optimism/wrsETHwETH_changeFees.json b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Optimism/wrsETHwETH_changeFees.json new file mode 100644 index 000000000..4f76aeb55 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Optimism/wrsETHwETH_changeFees.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1724400515066, + "meta": { + "name": "Transactions Batch", + "description": "Set swap fee to 0.2% from 0.04% for wrsETH/wETH stable pool on OP", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0xf4fc914a89d4dfb729cab33e9d3fdf749fc3bf57651e07aa1082042d726378d3" + }, + "transactions": [ + { + "to": "0x73a7fe27fe9545d53924e529acf11f3073841b9e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "swapFeePercentage", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "setSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "swapFeePercentage": "2000000000000000" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Optimism/wrsETHwETH_changeFees.report.txt b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Optimism/wrsETHwETH_changeFees.report.txt new file mode 100644 index 000000000..64695e6e3 --- /dev/null +++ b/MaxiOps/PoolParameterChanges/PoolSwapFeeChanges/Optimism/wrsETHwETH_changeFees.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/PoolSwapFeeChanges/wrsETHwETH_changeFees.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `21bb1b597c868bc9e96ac2a597f14d9214f6cc24` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c87397b7-f09d-47e9-9384-467e6815be1d) +``` ++----------------------+--------------------------------------------------------+-------+--------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+--------------------------------------------------------+-------+--------------------------+------------+----------+ +| setSwapFeePercentage | 0x73a7fe27fe9545d53924e529acf11f3073841b9e (Not Found) | 0 | { | N/A | N/A | +| | | | "swapFeePercentage": [ | | | +| | | | "2000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+--------------------------------------------------------+-------+--------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/v3-global-fees-gnosis.json b/MaxiOps/PoolParameterChanges/v3-global-fees-gnosis.json new file mode 100644 index 000000000..c0870a43e --- /dev/null +++ b/MaxiOps/PoolParameterChanges/v3-global-fees-gnosis.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1733834947717, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x247998e7f8db5522446a29508d075ab3e9319586dda7875e51d188f483010114" + }, + "transactions": [ + { + "to": "0xa731C23D7c95436Baaae9D52782f966E1ed07cc8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "newProtocolSwapFeePercentage", + "type": "uint256" + } + ], + "name": "setGlobalProtocolSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "newProtocolSwapFeePercentage": "500000000000000000" + } + }, + { + "to": "0xa731C23D7c95436Baaae9D52782f966E1ed07cc8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "newProtocolYieldFeePercentage", + "type": "uint256" + } + ], + "name": "setGlobalProtocolYieldFeePercentage", + "payable": false + }, + "contractInputsValues": { + "newProtocolYieldFeePercentage": "100000000000000000" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/v3-global-fees-gnosis.report.txt b/MaxiOps/PoolParameterChanges/v3-global-fees-gnosis.report.txt new file mode 100644 index 000000000..363a84e8c --- /dev/null +++ b/MaxiOps/PoolParameterChanges/v3-global-fees-gnosis.report.txt @@ -0,0 +1,22 @@ +FILENAME: `MaxiOps/PoolParameterChanges/v3-global-fees-gnosis.json` +MULTISIG: `multisigs/maxi_omni (gnosis:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `b01d77f5ee76bd8b7c98f72ec97ebc5be3f15057` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/015a6475-45de-4771-8297-5174f25c3b0b) + +``` ++-------------------------------------+--------------------------------------------------------------------------------------+-------+--------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------------------+--------------------------------------------------------------------------------------+-------+--------------------------------------+------------+----------+ +| setGlobalProtocolSwapFeePercentage | 0xa731C23D7c95436Baaae9D52782f966E1ed07cc8 (20241204-v3-vault/ProtocolFeeController) | 0 | { | N/A | N/A | +| | | | "newProtocolSwapFeePercentage": [ | | | +| | | | "500000000000000000" | | | +| | | | ] | | | +| | | | } | | | +| setGlobalProtocolYieldFeePercentage | 0xa731C23D7c95436Baaae9D52782f966E1ed07cc8 (20241204-v3-vault/ProtocolFeeController) | 0 | { | N/A | N/A | +| | | | "newProtocolYieldFeePercentage": [ | | | +| | | | "100000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------------------+--------------------------------------------------------------------------------------+-------+--------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/PoolParameterChanges/v3-global-fees.json b/MaxiOps/PoolParameterChanges/v3-global-fees.json new file mode 100644 index 000000000..d04dbcfda --- /dev/null +++ b/MaxiOps/PoolParameterChanges/v3-global-fees.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733831271579, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x7aecc300d16b52077b9604f0ae5337bb8b6e692fa740cae1fd9ae6171994cdd5" + }, + "transactions": [ + { + "to": "0xa731C23D7c95436Baaae9D52782f966E1ed07cc8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "newProtocolSwapFeePercentage", + "type": "uint256" + } + ], + "name": "setGlobalProtocolSwapFeePercentage", + "payable": false + }, + "contractInputsValues": { + "newProtocolSwapFeePercentage": "500000000000000000" + } + }, + { + "to": "0xa731C23D7c95436Baaae9D52782f966E1ed07cc8", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "newProtocolYieldFeePercentage", + "type": "uint256" + } + ], + "name": "setGlobalProtocolYieldFeePercentage", + "payable": false + }, + "contractInputsValues": { + "newProtocolYieldFeePercentage": "100000000000000000" + } + } + ] +} diff --git a/MaxiOps/PoolParameterChanges/v3-global-fees.report.txt b/MaxiOps/PoolParameterChanges/v3-global-fees.report.txt new file mode 100644 index 000000000..e9ec8f53b --- /dev/null +++ b/MaxiOps/PoolParameterChanges/v3-global-fees.report.txt @@ -0,0 +1,22 @@ +FILENAME: `MaxiOps/PoolParameterChanges/v3-global-fees.json` +MULTISIG: `multisigs/maxi_omni (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `b01d77f5ee76bd8b7c98f72ec97ebc5be3f15057` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5080163a-1483-489a-8936-9c4dff26d6d0) + +``` ++-------------------------------------+--------------------------------------------------------------------------------------+-------+--------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------------------------+--------------------------------------------------------------------------------------+-------+--------------------------------------+------------+----------+ +| setGlobalProtocolSwapFeePercentage | 0xa731C23D7c95436Baaae9D52782f966E1ed07cc8 (20241204-v3-vault/ProtocolFeeController) | 0 | { | N/A | N/A | +| | | | "newProtocolSwapFeePercentage": [ | | | +| | | | "500000000000000000" | | | +| | | | ] | | | +| | | | } | | | +| setGlobalProtocolYieldFeePercentage | 0xa731C23D7c95436Baaae9D52782f966E1ed07cc8 (20241204-v3-vault/ProtocolFeeController) | 0 | { | N/A | N/A | +| | | | "newProtocolYieldFeePercentage": [ | | | +| | | | "100000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++-------------------------------------+--------------------------------------------------------------------------------------+-------+--------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/STIP/.gitignore b/MaxiOps/STIP/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/STIP/RethWeth-reroute-special.report.txt b/MaxiOps/STIP/RethWeth-reroute-special.report.txt new file mode 100644 index 000000000..29ea89087 --- /dev/null +++ b/MaxiOps/STIP/RethWeth-reroute-special.report.txt @@ -0,0 +1,36 @@ +FILENAME: `MaxiOps/STIP/RethWeth-reroute-special.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `94a29ca8f8f7e4e38a200f1c4a6299c9080b2de2` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b0880cee-831a-4c2f-8e2d-c0d27b392841) +``` ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+===================================================================================================+=================================================+=======+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 9783.269115551844 (RAW: 9783269115551845061416) | N/A | 2 | ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/STIP/RethWeth-reroute-special.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `94a29ca8f8f7e4e38a200f1c4a6299c9080b2de2` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/efbd6cb1-6f89-40b0-a7a8-53bf9bb1ae4b) +``` ++------------------+-----------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=====================================================================================================+=========+=========================================================+==============+============+ +| redeemAllPlans | 0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C (Not Found) | 0 | "0xb9bdac2c" | N/A | N/A | ++------------------+-----------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector) | 0 | { | N/A | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": [ | | | +| | | | 4891634557775922530708 | | | +| | | | ], | | | +| | | | "maxPeriods": [ | | | +| | | | 2 | | | +| | | | ] | | | +| | | | } | | | ++------------------+-----------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/STIP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.report.txt b/MaxiOps/STIP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.report.txt new file mode 100644 index 000000000..4353d6c0c --- /dev/null +++ b/MaxiOps/STIP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.report.txt @@ -0,0 +1,44 @@ +FILENAME: `MaxiOps/STIP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `e1b7ec9e0fc0477826726b5de8c1eb19cf4cb1d2` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c6d563fc-e4ef-40fe-89d8-529f2a818579) +``` ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 49999.99999999999 (RAW: 49999999999999995805696) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/STIP/arbitrum_stip_bridge_start_q2_2024_2024-07-25_2024-08-08_bal_injector_stream.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `e1b7ec9e0fc0477826726b5de8c1eb19cf4cb1d2` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/3ab99a8f-e05d-4a1f-ab63-8a44b49e25de) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929(maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | ARB | [ | [ | [ | raw: 49999999999999500000000/1e18 = 49999.9999999995 | 0 | +| | | | "0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525)", | "1401236427106150000000/1e18 = 1401.23642710615", | 2, | | | +| | | | "0x7dc6C96bf1c0ce2e5Ddad5601AFeCC0207b0870C (gauges/sFRAX/FRAX-gauge-7dc6)", | "1132033369681800000000/1e18 = 1132.0333696818", | 2, | | | +| | | | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (gauges/cbETH/rETH/wstETH-gauge-5a0e)", | "3162426345878150000000/1e18 = 3162.42634587815", | 2, | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (gauges/ankrETH/wstETH-BPT-gauge-fc74)", | "1333876708697650000000/1e18 = 1333.87670869765", | 2, | | | +| | | | "0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990)", | "2698421076873300000000/1e18 = 2698.4210768733", | 2, | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "2498138176232900000000/1e18 = 2498.1381762329", | 2, | | | +| | | | "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8)", | "1380528499611950000000/1e18 = 1380.52849961195", | 2, | | | +| | | | "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a)", | "2373663844874750000000/1e18 = 2373.66384487475", | 2, | | | +| | | | "0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8 (gauges/gUSDC/USDC-gauge-0ce9)", | "2029376894429600000000/1e18 = 2029.3768944296", | 2, | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (gauges/wstETH-WETH-BPT-gauge-260c)", | "3146231824958150000000/1e18 = 3146.23182495815", | 2, | | | +| | | | "0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804 (gauges/ETHx/wstETH-gauge-8f57)", | "1799076951626800000000/1e18 = 1799.0769516268", | 2, | | | +| | | | "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66)", | "5785915200016300000000/1e18 = 5785.9152000163", | 2, | | | +| | | | "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19 (gauges/ECLP-wstETH-WETH-gauge-96d7)", | "3865479798913550000000/1e18 = 3865.47979891355", | 2, | | | +| | | | "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964)", | "1642828914538250000000/1e18 = 1642.82891453825", | 2, | | | +| | | | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (gauges/wstETH/sfrxETH-gauge-06ea)", | "6626536798137550000000/1e18 = 6626.53679813755", | 2, | | | +| | | | "0x879049Df2744B8D8848985C82275AD4c07379905 (gauges/ECLP-wUSDM-GYD-gauge-8790)", | "800708454999650000000/1e18 = 800.70845499965", | 2, | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (gauges/sFRAX/4POOL-gauge-050f)", | "3583782768992000000000/1e18 = 3583.782768992", | 2, | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)", | "1662925714733650000000/1e18 = 1662.92571473365", | 2, | | | +| | | | "0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8 (gauges/sUSDe/sFRAX-gauge-4b88)" | "3076812229697350000000/1e18 = 3076.81222969735" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------+----------------------------------------------------+---------+------------------------------------------------------+----------+ +``` diff --git a/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.csv b/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.csv new file mode 100644 index 000000000..6fd173e4a --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.csv @@ -0,0 +1,25 @@ +recipientGaugeAddr,poolAddress,symbol,voteWeight,voteWeightNoBoost,distribution,pctDistribution,boost,staticBoost,dynamicBoost,cap,bonus +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2ce4457acac29da4736ae6f5cd9f583a6b335c27,sFRAX/4POOL,1.8285303079363682,0.3711456960291598,13901.035701645067,16.8937048314159,4.926718341340286,1.5,4.426718341340286,10%,10000.0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552eecd4b211bfc790cb,wstETH-WETH-BPT,5.2258116681242655,0.4033534282456069,8320.91581960768,10.112274998824432,12.955912364136903,1.75,12.205912364136903,20%,0.0 +0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x32df62dc3aed2cd6224193052ce665dc18165841,RDNT-WETH,32.6282296637784,2.9724283816099497,8228.53,10.0,10.976960745512073,1.5,10.476960745512073,10%,0.0 +0xeF767E740D83d410794519c2F93Db32e44359a5C,0xb3028ca124b80cfe6e9ca57b70ef2f0ccc41ebd4,50MAGIC-50USDC,3.661192185803227,0.49993101166688786,6879.841572628183,8.360960672961248,7.323394829210432,1.0,7.323394829210433,10%,0.0 +0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xade4a71bb62bec25154cfc7e6ff49a513b491e81,rETH-WETH-BPT,3.793680639208002,0.4357764553034837,6586.729984534601,8.004746880104467,8.70556587681178,1.75,7.9555658768117805,20%,0.0 +0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb,50GOLD-25USDC-25WSTETH,6.461889309268194,5.6250237457213945,6582.8240000000005,8.0,1.1487754721361578,1.0,1.1487754721361578,8%,0.0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54,ankrETH/wstETH-BPT,4.229835845872277,0.8193349261067693,6356.690183357586,7.72518321420422,5.162523543297699,1.75,4.412523543297699,20%,0.0 +0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x4a2f6ae7f3e5d715689530873ec35593dc28951b,wstETH/rETH/cbETH,2.544712289068639,0.49187961541102304,5184.528578915891,6.300674092354151,5.1734453092597334,1.75,4.4234453092597334,20%,0.0 +0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd,wstETH/rETH/sfrxETH,1.9350329914897022,0.1360937542558067,3736.903028169984,4.541398072523261,14.218382041636863,1.75,13.468382041636863,20%,0.0 +0xa14453084318277b11d38FbE05D857A4f647442B,0x423a1323c871abc9d89eb06855bf5347048fc4a5,4POOL-BPT,1.6741032737807542,0.14444221507459198,2771.5995550229663,3.3682803064738973,11.590124624689699,1.5,11.090124624689699,10%,0.0 +0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0x8bc65eed474d1a00555825c91feab6a8255c2107,DOLA/USDC BPT,1.517763737535158,1.4678825448942672,2464.6619499444414,2.9952639778240355,1.0339817329488605,1.0,1.0339817329488603,10%,0.0 +0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0x451b0afd69ace11ec0ac339033d54d2543b088a8,plsRDNT-Stable,1.161563473667939,0.5397491832622847,2046.434780997885,2.4869992343685747,2.1520430408942204,1.75,1.4020430408942204,10%,0.0 +0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x835772bab114563746da80806930a9e37aa85344,D2D-rETH,0.866881362464563,0.8298737816228261,1700.0286019222594,2.0660173833263773,1.0445942282564564,1.0,1.0445942282564562,10%,0.0 +0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x49b2de7d214070893c038299a57bac5acb8b8a34,GOLD-BAL-AURA-wstETH,2.219474364168996,1.725403122259296,1645.7060000000001,2.0,1.286351192678235,1.0,1.2863511926782352,2%,0.0 +0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xc7fa3a3527435720f0e2a4c1378335324dd4f9b3,55auraBal-45wsteth,0.6749127890851804,0.5105678417023537,1399.4433211538296,1.7007209321152497,1.3218866014648745,1.0,1.3218866014648747,10%,0.0 +0x972539E9d340a915775C004715f286a166F067Fd,0x85ec6ae01624ae0d2a04d0ffaad3a25884c7d0f3,80OVN/20wUSD+,0.4998098333118303,0.462702106542758,1025.8982339932436,1.2467576031116658,1.0801978773045486,1.0,1.0801978773045486,10%,0.0 +0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0xead7e0163e3b33bf0065c9325fc8fb9b18cc8213,STAR/USDC-BPT ,0.5173713521311928,0.49993101166688786,924.1020469969186,1.123046336340657,1.0348854943128147,1.0,1.0348854943128145,10%,0.0 +0xae30333C4CFFeF017909460384CDD7B073281280,0x39a5bfd5fe32026cd93d81859b4b38cea78d8220,80LUMIN-20rETH,0.2104829645376446,0.19678247877416952,451.5109931433235,0.5487140390122215,1.0696224879817575,1.0,1.0696224879817575,10%,0.0 +0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0xc9f52540976385a84bf416903e1ca3983c539e34,50tBTC-50WETH,0.21538568768999478,0.1390595403651282,417.20506282348913,0.507022594343691,1.5488738645651874,1.0,1.5488738645651874,10%,0.0 +0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A,0x542f16da0efb162d20bf4358efa095b70a100f9e,2BTC,0.2176615874353704,0.0744578102482595,385.2961515399639,0.4682442083093382,2.9232875195985017,1.0,2.9232875195985017,10%,0.0 +0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83,0x3cdf30e36154a66a4478e15ed41659b5bb0738f1,DUSD-4POOL-BPT,0.16290812343823244,0.1489156204965195,350.3399908951917,0.42576254919796336,1.093962627258703,1.0,1.093962627258703,10%,0.0 +0x574c2146091Cced305A7ABa82d097DE36b736fac,0x9bfcd4189cf9062697746ce292350f42fdee457c,50DFX-50WETH,0.1895742169987262,0.17018928056745092,336.38075913846126,0.4087981196379684,1.1139022173819724,1.0,1.1139022173819726,10%,0.0 +0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0xe25ecadca47419e9aee2700ceab4e7c4b01b94ca,20WETH-80PAL,0.1435972054787866,0.1435972054787866,307.0325574787874,0.373131722772825,1.0,1.0,1.0,10%,0.0 +0x2162abD00312a0496B4b72b20A6790Cc07268A25,0xd1882ca6a22f3df54cd675b300b815864de67b20,Savvy TriCrypto Pool,0.15955245053198538,0.15955245053198538,281.6611260902478,0.34229823077785193,1.0,1.0,1.0,10%,0.0 diff --git a/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.json b/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.json new file mode 100644 index 000000000..d53e4e4db --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.json @@ -0,0 +1,82 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "redeemAllPlans", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83,0xae30333C4CFFeF017909460384CDD7B073281280,0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0x972539E9d340a915775C004715f286a166F067Fd,0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0xeF767E740D83d410794519c2F93Db32e44359a5C,0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0x574c2146091Cced305A7ABa82d097DE36b736fac,0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A,0x2162abD00312a0496B4b72b20A6790Cc07268A25,0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xa14453084318277b11d38FbE05D857A4f647442B,0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x260cbb867359a1084eC97de4157d06ca74e89415,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE]", + "amountsPerPeriod": "[175169995447595852056,225755496571661751659,153516278739393698060,6950517850822533546306,699721660576914814555,512949116996621796715,4114265000000000327418,2592264289457945324102,822853000000000065483,850014300961129720235,208602531411744564593,1868451514084991913478,3439920786314091401436,462051023498459301208,168190379569230628931,192648075769981943494,140830563045123909660,1023217390498942449994,3293364992267300294770,1385799777511483171110,1232330974972220701602,3291412000000000261934,4160457909803840266249,3178345091678792869060]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "82285300000000002910383" + } + } + ] +} diff --git a/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.report.txt b/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.report.txt new file mode 100644 index 000000000..46f6ce34a --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.report.txt @@ -0,0 +1,53 @@ +FILENAME: `MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `17094346f550d19cd7d2a39756464c017cbefc1a` +CHAIN(S): `arbitrum` +``` ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+----------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+===================================================================================================+========================================+=======+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 82285.3 (RAW: 82285300000000002910383) | N/A | 2 | ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+----------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/STIP/dao_grant_2024-01-11_2024-01-25.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `17094346f550d19cd7d2a39756464c017cbefc1a` +CHAIN(S): `arbitrum` +``` ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=====================================================================================================+=========+========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================+==============+============+ +| redeemAllPlans | 0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C (Not Found) | 0 | "N/A" | N/A | N/A | ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector) | 0 | { | N/A | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83 (N/A) ", | | | +| | | | "0xae30333C4CFFeF017909460384CDD7B073281280 (N/A) ", | | | +| | | | "0x2cFBD7aCC62709396b3C8c7698808384720A0BbF (N/A) ", | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (N/A) ", | | | +| | | | "0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1 (N/A) ", | | | +| | | | "0x972539E9d340a915775C004715f286a166F067Fd (N/A) ", | | | +| | | | "0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999 (N/A) ", | | | +| | | | "0x2eB5661002b68EBE887d29d415c3A3b52536912C (N/A) ", | | | +| | | | "0x159be31493C26F8F924b3A2a7F428C2f41247e83 (N/A) ", | | | +| | | | "0x089a2E069700B0f2B16f69A6e02b01818ce22e7d (N/A) ", | | | +| | | | "0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3 (N/A) ", | | | +| | | | "0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673 (N/A) ", | | | +| | | | "0xeF767E740D83d410794519c2F93Db32e44359a5C (N/A) ", | | | +| | | | "0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B (N/A) ", | | | +| | | | "0x574c2146091Cced305A7ABa82d097DE36b736fac (N/A) ", | | | +| | | | "0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A (N/A) ", | | | +| | | | "0x2162abD00312a0496B4b72b20A6790Cc07268A25 (N/A) ", | | | +| | | | "0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF (N/A) ", | | | +| | | | "0xd6B875d62c2661eaB66472F36c672e4B512f1135 (N/A) ", | | | +| | | | "0xa14453084318277b11d38FbE05D857A4f647442B (N/A) ", | | | +| | | | "0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2 (N/A) ", | | | +| | | | "0xcF853F14EF6111435Cb39c0C43C66366cc6300F1 (N/A) ", | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (N/A) ", | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": "[175169995447595852056,225755496571661751659,153516278739393698060,6950517850822533546306,699721660576914814555,512949116996621796715,4114265000000000327418,2592264289457945324102,822853000000000065483,850014300961129720235,208602531411744564593,1868451514084991913478,3439920786314091401436,462051023498459301208,168190379569230628931,192648075769981943494,140830563045123909660,1023217390498942449994,3293364992267300294770,1385799777511483171110,1232330974972220701602,3291412000000000261934,4160457909803840266249,3178345091678792869060]", | | | +| | | | "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" | | | +| | | | } | | | ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.csv b/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.csv new file mode 100644 index 000000000..af940108f --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.csv @@ -0,0 +1,23 @@ +recipientGaugeAddr,poolAddress,symbol,voteWeight,voteWeightNoBoost,distribution,pctDistribution,boost,staticBoost,dynamicBoost,cap,bonus +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2ce4457acac29da4736ae6f5cd9f583a6b335c27,sFRAX/4POOL,1.574104001454551,0.4413982426224628,12858.126207109648,15.626273717309955,3.566176412716068,1.5,3.0661764127160676,10%,10000.0 +0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x4a2f6ae7f3e5d715689530873ec35593dc28951b,wstETH/rETH/cbETH,5.433226732531392,0.42013983314055264,9668.361188257744,11.749803656616363,12.931948613198436,1.75,12.181948613198436,20%,0.0 +0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x32df62dc3aed2cd6224193052ce665dc18165841,RDNT-WETH,8.76770901176562,1.5832356313014366,8228.53,10.0,5.537842149597448,1.5,5.037842149597448,10%,0.0 +0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0x451b0afd69ace11ec0ac339033d54d2543b088a8,plsRDNT-Stable,9.127399515165166,0.801098502674362,8228.53,10.0,11.393604512671716,1.75,10.643604512671716,10%,0.0 +0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb,50GOLD-25USDC-25WSTETH,5.587795256497666,4.955203310624815,6582.8240000000005,8.0,1.1276621575781691,1.0,1.1276621575781693,8%,0.0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552eecd4b211bfc790cb,wstETH-WETH-BPT,3.866902559428286,0.3468348905337092,6009.301545364693,7.303007396660998,11.149116380644116,1.75,10.399116380644116,20%,0.0 +0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xade4a71bb62bec25154cfc7e6ff49a513b491e81,rETH-WETH-BPT,3.699230385096505,0.5494889937946125,5953.758249994019,7.235506524244329,6.7321282625711705,1.75,5.9821282625711705,20%,0.0 +0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd,wstETH/rETH/sfrxETH,2.7131228977481485,0.2257828643541732,4567.091797836176,5.550313115266245,12.016513766484163,1.75,11.266513766484163,20%,0.0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54,ankrETH/wstETH-BPT,2.884887292596848,0.5550394947394413,4399.1221896700345,5.34618235537822,5.197625249985381,1.75,4.447625249985381,20%,0.0 +0xeF767E740D83d410794519c2F93Db32e44359a5C,0xb3028ca124b80cfe6e9ca57b70ef2f0ccc41ebd4,50MAGIC-50USDC,2.563231632987724,0.509126260910288,4231.085520937997,5.141970097864378,5.034569673158905,1.0,5.034569673158905,10%,0.0 +0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0x8bc65eed474d1a00555825c91feab6a8255c2107,DOLA/USDC BPT,1.4907808989246671,1.4630680971421972,2334.394616716694,2.836952185526083,1.0189415665864092,1.0,1.0189415665864092,10%,0.0 +0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x49b2de7d214070893c038299a57bac5acb8b8a34,GOLD-BAL-AURA-wstETH,1.8130325485179075,1.5199373400876282,1645.7060000000001,2.0,1.192833744326185,1.0,1.1928337443261847,2%,0.0 +0xa14453084318277b11d38FbE05D857A4f647442B,0x423a1323c871abc9d89eb06855bf5347048fc4a5,4POOL-BPT,1.0374733578156612,0.06971767053486559,1633.4437842932794,1.985097926717505,14.881067451856758,1.5,14.381067451856758,10%,0.0 +0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x835772bab114563746da80806930a9e37aa85344,D2D-rETH,0.8834842328686846,0.6553981458586308,1498.3353078540374,1.8209027710344832,1.3480114926343596,1.0,1.3480114926343594,10%,0.0 +0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0xead7e0163e3b33bf0065c9325fc8fb9b18cc8213,STAR/USDC-BPT ,0.7175945566361893,0.7127767652744035,1164.4750468354468,1.4151677721724862,1.0067591868822086,1.0,1.0067591868822086,10%,0.0 +0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xc7fa3a3527435720f0e2a4c1378335324dd4f9b3,55auraBal-45wsteth,0.6384018405947064,0.5144854847093437,1142.437791079607,1.3883862501316844,1.24085491149545,1.0,1.24085491149545,10%,0.0 +0x2162abD00312a0496B4b72b20A6790Cc07268A25,0xd1882ca6a22f3df54cd675b300b815864de67b20,Savvy TriCrypto Pool,0.4823301419150099,0.4823301419150099,778.5300112430909,0.9461349855236487,1.0,1.0,1.0,10%,0.0 +0xae30333C4CFFeF017909460384CDD7B073281280,0x39a5bfd5fe32026cd93d81859b4b38cea78d8220,80LUMIN-20rETH,0.20365158123382518,0.20365158123382518,370.923786332561,0.4507777043196792,1.0,1.0,1.0,10%,0.0 +0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83,0x3cdf30e36154a66a4478e15ed41659b5bb0738f1,DUSD-4POOL-BPT,0.1500963399572736,0.1500582663735585,273.7613942695486,0.33269781391032005,1.0002537253337334,1.0,1.0002537253337334,10%,0.0 +0x574c2146091Cced305A7ABa82d097DE36b736fac,0x9bfcd4189cf9062697746ce292350f42fdee457c,50DFX-50WETH,0.15724398286895658,0.1393398187754473,254.04715360668706,0.3087394147030965,1.1284928045038058,1.0,1.1284928045038058,10%,0.0 +0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0xe25ecadca47419e9aee2700ceab4e7c4b01b94ca,20WETH-80PAL,0.13283319832324247,0.1286213711773355,241.48231417194648,0.2934695676772722,1.032745935666476,1.0,1.0327459356664759,10%,0.0 +0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0xc9f52540976385a84bf416903e1ca3983c539e34,50tBTC-50WETH,0.1311825601395795,0.1041750436177344,221.03209442679628,0.26861674494325993,1.2592513099485512,1.0,1.2592513099485512,10%,0.0 diff --git a/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.json b/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.json new file mode 100644 index 000000000..6371c6b44 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.json @@ -0,0 +1,82 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "redeemAllPlans", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83,0xae30333C4CFFeF017909460384CDD7B073281280,0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0xeF767E740D83d410794519c2F93Db32e44359a5C,0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0x574c2146091Cced305A7ABa82d097DE36b736fac,0x2162abD00312a0496B4b72b20A6790Cc07268A25,0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xa14453084318277b11d38FbE05D857A4f647442B,0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x260cbb867359a1084eC97de4157d06ca74e89415,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE]", + "amountsPerPeriod": "[136880697134774294454,185461893166280503919,120741157085973242146,6429063103554824010643,571218895539803497740,4114265000000000327418,4834180594128872144210,822853000000000065483,749167653927018704962,110516047213398138637,2283545898918087914353,2115542760468998494616,582237523417723423335,127023576803343530627,389265005621545469693,4114265000000000327418,2976879124997009512298,816721892146639675047,1167197308358347072498,3291412000000000261934,3004650772682346541841,2199561094835017229343]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "82285300000000002910383" + } + } + ] +} diff --git a/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.report.txt b/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.report.txt new file mode 100644 index 000000000..da74a88bc --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.report.txt @@ -0,0 +1,99 @@ +FILENAME: `MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `d7012b8b32b12653dcb72a0bba94b8bdbd948d92` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/59c43818-0ee3-4af9-90da-14cf56ba1800) +``` ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+----------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+===================================================================================================+========================================+=======+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 82285.3 (RAW: 82285300000000002910383) | N/A | 2 | ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+----------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/STIP/dao_grant_2024-01-25_2024-02-08.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `d7012b8b32b12653dcb72a0bba94b8bdbd948d92` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/481af7e4-3261-4cbd-810a-8ac6c665c636) +``` ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=====================================================================================================+=========+==========================================================+==============+============+ +| redeemAllPlans | 0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C (Not Found) | 0 | "0xb9bdac2c" | N/A | N/A | ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector) | 0 | { | N/A | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83 (N/A) ", | | | +| | | | "0xae30333C4CFFeF017909460384CDD7B073281280 (N/A) ", | | | +| | | | "0x2cFBD7aCC62709396b3C8c7698808384720A0BbF (N/A) ", | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (N/A) ", | | | +| | | | "0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1 (N/A) ", | | | +| | | | "0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999 (N/A) ", | | | +| | | | "0x2eB5661002b68EBE887d29d415c3A3b52536912C (N/A) ", | | | +| | | | "0x159be31493C26F8F924b3A2a7F428C2f41247e83 (N/A) ", | | | +| | | | "0x089a2E069700B0f2B16f69A6e02b01818ce22e7d (N/A) ", | | | +| | | | "0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3 (N/A) ", | | | +| | | | "0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673 (N/A) ", | | | +| | | | "0xeF767E740D83d410794519c2F93Db32e44359a5C (N/A) ", | | | +| | | | "0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B (N/A) ", | | | +| | | | "0x574c2146091Cced305A7ABa82d097DE36b736fac (N/A) ", | | | +| | | | "0x2162abD00312a0496B4b72b20A6790Cc07268A25 (N/A) ", | | | +| | | | "0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF (N/A) ", | | | +| | | | "0xd6B875d62c2661eaB66472F36c672e4B512f1135 (N/A) ", | | | +| | | | "0xa14453084318277b11d38FbE05D857A4f647442B (N/A) ", | | | +| | | | "0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2 (N/A) ", | | | +| | | | "0xcF853F14EF6111435Cb39c0C43C66366cc6300F1 (N/A) ", | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (N/A) ", | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": [ | | | +| | | | 136880697134774294454, | | | +| | | | 185461893166280503919, | | | +| | | | 120741157085973242146, | | | +| | | | 6429063103554824010643, | | | +| | | | 571218895539803497740, | | | +| | | | 4114265000000000327418, | | | +| | | | 4834180594128872144210, | | | +| | | | 822853000000000065483, | | | +| | | | 749167653927018704962, | | | +| | | | 110516047213398138637, | | | +| | | | 2283545898918087914353, | | | +| | | | 2115542760468998494616, | | | +| | | | 582237523417723423335, | | | +| | | | 127023576803343530627, | | | +| | | | 389265005621545469693, | | | +| | | | 4114265000000000327418, | | | +| | | | 2976879124997009512298, | | | +| | | | 816721892146639675047, | | | +| | | | 1167197308358347072498, | | | +| | | | 3291412000000000261934, | | | +| | | | 3004650772682346541841, | | | +| | | | 2199561094835017229343 | | | +| | | | ], | | | +| | | | "maxPeriods": [ | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2 | | | +| | | | ] | | | +| | | | } | | | ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.csv b/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.csv new file mode 100644 index 000000000..c4e118132 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.csv @@ -0,0 +1,26 @@ +recipientGaugeAddr,poolAddress,symbol,voteWeight,voteWeightNoBoost,distribution,pctDistribution,boost,staticBoost,dynamicBoost,cap,bonus +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2ce4457acac29da4736ae6f5cd9f583a6b335c27,sFRAX/4POOL,1.3611574569656495,0.2869334667718846,12570.597695469187,15.276844947358988,4.743808633685053,1.5,4.243808633685053,10%,10000.0 +0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x4a2f6ae7f3e5d715689530873ec35593dc28951b,wstETH/rETH/cbETH,5.027317037809364,0.3572327685300999,9333.470759884794,11.342816711958022,14.072944815491553,1.75,13.322944815491553,20%,0.0 +0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x32df62dc3aed2cd6224193052ce665dc18165841,RDNT-WETH,12.295392967363432,0.5084684926462238,8228.53,10.0,24.18122881788503,1.5,23.68122881788503,10%,0.0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552eecd4b211bfc790cb,wstETH-WETH-BPT,4.547547017560565,0.4010974050267813,7368.441256076012,8.954748000038904,11.337762250685529,1.75,10.587762250685529,20%,0.0 +0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb,50GOLD-25USDC-25WSTETH,5.546630617849587,4.8037243039231505,6582.8240000000005,8.0,1.1546521546458677,1.0,1.1546521546458677,8%,0.0 +0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xade4a71bb62bec25154cfc7e6ff49a513b491e81,rETH-WETH-BPT,3.4789806440160835,0.4219719327872616,5818.068930974859,7.0706054799275915,8.244578308884876,1.75,7.4945783088848765,20%,0.0 +0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0x451b0afd69ace11ec0ac339033d54d2543b088a8,plsRDNT-Stable,3.399482318431808,0.22803724684989338,5797.607885034598,7.045739500293003,14.907574816799704,1.75,14.157574816799704,10%,0.0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54,ankrETH/wstETH-BPT,3.077314046346915,0.6706132829893976,4886.755760681686,5.938795581570081,4.588805686384783,1.75,3.838805686384783,20%,0.0 +0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd,wstETH/rETH/sfrxETH,2.5807093995440966,0.1780977620042817,4576.997520399076,5.5623513803790905,14.490408922050648,1.75,13.740408922050648,20%,0.0 +0xeF767E740D83d410794519c2F93Db32e44359a5C,0xb3028ca124b80cfe6e9ca57b70ef2f0ccc41ebd4,50MAGIC-50USDC,1.693497526468385,0.5632353485286604,2951.763136733166,3.5872302060430794,3.0067316103158443,1.0,3.006731610315845,10%,0.0 +0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0x8bc65eed474d1a00555825c91feab6a8255c2107,DOLA/USDC BPT,1.6683569575269586,1.6562465199308134,2724.111641274948,3.310569009622555,1.0073119776859372,1.0,1.0073119776859374,10%,0.0 +0xa14453084318277b11d38FbE05D857A4f647442B,0x423a1323c871abc9d89eb06855bf5347048fc4a5,4POOL-BPT,1.1864344922899797,0.22779467238029297,1948.1705481977556,2.367580294655006,5.208350484638554,1.5,4.708350484638554,10%,0.0 +0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x49b2de7d214070893c038299a57bac5acb8b8a34,GOLD-BAL-AURA-wstETH,1.7579654724741756,1.451275381796758,1645.7060000000001,2.0,1.2113245318732813,1.0,1.2113245318732813,2%,0.0 +0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xc7fa3a3527435720f0e2a4c1378335324dd4f9b3,55auraBal-45wsteth,0.7494872917857732,0.6022714617930229,1399.740393064511,1.7010819588243717,1.2444343445304114,1.0,1.2444343445304111,10%,0.0 +0x2162abD00312a0496B4b72b20A6790Cc07268A25,0xd1882ca6a22f3df54cd675b300b815864de67b20,Savvy TriCrypto Pool,0.8141817909424198,0.8141817909424198,1395.1556743787737,1.695510224036096,1.0,1.0,1.0,10%,0.0 +0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0xead7e0163e3b33bf0065c9325fc8fb9b18cc8213,STAR/USDC-BPT ,0.7870771479942433,0.7862988528964469,1357.3547307890378,1.6495713460229686,1.000989820975739,1.0,1.000989820975739,10%,0.0 +0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x835772bab114563746da80806930a9e37aa85344,D2D-rETH,0.7184081778357237,0.5944296090236665,1281.7628553579107,1.5577057571132518,1.20856728354378,1.0,1.2085672835437802,10%,0.0 +0xae30333C4CFFeF017909460384CDD7B073281280,0x39a5bfd5fe32026cd93d81859b4b38cea78d8220,80LUMIN-20rETH,0.2230635043677859,0.2230635043677859,422.53398455310054,0.5134987471068351,1.0,1.0,1.0,10%,0.0 +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0ec47c54ca5e20aaae4616c25c825c7f48d4069,rETH/wETH BPT,0.2212241677261289,0.2212241677261289,420.20451532700037,0.5106677806692087,1.0,1.0,1.0,10%,0.0 +0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83,0x3cdf30e36154a66a4478e15ed41659b5bb0738f1,DUSD-4POOL-BPT,0.16935571886334974,0.1672976282758393,322.13620690739657,0.3914869447002035,1.0123019710961896,1.0,1.0123019710961896,10%,0.0 +0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0xc9f52540976385a84bf416903e1ca3983c539e34,50tBTC-50WETH,0.15889901099687406,0.0975175089105017,282.11444001486115,0.34284913589044597,1.6294408334682364,1.0,1.6294408334682364,10%,0.0 +0x574c2146091Cced305A7ABa82d097DE36b736fac,0x9bfcd4189cf9062697746ce292350f42fdee457c,50DFX-50WETH,0.16345843039245908,0.1505678654482557,280.56423248726543,0.3409651936460892,1.0856129885738026,1.0,1.0856129885738024,10%,0.0 +0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0xe25ecadca47419e9aee2700ceab4e7c4b01b94ca,20WETH-80PAL,0.14383981833959433,0.1394146902298663,271.96669974913755,0.33051675056071683,1.0317407591870835,1.0,1.0317407591870835,10%,0.0 +0xa655ee74D422a77ce828060CC7104400a4168619,0xf8201d478418d6a67507e10880eafaaacd3230da,ECLP-sFRAX-FRAX,0.1115317521838927,0.1115317521838927,211.46122069580846,0.2569854162235642,1.0,1.0,1.0,10%,0.0 +0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A,0x542f16da0efb162d20bf4358efa095b70a100f9e,2BTC,0.12086682895889221,0.0948019893563091,207.25991194911117,0.2518796333599211,1.2749397958793836,1.0,1.2749397958793836,10%,0.0 diff --git a/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.json b/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.json new file mode 100644 index 000000000..fe3bef2a9 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.json @@ -0,0 +1,82 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "redeemAllPlans", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xa655ee74D422a77ce828060CC7104400a4168619,0xae30333C4CFFeF017909460384CDD7B073281280,0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0xeF767E740D83d410794519c2F93Db32e44359a5C,0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0x574c2146091Cced305A7ABa82d097DE36b736fac,0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A,0x2162abD00312a0496B4b72b20A6790Cc07268A25,0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xa14453084318277b11d38FbE05D857A4f647442B,0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x260cbb867359a1084eC97de4157d06ca74e89415,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE]", + "amountsPerPeriod": "[161068103453698284965,210102257663500182616,105730610347904232071,211266992276550269025,135983349874568773429,6285298847734593437053,699870196532255476995,4114265000000000327418,4666735379942397230479,822853000000000065483,640881427678955333249,141057220007430572650,2288498760199538082815,1475881568366582996532,678677365394518915309,140282116243632714258,103629955974555585385,697577837189386855243,2898803942517299219616,2909034465487429315544,974085274098877789583,1362055820637473971146,3291412000000000261934,3684220628038005997950,2443377880340843148587]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "82285300000000002910383" + } + } + ] +} diff --git a/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.report.txt b/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.report.txt new file mode 100644 index 000000000..22e7948f8 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.report.txt @@ -0,0 +1,108 @@ +FILENAME: `MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `028a136f7ff9eef61425b183f11011e8691e30ef` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/3c39ef22-2c61-41e0-8a35-39f73e3d2402) +``` ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+----------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+===================================================================================================+========================================+=======+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 82285.3 (RAW: 82285300000000002910383) | N/A | 2 | ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+----------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/STIP/dao_grant_2024-02-08_2024-02-22.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `028a136f7ff9eef61425b183f11011e8691e30ef` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/6bdd2940-5c55-46d2-b6d1-b6b83897328e) +``` ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=====================================================================================================+=========+==========================================================+==============+============+ +| redeemAllPlans | 0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C (Not Found) | 0 | "0xb9bdac2c" | N/A | N/A | ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +| setRecipientList | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector) | 0 | { | N/A | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0xc3522B0A58d9f12f33E542FC3c3C051b4AF01c83 (N/A) ", | | | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (N/A) ", | | | +| | | | "0xa655ee74D422a77ce828060CC7104400a4168619 (N/A) ", | | | +| | | | "0xae30333C4CFFeF017909460384CDD7B073281280 (N/A) ", | | | +| | | | "0x2cFBD7aCC62709396b3C8c7698808384720A0BbF (N/A) ", | | | +| | | | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (N/A) ", | | | +| | | | "0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1 (N/A) ", | | | +| | | | "0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999 (N/A) ", | | | +| | | | "0x2eB5661002b68EBE887d29d415c3A3b52536912C (N/A) ", | | | +| | | | "0x159be31493C26F8F924b3A2a7F428C2f41247e83 (N/A) ", | | | +| | | | "0x089a2E069700B0f2B16f69A6e02b01818ce22e7d (N/A) ", | | | +| | | | "0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3 (N/A) ", | | | +| | | | "0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673 (N/A) ", | | | +| | | | "0xeF767E740D83d410794519c2F93Db32e44359a5C (N/A) ", | | | +| | | | "0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B (N/A) ", | | | +| | | | "0x574c2146091Cced305A7ABa82d097DE36b736fac (N/A) ", | | | +| | | | "0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A (N/A) ", | | | +| | | | "0x2162abD00312a0496B4b72b20A6790Cc07268A25 (N/A) ", | | | +| | | | "0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF (N/A) ", | | | +| | | | "0xd6B875d62c2661eaB66472F36c672e4B512f1135 (N/A) ", | | | +| | | | "0xa14453084318277b11d38FbE05D857A4f647442B (N/A) ", | | | +| | | | "0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2 (N/A) ", | | | +| | | | "0xcF853F14EF6111435Cb39c0C43C66366cc6300F1 (N/A) ", | | | +| | | | "0x260cbb867359a1084eC97de4157d06ca74e89415 (N/A) ", | | | +| | | | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": [ | | | +| | | | 161068103453698284965, | | | +| | | | 210102257663500182616, | | | +| | | | 105730610347904232071, | | | +| | | | 211266992276550269025, | | | +| | | | 135983349874568773429, | | | +| | | | 6285298847734593437053, | | | +| | | | 699870196532255476995, | | | +| | | | 4114265000000000327418, | | | +| | | | 4666735379942397230479, | | | +| | | | 822853000000000065483, | | | +| | | | 640881427678955333249, | | | +| | | | 141057220007430572650, | | | +| | | | 2288498760199538082815, | | | +| | | | 1475881568366582996532, | | | +| | | | 678677365394518915309, | | | +| | | | 140282116243632714258, | | | +| | | | 103629955974555585385, | | | +| | | | 697577837189386855243, | | | +| | | | 2898803942517299219616, | | | +| | | | 2909034465487429315544, | | | +| | | | 974085274098877789583, | | | +| | | | 1362055820637473971146, | | | +| | | | 3291412000000000261934, | | | +| | | | 3684220628038005997950, | | | +| | | | 2443377880340843148587 | | | +| | | | ], | | | +| | | | "maxPeriods": [ | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2, | | | +| | | | 2 | | | +| | | | ] | | | +| | | | } | | | ++------------------+-----------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.csv b/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.csv new file mode 100644 index 000000000..c2afd77c1 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.csv @@ -0,0 +1,26 @@ +recipientGaugeAddr,poolAddress,symbol,voteWeight,voteWeightNoBoost,distribution,pctDistribution,boost,staticBoost,dynamicBoost,cap,bonus +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2ce4457acac29da4736ae6f5cd9f583a6b335c27,sFRAX/4POOL,1.1094740875005014,0.2785778343933227,13302.254700881838,16.166015923721293,3.982635911850906,1.5,3.482635911850906,10%,10000.0 +0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x32df62dc3aed2cd6224193052ce665dc18165841,RDNT-WETH,30.77925477954567,2.232222703275357,8228.53,10.0,13.788612907835333,1.5,13.288612907835333,10%,0.0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552eecd4b211bfc790cb,wstETH-WETH-BPT,3.8704565642049515,0.2553866071303344,8020.574551560237,9.747275092343633,15.155284013110744,1.75,14.405284013110746,20%,0.0 +0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb,50GOLD-25USDC-25WSTETH,7.0769313209569855,5.703924631496013,6582.8240000000005,8.0,1.240712628262913,1.0,1.2407126282629128,8%,0.0 +0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0x451b0afd69ace11ec0ac339033d54d2543b088a8,plsRDNT-Stable,2.5771915478831584,0.2159160208254401,6453.933728994822,7.843361729245468,11.936083010564186,1.75,11.186083010564186,10%,0.0 +0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xade4a71bb62bec25154cfc7e6ff49a513b491e81,rETH-WETH-BPT,2.598245111757393,0.18090278537491938,6111.489067901293,7.42719424721219,14.36265951556552,1.75,13.61265951556552,20%,0.0 +0xeF767E740D83d410794519c2F93Db32e44359a5C,0xb3028ca124b80cfe6e9ca57b70ef2f0ccc41ebd4,50MAGIC-50USDC,1.775330081290809,0.3881545629558653,4801.369256070245,5.835026737546372,4.573770994140474,1.0,4.573770994140474,10%,0.0 +0xa14453084318277b11d38FbE05D857A4f647442B,0x423a1323c871abc9d89eb06855bf5347048fc4a5,4POOL-BPT,1.7463644004308423,0.24153601195764063,3870.1559889431,4.703338249897734,7.230244410664158,1.5,6.730244410664158,10%,0.0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54,ankrETH/wstETH-BPT,1.9690905933176874,0.41081340355204765,3774.7834590308917,4.587433550137013,4.793150798616081,1.75,4.043150798616081,20%,0.0 +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0ec47c54ca5e20aaae4616c25c825c7f48d4069,rETH/wETH BPT,1.169767191315975,1.0050852334957112,3671.7800476505518,4.462255163012776,1.16384874867527,1.0,1.1638487486752702,10%,0.0 +0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0x8bc65eed474d1a00555825c91feab6a8255c2107,DOLA/USDC BPT,1.4659547898916305,1.4541312731630185,3129.93495196636,3.8037595438873772,1.0081309830459073,1.0,1.0081309830459075,10%,0.0 +0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x835772bab114563746da80806930a9e37aa85344,D2D-rETH,0.9563973377310867,0.7832186983736685,2669.005020326219,3.2435988205988417,1.2211114720792784,1.0,1.2211114720792784,10%,0.0 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb,cbETH/rETH/wstETH,0.7860411774472598,0.4331851239656407,2270.0979088212302,2.7588134318295374,1.8145617980861384,1.0,1.8145617980861384,10%,0.0 +0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x49b2de7d214070893c038299a57bac5acb8b8a34,GOLD-BAL-AURA-wstETH,1.8357354543021847,1.2946909342014423,1645.7060000000001,2.0,1.4178947313278711,1.0,1.4178947313278711,2%,0.0 +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bfea1fe18dfcabd21c7165c40c6859d3,wstETH/sfrxETH,0.46604347471090596,0.3067649043011129,1410.213113736265,1.7138092876081936,1.5192203155464261,1.0,1.5192203155464261,10%,0.0 +0x2162abD00312a0496B4b72b20A6790Cc07268A25,0xd1882ca6a22f3df54cd675b300b815864de67b20,Savvy TriCrypto Pool,0.5387817067894848,0.5387817067894848,1366.7890746490614,1.6610367521891045,1.0,1.0,1.0,10%,0.0 +0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xc7fa3a3527435720f0e2a4c1378335324dd4f9b3,55auraBal-45wsteth,0.4757262960590256,0.4287080247572245,1345.5561243991692,1.6352326896774627,1.1096743438110992,1.0,1.1096743438110992,10%,0.0 +0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0xead7e0163e3b33bf0065c9325fc8fb9b18cc8213,STAR/USDC-BPT ,0.5071419371279233,0.5040215966740342,1310.5391949215093,1.5926771791820764,1.0061908864113756,1.0,1.0061908864113758,10%,0.0 +0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0xc9f52540976385a84bf416903e1ca3983c539e34,50tBTC-50WETH,0.2111105789295512,0.1003667804800823,574.6971535621753,0.6984201960279361,2.1033909618277127,1.0,2.1033909618277127,10%,0.0 +0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0xe25ecadca47419e9aee2700ceab4e7c4b01b94ca,20WETH-80PAL,0.14179537346624574,0.1390404404618025,423.65379753392307,0.5148596377894024,1.0198138972754482,1.0,1.0198138972754482,10%,0.0 +0xae30333C4CFFeF017909460384CDD7B073281280,0x39a5bfd5fe32026cd93d81859b4b38cea78d8220,80LUMIN-20rETH,0.1390404404618025,0.1390404404618025,422.3180251652178,0.513236295140466,1.0,1.0,1.0,10%,0.0 +0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A,0x542f16da0efb162d20bf4358efa095b70a100f9e,2BTC,0.15538313874889728,0.0579335168590841,395.6473779782937,0.4808238871077747,2.6820940135025286,1.0,2.6820940135025286,10%,0.0 +0x574c2146091Cced305A7ABa82d097DE36b736fac,0x9bfcd4189cf9062697746ce292350f42fdee457c,50DFX-50WETH,0.10134494093593802,0.0869002752886265,258.67934469134894,0.3143688419333088,1.1662211724800144,1.0,1.1662211724800144,10%,0.0 +0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd,wstETH/rETH/sfrxETH,0.04843914115887805,0.027679509233644598,131.16272602847388,0.1593999487496234,1.75,1.75,1.0,20%,0.0 +0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x4a2f6ae7f3e5d715689530873ec35593dc28951b,wstETH/rETH/cbETH,0.04066628564968235,0.0232378775141042,113.60538518777223,0.13806279516240716,1.75,1.75,1.0,20%,0.0 diff --git a/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.json b/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.json new file mode 100644 index 000000000..c608e257b --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.json @@ -0,0 +1,82 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "redeemAllPlans", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xae30333C4CFFeF017909460384CDD7B073281280,0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0xeF767E740D83d410794519c2F93Db32e44359a5C,0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0x574c2146091Cced305A7ABa82d097DE36b736fac,0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A,0x2162abD00312a0496B4b72b20A6790Cc07268A25,0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0xa14453084318277b11d38FbE05D857A4f647442B,0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x260cbb867359a1084eC97de4157d06ca74e89415,0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68]", + "amountsPerPeriod": "[211159012582608909269,705106556868132543058,211826898766961534192,6651127350440919144602,1135048954410615124288,672778062199584610425,4114265000000000327418,56802692593886114025,822853000000000065483,1334502510163109491259,287348576781087672316,65581363014236941921,2400684628035122386791,655269597460754653184,129339672345674472353,197823688989146859285,683394537324530688238,3226966864497410824696,1935077994471550027810,1564967475983180065668,3291412000000000261934,4010287275780118307011,1887391729515445831566,4891634557775922530708]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "82285300000000002910383" + } + } + ] +} diff --git a/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.report.txt b/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.report.txt new file mode 100644 index 000000000..78b31e190 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.report.txt @@ -0,0 +1,61 @@ +FILENAME: `MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `3a32a4ddb5e0d044f9605c7c2d59f07bfcd77f93` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/6185d778-3a69-42b9-b7c5-866e34b8a437) +``` ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+----------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+===================================================================================================+========================================+=======+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 82285.3 (RAW: 82285300000000002910383) | N/A | 2 | ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+----------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `3a32a4ddb5e0d044f9605c7c2d59f07bfcd77f93` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/3cc63d1b-273d-4421-b805-e2c684993371) +``` ++------------------+------------------------------------------------------------------------------------------------+------------------------------------------------------+-----------+-----------------------------------------+------------+ +| function | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++==================+================================================================================================+======================================================+===========+=========================================+============+ +| setRecipientList | [ | [ | [ | 41142649999999999387500/1e18 = 41142.65 | 1 | +| | "0xae30333C4CFFeF017909460384CDD7B073281280 (Balancer 80LUMIN-20rETH Gauge Deposit)", | "211159012582608909269/1e18 = 211.1590125826089", | 2, | | | +| | "0x06eaf7bAabEac962301eE21296e711B3052F2c0d (Balancer wstETH/sfrxETH Gauge Deposit)", | "705106556868132543058/1e18 = 705.1065568681325", | 2, | | | +| | "0x2cFBD7aCC62709396b3C8c7698808384720A0BbF (Balancer 20WETH-80PAL Gauge Deposit)", | "211826898766961534192/1e18 = 211.82689876696153", | 2, | | | +| | "0x050fBe33699E56B577c3D6f090eCE9870A0966bd (Balancer sFRAX/4POOL Gauge Deposit)", | "6651127350440919144602/1e18 = 6651.127350440919", | 2, | | | +| | "0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E (Balancer cbETH/rETH/wstETH Gauge Deposit)", | "1135048954410615124288/1e18 = 1135.0489544106151", | 2, | | | +| | "0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1 (Balancer 55auraBal-45wsteth Gauge Deposit)", | "672778062199584610425/1e18 = 672.7780621995846", | 2, | | | +| | "0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999 (Balancer RDNT-WETH Gauge Deposit)", | "4114265000000000327418/1e18 = 4114.265", | 2, | | | +| | "0x2eB5661002b68EBE887d29d415c3A3b52536912C (Balancer wstETH/rETH/cbETH Gauge Deposit)", | "56802692593886114025/1e18 = 56.802692593886114", | 2, | | | +| | "0x159be31493C26F8F924b3A2a7F428C2f41247e83 (Balancer GOLD-BAL-AURA-wstETH Gauge Deposit)", | "822853000000000065483/1e18 = 822.8530000000001", | 2, | | | +| | "0x089a2E069700B0f2B16f69A6e02b01818ce22e7d (Balancer D2D-rETH Gauge Deposit)", | "1334502510163109491259/1e18 = 1334.5025101631095", | 2, | | | +| | "0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3 (Balancer 50tBTC-50WETH Gauge Deposit)", | "287348576781087672316/1e18 = 287.3485767810877", | 2, | | | +| | "0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673 (Balancer wstETH/rETH/sfrxETH Gauge Deposit)", | "65581363014236941921/1e18 = 65.58136301423694", | 2, | | | +| | "0xeF767E740D83d410794519c2F93Db32e44359a5C (Balancer 50MAGIC-50USDC Gauge Deposit)", | "2400684628035122386791/1e18 = 2400.6846280351224", | 2, | | | +| | "0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B (Balancer STAR/USDC-BPT Gauge Deposit)", | "655269597460754653184/1e18 = 655.2695974607547", | 2, | | | +| | "0x574c2146091Cced305A7ABa82d097DE36b736fac (Balancer 50DFX-50WETH Gauge Deposit)", | "129339672345674472353/1e18 = 129.33967234567447", | 2, | | | +| | "0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A (Balancer 2BTC Gauge Deposit)", | "197823688989146859285/1e18 = 197.82368898914686", | 2, | | | +| | "0x2162abD00312a0496B4b72b20A6790Cc07268A25 (Balancer Savvy TriCrypto Pool Gauge Deposit)", | "683394537324530688238/1e18 = 683.3945373245307", | 2, | | | +| | "0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF (Balancer plsRDNT-Stable Gauge Deposit)", | "3226966864497410824696/1e18 = 3226.966864497411", | 2, | | | +| | "0xa14453084318277b11d38FbE05D857A4f647442B (Balancer 4POOL-BPT Gauge Deposit)", | "1935077994471550027810/1e18 = 1935.07799447155", | 2, | | | +| | "0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2 (Balancer DOLA/USDC BPT Gauge Deposit)", | "1564967475983180065668/1e18 = 1564.96747598318", | 2, | | | +| | "0xcF853F14EF6111435Cb39c0C43C66366cc6300F1 (Balancer 50GOLD-25USDC-25WSTETH Gauge Deposit)", | "3291412000000000261934/1e18 = 3291.4120000000003", | 2, | | | +| | "0x260cbb867359a1084eC97de4157d06ca74e89415 (Balancer wstETH-WETH-BPT Gauge Deposit)", | "4010287275780118307011/1e18 = 4010.2872757801183", | 2, | | | +| | "0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE (Balancer ankrETH/wstETH-BPT Gauge Deposit)", | "1887391729515445831566/1e18 = 1887.3917295154458", | 2, | | | +| | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (Balancer rETH/wETH BPT Gauge Deposit)" | "4891634557775922530708/1e18 = 4891.634557775922" | 2 | | | +| | ] | ] | ] | | | ++------------------+------------------------------------------------------------------------------------------------+------------------------------------------------------+-----------+-----------------------------------------+------------+ +``` +FILENAME: `MaxiOps/STIP/dao_grant_2024-02-22_2024-03-07.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `3a32a4ddb5e0d044f9605c7c2d59f07bfcd77f93` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/f57bf994-cfca-4ca2-b5aa-715c7f414bf5) +``` ++----------------+--------------------------------------------------------+---------+--------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++================+========================================================+=========+==============+==============+============+ +| redeemAllPlans | 0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C (Not Found) | 0 | "0xb9bdac2c" | N/A | N/A | ++----------------+--------------------------------------------------------+---------+--------------+--------------+------------+ +``` diff --git a/MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.json b/MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.json new file mode 100644 index 000000000..4d26d1b73 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.json @@ -0,0 +1,82 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "redeemAllPlans", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68]", + "amountsPerPeriod": "[4891634557775922530708]", + "maxPeriods": "[2]" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "amount": "9783269115551845061416" + } + } + ] +} diff --git a/MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.report.txt b/MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.report.txt new file mode 100644 index 000000000..7fb0646d5 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.report.txt @@ -0,0 +1,38 @@ +FILENAME: `MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `3a32a4ddb5e0d044f9605c7c2d59f07bfcd77f93` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/ba5ffd51-8c25-4e95-bfe7-1952e69f8fe0) +``` ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+================================================+===================================================================================================+=================================================+=======+============+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | maxiKeepers/gaugeRewardsInjectors/arb_rewards_injector:0xF23d8342881eDECcED51EA694AC21C2B68440929 | 9783.269115551844 (RAW: 9783269115551845061416) | N/A | 2 | ++------------+------------------------------------------------+---------------------------------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `3a32a4ddb5e0d044f9605c7c2d59f07bfcd77f93` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/ee96f7a9-557d-415c-8aff-af3393dcadea) +``` ++------------------+--------------------------------------------------------------------------------------+----------------------------------------------------+-----------+-------------------------------------------------+------------+ +| function | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++==================+======================================================================================+====================================================+===========+=================================================+============+ +| setRecipientList | [ | [ | [ | 4891634557775922530708/1e18 = 4891.634557775923 | 1 | +| | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (Balancer rETH/wETH BPT Gauge Deposit)" | "4891634557775922530708/1e18 = 4891.634557775922" | 2 | | | +| | ] | ] | ] | | | ++------------------+--------------------------------------------------------------------------------------+----------------------------------------------------+-----------+-------------------------------------------------+------------+ +``` +FILENAME: `MaxiOps/STIP/dao_grant_ending_2024-03-07-RethWeth-reroute-special.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `3a32a4ddb5e0d044f9605c7c2d59f07bfcd77f93` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/5f430e97-c2e3-4779-a1f4-a5e532cfe089) +``` ++----------------+--------------------------------------------------------+---------+--------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++================+========================================================+=========+==============+==============+============+ +| redeemAllPlans | 0x2CDE9919e81b20B4B33DD562a48a84b54C48F00C (Not Found) | 0 | "0xb9bdac2c" | N/A | N/A | ++----------------+--------------------------------------------------------+---------+--------------+--------------+------------+ +``` diff --git a/MaxiOps/STIP/dao_grant_ending_2024-03-07-after-reroute.csv b/MaxiOps/STIP/dao_grant_ending_2024-03-07-after-reroute.csv new file mode 100644 index 000000000..bae156bf8 --- /dev/null +++ b/MaxiOps/STIP/dao_grant_ending_2024-03-07-after-reroute.csv @@ -0,0 +1,26 @@ +recipientGaugeAddr,poolAddress,symbol,voteWeight,voteWeightNoBoost,distribution,pctDistribution,boost,staticBoost,dynamicBoost,cap,bonus +0x050fBe33699E56B577c3D6f090eCE9870A0966bd,0x2ce4457acac29da4736ae6f5cd9f583a6b335c27,sFRAX/4POOL,1.109474088,0.2785778344,13302.2547,16.16601592,3.982635912,1.5,3.482635912,10%,10000 +0xcf9f895296F5e1D66a7D4dcf1d92e1B435E9f999,0x32df62dc3aed2cd6224193052ce665dc18165841,RDNT-WETH,30.77925478,2.232222703,8228.53,10,13.78861291,1.5,13.28861291,10%,0 +0x260cbb867359a1084eC97de4157d06ca74e89415,0x9791d590788598535278552eecd4b211bfc790cb,wstETH-WETH-BPT,3.870456564,0.2553866071,8020.574552,9.747275092,15.15528401,1.75,14.40528401,20%,0 +0xcF853F14EF6111435Cb39c0C43C66366cc6300F1,0x2e8ea681fd59c9dc5f32b29de31f782724ef4dcb,50GOLD-25USDC-25WSTETH,7.076931321,5.703924631,6582.824,8,1.240712628,1,1.240712628,8%,0 +0x40F6bE0b26B229C4C3b2C3344e91f8eEe22a62fF,0x451b0afd69ace11ec0ac339033d54d2543b088a8,plsRDNT-Stable,2.577191548,0.2159160208,6453.933729,7.843361729,11.93608301,1.75,11.18608301,10%,0 +0xd6B875d62c2661eaB66472F36c672e4B512f1135,0xade4a71bb62bec25154cfc7e6ff49a513b491e81,rETH-WETH-BPT,2.598245112,0.1809027854,0,7.427194247,14.36265952,1.75,13.61265952,20%,0 +0xeF767E740D83d410794519c2F93Db32e44359a5C,0xb3028ca124b80cfe6e9ca57b70ef2f0ccc41ebd4,50MAGIC-50USDC,1.775330081,0.388154563,4801.369256,5.835026738,4.573770994,1,4.573770994,10%,0 +0xa14453084318277b11d38FbE05D857A4f647442B,0x423a1323c871abc9d89eb06855bf5347048fc4a5,4POOL-BPT,1.7463644,0.241536012,3870.155989,4.70333825,7.230244411,1.5,6.730244411,10%,0 +0xfC745035F31BCbaEb2D1a89aA9171495c671F6cE,0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54,ankrETH/wstETH-BPT,1.969090593,0.4108134036,3774.783459,4.58743355,4.793150799,1.75,4.043150799,20%,0 +0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68,0xd0ec47c54ca5e20aaae4616c25c825c7f48d4069,rETH/wETH BPT,1.169767191,1.005085233,9783.269116,4.462255163,1.163848749,1,1.163848749,10%,0 +0xd956246EA5b06DEa930F0A7feC1FFf000436e3f2,0x8bc65eed474d1a00555825c91feab6a8255c2107,DOLA/USDC BPT,1.46595479,1.454131273,3129.934952,3.803759544,1.008130983,1,1.008130983,10%,0 +0x089a2E069700B0f2B16f69A6e02b01818ce22e7d,0x835772bab114563746da80806930a9e37aa85344,D2D-rETH,0.9563973377,0.7832186984,2669.00502,3.243598821,1.221111472,1,1.221111472,10%,0 +0x5a0e92a55800BB5bFd5ec6C7340BfdE7f0947c3E,0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb,cbETH/rETH/wstETH,0.7860411774,0.433185124,2270.097909,2.758813432,1.814561798,1,1.814561798,10%,0 +0x159be31493C26F8F924b3A2a7F428C2f41247e83,0x49b2de7d214070893c038299a57bac5acb8b8a34,GOLD-BAL-AURA-wstETH,1.835735454,1.294690934,1645.706,2,1.417894731,1,1.417894731,2%,0 +0x06eaf7bAabEac962301eE21296e711B3052F2c0d,0xc2598280bfea1fe18dfcabd21c7165c40c6859d3,wstETH/sfrxETH,0.4660434747,0.3067649043,1410.213114,1.713809288,1.519220316,1,1.519220316,10%,0 +0x2162abD00312a0496B4b72b20A6790Cc07268A25,0xd1882ca6a22f3df54cd675b300b815864de67b20,Savvy TriCrypto Pool,0.5387817068,0.5387817068,1366.789075,1.661036752,1,1,1,10%,0 +0x82d2c7B67Eaa5028c89BE86CeA8e1DF5bd2119A1,0xc7fa3a3527435720f0e2a4c1378335324dd4f9b3,55auraBal-45wsteth,0.4757262961,0.4287080248,1345.556124,1.63523269,1.109674344,1,1.109674344,10%,0 +0xD7a5122a4e88EC9fBE94301A0Bff6114ddFe5d4B,0xead7e0163e3b33bf0065c9325fc8fb9b18cc8213,STAR/USDC-BPT,0.5071419371,0.5040215967,1310.539195,1.592677179,1.006190886,1,1.006190886,10%,0 +0x011417BBED6FC9cefF36C032D431b0eFcBA7f8B3,0xc9f52540976385a84bf416903e1ca3983c539e34,50tBTC-50WETH,0.2111105789,0.1003667805,574.6971536,0.698420196,2.103390962,1,2.103390962,10%,0 +0x2cFBD7aCC62709396b3C8c7698808384720A0BbF,0xe25ecadca47419e9aee2700ceab4e7c4b01b94ca,20WETH-80PAL,0.1417953735,0.1390404405,423.6537975,0.5148596378,1.019813897,1,1.019813897,10%,0 +0xae30333C4CFFeF017909460384CDD7B073281280,0x39a5bfd5fe32026cd93d81859b4b38cea78d8220,80LUMIN-20rETH,0.1390404405,0.1390404405,422.3180252,0.5132362951,1,1,1,10%,0 +0xb438c6cc53315FfA3fcD1bc8b27d6c3155b0B56A,0x542f16da0efb162d20bf4358efa095b70a100f9e,2BTC,0.1553831387,0.05793351686,395.647378,0.4808238871,2.682094014,1,2.682094014,10%,0 +0x574c2146091Cced305A7ABa82d097DE36b736fac,0x9bfcd4189cf9062697746ce292350f42fdee457c,50DFX-50WETH,0.1013449409,0.08690027529,258.6793447,0.3143688419,1.166221172,1,1.166221172,10%,0 +0x34BDBEcd3B911a8DCB17aC68B961a8D16db52673,0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd,wstETH/rETH/sfrxETH,0.04843914116,0.02767950923,131.162726,0.1593999487,1.75,1.75,1,20%,0 +0x2eB5661002b68EBE887d29d415c3A3b52536912C,0x4a2f6ae7f3e5d715689530873ec35593dc28951b,wstETH/rETH/cbETH,0.04066628565,0.02323787751,113.6053852,0.1380627952,1.75,1.75,1,20%,0 \ No newline at end of file diff --git a/MaxiOps/ZenBeta/airdrop/ZenBetaAirdrop.csv b/MaxiOps/ZenBeta/airdrop/ZenBetaAirdrop.csv new file mode 100644 index 000000000..a7b07f65a --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/ZenBetaAirdrop.csv @@ -0,0 +1,25 @@ +name,Address,Pay on mainnet,% Epoch 3,% Epoch 5,% Epoch 6,% Epoch 7,$ Epoch 8,% Epoch 9,% Epoch 10,Total ,Percentage of Budget,BAL award if program ended today,tx index +"",0x1a1e852f970a231d32271c88162e222a09c1650a,Yes,0.00,12.5,35,10.33,28.46,25,5.03,116.32,17.03%,170.3473727,mainnet: 0 +"",0xbe4ca24f9c2cef343e00f50cb99cd0539104bced,,0.00,10,15,13.67,30.77,17.5,26.63,113.57,16.63%,166.320075,0 +"",0x714d8b5874b3a6a69f289f4e857f4c9670074296,,23.50,0,40,11,0,20,0,94.50,13.84%,138.3925956,1 +"",0x5920ca4a51d93052f111e90c387f70bcf723ea3f,,8.50,0,0,6.67,31.92,20,26.63,93.72,13.73%,137.2503075,2 +"",0x9b139f8d81c34667764e9db1d21f5472d9be1d4e,Yes,0.00,15,0,26,0,0,15.08,56.08,8.21%,82.12758479,mainnet: 1 +"",0x110d68F5DFA414E943181Dec3346D4CA0d6DE37F,Yes,23.00,0,0,0,0,17.5,5.03,45.53,6.67%,66.67740613,mainnet: 2 +"",0xd5d0b567dee15920aef0b4ad94cd6c3152057067,,23.00,2.5,0,0,0,0,0,25.50,3.73%,37.34403374,3 +"",0x03f5f07e6748ac776ad6f5a2b4a09e0508b622e0,,0.00,15,0,8.33,0,0,0,23.33,3.42%,34.16612969,4 +"",0xad5d3fba85e16b044094788379507cbd8c8cdbfb,,0.00,0,0,0,0,0,20.1,20.10,2.94%,29.43588542,5 +"",0xc7060f644e74eb49905a5149e25c8393cb85757b,,0.00,0,0,17.33,0,0,0,17.33,2.54%,25.37929823,6 +"",0xeca5e3ce0774372e71ce9b3675cb07c6677c2d52,,6.50,0,0,0,8.85,0,0,15.35,2.25%,22.47964384,7 +"",0x554bb0ebabc7024d2182286912739ef68645250a,,0.00,15,0,0,0,0,0,15.00,2.20%,21.96707867,8 +"",0x80e6c4918ce508c08f7e4298f64464044cf79db7,,0.00,15,0,0,0,0,0,15.00,2.20%,21.96707867,9 +"",0xe71e956e10ec540551ad2200196f9a834eaf3660,,0.00,12.5,0,0,0,0,1.51,14.01,2.05%,20.51725148,10 +"",0xa1ca7e34109ec53a1bc4549e26289acfaea776ab,,10.00,0,0,0,0,0,0,10.00,1.46%,14.64471911,11 +"",0x4baa9c08020b229c646709ba48c176fb897d61ef,,3.00,0,0,0,0,0,0,3.00,0.44%,4.393415734,12 +"",0x20907a020a4a85669f2940d645e94c5b6490d1ad,,0.00,2.5,0,0,0,0,0,2.50,0.37%,3.661179779,13 +"",0x000755fbe4a24d7478bfcfc1e561afce82d1ff62,,1.00,0,0,0,0,0,0,1.00,0.15%,1.464471911,14 +"",0x0e60f082aecb4a7b8b6be4657a602c8aaf2e0f0a,,0.50,0,0,0,0,0,0,0.50,0.07%,0.7322359557,15 +"",0x667cde7f3ad81a1593110d77bee7b24da38ac42c,,0.50,0,0,0,0,0,0,0.50,0.07%,0.7322359557,16 +"",0x1dedddae15c6ab1ab8faead293bac0b4cf1807a0,,0.00,0,0,0,0,0,0,0.00,0.00%,0, +"",0xfb89a1186059933a539108573e0b9b3dd95deb31,,0.00,0,0,0,0,0,0,0.00,0.00%,0, +"",0xde17be1f562ce4809aca9d655db8dca98e1b3442,,0.00,0,0,0,0,0,0,0.00,0.00%,0, +Total,,,99.50,100,90,93.33,100,100,100.01,682.84,100.00%,1000, \ No newline at end of file diff --git a/MaxiOps/ZenBeta/airdrop/abi/ERC20.json b/MaxiOps/ZenBeta/airdrop/abi/ERC20.json new file mode 100644 index 000000000..405d6b364 --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/abi/ERC20.json @@ -0,0 +1,222 @@ +[ + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_from", + "type": "address" + }, + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [ + { + "name": "", + "type": "uint8" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "_owner", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "balance", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "_owner", + "type": "address" + }, + { + "name": "_spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "from", + "type": "address" + }, + { + "indexed": true, + "name": "to", + "type": "address" + }, + { + "indexed": false, + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + } +] diff --git a/MaxiOps/ZenBeta/airdrop/abi/omnibridge.json b/MaxiOps/ZenBeta/airdrop/abi/omnibridge.json new file mode 100644 index 000000000..43ce02d6c --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/abi/omnibridge.json @@ -0,0 +1,1363 @@ +[ + { + "inputs": [ + { + "internalType": "string", + "name": "_suffix", + "type": "string" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newLimit", + "type": "uint256" + } + ], + "name": "DailyLimitChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newLimit", + "type": "uint256" + } + ], + "name": "ExecutionDailyLimitChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "FailedMessageFixed", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "nativeToken", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "bridgedToken", + "type": "address" + } + ], + "name": "NewTokenRegistered", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + } + ], + "name": "TokensBridged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + } + ], + "name": "TokensBridgingInitiated", + "type": "event" + }, + { + "inputs": [], + "name": "bridgeContract", + "outputs": [ + { + "internalType": "contract IAMB", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_nativeToken", + "type": "address" + } + ], + "name": "bridgedTokenAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_to", + "type": "address" + } + ], + "name": "claimTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_bridgedToken", + "type": "address" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_to", + "type": "address" + } + ], + "name": "claimTokensFromTokenContract", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "dailyLimit", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "string", + "name": "_name", + "type": "string" + }, + { + "internalType": "string", + "name": "_symbol", + "type": "string" + }, + { + "internalType": "uint8", + "name": "_decimals", + "type": "uint8" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + } + ], + "name": "deployAndHandleBridgedTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "string", + "name": "_name", + "type": "string" + }, + { + "internalType": "string", + "name": "_symbol", + "type": "string" + }, + { + "internalType": "uint8", + "name": "_decimals", + "type": "uint8" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "name": "deployAndHandleBridgedTokensAndCall", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "disableInterest", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "executionDailyLimit", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "executionMaxPerTx", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_messageId", + "type": "bytes32" + } + ], + "name": "fixFailedMessage", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_receiver", + "type": "address" + } + ], + "name": "fixMediatorBalance", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getBridgeInterfacesVersion", + "outputs": [ + { + "internalType": "uint64", + "name": "major", + "type": "uint64" + }, + { + "internalType": "uint64", + "name": "minor", + "type": "uint64" + }, + { + "internalType": "uint64", + "name": "patch", + "type": "uint64" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "getBridgeMode", + "outputs": [ + { + "internalType": "bytes4", + "name": "_data", + "type": "bytes4" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "getCurrentDay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + } + ], + "name": "handleBridgedTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "name": "handleBridgedTokensAndCall", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + } + ], + "name": "handleNativeTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "name": "handleNativeTokensAndCall", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_bridgeContract", + "type": "address" + }, + { + "internalType": "address", + "name": "_mediatorContract", + "type": "address" + }, + { + "internalType": "uint256[3]", + "name": "_dailyLimitMaxPerTxMinPerTxArray", + "type": "uint256[3]" + }, + { + "internalType": "uint256[2]", + "name": "_executionDailyLimitExecutionMaxPerTxArray", + "type": "uint256[2]" + }, + { + "internalType": "uint256", + "name": "_requestGasLimit", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_owner", + "type": "address" + }, + { + "internalType": "address", + "name": "_tokenFactory", + "type": "address" + } + ], + "name": "initialize", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_impl", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_minCashThreshold", + "type": "uint256" + } + ], + "name": "initializeInterest", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "interestImplementation", + "outputs": [ + { + "internalType": "contract IInterestImplementation", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "invest", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isBridgedTokenDeployAcknowledged", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "isInitialized", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isRegisteredAsNativeToken", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenRegistered", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "maxAvailablePerTx", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "maxPerTx", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "mediatorBalance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "mediatorContractOnOtherSide", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_messageId", + "type": "bytes32" + } + ], + "name": "messageFixed", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_tokenFactory", + "type": "address" + }, + { + "internalType": "address", + "name": "_interestImplementation", + "type": "address" + } + ], + "name": "migrateTo_3_3_0", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "minCashThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "minPerTx", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_bridgedToken", + "type": "address" + } + ], + "name": "nativeTokenAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_from", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "name": "onTokenTransfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC677", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + } + ], + "name": "relayTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC677", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "_receiver", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + } + ], + "name": "relayTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC677", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "_receiver", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "name": "relayTokensAndCall", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_messageId", + "type": "bytes32" + } + ], + "name": "requestFailedMessageFix", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "requestGasLimit", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_bridgeContract", + "type": "address" + } + ], + "name": "setBridgeContract", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_nativeToken", + "type": "address" + }, + { + "internalType": "address", + "name": "_bridgedToken", + "type": "address" + } + ], + "name": "setCustomTokenAddressPair", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_dailyLimit", + "type": "uint256" + } + ], + "name": "setDailyLimit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_dailyLimit", + "type": "uint256" + } + ], + "name": "setExecutionDailyLimit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_maxPerTx", + "type": "uint256" + } + ], + "name": "setExecutionMaxPerTx", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_maxPerTx", + "type": "uint256" + } + ], + "name": "setMaxPerTx", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_mediatorContract", + "type": "address" + } + ], + "name": "setMediatorContractOnOtherSide", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_minCashThreshold", + "type": "uint256" + } + ], + "name": "setMinCashThreshold", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_minPerTx", + "type": "uint256" + } + ], + "name": "setMinPerTx", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_gasLimit", + "type": "uint256" + } + ], + "name": "setRequestGasLimit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_tokenFactory", + "type": "address" + } + ], + "name": "setTokenFactory", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "tokenFactory", + "outputs": [ + { + "internalType": "contract TokenFactory", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_day", + "type": "uint256" + } + ], + "name": "totalExecutedPerDay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_day", + "type": "uint256" + } + ], + "name": "totalSpentPerDay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "withinExecutionLimit", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "withinLimit", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } +] diff --git a/MaxiOps/ZenBeta/airdrop/gen_payloads.py b/MaxiOps/ZenBeta/airdrop/gen_payloads.py new file mode 100644 index 000000000..f5190ea2a --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/gen_payloads.py @@ -0,0 +1,51 @@ +from bal_addresses import AddrBook +from bal_tools.safe_tx_builder import SafeTxBuilder, SafeContract +from bal_tools.utils import get_abi +from decimal import Decimal, ROUND_DOWN +import pandas as pd + + +GNOSIS_OMNIBRIDGE = "0x88ad09518695c6c3712AC10a214bE5109a655671" +GNOSIS_BAL_ADDRESS = "0x7eF541E2a22058048904fE5744f9c7E4C57AF717" + + +def to_wei(amount): + return int( + (Decimal(amount) * Decimal("1e18")).to_integral_value(rounding=ROUND_DOWN) + ) + + +airdrop = pd.read_csv("ZenBetaAirdrop.csv").dropna(subset=["Address"]) +mainnet_recipients = airdrop[ + (airdrop["Pay on mainnet"] == "Yes") + & (airdrop["BAL award if program ended today"] > 0) +] +gnosis_recipients = airdrop[ + (airdrop["Pay on mainnet"] != "Yes") + & (airdrop["BAL award if program ended today"] > 0) +] +bridge_to_gnosis = to_wei(gnosis_recipients["BAL award if program ended today"].sum()) + + +### mainnet transactions +mainnet_builder = SafeTxBuilder("multisigs/lm", chain_name="mainnet") +bal = SafeContract("tokens/BAL", abi_file_path="abi/ERC20.json") +omnibridge = SafeContract(GNOSIS_OMNIBRIDGE, abi_file_path="abi/omnibridge.json") + +for _, row in mainnet_recipients.iterrows(): + bal.transfer(row["Address"], to_wei(row["BAL award if program ended today"])) + +bal.approve(GNOSIS_OMNIBRIDGE, bridge_to_gnosis) +omnibridge.relayTokens(bal.address, AddrBook("gnosis").multisigs.lm, bridge_to_gnosis) + +mainnet_builder.output_payload("transactions/ZenAirdropMainnet.json") + + +### gnosis transactions +gnosis_builder = SafeTxBuilder("multisigs/lm", chain_name="gnosis") +bal = SafeContract(GNOSIS_BAL_ADDRESS, get_abi("ERC20")) + +for _, row in gnosis_recipients.iterrows(): + bal.transfer(row["Address"], to_wei(row["BAL award if program ended today"])) + +gnosis_builder.output_payload("transactions/ZenAirdropGnosis.json") diff --git a/MaxiOps/ZenBeta/airdrop/requirements.txt b/MaxiOps/ZenBeta/airdrop/requirements.txt new file mode 100644 index 000000000..7555961ca --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/requirements.txt @@ -0,0 +1,3 @@ +pandas +git+https://github.com/BalancerMaxis/bal_addresses@0.9.1 +git+https://github.com/BalancerMaxis/bal_tools@v0.1.4 diff --git a/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropGnosis.json b/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropGnosis.json new file mode 100644 index 000000000..5962eee07 --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropGnosis.json @@ -0,0 +1,304 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1722519180, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "transactions": [ + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0xbe4ca24f9c2cef343e00f50cb99cd0539104bced", + "_value": "166320075000000002773" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x714d8b5874b3a6a69f289f4e857f4c9670074296", + "_value": "138392595599999992828" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x5920ca4a51d93052f111e90c387f70bcf723ea3f", + "_value": "137250307499999991023" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0xd5d0b567dee15920aef0b4ad94cd6c3152057067", + "_value": "37344033740000000420" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x03f5f07e6748ac776ad6f5a2b4a09e0508b622e0", + "_value": "34166129689999998220" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0xad5d3fba85e16b044094788379507cbd8c8cdbfb", + "_value": "29435885420000001744" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0xc7060f644e74eb49905a5149e25c8393cb85757b", + "_value": "25379298229999999847" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0xeca5e3ce0774372e71ce9b3675cb07c6677c2d52", + "_value": "22479643840000001375" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x554bb0ebabc7024d2182286912739ef68645250a", + "_value": "21967078669999999362" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x80e6c4918ce508c08f7e4298f64464044cf79db7", + "_value": "21967078669999999362" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0xe71e956e10ec540551ad2200196f9a834eaf3660", + "_value": "20517251479999998764" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0xa1ca7e34109ec53a1bc4549e26289acfaea776ab", + "_value": "14644719110000000483" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x4baa9c08020b229c646709ba48c176fb897d61ef", + "_value": "4393415734000000405" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x20907a020a4a85669f2940d645e94c5b6490d1ad", + "_value": "3661179778999999800" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x000755fbe4a24d7478bfcfc1e561afce82d1ff62", + "_value": "1464471910999999959" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x0e60f082aecb4a7b8b6be4657a602c8aaf2e0f0a", + "_value": "732235955699999996" + } + }, + { + "to": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_to", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x667cde7f3ad81a1593110d77bee7b24da38ac42c", + "_value": "732235955699999996" + } + } + ] +} diff --git a/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropGnosis.report.txt b/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropGnosis.report.txt new file mode 100644 index 000000000..c86776a35 --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropGnosis.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropGnosis.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `cc0216d8c42801fce44c5357e44f2975388d4414` +CHAIN(S): `gnosis` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/b1c42184-c7eb-4d3a-8d06-6c58c28ae905) +``` ++----------+------------------------------------------------+------------------------------------------------+------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------+------------------------------------------+-----+----------+ +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0xBE4ca24f9c2cEF343e00F50CB99cD0539104BCeD | 166.320075 (RAW: 166320075000000002773) | N/A | 0 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x714D8b5874b3a6a69f289f4e857F4C9670074296 | 138.3925956 (RAW: 138392595599999992828) | N/A | 1 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x5920cA4A51d93052f111E90C387f70Bcf723Ea3f | 137.2503075 (RAW: 137250307499999991023) | N/A | 2 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0xd5D0B567dee15920AEf0b4ad94Cd6C3152057067 | 37.34403374 (RAW: 37344033740000000420) | N/A | 3 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x03F5f07e6748aC776AD6f5a2B4a09e0508B622e0 | 34.16612969 (RAW: 34166129689999998220) | N/A | 4 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0xad5D3Fba85E16B044094788379507CBd8c8cDBFB | 29.43588542 (RAW: 29435885420000001744) | N/A | 5 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0xc7060F644E74eB49905A5149e25C8393Cb85757b | 25.37929823 (RAW: 25379298229999999847) | N/A | 6 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0xECa5e3CE0774372e71cE9b3675CB07c6677C2d52 | 22.47964384 (RAW: 22479643840000001375) | N/A | 7 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x554Bb0ebABc7024D2182286912739ef68645250a | 21.96707867 (RAW: 21967078669999999362) | N/A | 8 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x80E6c4918ce508c08F7e4298f64464044cF79Db7 | 21.96707867 (RAW: 21967078669999999362) | N/A | 9 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0xE71e956E10EC540551aD2200196f9A834EaF3660 | 20.51725148 (RAW: 20517251479999998764) | N/A | 10 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0xa1CA7e34109Ec53a1bc4549e26289acFAea776AB | 14.64471911 (RAW: 14644719110000000483) | N/A | 11 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x4Baa9C08020B229C646709bA48C176Fb897D61EF | 4.393415734 (RAW: 4393415734000000405) | N/A | 12 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x20907A020A4A85669F2940D645e94C5B6490d1ad | 3.661179779 (RAW: 3661179778999999800) | N/A | 13 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x000755Fbe4A24d7478bfcFC1E561AfCE82d1ff62 | 1.464471911 (RAW: 1464471910999999959) | N/A | 14 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x0E60F082aECb4A7b8b6BE4657a602c8aaF2e0f0A | 0.7322359557 (RAW: 732235955699999996) | N/A | 15 | +| transfer | BAL:0x7eF541E2a22058048904fE5744f9c7E4C57AF717 | N/A:0x667CDe7F3AD81a1593110D77bEe7b24DA38AC42c | 0.7322359557 (RAW: 732235955699999996) | N/A | 16 | ++----------+------------------------------------------------+------------------------------------------------+------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropMainnet.json b/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropMainnet.json new file mode 100644 index 000000000..cc0b9c175 --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropMainnet.json @@ -0,0 +1,146 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722519178, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_to", + "type": "address", + "internalType": "address" + }, + { + "name": "_value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x1a1e852f970a231d32271c88162e222a09c1650a", + "_value": "170347372699999993983" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_to", + "type": "address", + "internalType": "address" + }, + { + "name": "_value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x9b139f8d81c34667764e9db1d21f5472d9be1d4e", + "_value": "82127584790000000225" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_to", + "type": "address", + "internalType": "address" + }, + { + "name": "_value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "_to": "0x110d68F5DFA414E943181Dec3346D4CA0d6DE37F", + "_value": "66677406129999994277" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_spender", + "type": "address", + "internalType": "address" + }, + { + "name": "_value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0x88ad09518695c6c3712AC10a214bE5109a655671", + "_value": "680847636285399971711" + } + }, + { + "to": "0x88ad09518695c6c3712AC10a214bE5109a655671", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "token", + "type": "address", + "internalType": "address" + }, + { + "name": "_receiver", + "type": "address", + "internalType": "address" + }, + { + "name": "_value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "relayTokens", + "payable": false + }, + "contractInputsValues": { + "token": "0xba100000625a3754423978a60c9317c58a424e3D", + "_receiver": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "_value": "680847636285399971711" + } + } + ] +} diff --git a/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropMainnet.report.txt b/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropMainnet.report.txt new file mode 100644 index 000000000..fad6d41eb --- /dev/null +++ b/MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropMainnet.report.txt @@ -0,0 +1,44 @@ +FILENAME: `MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropMainnet.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `cc0216d8c42801fce44c5357e44f2975388d4414` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/14ec0ad7-7538-46c6-93c9-35a92a3f6edb) +``` ++----------+------------------------------------------------+------------------------------------------------+------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------+------------------------------------------+-----+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:0x1A1e852f970a231d32271C88162e222A09C1650A | 170.3473727 (RAW: 170347372699999993983) | N/A | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:0x9b139f8D81c34667764E9DB1D21f5472D9be1D4E | 82.12758479 (RAW: 82127584790000000225) | N/A | 1 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | N/A:0x110d68F5DFA414E943181Dec3346D4CA0d6DE37F | 66.67740613 (RAW: 66677406129999994277) | N/A | 2 | ++----------+------------------------------------------------+------------------------------------------------+------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/ZenBeta/airdrop/transactions/ZenAirdropMainnet.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `cc0216d8c42801fce44c5357e44f2975388d4414` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/badf76af-823e-49cf-b752-df577628233c) +``` ++-------------+----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | N/A | N/A | +| | | | "_spender": [ | | | +| | | | "0x88ad09518695c6c3712AC10a214bE5109a655671 (gnosis/omnibridge)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:680847636285399971711, 18 decimals:680.847636285399971711, 6 decimals: 680847636285399.971711" | | | +| | | | ] | | | +| | | | } | | | +| relayTokens | 0x88ad09518695c6c3712AC10a214bE5109a655671 (gnosis/omnibridge) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL)" | | | +| | | | ], | | | +| | | | "_receiver": [ | | | +| | | | "0x14969B55a675d13a1700F71A37511bc22D90155a (N/A)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:680847636285399971711, 18 decimals:680.847636285399971711, 6 decimals: 680847636285399.971711" | | | +| | | | ] | | | +| | | | } | | | ++-------------+----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/0x052597b6633814a0a6ea9020ee46e25aa6936e49_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303921.json b/MaxiOps/add_rewards/arbitrum/0x052597b6633814a0a6ea9020ee46e25aa6936e49_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303921.json new file mode 100644 index 000000000..920dffbe2 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/0x052597b6633814a0a6ea9020ee46e25aa6936e49_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303921.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1714157066535, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x052597b6633814a0a6ea9020ee46e25aa6936e49", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000823f70044351b213083f0abc2169f95e2731064e" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/0x052597b6633814a0a6ea9020ee46e25aa6936e49_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303921.report.txt b/MaxiOps/add_rewards/arbitrum/0x052597b6633814a0a6ea9020ee46e25aa6936e49_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303921.report.txt new file mode 100644 index 000000000..dfaaea64e --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/0x052597b6633814a0a6ea9020ee46e25aa6936e49_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303921.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/0x052597b6633814a0a6ea9020ee46e25aa6936e49_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303921.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c1b7eeae98352d1fda2c2b0c9c8ebce45f8b18a2` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/0a2dfffb-8787-4629-9ece-b049bac37a19) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x052597b6633814a0a6ea9020ee46e25aa6936e49 (gauges/ECLP-GYD-AUSDC-gauge-0525)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000823f70044351b213083f0abc2169f95e2731064e" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/0x6e654787251ae77Fe1873f93A5f220E00afa90E8_0x912CE59144191C1204E64559FE8253a0e49E6548_1719923724.json b/MaxiOps/add_rewards/arbitrum/0x6e654787251ae77Fe1873f93A5f220E00afa90E8_0x912CE59144191C1204E64559FE8253a0e49E6548_1719923724.json new file mode 100644 index 000000000..8a36a324b --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/0x6e654787251ae77Fe1873f93A5f220E00afa90E8_0x912CE59144191C1204E64559FE8253a0e49E6548_1719923724.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1714157066535, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6e654787251ae77Fe1873f93A5f220E00afa90E8", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000e23eb92f0c76bf47f77f80d144e30f31b98450a9" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/0x6e654787251ae77Fe1873f93A5f220E00afa90E8_0x912CE59144191C1204E64559FE8253a0e49E6548_1719923724.report.txt b/MaxiOps/add_rewards/arbitrum/0x6e654787251ae77Fe1873f93A5f220E00afa90E8_0x912CE59144191C1204E64559FE8253a0e49E6548_1719923724.report.txt new file mode 100644 index 000000000..21170fd42 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/0x6e654787251ae77Fe1873f93A5f220E00afa90E8_0x912CE59144191C1204E64559FE8253a0e49E6548_1719923724.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/0x6e654787251ae77Fe1873f93A5f220E00afa90E8_0x912CE59144191C1204E64559FE8253a0e49E6548_1719923724.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `fe66e50941d6f36ff427695344458977718857ce` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e082abe3-0942-4889-9d57-0a70facaca09) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x6e654787251ae77Fe1873f93A5f220E00afa90E8 (gauges/ECLP-GHO-AUSDC-gauge-6e65)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000e23eb92f0c76bf47f77f80d144e30f31b98450a9" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303295.json b/MaxiOps/add_rewards/arbitrum/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303295.json new file mode 100644 index 000000000..f83e21470 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303295.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1714157066535, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000823f70044351b213083f0abc2169f95e2731064e" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303295.report.txt b/MaxiOps/add_rewards/arbitrum/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303295.report.txt new file mode 100644 index 000000000..0dff6e36b --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303295.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718303295.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c1b7eeae98352d1fda2c2b0c9c8ebce45f8b18a2` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b8d8f885-d526-4f75-83eb-f705e152e2ff) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000823f70044351b213083f0abc2169f95e2731064e" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round2_add_rewards_july_12_2024.json b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round2_add_rewards_july_12_2024.json new file mode 100644 index 000000000..4628d2686 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round2_add_rewards_july_12_2024.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1720788163225, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round2_add_rewards_july_12_2024.report.txt b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round2_add_rewards_july_12_2024.report.txt new file mode 100644 index 000000000..445ce01fd --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round2_add_rewards_july_12_2024.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/ARB_STIP_Round2_add_rewards_july_12_2024.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9b1bc69a7165259c55fdaab0212ec41385d38f40` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4effffa9-8455-4bbc-a27e-d6a2476c2e91) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x0CE9489bBD4bfA0Da7b5bb06E4dFa7a5947F76e8 (gauges/gUSDC/USDC-gauge-0ce9)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round3_add_rewards_july_23_2024.json.json b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round3_add_rewards_july_23_2024.json.json new file mode 100644 index 000000000..f54ed4c8a --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round3_add_rewards_july_23_2024.json.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1721779511204, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x879049Df2744B8D8848985C82275AD4c07379905", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xE9801a0FA08acF9140bA3a347A8c6048fF9Eab7C", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7dc6c96bf1c0ce2e5ddad5601afecc0207b0870c", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round3_add_rewards_july_23_2024.report.txt.report.txt b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round3_add_rewards_july_23_2024.report.txt.report.txt new file mode 100644 index 000000000..7362bd1ca --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round3_add_rewards_july_23_2024.report.txt.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/ARB_STIP_Round3_add_rewards_july_23_2024.json.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `4be60f22ae1ea82429c75624b3be1ea82af8fddc` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ff169d58-8b59-4468-92dd-ae62810181f7) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x879049Df2744B8D8848985C82275AD4c07379905 (gauges/ECLP-wUSDM-GYD-gauge-8790) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 0 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xE9801a0FA08acF9140bA3a347A8c6048fF9Eab7C (gauges/sUSDe/USDC-gauge-e980) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 1 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x4b8858a8E42f406B4dC2eCB8D48B5cf0021035c8 (gauges/sUSDe/sFRAX-gauge-4b88) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 2 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x7dc6c96bf1c0ce2e5ddad5601afecc0207b0870c (gauges/sFRAX/FRAX-gauge-7dc6) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 3 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round4_add_rewards_August_23.json b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round4_add_rewards_August_23.json new file mode 100644 index 000000000..18cb7492b --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round4_add_rewards_August_23.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1724398982713, + "meta": { + "name": "Transactions Batch", + "description": "Add ARB as reward token to STIP gauges", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdDbDca6213b4a03d8C6fC1419Ef7B0b16B61d363", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdEC026525FE4FEF54857bCF551aEA97aBc24A673", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd9BE61a0a58A301B078033757bAC9474C276362E", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7a45919ca9Cf2176833492B9D049B34312AF90fa", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round4_add_rewards_August_23.report.txt b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round4_add_rewards_August_23.report.txt new file mode 100644 index 000000000..80d03bdb1 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/ARB_STIP_Round4_add_rewards_August_23.report.txt @@ -0,0 +1,21 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/ARB_STIP_Round4_add_rewards_August_23.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6964f83afb8e894356e618839bd367604432e21c` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9e104371-4806-4b20-af42-8d00f5887bd5) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xdDbDca6213b4a03d8C6fC1419Ef7B0b16B61d363 (gauges/ECLP-gUSDC-AUSDC-gauge-ddbd) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 0 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xdEC026525FE4FEF54857bCF551aEA97aBc24A673 (gauges/ECLP-sUSDe-GYD-gauge-dec0) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 1 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xd9BE61a0a58A301B078033757bAC9474C276362E (gauges/ECLP-wUSDM-USDC-rh-gauge-d9be) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 2 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x7a45919ca9Cf2176833492B9D049B34312AF90fa (gauges/ECLP-rETH-wstETH-gauge-7a45) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 3 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF (gauges/ECLP-sFRAX-aFRAX-gauge-b76e) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 4 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/ARB_STIP_add_rewards_june_28_2024.json b/MaxiOps/add_rewards/arbitrum/ARB_STIP_add_rewards_june_28_2024.json new file mode 100644 index 000000000..618450d8a --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/ARB_STIP_add_rewards_june_28_2024.json @@ -0,0 +1,83 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1719577328364, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/ARB_STIP_add_rewards_june_28_2024.report.txt b/MaxiOps/add_rewards/arbitrum/ARB_STIP_add_rewards_june_28_2024.report.txt new file mode 100644 index 000000000..1ceb655a8 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/ARB_STIP_add_rewards_june_28_2024.report.txt @@ -0,0 +1,43 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/ARB_STIP_add_rewards_june_28_2024.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `5718124759d192fd43866aefeb99149afa470199` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/845bfce7-a2e2-499d-993d-851aaa43209f) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x8f57378CaD866a46eA702B7ACAEBF21dd93B4804 (gauges/ETHx/wstETH-gauge-8f57)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x96d7C70c80518Ee189CB6ba672FbD22E4fDD9c19 (gauges/ECLP-wstETH-WETH-gauge-96d7)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xb072496eEf1F88a2Bd1BA93F880c7ed685264EB1 (gauges/instETH/wstETH-gauge-b072)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x2dEafe52b0bCb9801d3aaDc0D75c7879cB2E5825 (gauges/inETH/wstETH-gauge-2dea)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/Add_USDC_Cow-ARB-wETH-Injector.json b/MaxiOps/add_rewards/arbitrum/Add_USDC_Cow-ARB-wETH-Injector.json new file mode 100644 index 000000000..c617a7108 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/Add_USDC_Cow-ARB-wETH-Injector.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726255339011, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xbDBc27A1C245ed52EAcb0dc6ebA922992328F303", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cC2239327C5EDb3A432268e5831000000000000000000000000abC414cEE2F6E8Ee262d6dc106c86A3f627f84D2" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/Add_USDC_Cow-ARB-wETH-Injector.report.txt b/MaxiOps/add_rewards/arbitrum/Add_USDC_Cow-ARB-wETH-Injector.report.txt new file mode 100644 index 000000000..5275bcddf --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/Add_USDC_Cow-ARB-wETH-Injector.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/Add_USDC_Cow-ARB-wETH-Injector.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `52e3531f262da152f358e8094564e15a8459bb38` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/26cf0f66-06fc-4630-9ef4-74c99d20c137) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xbDBc27A1C245ed52EAcb0dc6ebA922992328F303 (None) | add_reward(address,address) | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | N/A | 0 | +| | | | | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2: maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/Add_USDC_MONEY-wETH-CowAMM.json b/MaxiOps/add_rewards/arbitrum/Add_USDC_MONEY-wETH-CowAMM.json new file mode 100644 index 000000000..d7260f4a0 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/Add_USDC_MONEY-wETH-CowAMM.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1728518523314, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xcf9d6027e47dbcf388b8cc3c97649a2505fb2b48c58cdfccdb73bd7f7e66e714" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd9332d9354a89957c9ba8bc73727015ef8c67a42", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cC2239327C5EDb3A432268e5831000000000000000000000000abC414cEE2F6E8Ee262d6dc106c86A3f627f84D2" + } + }, + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "1920000000" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/Add_USDC_MONEY-wETH-CowAMM.report.txt b/MaxiOps/add_rewards/arbitrum/Add_USDC_MONEY-wETH-CowAMM.report.txt new file mode 100644 index 000000000..d2f116072 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/Add_USDC_MONEY-wETH-CowAMM.report.txt @@ -0,0 +1,27 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/Add_USDC_MONEY-wETH-CowAMM.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `34621452b37bda12ac3242980df22c81ec4bb382` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/96dedf12-a837-485d-b96d-a0e26fa80150) + +``` ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector:0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 | 1920.0 (RAW: 1920000000) | N/A | 1 | ++----------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/add_rewards/arbitrum/Add_USDC_MONEY-wETH-CowAMM.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `34621452b37bda12ac3242980df22c81ec4bb382` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/59cb0244-b534-45a0-a1db-c3de4225e183) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xd9332D9354A89957c9ba8bC73727015eF8c67a42 (None) | add_reward(address,address) | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | N/A | 0 | +| | | | | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2: maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/GHO-USDC-USDT-ARB-Aave-Injector.json b/MaxiOps/add_rewards/arbitrum/GHO-USDC-USDT-ARB-Aave-Injector.json new file mode 100644 index 000000000..6d686dba0 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/GHO-USDC-USDT-ARB-Aave-Injector.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1721922545812, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000E23eb92f0C76bF47f77F80D144e30F31b98450A9" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/GHO-USDC-USDT-ARB-Aave-Injector.report.txt b/MaxiOps/add_rewards/arbitrum/GHO-USDC-USDT-ARB-Aave-Injector.report.txt new file mode 100644 index 000000000..f98732b9a --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/GHO-USDC-USDT-ARB-Aave-Injector.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/GHO-USDC-USDT-ARB-Aave-Injector.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7a22ddc680234b17229103c9c9a86b23ff667d7f` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/816f327d-8842-4e70-9995-ec2ebecc5da8) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2 (gauges/GHO/USDC/USDT-gauge-7d90) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 0 | +| | | | | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9: maxiKeepers/gaugeRewardsInjectors/arb_aave_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/GHO-sUSDe-and-waUSDC-PaladinQBV2.json b/MaxiOps/add_rewards/arbitrum/GHO-sUSDe-and-waUSDC-PaladinQBV2.json new file mode 100644 index 000000000..c5a205cf6 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/GHO-sUSDe-and-waUSDC-PaladinQBV2.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1728652984058, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6e654787251ae77fe1873f93a5f220e00afa90e8", + "data": "0xe8de0d4d0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b330000000000000000000000008EdcFE9Bc7d2a735117B94C16456D8303777abbb" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcfab2efef3affdd158568dc896115eac26b3c498", + "data": "0xe8de0d4d0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b330000000000000000000000008EdcFE9Bc7d2a735117B94C16456D8303777abbb" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/GHO-sUSDe-and-waUSDC-PaladinQBV2.report.txt b/MaxiOps/add_rewards/arbitrum/GHO-sUSDe-and-waUSDC-PaladinQBV2.report.txt new file mode 100644 index 000000000..4970ae930 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/GHO-sUSDe-and-waUSDC-PaladinQBV2.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/GHO-sUSDe-and-waUSDC-PaladinQBV2.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e1889603c74b93c7054c763a4f2e13ce973fa58b` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/95f05d1c-f82e-4a65-b025-66747941c17d) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x6e654787251ae77fe1873f93a5f220e00afa90e8 (gauges/ECLP-GHO-AUSDC-gauge-6e65) | add_reward(address,address) | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | N/A | 0 | +| | | | | 0x8EdcFE9Bc7d2a735117B94C16456D8303777abbb: paladin/QuestBoardV2Sidechain | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xcfab2efef3affdd158568dc896115eac26b3c498 (gauges/ECLP-GHO-USDe-rh-gauge-cfab) | add_reward(address,address) | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | N/A | 1 | +| | | | | 0x8EdcFE9Bc7d2a735117B94C16456D8303777abbb: paladin/QuestBoardV2Sidechain | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/GYD_GyroDistributor.json b/MaxiOps/add_rewards/arbitrum/GYD_GyroDistributor.json new file mode 100644 index 000000000..99c17ff6b --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/GYD_GyroDistributor.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1723046047841, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x052597B6633814a0a6eA9020eE46E25Aa6936E49", + "data": "0xe8de0d4d000000000000000000000000CA5d8F8a8d49439357d3CF46Ca2e720702F132b80000000000000000000000004Dfdad359bd4c154dD307350582C4bff636Ba299" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09", + "data": "0xe8de0d4d000000000000000000000000CA5d8F8a8d49439357d3CF46Ca2e720702F132b80000000000000000000000004Dfdad359bd4c154dD307350582C4bff636Ba299" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x795e075d31da614a3d5f57fb530d07c2af07b1fe", + "data": "0xe8de0d4d000000000000000000000000CA5d8F8a8d49439357d3CF46Ca2e720702F132b80000000000000000000000004Dfdad359bd4c154dD307350582C4bff636Ba299" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x879049df2744b8d8848985c82275ad4c07379905", + "data": "0xe8de0d4d000000000000000000000000CA5d8F8a8d49439357d3CF46Ca2e720702F132b80000000000000000000000004Dfdad359bd4c154dD307350582C4bff636Ba299" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x08f3e8a507e51c436f301afc77fb725486b1307a", + "data": "0xe8de0d4d000000000000000000000000CA5d8F8a8d49439357d3CF46Ca2e720702F132b80000000000000000000000004Dfdad359bd4c154dD307350582C4bff636Ba299" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/GYD_GyroDistributor.report.txt b/MaxiOps/add_rewards/arbitrum/GYD_GyroDistributor.report.txt new file mode 100644 index 000000000..2ef2da83d --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/GYD_GyroDistributor.report.txt @@ -0,0 +1,21 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/GYD_GyroDistributor.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `975a430b37b64fb72a403a5828a9b0600e691475` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/eea1072e-3a0f-4a7b-9efd-83446fa0a1f0) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525) | add_reward(address,address) | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | N/A | 0 | +| | | | | 0x4Dfdad359bd4c154dD307350582C4bff636Ba299: None | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964) | add_reward(address,address) | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | N/A | 1 | +| | | | | 0x4Dfdad359bd4c154dD307350582C4bff636Ba299: None | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x795e075d31da614a3d5f57fb530d07c2af07b1fe (gauges/20GYD-80D2D-gauge-795e) | add_reward(address,address) | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | N/A | 2 | +| | | | | 0x4Dfdad359bd4c154dD307350582C4bff636Ba299: None | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x879049df2744b8d8848985c82275ad4c07379905 (gauges/ECLP-wUSDM-GYD-gauge-8790) | add_reward(address,address) | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | N/A | 3 | +| | | | | 0x4Dfdad359bd4c154dD307350582C4bff636Ba299: None | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x08f3e8a507e51c436f301afc77fb725486b1307a (gauges/ECLP-GHO-GYD-gauge-08f3) | add_reward(address,address) | 0xCA5d8F8a8d49439357d3CF46Ca2e720702F132b8: GYD | N/A | 4 | +| | | | | 0x4Dfdad359bd4c154dD307350582C4bff636Ba299: None | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/MORE_GYD_USDC_injector.json b/MaxiOps/add_rewards/arbitrum/MORE_GYD_USDC_injector.json new file mode 100644 index 000000000..8863deaa3 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/MORE_GYD_USDC_injector.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726844220121, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cC2239327C5EDb3A432268e5831000000000000000000000000abC414cEE2F6E8Ee262d6dc106c86A3f627f84D2" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/MORE_GYD_USDC_injector.report.txt b/MaxiOps/add_rewards/arbitrum/MORE_GYD_USDC_injector.report.txt new file mode 100644 index 000000000..1b2b81a09 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/MORE_GYD_USDC_injector.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/MORE_GYD_USDC_injector.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ec8821f133fd6be0464c6776af3837b012906b0c` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/44cbbc0d-9277-4253-972c-33a71dc77c82) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc (None) | add_reward(address,address) | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | N/A | 0 | +| | | | | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2: maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/REVISED_set_reward_distributors_ARB_Gyro_RehypePools.json b/MaxiOps/add_rewards/arbitrum/REVISED_set_reward_distributors_ARB_Gyro_RehypePools.json new file mode 100644 index 000000000..92d993439 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/REVISED_set_reward_distributors_ARB_Gyro_RehypePools.json @@ -0,0 +1,243 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726068297206, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "0x3be9be2b0558cb610140de0e2d58354559afeccdfcf56bd09ae54b039338f904" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { + "name": "reward_token", + "type": "address", + "internalType": "address" + } + ], + "name": "setDistributorToOwner", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF", + "reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { + "name": "reward_token", + "type": "address", + "internalType": "address" + } + ], + "name": "setDistributorToOwner", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd9BE61a0a58A301B078033757bAC9474C276362E", + "reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { + "name": "reward_token", + "type": "address", + "internalType": "address" + } + ], + "name": "setDistributorToOwner", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x052597B6633814a0a6eA9020eE46E25Aa6936E49", + "reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { + "name": "reward_token", + "type": "address", + "internalType": "address" + } + ], + "name": "setDistributorToOwner", + "payable": false + }, + "contractInputsValues": { + "gauge": "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09", + "reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { + "name": "reward_token", + "type": "address", + "internalType": "address" + } + ], + "name": "setDistributorToOwner", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b", + "reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "gauge", "type": "address", "internalType": "address" }, + { + "name": "reward_token", + "type": "address", + "internalType": "address" + } + ], + "name": "setDistributorToOwner", + "payable": false + }, + "contractInputsValues": { + "gauge": "0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591", + "reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548" + } + }, + { + "to": "0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_distributor": "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88" + } + }, + { + "to": "0xd9BE61a0a58A301B078033757bAC9474C276362E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_distributor": "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88" + } + }, + { + "to": "0x052597B6633814a0a6eA9020eE46E25Aa6936E49", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_distributor": "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88" + } + }, + { + "to": "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_distributor": "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88" + } + }, + { + "to": "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_distributor": "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88" + } + }, + { + "to": "0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_distributor": "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/REVISED_set_reward_distributors_ARB_Gyro_RehypePools.report.txt b/MaxiOps/add_rewards/arbitrum/REVISED_set_reward_distributors_ARB_Gyro_RehypePools.report.txt new file mode 100644 index 000000000..ef266c124 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/REVISED_set_reward_distributors_ARB_Gyro_RehypePools.report.txt @@ -0,0 +1,108 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/REVISED_set_reward_distributors_ARB_Gyro_RehypePools.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `446316ecff67f44114bd032bfb2114105a66443f` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/72628018-f211-49e8-b81f-6e11a5d89590) + +``` ++------------------------+--------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------------+--------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------+------------+----------+ +| setDistributorToOwner | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "gauge": [ | | | +| | | | "0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF (gauges/ECLP-sFRAX-aFRAX-gauge-b76e)" | | | +| | | | ], | | | +| | | | "reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ] | | | +| | | | } | | | +| setDistributorToOwner | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "gauge": [ | | | +| | | | "0xd9BE61a0a58A301B078033757bAC9474C276362E (gauges/ECLP-wUSDM-USDC-rh-gauge-d9be)" | | | +| | | | ], | | | +| | | | "reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ] | | | +| | | | } | | | +| setDistributorToOwner | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "gauge": [ | | | +| | | | "0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525)" | | | +| | | | ], | | | +| | | | "reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ] | | | +| | | | } | | | +| setDistributorToOwner | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "gauge": [ | | | +| | | | "0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964)" | | | +| | | | ], | | | +| | | | "reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ] | | | +| | | | } | | | +| setDistributorToOwner | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "gauge": [ | | | +| | | | "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52)" | | | +| | | | ], | | | +| | | | "reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ] | | | +| | | | } | | | +| setDistributorToOwner | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "gauge": [ | | | +| | | | "0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591 (gauges/ECLP-GHO-GYD-rh-gauge-2ffa)" | | | +| | | | ], | | | +| | | | "reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0xB76ed1927F54C76DCdfC311f30dF2277dEAb93eF (gauges/ECLP-sFRAX-aFRAX-gauge-b76e) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88 (gyro/Gyro_ARB_Aave_safe)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0xd9BE61a0a58A301B078033757bAC9474C276362E (gauges/ECLP-wUSDM-USDC-rh-gauge-d9be) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88 (gyro/Gyro_ARB_Aave_safe)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0x052597B6633814a0a6eA9020eE46E25Aa6936E49 (gauges/ECLP-GYD-AUSDC-gauge-0525) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88 (gyro/Gyro_ARB_Aave_safe)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0xd9647eb5D6457bd7Adb39B335ab89eC3a1Ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88 (gyro/Gyro_ARB_Aave_safe)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88 (gyro/Gyro_ARB_Aave_safe)" | | | +| | | | ] | | | +| | | | } | | | +| set_reward_distributor | 0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591 (gauges/ECLP-GHO-GYD-rh-gauge-2ffa) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88 (gyro/Gyro_ARB_Aave_safe)" | | | +| | | | ] | | | +| | | | } | | | ++------------------------+--------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/SWISE_StakeWise_DistributorMSIG.json b/MaxiOps/add_rewards/arbitrum/SWISE_StakeWise_DistributorMSIG.json new file mode 100644 index 000000000..721cce9af --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/SWISE_StakeWise_DistributorMSIG.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726061056414, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5DA32F4724373c91Fdc657E0AD7B1836c70A4E52", + "data": "0xe8de0d4d0000000000000000000000004026AFfABd9032bCC87Fa05C02F088905f3dC09B0000000000000000000000002685C0e39EEAAd383fB71ec3F493991d532A87ae" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/SWISE_StakeWise_DistributorMSIG.report.txt b/MaxiOps/add_rewards/arbitrum/SWISE_StakeWise_DistributorMSIG.report.txt new file mode 100644 index 000000000..c6249f08b --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/SWISE_StakeWise_DistributorMSIG.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/SWISE_StakeWise_DistributorMSIG.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `8f2a8511febb6bd615f63f39360b24c791a53456` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9ef4c614-d344-4ae8-8f0e-02d284aaad1d) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x5DA32F4724373c91Fdc657E0AD7B1836c70A4E52 (gauges/osETH/wETH-gauge-5da3) | add_reward(address,address) | 0x4026AFfABd9032bCC87Fa05C02F088905f3dC09B: SWISE | N/A | 0 | +| | | | | 0x2685C0e39EEAAd383fB71ec3F493991d532A87ae: stakewise/SWISE_Distributor_Safe | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/USDC-Injector-MORE-GYD.json b/MaxiOps/add_rewards/arbitrum/USDC-Injector-MORE-GYD.json new file mode 100644 index 000000000..41f2dbf94 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/USDC-Injector-MORE-GYD.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1731375102035, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcE1Ca8DDECCb3a2cD7fb1244C90f91Ee6A926f47", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cC2239327C5EDb3A432268e5831000000000000000000000000abC414cEE2F6E8Ee262d6dc106c86A3f627f84D2" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/USDC-Injector-MORE-GYD.report.txt b/MaxiOps/add_rewards/arbitrum/USDC-Injector-MORE-GYD.report.txt new file mode 100644 index 000000000..4a48277e6 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/USDC-Injector-MORE-GYD.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/USDC-Injector-MORE-GYD.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `da7adf3e5c5debdb97fc142a34037c6cf7a51598` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1c795e60-609e-4bde-b2ae-40edf63b85aa) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xcE1Ca8DDECCb3a2cD7fb1244C90f91Ee6A926f47 (None) | add_reward(address,address) | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | N/A | 0 | +| | | | | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2: maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/USDC-Injector-rETH-wETH.json b/MaxiOps/add_rewards/arbitrum/USDC-Injector-rETH-wETH.json new file mode 100644 index 000000000..ca25da161 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/USDC-Injector-rETH-wETH.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1730319276159, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8ba2d53f34159c5c5e7add60b56c7de3bbc1da68", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cC2239327C5EDb3A432268e5831000000000000000000000000abC414cEE2F6E8Ee262d6dc106c86A3f627f84D2" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/USDC-Injector-rETH-wETH.report.txt b/MaxiOps/add_rewards/arbitrum/USDC-Injector-rETH-wETH.report.txt new file mode 100644 index 000000000..d73d10c36 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/USDC-Injector-rETH-wETH.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/USDC-Injector-rETH-wETH.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `49038dd35f08299cf0734f7f44e58465cc9f5843` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b94d068a-89c6-47ed-a2ba-d87939dcb9e2) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x8ba2d53f34159c5c5e7add60b56c7de3bbc1da68 (gauges/rETH/wETH BPT-gauge-8ba2) | add_reward(address,address) | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | N/A | 0 | +| | | | | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2: maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/USDC_Injector_Cow_Pendle_pool.json b/MaxiOps/add_rewards/arbitrum/USDC_Injector_Cow_Pendle_pool.json new file mode 100644 index 000000000..abd6da75b --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/USDC_Injector_Cow_Pendle_pool.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726592407739, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xa1231e274c2e4E817923c0A0eDC9c5E0d4CB8B80", + "data": "0xe8de0d4d000000000000000000000000af88d065e77c8cC2239327C5EDb3A432268e5831000000000000000000000000abC414cEE2F6E8Ee262d6dc106c86A3f627f84D2" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/USDC_Injector_Cow_Pendle_pool.report.txt b/MaxiOps/add_rewards/arbitrum/USDC_Injector_Cow_Pendle_pool.report.txt new file mode 100644 index 000000000..888ef2ddd --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/USDC_Injector_Cow_Pendle_pool.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/USDC_Injector_Cow_Pendle_pool.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `def45e6898f77108cbb77f4fa9db6858b9524811` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/04bce3e8-9ee0-46cf-96de-025980acb97e) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xa1231e274c2e4E817923c0A0eDC9c5E0d4CB8B80 (None) | add_reward(address,address) | 0xaf88d065e77c8cC2239327C5EDb3A432268e5831: USDC | N/A | 0 | +| | | | | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2: maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/WXM_WXM-Multisig.json b/MaxiOps/add_rewards/arbitrum/WXM_WXM-Multisig.json new file mode 100644 index 000000000..2422b120d --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/WXM_WXM-Multisig.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1718715901585, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x86586dd2193711598bb4ad3a42f743d49378eb6f6ea0717c4723b85669fc2fd0" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x877dB9c88590F48D86fC89fcaf515E6e584858f5", + "data": "0xe8de0d4d000000000000000000000000b6093b61544572ab42a0e43af08abafd41bf25a6000000000000000000000000dbde6501832b8854ff6a746030585830fbdfe9cc" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/WXM_WXM-Multisig.report.txt b/MaxiOps/add_rewards/arbitrum/WXM_WXM-Multisig.report.txt new file mode 100644 index 000000000..d48b0e00d --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/WXM_WXM-Multisig.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/WXM_WXM-Multisig.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `2430a20d9d8529ab1277d0fc5f26adf2d74cb256` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7792f75a-8816-4628-b091-d72c62c36090) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x877dB9c88590F48D86fC89fcaf515E6e584858f5 (N/A)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000b6093b61544572ab42a0e43af08abafd41bf25a6000000000000000000000000dbde6501832b8854ff6a746030585830fbdfe9cc" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/add_ARB_Gyro_Rehype_RewardPools.json b/MaxiOps/add_rewards/arbitrum/add_ARB_Gyro_Rehype_RewardPools.json new file mode 100644 index 000000000..678210907 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/add_ARB_Gyro_Rehype_RewardPools.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1725985346362, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcfab2efeF3aFfdd158568DC896115Eac26B3C498", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000DB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xe39fEEB09C4dDE420eAAADd066F949ab84c94bb8", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000DB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591", + "data": "0xe8de0d4d000000000000000000000000912CE59144191C1204E64559FE8253a0e49E6548000000000000000000000000F23d8342881eDECcED51EA694AC21C2B68440929" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/add_ARB_Gyro_Rehype_RewardPools.report.txt b/MaxiOps/add_rewards/arbitrum/add_ARB_Gyro_Rehype_RewardPools.report.txt new file mode 100644 index 000000000..c629980eb --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/add_ARB_Gyro_Rehype_RewardPools.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/add_ARB_Gyro_Rehype_RewardPools.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ccfeeca62e8ba598a10e1b942b301e1615abfa3e` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/efb3ecec-a3f6-4ace-b86a-79a1bbdefdb9) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xcfab2efeF3aFfdd158568DC896115Eac26B3C498 (gauges/ECLP-GHO-USDe-rh-gauge-cfab) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 0 | +| | | | | 0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88: gyro/Gyro_ARB_Aave_safe | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xe39fEEB09C4dDE420eAAADd066F949ab84c94bb8 (gauges/2CLP-AUSDC-USDC-gauge-e39f) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 1 | +| | | | | 0xDB9F47800bA9CDd9f99815Bc02dD0Aa47AbffE88: gyro/Gyro_ARB_Aave_safe | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x2ffa44fDd19B8d3d2b03842E34F1b4c7E9217591 (gauges/ECLP-GHO-GYD-rh-gauge-2ffa) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 2 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/add_stip_rewards.json b/MaxiOps/add_rewards/arbitrum/add_stip_rewards.json new file mode 100644 index 000000000..a986a8ef8 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/add_stip_rewards.json @@ -0,0 +1,140 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1714157066535, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdB66fFFf713B1FA758E348e69E2f2e24595111cF", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x59907f88C360D576Aa38dba84F26578367F96b6C", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x40e86216712cB9871B9C698EA3AFB22f88c00E6e", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + }, + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000f23d8342881edecced51ea694ac21c2b68440929" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/add_stip_rewards.report.txt b/MaxiOps/add_rewards/arbitrum/add_stip_rewards.report.txt new file mode 100644 index 000000000..225bff837 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/add_stip_rewards.report.txt @@ -0,0 +1,21 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/add_stip_rewards.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `5329cbca1fc05c07604be36bcf261ceb5d64dbe9` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/9fe9a541-b987-4269-a6cd-ba7a680eaa93) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x2b52a321Fc2ab77e9fC8488D792BB3CaEA966c0b (gauges/ECLP-AUSDC-AUSDT-gauge-2b52) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 0 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xdB66fFFf713B1FA758E348e69E2f2e24595111cF (gauges/ECLP-weETH-wstETH-gauge-db66) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 1 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x59907f88C360D576Aa38dba84F26578367F96b6C (gauges/rsETH/wETH-gauge-5990) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 2 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x40e86216712cB9871B9C698EA3AFB22f88c00E6e (gauges/ECLP-WOETH-WETH-gauge-40e8) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 3 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x7C4A6B0c16cA99e65822Cc531403cE2f8A20A912 (gauges/ezETH/wstETH-gauge-7c4a) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 4 | +| | | | | 0xF23d8342881eDECcED51EA694AC21C2B68440929: maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------+-----------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/set_reward_distributor_fromGyrotoInjectorforGHO.json b/MaxiOps/add_rewards/arbitrum/set_reward_distributor_fromGyrotoInjectorforGHO.json new file mode 100644 index 000000000..23275b9bf --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/set_reward_distributor_fromGyrotoInjectorforGHO.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1727967381832, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xdd2055aa3434802365014323e344792a0058403e2a4be3274badd0e88b788022" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcfab2efeF3aFfdd158568DC896115Eac26B3C498", + "data": "0x058a3a24000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000e23eb92f0c76bf47f77f80d144e30f31b98450a9" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/set_reward_distributor_fromGyrotoInjectorforGHO.report.txt b/MaxiOps/add_rewards/arbitrum/set_reward_distributor_fromGyrotoInjectorforGHO.report.txt new file mode 100644 index 000000000..51ec92825 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/set_reward_distributor_fromGyrotoInjectorforGHO.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/set_reward_distributor_fromGyrotoInjectorforGHO.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3ccffd9261f46cf654938c6ef7df725ed33189b8` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d2cdf93d-45ef-4b27-a6e0-dd005f257aba) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xcfab2efeF3aFfdd158568DC896115Eac26B3C498 (gauges/ECLP-GHO-USDe-rh-gauge-cfab) | set_reward_distributor(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 0 | +| | | | | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9: maxiKeepers/gaugeRewardsInjectors/arb_aave_injector | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+-------------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/arbitrum/wUSDL-GHO_GHO_PaladinQuestboardv2.json b/MaxiOps/add_rewards/arbitrum/wUSDL-GHO_GHO_PaladinQuestboardv2.json new file mode 100644 index 000000000..e5beb9c71 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/wUSDL-GHO_GHO_PaladinQuestboardv2.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1732269521115, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcC014e60585259dA1C8501b00789521659e7a4fC", + "data": "0xe8de0d4d0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33000000000000000000000000997523eF97E0b0a5625Ed2C197e61250acF4e5F1" + } + } + ] +} diff --git a/MaxiOps/add_rewards/arbitrum/wUSDL-GHO_GHO_PaladinQuestboardv2.report.txt b/MaxiOps/add_rewards/arbitrum/wUSDL-GHO_GHO_PaladinQuestboardv2.report.txt new file mode 100644 index 000000000..4802c7eb7 --- /dev/null +++ b/MaxiOps/add_rewards/arbitrum/wUSDL-GHO_GHO_PaladinQuestboardv2.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/arbitrum/wUSDL-GHO_GHO_PaladinQuestboardv2.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ef40dc8976f73131466979245d655304aa034065` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fb0d322a-d4a8-4151-a2d0-913a4d03410e) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xcC014e60585259dA1C8501b00789521659e7a4fC (gauges/wUSDL/GHO-gauge-cc01) | add_reward(address,address) | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33: GHO | N/A | 0 | +| | | | | 0x997523eF97E0b0a5625Ed2C197e61250acF4e5F1: paladin/QuestBoardV2Sidechain | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/avalanche/QI-Gyro-Safe-sAVAX-wAVAX-rh.json b/MaxiOps/add_rewards/avalanche/QI-Gyro-Safe-sAVAX-wAVAX-rh.json new file mode 100644 index 000000000..7857c118d --- /dev/null +++ b/MaxiOps/add_rewards/avalanche/QI-Gyro-Safe-sAVAX-wAVAX-rh.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1729514877843, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x4E7bBd911cf1EFa442BC1b2e9Ea01ffE785412EC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xB4EFa48F32ba11dEeaaB9fcc0C2f29e91381705D", + "data": "0xe8de0d4d0000000000000000000000008729438EB15e2C8B576fCc6AeCdA6A148776C0F5000000000000000000000000eE17b1A400b009b7d05C659a5F17d77E45dfc161" + } + } + ] +} diff --git a/MaxiOps/add_rewards/avalanche/QI-Gyro-Safe-sAVAX-wAVAX-rh.report.txt b/MaxiOps/add_rewards/avalanche/QI-Gyro-Safe-sAVAX-wAVAX-rh.report.txt new file mode 100644 index 000000000..3ef5199a0 --- /dev/null +++ b/MaxiOps/add_rewards/avalanche/QI-Gyro-Safe-sAVAX-wAVAX-rh.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/avalanche/QI-Gyro-Safe-sAVAX-wAVAX-rh.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `1196b45759503f1fc099298f87d4bf0c03cac592` +CHAIN(S): `avalanche` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/c49df07b-04d1-4106-b649-292f9165d860) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +| performAction | 0x4E7bBd911cf1EFa442BC1b2e9Ea01ffE785412EC (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xB4EFa48F32ba11dEeaaB9fcc0C2f29e91381705D (gauges/ECLP-sAVAX-WAVAX-rh-gauge-b4ef) | add_reward(address,address) | 0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5: QI | N/A | 0 | +| | | | | 0xeE17b1A400b009b7d05C659a5F17d77E45dfc161: Gyroscope/Qi-Rewards-Multisig | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/avalanche/wAVAX-Injectorv2-test-AVAX-Tripool.json b/MaxiOps/add_rewards/avalanche/wAVAX-Injectorv2-test-AVAX-Tripool.json new file mode 100644 index 000000000..20420b14d --- /dev/null +++ b/MaxiOps/add_rewards/avalanche/wAVAX-Injectorv2-test-AVAX-Tripool.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1729527960265, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x4E7bBd911cf1EFa442BC1b2e9Ea01ffE785412EC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6A8eA33b5EEF4A8ef0Fa92383E155801997DB801", + "data": "0xe8de0d4d000000000000000000000000B31f66AA3C1e785363F0875A1B74E27b85FD66c7000000000000000000000000bBa6D6319EBF66ef3bd375671df54b397A8bfB08" + } + } + ] +} diff --git a/MaxiOps/add_rewards/avalanche/wAVAX-Injectorv2-test-AVAX-Tripool.report.txt b/MaxiOps/add_rewards/avalanche/wAVAX-Injectorv2-test-AVAX-Tripool.report.txt new file mode 100644 index 000000000..bb4acf344 --- /dev/null +++ b/MaxiOps/add_rewards/avalanche/wAVAX-Injectorv2-test-AVAX-Tripool.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/avalanche/wAVAX-Injectorv2-test-AVAX-Tripool.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `a404dbdb908f64bf0d9a209329ab71b1587dd337` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/adbb3633-0b23-4d5a-95e7-7238396f793f) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------+-----+----------+ +| performAction | 0x4E7bBd911cf1EFa442BC1b2e9Ea01ffE785412EC (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x6A8eA33b5EEF4A8ef0Fa92383E155801997DB801 (gauges/sAVAX/ggAVAX/yyAVAX-gauge-6a8e) | add_reward(address,address) | 0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7: WAVAX | N/A | 0 | +| | | | | 0xbBa6D6319EBF66ef3bd375671df54b397A8bfB08: None | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+-----------------------------+---------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/base/USDC-Injector-rETH-wETH.json b/MaxiOps/add_rewards/base/USDC-Injector-rETH-wETH.json new file mode 100644 index 000000000..892530f58 --- /dev/null +++ b/MaxiOps/add_rewards/base/USDC-Injector-rETH-wETH.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1730319422257, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x8D118063B521e0CB9947A934BE90f7e32d02b158", + "data": "0xe8de0d4d000000000000000000000000833589fCD6eDb6E08f4c7C32D4f71b54bdA02913000000000000000000000000A6E7840Fc8193cFeBDdf177fa410038E5DD08f7A" + } + } + ] +} diff --git a/MaxiOps/add_rewards/base/USDC-Injector-rETH-wETH.report.txt b/MaxiOps/add_rewards/base/USDC-Injector-rETH-wETH.report.txt new file mode 100644 index 000000000..eec390c3f --- /dev/null +++ b/MaxiOps/add_rewards/base/USDC-Injector-rETH-wETH.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/base/USDC-Injector-rETH-wETH.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `49038dd35f08299cf0734f7f44e58465cc9f5843` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/96491711-cf3b-4f6e-925e-847cdc6bd7ff) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x8D118063B521e0CB9947A934BE90f7e32d02b158 (gauges/rETH-WETH-BPT-gauge-8d11) | add_reward(address,address) | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: tokens/USDC | N/A | 0 | +| | | | | 0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A: maxiKeepers/gaugeRewardsInjectors/usdc | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/base/USDC_Injector-MORE-USDC.json b/MaxiOps/add_rewards/base/USDC_Injector-MORE-USDC.json new file mode 100644 index 000000000..832cf9c1e --- /dev/null +++ b/MaxiOps/add_rewards/base/USDC_Injector-MORE-USDC.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1729021545673, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x04eb463335845e8b8d46d410b344fd2187bbf87c", + "data": "0xe8de0d4d000000000000000000000000833589fCD6eDb6E08f4c7C32D4f71b54bdA02913000000000000000000000000A6E7840Fc8193cFeBDdf177fa410038E5DD08f7A" + } + } + ] +} diff --git a/MaxiOps/add_rewards/base/USDC_Injector-MORE-USDC.report.txt b/MaxiOps/add_rewards/base/USDC_Injector-MORE-USDC.report.txt new file mode 100644 index 000000000..963cc0ffd --- /dev/null +++ b/MaxiOps/add_rewards/base/USDC_Injector-MORE-USDC.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/base/USDC_Injector-MORE-USDC.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `b342313e45c8c72e80c9e8b69e25882cd15de221` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6e86b543-07aa-495a-8b4b-f451a265645f) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x04eb463335845e8b8d46d410b344fd2187bbf87c (None) | add_reward(address,address) | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: tokens/USDC | N/A | 0 | +| | | | | 0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A: maxiKeepers/gaugeRewardsInjectors/usdc | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/base/add-reward-USDC-MORE-USDC.json b/MaxiOps/add_rewards/base/add-reward-USDC-MORE-USDC.json new file mode 100644 index 000000000..4ed7b62f4 --- /dev/null +++ b/MaxiOps/add_rewards/base/add-reward-USDC-MORE-USDC.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1730491831704, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x60ED9E5DA6437A6e19B7815e013e3426161e8044", + "data": "0xe8de0d4d000000000000000000000000833589fCD6eDb6E08f4c7C32D4f71b54bdA02913000000000000000000000000A6E7840Fc8193cFeBDdf177fa410038E5DD08f7A" + } + } + ] +} diff --git a/MaxiOps/add_rewards/base/add-reward-USDC-MORE-USDC.report.txt b/MaxiOps/add_rewards/base/add-reward-USDC-MORE-USDC.report.txt new file mode 100644 index 000000000..7e0782179 --- /dev/null +++ b/MaxiOps/add_rewards/base/add-reward-USDC-MORE-USDC.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/base/add-reward-USDC-MORE-USDC.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `0d34dbd77eebca009fa9b6e83fcac6de82e1f67d` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/909a3eb5-d47c-4d65-8f3e-2426304f25af) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x60ED9E5DA6437A6e19B7815e013e3426161e8044 (None) | add_reward(address,address) | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: tokens/USDC | N/A | 0 | +| | | | | 0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A: maxiKeepers/gaugeRewardsInjectors/usdc | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/ethereum/add-DINERO-USDC-BAL-to-pxETH-gtETH.json b/MaxiOps/add_rewards/ethereum/add-DINERO-USDC-BAL-to-pxETH-gtETH.json new file mode 100644 index 000000000..ef2f414ec --- /dev/null +++ b/MaxiOps/add_rewards/ethereum/add-DINERO-USDC-BAL-to-pxETH-gtETH.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734364146801, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc87BADE18288E5b292Fc791700b889Fe35165E44", + "data": "0xe8de0d4d0000000000000000000000006DF0E641FC9847c0c6Fde39bE6253045440c14d30000000000000000000000007f6494D4fBEA1c06daC2250A3FCa81003bF8D20C" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc87BADE18288E5b292Fc791700b889Fe35165E44", + "data": "0xe8de0d4d000000000000000000000000A0b86991c6218b36c1d19D4a2e9Eb0cE3606eB4800000000000000000000000080D737BF3973D92a1B5FC4b166F89cb9e7445632" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc87BADE18288E5b292Fc791700b889Fe35165E44", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + } + ] +} diff --git a/MaxiOps/add_rewards/ethereum/add-DINERO-USDC-BAL-to-pxETH-gtETH.report.txt b/MaxiOps/add_rewards/ethereum/add-DINERO-USDC-BAL-to-pxETH-gtETH.report.txt new file mode 100644 index 000000000..e20b865f1 --- /dev/null +++ b/MaxiOps/add_rewards/ethereum/add-DINERO-USDC-BAL-to-pxETH-gtETH.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/add_rewards/ethereum/add-DINERO-USDC-BAL-to-pxETH-gtETH.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `d280613bd751f50e1edf135ff172c36d0ca2bae9` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/be2feb72-a802-4c36-8097-aeeab2b282af) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc87BADE18288E5b292Fc791700b889Fe35165E44 (None) | add_reward(address,address) | 0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3: DINERO | N/A | 0 | +| | | | | 0x7f6494D4fBEA1c06daC2250A3FCa81003bF8D20C: hidden_hand2/ops_msig | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc87BADE18288E5b292Fc791700b889Fe35165E44 (None) | add_reward(address,address) | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: tokens/USDC | N/A | 1 | +| | | | | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632: maxiKeepers/gaugeRewardsInjectors/usdc | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xc87BADE18288E5b292Fc791700b889Fe35165E44 (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 2 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/ethereum/add-NET-token-to-gauge.json b/MaxiOps/add_rewards/ethereum/add-NET-token-to-gauge.json new file mode 100644 index 000000000..a9f7871da --- /dev/null +++ b/MaxiOps/add_rewards/ethereum/add-NET-token-to-gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733148563891, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x76a6d2A59D3524cFA6775465341a19ca0d5a8657", + "data": "0xe8de0d4d0000000000000000000000006e6b7adfc7db9feeb8896418ac3422966f65d0a50000000000000000000000009be5ce14d1fd02517682aec14c7162328e9e386e" + } + } + ] +} diff --git a/MaxiOps/add_rewards/ethereum/add-NET-token-to-gauge.report.txt b/MaxiOps/add_rewards/ethereum/add-NET-token-to-gauge.report.txt new file mode 100644 index 000000000..87e42eb0f --- /dev/null +++ b/MaxiOps/add_rewards/ethereum/add-NET-token-to-gauge.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/ethereum/add-NET-token-to-gauge.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `f7c8f2fdc5aa39f390e899b6548beb99368c275e` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fda100ed-c036-4d8e-a413-efa28e55d204) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x76a6d2A59D3524cFA6775465341a19ca0d5a8657 (None) | add_reward(address,address) | 0x6e6B7ADfC7Db9fEeB8896418aC3422966f65D0A5: NET | N/A | 0 | +| | | | | 0x9BE5CE14d1FD02517682aeC14c7162328E9e386e: maxiKeepers/gaugeRewardsInjectors/net | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/ethereum/increase-NET-launch-rewards.json b/MaxiOps/add_rewards/ethereum/increase-NET-launch-rewards.json new file mode 100644 index 000000000..8590aa968 --- /dev/null +++ b/MaxiOps/add_rewards/ethereum/increase-NET-launch-rewards.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733225624431, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x8539fdda011d" + }, + "transactions": [ + { + "to": "0x9BE5CE14d1FD02517682aeC14c7162328E9e386e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x76a6d2A59D3524cFA6775465341a19ca0d5a8657]", + "amountsPerPeriod": "[65500000000000000000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/add_rewards/ethereum/increase-NET-launch-rewards.report.txt b/MaxiOps/add_rewards/ethereum/increase-NET-launch-rewards.report.txt new file mode 100644 index 000000000..a0db5add8 --- /dev/null +++ b/MaxiOps/add_rewards/ethereum/increase-NET-launch-rewards.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/add_rewards/ethereum/increase-NET-launch-rewards.json` +MULTISIG: `multisigs/maxi_omni (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `e80681e379de1cdb0b7dc97b861cc8aec3a8cb0e` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/efde05d8-60ee-415e-bafc-a6bf1f47dc98) + +``` ++------------------+-----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0x9BE5CE14d1FD02517682aeC14c7162328E9e386e(maxiKeepers/gaugeRewardsInjectors/net) | NET | [ | [ | [ | raw: 65500000000000000000000/1e18 = 65500.0 | 0 | +| | | | "0x76a6d2A59D3524cFA6775465341a19ca0d5a8657 (Balancer NETETH Gauge Deposit)" | "65500000000000000000000/1e18 = 65500.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/add_rewards/fraxtal/sFRAX-Pairs-FXS-from-AMO.json b/MaxiOps/add_rewards/fraxtal/sFRAX-Pairs-FXS-from-AMO.json new file mode 100644 index 000000000..9a53179b5 --- /dev/null +++ b/MaxiOps/add_rewards/fraxtal/sFRAX-Pairs-FXS-from-AMO.json @@ -0,0 +1,66 @@ +{ + "version": "1.0", + "chainId": "252", + "createdAt": 1725321606400, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x0a62da566b31a69f5ef969f58058bc1916003ce57b6b89ce0cb12fb39c68e534" + }, + "transactions": [ + { + "to": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x34E040bC0342EbBfBC7a6306EB1B8E6579185c94", + "data": "0xe8de0d4d000000000000000000000000fc00000000000000000000000000000000000002000000000000000000000000e9b3f9cd8851216fbb828da590cca8ce7f03e863" + } + }, + { + "to": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x275e8514b83479f526673327B279753aBC666a05", + "data": "0xe8de0d4d000000000000000000000000fc00000000000000000000000000000000000002000000000000000000000000e9b3f9cd8851216fbb828da590cca8ce7f03e863" + } + }, + { + "to": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x71c365fB739faFdba44B1564558849216de69958", + "data": "0xe8de0d4d000000000000000000000000fc00000000000000000000000000000000000002000000000000000000000000e9b3f9cd8851216fbb828da590cca8ce7f03e863" + } + } + ] +} diff --git a/MaxiOps/add_rewards/fraxtal/sFRAX-Pairs-FXS-from-AMO.report.txt b/MaxiOps/add_rewards/fraxtal/sFRAX-Pairs-FXS-from-AMO.report.txt new file mode 100644 index 000000000..b9b29df29 --- /dev/null +++ b/MaxiOps/add_rewards/fraxtal/sFRAX-Pairs-FXS-from-AMO.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/add_rewards/fraxtal/sFRAX-Pairs-FXS-from-AMO.json` +MULTISIG: `multisigs/lm (fraxtal:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `82e517fcfe6e68a401762b07bf2b9c77d47f8114` +CHAIN(S): `fraxtal` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d88ca73b-0965-485e-a297-8369b3340064) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +| performAction | 0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x34E040bC0342EbBfBC7a6306EB1B8E6579185c94 (gauges/sFRAX/sDAI-gauge-34e0) | add_reward(address,address) | 0xFc00000000000000000000000000000000000002: FXS | N/A | 0 | +| | | | | 0xe9b3f9cd8851216fBb828da590CCA8CE7F03E863: None | | | +| performAction | 0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x275e8514b83479f526673327B279753aBC666a05 (gauges/sFRAX/sDAI/sUSDe-gauge-275e) | add_reward(address,address) | 0xFc00000000000000000000000000000000000002: FXS | N/A | 1 | +| | | | | 0xe9b3f9cd8851216fBb828da590CCA8CE7F03E863: None | | | +| performAction | 0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x71c365fB739faFdba44B1564558849216de69958 (gauges/sFRAX/sfrxETH-gauge-71c3) | add_reward(address,address) | 0xFc00000000000000000000000000000000000002: FXS | N/A | 2 | +| | | | | 0xe9b3f9cd8851216fBb828da590CCA8CE7F03E863: None | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-GNO-osGNO.json b/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-GNO-osGNO.json new file mode 100644 index 000000000..c484512a2 --- /dev/null +++ b/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-GNO-osGNO.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1727304005767, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0x7696aef835696a2d23c8a95cca6e397cc416b127bcb358617dd2e6c907b25ef9" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1350724a020B27c4f0E369bB00ae3127022d5465", + "data": "0xe8de0d4d000000000000000000000000fda94f056346d2320d4b5e468d6ad099b22777460000000000000000000000005d1acdd0867d6F1FBe11ad8F1f48C87f19C0801E" + } + } + ] +} diff --git a/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-GNO-osGNO.report.txt b/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-GNO-osGNO.report.txt new file mode 100644 index 000000000..deb6247ee --- /dev/null +++ b/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-GNO-osGNO.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-GNO-osGNO.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `5ecda13a57e2849abb5ae12ffbc2237ba9884187` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e8c1a3ba-88ff-4d9e-8f9c-7be923d66bb5) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x1350724a020B27c4f0E369bB00ae3127022d5465 (gauges/osGNO/GNO-BPT-gauge-1350) | add_reward(address,address) | 0xfdA94F056346d2320d4B5E468D6Ad099b2277746: SWISE | N/A | 0 | +| | | | | 0x5d1acdd0867d6F1FBe11ad8F1f48C87f19C0801E: stakewise/SWISE_Distributor_SAFE | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-SWISE-osGNO.json b/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-SWISE-osGNO.json new file mode 100644 index 000000000..dbf0a3453 --- /dev/null +++ b/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-SWISE-osGNO.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1728473737625, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0x43a69bc8f04d07586fa8890c031f66263a003e948dbe278d35ea8e8748ca35af" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x375c3e436b82bbc20d12f248c0ac4e55a11456e0", + "data": "0xe8de0d4d000000000000000000000000fdA94F056346d2320d4B5E468D6Ad099b22777460000000000000000000000005d1acdd0867d6F1FBe11ad8F1f48C87f19C0801E" + } + } + ] +} diff --git a/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-SWISE-osGNO.report.txt b/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-SWISE-osGNO.report.txt new file mode 100644 index 000000000..e4510bc9e --- /dev/null +++ b/MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-SWISE-osGNO.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/gnosis/SWISE_StakewiseEOA-SWISE-osGNO.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `60f929de94e8a662e56d5829fa5aa251f303f4f1` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/dba6ab7f-7b8b-4932-8da4-60db7960a8e8) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x375c3e436b82bbc20d12f248c0ac4e55a11456e0 (None) | add_reward(address,address) | 0xfdA94F056346d2320d4B5E468D6Ad099b2277746: SWISE | N/A | 0 | +| | | | | 0x5d1acdd0867d6F1FBe11ad8F1f48C87f19C0801E: stakewise/SWISE_Distributor_SAFE | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/gnosis/v3-Launch-Pools-USDCe.json b/MaxiOps/add_rewards/gnosis/v3-Launch-Pools-USDCe.json new file mode 100644 index 000000000..0d4c16ccb --- /dev/null +++ b/MaxiOps/add_rewards/gnosis/v3-Launch-Pools-USDCe.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1734016116641, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0x57829b6629a6736a0b8a60e484cf5653edbe4f0b8385d08e35df2c4e4d04000d" + }, + "transactions": [ + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xcBD87e4Dad6a99506484E9adEEC8FF84Ce7BD399", + "data": "0xe8de0d4d0000000000000000000000002a22f9c3b484c3629090feed35f17ff8f88f76f00000000000000000000000004aC87aEa2A3A99f34Fec78A6A73Bc495893b2838" + } + }, + { + "to": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xA76ED5da09209D6f2198d8D793005393327b736E", + "data": "0xe8de0d4d0000000000000000000000002a22f9c3b484c3629090feed35f17ff8f88f76f00000000000000000000000004aC87aEa2A3A99f34Fec78A6A73Bc495893b2838" + } + } + ] +} diff --git a/MaxiOps/add_rewards/gnosis/v3-Launch-Pools-USDCe.report.txt b/MaxiOps/add_rewards/gnosis/v3-Launch-Pools-USDCe.report.txt new file mode 100644 index 000000000..35ec19341 --- /dev/null +++ b/MaxiOps/add_rewards/gnosis/v3-Launch-Pools-USDCe.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/add_rewards/gnosis/v3-Launch-Pools-USDCe.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `174cb8823d7b7d12d5c6e22ad8b89be1ac47f4f5` +CHAIN(S): `gnosis` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/b7941152-2cd0-4165-888d-4df447756684) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +| performAction | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xcBD87e4Dad6a99506484E9adEEC8FF84Ce7BD399 (None) | add_reward(address,address) | 0x2a22f9c3b484c3629090FeED35F17Ff8F88f76F0: USDC.e | N/A | 0 | +| | | | | 0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838: maxiKeepers/injectorV2/USDC.e | | | +| performAction | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xA76ED5da09209D6f2198d8D793005393327b736E (None) | add_reward(address,address) | 0x2a22f9c3b484c3629090FeED35F17Ff8F88f76F0: USDC.e | N/A | 1 | +| | | | | 0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838: maxiKeepers/injectorV2/USDC.e | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+---------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/APW-WETH_PaladinQuestv2-add-reward.json b/MaxiOps/add_rewards/mainnet/APW-WETH_PaladinQuestv2-add-reward.json new file mode 100644 index 000000000..4dc041964 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/APW-WETH_PaladinQuestv2-add-reward.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728972814835, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2fa29bbfd19314b3faf170dc7826ef69372203a6", + "data": "0xe8de0d4d0000000000000000000000004104b135dbc9609fc1a9490e61369036497660c8000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/APW-WETH_PaladinQuestv2-add-reward.report.txt b/MaxiOps/add_rewards/mainnet/APW-WETH_PaladinQuestv2-add-reward.report.txt new file mode 100644 index 000000000..f3d21117d --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/APW-WETH_PaladinQuestv2-add-reward.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/APW-WETH_PaladinQuestv2-add-reward.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7fb6438b0fb6f89f0a9f6a1daf4ed91404aaf321` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/db159ea7-bb7c-4283-b8f9-282c0a1accb0) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x2fa29bbfd19314b3faf170dc7826ef69372203a6 (gauges/50APW-50WETH-gauge-2fa2) | add_reward(address,address) | 0x4104b135DBC9609Fc1A9490E61369036497660c8: APW | N/A | 0 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/BAL-CoWAMM-week-2-4.json b/MaxiOps/add_rewards/mainnet/BAL-CoWAMM-week-2-4.json new file mode 100644 index 000000000..539d51d07 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/BAL-CoWAMM-week-2-4.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723583583318, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x4d8918f9ba7cb65b27c571b36c90ad2ef48b5762c8464de5a333923e3b92ddca" + }, + "transactions": [ + { + "to": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "gaugeAddresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amountsPerPeriod", + "type": "uint256[]" + }, + { + "internalType": "uint8[]", + "name": "maxPeriods", + "type": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x826E38b8820791add5f04A4d589EEa38Cf9D973D,0xb79AC08176408162D5fD0Faa51dB5Af32cF5e92e,0x97B30eAB9b02C5A04F7C61874CD010D8D617ea3f,0xF9423B78D784D610A00955E733dBa0bf9bda7B06]", + "amountsPerPeriod": "[2645502646000000000000,1587301587000000000000,2116402116000000000000,2645502646000000000000]", + "maxPeriods": "[3,3,3,3]" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipient", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "amount": "26984126985000000000000" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/BAL-CoWAMM-week-2-4.report.txt b/MaxiOps/add_rewards/mainnet/BAL-CoWAMM-week-2-4.report.txt new file mode 100644 index 000000000..cff95a213 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/BAL-CoWAMM-week-2-4.report.txt @@ -0,0 +1,29 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/BAL-CoWAMM-week-2-4.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `39453f02862cccd4f0521a0ab4e255a1fe42ceab` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/94240ad6-0cbe-4af9-a50a-61fbaa0d0049) +``` ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+---------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+---------------------------------------------+-----+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/gaugeRewardsInjectors/Balancer_BAL:0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE | 26984.126985 (RAW: 26984126985000000000000) | N/A | 1 | ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+---------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/add_rewards/mainnet/BAL-CoWAMM-week-2-4.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `39453f02862cccd4f0521a0ab4e255a1fe42ceab` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6611659f-b8b9-45a9-841a-6d3f8f54cd64) +``` ++------------------+--------------------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+-----------------------------------------------+---------+------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+--------------------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+-----------------------------------------------+---------+------------------------------------------------+----------+ +| setRecipientList | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE(maxiKeepers/gaugeRewardsInjectors/Balancer_BAL) | BAL | [ | [ | [ | raw: 8994708995000000000000/1e18 = 8994.708995 | 0 | +| | | | "0x826E38b8820791add5f04A4d589EEa38Cf9D973D (Balancer BCoW-50MKR-50ETH Gauge Deposit)", | "2645502646000000000000/1e18 = 2645.502646", | 3, | | | +| | | | "0xb79AC08176408162D5fD0Faa51dB5Af32cF5e92e (Balancer BCoW-50ARB-50ETH Gauge Deposit)", | "1587301587000000000000/1e18 = 1587.301587", | 3, | | | +| | | | "0x97B30eAB9b02C5A04F7C61874CD010D8D617ea3f (Balancer BCoW-50AAVE-50ETH Gauge Deposit)", | "2116402116000000000000/1e18 = 2116.402116", | 3, | | | +| | | | "0xF9423B78D784D610A00955E733dBa0bf9bda7B06 (Balancer BCoW-50WETH-50USDC Gauge Deposit)" | "2645502646000000000000/1e18 = 2645.502646" | 3 | | | +| | | | ] | ] | ] | | | ++------------------+--------------------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+-----------------------------------------------+---------+------------------------------------------------+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Launch.json b/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Launch.json new file mode 100644 index 000000000..1074983c0 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Launch.json @@ -0,0 +1,115 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723129713056, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x826E38b8820791add5f04A4d589EEa38Cf9D973D", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xb79AC08176408162D5fD0Faa51dB5Af32cF5e92e", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x97B30eAB9b02C5A04F7C61874CD010D8D617ea3f", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF9423B78D784D610A00955E733dBa0bf9bda7B06", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Launch.report.txt b/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Launch.report.txt new file mode 100644 index 000000000..c3c030f14 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Launch.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/BAL_CowAMM_Launch.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `6d8e3e57ce8f7c41291b8017660832025c879f2c` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/579634a6-c251-43cd-8d3a-5e3e1f889469) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x826E38b8820791add5f04A4d589EEa38Cf9D973D (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 0 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xb79AC08176408162D5fD0Faa51dB5Af32cF5e92e (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 1 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x97B30eAB9b02C5A04F7C61874CD010D8D617ea3f (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 2 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xF9423B78D784D610A00955E733dBa0bf9bda7B06 (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 3 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Test.json b/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Test.json new file mode 100644 index 000000000..7499e1da8 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Test.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723050559602, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x713777343767BF10aF036A78fdb90b387BEb66f2", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000854B004700885A61107B458f11eCC169A019b764" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Test.report.txt b/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Test.report.txt new file mode 100644 index 000000000..3d3837b42 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/BAL_CowAMM_Test.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/BAL_CowAMM_Test.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `04404c1af7fa42972c7b20c13604e6272237e779` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b060a497-33ee-469f-b4ea-d7abe00d567f) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x713777343767BF10aF036A78fdb90b387BEb66f2 (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 0 | +| | | | | 0x854B004700885A61107B458f11eCC169A019b764: EOA/maxi_deployers/zendragon | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/DINERO_HiddenHandMultisig.json b/MaxiOps/add_rewards/mainnet/DINERO_HiddenHandMultisig.json new file mode 100644 index 000000000..615654a08 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/DINERO_HiddenHandMultisig.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1722867864694, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdee29b7b6df3576280bfbbc088ee9ebaa767c0bd", + "data": "0xe8de0d4d0000000000000000000000006DF0E641FC9847c0c6Fde39bE6253045440c14d30000000000000000000000007f6494D4fBEA1c06daC2250A3FCa81003bF8D20C" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/DINERO_HiddenHandMultisig.report.txt b/MaxiOps/add_rewards/mainnet/DINERO_HiddenHandMultisig.report.txt new file mode 100644 index 000000000..ee64a18b2 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/DINERO_HiddenHandMultisig.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/DINERO_HiddenHandMultisig.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `da2a86b86017ee78d9917251c03e2a21fcf6f40e` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/053640a3-0d82-434b-9e27-38fce13436fc) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+-----------------------------+----------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+-----------------------------+----------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xdee29b7b6df3576280bfbbc088ee9ebaa767c0bd (gauges/pxETH/wETH-gauge-dee2) | add_reward(address,address) | 0x6DF0E641FC9847c0c6Fde39bE6253045440c14d3: DINERO | N/A | 0 | +| | | | | 0x7f6494D4fBEA1c06daC2250A3FCa81003bF8D20C: None | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+-----------------------------+----------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/FXS&BAL_Frax_CowAMM.json b/MaxiOps/add_rewards/mainnet/FXS&BAL_Frax_CowAMM.json new file mode 100644 index 000000000..08ab582a6 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/FXS&BAL_Frax_CowAMM.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728347898648, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xde99055d79d8a1785ebe938c748bf60f95faf27faa904db590aef41d977d833f" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x331945d46a804ad8579e14466c52d344536dcad6", + "data": "0xe8de0d4d0000000000000000000000003432b6a60d23ca0dfca7761b7ab56459d9c964d00000000000000000000000006e74053a3798e0fC9a9775F7995316b27f21c4D2" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x331945d46A804ad8579e14466c52d344536DcaD6", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/FXS&BAL_Frax_CowAMM.report.txt b/MaxiOps/add_rewards/mainnet/FXS&BAL_Frax_CowAMM.report.txt new file mode 100644 index 000000000..b8d55275f --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/FXS&BAL_Frax_CowAMM.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/FXS&BAL_Frax_CowAMM.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7d906644564c0760ecf729c8d1bf0031626157f7` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ab3a0cd7-310a-4891-9a90-d49a3448f4e4) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x331945d46a804ad8579e14466c52d344536dcad6 (None) | add_reward(address,address) | 0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0: tokens/FXS | N/A | 0 | +| | | | | 0x6e74053a3798e0fC9a9775F7995316b27f21c4D2: None | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x331945d46A804ad8579e14466c52d344536DcaD6 (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 1 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/GHO-QuestboardV2.1-GHO-USDC-ECLP.json b/MaxiOps/add_rewards/mainnet/GHO-QuestboardV2.1-GHO-USDC-ECLP.json new file mode 100644 index 000000000..882d96d95 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/GHO-QuestboardV2.1-GHO-USDC-ECLP.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1729876763898, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf1ab8c96d51234b3330dbf046517ad0c8051c49a20a8e231f2b7bd171254da16" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xa2F8bd6B95a0cB9094206075504CD0ED1Cc717Be", + "data": "0xe8de0d4d00000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/GHO-QuestboardV2.1-GHO-USDC-ECLP.report.txt b/MaxiOps/add_rewards/mainnet/GHO-QuestboardV2.1-GHO-USDC-ECLP.report.txt new file mode 100644 index 000000000..7ee99b5e5 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/GHO-QuestboardV2.1-GHO-USDC-ECLP.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/GHO-QuestboardV2.1-GHO-USDC-ECLP.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `2c947b9fbe55e183d6be95f01282a56bb4dbd42b` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5ea6dbef-bb92-47e6-980a-ef28c0e08626) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xa2F8bd6B95a0cB9094206075504CD0ED1Cc717Be (gauges/ECLP-GHO-USDC-2-gauge-a2f8) | add_reward(address,address) | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f: tokens/GHO | N/A | 0 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/GYD_GyroDistributor.json b/MaxiOps/add_rewards/mainnet/GYD_GyroDistributor.json new file mode 100644 index 000000000..25e4db699 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/GYD_GyroDistributor.json @@ -0,0 +1,165 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723045657592, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x0fD5B305C5e09D8A74732F155116dEd43115E421", + "data": "0xe8de0d4d000000000000000000000000e07F9D810a48ab5c3c914BA3cA53AF14E4491e8A000000000000000000000000c1024e475E357375E16c7F86fE46cbc6fFB0561D" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4a7475d32ccd29edd65b2a1712b091aa741ba9bb", + "data": "0xe8de0d4d000000000000000000000000e07F9D810a48ab5c3c914BA3cA53AF14E4491e8A000000000000000000000000c1024e475E357375E16c7F86fE46cbc6fFB0561D" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdfEC5147fc82F22dd9ce33794a86E7EAD39b765F", + "data": "0xe8de0d4d000000000000000000000000e07F9D810a48ab5c3c914BA3cA53AF14E4491e8A000000000000000000000000c1024e475E357375E16c7F86fE46cbc6fFB0561D" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x30cEE2F8Cb8e53FC587f6B2578241a118188D530", + "data": "0xe8de0d4d000000000000000000000000e07F9D810a48ab5c3c914BA3cA53AF14E4491e8A000000000000000000000000c1024e475E357375E16c7F86fE46cbc6fFB0561D" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x0bf02adf23149859c0976f4dd10f6c7dace6b94b", + "data": "0xe8de0d4d000000000000000000000000e07F9D810a48ab5c3c914BA3cA53AF14E4491e8A000000000000000000000000c1024e475E357375E16c7F86fE46cbc6fFB0561D" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x934DA8673aB0c6677F2D772Fce58B30Af7F4Ba47", + "data": "0xe8de0d4d000000000000000000000000e07F9D810a48ab5c3c914BA3cA53AF14E4491e8A000000000000000000000000c1024e475E357375E16c7F86fE46cbc6fFB0561D" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/GYD_GyroDistributor.report.txt b/MaxiOps/add_rewards/mainnet/GYD_GyroDistributor.report.txt new file mode 100644 index 000000000..d4e06a749 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/GYD_GyroDistributor.report.txt @@ -0,0 +1,23 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/GYD_GyroDistributor.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `975a430b37b64fb72a403a5828a9b0600e691475` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/41c485fd-9339-4296-bef6-2dc60556a08d) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x0fD5B305C5e09D8A74732F155116dEd43115E421 (None) | add_reward(address,address) | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | N/A | 0 | +| | | | | 0xc1024e475E357375E16c7F86fE46cbc6fFB0561D: None | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x4a7475d32ccd29edd65b2a1712b091aa741ba9bb (gauges/ECLP-GHO-GYD-gauge-4a74) | add_reward(address,address) | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | N/A | 1 | +| | | | | 0xc1024e475E357375E16c7F86fE46cbc6fFB0561D: None | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xdfEC5147fc82F22dd9ce33794a86E7EAD39b765F (None) | add_reward(address,address) | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | N/A | 2 | +| | | | | 0xc1024e475E357375E16c7F86fE46cbc6fFB0561D: None | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x30cEE2F8Cb8e53FC587f6B2578241a118188D530 (gauges/ECLP-paUSD-GYD-gauge-30ce) | add_reward(address,address) | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | N/A | 3 | +| | | | | 0xc1024e475E357375E16c7F86fE46cbc6fFB0561D: None | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x0bf02adf23149859c0976f4dd10f6c7dace6b94b (None) | add_reward(address,address) | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | N/A | 4 | +| | | | | 0xc1024e475E357375E16c7F86fE46cbc6fFB0561D: None | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x934DA8673aB0c6677F2D772Fce58B30Af7F4Ba47 (None) | add_reward(address,address) | 0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A: GYD | N/A | 5 | +| | | | | 0xc1024e475E357375E16c7F86fE46cbc6fFB0561D: None | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/RPL_PaladinQuestv2_rETH-wETH-MetaStable.json b/MaxiOps/add_rewards/mainnet/RPL_PaladinQuestv2_rETH-wETH-MetaStable.json new file mode 100644 index 000000000..732c723ef --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/RPL_PaladinQuestv2_rETH-wETH-MetaStable.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718893445068, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x72744c2cc60c8d327e9ff560c52db78104e31bfdfe22d63cbb95c327eb526283" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x79eF6103A513951a3b25743DB509E267685726B7", + "data": "0xe8de0d4d000000000000000000000000d33526068d116ce69f19a9ee46f0bd304f21a51f000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/RPL_PaladinQuestv2_rETH-wETH-MetaStable.report.txt b/MaxiOps/add_rewards/mainnet/RPL_PaladinQuestv2_rETH-wETH-MetaStable.report.txt new file mode 100644 index 000000000..4123d3fae --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/RPL_PaladinQuestv2_rETH-wETH-MetaStable.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/RPL_PaladinQuestv2_rETH-wETH-MetaStable.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `25b5733544215fec1bd4be3a53030fc98ec8f286` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/2d755565-9a57-47ec-84d1-9617b8d6c85a) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x79eF6103A513951a3b25743DB509E267685726B7 (gauges/B-rETH-STABLE-gauge-79ef)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000d33526068d116ce69f19a9ee46f0bd304f21a51f000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/T_PaladinQuestBoard.json b/MaxiOps/add_rewards/mainnet/T_PaladinQuestBoard.json new file mode 100644 index 000000000..784bbb894 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/T_PaladinQuestBoard.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1720008538762, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8af94f6fb77c8572795a7ca843a262915024e864377396735821277ab72f808b" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xCc6A23446f6388D78F3037BD55f2eB820352d982", + "data": "0xe8de0d4d000000000000000000000000cdf7028ceab81fa0c6971208e83fa7872994bee5000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/T_PaladinQuestBoard.report.txt b/MaxiOps/add_rewards/mainnet/T_PaladinQuestBoard.report.txt new file mode 100644 index 000000000..e9f3f40e8 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/T_PaladinQuestBoard.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/T_PaladinQuestBoard.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3462564799540fffee9648a7dca9c61f48c66abb` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/15dad34d-93a7-4df0-98c7-914cc0662422) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xCc6A23446f6388D78F3037BD55f2eB820352d982 (gauges/80T-20TBTC-gauge-cc6a)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000cdf7028ceab81fa0c6971208e83fa7872994bee5000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/USDC-Injector-for-RPL-rETH.json b/MaxiOps/add_rewards/mainnet/USDC-Injector-for-RPL-rETH.json new file mode 100644 index 000000000..ba9e5b759 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/USDC-Injector-for-RPL-rETH.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730314286175, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x2c2179abce3413e27bda6917f60ae37f96d01826", + "data": "0xe8de0d4d000000000000000000000000A0b86991c6218b36c1d19D4a2e9Eb0cE3606eB4800000000000000000000000080D737BF3973D92a1B5FC4b166F89cb9e7445632" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/USDC-Injector-for-RPL-rETH.report.txt b/MaxiOps/add_rewards/mainnet/USDC-Injector-for-RPL-rETH.report.txt new file mode 100644 index 000000000..b377a70f6 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/USDC-Injector-for-RPL-rETH.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/USDC-Injector-for-RPL-rETH.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `a3407dd613dfbf7e74184a06605f659e75610a1b` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5afe886a-4eaa-4ca6-b1dc-cf3b3df0575f) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x2c2179abce3413e27bda6917f60ae37f96d01826 (gauges/50rETH-50RPL-gauge-2c21) | add_reward(address,address) | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: tokens/USDC | N/A | 0 | +| | | | | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632: maxiKeepers/gaugeRewardsInjectors/usdc | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/USDC_&_USDT_rsETH-wETH.json b/MaxiOps/add_rewards/mainnet/USDC_&_USDT_rsETH-wETH.json new file mode 100644 index 000000000..51646306a --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/USDC_&_USDT_rsETH-wETH.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1720546984916, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdf04E3a7ab9857a16FB97174e0f1001aa44380AF", + "data": "0xe8de0d4d000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000009cCC7Df2da448BBeA48347822E2A920053B7E67B" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xdf04E3a7ab9857a16FB97174e0f1001aa44380AF", + "data": "0xe8de0d4d000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000009cCC7Df2da448BBeA48347822E2A920053B7E67B" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/USDC_&_USDT_rsETH-wETH.report.txt b/MaxiOps/add_rewards/mainnet/USDC_&_USDT_rsETH-wETH.report.txt new file mode 100644 index 000000000..405241db1 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/USDC_&_USDT_rsETH-wETH.report.txt @@ -0,0 +1,27 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/USDC_&_USDT_rsETH-wETH.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `c7fa3f020d9964e976f4663b6a5033291b188d22` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/fe0c458d-6d0c-4980-9887-1a074e643942) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xdf04E3a7ab9857a16FB97174e0f1001aa44380AF (N/A)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000009cCC7Df2da448BBeA48347822E2A920053B7E67B" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xdf04E3a7ab9857a16FB97174e0f1001aa44380AF (N/A)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000009cCC7Df2da448BBeA48347822E2A920053B7E67B" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/v3-Launch-Rewards_BAL&USDC/BAL-&-USDC-Launch-Pools.json b/MaxiOps/add_rewards/mainnet/v3-Launch-Rewards_BAL&USDC/BAL-&-USDC-Launch-Pools.json new file mode 100644 index 000000000..fb88d08c9 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/v3-Launch-Rewards_BAL&USDC/BAL-&-USDC-Launch-Pools.json @@ -0,0 +1,215 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734009882591, + "meta": { + "name": "Transactions Batch", + "description": "Add BAL and USDC as Reward token to v3 mainnet gauges", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xeEc405B834c90B59122Bcc2357f27110B2ADB4B7", + "data": "0xe8de0d4d000000000000000000000000A0b86991c6218b36c1d19D4a2e9Eb0cE3606eB4800000000000000000000000080D737BF3973D92a1B5FC4b166F89cb9e7445632" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4B891340b51889f438a03DC0e8aAAFB0Bc89e7A6", + "data": "0xe8de0d4d000000000000000000000000A0b86991c6218b36c1d19D4a2e9Eb0cE3606eB4800000000000000000000000080D737BF3973D92a1B5FC4b166F89cb9e7445632" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x70A1c01902DAb7a45dcA1098Ca76A8314dd8aDbA", + "data": "0xe8de0d4d000000000000000000000000A0b86991c6218b36c1d19D4a2e9Eb0cE3606eB4800000000000000000000000080D737BF3973D92a1B5FC4b166F89cb9e7445632" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1f3A4C8115629C33A28bF2F97F22D31d256317F6", + "data": "0xe8de0d4d000000000000000000000000A0b86991c6218b36c1d19D4a2e9Eb0cE3606eB4800000000000000000000000080D737BF3973D92a1B5FC4b166F89cb9e7445632" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xeEc405B834c90B59122Bcc2357f27110B2ADB4B7", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x4B891340b51889f438a03DC0e8aAAFB0Bc89e7A6", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x70A1c01902DAb7a45dcA1098Ca76A8314dd8aDbA", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x1f3A4C8115629C33A28bF2F97F22D31d256317F6", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/v3-Launch-Rewards_BAL&USDC/BAL-&-USDC-Launch-Pools.report.txt b/MaxiOps/add_rewards/mainnet/v3-Launch-Rewards_BAL&USDC/BAL-&-USDC-Launch-Pools.report.txt new file mode 100644 index 000000000..5d368c3ef --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/v3-Launch-Rewards_BAL&USDC/BAL-&-USDC-Launch-Pools.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/v3-Launch-Rewards_BAL&USDC/BAL-&-USDC-Launch-Pools.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `174cb8823d7b7d12d5c6e22ad8b89be1ac47f4f5` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7453c930-3036-488c-ae73-f907264b9f6c) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xeEc405B834c90B59122Bcc2357f27110B2ADB4B7 (None) | add_reward(address,address) | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: tokens/USDC | N/A | 0 | +| | | | | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632: maxiKeepers/gaugeRewardsInjectors/usdc | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x4B891340b51889f438a03DC0e8aAAFB0Bc89e7A6 (None) | add_reward(address,address) | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: tokens/USDC | N/A | 1 | +| | | | | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632: maxiKeepers/gaugeRewardsInjectors/usdc | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x70A1c01902DAb7a45dcA1098Ca76A8314dd8aDbA (None) | add_reward(address,address) | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: tokens/USDC | N/A | 2 | +| | | | | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632: maxiKeepers/gaugeRewardsInjectors/usdc | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x1f3A4C8115629C33A28bF2F97F22D31d256317F6 (None) | add_reward(address,address) | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: tokens/USDC | N/A | 3 | +| | | | | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632: maxiKeepers/gaugeRewardsInjectors/usdc | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xeEc405B834c90B59122Bcc2357f27110B2ADB4B7 (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 4 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x4B891340b51889f438a03DC0e8aAAFB0Bc89e7A6 (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 5 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x70A1c01902DAb7a45dcA1098Ca76A8314dd8aDbA (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 6 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x1f3A4C8115629C33A28bF2F97F22D31d256317F6 (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 7 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mainnet/wETH&BAL-BAO-Gauges-PaladinQuestv2.json b/MaxiOps/add_rewards/mainnet/wETH&BAL-BAO-Gauges-PaladinQuestv2.json new file mode 100644 index 000000000..5ae0b9b5e --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/wETH&BAL-BAO-Gauges-PaladinQuestv2.json @@ -0,0 +1,415 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1732269416420, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5af3b93fb82ab8691b82a09cbbae7b8d3eb5ac11", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5af3b93fb82ab8691b82a09cbbae7b8d3eb5ac11", + "data": "0xe8de0d4d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd449efa0a587f2cb6be3ae577bc167a774525810", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd449efa0a587f2cb6be3ae577bc167a774525810", + "data": "0xe8de0d4d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x17753fc89894a5ebd8b327f7d6121038e9240437", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x17753fc89894a5ebd8b327f7d6121038e9240437", + "data": "0xe8de0d4d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf91ba601c53f831869da4aceaaec11c479413972", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf91ba601c53f831869da4aceaaec11c479413972", + "data": "0xe8de0d4d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x80f129622dc60f5a7de85cbc98f7e3a99b09e57f", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x80f129622dc60f5a7de85cbc98f7e3a99b09e57f", + "data": "0xe8de0d4d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x001edf44d8aa79922dbe74f57c703ebce2e13b43", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x001edf44d8aa79922dbe74f57c703ebce2e13b43", + "data": "0xe8de0d4d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6b9de817875952cb23d985abf6fa9ec4b7f66ad5", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x6b9de817875952cb23d985abf6fa9ec4b7f66ad5", + "data": "0xe8de0d4d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7c02ac2bad481dc4e566d3d54359244f381d58dc", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x7c02ac2bad481dc4e566d3d54359244f381d58dc", + "data": "0xe8de0d4d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000fEb352930cA196a80B708CDD5dcb4eCA94805daB" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mainnet/wETH&BAL-BAO-Gauges-PaladinQuestv2.report.txt b/MaxiOps/add_rewards/mainnet/wETH&BAL-BAO-Gauges-PaladinQuestv2.report.txt new file mode 100644 index 000000000..c11de0e98 --- /dev/null +++ b/MaxiOps/add_rewards/mainnet/wETH&BAL-BAO-Gauges-PaladinQuestv2.report.txt @@ -0,0 +1,44 @@ +FILENAME: `MaxiOps/add_rewards/mainnet/wETH&BAL-BAO-Gauges-PaladinQuestv2.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ef40dc8976f73131466979245d655304aa034065` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/98ff459d-59b9-46a2-b798-31bf94891ef5) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x5af3b93fb82ab8691b82a09cbbae7b8d3eb5ac11 (gauges/B-baoUSD-LUSD-BPT-gauge-5af3) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 0 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x5af3b93fb82ab8691b82a09cbbae7b8d3eb5ac11 (gauges/B-baoUSD-LUSD-BPT-gauge-5af3) | add_reward(address,address) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: tokens/WETH | N/A | 1 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xd449efa0a587f2cb6be3ae577bc167a774525810 (gauges/B-baoETH-ETH-BPT-gauge-d449) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 2 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xd449efa0a587f2cb6be3ae577bc167a774525810 (gauges/B-baoETH-ETH-BPT-gauge-d449) | add_reward(address,address) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: tokens/WETH | N/A | 3 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x17753fc89894a5ebd8b327f7d6121038e9240437 (gauges/B-baoUSD-sDAI-BPT-gauge-1775) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 4 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x17753fc89894a5ebd8b327f7d6121038e9240437 (gauges/B-baoUSD-sDAI-BPT-gauge-1775) | add_reward(address,address) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: tokens/WETH | N/A | 5 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xf91ba601c53f831869da4aceaaec11c479413972 (gauges/B-baoUSD-sUSDe-BPT-gauge-f91b) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 6 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xf91ba601c53f831869da4aceaaec11c479413972 (gauges/B-baoUSD-sUSDe-BPT-gauge-f91b) | add_reward(address,address) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: tokens/WETH | N/A | 7 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x80f129622dc60f5a7de85cbc98f7e3a99b09e57f (gauges/B-baoETH-rETH-BPT-gauge-80f1) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 8 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x80f129622dc60f5a7de85cbc98f7e3a99b09e57f (gauges/B-baoETH-rETH-BPT-gauge-80f1) | add_reward(address,address) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: tokens/WETH | N/A | 9 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x001edf44d8aa79922dbe74f57c703ebce2e13b43 (gauges/B-baoETH-wstETH-BPT-gauge-001e) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 10 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x001edf44d8aa79922dbe74f57c703ebce2e13b43 (gauges/B-baoETH-wstETH-BPT-gauge-001e) | add_reward(address,address) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: tokens/WETH | N/A | 11 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x6b9de817875952cb23d985abf6fa9ec4b7f66ad5 (gauges/20B-baoUSD-LUSD-BPT-80BAO-gauge-6b9d) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 12 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x6b9de817875952cb23d985abf6fa9ec4b7f66ad5 (gauges/20B-baoUSD-LUSD-BPT-80BAO-gauge-6b9d) | add_reward(address,address) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: tokens/WETH | N/A | 13 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x7c02ac2bad481dc4e566d3d54359244f381d58dc (gauges/20B-baoETH-ETH-BPT-80BAO-gauge-7c02) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 14 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x7c02ac2bad481dc4e566d3d54359244f381d58dc (gauges/20B-baoETH-ETH-BPT-80BAO-gauge-7c02) | add_reward(address,address) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2: tokens/WETH | N/A | 15 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+-----------------------------+--------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/add_rewards/mode/MODE_to_USDC-USDT_Pool-test.json b/MaxiOps/add_rewards/mode/MODE_to_USDC-USDT_Pool-test.json new file mode 100644 index 000000000..f27c0809b --- /dev/null +++ b/MaxiOps/add_rewards/mode/MODE_to_USDC-USDT_Pool-test.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1720571399658, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xd6ee7fda0dc26a78817ab1c0cd844a7dc0250cd07cdea0d19da4f47c656fa128" + }, + "transactions": [ + { + "to": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "target", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd7C5C2B75d4133f5914f4239824D0C789aC2D3ce", + "data": "0xe8de0d4d000000000000000000000000Dfc7C877a950e49D2610114102175A06C2e3167a000000000000000000000000854B004700885A61107B458f11eCC169A019b764" + } + } + ] +} diff --git a/MaxiOps/add_rewards/mode/MODE_to_USDC-USDT_Pool-test.report.txt b/MaxiOps/add_rewards/mode/MODE_to_USDC-USDT_Pool-test.report.txt new file mode 100644 index 000000000..13ea2fc4c --- /dev/null +++ b/MaxiOps/add_rewards/mode/MODE_to_USDC-USDT_Pool-test.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/add_rewards/mode/MODE_to_USDC-USDT_Pool-test.json` +MULTISIG: `multisigs/lm (mode:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `e2ea7fb7da194cf79e5a336a949810f3b0dd6d33` +CHAIN(S): `mode` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/41aefece-7e7b-4b09-b553-7694cc3d90ef) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0x76578ecf9a141296Ec657847fb45B0585bCDa3a6 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xd7C5C2B75d4133f5914f4239824D0C789aC2D3ce (N/A)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000Dfc7C877a950e49D2610114102175A06C2e3167a000000000000000000000000854B004700885A61107B458f11eCC169A019b764" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/add_rewards/optimism/USDC-Injector-rETH-wETH.json b/MaxiOps/add_rewards/optimism/USDC-Injector-rETH-wETH.json new file mode 100644 index 000000000..fc64fdb8a --- /dev/null +++ b/MaxiOps/add_rewards/optimism/USDC-Injector-rETH-wETH.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1730319357891, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF27D53f21d024643d50de50183932F17638229F6", + "data": "0xe8de0d4d0000000000000000000000000b2C639c533813f4Aa9D7837CAf62653d097Ff8500000000000000000000000079D0F97D4D8c1Dd30b1Ea09746dB8847036AD92d" + } + } + ] +} diff --git a/MaxiOps/add_rewards/optimism/USDC-Injector-rETH-wETH.report.txt b/MaxiOps/add_rewards/optimism/USDC-Injector-rETH-wETH.report.txt new file mode 100644 index 000000000..8aebfc995 --- /dev/null +++ b/MaxiOps/add_rewards/optimism/USDC-Injector-rETH-wETH.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/add_rewards/optimism/USDC-Injector-rETH-wETH.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `49038dd35f08299cf0734f7f44e58465cc9f5843` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4e434d71-7182-47d8-b475-a72fe53e4aa0) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xF27D53f21d024643d50de50183932F17638229F6 (gauges/BPT-rETH-ETH-gauge-f27d) | add_reward(address,address) | 0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85: USDC | N/A | 0 | +| | | | | 0x79D0F97D4D8c1Dd30b1Ea09746dB8847036AD92d: maxiKeepers/gaugeRewardsInjectors/usdc | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-----------------------------+------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q2-2024/April_2024_payload.json b/MaxiOps/auraBAL_vesters/Q2-2024/April_2024_payload.json new file mode 100644 index 000000000..2449f2ba3 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q2-2024/April_2024_payload.json @@ -0,0 +1,167 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1713554830263, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0xa67a909f2818606d56c7140227e1a255eef31169c2b4f77ba00dff12a772ff6f" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "amount": "157970787600000000000" + } + }, + { + "to": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "157970787600000000000", + "_vestingPeriod": "29980800" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "amount": "605728479500000000000" + } + }, + { + "to": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "605728479500000000000", + "_vestingPeriod": "29980800" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "263284646100000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "263284646100000000000", + "_vestingPeriod": "29980800" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "210627716800000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "210627716800000000000", + "_vestingPeriod": "29980800" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q2-2024/April_2024_payload.report.txt b/MaxiOps/auraBAL_vesters/Q2-2024/April_2024_payload.report.txt new file mode 100644 index 000000000..3d5f25f42 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q2-2024/April_2024_payload.report.txt @@ -0,0 +1,75 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q2-2024/April_2024_payload.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `4581951d82e105e093ad9dfd435805012ae315d4` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/27aab3fe-5967-43af-be88-7ed686d08ca5) +``` ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:157970787600000000000, 18 decimals:157.9707876, 6 decimals: 157970787600000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:157970787600000000000, 18 decimals:157.9707876, 6 decimals: 157970787600000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "29980800" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:605728479500000000000, 18 decimals:605.7284795, 6 decimals: 605728479500000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:605728479500000000000, 18 decimals:605.7284795, 6 decimals: 605728479500000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "29980800" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:263284646100000000000, 18 decimals:263.2846461, 6 decimals: 263284646100000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:263284646100000000000, 18 decimals:263.2846461, 6 decimals: 263284646100000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "29980800" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:210627716800000000000, 18 decimals:210.6277168, 6 decimals: 210627716800000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:210627716800000000000, 18 decimals:210.6277168, 6 decimals: 210627716800000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "29980800" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q2-2024/June_2024_payload.json b/MaxiOps/auraBAL_vesters/Q2-2024/June_2024_payload.json new file mode 100644 index 000000000..7eab4b81a --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q2-2024/June_2024_payload.json @@ -0,0 +1,167 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1716653123016, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0xea9b01a5db95ea2391d2ae1139523987053333fb7e71196364588c3ee7e9c642" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "amount": "157970787600000000000" + } + }, + { + "to": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "157970787600000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "amount": "605728479500000000000" + } + }, + { + "to": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "605728479500000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "263284646100000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "263284646100000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "210627716800000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "210627716800000000000", + "_vestingPeriod": "31536000" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q2-2024/June_2024_payload.report.txt b/MaxiOps/auraBAL_vesters/Q2-2024/June_2024_payload.report.txt new file mode 100644 index 000000000..0878c1a79 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q2-2024/June_2024_payload.report.txt @@ -0,0 +1,75 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q2-2024/June_2024_payload.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `4581951d82e105e093ad9dfd435805012ae315d4` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f36994e4-9120-435e-b4f6-c92c14d8f0ec) +``` ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:157970787600000000000, 18 decimals:157.9707876, 6 decimals: 157970787600000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:157970787600000000000, 18 decimals:157.9707876, 6 decimals: 157970787600000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:605728479500000000000, 18 decimals:605.7284795, 6 decimals: 605728479500000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:605728479500000000000, 18 decimals:605.7284795, 6 decimals: 605728479500000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:263284646100000000000, 18 decimals:263.2846461, 6 decimals: 263284646100000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:263284646100000000000, 18 decimals:263.2846461, 6 decimals: 263284646100000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:210627716800000000000, 18 decimals:210.6277168, 6 decimals: 210627716800000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:210627716800000000000, 18 decimals:210.6277168, 6 decimals: 210627716800000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q2-2024/May_2024_payload.json b/MaxiOps/auraBAL_vesters/Q2-2024/May_2024_payload.json new file mode 100644 index 000000000..cc6c1bb73 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q2-2024/May_2024_payload.json @@ -0,0 +1,167 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1714256637005, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0xb8030004f103a8ad5e1daa4f47a744845682348075c01b56b89f25a18c58fd2b" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "amount": "157970787600000000000" + } + }, + { + "to": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "157970787600000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "amount": "605728479500000000000" + } + }, + { + "to": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "605728479500000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "263284646100000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "263284646100000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "210627716800000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "210627716800000000000", + "_vestingPeriod": "31536000" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q2-2024/May_2024_payload.report.txt b/MaxiOps/auraBAL_vesters/Q2-2024/May_2024_payload.report.txt new file mode 100644 index 000000000..7193db98d --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q2-2024/May_2024_payload.report.txt @@ -0,0 +1,75 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q2-2024/May_2024_payload.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `4581951d82e105e093ad9dfd435805012ae315d4` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/83290947-36aa-413f-a9f2-494f374e4fe3) +``` ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:157970787600000000000, 18 decimals:157.9707876, 6 decimals: 157970787600000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:157970787600000000000, 18 decimals:157.9707876, 6 decimals: 157970787600000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:605728479500000000000, 18 decimals:605.7284795, 6 decimals: 605728479500000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:605728479500000000000, 18 decimals:605.7284795, 6 decimals: 605728479500000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:263284646100000000000, 18 decimals:263.2846461, 6 decimals: 263284646100000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:263284646100000000000, 18 decimals:263.2846461, 6 decimals: 263284646100000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:210627716800000000000, 18 decimals:210.6277168, 6 decimals: 210627716800000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:210627716800000000000, 18 decimals:210.6277168, 6 decimals: 210627716800000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_Bridging_auraBAL.json b/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_Bridging_auraBAL.json new file mode 100644 index 000000000..7b0590a97 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_Bridging_auraBAL.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1719861487397, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x0bf695ca39ab4bd73ea6ea620a19472e55295ad2d028b8bff127e9a4162f641b" + }, + "transactions": [ + { + "to": "0x616e8BfA43F920657B3497DBf40D6b1A02D4608d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68", + "amount": "7560000000000000000000" + } + }, + { + "to": "0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68", + "value": "10000000000000000", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_from", "type": "address", "internalType": "address" }, + { "name": "_dstChainId", "type": "uint16", "internalType": "uint16" }, + { "name": "_toAddress", "type": "bytes", "internalType": "bytes" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_refundAddress", + "type": "address", + "internalType": "address payable" + }, + { + "name": "_zroPaymentAddress", + "type": "address", + "internalType": "address" + }, + { "name": "_adapterParams", "type": "bytes", "internalType": "bytes" } + ], + "name": "sendFrom", + "payable": true + }, + "contractInputsValues": { + "_from": "0x166f54F44F271407f24AA1BE415a730035637325", + "_dstChainId": "110", + "_toAddress": "0x5891b90ce909d4c3540d640d2bdaaf3fd5157ead", + "_amount": "7559295300000000000000", + "_refundAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "_zroPaymentAddress": "0x0000000000000000000000000000000000000000", + "_adapterParams": "0x" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_Bridging_auraBAL.report.txt b/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_Bridging_auraBAL.report.txt new file mode 100644 index 000000000..3cb3de004 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_Bridging_auraBAL.report.txt @@ -0,0 +1,42 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_Bridging_auraBAL.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `4581951d82e105e093ad9dfd435805012ae315d4` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/995b5b7e-7045-4f97-8e57-ae3f1ef43d7c) +``` ++----------+-------------------------------------------------------------+-------------------------------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------+-------------------------------------------------------------+-------------------------------+---------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x616e8BfA43F920657B3497DBf40D6b1A02D4608d (tokens/AURABAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68 (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:7560000000000000000000, 18 decimals:7560, 6 decimals: 7560000000000000" | | | +| | | | ] | | | +| | | | } | | | +| sendFrom | 0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68 (Not Found) | 10000000000000000/1e18 = 0.01 | { | N/A | N/A | +| | | | "_from": [ | | | +| | | | "0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops)" | | | +| | | | ], | | | +| | | | "_dstChainId": [ | | | +| | | | "110" | | | +| | | | ], | | | +| | | | "_toAddress": [ | | | +| | | | "0x5891b90ce909d4c3540d640d2bdaaf3fd5157ead (N/A)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:7559295300000000000000, 18 decimals:7559.2953, 6 decimals: 7559295300000000" | | | +| | | | ], | | | +| | | | "_refundAddress": [ | | | +| | | | "0x166f54F44F271407f24AA1BE415a730035637325 (multisigs/maxi_ops)" | | | +| | | | ], | | | +| | | | "_zroPaymentAddress": [ | | | +| | | | "0x0000000000000000000000000000000000000000 (zero/zero)" | | | +| | | | ], | | | +| | | | "_adapterParams": [ | | | +| | | | "0x" | | | +| | | | ] | | | +| | | | } | | | ++----------+-------------------------------------------------------------+-------------------------------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_mint_stkAuraBAL.json b/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_mint_stkAuraBAL.json new file mode 100644 index 000000000..bcf755e0b --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_mint_stkAuraBAL.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1719974260489, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0x1b2eb4f2fc39d45eddbc61ebbfa25b11dc2b7d878f6cb988a0c92830d9f016b5" + }, + "transactions": [ + { + "to": "0x223738a747383d6F9f827d95964e4d8E8AC754cE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "amount": "7559295300000000000000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { "name": "_receiver", "type": "address", "internalType": "address" } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "7559295300000000000000", + "_receiver": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_mint_stkAuraBAL.report.txt b/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_mint_stkAuraBAL.report.txt new file mode 100644 index 000000000..224990af6 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_mint_stkAuraBAL.report.txt @@ -0,0 +1,27 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q3-2024/2024-Q3_mint_stkAuraBAL.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `4581951d82e105e093ad9dfd435805012ae315d4` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/c3dddd4b-0bab-49d0-8ffb-900c73ca8b8a) +``` ++---------+----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x223738a747383d6F9f827d95964e4d8E8AC754cE (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:7559295300000000000000, 18 decimals:7559.2953, 6 decimals: 7559295300000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:7559295300000000000000, 18 decimals:7559.2953, 6 decimals: 7559295300000000" | | | +| | | | ], | | | +| | | | "_receiver": [ | | | +| | | | "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD (multisigs/maxi_ops)" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/August_2024.json b/MaxiOps/auraBAL_vesters/Q3-2024/August_2024.json new file mode 100644 index 000000000..69d33134a --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/August_2024.json @@ -0,0 +1,281 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1720069432583, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0x61e9b5932dc3bea77af63f71b1f756a84c478101e8733cdae2bc512713137f9e" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "amount": "149582770000000000000" + } + }, + { + "to": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "149582770000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "249304600000000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "249304600000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "amount": "249304600000000000000" + } + }, + { + "to": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "249304600000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "amount": "498609200000000000000" + } + }, + { + "to": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "498609200000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "199443700000000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "199443700000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2304488F0eddF15227C21b021739448B51E791C0", + "amount": "111688400000000000000" + } + }, + { + "to": "0x2304488F0eddF15227C21b021739448B51E791C0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "111688400000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "amount": "408221300000000000000" + } + }, + { + "to": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "408221300000000000000", + "_vestingPeriod": "31536000" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/August_2024.report.txt b/MaxiOps/auraBAL_vesters/Q3-2024/August_2024.report.txt new file mode 100644 index 000000000..040423c09 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/August_2024.report.txt @@ -0,0 +1,123 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q3-2024/August_2024.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `4581951d82e105e093ad9dfd435805012ae315d4` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/58c03317-ba4a-4997-8cb6-16145342f017) +``` ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:149582770000000000000, 18 decimals:149.58277, 6 decimals: 149582770000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:149582770000000000000, 18 decimals:149.58277, 6 decimals: 149582770000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:498609200000000000000, 18 decimals:498.6092, 6 decimals: 498609200000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:498609200000000000000, 18 decimals:498.6092, 6 decimals: 498609200000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:199443700000000000000, 18 decimals:199.4437, 6 decimals: 199443700000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:199443700000000000000, 18 decimals:199.4437, 6 decimals: 199443700000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:111688400000000000000, 18 decimals:111.6884, 6 decimals: 111688400000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:111688400000000000000, 18 decimals:111.6884, 6 decimals: 111688400000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:408221300000000000000, 18 decimals:408.2213, 6 decimals: 408221300000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:408221300000000000000, 18 decimals:408.2213, 6 decimals: 408221300000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/July_2024_payroll_stkAuraBAL.json b/MaxiOps/auraBAL_vesters/Q3-2024/July_2024_payroll_stkAuraBAL.json new file mode 100644 index 000000000..2dbc8a685 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/July_2024_payroll_stkAuraBAL.json @@ -0,0 +1,281 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1720069432583, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0x61e9b5932dc3bea77af63f71b1f756a84c478101e8733cdae2bc512713137f9e" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "amount": "149582770000000000000" + } + }, + { + "to": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "149582770000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "249304600000000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "249304600000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "amount": "249304600000000000000" + } + }, + { + "to": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "249304600000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "amount": "498609200000000000000" + } + }, + { + "to": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "498609200000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "199443700000000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "199443700000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2304488F0eddF15227C21b021739448B51E791C0", + "amount": "446753800000000000000" + } + }, + { + "to": "0x2304488F0eddF15227C21b021739448B51E791C0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "446753800000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "amount": "408221300000000000000" + } + }, + { + "to": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "408221300000000000000", + "_vestingPeriod": "31536000" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/July_2024_payroll_stkAuraBAL.report.txt b/MaxiOps/auraBAL_vesters/Q3-2024/July_2024_payroll_stkAuraBAL.report.txt new file mode 100644 index 000000000..40e96c339 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/July_2024_payroll_stkAuraBAL.report.txt @@ -0,0 +1,123 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q3-2024/July_2024_payroll_stkAuraBAL.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `4581951d82e105e093ad9dfd435805012ae315d4` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b9a7c536-f26a-4b0a-ae3d-1035d90f6cb2) +``` ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:149582770000000000000, 18 decimals:149.58277, 6 decimals: 149582770000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:149582770000000000000, 18 decimals:149.58277, 6 decimals: 149582770000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:498609200000000000000, 18 decimals:498.6092, 6 decimals: 498609200000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:498609200000000000000, 18 decimals:498.6092, 6 decimals: 498609200000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:199443700000000000000, 18 decimals:199.4437, 6 decimals: 199443700000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:199443700000000000000, 18 decimals:199.4437, 6 decimals: 199443700000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:446753800000000000000, 18 decimals:446.7538, 6 decimals: 446753800000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:446753800000000000000, 18 decimals:446.7538, 6 decimals: 446753800000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:408221300000000000000, 18 decimals:408.2213, 6 decimals: 408221300000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:408221300000000000000, 18 decimals:408.2213, 6 decimals: 408221300000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/September_2024.json b/MaxiOps/auraBAL_vesters/Q3-2024/September_2024.json new file mode 100644 index 000000000..69d33134a --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/September_2024.json @@ -0,0 +1,281 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1720069432583, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0x61e9b5932dc3bea77af63f71b1f756a84c478101e8733cdae2bc512713137f9e" + }, + "transactions": [ + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "amount": "149582770000000000000" + } + }, + { + "to": "0x2b03b15E4A26D858DD594649988255eCEb832787", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "149582770000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "249304600000000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "249304600000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "amount": "249304600000000000000" + } + }, + { + "to": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "249304600000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "amount": "498609200000000000000" + } + }, + { + "to": "0x2466f62D52005AaB7A8F637CC3152361D4CC210c", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "498609200000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "amount": "199443700000000000000" + } + }, + { + "to": "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "199443700000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2304488F0eddF15227C21b021739448B51E791C0", + "amount": "111688400000000000000" + } + }, + { + "to": "0x2304488F0eddF15227C21b021739448B51E791C0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "111688400000000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "amount": "408221300000000000000" + } + }, + { + "to": "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "408221300000000000000", + "_vestingPeriod": "31536000" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q3-2024/September_2024.report.txt b/MaxiOps/auraBAL_vesters/Q3-2024/September_2024.report.txt new file mode 100644 index 000000000..31bc321b4 --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q3-2024/September_2024.report.txt @@ -0,0 +1,123 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q3-2024/September_2024.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `afd618e39f911e49b630995deaf68206e2562a6c` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c5b13a21-af70-4aa1-9616-3fd5edd652df) +``` ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:149582770000000000000, 18 decimals:149.58277, 6 decimals: 149582770000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2b03b15E4A26D858DD594649988255eCEb832787 (maxiVestingContracts/Tritium) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:149582770000000000000, 18 decimals:149.58277, 6 decimals: 149582770000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:249304600000000000000, 18 decimals:249.3046, 6 decimals: 249304600000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:498609200000000000000, 18 decimals:498.6092, 6 decimals: 498609200000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2466f62D52005AaB7A8F637CC3152361D4CC210c (maxiVestingContracts/Zen Dragon) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:498609200000000000000, 18 decimals:498.6092, 6 decimals: 498609200000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:199443700000000000000, 18 decimals:199.4437, 6 decimals: 199443700000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x81DE849AdB5883d089cdFd66bB399b4Af74a16bb (maxiVestingContracts/Mike B) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:199443700000000000000, 18 decimals:199.4437, 6 decimals: 199443700000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:111688400000000000000, 18 decimals:111.6884, 6 decimals: 111688400000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:111688400000000000000, 18 decimals:111.6884, 6 decimals: 111688400000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:408221300000000000000, 18 decimals:408.2213, 6 decimals: 408221300000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xB209a59A9F3CC7FA5A25dF152a01f9dF8B969A3a (maxiVestingContracts/lipman) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:408221300000000000000, 18 decimals:408.2213, 6 decimals: 408221300000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | ++---------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/auraBAL_vesters/Q4-2024/stakingAuraBAL_and-3-Months-Payout.json b/MaxiOps/auraBAL_vesters/Q4-2024/stakingAuraBAL_and-3-Months-Payout.json new file mode 100644 index 000000000..50e195d2c --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q4-2024/stakingAuraBAL_and-3-Months-Payout.json @@ -0,0 +1,289 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1732295719166, + "meta": { + "name": "Transactions Batch", + "description": "staking aurabal and 3 months payout", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD", + "createdFromOwnerAddress": "", + "checksum": "0x7b21a1d2c63b965f44712191022e447b73ac3639e913a88f48b8278a5ade4c3c" + }, + "transactions": [ + { + "to": "0x223738a747383d6F9f827d95964e4d8E8AC754cE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "amount": "3754762013519924575855" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { "name": "_receiver", "type": "address", "internalType": "address" } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "3754762013519924575855", + "_receiver": "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "amount": "882878807200000000000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "294292935700000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "294292935700000000000", + "_vestingPeriod": "28910000" + } + }, + { + "to": "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "294292935700000000000", + "_vestingPeriod": "26280000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "amount": "331079552700000000000" + } + }, + { + "to": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "110359850900000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "110359850900000000000", + "_vestingPeriod": "28910000" + } + }, + { + "to": "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "110359850900000000000", + "_vestingPeriod": "26280000" + } + }, + { + "to": "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x2304488F0eddF15227C21b021739448B51E791C0", + "amount": "133491275700000000000" + } + }, + { + "to": "0x2304488F0eddF15227C21b021739448B51E791C0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "44497091880000000000", + "_vestingPeriod": "31536000" + } + }, + { + "to": "0x2304488F0eddF15227C21b021739448B51E791C0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "44497091880000000000", + "_vestingPeriod": "28910000" + } + }, + { + "to": "0x2304488F0eddF15227C21b021739448B51E791C0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "44497091880000000000", + "_vestingPeriod": "26280000" + } + } + ] +} diff --git a/MaxiOps/auraBAL_vesters/Q4-2024/stakingAuraBAL_and-3-Months-Payout.report.txt b/MaxiOps/auraBAL_vesters/Q4-2024/stakingAuraBAL_and-3-Months-Payout.report.txt new file mode 100644 index 000000000..0520fd28b --- /dev/null +++ b/MaxiOps/auraBAL_vesters/Q4-2024/stakingAuraBAL_and-3-Months-Payout.report.txt @@ -0,0 +1,124 @@ +FILENAME: `MaxiOps/auraBAL_vesters/Q4-2024/stakingAuraBAL_and-3-Months-Payout.json` +MULTISIG: `multisigs/maxi_ops (arbitrum:0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD)` +COMMIT: `8cd9c88618fffe4cb78d05eb379e2f3cfa133a66` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/32fb8963-64e3-4f93-b0b0-f233116cd94f) + +``` ++---------+----------------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x223738a747383d6F9f827d95964e4d8E8AC754cE (tokens/auraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:3754762013519924575855, 18 decimals:3754.762013519924575855, 6 decimals: 3754762013519924.575855" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:3754762013519924575855, 18 decimals:3754.762013519924575855, 6 decimals: 3754762013519924.575855" | | | +| | | | ], | | | +| | | | "_receiver": [ | | | +| | | | "0x5891b90CE909d4c3540d640d2BdAAF3fD5157EAD (multisigs/maxi_ops)" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:882878807200000000000, 18 decimals:882.8788072, 6 decimals: 882878807200000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:294292935700000000000, 18 decimals:294.2929357, 6 decimals: 294292935700000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:294292935700000000000, 18 decimals:294.2929357, 6 decimals: 294292935700000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "28910000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0xCE49aeFDDdDBa966cd69e6A4670f4F795F577264 (maxiVestingContracts/Xeonus) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:294292935700000000000, 18 decimals:294.2929357, 6 decimals: 294292935700000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "26280000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:331079552700000000000, 18 decimals:331.0795527, 6 decimals: 331079552700000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:110359850900000000000, 18 decimals:110.3598509, 6 decimals: 110359850900000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:110359850900000000000, 18 decimals:110.3598509, 6 decimals: 110359850900000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "28910000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x5C8260f4eB66eC847018BBC5f68694864eF094Fe (maxiVestingContracts/zekraken) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:110359850900000000000, 18 decimals:110.3598509, 6 decimals: 110359850900000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "26280000" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4EA9317D90b61fc28C418C247ad0CA8939Bbb0e9 (tokens/stkauraBAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:133491275700000000000, 18 decimals:133.4912757, 6 decimals: 133491275700000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:44497091880000000000, 18 decimals:44.49709188, 6 decimals: 44497091880000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "31536000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:44497091880000000000, 18 decimals:44.49709188, 6 decimals: 44497091880000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "28910000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x2304488F0eddF15227C21b021739448B51E791C0 (maxiVestingContracts/Danko) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:44497091880000000000, 18 decimals:44.49709188, 6 decimals: 44497091880000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "26280000" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/blabs_data/AddFabioEOAToMainnetEventEmitter.json b/MaxiOps/blabs_data/AddFabioEOAToMainnetEventEmitter.json new file mode 100644 index 000000000..e5303abae --- /dev/null +++ b/MaxiOps/blabs_data/AddFabioEOAToMainnetEventEmitter.json @@ -0,0 +1,36 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1723132164511, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x2b38941f3b6891ecaa8822daf9a83a76d90cd6511942eca694147a589736ed47" + }, + "transactions": [ + { + "to": "0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "identifier", + "type": "bytes32", + "internalType": "bytes32" + }, + { "name": "addr", "type": "address", "internalType": "address" } + ], + "name": "authorize", + "payable": false + }, + "contractInputsValues": { + "identifier": "0x109783b117ecbf8caf4e937abaf494b965e5d90c4d1b010b27eb2a3be80eaf21", + "addr": "0x90347b9CC81a4a28aAc74E8B134040d5ce2eaB6D" + } + } + ] +} diff --git a/MaxiOps/blabs_data/AddFabioEOAToMainnetEventEmitter.report.txt b/MaxiOps/blabs_data/AddFabioEOAToMainnetEventEmitter.report.txt new file mode 100644 index 000000000..4911ca2b3 --- /dev/null +++ b/MaxiOps/blabs_data/AddFabioEOAToMainnetEventEmitter.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/blabs_data/AddFabioEOAToMainnetEventEmitter.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `999ad24fe16980fbc2af29ff06e9b354a63edabc` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0cd47d75-8dc7-471a-b9b4-523a8b7e2366) +``` ++-----------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +| authorize | 0x1ACfEEA57d2ac674d7E65964f155AB9348A6C290 (balancer/EventEmitter) | 0 | { | N/A | N/A | +| | | | "identifier": [ | | | +| | | | "0x109783b117ecbf8caf4e937abaf494b965e5d90c4d1b010b27eb2a3be80eaf21" | | | +| | | | ], | | | +| | | | "addr": [ | | | +| | | | "0x90347b9CC81a4a28aAc74E8B134040d5ce2eaB6D (EOA/blabs_ops/Fabio)" | | | +| | | | ] | | | +| | | | } | | | ++-----------+--------------------------------------------------------------------+-------+--------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/brib_rebate_handling/01&02-2024/Bribe Refund Jan-Feb 2024.json b/MaxiOps/brib_rebate_handling/01&02-2024/Bribe Refund Jan-Feb 2024.json new file mode 100644 index 000000000..59e293947 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/01&02-2024/Bribe Refund Jan-Feb 2024.json @@ -0,0 +1,113 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1708199874013, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb251efac65b17eb2e33ad9576c6f85000799e2ab6177e906ee3adfcc9e98b02e" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "value": "20000000001" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "_proposal", "type": "bytes32" }, + { "internalType": "address", "name": "_token", "type": "address" }, + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { "internalType": "uint256", "name": "_periods", "type": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2f959ac167dbef915ad3858cf0c844ffa7b4de7f93c3f951b9895776d19db1ba", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "_proposal", "type": "bytes32" }, + { "internalType": "address", "name": "_token", "type": "address" }, + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { "internalType": "uint256", "name": "_periods", "type": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "_proposal", "type": "bytes32" }, + { "internalType": "address", "name": "_token", "type": "address" }, + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { "internalType": "uint256", "name": "_periods", "type": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/brib_rebate_handling/03-2024/Bribe_Refund_Debts_March2024.md b/MaxiOps/brib_rebate_handling/03-2024/Bribe_Refund_Debts_March2024.md new file mode 100644 index 000000000..30448e6ae --- /dev/null +++ b/MaxiOps/brib_rebate_handling/03-2024/Bribe_Refund_Debts_March2024.md @@ -0,0 +1,43 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address]((https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) ) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Refunds December 2023 and January 2024 + +During these two months refunds were based on the total value of fees collected, not the 50% which is sent to Hidden Hand. This resulted in Hidden Hand overcompensating Balancer for these two months. December 2023's total was 625,182; 3% would be 18,755 [Dec 23 - 297245](https://etherscan.io/tx/0xfe2ed945144341979eabfc7c1b784b2696f51db6d6dbfaf5a8792dcc01d18b69) + [Dec 9 - 327937](https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c) which should have been a Net Transfer total to Hidden Hand of 312,591 and a refund of 9377.73. Hidden Hand did send the doubled amount as seen [here](0x34fb19f7c5f122362a729206a2b546c3f3a405b9e9f387ffe8be073fc944b7e6). + +For January a similar scenario [Jan-20: 365,400](https://etherscan.io/tx/0xa81f07635a24b9660c174e27f4cf9ba03d14207089d822a195adeeb2a8d3fa03) and [Jan 5: 444254](https://etherscan.io/tx/0xd6d0689a995b7bdef50ff5f1ce2f05ac8b16ecc49e0309c9c9c05594c844d8c7) - 3% comes to 24289 USDC, however this should have been half resulting in 12144.5 net to Balancer in refund. The doubled amount was [received](0x9c16d7ec9e3bdf55048fa90579088e029676f9a6835d0ff780672b298c899202). + +To compensate Hidden Hand for the overdraft and not leave Balancer DAO in debt to their team we will forfeight bribe refunds until the total debt of 21,522 is paid. For February the total refund would be February correctly calculated is worth 9,533. 3% of [txn 1](https://etherscan.io/tx/0x4b7ce1295f1c3790f5a0353c13e93beb8a1d6c915bf9dd36fcfeb798a44f88d2) and [txn 2](https://etherscan.io/tx/0xb7bd4177a1fddd18364a52dc0563e5f3efde4856b97778477fb37d176be15000). This means Balancer will cover 11989 more USDC in refund debt before Hidden Hand begins to release more USDC to the DAO. + +### Update for Round dated March 2nd, 2024 + +Transaction: https://etherscan.io/tx/0x1c94e9e5b761e2167e1a204f0fb83cbf401cdea17cb162a88624383a718a1345 + +Net Transfer to HH: 269405.73 - 3% of Transfer: 8082.17 + +Net Debt: **3907 USDC** = 11,989 - 8,082 + +### Update for Round dated March 16. 2024 + +Transaction: https://etherscan.io/tx/0xe4f7f58819101be2e1f01c172e1fe8491a3bdde81222ada61b82ba04f3e7e3ce + +Net Transfer to HH: 374,274.269998 - 3% of Transfer: 11228.23 + +Net Debt: **-7,321 USDC** = 3,907 - 11228.23 Balancer is back in the green. + +Rolling Bribe refund amount: 7,321 USDC. + +### Final amount for March 2024 after March 29th round. + +Transaction: https://etherscan.io/tx/0xfb123a687c777015c8ddc0079bd87469967908e7deec05348167c96a88d5a247 + +Net Transfer to HH: 384,335.299998 - 3% of Transfer: 11,530 + +Rolling bribe refund: 18,851 (11,530 + 7,321) + +*Total bribe refund for March 2024: 18,851 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/04-2024/04-17-2024_BribePlacements.json b/MaxiOps/brib_rebate_handling/04-2024/04-17-2024_BribePlacements.json new file mode 100644 index 000000000..b391b6916 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/04-17-2024_BribePlacements.json @@ -0,0 +1,169 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1713257931195, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb6b681790d950a48e75ca08d7ec9ff2e674e21f48b19cee59fb71d07b4905c54" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "value": "10000000000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "_proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_periods", + "type": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc362e6802fb412ec08f8981ccdeef80ae55266edd7ad5dde5d9fd0705cfc9f72", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "_proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_periods", + "type": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1ac56a36591c39dd5acebe56d52f1cd9adfaaead8098a41601f888b93ee30c2f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32", + "name": "_proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_periods", + "type": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaf072ace313d3280e049c2b734b94177778350c8fd05de0b1d5984a08ae0c52c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/brib_rebate_handling/04-2024/04-17-2024_BribePlacements.report.txt b/MaxiOps/brib_rebate_handling/04-2024/04-17-2024_BribePlacements.report.txt new file mode 100644 index 000000000..564a4885a --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/04-17-2024_BribePlacements.report.txt @@ -0,0 +1,43 @@ +FILENAME: `MaxiOps/brib_rebate_handling/04-2024/04-17-2024_BribePlacements.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7b4dee92b3e4aa1e3cd41d3569ec243ba7ea1ace` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/76bbdc8a-40a9-4ce6-a70e-cb8e6a9e7332) +``` ++--------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+=========================+====================================================================+===========+============+ +| depositBribe | (A) AaveUSDCn AaveUSDT (GYROE) | USDC 6000.0(6000000000) | balancer | 2 | 1 | +| | 0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514 | | 0xc362e6802fb412ec08f8981ccdeef80ae55266edd7ad5dde5d9fd0705cfc9f72 | | | ++--------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) AaveUSDCn USDC (GYRO) | USDC 2000.0(2000000000) | balancer | 2 | 2 | +| | 0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d | | 0x1ac56a36591c39dd5acebe56d52f1cd9adfaaead8098a41601f888b93ee30c2f | | | ++--------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) AaveUSDT USDT (GYRO) | USDC 2000.0(2000000000) | balancer | 2 | 3 | +| | 0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f | | 0xaf072ace313d3280e049c2b734b94177778350c8fd05de0b1d5984a08ae0c52c | | | ++--------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/brib_rebate_handling/04-2024/04-17-2024_BribePlacements.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `7b4dee92b3e4aa1e3cd41d3569ec243ba7ea1ace` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/eb5971dd-8464-4166-b438-30bab329df04) +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | [ | | | +| | | | "raw:10000000000, 18 decimals:1e-08, 6 decimals: 10000.0" | | | +| | | | ], | | | +| | | | [ | | | +| | | | 10000000000 | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/brib_rebate_handling/04-2024/04_27_2024_BribePlacement.json b/MaxiOps/brib_rebate_handling/04-2024/04_27_2024_BribePlacement.json new file mode 100644 index 000000000..b40c25bf1 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/04_27_2024_BribePlacement.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714218881978, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x1cd9224cf7bc433ae652ba379b4fde8e7c69af76b806d9c3756cb00650b03995" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "value": "6000000000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "bytes32", "name": "_proposal", "type": "bytes32" }, + { "internalType": "address", "name": "_token", "type": "address" }, + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { "internalType": "uint256", "name": "_periods", "type": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc362e6802fb412ec08f8981ccdeef80ae55266edd7ad5dde5d9fd0705cfc9f72", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/brib_rebate_handling/04-2024/04_27_2024_BribePlacement.report.txt b/MaxiOps/brib_rebate_handling/04-2024/04_27_2024_BribePlacement.report.txt new file mode 100644 index 000000000..b533ee46e --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/04_27_2024_BribePlacement.report.txt @@ -0,0 +1,34 @@ +FILENAME: `MaxiOps/brib_rebate_handling/04-2024/04_27_2024_BribePlacement.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b967081b899a5fbff1a21ef6644f99b7d0970195` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/199549b8-a845-4f7f-befb-4344b1d4f9fd) +``` ++--------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+=========================+====================================================================+===========+============+ +| depositBribe | (A) AaveUSDCn AaveUSDT (GYROE) | USDC 6000.0(6000000000) | balancer | 2 | 1 | +| | 0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514 | | 0xc362e6802fb412ec08f8981ccdeef80ae55266edd7ad5dde5d9fd0705cfc9f72 | | | ++--------------+--------------------------------------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/brib_rebate_handling/04-2024/04_27_2024_BribePlacement.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b967081b899a5fbff1a21ef6644f99b7d0970195` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/08cb5bbc-e1e9-49ea-8f41-1ba9a3d4678c) +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | [ | | | +| | | | "raw:6000000000, 18 decimals:6E-9, 6 decimals: 6000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/brib_rebate_handling/04-2024/Bribe_Refund_April2024.md b/MaxiOps/brib_rebate_handling/04-2024/Bribe_Refund_April2024.md new file mode 100644 index 000000000..cf52e86c5 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/Bribe_Refund_April2024.md @@ -0,0 +1,23 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address](https://etherscan.io/address/0xe00fe722e5be7ad45b1a16066e431e47df476cec#readContract) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Update for Round dated April 12th. 2024 + +Transaction: https://etherscan.io/tx/0x5c7f30e694594d579cad4108cdaf4d27ce9ca9992949859c28f90e706c6b93ec + +Net Transfer to HH: 327,169.65 - 3% of Transfer: 9,815 + +### Final amount for April 2024 after April 26th round. + +Transaction: https://etherscan.io/tx/0x467e3fb4bd27ed8107d831899d525c551d833bcb572586d2d8ad7fb3e8e24f92 + +Net Transfer to HH: 396,507.47 - 3% of Transfer: 11,895 + +Rolling bribe refund: 9,815 + 11,895 = 21,710 + +*Total bribe refund for April 2024: 21,710 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/04-2024/Send_3200_USDC_Arbitrum_Injector_JitoSOL.json b/MaxiOps/brib_rebate_handling/04-2024/Send_3200_USDC_Arbitrum_Injector_JitoSOL.json new file mode 100644 index 000000000..88a6c0ab7 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/Send_3200_USDC_Arbitrum_Injector_JitoSOL.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1714608098342, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb2a33b8870b2d78395b8ed46606583616387dfab6be49098d6e57fe20b9687b8" + }, + "transactions": [ + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "3200000000" + } + } + ] +} diff --git a/MaxiOps/brib_rebate_handling/04-2024/Send_3200_USDC_Arbitrum_Injector_JitoSOL.report.txt b/MaxiOps/brib_rebate_handling/04-2024/Send_3200_USDC_Arbitrum_Injector_JitoSOL.report.txt new file mode 100644 index 000000000..b0b74280d --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/Send_3200_USDC_Arbitrum_Injector_JitoSOL.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/brib_rebate_handling/04-2024/Send_3200_USDC_Arbitrum_Injector_JitoSOL.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ec2da853cfb73a5756c617f3a11828085a06ea48` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5f25f90e-af3a-40b3-b066-3150d18242cb) +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+====================================================================================================+==========================+=======+============+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector:0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 | 3200.0 (RAW: 3200000000) | N/A | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-------+------------+ +``` diff --git a/MaxiOps/brib_rebate_handling/04-2024/Send_4000_USDC_Base_Injector_weETH.json b/MaxiOps/brib_rebate_handling/04-2024/Send_4000_USDC_Base_Injector_weETH.json new file mode 100644 index 000000000..3511f1ff3 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/Send_4000_USDC_Base_Injector_weETH.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1715221531171, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "", + "checksum": "0x9b57f790161734a276edcc3577d771af07c2f53d0f9a5e0ba449f52ce1cd6636" + }, + "transactions": [ + { + "to": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A", + "value": "4000000000" + } + } + ] +} diff --git a/MaxiOps/brib_rebate_handling/04-2024/Send_4000_USDC_Base_Injector_weETH.report.txt b/MaxiOps/brib_rebate_handling/04-2024/Send_4000_USDC_Base_Injector_weETH.report.txt new file mode 100644 index 000000000..7cbe7131a --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/Send_4000_USDC_Base_Injector_weETH.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/brib_rebate_handling/04-2024/Send_4000_USDC_Base_Injector_weETH.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `ec2da853cfb73a5756c617f3a11828085a06ea48` +CHAIN(S): `base` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/0a5acde2-cf38-4a53-8459-759f4bca5331) +``` ++------------+-------------------------------------------------+-----------------------------------------------------------------------------------+--------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+===================================================================================+==========================+=======+============+ +| transfer | USDC:0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | maxiKeepers/gaugeRewardsInjectors/usdc:0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A | 4000.0 (RAW: 4000000000) | N/A | 0 | ++------------+-------------------------------------------------+-----------------------------------------------------------------------------------+--------------------------+-------+------------+ +``` diff --git a/MaxiOps/brib_rebate_handling/04-2024/Send_6400_USDC_Arbitrum_Injector_JitoSOL.json b/MaxiOps/brib_rebate_handling/04-2024/Send_6400_USDC_Arbitrum_Injector_JitoSOL.json new file mode 100644 index 000000000..538ec4857 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/Send_6400_USDC_Arbitrum_Injector_JitoSOL.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1714608098342, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xb2a33b8870b2d78395b8ed46606583616387dfab6be49098d6e57fe20b9687b8" + }, + "transactions": [ + { + "to": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "6400000000" + } + } + ] +} diff --git a/MaxiOps/brib_rebate_handling/04-2024/Send_6400_USDC_Arbitrum_Injector_JitoSOL.report.txt b/MaxiOps/brib_rebate_handling/04-2024/Send_6400_USDC_Arbitrum_Injector_JitoSOL.report.txt new file mode 100644 index 000000000..1fa8ff087 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/04-2024/Send_6400_USDC_Arbitrum_Injector_JitoSOL.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/brib_rebate_handling/04-2024/Send_6400_USDC_Arbitrum_Injector_JitoSOL.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ec2da853cfb73a5756c617f3a11828085a06ea48` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/7d3c44bf-fb79-403b-ac3f-a24288a355b9) +``` ++------------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+====================================================================================================+==========================+=======+============+ +| transfer | USDC:0xaf88d065e77c8cC2239327C5EDb3A432268e5831 | maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector:0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 | 6400.0 (RAW: 6400000000) | N/A | 0 | ++------------+-------------------------------------------------+----------------------------------------------------------------------------------------------------+--------------------------+-------+------------+ +``` diff --git a/MaxiOps/brib_rebate_handling/05-2024/Bribe_Refund_May2024.md b/MaxiOps/brib_rebate_handling/05-2024/Bribe_Refund_May2024.md new file mode 100644 index 000000000..711409aa9 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/05-2024/Bribe_Refund_May2024.md @@ -0,0 +1,23 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address](https://etherscan.io/address/0xe00fe722e5be7ad45b1a16066e431e47df476cec#readContract) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Update for Round dated May 11th 2024 + +Transaction: https://etherscan.io/tx/0x259e69d6be71100e9bae11883b3cd1478d28fe8d5b8df4dbf34d39beada6dc08 + +Net Transfer to HH: 217,546.3857 - 3% of Transfer: 6,526.39 + +### Final amount for May 2024 after May 24th round. + +Transaction: https://etherscan.io/tx/0x7643f66c8ff30c4c5db1455c1194f43eceb759e53b3f9d9978ad4f372211036d + +Net Transfer to HH: 226,749.7897 - 3% of Transfer: 6,802.50 + +Rolling bribe refund: 6,526.39 + 6,802.50 = 13,329 + +*Total bribe refund for May 2024: 13,329 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/06-2024/Bribe_Refund_June2024.md b/MaxiOps/brib_rebate_handling/06-2024/Bribe_Refund_June2024.md new file mode 100644 index 000000000..314b5b25d --- /dev/null +++ b/MaxiOps/brib_rebate_handling/06-2024/Bribe_Refund_June2024.md @@ -0,0 +1,23 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address](https://etherscan.io/address/0xe00fe722e5be7ad45b1a16066e431e47df476cec#readContract) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Update for Round dated June 8th 2024 + +Transaction: https://etherscan.io/tx/0x16aed919b90b152dedbc2a3871893cf88b13b31d24b73d05d768303a2fd795e8 + +Net Transfer to HH: 229,119.20479 - 3% of Transfer: 6,873.57 + +### Final amount for June 2024 after June 21st round. + +Transaction: https://etherscan.io/tx/0x846c3ef2b5fff0878cdfe52aa5cb7e99c0d5b0d1af16cffd02c8320b7e29c859 + +Net Transfer to HH: 247,606.304199 - 3% of Transfer: 7,428.19 + +Rolling bribe refund: 6,873.57 + 7,428.19 = 14,302.76 + +*Total bribe refund for June 2024: 14,302.76 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/07-2024/Bribe_Refund_July2024.md b/MaxiOps/brib_rebate_handling/07-2024/Bribe_Refund_July2024.md new file mode 100644 index 000000000..8465f9e87 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/07-2024/Bribe_Refund_July2024.md @@ -0,0 +1,23 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address](https://etherscan.io/address/0xe00fe722e5be7ad45b1a16066e431e47df476cec#readContract) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Update for Round dated July 5th 2024 + +Transaction: https://etherscan.io/tx/0x4aa385412e3330994bc5891b20800bdba99cdcf16c899e2d8fe17facd9808494 + +Net Transfer to HH: 267,940.346096 - 3% of Transfer: 8,038.21 + +### Final amount for July 2024 after July 19th round. + +Transaction: https://etherscan.io/tx/0x1381528040b284d776577ed1a5dce0c2116eb6bd67da186443a4955639a5abaa + +Net Transfer to HH: 171,216.449598 - 3% of Transfer: 5,136.49 + +Rolling bribe refund: 8,038.21 + 5,136.49 = 13,174.70 + +*Total bribe refund for July 2024: 13,174.70 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/08-2024/Bribe_Refund_August2024.md b/MaxiOps/brib_rebate_handling/08-2024/Bribe_Refund_August2024.md new file mode 100644 index 000000000..e7848a243 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/08-2024/Bribe_Refund_August2024.md @@ -0,0 +1,31 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address](https://etherscan.io/address/0xe00fe722e5be7ad45b1a16066e431e47df476cec#readContract) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Round dated August 2nd 2024 + +Transaction: https://etherscan.io/tx/0x9c868532e6e63caedadcfa045358ab198ccedb023409e6918a74d88449465de4 + +Net Transfer to HH: 143,480.94 - 3% of Transfer: 4304.43 + +### Round dated August 16th 2024 + +Transaction: https://etherscan.io/tx/0x5770eaba88b4df765346357da702040ed8687ea236da0cf583de5fa40ac01063 + +Net Transfer to HH: 216,820.191 - 3% of Transfer: 6504.61 + +### Round dated August 30th 2024 + +Transaction: https://etherscan.io/tx/0x573dfed5b227e613075785a0542fd86fde998f9418f05504074f3d5b93901bb5 + +Net Transfer to HH: 170,779.188297 - 3% of Transfer: 5,123.37 + +### Grand totals for HH refund, August 2024 + +Net Transfer to HH: 531080.319297 + +*Total bribe refund for Augsut 2024 (3%): 15932.41 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/09-2024/BAL-USDC-Cow-Swap-Exchange.json b/MaxiOps/brib_rebate_handling/09-2024/BAL-USDC-Cow-Swap-Exchange.json new file mode 100644 index 000000000..4327bc24a --- /dev/null +++ b/MaxiOps/brib_rebate_handling/09-2024/BAL-USDC-Cow-Swap-Exchange.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726769011858, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xae08639b180faa75a651c306aa01fcbc95e439a7b3d7f4b063ad18d11ce0f923" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "amount": "18918919000000000000000" + } + } + ] +} diff --git a/MaxiOps/brib_rebate_handling/09-2024/BAL-USDC-Cow-Swap-Exchange.report.txt b/MaxiOps/brib_rebate_handling/09-2024/BAL-USDC-Cow-Swap-Exchange.report.txt new file mode 100644 index 000000000..c9f1b5ac3 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/09-2024/BAL-USDC-Cow-Swap-Exchange.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/brib_rebate_handling/09-2024/BAL-USDC-Cow-Swap-Exchange.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `7e0067064a89758283ac98f6c02e9040b13ea4dd` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e895e961-f1e3-4980-92bc-9ec601efb38b) + +``` ++----------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+-----+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | multisigs/lm:0xc38c5f97B34E175FFd35407fc91a937300E33860 | 18918.919 (RAW: 18918919000000000000000) | N/A | 0 | ++----------+------------------------------------------------+---------------------------------------------------------+------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/brib_rebate_handling/09-2024/Bribe_Refund_September2024.md b/MaxiOps/brib_rebate_handling/09-2024/Bribe_Refund_September2024.md new file mode 100644 index 000000000..d9d94d53e --- /dev/null +++ b/MaxiOps/brib_rebate_handling/09-2024/Bribe_Refund_September2024.md @@ -0,0 +1,25 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address](https://etherscan.io/address/0xe00fe722e5be7ad45b1a16066e431e47df476cec#readContract) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Round dated September 13th 2024 + +Transaction: https://etherscan.io/tx/0x2d368255396e45c6a0ddae5c8533e2554feae5c84d471641193b59932c16256d + +Net Transfer to HH: 147,295.18 - 3% of Transfer: 4418.85 + +### Round dated September 27th 2024 + +Transaction: https://etherscan.io/tx/0x23e99630f58bc4c9a5754f284c6e0468cdeb8cc904afe7a44491e61ca4a2cb7b + +Net Transfer to HH: 127,799.44 - 3% of Transfer: 3833.98 + +### Grand totals for HH refund, September 2024 + +Net Transfer to HH: 275094.62 + +*Total bribe refund for September 2024 (3%): 8252.83 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/10-2024/Bribe_Refund_October2024.md b/MaxiOps/brib_rebate_handling/10-2024/Bribe_Refund_October2024.md new file mode 100644 index 000000000..5ed7311b0 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/10-2024/Bribe_Refund_October2024.md @@ -0,0 +1,25 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address](https://etherscan.io/address/0xe00fe722e5be7ad45b1a16066e431e47df476cec#readContract) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Round dated October 10th 2024 + +Transaction: https://etherscan.io/tx/0xfc03bfa98caa93397e20ce9bf942b1a767a5d2a0955c8910339ea4c7aae9f34b + +Net Transfer to HH: 142,233.13 - 3% of Transfer: 4266.99 + +### Round dated October 25th 2024 + +Transaction: https://etherscan.io/tx/0xd077349c1c8898c272bd45108218a6d40c2c68a8624172e2ada56b074f0f6567 + +Net Transfer to HH: 146,194.787099 - 3% of Transfer: 4385.84 + +### Grand totals for HH refund, September 2024 + +Net Transfer to HH: 288427.912099 + +*Total bribe refund for October 2024 (3%): 8652.83 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/11-2204/Bribe_Refund_November2024.md b/MaxiOps/brib_rebate_handling/11-2204/Bribe_Refund_November2024.md new file mode 100644 index 000000000..e95826302 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/11-2204/Bribe_Refund_November2024.md @@ -0,0 +1,25 @@ +# Bribe rebates + +Bribe rebates will be 3% of the total amount of tokens Balancer sends specifically to Hidden Hand during each month. For example in this txn: https://etherscan.io/tx/0xff71dd036a7db0c9289722bd62b22bb9ac55cc12774571e8f5f03db5b719486c the total amount sent by the Balancer: Protocol Fees Multisig was 327,937.028191 USDC, however the net transfer to the Hidden Hand contract was 163,968.549999 USDC which is what the refund would be based on. + +### Asking for rebates + +The current process for requesting rebates is the collect the transactions from a given month from the [Protocol Fees Multisig](https://etherscan.io/address/0x7c68c42de679ffb0f16216154c996c354cf1161b) contract address on etherscan. Once the Maxis have the transactions they will totalize the amount send to [Hidden hand's contract address](https://etherscan.io/address/0xe00fe722e5be7ad45b1a16066e431e47df476cec#readContract) and share the transaction links, totaly bribe amount, and refund amount (bribes * 0.03) for the given month. + +### Round dated November 7th 2024 + +Transaction: https://etherscan.io/tx/0x2ebe215590f33876766097e5e49f90689bc4f44f170f6841e9e5d8055c07e5ff + +Net Transfer to HH: 138,729.20 - 3% of Transfer: 4161.87 + +### Round dated November 22nd 2024 + +Transaction: https://etherscan.io/tx/0x4e3fcfc04b9719f032b1e7c554d794ea223c51fdbdb17e2cdb07952c674f033e + +Net Transfer to HH: 280,804.2395 - 3% of Transfer: 8424.13 + +### Grand totals for HH refund, November 2024 + +Net Transfer to HH: 419533.4395 + +*Total bribe refund for November 2024 (3%): 12586.00 USDC* \ No newline at end of file diff --git a/MaxiOps/brib_rebate_handling/Legacy/Bribe Refund December 2023.json b/MaxiOps/brib_rebate_handling/Legacy/Bribe Refund December 2023.json new file mode 100644 index 000000000..119615e3c --- /dev/null +++ b/MaxiOps/brib_rebate_handling/Legacy/Bribe Refund December 2023.json @@ -0,0 +1,114 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1705881710179, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa0cba566c99896a5d7f3bfb9794b95f97fa529372a75f1dddaa96b0a330d2a40" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "newImplementation": "", + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "value": "18755020000" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8755000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/brib_rebate_handling/Legacy/Bribe Refund December 2023.report.txt b/MaxiOps/brib_rebate_handling/Legacy/Bribe Refund December 2023.report.txt new file mode 100644 index 000000000..9f2349060 --- /dev/null +++ b/MaxiOps/brib_rebate_handling/Legacy/Bribe Refund December 2023.report.txt @@ -0,0 +1,35 @@ +FILENAME: `MaxiOps/01-2024/Bribe Refund December 2023.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ee26950033e73d2534a27f188f19ba1242fb20bc` +CHAIN(S): `mainnet` +``` ++--------------+---------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+=======================================+=========================+====================================================================+===========+============+ +| depositBribe | ComposableStable rETH/weETH | USDC 4000.0(4000000000) | aura | 2 | 1 | +| | Not Found | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+---------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable RDNT-WETH/plsRDNT | USDC 6000.0(6000000000) | aura | 2 | 2 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+---------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC 8755.0(8755000000) | aura | 2 | 3 | +| | Not Found | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+---------------------------------------+-------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/01-2024/Bribe Refund December 2023.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `ee26950033e73d2534a27f188f19ba1242fb20bc` +CHAIN(S): `mainnet` +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "newImplementation": "", | | | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "value": "18755020000" | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/chainlinkAutomation/change_forwarder_usdc_injector_gno.json b/MaxiOps/chainlinkAutomation/change_forwarder_usdc_injector_gno.json new file mode 100644 index 000000000..06af15f6c --- /dev/null +++ b/MaxiOps/chainlinkAutomation/change_forwarder_usdc_injector_gno.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1726054496497, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0x0d67514658807d8388819a0c777240657cfc7f3736f69a7586ee9f3423f59880" + }, + "transactions": [ + { + "to": "0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x00B58Cc97dDb8865DED9b1d4f79A81c45d23c96d" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/change_forwarder_usdc_injector_gno.report.txt b/MaxiOps/chainlinkAutomation/change_forwarder_usdc_injector_gno.report.txt new file mode 100644 index 000000000..c41af20fa --- /dev/null +++ b/MaxiOps/chainlinkAutomation/change_forwarder_usdc_injector_gno.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/chainlinkAutomation/change_forwarder_usdc_injector_gno.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `efa0a69c37c63612d6040a055ed24ffda9003f76` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d17a7f19-e9f6-418a-beda-255896d61cf7) + +``` ++--------------------------+------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------------------+------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +| setKeeperRegistryAddress | 0x87c921be1fd8ee7E5eda4394aDB849DB72847aE9 (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x00B58Cc97dDb8865DED9b1d4f79A81c45d23c96d (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++--------------------------+------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_1.json b/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_1.json new file mode 100644 index 000000000..52ee250c8 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_1.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1720446355402, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x376b99aad2d92f5f625145f2cdc4228815f4ce23bc8e3e1241d8a60368b371c2" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_1.report.txt b/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_1.report.txt new file mode 100644 index 000000000..9a8a350ae --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_1.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_1.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/4a375e7e-029d-49b7-9966-26d6a25a5cc1) +``` ++-------------------+------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| transferOwnership | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+------------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_2.json b/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_2.json new file mode 100644 index 000000000..c39426724 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_2.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1720446355402, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x376b99aad2d92f5f625145f2cdc4228815f4ce23bc8e3e1241d8a60368b371c2" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_2.report.txt b/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_2.report.txt new file mode 100644 index 000000000..4f2eed87b --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_2.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/loose_ends_arb1_2.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/0ec40b11-3278-47f3-9483-9fa4ac238a96) +``` ++-----------------+------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| acceptOwnership | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2 (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | 0 | "N/A" | N/A | N/A | ++-----------------+------------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_1.json b/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_1.json new file mode 100644 index 000000000..b98658aa1 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_1.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1720427523549, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xc4ba6fb543ca49a6140ae0a3e2a23b3e7ad2c68f778212dc8e1b206afb47860a" + }, + "transactions": [ + { + "to": "0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_1.report.txt b/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_1.report.txt new file mode 100644 index 000000000..358039a69 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_1.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_1.json` +MULTISIG: `multisigs/lm (polygon:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `polygon` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/bb7dec4f-5985-4666-b78c-309950e77cff) +``` ++-------------------+---------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+---------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| transferOwnership | 0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79 (maxiKeepers/gaugeRewardsInjectors/wmatic) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+---------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_2.json b/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_2.json new file mode 100644 index 000000000..8b27e2f2a --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_2.json @@ -0,0 +1,68 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1720446104533, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x8aa52fdcf764ba7f7559003b1cb600e05c315af8f4aff58604383995dfaad57d" + }, + "transactions": [ + { + "to": "0x08a8eea76D2395807Ce7D1FC942382515469cCA1", + "value": "0", + "data": "0x744bfe61b85c6cd900000000000000000000000042b230ef457e927d56e259ba3c3a8ed30000000000000000000000009ff471f9f98f42e5151c7855fd1b5aa906b1af7e", + "contractMethod": { + "inputs": [], + "name": "ArrayHasNoEntries", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipients", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "minBalanceWei", + "type": "uint96", + "internalType": "uint96" + }, + { + "name": "topUpToAmountWei", + "type": "uint96", + "internalType": "uint96" + } + ], + "name": "addRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0x53a806789BBfd366d9dEB9Cbe5d622089e845fdb]", + "minBalanceWei": "15000000000000000000", + "topUpToAmountWei": "20000000000000000000" + } + }, + { + "to": "0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_2.report.txt b/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_2.report.txt new file mode 100644 index 000000000..946a1c683 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_2.report.txt @@ -0,0 +1,24 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/loose_ends_polygon_2.json` +MULTISIG: `multisigs/vote_incentive_recycling (polygon:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `polygon` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/bfec23b8-9921-4461-b603-a86e7e054eef) +``` ++-------------------+---------------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+---------------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| ArrayHasNoEntries | 0x08a8eea76D2395807Ce7D1FC942382515469cCA1 (chainlink/keeper_registry_v2_1) | 0 | "0x744bfe61b85c6cd900000000000000000000000042b230ef457e927d56e259ba3c3a8ed30000000000000000000000009ff471f9f98f42e5151c7855fd1b5aa906b1af7e" | N/A | N/A | +| addRecipients | 0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0x53a806789BBfd366d9dEB9Cbe5d622089e845fdb (EOA/maxi_deployers/tritium)" | | | +| | | | ], | | | +| | | | "minBalanceWei": [ | | | +| | | | "15000000000000000000" | | | +| | | | ], | | | +| | | | "topUpToAmountWei": [ | | | +| | | | "raw:20000000000000000000, 18 decimals:20, 6 decimals: 20000000000000" | | | +| | | | ] | | | +| | | | } | | | +| acceptOwnership | 0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79 (maxiKeepers/gaugeRewardsInjectors/wmatic) | 0 | "N/A" | N/A | N/A | ++-------------------+---------------------------------------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part1.json b/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part1.json new file mode 100644 index 000000000..da4734b06 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part1.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1717673949347, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8a8ae976d3ab15c13c3522686607899fed67798c7e2fd345d34eee2b67e2aa3e" + }, + "transactions": [ + { + "to": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperAddress", + "payable": false + }, + "contractInputsValues": { + "keeperAddress": "0xA8c886e17f44c4b710d139E24F260A123E583D1C" + } + }, + { + "to": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part1.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part1.report.txt new file mode 100644 index 000000000..13c949a8a --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part1.report.txt @@ -0,0 +1,21 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part1.json` +MULTISIG: `multisigs/lm (polygon:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `polygon` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/af173f37-e4d4-4741-a021-0445d2314a2f) +``` ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| setKeeperAddress | 0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "keeperAddress": [ | | | +| | | | "0xA8c886e17f44c4b710d139E24F260A123E583D1C (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part2.json b/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part2.json new file mode 100644 index 000000000..c6ea0668e --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part2.json @@ -0,0 +1,37 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1717674719187, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x041e4a9811e5c132339b771af07c1721b8b431f82593eaa42fe0fb21940b9e96" + }, + "transactions": [ + { + "to": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x08a8eea76D2395807Ce7D1FC942382515469cCA1", + "value": "0", + "data": "0xc8048022b85c6cd900000000000000000000000042b230ef457e927d56e259ba3c3a8ed3", + "contractMethod": { + "inputs": [], + "name": "ArrayHasNoEntries", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part2.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part2.report.txt new file mode 100644 index 000000000..f5dfaa645 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part2.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_gas_polygon_part2.json` +MULTISIG: `multisigs/vote_incentive_recycling (polygon:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `polygon` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/6e96de25-112c-4f5b-9c36-84f06a3af0d5) +``` ++-------------------+-----------------------------------------------------------------------------+-------+------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+-----------------------------------------------------------------------------+-------+------------------------------------------------------------------------------+------------+----------+ +| acceptOwnership | 0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F (maxiKeepers/gasStation) | 0 | "N/A" | N/A | N/A | +| ArrayHasNoEntries | 0x08a8eea76D2395807Ce7D1FC942382515469cCA1 (chainlink/keeper_registry_v2_1) | 0 | "0xc8048022b85c6cd900000000000000000000000042b230ef457e927d56e259ba3c3a8ed3" | N/A | N/A | ++-------------------+-----------------------------------------------------------------------------+-------+------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part1.json b/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part1.json new file mode 100644 index 000000000..6cd1fd4a4 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part1.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1718210246681, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "0x5eaa35980ffba8f091e95ef94993a9e825bb88198dde0b27681c263777360de5" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x9465eD2edD1428CF7d1151f6376ba2C7dfcda466" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part1.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part1.report.txt new file mode 100644 index 000000000..62bc0e94e --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part1.report.txt @@ -0,0 +1,21 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part1.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/72a9fd59-e339-44f9-878f-a08f46ccb446) +``` ++--------------------------+--------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------------------+--------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| setKeeperRegistryAddress | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x9465eD2edD1428CF7d1151f6376ba2C7dfcda466 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++--------------------------+--------------------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part2.json b/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part2.json new file mode 100644 index 000000000..27340329c --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part2.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1718210405132, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x92a14c7c8a998fd771ce54b457f8bf7c9ee5f77ce5ae86e88e02193fec2f31bb" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part2.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part2.report.txt new file mode 100644 index 000000000..e86b919fc --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part2.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_injector_arb1_part2.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `arbitrum` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/9cc68b99-44a6-4aaa-9e4e-be98ac4e4c6d) +``` ++-----------------+--------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+--------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| acceptOwnership | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | "N/A" | N/A | N/A | ++-----------------+--------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part1.json b/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part1.json new file mode 100644 index 000000000..8ce114d0f --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part1.json @@ -0,0 +1,219 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1718216835367, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x6a7db7d984daafe735726a3a9b4ec3ae358ebcf8719f19f6f3a15f18bb52e187" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x53AD3148Dd5783ea760072C0fD5d9A86021598C5" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "keeperRegistryAddress", + "type": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0xf60A86480b845750373F0fF249cb052E519a35d8" + } + }, + { + "to": "0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "keeperRegistryAddress", + "type": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0xd99F8A5f151b2806a1f075bD97f998E81771ad32" + } + }, + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x95008946F2773f24588AEEE44d643016381265FF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x9A9e9124CC043332E08b5333c78036244e95930E" + } + }, + { + "to": "0x95008946F2773f24588AEEE44d643016381265FF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x2ddE382f350241DbF00bc9B192dc53E3dbd58996" + } + }, + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x10087761Ebd0Da939d2123A0B18D69F11f5Ea67f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x822352259CBE2f610C8D99a97Ad560D9d0a13AB0" + } + }, + { + "to": "0x10087761Ebd0Da939d2123A0B18D69F11f5Ea67f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part1.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part1.report.txt new file mode 100644 index 000000000..65eb6efa7 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part1.report.txt @@ -0,0 +1,71 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part1.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `avalanche` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/a9c35451-4cd8-4333-9277-6af7158c3f57) +``` ++--------------------------+---------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------------------+---------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| setKeeperRegistryAddress | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/avax) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x53AD3148Dd5783ea760072C0fD5d9A86021598C5 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/avax) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | +| setKeeperRegistryAddress | 0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5 (maxiKeepers/gaugeRewardsInjectors/usdc) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0xf60A86480b845750373F0fF249cb052E519a35d8 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5 (maxiKeepers/gaugeRewardsInjectors/usdc) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | +| setKeeperRegistryAddress | 0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE (maxiKeepers/gaugeRewardsInjectors/qi) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0xd99F8A5f151b2806a1f075bD97f998E81771ad32 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE (maxiKeepers/gaugeRewardsInjectors/qi) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | +| setKeeperRegistryAddress | 0x95008946F2773f24588AEEE44d643016381265FF (maxiKeepers/gaugeRewardsInjectors/yyavax) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x9A9e9124CC043332E08b5333c78036244e95930E (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0x95008946F2773f24588AEEE44d643016381265FF (maxiKeepers/gaugeRewardsInjectors/yyavax) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | +| setKeeperRegistryAddress | 0x39C441560e83e02452e4B4789934aC031A85c1d5 (maxiKeepers/gaugeRewardsInjectors/ggp) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x2ddE382f350241DbF00bc9B192dc53E3dbd58996 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0x39C441560e83e02452e4B4789934aC031A85c1d5 (maxiKeepers/gaugeRewardsInjectors/ggp) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | +| setKeeperRegistryAddress | 0x10087761Ebd0Da939d2123A0B18D69F11f5Ea67f (maxiKeepers/gaugeRewardsInjectors/ankr) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x822352259CBE2f610C8D99a97Ad560D9d0a13AB0 (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0x10087761Ebd0Da939d2123A0B18D69F11f5Ea67f (maxiKeepers/gaugeRewardsInjectors/ankr) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++--------------------------+---------------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part2.json b/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part2.json new file mode 100644 index 000000000..895526b33 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part2.json @@ -0,0 +1,81 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1718217245497, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x3b7c97a64d9d6de7f5f385867d5407b74278ee0fb43e1c29841c044c0f24029c" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x95008946F2773f24588AEEE44d643016381265FF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x10087761Ebd0Da939d2123A0B18D69F11f5Ea67f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part2.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part2.report.txt new file mode 100644 index 000000000..70238e5ee --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part2.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_injectors_avax_part2.json` +MULTISIG: `multisigs/vote_incentive_recycling (avalanche:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `avalanche` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/aea53bfc-d2b1-4485-9052-50c6bf59f1e1) +``` ++-----------------+---------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+---------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| acceptOwnership | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/avax) | 0 | "N/A" | N/A | N/A | +| acceptOwnership | 0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5 (maxiKeepers/gaugeRewardsInjectors/usdc) | 0 | "N/A" | N/A | N/A | +| acceptOwnership | 0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE (maxiKeepers/gaugeRewardsInjectors/qi) | 0 | "N/A" | N/A | N/A | +| acceptOwnership | 0x95008946F2773f24588AEEE44d643016381265FF (maxiKeepers/gaugeRewardsInjectors/yyavax) | 0 | "N/A" | N/A | N/A | +| acceptOwnership | 0x39C441560e83e02452e4B4789934aC031A85c1d5 (maxiKeepers/gaugeRewardsInjectors/ggp) | 0 | "N/A" | N/A | N/A | +| acceptOwnership | 0x10087761Ebd0Da939d2123A0B18D69F11f5Ea67f (maxiKeepers/gaugeRewardsInjectors/ankr) | 0 | "N/A" | N/A | N/A | ++-----------------+---------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part1.json b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part1.json new file mode 100644 index 000000000..8f996406c --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part1.json @@ -0,0 +1,64 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718374455159, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90b3a77a95b4dac16871cb3b9fa6452d54cf4535f016b07e6911487884643fb4" + }, + "transactions": [ + { + "to": "0xdDd5FF0E581f097573B13f247F6BE736f602F839", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + }, + { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_keeperRegistry", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistry", + "payable": false + }, + "contractInputsValues": { + "_keeperRegistry": "0x4249093e75b2eECA9f3ba3171eA1f3fA186ABE9D" + } + }, + { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part1.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part1.report.txt new file mode 100644 index 000000000..52fd35eb5 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part1.report.txt @@ -0,0 +1,26 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part1.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/0d3cd0b5-0ac0-4c35-9505-e9e4a5678fcc) +``` ++-------------------+------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| transferOwnership | 0xdDd5FF0E581f097573B13f247F6BE736f602F839 (maxiKeepers/LZRateProviderPoker) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | +| setKeeperRegistry | 0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 (maxiKeepers/veBalFeeInjector) | 0 | { | N/A | N/A | +| | | | "_keeperRegistry": [ | | | +| | | | "0x4249093e75b2eECA9f3ba3171eA1f3fA186ABE9D (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 (maxiKeepers/veBalFeeInjector) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+------------------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part2.json b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part2.json new file mode 100644 index 000000000..703e02add --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part2.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718374706344, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x8925d4b1be872c5d132f3bcb556074f35f7bb15b51851f3cc3c9b85a0e15e7b1" + }, + "transactions": [ + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperAddress", + "payable": false + }, + "contractInputsValues": { + "keeperAddress": "0x9795368b9DA5caaE45f214fF1d2Fdf0c9bbC56aa" + } + }, + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part2.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part2.report.txt new file mode 100644 index 000000000..966695954 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part2.report.txt @@ -0,0 +1,21 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part2.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/64041807-2149-4d18-9a58-0806a7399f0b) +``` ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| setKeeperAddress | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "keeperAddress": [ | | | +| | | | "0x9795368b9DA5caaE45f214fF1d2Fdf0c9bbC56aa (N/A)" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part3.json b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part3.json new file mode 100644 index 000000000..09d766a6a --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part3.json @@ -0,0 +1,48 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1718374806036, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xffc32fa0727c637535d7c6008ac69dc70c3aee816c5609f0898649b3a5a65b9a" + }, + "transactions": [ + { + "to": "0xdDd5FF0E581f097573B13f247F6BE736f602F839", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part3.report.txt b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part3.report.txt new file mode 100644 index 000000000..f8c0fb841 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part3.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/chainlinkAutomation/migration/migrate_mainnet_part3.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `3de641ac92ce18ed743e92f1cf30312ae5fba46a` +CHAIN(S): `mainnet` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/59658658-c224-4775-9ba9-7f64bf1ff083) +``` ++-----------------+------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+------------------------------------------------------------------------------+-------+--------+------------+----------+ +| acceptOwnership | 0xdDd5FF0E581f097573B13f247F6BE736f602F839 (maxiKeepers/LZRateProviderPoker) | 0 | "N/A" | N/A | N/A | +| acceptOwnership | 0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 (maxiKeepers/veBalFeeInjector) | 0 | "N/A" | N/A | N/A | +| acceptOwnership | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 0 | "N/A" | N/A | N/A | ++-----------------+------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/top_up_arb_injector.json b/MaxiOps/chainlinkAutomation/top_up_arb_injector.json new file mode 100644 index 000000000..ca97eaab7 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/top_up_arb_injector.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722942173369, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xfe7ea49014a7b7aed6f3b8419c3ecf307c3856df72bc2faad72ee7718ef4feeb" + }, + "transactions": [ + { + "to": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "_to", "type": "address" }, + { "internalType": "uint256", "name": "_value", "type": "uint256" }, + { "internalType": "bytes", "name": "_data", "type": "bytes" } + ], + "name": "transferAndCall", + "payable": false + }, + "contractInputsValues": { + "_to": "0x37D9dC70bfcd8BC77Ec2858836B923c560E891D1", + "_value": "3000000000000000000", + "_data": "0x478c776000000000000000000000000015883228345c62d279ec41332795cc0f" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/top_up_arb_injector.report.txt b/MaxiOps/chainlinkAutomation/top_up_arb_injector.report.txt new file mode 100644 index 000000000..a94722d14 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/top_up_arb_injector.report.txt @@ -0,0 +1,22 @@ +FILENAME: `MaxiOps/chainlinkAutomation/top_up_arb_injector.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `fd264df1f3edb886aec2c4eee92e3689797ba09d` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fa0b5a9a-13a9-4f4e-8d1d-6d2c7931940f) +``` ++-----------------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +| transferAndCall | 0xf97f4df75117a78c1A5a0DBb814Af92458539FB4 (tokens/LINK) | 0 | { | N/A | N/A | +| | | | "_to": [ | | | +| | | | "0x37D9dC70bfcd8BC77Ec2858836B923c560E891D1 (chainlink/keeper_registry_v2_1)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:3000000000000000000, 18 decimals:3, 6 decimals: 3000000000000" | | | +| | | | ], | | | +| | | | "_data": [ | | | +| | | | "0x478c776000000000000000000000000015883228345c62d279ec41332795cc0f" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/top_up_mainnet_injector.json b/MaxiOps/chainlinkAutomation/top_up_mainnet_injector.json new file mode 100644 index 000000000..31cd1a8ad --- /dev/null +++ b/MaxiOps/chainlinkAutomation/top_up_mainnet_injector.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1725273660000, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xfe7ea49014a7b7aed6f3b8419c3ecf307c3856df72bc2faad72ee7718ef4feeb" + }, + "transactions": [ + { + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "_to", "type": "address" }, + { "internalType": "uint256", "name": "_value", "type": "uint256" }, + { "internalType": "bytes", "name": "_data", "type": "bytes" } + ], + "name": "transferAndCall", + "payable": false + }, + "contractInputsValues": { + "_to": "0x6593c7De001fC8542bB1703532EE1E5aA0D458fD", + "_value": "29374524208930386049", + "_data": "0xb3a45aa200000000000000000000000064390479ca16bb95a2186594458c7697" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/top_up_mainnet_injector.report.txt b/MaxiOps/chainlinkAutomation/top_up_mainnet_injector.report.txt new file mode 100644 index 000000000..7cb7ff37d --- /dev/null +++ b/MaxiOps/chainlinkAutomation/top_up_mainnet_injector.report.txt @@ -0,0 +1,22 @@ +FILENAME: `MaxiOps/chainlinkAutomation/top_up_mainnet_injector.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `f8fdb5ea576c43e502007b68cb4551aac916c3f5` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ed887dec-541f-4337-87f2-c097276ce026) +``` ++-----------------+----------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+----------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------+------------+----------+ +| transferAndCall | 0x514910771AF9Ca656af840dff83E8264EcF986CA (tokens/LINK) | 0 | { | N/A | N/A | +| | | | "_to": [ | | | +| | | | "0x6593c7De001fC8542bB1703532EE1E5aA0D458fD (chainlink/keeper_registry_v2_1)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:29374524208930386049, 18 decimals:29.374524208930386049, 6 decimals: 29374524208930.386049" | | | +| | | | ], | | | +| | | | "_data": [ | | | +| | | | "0xb3a45aa200000000000000000000000064390479ca16bb95a2186594458c7697" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+----------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/chainlinkAutomation/top_up_usdc_injector.json b/MaxiOps/chainlinkAutomation/top_up_usdc_injector.json new file mode 100644 index 000000000..3616134ad --- /dev/null +++ b/MaxiOps/chainlinkAutomation/top_up_usdc_injector.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "8453", + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "_to", "type": "address" }, + { "internalType": "uint256", "name": "_value", "type": "uint256" }, + { "internalType": "bytes", "name": "_data", "type": "bytes" } + ], + "name": "transferAndCall", + "payable": false + }, + "contractInputsValues": { + "_to": "0xE226D5aCae908252CcA3F6CEFa577527650a9e1e", + "_value": "2000000000000000000", + "_data": "0x6057da51000000000000000000000000578c2b1c69c675cfbcacaa2ee863ddcb" + } + } + ] +} diff --git a/MaxiOps/chainlinkAutomation/top_up_usdc_injector.report.txt b/MaxiOps/chainlinkAutomation/top_up_usdc_injector.report.txt new file mode 100644 index 000000000..6d35600a2 --- /dev/null +++ b/MaxiOps/chainlinkAutomation/top_up_usdc_injector.report.txt @@ -0,0 +1,22 @@ +FILENAME: `MaxiOps/chainlinkAutomation/top_up_usdc_injector.json` +MULTISIG: `multisigs/vote_incentive_recycling (base:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `fd264df1f3edb886aec2c4eee92e3689797ba09d` +CHAIN(S): `base` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/176fc5ca-507f-4799-83d6-f94df0683315) +``` ++-----------------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +| transferAndCall | 0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196 (tokens/LINK) | 0 | { | N/A | N/A | +| | | | "_to": [ | | | +| | | | "0xE226D5aCae908252CcA3F6CEFa577527650a9e1e (chainlink/keeper_registry_v2_1)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:2000000000000000000, 18 decimals:2, 6 decimals: 2000000000000" | | | +| | | | ], | | | +| | | | "_data": [ | | | +| | | | "0x6057da51000000000000000000000000578c2b1c69c675cfbcacaa2ee863ddcb" | | | +| | | | ] | | | +| | | | } | | | ++-----------------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-01-18/2024-01-19-fee-distro.json b/MaxiOps/feeDistributions/2024-01-18/2024-01-19-fee-distro.json new file mode 100644 index 000000000..20bd02161 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-01-18/2024-01-19-fee-distro.json @@ -0,0 +1,2566 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "182699940001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "63945030000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5410020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9772850000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "692740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1317140000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4188160000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "386220000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2553530000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3533210000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2375340000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1587400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4300620000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2879270000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "995480000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1117090000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1974510000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3144280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "922630000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "18400490000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "897270000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2243880000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1548450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "638480000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1659280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "713400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3606160000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "563730000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2611850000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "931650000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6512480000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5936310000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10723550000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1445280000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4595580000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "418840000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2801930000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3876910000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2606420000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1741830000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4718990000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3159370000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1092320000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1225760000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2166590000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3450150000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1012390000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "20190470000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "984550000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2462160000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1699080000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "700590000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1820700000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "782800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3956970000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "618570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2865930000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1022290000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7146000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "118755036187" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "5142406141036717730233" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-01-18/2024-01-19-fee-distro.report.txt b/MaxiOps/feeDistributions/2024-01-18/2024-01-19-fee-distro.report.txt new file mode 100644 index 000000000..977c572d5 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-01-18/2024-01-19-fee-distro.report.txt @@ -0,0 +1,211 @@ +FILENAME: `MaxiOps/01-2024/MOPS-001/2024-01-19-fee-distro.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `9fb1965e8e1f27792c9772bf77b0a59b117e0c33` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 63945.03 (RAW: 63945030000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 118755.036187 (RAW: 118755036187) | N/A | 59 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 5142.406141036718 (RAW: 5142406141036717730233) | N/A | 60 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/01-2024/MOPS-001/2024-01-19-fee-distro.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `9fb1965e8e1f27792c9772bf77b0a59b117e0c33` +CHAIN(S): `mainnet` +``` ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+============================+====================================================================+===========+============+ +| depositBribe | WETH wstETH | USDC 5410.02(5410020000) | balancer | 2 | 2 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH WETH | USDC 9772.85(9772850000) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH swETH | USDC 692.74(692740000) | balancer | 2 | 4 | +| | 0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca | | 0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | cbETH wstETH (GYROE) | USDC 1317.14(1317140000) | balancer | 2 | 5 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 4188.16(4188160000) | balancer | 2 | 6 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | staFi rETH WETH | USDC 386.22(386220000) | balancer | 2 | 7 | +| | 0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445 | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 2553.53(2553530000) | balancer | 2 | 8 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-50% STG-50% | USDC 3533.21(3533210000) | balancer | 2 | 9 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 2375.34(2375340000) | balancer | 2 | 10 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 1587.4(1587400000) | balancer | 2 | 11 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH wstETH sfrxETH | USDC 4300.62(4300620000) | balancer | 2 | 12 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% RDNT-80% | USDC 2879.27(2879270000) | balancer | 2 | 13 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH weETH | USDC 995.48(995480000) | balancer | 2 | 14 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH rETH | USDC 1117.09(1117090000) | balancer | 2 | 15 | +| | 0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497 | | 0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH WETH | USDC 1974.51(1974510000) | balancer | 2 | 16 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH cbETH wstETH | USDC 3144.28(3144280000) | balancer | 2 | 17 | +| | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | | 0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) USDC DAI USDT USDC.e | USDC 922.63(922630000) | balancer | 2 | 18 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 18400.49(18400490000) | balancer | 2 | 19 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sfrxETH rETH wstETH | USDC 897.27(897270000) | balancer | 2 | 20 | +| | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | | 0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 2243.88(2243880000) | balancer | 2 | 21 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) RDNT-WETH plsRDNT | USDC 1548.45(1548450000) | balancer | 2 | 22 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 638.48(638480000) | balancer | 2 | 23 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC stMATIC (GYROE) | USDC 1659.28(1659280000) | balancer | 2 | 24 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 713.4(713400000) | balancer | 2 | 25 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) MaticX WMATIC | USDC 3606.16(3606160000) | balancer | 2 | 26 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH cbETH | USDC 563.73(563730000) | balancer | 2 | 27 | +| | 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026 | | 0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) sAVAX WAVAX | USDC 2611.85(2611850000) | balancer | 2 | 28 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX ggAVAX | USDC 931.65(931650000) | balancer | 2 | 29 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 6512.48(6512480000) | balancer | 2 | 30 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/wstETH | USDC 5936.31(5936310000) | aura | 1 | 31 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable rETH/WETH | USDC 10723.55(10723550000) | aura | 1 | 32 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe cbETH/wstETH | USDC 1445.28(1445280000) | aura | 1 | 33 | +| | Not Found | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 4595.58(4595580000) | aura | 1 | 34 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable StaFi rETH/WETH | USDC 418.84(418840000) | aura | 1 | 35 | +| | Not Found | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/ankrETH | USDC 2801.93(2801930000) | aura | 1 | 36 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 USDC/STG | USDC 3876.91(3876910000) | aura | 1 | 37 | +| | Not Found | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 2606.42(2606420000) | aura | 1 | 38 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 1741.83(1741830000) | aura | 1 | 39 | +| | Not Found | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/wstETH/sfrxETH | USDC 4718.99(4718990000) | aura | 1 | 40 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 3159.37(3159370000) | aura | 1 | 41 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/weETH | USDC 1092.32(1092320000) | aura | 1 | 42 | +| | Not Found | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable WETH/rETH | USDC 1225.76(1225760000) | aura | 1 | 43 | +| | Not Found | | 0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/WETH | USDC 2166.59(2166590000) | aura | 1 | 44 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC 3450.15(3450150000) | aura | 1 | 45 | +| | Not Found | | 0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable USDC/DAI/USDT/USDC.e | USDC 1012.39(1012390000) | aura | 1 | 46 | +| | Not Found | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 20190.47(20190470000) | aura | 1 | 47 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable sfrxETH/rETH/wstETH | USDC 984.55(984550000) | aura | 1 | 48 | +| | Not Found | | 0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ankrETH/wstETH | USDC 2462.16(2462160000) | aura | 1 | 49 | +| | Not Found | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable RDNT-WETH/plsRDNT | USDC 1699.08(1699080000) | aura | 1 | 50 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC 700.59(700590000) | aura | 1 | 51 | +| | Not Found | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 1820.7(1820700000) | aura | 1 | 52 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/MaticX | USDC 782.8(782800000) | aura | 1 | 53 | +| | Not Found | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable MaticX/WMATIC | USDC 3956.97(3956970000) | aura | 1 | 54 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | b-ComposableStable WETH/cbETH | USDC 618.57(618570000) | aura | 1 | 55 | +| | Not Found | | 0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC 2865.93(2865930000) | aura | 1 | 56 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable WAVAX/ggAVAX | USDC 1022.29(1022290000) | aura | 1 | 57 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 7146.0(7146000000) | aura | 1 | 58 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/01-2024/MOPS-001/2024-01-19-fee-distro.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `9fb1965e8e1f27792c9772bf77b0a59b117e0c33` +CHAIN(S): `mainnet` +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "182699940001" | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.json b/MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.json new file mode 100644 index 000000000..6bb5da791 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.json @@ -0,0 +1,1649 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "rawAmount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "160608280001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "56212870000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7313180000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7243930000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "867270000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1401400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "493710000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1653510000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "780490000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1714530000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1509230000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3382500000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "838160000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "930490000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7305240000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1332880000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1660790000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2457750000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "942130000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6909180000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1293230000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1201330000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2773250000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "832170000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1565450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "726350000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3189850000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "570730000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "648260000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2279800000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1542690000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7248640000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4886330000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8162510000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8085210000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1564170000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "551040000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1845540000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "871140000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1913650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1684510000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3775330000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "935510000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1038550000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8153650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1487670000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1853660000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2743180000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7711590000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1443430000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1340840000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3094830000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "928820000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1747260000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "810710000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3560310000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2544560000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1721860000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8090480000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5453820000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "104395313595" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "1684954064413597328243" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.report.txt b/MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.report.txt new file mode 100644 index 000000000..183f870a4 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.report.txt @@ -0,0 +1,214 @@ +FILENAME: `MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `7b828db5cbef6b3ecf37b3fd13ab99c4df6e87ca` +CHAIN(S): `mainnet` +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+==================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 56212.87 (RAW: 56212870000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 104395.313595 (RAW: 104395313595) | N/A | 60 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 1684.9540644135973 (RAW: 1684954064413597328243) | N/A | 61 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `7b828db5cbef6b3ecf37b3fd13ab99c4df6e87ca` +CHAIN(S): `mainnet` +``` ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+==========================+====================================================================+===========+============+ +| depositBribe | WETH wstETH | USDC 7313.18(7313180000) | balancer | 2 | 2 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH rETH | USDC 7243.93(7243930000) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH cbETH (GYROE) | USDC 867.27(867270000) | balancer | 2 | 4 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 1401.4(1401400000) | balancer | 2 | 5 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC USDT GHO | USDC 493.71(493710000) | balancer | 2 | 6 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 1653.51(1653510000) | balancer | 2 | 7 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RPL-50% rETH-50% | USDC 780.49(780490000) | balancer | 2 | 8 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-50% STG-50% | USDC 1714.53(1714530000) | balancer | 2 | 9 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 1509.23(1509230000) | balancer | 2 | 10 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sfrxETH rETH wstETH | USDC 3382.5(3382500000) | balancer | 2 | 11 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RDNT-80% WETH-20% | USDC 838.16(838160000) | balancer | 2 | 12 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH weETH | USDC 930.49(930490000) | balancer | 2 | 13 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ezETH WETH | USDC 7305.24(7305240000) | balancer | 2 | 14 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH rETH | USDC 1332.88(1332880000) | balancer | 2 | 15 | +| | 0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497 | | 0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH WETH | USDC 1660.79(1660790000) | balancer | 2 | 16 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH cbETH wstETH | USDC 2457.75(2457750000) | balancer | 2 | 17 | +| | 0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481 | | 0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) DAI USDT USDC.e USDC | USDC 942.13(942130000) | balancer | 2 | 18 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 6909.18(6909180000) | balancer | 2 | 19 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH wstETH sfrxETH | USDC 1293.23(1293230000) | balancer | 2 | 20 | +| | 0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e | | 0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 1201.33(1201330000) | balancer | 2 | 21 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) RDNT-WETH plsRDNT | USDC 2773.25(2773250000) | balancer | 2 | 22 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 832.17(832170000) | balancer | 2 | 23 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC stMATIC (GYROE) | USDC 1565.45(1565450000) | balancer | 2 | 24 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 726.35(726350000) | balancer | 2 | 25 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) MaticX WMATIC | USDC 3189.85(3189850000) | balancer | 2 | 26 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH cbETH | USDC 570.73(570730000) | balancer | 2 | 27 | +| | 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026 | | 0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 648.26(648260000) | balancer | 2 | 28 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) sAVAX WAVAX | USDC 2279.8(2279800000) | balancer | 2 | 29 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) ggAVAX WAVAX | USDC 1542.69(1542690000) | balancer | 2 | 30 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX yyAVAX | USDC 7248.64(7248640000) | balancer | 2 | 31 | +| | 0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f | | 0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 4886.33(4886330000) | balancer | 2 | 32 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/wstETH | USDC 8162.51(8162510000) | aura | 1 | 33 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/rETH | USDC 8085.21(8085210000) | aura | 1 | 34 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 1564.17(1564170000) | aura | 1 | 35 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDC/USDT/GHO | USDC 551.04(551040000) | aura | 1 | 36 | +| | Not Found | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/ankrETH | USDC 1845.54(1845540000) | aura | 1 | 37 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 RPL/rETH | USDC 871.14(871140000) | aura | 1 | 38 | +| | Not Found | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 USDC/STG | USDC 1913.65(1913650000) | aura | 1 | 39 | +| | Not Found | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 1684.51(1684510000) | aura | 1 | 40 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable sfrxETH/rETH/wstETH | USDC 3775.33(3775330000) | aura | 1 | 41 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 935.51(935510000) | aura | 1 | 42 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/weETH | USDC 1038.55(1038550000) | aura | 1 | 43 | +| | Not Found | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ezETH/WETH | USDC 8153.65(8153650000) | aura | 1 | 44 | +| | Not Found | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable WETH/rETH | USDC 1487.67(1487670000) | aura | 1 | 45 | +| | Not Found | | 0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/WETH | USDC 1853.66(1853660000) | aura | 1 | 46 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC 2743.18(2743180000) | aura | 1 | 47 | +| | Not Found | | 0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 7711.59(7711590000) | aura | 1 | 48 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable rETH/wstETH/sfrxETH | USDC 1443.43(1443430000) | aura | 1 | 49 | +| | Not Found | | 0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ankrETH/wstETH | USDC 1340.84(1340840000) | aura | 1 | 50 | +| | Not Found | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable RDNT-WETH/plsRDNT | USDC 3094.83(3094830000) | aura | 1 | 51 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC 928.82(928820000) | aura | 1 | 52 | +| | Not Found | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 1747.26(1747260000) | aura | 1 | 53 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/MaticX | USDC 810.71(810710000) | aura | 1 | 54 | +| | Not Found | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable MaticX/WMATIC | USDC 3560.31(3560310000) | aura | 1 | 55 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC 2544.56(2544560000) | aura | 1 | 56 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC 1721.86(1721860000) | aura | 1 | 57 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable WAVAX/yyAVAX | USDC 8090.48(8090480000) | aura | 1 | 58 | +| | Not Found | | 0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 5453.82(5453820000) | aura | 1 | 59 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+--------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-01-18/2024-02-01/2024-02-02.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `7b828db5cbef6b3ecf37b3fd13ab99c4df6e87ca` +CHAIN(S): `mainnet` +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": "160608280001" | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-01-18/2024-02-01/fees_2024-01-18_2024-02-01.json b/MaxiOps/feeDistributions/2024-01-18/2024-02-01/fees_2024-01-18_2024-02-01.json new file mode 100644 index 000000000..91accc345 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-01-18/2024-02-01/fees_2024-01-18_2024-02-01.json @@ -0,0 +1,9 @@ +{ + "mainnet": 148028.84, + "arbitrum": 80013.42, + "polygon": 23199.86, + "base": 2437.97, + "gnosis": 20680.3, + "avalanche": 46856.05, + "zkevm": 0 +} diff --git a/MaxiOps/feeDistributions/2024-01-18/2024-02-01/incentives_2024-01-18_2024-02-01.csv b/MaxiOps/feeDistributions/2024-01-18/2024-02-01/incentives_2024-01-18_2024-02-01.csv new file mode 100644 index 000000000..ae421df65 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-01-18/2024-02-01/incentives_2024-01-18_2024-02-01.csv @@ -0,0 +1,55 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives +0xe1f2c039a68a216de6dd427be6c60decf405762a00000000000000000000000e,zkevm,B-wstETH-STABLE,588.26,0.00,0.00,0,0,0,0.00,0 +0x1d0a8a31cdb04efac3153237526fb15cc65a252000000000000000000000000f,zkevm,B-rETH-STABLE,345.34,0.00,0.00,0,0,0,0.00,0 +0xdf725fde6e89981fb30d9bf999841ac2c160b512000000000000000000000010,zkevm,B-wstETH/rETH-STABLE,178.25,0.00,0.00,0,0,0,0.00,0 +0x65da876a95cd5b6a5880710628c436409b1b29fa00000000000000000000005b,zkevm,wstETH/ankrETH ,141.28,0.00,0.00,0,0,0,0.00,0 +0xb1557cfea06de5a1601a7f0ccf3b515ef431a50d000200000000000000000059,zkevm,ECLP-wETH-rETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,2817.61,4387.60,2362.56,6750.16,3560.31,3189.85,0,0 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,1382.77,2153.26,1159.45,3312.71,1747.26,1565.45,0,0 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,641.59,999.09,537.97,1537.06,810.71,726.35,0,0 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,24458.84,9888.97,5324.83,15475.69,8162.51,7313.18,261.88,0 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,24432.30,9878.24,5319.05,15458.89,8153.65,7305.24,261.59,0 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,24227.24,9795.34,5274.41,15329.14,8085.21,7243.93,259.39,0 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,11312.73,4573.86,2462.85,7157.83,3775.33,3382.50,121.12,0 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,5734.24,2318.42,1248.38,3628.18,1913.65,1714.53,61.39,0 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,5530.12,2235.89,1203.94,3499.05,1845.54,1653.51,59.22,0 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,5047.59,2040.80,1098.89,3193.74,1684.51,1509.23,54.05,0 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,4687.00,1895.00,1020.39,2965.58,1564.17,1401.40,50.19,0 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,3112.00,1258.22,677.50,1969.04,1038.55,930.49,33.32,0 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,2803.24,1133.38,610.28,1773.67,935.51,838.16,30.01,0 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,2610.35,1055.39,568.29,1651.63,871.14,780.49,27.95,0 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,1651.20,667.60,359.48,1044.75,551.04,493.71,17.68,0 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,1370.71,554.19,298.41,867.27,0,867.27,14.67,0 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,776.73,314.04,169.10,0,0,0,-483.14,0 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,703.80,284.55,153.22,0,0,0,-437.78,0 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,407.94,164.93,88.81,0,0,0,-253.75,0 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,125.03,50.55,27.22,0,0,0,-77.77,0 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,0.00,0.00,0.00,0,0,0,0.00,0 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,0.00,0.00,0.00,0,0,0,0.00,0 +0x37b18b10ce5635a84834b26095a0ae5639dcb7520000000000000000000005cb,mainnet,ETHx-WETH-BPT,0.00,0.00,0.00,0,0,0,0.00,0 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x127ecc2318d002664cc4515c9f2b22b09b6aea85000200000000000000000602,mainnet,ECLP-swETH-wstETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x35c5c8c7b77942f9d44b535fa590d8b503b2b00c00000000000000000000060d,mainnet,DUSD/sDAI,0.00,0.00,0.00,0,0,0,0.00,0 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,3963.72,6721.10,3619.05,10340.15,5453.82,4886.33,0,0 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,358.10,391.51,210.81,648.26,0,648.26,45.93,0 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,315.27,344.69,185.60,570.73,0,570.73,40.44,0 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,51.35,56.14,30.23,0,0,0,-86.37,0 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,30688.42,9965.64,5366.11,15339.12,8090.48,7248.64,7.36,0 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,9651.94,3134.33,1687.72,4824.36,2544.56,2279.80,2.31,0 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,6531.26,2120.94,1142.04,3264.55,1721.86,1542.69,1.57,0 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,22.49,7.30,3.93,0,0,0,-11.24,0 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,26033.81,9502.79,5116.89,14620.77,7711.59,6909.18,1.09,0 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,10448.73,3813.97,2053.67,5868.08,3094.83,2773.25,0.44,0 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,arbitrum,wstETH/rETH/cbETH,9260.79,3380.35,1820.19,5200.93,2743.18,2457.75,0.39,0 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,6257.85,2284.22,1229.97,3514.45,1853.66,1660.79,0.26,0 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,arbitrum,rETH-WETH-BPT,5022.29,1833.22,987.12,2820.55,1487.67,1332.88,0.21,0 +0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e,arbitrum,wstETH/rETH/sfrxETH,4872.92,1778.70,957.76,2736.66,1443.43,1293.23,0.20,0 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,4526.60,1652.29,889.69,2542.17,1340.84,1201.33,0.19,0 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,3135.63,1144.56,616.30,1760.99,928.82,832.17,0.13,0 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,1677.56,612.34,329.72,942.13,0,942.13,0.07,0 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,5.28,1.93,1.04,0,0,0,-2.97,0 +0x6b9f3f6b9054a45702d3f2c6e3d32a60204934cb0000000000000000000004a7,arbitrum,USDF/USDC,0.00,0.00,0.00,0,0,0,0.00,0 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xc757f12694f550d0985ad6e1019c4db4a803f1600002000000000000000004de,arbitrum,50wstETH/50sFRAX,0.00,0.00,0.00,0,0,0,0.00,0 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,0.00,0.00,0.00,0,0,0,0.00,0 diff --git a/MaxiOps/feeDistributions/2024-01-18/incentives_2024-01-04_2024-01-18.csv b/MaxiOps/feeDistributions/2024-01-18/incentives_2024-01-04_2024-01-18.csv new file mode 100644 index 000000000..cef6b859a --- /dev/null +++ b/MaxiOps/feeDistributions/2024-01-18/incentives_2024-01-04_2024-01-18.csv @@ -0,0 +1,55 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives +0xe1f2c039a68a216de6dd427be6c60decf405762a00000000000000000000000e,zkevm,B-wstETH-STABLE,967.59,0.00,0.00,0,0,0,0.00,0 +0x65da876a95cd5b6a5880710628c436409b1b29fa00000000000000000000005b,zkevm,wstETH/ankrETH ,261.24,0.00,0.00,0,0,0,0.00,0 +0x1d0a8a31cdb04efac3153237526fb15cc65a252000000000000000000000000f,zkevm,B-rETH-STABLE,252.14,0.00,0.00,0,0,0,0.00,0 +0xdf725fde6e89981fb30d9bf999841ac2c160b512000000000000000000000010,zkevm,B-wstETH/rETH-STABLE,153.40,0.00,0.00,0,0,0,0.00,0 +0xb1557cfea06de5a1601a7f0ccf3b515ef431a50d000200000000000000000059,zkevm,ECLP-wETH-rETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,3099.62,4916.04,2647.10,7563.13,3956.97,3606.16,0,0 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,1426.21,2261.99,1217.99,3479.98,1820.70,1659.28,0,0 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,613.19,972.53,523.67,1496.20,782.80,713.40,0,0 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,25133.41,13247.93,7133.50,20496.40,10723.55,9772.85,114.97,0 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,13913.26,7333.74,3948.94,11346.33,5936.31,5410.02,63.65,0 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,11060.17,5829.86,3139.16,9019.61,4718.99,4300.62,50.59,0 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,10770.94,5677.41,3057.07,8783.74,4595.58,4188.16,49.26,0 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,9086.56,4789.57,2579.00,7410.12,3876.91,3533.21,41.56,0 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,7404.79,3903.10,2101.67,6038.64,3159.37,2879.27,33.87,0 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,6567.05,3461.52,1863.90,5355.46,2801.93,2553.53,30.04,0 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,6108.83,3219.99,1733.84,4981.76,2606.42,2375.34,27.93,0 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,4082.42,2151.86,1158.69,3329.23,1741.83,1587.40,18.67,0 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,3387.39,1785.51,961.43,2762.42,1445.28,1317.14,15.48,0 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,2560.14,1349.46,726.63,2087.80,1092.32,995.48,11.71,0 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,987.20,520.36,280.19,805.06,418.84,386.22,4.51,0 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,849.46,447.75,241.10,692.74,0,692.74,3.89,0 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,211.58,111.52,60.05,0,0,0,-171.58,0 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,150.80,79.49,42.80,0,0,0,-122.29,0 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,110.97,58.49,31.50,0,0,0,-89.99,0 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,55.57,29.29,15.77,0,0,0,-45.06,0 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,38.75,20.43,11.00,0,0,0,-31.42,0 +0x35c5c8c7b77942f9d44b535fa590d8b503b2b00c00000000000000000000060d,mainnet,DUSD/sDAI,5.95,3.14,1.69,0,0,0,-4.83,0 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,1.25,0.66,0.35,0,0,0,-1.01,0 +0x37b18b10ce5635a84834b26095a0ae5639dcb7520000000000000000000005cb,mainnet,ETHx-WETH-BPT,0.00,0.00,0.00,0,0,0,0.00,0 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x127ecc2318d002664cc4515c9f2b22b09b6aea85000200000000000000000602,mainnet,ECLP-swETH-wstETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x6aa6d7542310cdc75d1179b8729e1e6ec8d42bf100020000000000000000064b,mainnet,50wstETH/50sDAI,0.00,0.00,0.00,0,0,0,0.00,0 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,4679.52,8878.01,4780.47,13658.48,7146.00,6512.48,0,0 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,659.96,414.40,223.14,1182.30,618.57,563.73,544.76,0 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,502.77,315.70,169.99,0,0,0,-485.69,0 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,61.15,38.40,20.68,0,0,0,-59.07,0 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,11121.19,3498.06,1883.57,5477.78,2865.93,2611.85,96.15,0 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,3966.98,1247.77,671.88,1953.94,1022.29,931.65,34.29,0 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,229.07,72.05,38.80,0,0,0,-110.85,0 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,40.48,12.73,6.86,0,0,0,-19.59,0 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,63733.45,25014.43,13469.31,38590.96,20190.47,18400.49,107.22,0 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,arbitrum,wstETH/rETH/cbETH,10890.79,4274.47,2301.64,6594.43,3450.15,3144.28,18.32,0 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,7772.10,3050.43,1642.54,4706.04,2462.16,2243.88,13.07,0 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,6839.08,2684.24,1445.36,4141.10,2166.59,1974.51,11.50,0 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,5363.34,2105.03,1133.48,3247.53,1699.08,1548.45,9.02,0 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,arbitrum,rETH-WETH-BPT,3869.24,1518.62,817.72,2342.85,1225.76,1117.09,6.51,0 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,3195.70,1254.26,675.37,1935.02,1012.39,922.63,5.38,0 +0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e,arbitrum,wstETH/rETH/sfrxETH,3107.85,1219.78,656.81,1881.82,984.55,897.27,5.23,0 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,2211.49,867.98,467.37,1339.07,700.59,638.48,3.72,0 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,298.04,116.98,62.99,0,0,0,-179.96,0 +0xc757f12694f550d0985ad6e1019c4db4a803f1600002000000000000000004de,arbitrum,50wstETH/50sFRAX,0.03,0.01,0.01,0,0,0,-0.02,0 +0x6b9f3f6b9054a45702d3f2c6e3d32a60204934cb0000000000000000000004a7,arbitrum,USDF/USDC,0.00,0.00,0.00,0,0,0,0.00,0 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,0.00,0.00,0.00,0,0,0,0.00,0 diff --git a/MaxiOps/feeDistributions/2024-02-15/2024-02-15.csv b/MaxiOps/feeDistributions/2024-02-15/2024-02-15.csv new file mode 100644 index 000000000..22bc34e10 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-02-15/2024-02-15.csv @@ -0,0 +1,100 @@ +target,platform,amount +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,9421.08 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,7873.74 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,15052.88 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,12580.57 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0.00 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,614.93 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1545.56 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,1291.72 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,1676.99 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1401.56 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,0.00 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,538.38 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1676.34 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1401.01 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,759.92 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,635.11 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,1691.12 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,1413.37 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,1460.86 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1220.92 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,3343.05 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,2793.98 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,4722.81 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,3947.13 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,aura,0 +0x274fDa0D445097DCcC55c7F7EF85bFd3877a132e,balancer,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0.00 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,586.62 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,aura,0 +0x17748Aa07A6a1Be2ACE8bCC546919C006B40De34,balancer,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,0.00 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,574.63 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0.00 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,645.74 +0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7,aura,0 +0x08e179Cf6F2Ca5dff67E93CdfBE2a29B2d8A27F7,balancer,0 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,4650.52 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,3886.72 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,548.97 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,458.81 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,4885.48 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,4083.09 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,1411.20 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,1179.43 +0xb6d101874B975083C76598542946Fe047f059066,aura,2014.03 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1683.25 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,2361.55 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,1973.69 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,515.50 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,430.84 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,2892.21 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,2417.19 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,1204.05 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,1006.30 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,1629.18 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1361.61 +0x25DDcad849de576c2A6c124984cE59e62739156D,aura,0 +0x25DDcad849de576c2A6c124984cE59e62739156D,balancer,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,1579.86 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,1320.39 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,931.87 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,778.81 +0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C,aura,0 +0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C,balancer,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,aura,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,626.14 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,523.31 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,1288.63 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,1076.99 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,4404.10 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,3680.76 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0.00 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,698.62 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0.00 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,653.78 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,3909.51 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,3267.41 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,1178.18 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,984.67 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,5887.13 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,4920.22 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,55010.90 diff --git a/MaxiOps/feeDistributions/2024-02-15/2024-02-15.json b/MaxiOps/feeDistributions/2024-02-15/2024-02-15.json new file mode 100644 index 000000000..cc9141253 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-02-15/2024-02-15.json @@ -0,0 +1,2824 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "157174020001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "55010900000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7873740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12580570000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "614930000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1291720000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1401560000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "538380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1401010000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "635110000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1413370000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1220920000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2793980000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3947130000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe4ea1699072d6b6a3b7c7e80706b196ead8584eb63a672d97387a07d795d933c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "586620000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "574630000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf512ca7f2d414492b70978b612f9ebe6efbe83be25c331b17db20d6c5eae5882", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "645740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3886720000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "458810000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4083090000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1179430000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1683250000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1973690000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "430840000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2417190000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1006300000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1361610000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1320390000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "778810000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "523309999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1076990000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3680760000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "698620000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "653780000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3267410000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "984670000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4920220000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9421080000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15052880000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1545560000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1676990000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1676340000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "759920000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1691120000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1460860000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3343050000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4722810000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4650520000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "548970000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4885480000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8fa8199f3926a4e1048eab281d39fcf042c5feea80597755519f20c4fddab3fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1411200000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2014030000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa1ae73fc2037997412080a182f3db06fe5e7e7121bb4b9bc228f08a07b9c3887", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2361550000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "515500000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2892210000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x42e0c242632907b2865144dd52d04fb87913874d10e6e198cc9b59ba339857d4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1204050000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1629180000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1579860000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "931870000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "626140000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1288630000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4404100000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3909510000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1178180000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5887130000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "102163210524" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "1539434328927433831049" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-02-15/incentives_2024-02-01_2024-02-15.csv b/MaxiOps/feeDistributions/2024-02-15/incentives_2024-02-01_2024-02-15.csv new file mode 100644 index 000000000..dbe3ac6db --- /dev/null +++ b/MaxiOps/feeDistributions/2024-02-15/incentives_2024-02-01_2024-02-15.csv @@ -0,0 +1,50 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,3672.91,5255.16,2829.70,8084.86,4404.10,3680.76,0,0 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,1074.69,1537.65,827.97,2365.62,1288.63,1076.99,0,0 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,522.19,747.14,402.31,1149.45,626.14,523.31,0,0 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,35842.40,17930.69,9654.99,27633.45,15052.88,12580.57,47.77,0 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,22432.51,11222.20,6042.72,17294.82,9421.08,7873.74,29.90,0 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,11632.83,5819.50,3133.57,8968.57,4885.48,4083.09,15.50,0 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,11245.48,5625.72,3029.23,8669.94,4722.81,3947.13,14.99,0 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,11073.36,5539.61,2982.87,8537.24,4650.52,3886.72,14.76,0 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,7960.13,3982.17,2144.25,6137.03,3343.05,2793.98,10.61,0 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,4026.72,2014.43,1084.69,3104.49,1691.12,1413.37,5.37,0 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,3993.09,1997.60,1075.63,3078.55,1676.99,1401.56,5.32,0 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,3991.52,1996.82,1075.21,3077.35,1676.34,1401.01,5.32,0 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,3680.14,1841.04,991.33,2837.28,1545.56,1291.72,4.90,0 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,3478.44,1740.14,937.00,2681.78,1460.86,1220.92,4.64,0 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,1809.45,905.20,487.42,1395.03,759.92,635.11,2.41,0 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,1307.16,653.93,352.11,1007.78,548.97,458.81,1.74,0 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,837.56,419.00,225.62,645.74,0,645.74,1.12,0 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,797.61,399.02,214.85,614.93,0,614.93,1.06,0 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,760.89,380.65,204.96,586.62,0,586.62,1.01,0 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,745.34,372.87,200.77,574.63,0,574.63,0.99,0 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,698.32,349.34,188.11,538.38,0,538.38,0.93,0 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,218.72,109.42,58.92,0,0,0,-168.34,0 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.00,0.00,0,0,0,0.00,0 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,0.00,0.00,0.00,0,0,0,0.00,0 +0x37b18b10ce5635a84834b26095a0ae5639dcb7520000000000000000000005cb,mainnet,ETHx-WETH-BPT,0.00,0.00,0.00,0,0,0,0.00,0 +0x127ecc2318d002664cc4515c9f2b22b09b6aea85000200000000000000000602,mainnet,ECLP-swETH-wstETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x35c5c8c7b77942f9d44b535fa590d8b503b2b00c00000000000000000000060d,mainnet,DUSD/sDAI,0.00,0.00,0.00,0,0,0,0.00,0 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,4489.60,7024.78,3782.57,10807.35,5887.13,4920.22,0,0 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,375.03,425.19,228.95,698.62,0,698.62,44.48,0 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,350.96,397.90,214.25,653.78,0,653.78,41.63,0 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,49.37,55.97,30.14,0,0,0,-86.11,0 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,13480.55,4420.15,2380.08,7176.92,3909.51,3267.41,376.69,0 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,4062.55,1332.07,717.27,2162.85,1178.18,984.67,113.51,0 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,937.05,307.25,165.44,0,0,0,-472.69,0 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,34.71,11.38,6.13,0,0,0,-17.51,0 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,8978.10,3450.84,1858.15,5309.40,2892.21,2417.19,0.41,0 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,arbitrum,wstETH/rETH/cbETH,7330.82,2817.69,1517.22,4335.24,2361.55,1973.69,0.33,0 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,6252.05,2403.05,1293.95,3697.28,2014.03,1683.25,0.28,0 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,5057.37,1943.86,1046.70,2990.79,1629.18,1361.61,0.23,0 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,4904.28,1885.02,1015.01,2900.25,1579.86,1320.39,0.22,0 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,arbitrum,rETH-WETH-BPT,4380.71,1683.78,906.65,2590.63,1411.20,1179.43,0.20,0 +0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e,arbitrum,wstETH/rETH/sfrxETH,3737.66,1436.62,773.56,2210.35,1204.05,1006.30,0.17,0 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,2892.74,1111.86,598.69,1710.68,931.87,778.81,0.13,0 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,1600.25,615.08,331.19,946.34,515.50,430.84,0.07,0 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,3.47,1.33,0.72,0,0,0,-2.05,0 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,0.01,0.00,0.00,0,0,0,-0.01,0 +0x6b9f3f6b9054a45702d3f2c6e3d32a60204934cb0000000000000000000004a7,arbitrum,USDF/USDC,0.00,0.00,0.00,0,0,0,0.00,0 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xc757f12694f550d0985ad6e1019c4db4a803f1600002000000000000000004de,arbitrum,50wstETH/50sFRAX,0.00,0.00,0.00,0,0,0,0.00,0 diff --git a/MaxiOps/feeDistributions/2024-02-29/2024-02-29.csv b/MaxiOps/feeDistributions/2024-02-29/2024-02-29.csv new file mode 100644 index 000000000..767501783 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-02-29/2024-02-29.csv @@ -0,0 +1,112 @@ +target,platform,amount +0x79eF6103A513951a3b25743DB509E267685726B7,aura,15489.04 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,11959.67 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,3525.15 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,2721.91 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,5088.92 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,3929.34 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0.00 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,576.13 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,10614.18 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,8195.61 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,7520.47 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,5806.84 +0xe6281Fc01607366794597d7fA6b32931fF986969,aura,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,balancer,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,3095.58 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,2390.21 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,16146.36 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,12467.21 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,11271.59 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,8703.22 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,aura,0.00 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,balancer,664.73 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,aura,0 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,balancer,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,5667.25 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,4375.89 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,1502.19 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1159.90 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1097.60 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,847.50 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,3943.16 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,3044.67 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,545.08 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,420.88 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2825.47 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,2181.65 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,2348.85 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,1813.63 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1926.18 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,1487.28 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,aura,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,balancer,0 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,1188.12 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,917.40 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,1770.56 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1367.11 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,2038.27 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,1573.82 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,0 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,960.53 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,741.67 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,18427.51 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,14228.57 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,1908.67 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,1473.70 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1514.10 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,1169.10 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,2812.18 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,2171.39 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,2630.29 +0xb6d101874B975083C76598542946Fe047f059066,balancer,2030.95 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,5394.72 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,4165.46 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,1538.48 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,1187.92 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,538.31 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,415.65 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0.00 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,884.02 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0.00 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,749.73 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x956074628A64a316086f7125074a8A52d3306321,aura,0.00 +0x956074628A64a316086f7125074a8A52d3306321,balancer,681.87 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,1863.62 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1438.97 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,2402.56 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1855.11 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,12421.17 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,9590.86 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,94292.05 diff --git a/MaxiOps/feeDistributions/2024-02-29/2024-02-29.json b/MaxiOps/feeDistributions/2024-02-29/2024-02-29.json new file mode 100644 index 000000000..76689a8ff --- /dev/null +++ b/MaxiOps/feeDistributions/2024-02-29/2024-02-29.json @@ -0,0 +1,2996 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "269405790000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "94292050000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11959670000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2721910000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3929340000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "576130000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8195610000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5806840000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2390210000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12467210000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8703220000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2f959ac167dbef915ad3858cf0c844ffa7b4de7f93c3f951b9895776d19db1ba", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "664730000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4375890000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1159900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "847500000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3044670000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "420880000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2181650000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1813630000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1487280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "917400000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1367110000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1573820000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "741670000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14228570000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1473700000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1169100000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2171390000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2030950000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4165460000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1187920000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "415650000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "884020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "749730000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "681870000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1438970000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1855110000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9590860000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15489040000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3525150000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5088920000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10614180000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7520470000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3095580000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16146360000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11271590000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5667250000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1502190000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1097600000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3943160000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "545080000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2825470000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2348850000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1926180000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1188120000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1770560000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2038270000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "960530000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "18427510000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1908670000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1514100000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2812180000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2630290000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5394720000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1538480000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "538310000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1863620000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2402560000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12421170000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "175113745855" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "5585799119699675572813" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-02-29/2024-02-29.report.txt b/MaxiOps/feeDistributions/2024-02-29/2024-02-29.report.txt new file mode 100644 index 000000000..96142ce11 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-02-29/2024-02-29.report.txt @@ -0,0 +1,246 @@ +FILENAME: `MaxiOps/feeDistributions/2024-02-29/2024-02-29.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `e3b9f6e4de3b232958a9986d193f0fb65977f45e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/66ed6ba2-a011-4cec-9214-0dd105b1d0bd) +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 94292.05 (RAW: 94292050000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 175113.745855 (RAW: 175113745855) | N/A | 69 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 5585.799119699675 (RAW: 5585799119699675572813) | N/A | 70 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-02-29/2024-02-29.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `e3b9f6e4de3b232958a9986d193f0fb65977f45e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7eee294a-1d8f-48ed-8617-961b58dbbdc1) +``` ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+============================+====================================================================+===========+============+ +| depositBribe | WETH rETH | USDC 11959.67(11959670000) | balancer | 2 | 2 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 2721.91(2721910000) | balancer | 2 | 3 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sfrxETH rETH wstETH | USDC 3929.34(3929340000) | balancer | 2 | 4 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-DAI-USDT sDAI | USDC 576.13(576130000) | balancer | 2 | 5 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | weETH rETH | USDC 8195.61(8195610000) | balancer | 2 | 6 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ezETH WETH | USDC 5806.84(5806840000) | balancer | 2 | 7 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH ETHx | USDC 2390.21(2390210000) | balancer | 2 | 8 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ezETH weETH rswETH | USDC 12467.21(12467210000) | balancer | 2 | 9 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH wstETH | USDC 8703.22(8703220000) | balancer | 2 | 10 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | vETH wstETH | USDC 664.73(664730000) | balancer | 2 | 11 | +| | 0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661 | | 0x2f959ac167dbef915ad3858cf0c844ffa7b4de7f93c3f951b9895776d19db1ba | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | svETH wstETH | USDC 4375.89(4375890000) | balancer | 2 | 12 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 1159.9(1159900000) | balancer | 2 | 13 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH cbETH (GYROE) | USDC 847.5(847500000) | balancer | 2 | 14 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 3044.67(3044670000) | balancer | 2 | 15 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC USDT GHO | USDC 420.88(420880000) | balancer | 2 | 16 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ankrETH wstETH | USDC 2181.65(2181650000) | balancer | 2 | 17 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-50% STG-50% | USDC 1813.63(1813630000) | balancer | 2 | 18 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RDNT-80% WETH-20% | USDC 1487.28(1487280000) | balancer | 2 | 19 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 917.4(917400000) | balancer | 2 | 20 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 1367.11(1367110000) | balancer | 2 | 21 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) plsRDNT RDNT-WETH | USDC 1573.82(1573820000) | balancer | 2 | 22 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) DAI USDT USDC USDC.e | USDC 741.67(741670000) | balancer | 2 | 23 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 14228.57(14228570000) | balancer | 2 | 24 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH WETH | USDC 1473.7(1473700000) | balancer | 2 | 25 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH sfrxETH | USDC 1169.1(1169100000) | balancer | 2 | 26 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) cbETH rETH wstETH | USDC 2171.39(2171390000) | balancer | 2 | 27 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH WETH | USDC 2030.95(2030950000) | balancer | 2 | 28 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) MaticX WMATIC | USDC 4165.46(4165460000) | balancer | 2 | 29 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 1187.92(1187920000) | balancer | 2 | 30 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC stMATIC (GYROE) | USDC 415.65(415650000) | balancer | 2 | 31 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH cbETH | USDC 884.02(884020000) | balancer | 2 | 32 | +| | 0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026 | | 0xcdf2628a33578058731fa69623802638342625e7c00c3d4f6f9b8c0e45a8909e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 749.73(749730000) | balancer | 2 | 33 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX yyAVAX | USDC 681.87(681870000) | balancer | 2 | 34 | +| | 0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f | | 0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) ggAVAX WAVAX | USDC 1438.97(1438970000) | balancer | 2 | 35 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX sAVAX | USDC 1855.11(1855110000) | balancer | 2 | 36 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 9590.86(9590860000) | balancer | 2 | 37 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/rETH | USDC 15489.04(15489040000) | aura | 1 | 38 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 3525.15(3525150000) | aura | 1 | 39 | +| | Not Found | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable sfrxETH/rETH/wstETH | USDC 5088.92(5088920000) | aura | 1 | 40 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable weETH/rETH | USDC 10614.18(10614180000) | aura | 1 | 41 | +| | Not Found | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ezETH/WETH | USDC 7520.47(7520470000) | aura | 1 | 42 | +| | Not Found | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rsETH/ETHx | USDC 3095.58(3095580000) | aura | 1 | 43 | +| | Not Found | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ezETH/weETH/rswETH | USDC 16146.36(16146360000) | aura | 1 | 44 | +| | Not Found | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/wstETH | USDC 11271.59(11271590000) | aura | 1 | 45 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable svETH/wstETH | USDC 5667.25(5667250000) | aura | 1 | 46 | +| | Not Found | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 1502.19(1502190000) | aura | 1 | 47 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/cbETH | USDC 1097.6(1097600000) | aura | 1 | 48 | +| | Not Found | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 3943.16(3943160000) | aura | 1 | 49 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDC/USDT/GHO | USDC 545.08(545080000) | aura | 1 | 50 | +| | Not Found | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ankrETH/wstETH | USDC 2825.47(2825470000) | aura | 1 | 51 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 USDC/STG | USDC 2348.85(2348850000) | aura | 1 | 52 | +| | Not Found | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 1926.18(1926180000) | aura | 1 | 53 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC 1188.12(1188120000) | aura | 1 | 54 | +| | Not Found | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ankrETH/wstETH | USDC 1770.56(1770560000) | aura | 1 | 55 | +| | Not Found | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable plsRDNT/RDNT-WETH | USDC 2038.27(2038270000) | aura | 1 | 56 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable DAI/USDT/USDC/USDC.e | USDC 960.53(960530000) | aura | 1 | 57 | +| | Not Found | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 18427.51(18427510000) | aura | 1 | 58 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable rETH/WETH | USDC 1908.67(1908670000) | aura | 1 | 59 | +| | Not Found | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC 1514.1(1514100000) | aura | 1 | 60 | +| | Not Found | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable cbETH/rETH/wstETH | USDC 2812.18(2812180000) | aura | 1 | 61 | +| | Not Found | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/WETH | USDC 2630.29(2630290000) | aura | 1 | 62 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable MaticX/WMATIC | USDC 5394.72(5394720000) | aura | 1 | 63 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/MaticX | USDC 1538.48(1538480000) | aura | 1 | 64 | +| | Not Found | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 538.31(538310000) | aura | 1 | 65 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC 1863.62(1863620000) | aura | 1 | 66 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable WAVAX/sAVAX | USDC 2402.56(2402560000) | aura | 1 | 67 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 12421.17(12421170000) | aura | 1 | 68 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-02-29/2024-02-29.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `e3b9f6e4de3b232958a9986d193f0fb65977f45e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/40932252-9f91-4762-a60c-fc9cd4419603) +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ] | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-02-29/incentives_2024-02-15_2024-02-29.csv b/MaxiOps/feeDistributions/2024-02-29/incentives_2024-02-15_2024-02-29.csv new file mode 100644 index 000000000..7f6ae44fd --- /dev/null +++ b/MaxiOps/feeDistributions/2024-02-29/incentives_2024-02-15_2024-02-29.csv @@ -0,0 +1,56 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,4116.37,6214.12,3346.06,9560.18,5394.72,4165.46,0,0 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,1173.92,1772.16,954.24,2726.40,1538.48,1187.92,0,0 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,410.75,620.07,333.89,953.96,538.31,415.65,0,0 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,42177.10,18470.05,9945.41,28613.57,16146.36,12467.21,198.11,0 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,40460.07,17718.13,9540.53,27448.71,15489.04,11959.67,190.05,0 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,29443.37,12893.74,6942.78,19974.81,11271.59,8703.22,138.29,0 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,27726.08,12141.71,6537.84,18809.79,10614.18,8195.61,130.24,0 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,19644.80,8602.78,4632.27,13327.31,7520.47,5806.84,92.26,0 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,14803.84,6482.85,3490.76,10043.14,5667.25,4375.89,69.53,0 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,13293.15,5821.29,3134.54,9018.26,5088.92,3929.34,62.43,0 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,10300.24,4510.64,2428.81,6987.83,3943.16,3044.67,48.38,0 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,9208.33,4032.48,2171.34,6247.06,3525.15,2721.91,43.25,0 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,8086.17,3541.07,1906.73,5485.79,3095.58,2390.21,37.99,0 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,7380.61,3232.09,1740.36,5007.12,2825.47,2181.65,34.67,0 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,6135.59,2686.88,1446.78,4162.48,2348.85,1813.63,28.82,0 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,5031.53,2203.39,1186.44,3413.46,1926.18,1487.28,23.63,0 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,3923.98,1718.38,925.28,2662.09,1502.19,1159.90,18.44,0 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,2867.14,1255.57,676.08,1945.10,1097.60,847.50,13.46,0 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,1423.83,623.52,335.74,965.96,545.08,420.88,6.70,0 +0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661,mainnet,vETH/wstETH,979.82,429.08,231.04,664.73,0,664.73,4.61,0 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,849.21,371.88,200.24,576.13,0,576.13,4.00,0 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,611.83,267.93,144.27,0,0,0,-412.20,0 +0xdacf5fa19b1f720111609043ac67a9818262850c000000000000000000000635,mainnet,osETH/wETH-BPT,408.03,178.68,96.21,0,0,0,-274.90,0 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,361.04,158.11,85.13,0,0,0,-243.24,0 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,263.77,115.51,62.20,0,0,0,-177.71,0 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,37.65,16.49,8.88,0,0,0,-25.37,0 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,16.96,7.43,4.00,0,0,0,-11.43,0 +0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,mainnet,wbETH-wstETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7,mainnet,uniETH/wstETH/rETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,0.00,0.00,0.00,0,0,0,0.00,0 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.00,0.00,0,0,0,0.00,0 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,0.00,0.00,0.00,0,0,0,0.00,0 +0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670,mainnet,InstETH/wstETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,6063.23,14307.82,7704.21,22012.03,12421.17,9590.86,0,0 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,686.42,539.26,290.37,884.02,0,884.02,54.40,0 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,582.15,457.34,246.26,749.73,0,749.73,46.13,0 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,83.18,65.35,35.19,0,0,0,-100.53,0 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,9194.14,2762.79,1487.66,4257.67,2402.56,1855.11,7.22,0 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,7131.71,2143.04,1153.95,3302.59,1863.62,1438.97,5.60,0 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,1472.44,442.46,238.25,681.87,0,681.87,1.16,0 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,30.22,9.08,4.89,0,0,0,-13.97,0 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,51130.21,21225.91,11429.34,32656.08,18427.51,14228.57,0.84,0 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,arbitrum,wstETH/rETH/cbETH,7803.06,3239.32,1744.25,0,0,0,0,-4983.57 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,7298.19,3029.73,1631.39,4661.24,2630.29,2030.95,0.12,0 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,5655.52,2347.80,1264.20,3612.09,2038.27,1573.82,0.09,0 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,arbitrum,rETH-WETH-BPT,5291.26,2196.58,1182.78,0,0,0,0,-3379.36 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,4912.71,2039.43,1098.16,3137.67,1770.56,1367.11,0.08,0 +0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e,arbitrum,wstETH/rETH/sfrxETH,4201.24,1744.08,939.12,0,0,0,0,-2683.20 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,3296.66,1368.56,736.92,2105.52,1188.12,917.40,0.05,0 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,2665.17,1106.40,595.76,1702.20,960.53,741.67,0.04,0 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,4.80,1.99,1.07,3382.43,1908.67,1473.70,0.00,3379.36 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,1.92,0.80,0.43,0,0,0,-1.23,0 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,0.00,0.00,0.00,2683.20,1514.10,1169.10,0.00,2683.20 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,0.00,0.00,0.00,4983.57,2812.18,2171.39,0.00,4983.57 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.00,0.00,0,0,0,0.00,0 diff --git a/MaxiOps/feeDistributions/2024-03-14/2024-03-14.csv b/MaxiOps/feeDistributions/2024-03-14/2024-03-14.csv new file mode 100644 index 000000000..8dc3238cd --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-14/2024-03-14.csv @@ -0,0 +1,118 @@ +target,platform,amount +0x79eF6103A513951a3b25743DB509E267685726B7,aura,23318.49 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,16482.82 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,5531.33 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3909.86 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,7472.64 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,5282.09 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,1618.26 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,1143.88 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,10360.36 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,7323.28 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,16817.64 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,11887.66 +0xe6281Fc01607366794597d7fA6b32931fF986969,aura,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,balancer,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,3334.12 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,2356.75 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,39229.06 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,27729.32 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,12652.83 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,8943.74 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,843.15 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,595.98 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,aura,0.00 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,balancer,776.63 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,aura,0 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,balancer,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,10183.99 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,7198.62 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,2878.19 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,2034.46 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1655.80 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,1170.41 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,3832.66 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,2709.14 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,896.84 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,633.94 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2830.00 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,2000.41 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,2787.39 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1970.28 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,0 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,2751.17 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,1944.68 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,aura,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,balancer,0 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,aura,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,balancer,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0.00 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,750.61 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,876.25 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,619.39 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,1921.87 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1358.49 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,2189.65 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,1547.77 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,0 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,715.90 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,506.03 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,20193.66 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,14274.02 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,2161.80 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,1528.08 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1973.55 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,1395.01 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,3414.90 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,2413.84 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,3390.77 +0xb6d101874B975083C76598542946Fe047f059066,balancer,2396.79 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,aura,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,10328.59 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,7300.83 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,2979.01 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,2105.74 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,916.15 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,647.58 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1335.73 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,944.17 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x956074628A64a316086f7125074a8A52d3306321,aura,0.00 +0x956074628A64a316086f7125074a8A52d3306321,balancer,571.07 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,2087.81 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1475.78 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,2991.72 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,2114.72 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,11576.32 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,8182.80 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,130996.00 diff --git a/MaxiOps/feeDistributions/2024-03-14/2024-03-14.json b/MaxiOps/feeDistributions/2024-03-14/2024-03-14.json new file mode 100644 index 000000000..26e39dbc6 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-14/2024-03-14.json @@ -0,0 +1,2000 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "rawAmount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "374274270000" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "130996000000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16482820000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3909860000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5282090000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1143880000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7323280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11887660000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2356750000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "27729320000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8943740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "595980000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2f959ac167dbef915ad3858cf0c844ffa7b4de7f93c3f951b9895776d19db1ba", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "776630000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7198620000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2034460000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1170410000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2709140000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "633940000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2000410000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1970280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1944680000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "750610000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "619390000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1358490000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1547770000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "506030000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14274020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1528080000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1395010000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2413840000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2396790000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7300830000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2105739999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "647580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "944170000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "571070000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1475780000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2114719999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8182800000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "23318490000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5531330000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7472640000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1618260000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10360360000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16817640000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3334120000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "39229060000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12652830000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "843150000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10183990000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2878190000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1655800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3832660000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "896840000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2830000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2787390000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2751170000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "876250000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1921870000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2189650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "715900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "20193660000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2161800000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1973550000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3414900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3390770000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10328590000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2979010000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "916150000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1335730000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2087810000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2991720000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11576320000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "243278393774" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "5429197352369489183074" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-03-14/2024-03-14.report.txt b/MaxiOps/feeDistributions/2024-03-14/2024-03-14.report.txt new file mode 100644 index 000000000..55d8f864e --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-14/2024-03-14.report.txt @@ -0,0 +1,256 @@ +FILENAME: `MaxiOps/feeDistributions/2024-03-14/2024-03-14.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `27e087aa424f4d2ecb796a7da13632fbd972bd06` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/696edff6-ec0f-4b4e-be1e-76fa94a2cf74) +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 130996.0 (RAW: 130996000000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 243278.393774 (RAW: 243278393774) | N/A | 73 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 5429.19735236949 (RAW: 5429197352369489183074) | N/A | 74 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-03-14/2024-03-14.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `27e087aa424f4d2ecb796a7da13632fbd972bd06` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/49f6cbec-ef39-4baa-80b5-957ce7600c59) +``` ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+==============================+====================================================================+===========+============+ +| depositBribe | WETH rETH | USDC 16482.82(16482820000) | balancer | 2 | 2 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 3909.86(3909860000) | balancer | 2 | 3 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sfrxETH rETH wstETH | USDC 5282.09(5282090000) | balancer | 2 | 4 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-DAI-USDT sDAI | USDC 1143.88(1143880000) | balancer | 2 | 5 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH weETH | USDC 7323.28(7323280000) | balancer | 2 | 6 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH ezETH | USDC 11887.66(11887660000) | balancer | 2 | 7 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH ETHx | USDC 2356.75(2356750000) | balancer | 2 | 8 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ezETH weETH rswETH | USDC 27729.32(27729320000) | balancer | 2 | 9 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH wstETH | USDC 8943.74(8943740000) | balancer | 2 | 10 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH staFi rETH | USDC 595.98(595980000) | balancer | 2 | 11 | +| | 0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445 | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | vETH wstETH | USDC 776.63(776630000) | balancer | 2 | 12 | +| | 0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661 | | 0x2f959ac167dbef915ad3858cf0c844ffa7b4de7f93c3f951b9895776d19db1ba | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | svETH wstETH | USDC 7198.62(7198620000) | balancer | 2 | 13 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 2034.46(2034460000) | balancer | 2 | 14 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH cbETH (GYROE) | USDC 1170.41(1170410000) | balancer | 2 | 15 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 2709.14(2709140000) | balancer | 2 | 16 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC USDT GHO | USDC 633.94(633940000) | balancer | 2 | 17 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 2000.41(2000410000) | balancer | 2 | 18 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH-50% RPL-50% | USDC 1970.28(1970280000) | balancer | 2 | 19 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RDNT-80% WETH-20% | USDC 1944.68(1944680000) | balancer | 2 | 20 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH-50% KEP-50% | USDC 750.61(750610000) | balancer | 2 | 21 | +| | 0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672 | | 0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 619.39(619390000) | balancer | 2 | 22 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 1358.49(1358490000) | balancer | 2 | 23 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) plsRDNT RDNT-WETH | USDC 1547.77(1547770000) | balancer | 2 | 24 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) DAI USDT USDC USDC.e | USDC 506.03(506030000) | balancer | 2 | 25 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 14274.02(14274020000) | balancer | 2 | 26 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH WETH | USDC 1528.08(1528080000) | balancer | 2 | 27 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH sfrxETH | USDC 1395.01(1395010000) | balancer | 2 | 28 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH rETH cbETH | USDC 2413.84(2413840000) | balancer | 2 | 29 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH wstETH | USDC 2396.79(2396790000) | balancer | 2 | 30 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX | USDC 7300.83(7300830000) | balancer | 2 | 31 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 2105.739999(2105739999) | balancer | 2 | 32 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 647.58(647580000) | balancer | 2 | 33 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 944.17(944170000) | balancer | 2 | 34 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX yyAVAX | USDC 571.07(571070000) | balancer | 2 | 35 | +| | 0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f | | 0x8d6f28b6795b22c14144819c2c7e3e54640f5528852a2d3f4cf0146acdf08faa | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) ggAVAX WAVAX | USDC 1475.78(1475780000) | balancer | 2 | 36 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX sAVAX | USDC 2114.719999(2114719999) | balancer | 2 | 37 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 8182.8(8182800000) | balancer | 2 | 38 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/rETH | USDC 23318.49(23318490000) | aura | 1 | 39 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 5531.33(5531330000) | aura | 1 | 40 | +| | Not Found | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable sfrxETH/rETH/wstETH | USDC 7472.64(7472640000) | aura | 1 | 41 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC 1618.26(1618260000) | aura | 1 | 42 | +| | Not Found | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/weETH | USDC 10360.36(10360360000) | aura | 1 | 43 | +| | Not Found | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/ezETH | USDC 16817.64(16817640000) | aura | 1 | 44 | +| | Not Found | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rsETH/ETHx | USDC 3334.12(3334120000) | aura | 1 | 45 | +| | Not Found | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ezETH/weETH/rswETH | USDC 39229.06(39229060000) | aura | 1 | 46 | +| | Not Found | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/wstETH | USDC 12652.83(12652830000) | aura | 1 | 47 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/StaFi rETH | USDC 843.15(843150000) | aura | 1 | 48 | +| | Not Found | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable svETH/wstETH | USDC 10183.99(10183990000) | aura | 1 | 49 | +| | Not Found | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 2878.19(2878190000) | aura | 1 | 50 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/cbETH | USDC 1655.8(1655800000) | aura | 1 | 51 | +| | Not Found | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 3832.66(3832660000) | aura | 1 | 52 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDC/USDT/GHO | USDC 896.84(896840000) | aura | 1 | 53 | +| | Not Found | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/ankrETH | USDC 2830.0(2830000000) | aura | 1 | 54 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 rETH/RPL | USDC 2787.39(2787390000) | aura | 1 | 55 | +| | Not Found | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 2751.17(2751170000) | aura | 1 | 56 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC 876.25(876250000) | aura | 1 | 57 | +| | Not Found | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ankrETH/wstETH | USDC 1921.87(1921870000) | aura | 1 | 58 | +| | Not Found | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable plsRDNT/RDNT-WETH | USDC 2189.65(2189650000) | aura | 1 | 59 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable DAI/USDT/USDC/USDC.e | USDC 715.9(715900000) | aura | 1 | 60 | +| | Not Found | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 20193.66(20193660000) | aura | 1 | 61 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable rETH/WETH | USDC 2161.8(2161800000) | aura | 1 | 62 | +| | Not Found | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC 1973.55(1973550000) | aura | 1 | 63 | +| | Not Found | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/rETH/cbETH | USDC 3414.9(3414900000) | aura | 1 | 64 | +| | Not Found | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable WETH/wstETH | USDC 3390.77(3390770000) | aura | 1 | 65 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 10328.59(10328590000) | aura | 1 | 66 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/MaticX | USDC 2979.01(2979010000) | aura | 1 | 67 | +| | Not Found | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 916.15(916150000) | aura | 1 | 68 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | b-ComposableStable WETH/rETH | USDC 1335.73(1335730000) | aura | 1 | 69 | +| | Not Found | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC 2087.81(2087810000) | aura | 1 | 70 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable WAVAX/sAVAX | USDC 2991.72(2991720000) | aura | 1 | 71 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 11576.32(11576320000) | aura | 1 | 72 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-03-14/2024-03-14.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `27e087aa424f4d2ecb796a7da13632fbd972bd06` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/86bad971-7601-49fd-859e-32a6a57efed0) +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": 374274270000 | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-03-14/fees_2024-02-29_2024-03-14.json b/MaxiOps/feeDistributions/2024-03-14/fees_2024-02-29_2024-03-14.json new file mode 100644 index 000000000..9f7cfbb0e --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-14/fees_2024-02-29_2024-03-14.json @@ -0,0 +1,8 @@ +{ + "mainnet": 511676.95, + "arbitrum": 125755.58, + "polygon": 48555.8, + "base": 4559.82, + "gnosis": 39518.23, + "avalanche": 18482.19 +} diff --git a/MaxiOps/feeDistributions/2024-03-14/incentives_2024-02-29_2024-03-14.csv b/MaxiOps/feeDistributions/2024-03-14/incentives_2024-02-29_2024-03-14.csv new file mode 100644 index 000000000..7c2519491 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-14/incentives_2024-02-29_2024-03-14.csv @@ -0,0 +1,59 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,7884.11,11459.12,6170.30,17629.42,10328.59,7300.83,0,0 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,2273.97,3305.09,1779.66,5084.75,2979.01,2105.74,0,0 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,699.32,1016.42,547.30,1563.73,916.15,647.58,0,0 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,83886.98,43345.15,23339.70,66958.38,39229.06,27729.32,273.53,0 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,49863.98,25765.16,13873.55,39801.31,23318.49,16482.82,162.60,0 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,35962.64,18582.22,10005.81,28705.30,16817.64,11887.66,117.27,0 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,27056.68,13980.43,7527.92,21596.57,12652.83,8943.74,88.22,0 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,22154.47,11447.41,6163.99,17683.64,10360.36,7323.28,72.24,0 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,21777.32,11252.54,6059.06,17382.61,10183.99,7198.62,71.02,0 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,15979.42,8256.71,4445.92,12754.73,7472.64,5282.09,52.10,0 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,11828.13,6111.70,3290.92,9441.19,5531.33,3909.86,38.57,0 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,8195.72,4234.80,2280.28,6541.80,3832.66,2709.14,26.72,0 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,7129.64,3683.95,1983.66,5690.87,3334.12,2356.75,23.26,0 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,6154.69,3180.18,1712.41,4912.65,2878.19,2034.46,20.06,0 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,6051.65,3126.94,1683.74,4830.41,2830.00,2000.41,19.73,0 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,5960.51,3079.85,1658.38,4757.67,2787.39,1970.28,19.44,0 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,5883.06,3039.83,1636.83,4695.85,2751.17,1944.68,19.19,0 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,3540.73,1829.53,985.13,2826.21,1655.80,1170.41,11.55,0 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,3460.47,1788.06,962.80,2762.14,1618.26,1143.88,11.28,0 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,1917.80,990.94,533.59,1530.78,896.84,633.94,6.25,0 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,1802.97,931.61,501.64,1439.13,843.15,595.98,5.88,0 +0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661,mainnet,vETH/wstETH,972.97,502.74,270.71,776.63,0,776.63,3.18,0 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,940.38,485.90,261.64,750.61,0,750.61,3.07,0 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,426.79,220.53,118.74,0,0,0,-339.27,0 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,342.62,177.03,95.33,0,0,0,-272.36,0 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,296.74,153.33,82.56,0,0,0,-235.89,0 +0xdacf5fa19b1f720111609043ac67a9818262850c000000000000000000000635,mainnet,osETH/wETH-BPT,248.61,128.46,69.17,0,0,0,-197.63,0 +0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,mainnet,wbETH-wstETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7,mainnet,uniETH/wstETH/rETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,0.00,0.00,0.00,0,0,0,0.00,0 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,0.00,0.00,0.00,0,0,0,0.00,0 +0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670,mainnet,InstETH/wstETH,0.00,0.00,0.00,0,0,0,0.00,0 +0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c,mainnet,pyUSD/sDOLA BSP,0.00,0.00,0.00,0,0,0,0.00,0 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,7392.52,12843.42,6915.69,19759.12,11576.32,8182.80,0,0 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,864.13,1111.51,598.50,2279.90,1335.73,944.17,569.89,0 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,202.46,260.42,140.23,0,0,0,-400.64,0 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,85.53,110.01,59.24,0,0,0,-169.25,0 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,10243.03,3305.46,1779.86,5106.44,2991.72,2114.72,21.12,0 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,7148.21,2306.75,1242.10,3563.59,2087.81,1475.78,14.74,0 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,1145.51,369.66,199.05,571.07,0,571.07,2.36,0 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,76.98,24.84,13.38,0,0,0,-38.22,0 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,57987.76,22403.92,12063.65,34467.68,20193.66,14274.02,0.11,0 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,9806.17,775.68,417.67,5828.74,3414.90,2413.84,0.02,4635.37 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,9736.88,3761.90,2025.64,5787.56,3390.77,2396.79,0.02,0 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,6287.77,2429.32,1308.09,3737.42,2189.65,1547.77,0.01,0 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,6207.78,386.95,208.36,3689.88,2161.80,1528.08,0.01,3094.55 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,5667.20,386.73,208.24,3368.56,1973.55,1395.01,0.01,2773.57 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,5518.82,2132.23,1148.12,3280.36,1921.87,1358.49,0.01,0 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,2516.24,972.16,523.47,1495.64,876.25,619.39,0.00,0 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,2055.76,794.26,427.68,1221.93,715.90,506.03,0.00,0 +0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d,arbitrum,weETH/rETH,0.34,0.13,0.07,0,0,0,-0.20,0 +0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e,arbitrum,wstETH/rETH/sfrxETH,0,1802.82,970.75,0,0,0,0,-2773.57 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,arbitrum,wstETH/rETH/cbETH,0,3012.99,1622.38,0,0,0,0,-4635.37 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,arbitrum,rETH-WETH-BPT,0,2011.46,1083.09,0,0,0,0,-3094.55 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.00,0.00,0,0,0,0.00,0 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,0.00,0.00,0.00,0,0,0,0.00,0 diff --git a/MaxiOps/feeDistributions/2024-03-28/2024-03-28.csv b/MaxiOps/feeDistributions/2024-03-28/2024-03-28.csv new file mode 100644 index 000000000..67af4d793 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-28/2024-03-28.csv @@ -0,0 +1,122 @@ +target,platform,amount +0x79eF6103A513951a3b25743DB509E267685726B7,aura,18829.33 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,12108.50 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,6056.95 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3895.02 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,6869.70 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,4417.67 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0.00 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,597.48 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,11153.24 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,7172.27 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,21660.23 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,13928.96 +0xe6281Fc01607366794597d7fA6b32931fF986969,aura,532.43 +0xe6281Fc01607366794597d7fA6b32931fF986969,balancer,342.39 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,2976.31 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,1913.96 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,27774.22 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,17860.65 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,12740.81 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,8193.18 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,632.34 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,406.63 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,aura,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,balancer,0 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,aura,0 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,balancer,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,7612.53 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,4895.35 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,2101.33 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1351.30 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1211.57 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,779.12 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,2908.67 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1870.47 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2437.89 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1567.73 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,1181.24 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,759.62 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,11186.49 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,7193.65 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,2699.90 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,1736.21 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,aura,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,balancer,0 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,791.81 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,509.19 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,aura,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,balancer,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0.00 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,567.97 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,aura,0 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,balancer,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,aura,0 +0x49f530b45Ae792CDF5Cbd5D25C5a9b9e59C6c3B8,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,1134.60 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,729.63 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,1902.89 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,1223.68 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,2747.08 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,1766.56 +0x56c0626E6E3931af90EbB679A321225180d4b32B,aura,0 +0x56c0626E6E3931af90EbB679A321225180d4b32B,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,1265.47 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,813.78 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,12777.73 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,8216.92 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,2254.71 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,1449.93 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1333.28 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,857.38 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,2569.73 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,1652.50 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,aura,0 +0x00b9bcd17cB049739D25FD7f826caA2E23b05620,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,2807.61 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1805.47 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,aura,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,balancer,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,741.73 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,476.98 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,8297.96 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,5336.13 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,1872.83 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,1204.35 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,3104.22 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,1996.21 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1403.89 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,902.80 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,9796.41 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,6299.74 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,14777.88 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,9503.15 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,23059.19 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,14828.57 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,134517.39 diff --git a/MaxiOps/feeDistributions/2024-03-28/2024-03-28.json b/MaxiOps/feeDistributions/2024-03-28/2024-03-28.json new file mode 100644 index 000000000..124548398 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-28/2024-03-28.json @@ -0,0 +1,2081 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "rawAmount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "384335300001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "134517390000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12108500000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3895020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4417670000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "597480000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7172270000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "13928960000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a8911e8e359ab08389ad5506dbebc7d2cbdfc31d1dcbdbd9b34433e3e227e13", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "342390000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1913960000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "17860650000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8193180000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "406630000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4895350000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1351300000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "779120000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1870470000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1567730000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "759620000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7193650000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1736210000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "509190000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "567970000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "729630000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1223680000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1766560000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "813780000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8216920000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1449930000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "857380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1652500000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1805470000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "476980000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5336130000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1204350000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1996210000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "902800000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6299740000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9503150000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14828570000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "18829330000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6056950000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6869700000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11153240000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "21660230000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a8911e8e359ab08389ad5506dbebc7d2cbdfc31d1dcbdbd9b34433e3e227e13", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "532429999", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2976310000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "27774220000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12740810000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "632340000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7612530000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2101330000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1211570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2908670000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2437890000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1181240000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11186490000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2699900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "791810000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1134600000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1902890000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2747080000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1265470000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12777730000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2254710000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1333280000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2569730000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2807610000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "741730000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8297959999", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1872830000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3104220000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1403890000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9796410000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14777880000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "23059190000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "249818166673" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "2490626468935008994083" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-03-28/2024-03-28.report.txt b/MaxiOps/feeDistributions/2024-03-28/2024-03-28.report.txt new file mode 100644 index 000000000..1e5629ce4 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-28/2024-03-28.report.txt @@ -0,0 +1,265 @@ +FILENAME: `MaxiOps/feeDistributions/2024-03-28/2024-03-28.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `2bd16e028e347baa2f09ed486d11a4074551e93d` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1208421b-71b0-4abe-8aa0-3016ff504c7f) +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 134517.39 (RAW: 134517390000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 249818.166673 (RAW: 249818166673) | N/A | 76 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 2490.626468935009 (RAW: 2490626468935008994083) | N/A | 77 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-03-28/2024-03-28.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `2bd16e028e347baa2f09ed486d11a4074551e93d` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5cbb449e-cd55-4892-8f36-06cd1b446d5d) +``` ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+==============================+====================================================================+===========+============+ +| depositBribe | WETH rETH | USDC 12108.5(12108500000) | balancer | 2 | 2 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 3895.02(3895020000) | balancer | 2 | 3 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sfrxETH rETH wstETH | USDC 4417.67(4417670000) | balancer | 2 | 4 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-DAI-USDT sDAI | USDC 597.48(597480000) | balancer | 2 | 5 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH weETH | USDC 7172.27(7172270000) | balancer | 2 | 6 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH ezETH | USDC 13928.96(13928960000) | balancer | 2 | 7 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH uniETH wstETH | USDC 342.39(342390000) | balancer | 2 | 8 | +| | 0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7 | | 0x8a8911e8e359ab08389ad5506dbebc7d2cbdfc31d1dcbdbd9b34433e3e227e13 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH ETHx | USDC 1913.96(1913960000) | balancer | 2 | 9 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ezETH weETH rswETH | USDC 17860.65(17860650000) | balancer | 2 | 10 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH wstETH | USDC 8193.18(8193180000) | balancer | 2 | 11 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH staFi rETH | USDC 406.63(406630000) | balancer | 2 | 12 | +| | 0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445 | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | svETH wstETH | USDC 4895.35(4895350000) | balancer | 2 | 13 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 1351.3(1351300000) | balancer | 2 | 14 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH cbETH (GYROE) | USDC 779.12(779120000) | balancer | 2 | 15 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 1870.47(1870470000) | balancer | 2 | 16 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 1567.73(1567730000) | balancer | 2 | 17 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH-50% RPL-50% | USDC 759.62(759620000) | balancer | 2 | 18 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | STG-50% USDC-50% | USDC 7193.65(7193650000) | balancer | 2 | 19 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RDNT-80% WETH-20% | USDC 1736.21(1736210000) | balancer | 2 | 20 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | DOLA sDOLA | USDC 509.19(509190000) | balancer | 2 | 21 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH-50% KEP-50% | USDC 567.97(567970000) | balancer | 2 | 22 | +| | 0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672 | | 0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 729.63(729630000) | balancer | 2 | 23 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 1223.68(1223680000) | balancer | 2 | 24 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) plsRDNT RDNT-WETH | USDC 1766.56(1766560000) | balancer | 2 | 25 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) DAI USDT USDC USDC.e | USDC 813.78(813780000) | balancer | 2 | 26 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 8216.92(8216920000) | balancer | 2 | 27 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH WETH | USDC 1449.93(1449930000) | balancer | 2 | 28 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH sfrxETH | USDC 857.38(857380000) | balancer | 2 | 29 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH rETH cbETH | USDC 1652.5(1652500000) | balancer | 2 | 30 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH wstETH | USDC 1805.47(1805470000) | balancer | 2 | 31 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ezETH wstETH | USDC 476.98(476980000) | balancer | 2 | 32 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX | USDC 5336.13(5336130000) | balancer | 2 | 33 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 1204.35(1204350000) | balancer | 2 | 34 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 1996.21(1996210000) | balancer | 2 | 35 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 902.8(902800000) | balancer | 2 | 36 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) ggAVAX WAVAX | USDC 6299.74(6299740000) | balancer | 2 | 37 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX sAVAX | USDC 9503.15(9503150000) | balancer | 2 | 38 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 14828.57(14828570000) | balancer | 2 | 39 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/rETH | USDC 18829.33(18829330000) | aura | 1 | 40 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 6056.95(6056950000) | aura | 1 | 41 | +| | Not Found | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable sfrxETH/rETH/wstETH | USDC 6869.7(6869700000) | aura | 1 | 42 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/weETH | USDC 11153.24(11153240000) | aura | 1 | 43 | +| | Not Found | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/ezETH | USDC 21660.23(21660230000) | aura | 1 | 44 | +| | Not Found | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/uniETH/wstETH | USDC 532.429999(532429999) | aura | 1 | 45 | +| | Not Found | | 0x8a8911e8e359ab08389ad5506dbebc7d2cbdfc31d1dcbdbd9b34433e3e227e13 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rsETH/ETHx | USDC 2976.31(2976310000) | aura | 1 | 46 | +| | Not Found | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ezETH/weETH/rswETH | USDC 27774.22(27774220000) | aura | 1 | 47 | +| | Not Found | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/wstETH | USDC 12740.81(12740810000) | aura | 1 | 48 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/StaFi rETH | USDC 632.34(632340000) | aura | 1 | 49 | +| | Not Found | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable svETH/wstETH | USDC 7612.53(7612530000) | aura | 1 | 50 | +| | Not Found | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 2101.33(2101330000) | aura | 1 | 51 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/cbETH | USDC 1211.57(1211570000) | aura | 1 | 52 | +| | Not Found | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 2908.67(2908670000) | aura | 1 | 53 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/ankrETH | USDC 2437.89(2437890000) | aura | 1 | 54 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 rETH/RPL | USDC 1181.24(1181240000) | aura | 1 | 55 | +| | Not Found | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 STG/USDC | USDC 11186.49(11186490000) | aura | 1 | 56 | +| | Not Found | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 2699.9(2699900000) | aura | 1 | 57 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable DOLA/sDOLA | USDC 791.81(791810000) | aura | 1 | 58 | +| | Not Found | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC 1134.6(1134600000) | aura | 1 | 59 | +| | Not Found | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ankrETH/wstETH | USDC 1902.89(1902890000) | aura | 1 | 60 | +| | Not Found | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable plsRDNT/RDNT-WETH | USDC 2747.08(2747080000) | aura | 1 | 61 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable DAI/USDT/USDC/USDC.e | USDC 1265.47(1265470000) | aura | 1 | 62 | +| | Not Found | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 12777.73(12777730000) | aura | 1 | 63 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable rETH/WETH | USDC 2254.71(2254710000) | aura | 1 | 64 | +| | Not Found | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC 1333.28(1333280000) | aura | 1 | 65 | +| | Not Found | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/rETH/cbETH | USDC 2569.73(2569730000) | aura | 1 | 66 | +| | Not Found | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable WETH/wstETH | USDC 2807.61(2807610000) | aura | 1 | 67 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ezETH/wstETH | USDC 741.73(741730000) | aura | 1 | 68 | +| | Not Found | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 8297.959999(8297959999) | aura | 1 | 69 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/MaticX | USDC 1872.83(1872830000) | aura | 1 | 70 | +| | Not Found | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 3104.22(3104220000) | aura | 1 | 71 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | b-ComposableStable WETH/rETH | USDC 1403.89(1403890000) | aura | 1 | 72 | +| | Not Found | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC 9796.41(9796410000) | aura | 1 | 73 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable WAVAX/sAVAX | USDC 14777.88(14777880000) | aura | 1 | 74 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 23059.19(23059190000) | aura | 1 | 75 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-03-28/2024-03-28.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `2bd16e028e347baa2f09ed486d11a4074551e93d` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ba70a3b5-55af-41e5-a2f4-7c0d3cf040e2) +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+==============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": 384335300001 | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-03-28/fees_2024-03-14_2024-03-28.json b/MaxiOps/feeDistributions/2024-03-28/fees_2024-03-14_2024-03-28.json new file mode 100644 index 000000000..b89451e4e --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-28/fees_2024-03-14_2024-03-28.json @@ -0,0 +1,8 @@ +{ + "mainnet": 466848.77, + "arbitrum": 97055.35, + "polygon": 43623.39, + "base": 4613.39, + "gnosis": 75775.52, + "avalanche": 80754.36 +} diff --git a/MaxiOps/feeDistributions/2024-03-28/incentives_2024-03-14_2024-03-28.csv b/MaxiOps/feeDistributions/2024-03-28/incentives_2024-03-14_2024-03-28.csv new file mode 100644 index 000000000..546e968d0 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-03-28/incentives_2024-03-14_2024-03-28.csv @@ -0,0 +1,61 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,5316.23,8862.16,4771.93,13634.09,8297.96,5336.13,0,0,2024-03-28 16:18:22+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,1988.77,3315.28,1785.15,5100.43,3104.22,1996.21,0,0,2024-03-28 12:39:50+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,1199.86,2000.17,1077.01,3077.18,1872.83,1204.35,0,0,2024-03-27 14:10:36+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,66158.84,29404.45,15833.17,45634.87,27774.22,17860.65,397.25,0,2024-03-28 15:47:11+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,51595.18,22931.60,12347.79,35589.19,21660.23,13928.96,309.80,0,2024-03-28 16:14:23+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,44851.92,19934.54,10733.98,30937.83,18829.33,12108.50,269.30,0,2024-03-28 11:00:23+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,30348.91,13488.65,7263.12,20933.99,12740.81,8193.18,182.23,0,2024-03-28 15:34:11+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,26646.48,11843.09,6377.05,18380.14,11186.49,7193.65,160.00,0,2024-03-27 01:49:47+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,26567.29,11807.90,6358.10,18325.51,11153.24,7172.27,159.52,0,2024-03-28 15:52:35+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,18133.22,8059.35,4339.65,12507.88,7612.53,4895.35,108.88,0,2024-03-28 09:04:23+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,16363.78,7272.92,3916.19,11287.37,6869.70,4417.67,98.26,0,2024-03-28 11:00:23+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,14427.81,6412.47,3452.87,9951.97,6056.95,3895.02,86.62,0,2024-03-28 12:40:35+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,7089.65,3151.01,1696.70,4890.27,2976.31,1913.96,42.56,0,2024-03-26 23:47:23+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,6928.52,3079.40,1658.14,4779.14,2908.67,1870.47,41.61,0,2024-03-27 06:39:11+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,6431.23,2858.38,1539.13,4436.11,2699.90,1736.21,38.61,0,2024-03-28 07:40:35+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,5807.12,2580.99,1389.76,4005.62,2437.89,1567.73,34.87,0,2024-03-25 17:52:35+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,5005.43,2224.68,1197.90,3452.63,2101.33,1351.30,30.05,0,2024-03-28 15:26:23+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,2886.00,1282.69,690.68,1990.69,1211.57,779.12,17.32,0,2024-03-27 12:26:23+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,2813.77,1250.59,673.39,1940.86,1181.24,759.62,16.88,0,2024-03-27 01:52:59+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1886.11,838.29,451.38,1301.00,791.81,509.19,11.33,0,2024-03-23 16:26:11+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,1506.27,669.47,360.48,1038.97,632.34,406.63,9.02,0,2024-03-28 03:39:47+00:00 +0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7,mainnet,uniETH/wstETH/rETH,1268.28,563.69,303.53,874.82,532.43,342.39,7.60,0,2024-03-15 01:40:47+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,866.21,384.99,207.30,597.48,0,597.48,5.19,0,2024-03-28 11:55:47+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,823.42,365.97,197.06,567.97,0,567.97,4.94,0,2024-03-26 20:16:59+00:00 +0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661,mainnet,vETH/wstETH,680.71,302.54,162.91,0,0,0,-465.45,0,2024-03-25 16:30:11+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,605.76,269.23,144.97,0,0,0,-414.20,0,2024-03-26 03:55:11+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,602.75,267.89,144.25,0,0,0,-412.14,0,2024-03-25 03:17:35+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,395.70,175.87,94.70,0,0,0,-270.57,0,2024-03-19 05:34:59+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,374.89,166.62,89.72,0,0,0,-256.34,0,2024-03-16 03:47:35+00:00 +0xdacf5fa19b1f720111609043ac67a9818262850c000000000000000000000635,mainnet,osETH/wETH-BPT,269.80,119.91,64.57,0,0,0,-184.48,0,2024-03-26 07:23:59+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,34.11,15.16,8.16,0,0,0,-23.32,0,2024-03-14 02:53:59+00:00 +0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c,mainnet,pyUSD/sDOLA BSP,6.99,3.11,1.67,0,0,0,-4.78,0,2024-03-28 15:39:35+00:00 +0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670,mainnet,InstETH/wstETH,0.80,0.36,0.19,0,0,0,-0.55,0,2024-03-19 16:07:23+00:00 +0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b,mainnet,genETH/wstETH,0.11,0.05,0.03,0,0,0,-0.08,0,2024-03-19 15:04:35+00:00 +0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,mainnet,wbETH-wstETH,0.00,0.00,0.00,0,0,0,0.00,0,2023-11-23 01:03:59+00:00 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,0.00,0.00,0.00,0,0,0,0.00,0,2024-02-15 03:07:59+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,6807.59,24627.04,13260.72,37887.76,23059.19,14828.57,0,0,2024-03-28 05:44:20+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1012.85,1188.51,639.97,2306.69,1403.89,902.80,478.21,0,2024-03-28 15:15:59+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,148.91,174.74,94.09,0,0,0,-268.82,0,2024-03-28 15:11:59+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,115.99,136.11,73.29,0,0,0,-209.39,0,2024-03-28 16:47:31+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,16042.98,15689.16,8448.01,24281.03,14777.88,9503.15,143.87,0,2024-03-28 11:02:25+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,10635.06,10400.51,5600.27,16096.15,9796.41,6299.74,95.37,0,2024-03-28 02:15:53+00:00 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,80.53,78.75,42.41,0,0,0,-121.16,0,2024-03-26 07:05:04+00:00 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,78.48,76.75,41.33,0,0,0,-118.08,0,2024-03-28 09:06:41+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,35479.92,13645.32,7347.48,20994.65,12777.73,8216.92,1.86,0,2024-03-28 17:45:58+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,7795.87,2998.23,1614.43,4613.08,2807.61,1805.47,0.41,0,2024-03-28 09:31:57+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,7627.83,2933.61,1579.63,4513.64,2747.08,1766.56,0.40,0,2024-03-28 14:53:38+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,7135.37,1368.80,737.05,4222.23,2569.73,1652.50,0.37,2116.01,2024-03-28 12:22:46+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,6260.66,1530.57,824.15,3704.64,2254.71,1449.93,0.33,1349.59,2024-03-28 17:21:09+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,5283.75,2032.09,1094.20,3126.57,1902.89,1223.68,0.28,0,2024-03-27 16:28:46+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,3702.11,839.36,451.96,2190.66,1333.28,857.38,0.19,899.14,2024-03-27 10:47:08+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,3513.83,1351.39,727.67,2079.25,1265.47,813.78,0.18,0,2024-03-28 14:58:57+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,3150.44,1211.64,652.42,1864.23,1134.60,729.63,0.17,0,2024-03-28 11:54:41+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,2059.55,792.09,426.51,1218.71,741.73,476.98,0.11,0,2024-03-28 16:45:49+00:00 +0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d,arbitrum,weETH/rETH,7.29,2.80,1.51,0,0,0,-4.31,0,2024-03-20 11:24:30+00:00 +0x0c8972437a38b389ec83d1e666b69b8a4fcf8bfd00000000000000000000049e,arbitrum,wstETH/rETH/sfrxETH,0,584.44,314.70,0,0,0,0,-899.14,2024-03-28 12:04:26+00:00 +0x4a2f6ae7f3e5d715689530873ec35593dc28951b000000000000000000000481,arbitrum,wstETH/rETH/cbETH,0,1375.41,740.60,0,0,0,0,-2116.01,2024-03-28 17:36:53+00:00 +0xade4a71bb62bec25154cfc7e6ff49a513b491e81000000000000000000000497,arbitrum,rETH-WETH-BPT,0,877.24,472.36,0,0,0,0,-1349.59,2024-03-28 11:34:35+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-01-02 18:27:12+00:00 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,0.00,0.00,0.00,0,0,0,0.00,0,2024-02-16 15:49:05+00:00 diff --git a/MaxiOps/feeDistributions/2024-04-11/2024-04-11.csv b/MaxiOps/feeDistributions/2024-04-11/2024-04-11.csv new file mode 100644 index 000000000..c91c797e2 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-11/2024-04-11.csv @@ -0,0 +1,134 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,20352.6500 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,11678.4600 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,717.8500 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,411.9000 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,13348.9300 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,7659.7000 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,984.0400 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,564.6500 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,6010.9100 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3449.1000 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,5301.0900 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,3041.7900 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,1426.4300 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,818.5000 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,41481.7300 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,23802.4500 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,2584.6100 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,1483.0700 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,15030.6500 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,8624.6700 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,9247.1400 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,5306.0700 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0.0000 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,762.8500 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0.0000 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,560.0600 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,aura,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,8069.9900 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,4630.6000 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1800.3900 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1033.0700 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,1718.9300 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,986.3300 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,aura,0 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,balancer,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,aura,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,aura,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,balancer,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,aura,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,balancer,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0.0000 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,645.7500 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,aura,0 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,balancer,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,9796.2200 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,5621.1200 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,988.9000 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,567.4400 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,0 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1575.4400 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,903.9900 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,0 +0x065885bDec1e571DC309d6d3576628419C13DB99,aura,0 +0x065885bDec1e571DC309d6d3576628419C13DB99,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,765.7800 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,439.4100 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,2107.0000 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,1209.0100 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,1368.8500 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,785.4500 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,2563.9600 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,1471.2200 +0xb6d101874B975083C76598542946Fe047f059066,aura,3410.5700 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1957.0000 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,2129.9800 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,1222.2000 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1260.8500 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,723.4900 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,1739.2900 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,998.0200 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,aura,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,577.1000 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,331.1400 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,11660.6100 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,6690.9200 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,aura,0 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,11421.8200 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,6553.9000 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,2071.3000 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,1188.5200 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,3429.0500 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,1967.6100 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1347.8900 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,773.4300 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,aura,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,balancer,0 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,4938.5400 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,2833.7700 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,7073.2700 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,4058.6900 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,8331.7400 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,4780.8000 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,114509.3700 diff --git a/MaxiOps/feeDistributions/2024-04-11/2024-04-12.json b/MaxiOps/feeDistributions/2024-04-11/2024-04-12.json new file mode 100644 index 000000000..e0d4c3991 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-11/2024-04-12.json @@ -0,0 +1,3168 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "327169650001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "114509370000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11678460000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "411900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7659700000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "564650000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3449100000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3041790000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "818500000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "23802450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1483070000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8624670000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5306070000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "762850000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "560060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4630600000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1033069999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "986330000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "645750000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5621120000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "567440000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "903990000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "439410000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1209010000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "785450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1471220000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1957000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1222200000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "723490000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "998020000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "331140000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6690920000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6553900000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1188520000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1967610000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "773430000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2833770000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4058690000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4780800000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "20352650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "717850000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "13348930000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "984040000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6010910000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5301090000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1426430000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "41481730000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2584610000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15030650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9247140000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8069990000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1800390000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1718930000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9796220000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "988900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1575440000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "765780000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2107000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1368850000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2563960000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3410570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2129980000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1260850000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1739290000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "577100000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11660610000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11421820000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2071300000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3429050000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1347890000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4938540000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7073270000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8331740000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "212660465665" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "2402076930548719259017" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-04-11/2024-04-12.report.txt b/MaxiOps/feeDistributions/2024-04-11/2024-04-12.report.txt new file mode 100644 index 000000000..c8e481e05 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-11/2024-04-12.report.txt @@ -0,0 +1,263 @@ +FILENAME: `MaxiOps/feeDistributions/2024-04-11/2024-04-12.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `299e49cbc068e3c71dee88f4310851b14be6557e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/92effcaa-4622-43be-814f-b9932b2f3801) +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+==================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 114509.37 (RAW: 114509370000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 212660.465665 (RAW: 212660465665) | N/A | 73 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 2402.0769305487192 (RAW: 2402076930548719259017) | N/A | 74 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-04-11/2024-04-12.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `299e49cbc068e3c71dee88f4310851b14be6557e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/0949b29c-acdf-4dc6-aeeb-d82f1a097dfd) +``` ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+==============================+====================================================================+===========+============+ +| depositBribe | rETH weETH | USDC 11678.46(11678460000) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sDAI GYD (GYROE) | USDC 411.9(411900000) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH rETH | USDC 7659.7(7659700000) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | DOLA sDOLA | USDC 564.65(564650000) | balancer | 2 | 5 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 3449.1(3449100000) | balancer | 2 | 6 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sfrxETH rETH wstETH | USDC 3041.79(3041790000) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-DAI-USDT sDAI | USDC 818.5(818500000) | balancer | 2 | 8 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH ezETH | USDC 23802.45(23802450000) | balancer | 2 | 9 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH ETHx | USDC 1483.07(1483070000) | balancer | 2 | 10 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ezETH weETH rswETH | USDC 8624.67(8624670000) | balancer | 2 | 11 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH | USDC 5306.07(5306070000) | balancer | 2 | 12 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH-50% RPL-50% | USDC 762.85(762850000) | balancer | 2 | 13 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH staFi rETH | USDC 560.06(560060000) | balancer | 2 | 14 | +| | 0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445 | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | svETH wstETH | USDC 4630.6(4630600000) | balancer | 2 | 15 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 1033.069999(1033069999) | balancer | 2 | 16 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 986.33(986330000) | balancer | 2 | 17 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH-50% KEP-50% | USDC 645.75(645750000) | balancer | 2 | 18 | +| | 0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672 | | 0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 5621.12(5621120000) | balancer | 2 | 19 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDT USDC GHO | USDC 567.44(567440000) | balancer | 2 | 20 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RDNT-80% WETH-20% | USDC 903.99(903990000) | balancer | 2 | 21 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 439.41(439410000) | balancer | 2 | 22 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH cbETH wstETH | USDC 1209.01(1209010000) | balancer | 2 | 23 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 785.45(785450000) | balancer | 2 | 24 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) plsRDNT RDNT-WETH | USDC 1471.22(1471220000) | balancer | 2 | 25 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH WETH | USDC 1957.0(1957000000) | balancer | 2 | 26 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ezETH wstETH | USDC 1222.2(1222200000) | balancer | 2 | 27 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH sfrxETH | USDC 723.49(723490000) | balancer | 2 | 28 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH WETH | USDC 998.02(998020000) | balancer | 2 | 29 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) USDT DAI USDC USDC.e | USDC 331.14(331140000) | balancer | 2 | 30 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 6690.92(6690920000) | balancer | 2 | 31 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX | USDC 6553.9(6553900000) | balancer | 2 | 32 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 1188.52(1188520000) | balancer | 2 | 33 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 1967.61(1967610000) | balancer | 2 | 34 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 773.43(773430000) | balancer | 2 | 35 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) ggAVAX WAVAX | USDC 2833.77(2833770000) | balancer | 2 | 36 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX sAVAX | USDC 4058.69(4058690000) | balancer | 2 | 37 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 4780.8(4780800000) | balancer | 2 | 38 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/weETH | USDC 20352.65(20352650000) | aura | 1 | 39 | +| | Not Found | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe sDAI/GYD | USDC 717.85(717850000) | aura | 1 | 40 | +| | Not Found | | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/rETH | USDC 13348.93(13348930000) | aura | 1 | 41 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable DOLA/sDOLA | USDC 984.04(984040000) | aura | 1 | 42 | +| | Not Found | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 6010.91(6010910000) | aura | 1 | 43 | +| | Not Found | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable sfrxETH/rETH/wstETH | USDC 5301.09(5301090000) | aura | 1 | 44 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC 1426.43(1426430000) | aura | 1 | 45 | +| | Not Found | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/ezETH | USDC 41481.73(41481730000) | aura | 1 | 46 | +| | Not Found | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rsETH/ETHx | USDC 2584.61(2584610000) | aura | 1 | 47 | +| | Not Found | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ezETH/weETH/rswETH | USDC 15030.65(15030650000) | aura | 1 | 48 | +| | Not Found | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/WETH | USDC 9247.14(9247140000) | aura | 1 | 49 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable svETH/wstETH | USDC 8069.99(8069990000) | aura | 1 | 50 | +| | Not Found | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/ankrETH | USDC 1800.39(1800390000) | aura | 1 | 51 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 1718.93(1718930000) | aura | 1 | 52 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 9796.22(9796220000) | aura | 1 | 53 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDT/USDC/GHO | USDC 988.9(988900000) | aura | 1 | 54 | +| | Not Found | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 1575.44(1575440000) | aura | 1 | 55 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC 765.78(765780000) | aura | 1 | 56 | +| | Not Found | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC 2107.0(2107000000) | aura | 1 | 57 | +| | Not Found | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ankrETH/wstETH | USDC 1368.85(1368850000) | aura | 1 | 58 | +| | Not Found | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable plsRDNT/RDNT-WETH | USDC 2563.96(2563960000) | aura | 1 | 59 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/WETH | USDC 3410.57(3410570000) | aura | 1 | 60 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ezETH/wstETH | USDC 2129.98(2129980000) | aura | 1 | 61 | +| | Not Found | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC 1260.85(1260850000) | aura | 1 | 62 | +| | Not Found | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable rETH/WETH | USDC 1739.29(1739290000) | aura | 1 | 63 | +| | Not Found | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable USDT/DAI/USDC/USDC.e | USDC 577.1(577100000) | aura | 1 | 64 | +| | Not Found | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 11660.61(11660610000) | aura | 1 | 65 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 11421.82(11421820000) | aura | 1 | 66 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/MaticX | USDC 2071.3(2071300000) | aura | 1 | 67 | +| | Not Found | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 3429.05(3429050000) | aura | 1 | 68 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | b-ComposableStable WETH/rETH | USDC 1347.89(1347890000) | aura | 1 | 69 | +| | Not Found | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC 4938.54(4938540000) | aura | 1 | 70 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable WAVAX/sAVAX | USDC 7073.27(7073270000) | aura | 1 | 71 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 8331.74(8331740000) | aura | 1 | 72 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-04-11/2024-04-12.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `299e49cbc068e3c71dee88f4310851b14be6557e` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/115bfaca-fedc-4377-b52c-2c0b43490fcf) +``` ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+====================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | [ | | | +| | | | "raw:327169650001, 18 decimals:3.27169650001e-07, 6 decimals: 327169.650001" | | | +| | | | ], | | | +| | | | [ | | | +| | | | 327169650001 | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-04-11/fees_2024-03-28_2024-04-11.json b/MaxiOps/feeDistributions/2024-04-11/fees_2024-03-28_2024-04-11.json new file mode 100644 index 000000000..ead2442ca --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-11/fees_2024-03-28_2024-04-11.json @@ -0,0 +1,8 @@ +{ + "mainnet": 445975.0, + "arbitrum": 86823.73, + "polygon": 53264.4, + "base": 4242.65, + "gnosis": 26225.08, + "avalanche": 37808.55 +} diff --git a/MaxiOps/feeDistributions/2024-04-11/incentives_2024-03-28_2024-04-11.csv b/MaxiOps/feeDistributions/2024-04-11/incentives_2024-03-28_2024-04-11.csv new file mode 100644 index 000000000..7a9ed647c --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-11/incentives_2024-03-28_2024-04-11.csv @@ -0,0 +1,67 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,5253.06,11684.22,6291.50,17975.72,11421.82,6553.90,0,0,2024-04-11 22:21:47+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,1577.07,3507.83,1888.83,5396.66,3429.05,1967.61,0,0,2024-04-11 21:08:21+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,952.62,2118.88,1140.94,3259.82,2071.30,1188.52,0,0,2024-04-10 11:44:13+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,84875.00,42098.30,22668.32,65284.18,41481.73,23802.45,517.56,0,2024-04-11 23:32:35+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,41643.18,20655.17,11122.01,32031.11,20352.65,11678.46,253.93,0,2024-04-11 13:54:59+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,30753.93,15254.06,8213.72,23655.32,15030.65,8624.67,187.54,0,2024-04-11 23:58:47+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,27313.01,13547.35,7294.73,21008.63,13348.93,7659.70,166.55,0,2024-04-11 14:52:11+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,20043.86,9941.83,5353.29,15417.34,9796.22,5621.12,122.22,0,2024-04-10 21:26:47+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,18920.42,9384.60,5053.24,14553.21,9247.14,5306.07,115.37,0,2024-04-11 21:12:23+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,16511.86,8189.94,4409.97,12700.59,8069.99,4630.60,100.68,0,2024-04-06 14:58:35+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,12298.82,6100.26,3284.75,9460.01,6010.91,3449.10,75.00,0,2024-04-11 20:53:23+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,10846.47,5379.89,2896.86,8342.88,5301.09,3041.79,66.13,0,2024-04-09 09:15:11+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,5288.33,2623.03,1412.40,4067.68,2584.61,1483.07,32.25,0,2024-04-11 17:50:47+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,3683.73,1827.14,983.85,2833.46,1800.39,1033.07,22.47,0,2024-04-11 00:34:47+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,3517.06,1744.47,939.33,2705.26,1718.93,986.33,21.45,0,2024-04-11 23:20:23+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,3223.47,1598.85,860.92,2479.43,1575.44,903.99,19.66,0,2024-04-09 22:40:59+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,2918.61,1447.64,779.50,2244.93,1426.43,818.50,17.79,0,2024-04-11 03:25:23+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,2023.38,1003.60,540.40,1556.34,988.90,567.44,12.33,0,2024-04-11 22:16:11+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,2013.42,998.66,537.74,1548.69,984.04,564.65,12.28,0,2024-04-10 13:57:47+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,1468.78,728.52,392.28,1129.75,717.85,411.90,8.95,0,2024-04-11 22:24:47+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,991.77,491.92,264.88,762.85,0,762.85,6.05,0,2024-04-11 11:45:35+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,839.52,416.40,224.22,645.75,0,645.75,5.13,0,2024-04-10 07:57:11+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,728.12,361.15,194.47,560.06,0,560.06,4.44,0,2024-04-10 08:57:11+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,505.22,250.59,134.93,0,0,0,-385.52,0,2024-04-10 01:11:35+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,498.89,247.45,133.24,0,0,0,-380.69,0,2024-04-11 02:07:35+00:00 +0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661,mainnet,vETH/wstETH,407.03,201.89,108.71,0,0,0,-310.60,0,2024-04-11 13:49:23+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,253.16,125.57,67.61,0,0,0,-193.18,0,2024-04-09 01:56:35+00:00 +0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c,mainnet,pyUSD/sDOLA BSP,233.21,115.67,62.29,0,0,0,-177.96,0,2024-04-02 01:11:59+00:00 +0xdacf5fa19b1f720111609043ac67a9818262850c000000000000000000000635,mainnet,osETH/wETH-BPT,203.67,101.02,54.40,0,0,0,-155.42,0,2024-04-07 04:46:47+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,179.21,88.89,47.86,0,0,0,-136.75,0,2024-04-11 15:45:11+00:00 +0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670,mainnet,InstETH/wstETH,33.67,16.70,8.99,0,0,0,-25.69,0,2024-03-29 01:54:35+00:00 +0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7,mainnet,uniETH/wstETH/rETH,2.58,1.28,0.69,0,0,0,-1.97,0,2024-03-15 01:40:47+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,0.03,0.01,0.01,0,0,0,-0.02,0,2024-04-03 21:06:59+00:00 +0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,mainnet,wbETH-wstETH,0.00,0.00,0.00,0,0,0,0.00,0,2023-11-23 01:03:59+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-16 03:47:35+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-15 14:09:47+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-14 02:53:59+00:00 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,0.00,0.00,0.00,0,0,0,0.00,0,2024-02-15 03:07:59+00:00 +0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b,mainnet,genETH/wstETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-19 15:04:35+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-12 23:59:59+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-27 01:49:47+00:00 +0x51c72451eddfcc08aae540fd36434bb7ba340d33000000000000000000000683,mainnet,mstETH/wstETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-26 02:07:47+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,6109.98,8523.15,4589.39,13112.54,8331.74,4780.80,0,0,2024-04-11 23:23:25+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1136.03,1058.97,570.21,2121.32,1347.89,773.43,492.14,0,2024-04-12 00:04:31+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,203.08,189.30,101.93,0,0,0,-291.24,0,2024-04-11 21:16:25+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,140.09,130.59,70.32,0,0,0,-200.90,0,2024-04-12 00:06:57+00:00 +0x98bedb6a3c0b6feebbe662e6419481a6877d9681000000000000000000000104,base,sfrxETH/cbETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-02 23:43:41+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,13385.77,7079.56,3812.07,11131.96,7073.27,4058.69,240.33,0,2024-04-11 22:12:50+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,9345.91,4942.93,2661.58,7772.31,4938.54,2833.77,167.80,0,2024-04-11 21:39:58+00:00 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,462.40,244.56,131.68,0,0,0,-376.24,0,2024-04-09 19:29:12+00:00 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,39.19,20.73,11.16,0,0,0,-31.89,0,2024-04-08 13:09:00+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,23843.31,11926.35,6421.88,18351.53,11660.61,6690.92,3.31,0,2024-04-12 00:04:30+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,6973.84,3488.29,1878.31,5367.57,3410.57,1957.00,0.97,0,2024-04-11 22:32:15+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,5242.72,2622.39,1412.06,4035.18,2563.96,1471.22,0.73,0,2024-04-11 18:10:38+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,4355.34,2178.53,1173.05,3352.18,2129.98,1222.20,0.60,0,2024-04-11 19:50:24+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,4308.34,2155.02,1160.39,3316.01,2107.00,1209.01,0.60,0,2024-04-10 22:32:57+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,3556.47,1778.93,957.89,2737.31,1739.29,998.02,0.49,0,2024-04-11 11:08:02+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,2798.98,1400.04,753.87,2154.30,1368.85,785.45,0.39,0,2024-04-11 15:42:34+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2578.16,1289.59,694.39,1984.34,1260.85,723.49,0.36,0,2024-04-11 13:58:56+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1565.85,783.23,421.74,1205.19,765.78,439.41,0.22,0,2024-04-10 10:46:25+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,1180.04,590.25,317.83,908.24,577.10,331.14,0.16,0,2024-04-11 22:11:00+00:00 +0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d,arbitrum,weETH/rETH,10.18,5.09,2.74,0,0,0,-7.83,0,2024-04-07 13:56:07+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-01-02 18:27:12+00:00 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,0.00,0.00,0.00,0,0,0,0.00,0,2024-02-16 15:49:05+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-09 09:28:06+00:00 +0x2f0cdf8596be980ef24924ca7bf54e630ca526b2000000000000000000000529,arbitrum,sUSDe/USDC,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-07 19:43:13+00:00 diff --git a/MaxiOps/feeDistributions/2024-04-25/2024-04-25.csv b/MaxiOps/feeDistributions/2024-04-25/2024-04-25.csv new file mode 100644 index 000000000..f5561e68d --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-25/2024-04-25.csv @@ -0,0 +1,140 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,21618.5700 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,11885.4800 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0.0000 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,1254.5500 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,11882.1600 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,6532.5900 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0.0000 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,1214.2700 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,2601.8500 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,1430.4500 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,8495.1000 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,4670.4500 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,6192.6500 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,3404.6000 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0.0000 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,1926.6600 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,66525.8500 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,36574.6700 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,2238.3100 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,1230.5800 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,22548.4500 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,12396.7100 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,10304.6500 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,5665.3000 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,2896.6900 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1592.5400 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,aura,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0.0000 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,826.4400 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,10079.1500 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,5541.3300 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,2314.4600 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1272.4500 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,2991.0000 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1644.3900 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0.0000 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,1580.2800 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,aura,0 +0xc592c33e51A764B94DB0702D8BAf4035eD577aED,balancer,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,aura,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,aura,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,balancer,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,aura,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,balancer,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0.0000 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,843.0300 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,aura,0 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,balancer,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,0.0000 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,1286.5500 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,3259.1300 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1791.8100 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,3523.7700 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,1937.3000 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,10325.3700 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,5676.6900 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1970.1700 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,1083.1700 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,0 +0x065885bDec1e571DC309d6d3576628419C13DB99,aura,0 +0x065885bDec1e571DC309d6d3576628419C13DB99,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0.0000 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,1773.9600 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,0.0000 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,2113.0100 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0.0000 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,816.7000 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,2248.7600 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,1236.3300 +0xb6d101874B975083C76598542946Fe047f059066,aura,1715.9200 +0xb6d101874B975083C76598542946Fe047f059066,balancer,943.3800 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,1522.8300 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,837.2200 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,0.0000 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,1388.7300 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0.0000 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,2132.9200 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,aura,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,balancer,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,aura,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0.0000 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,577.0700 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,10808.6900 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,5942.4100 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,aura,0 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,8678.8200 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,4771.4600 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0.0000 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,1143.0800 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,1777.6200 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,977.3000 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0.0000 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,1564.1400 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0.0000 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,548.0000 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,aura,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,balancer,0 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,2009.9900 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1105.0600 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,4852.9000 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,2668.0400 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,18921.0600 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,10402.4500 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,138777.6200 diff --git a/MaxiOps/feeDistributions/2024-04-25/2024-04-25.json b/MaxiOps/feeDistributions/2024-04-25/2024-04-25.json new file mode 100644 index 000000000..19caa0365 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-25/2024-04-25.json @@ -0,0 +1,3039 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "396507470001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "138777620000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11885480000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1254550000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6532590000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1214270000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5a02d42c582c43e12926681d9e3849ee44f093a0f78d9a422472f9225e25abda", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1430450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4670450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3404600000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1926660000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "36574670000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1230580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12396710000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5665300000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1592540000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5578b5cfceb511af5d1ac11aacd75e89c6122939b7688697f22492fd8e40408c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "826440000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5541330000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1272450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1644390000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1580280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "843030000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1286550000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1791810000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1937300000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5676690000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1083170000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1773960000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2113010000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "816700000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1236330000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "943380000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "837220000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1388730000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2132920000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "577070000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5942410000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4771460000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1143080000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "977300000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1564140000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfd2241dcf5150d483ec42a96db0387a7fc8aef2baf4a49ca8a58bb73cec3110d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "548000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1105060000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2668040000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10402450000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "21618570000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11882160000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5a02d42c582c43e12926681d9e3849ee44f093a0f78d9a422472f9225e25abda", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2601850000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8495100000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6192650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "66525850000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2238310000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "22548450000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10304650000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2896690000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10079150000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2314460000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2991000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3259130000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3523770000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10325370000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1970170000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2248760000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1715920000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1522830000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10808690000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8678820000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1777620000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2009990000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4852900000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "18921060000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "257729944843" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "4678446308070831206749" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-04-25/2024-04-25.report.txt b/MaxiOps/feeDistributions/2024-04-25/2024-04-25.report.txt new file mode 100644 index 000000000..bedb56ab9 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-25/2024-04-25.report.txt @@ -0,0 +1,251 @@ +FILENAME: `MaxiOps/feeDistributions/2024-04-25/2024-04-25.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `dceddbe31a0da36bdf9a5c04fbd105b91696855b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/034f2354-1af8-4f11-8d72-25c12e47556e) +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 138777.62 (RAW: 138777620000) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 257729.944843 (RAW: 257729944843) | N/A | 70 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 4678.446308070831 (RAW: 4678446308070831206749) | N/A | 71 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-04-25/2024-04-25.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `dceddbe31a0da36bdf9a5c04fbd105b91696855b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/15c7697b-2dc8-45be-b6d2-e0594dcb7b80) +``` ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+============================+====================================================================+===========+============+ +| depositBribe | rETH weETH | USDC 11885.48(11885480000) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sDAI GYD (GYROE) | USDC 1254.55(1254550000) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH rETH | USDC 6532.59(6532590000) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | DOLA sDOLA | USDC 1214.27(1214270000) | balancer | 2 | 5 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH wBETH | USDC 1430.45(1430450000) | balancer | 2 | 6 | +| | 0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536 | | 0x5a02d42c582c43e12926681d9e3849ee44f093a0f78d9a422472f9225e25abda | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 4670.45(4670450000) | balancer | 2 | 7 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sfrxETH rETH wstETH | USDC 3404.6(3404600000) | balancer | 2 | 8 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-DAI-USDT sDAI | USDC 1926.66(1926660000) | balancer | 2 | 9 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH ezETH | USDC 36574.67(36574670000) | balancer | 2 | 10 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH ETHx | USDC 1230.58(1230580000) | balancer | 2 | 11 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ezETH weETH rswETH | USDC 12396.71(12396710000) | balancer | 2 | 12 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH | USDC 5665.3(5665300000) | balancer | 2 | 13 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH-50% RPL-50% | USDC 1592.54(1592540000) | balancer | 2 | 14 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH uniETH | USDC 826.44(826440000) | balancer | 2 | 15 | +| | 0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e | | 0x5578b5cfceb511af5d1ac11aacd75e89c6122939b7688697f22492fd8e40408c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | svETH wstETH | USDC 5541.33(5541330000) | balancer | 2 | 16 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 1272.45(1272450000) | balancer | 2 | 17 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 1644.39(1644390000) | balancer | 2 | 18 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH cbETH (GYROE) | USDC 1580.28(1580280000) | balancer | 2 | 19 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH-50% KEP-50% | USDC 843.03(843030000) | balancer | 2 | 20 | +| | 0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672 | | 0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | pufETH wstETH | USDC 1286.55(1286550000) | balancer | 2 | 21 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 1791.81(1791810000) | balancer | 2 | 22 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDT USDC GHO | USDC 1937.3(1937300000) | balancer | 2 | 23 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | STG-50% USDC-50% | USDC 5676.69(5676690000) | balancer | 2 | 24 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RDNT-80% WETH-20% | USDC 1083.17(1083170000) | balancer | 2 | 25 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 1773.96(1773960000) | balancer | 2 | 26 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH cbETH wstETH | USDC 2113.01(2113010000) | balancer | 2 | 27 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 816.7(816700000) | balancer | 2 | 28 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) plsRDNT RDNT-WETH | USDC 1236.33(1236330000) | balancer | 2 | 29 | +| | 0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5 | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH WETH | USDC 943.38(943380000) | balancer | 2 | 30 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ezETH wstETH | USDC 837.22(837220000) | balancer | 2 | 31 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH sfrxETH | USDC 1388.73(1388730000) | balancer | 2 | 32 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH WETH | USDC 2132.92(2132920000) | balancer | 2 | 33 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) USDT DAI USDC USDC.e | USDC 577.07(577070000) | balancer | 2 | 34 | +| | 0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496 | | 0xe26911877f8b9d7fd699d3a05bcb96380314abc736b2a556179ffd65d691ab0f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH-20% RDNT-80% | USDC 5942.41(5942410000) | balancer | 2 | 35 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX | USDC 4771.46(4771460000) | balancer | 2 | 36 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX (GYROE) | USDC 1143.08(1143080000) | balancer | 2 | 37 | +| | 0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7 | | 0x41a1b9afda04c858cf61d59533cf9afb795fa672e752df0ad47e04c513b8ad54 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 977.3(977300000) | balancer | 2 | 38 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 1564.14(1564140000) | balancer | 2 | 39 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) USDC USDbC axlUSDC | USDC 548.0(548000000) | balancer | 2 | 40 | +| | 0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046 | | 0xfd2241dcf5150d483ec42a96db0387a7fc8aef2baf4a49ca8a58bb73cec3110d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) ggAVAX WAVAX | USDC 1105.06(1105060000) | balancer | 2 | 41 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX sAVAX | USDC 2668.04(2668040000) | balancer | 2 | 42 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 10402.45(10402450000) | balancer | 2 | 43 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/weETH | USDC 21618.57(21618570000) | aura | 1 | 44 | +| | Not Found | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/rETH | USDC 11882.16(11882160000) | aura | 1 | 45 | +| | Not Found | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/wBETH | USDC 2601.85(2601850000) | aura | 1 | 46 | +| | Not Found | | 0x5a02d42c582c43e12926681d9e3849ee44f093a0f78d9a422472f9225e25abda | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 8495.1(8495100000) | aura | 1 | 47 | +| | Not Found | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable sfrxETH/rETH/wstETH | USDC 6192.65(6192650000) | aura | 1 | 48 | +| | Not Found | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/ezETH | USDC 66525.85(66525850000) | aura | 1 | 49 | +| | Not Found | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rsETH/ETHx | USDC 2238.31(2238310000) | aura | 1 | 50 | +| | Not Found | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ezETH/weETH/rswETH | USDC 22548.45(22548450000) | aura | 1 | 51 | +| | Not Found | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/WETH | USDC 10304.65(10304650000) | aura | 1 | 52 | +| | Not Found | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 rETH/RPL | USDC 2896.69(2896690000) | aura | 1 | 53 | +| | Not Found | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable svETH/wstETH | USDC 10079.15(10079150000) | aura | 1 | 54 | +| | Not Found | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/ankrETH | USDC 2314.46(2314460000) | aura | 1 | 55 | +| | Not Found | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 2991.0(2991000000) | aura | 1 | 56 | +| | Not Found | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 ALCX/WETH | USDC 3259.13(3259130000) | aura | 1 | 57 | +| | Not Found | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDT/USDC/GHO | USDC 3523.77(3523770000) | aura | 1 | 58 | +| | Not Found | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 STG/USDC | USDC 10325.37(10325370000) | aura | 1 | 59 | +| | Not Found | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 1970.17(1970170000) | aura | 1 | 60 | +| | Not Found | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable plsRDNT/RDNT-WETH | USDC 2248.76(2248760000) | aura | 1 | 61 | +| | Not Found | | 0x04d11bea95e2df61e4c32a7df81f18f399bba373dcf4f74ed0ae5347813df5f6 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable wstETH/WETH | USDC 1715.92(1715920000) | aura | 1 | 62 | +| | Not Found | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-ComposableStable ezETH/wstETH | USDC 1522.83(1522830000) | aura | 1 | 63 | +| | Not Found | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 10808.69(10808690000) | aura | 1 | 64 | +| | Not Found | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 8678.82(8678820000) | aura | 1 | 65 | +| | Not Found | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 1777.62(1777620000) | aura | 1 | 66 | +| | Not Found | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC 2009.99(2009990000) | aura | 1 | 67 | +| | Not Found | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable WAVAX/sAVAX | USDC 4852.9(4852900000) | aura | 1 | 68 | +| | Not Found | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 18921.06(18921060000) | aura | 1 | 69 | +| | Not Found | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+----------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-04-25/2024-04-25.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `dceddbe31a0da36bdf9a5c04fbd105b91696855b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/94800e5b-dcdb-45df-b43a-eeab6dd8a15d) +``` ++-----------+----------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+===================================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault) " | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | [ | | | +| | | | "raw:396507470001, 18 decimals:3.96507470001E-7, 6 decimals: 396507.470001" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-04-25/fees_2024-04-11_2024-04-25.json b/MaxiOps/feeDistributions/2024-04-25/fees_2024-04-11_2024-04-25.json new file mode 100644 index 000000000..5db4e530e --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-25/fees_2024-04-11_2024-04-25.json @@ -0,0 +1,8 @@ +{ + "mainnet": 606059.28, + "arbitrum": 68115.86, + "polygon": 34696.56, + "base": 4224.29, + "gnosis": 58647.02, + "avalanche": 21271.97 +} diff --git a/MaxiOps/feeDistributions/2024-04-25/incentives_2024-04-11_2024-04-25.csv b/MaxiOps/feeDistributions/2024-04-25/incentives_2024-04-11_2024-04-25.csv new file mode 100644 index 000000000..9a8081cea --- /dev/null +++ b/MaxiOps/feeDistributions/2024-04-25/incentives_2024-04-11_2024-04-25.csv @@ -0,0 +1,70 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,6345.79,8742.68,4707.60,13450.28,8678.82,4771.46,0,0,2024-04-25 18:04:27+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,1299.76,1790.70,964.22,2754.92,1777.62,977.30,0,0,2024-04-25 18:16:45+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,539.30,743.00,400.08,1143.08,0,1143.08,0,0,2024-04-25 09:08:48+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,124269.74,66582.71,35852.23,103100.52,66525.85,36574.67,665.58,0,2024-04-25 19:29:11+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,42120.30,22567.71,12151.84,34945.16,22548.45,12396.71,225.60,0,2024-04-25 12:30:11+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,40383.31,21637.05,11650.72,33504.05,21618.57,11885.48,216.29,0,2024-04-25 16:27:59+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,22195.78,11892.32,6403.56,18414.75,11882.16,6532.59,118.88,0,2024-04-25 03:32:23+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,19287.72,10334.20,5564.57,16002.06,10325.37,5676.69,103.29,0,2024-04-24 17:59:23+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,19249.02,10313.47,5553.41,15969.95,10304.65,5665.30,103.08,0,2024-04-25 09:36:47+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,18827.77,10087.77,5431.87,15620.48,10079.15,5541.33,100.84,0,2024-04-24 13:07:59+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,15868.77,8502.36,4578.19,13165.55,8495.10,4670.45,85.00,0,2024-04-24 05:21:59+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,11567.80,6197.93,3337.35,9597.25,6192.65,3404.60,61.97,0,2024-04-25 16:34:47+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,6582.38,3526.79,1899.04,5461.07,3523.77,1937.30,35.25,0,2024-04-24 22:48:35+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,6088.04,3261.92,1756.42,5050.94,3259.13,1791.81,32.60,0,2024-04-23 23:42:47+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,5587.17,2993.56,1611.92,4635.39,2991.00,1644.39,29.91,0,2024-04-23 23:40:23+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,5410.99,2899.16,1561.09,4489.23,2896.69,1592.54,28.98,0,2024-04-24 05:24:35+00:00 +0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,mainnet,wbETH-wstETH,4860.22,2604.07,1402.19,4032.30,2601.85,1430.45,26.04,0,2024-04-24 13:33:59+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,4323.39,2316.44,1247.31,3586.91,2314.46,1272.45,23.16,0,2024-04-25 15:05:23+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,4181.16,2240.23,1206.28,3468.89,2238.31,1230.58,22.38,0,2024-04-25 02:48:35+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,3680.27,1971.86,1061.77,3053.34,1970.17,1083.17,19.71,0,2024-04-25 14:44:47+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,2322.24,1244.24,669.97,1926.66,0,1926.66,12.45,0,2024-04-17 18:36:47+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,1904.75,1020.55,549.53,1580.28,0,1580.28,10.20,0,2024-04-12 11:46:47+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,1550.72,830.86,447.39,1286.55,0,1286.55,8.30,0,2024-04-25 19:27:23+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,1512.13,810.19,436.25,1254.55,0,1254.55,8.11,0,2024-04-23 23:21:47+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1463.58,784.17,422.25,1214.27,0,1214.27,7.85,0,2024-04-25 12:34:59+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,1016.12,544.43,293.15,843.03,0,843.03,5.45,0,2024-04-24 20:39:59+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,996.13,533.72,287.39,826.44,0,826.44,5.33,0,2024-04-24 17:39:11+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,575.32,308.25,165.98,0,0,0,-474.23,0,2024-04-24 10:19:59+00:00 +0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c,mainnet,pyUSD/sDOLA BSP,483.68,259.15,139.54,0,0,0,-398.70,0,2024-04-15 01:23:23+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,444.56,238.19,128.26,0,0,0,-366.45,0,2024-04-20 22:28:23+00:00 +0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661,mainnet,vETH/wstETH,361.90,193.90,104.41,0,0,0,-298.31,0,2024-04-21 21:51:59+00:00 +0xdacf5fa19b1f720111609043ac67a9818262850c000000000000000000000635,mainnet,osETH/wETH-BPT,214.33,114.84,61.83,0,0,0,-176.67,0,2024-04-25 03:42:59+00:00 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,102.62,54.98,29.61,0,0,0,-84.59,0,2024-04-13 18:29:11+00:00 +0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b,mainnet,genETH/wstETH,72.33,38.75,20.87,0,0,0,-59.62,0,2024-04-12 14:53:35+00:00 +0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670,mainnet,InstETH/wstETH,60.19,32.25,17.37,0,0,0,-49.61,0,2024-04-12 14:54:47+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,58.23,31.20,16.80,0,0,0,-48.00,0,2024-04-25 07:56:23+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,0.10,0.05,0.03,0,0,0,-0.08,0,2024-04-25 05:13:11+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-16 03:47:35+00:00 +0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7,mainnet,uniETH/wstETH/rETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-15 01:40:47+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-09 01:56:35+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-14 02:53:59+00:00 +0x51c72451eddfcc08aae540fd36434bb7ba340d33000000000000000000000683,mainnet,mstETH/wstETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-03-26 02:07:47+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-15 21:20:11+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,7269.41,19060.28,10263.23,29323.51,18921.06,10402.45,0,0,2024-04-25 08:29:40+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1346.99,966.49,520.42,1564.14,0,1564.14,77.23,0,2024-04-25 19:29:07+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,471.92,338.61,182.33,548.00,0,548.00,27.06,0,2024-04-25 18:32:29+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,94.48,67.79,36.50,0,0,0,-104.29,0,2024-04-25 15:35:07+00:00 +0x98bedb6a3c0b6feebbe662e6419481a6877d9681000000000000000000000104,base,sfrxETH/cbETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-02 23:43:41+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,12380.55,4863.80,2618.97,7520.94,4852.90,2668.04,38.17,0,2024-04-25 17:04:32+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,5127.83,2014.51,1084.74,3115.05,2009.99,1105.06,15.80,0,2024-04-25 15:27:45+00:00 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,76.67,30.12,16.22,0,0,0,-46.34,0,2024-04-22 08:26:10+00:00 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,12.63,4.96,2.67,0,0,0,-7.63,0,2024-04-25 15:51:50+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,24799.41,10888.21,5862.88,16751.10,10808.69,5942.41,0.00,0,2024-04-25 19:32:27+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,5159.56,2265.31,1219.78,3485.09,2248.76,1236.33,0.00,0,2024-04-25 07:21:19+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,3937.00,1728.54,930.75,2659.30,1715.92,943.38,0.00,0,2024-04-25 10:47:44+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,3493.97,1534.03,826.02,2360.05,1522.83,837.22,0.00,0,2024-04-25 19:15:16+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,3157.72,1386.40,746.52,2132.92,0,2132.92,0.00,0,2024-04-25 13:51:40+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,3128.24,1373.46,739.55,2113.01,0,2113.01,0.00,0,2024-04-24 19:44:20+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,2626.28,1153.07,620.88,1773.96,0,1773.96,0.00,0,2024-04-24 06:39:33+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2055.97,902.68,486.06,1388.73,0,1388.73,0.00,0,2024-04-24 13:55:52+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,1209.09,530.85,285.84,816.70,0,816.70,0.00,0,2024-04-25 09:38:53+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,854.33,375.09,201.97,577.07,0,577.07,0.00,0,2024-04-25 17:50:46+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-01-02 18:27:12+00:00 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,0.00,0.00,0.00,0,0,0,0.00,0,2024-02-16 15:49:05+00:00 +0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d,arbitrum,weETH/rETH,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-07 13:56:07+00:00 +0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d,arbitrum,2CLP-AUSDC-USDC,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-25 17:43:30+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-25 17:06:45+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-25 17:13:58+00:00 +0x2f0cdf8596be980ef24924ca7bf54e630ca526b2000000000000000000000529,arbitrum,sUSDe/USDC,0.00,0.00,0.00,0,0,0,0.00,0,2024-04-07 19:43:13+00:00 diff --git a/MaxiOps/feeDistributions/2024-05-09/2024-05-09.csv b/MaxiOps/feeDistributions/2024-05-09/2024-05-09.csv new file mode 100644 index 000000000..7f85dfb21 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-09/2024-05-09.csv @@ -0,0 +1,144 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,14563.5323 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,6114.6976 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,932.8061 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,9035.1500 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,3253.2237 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,912.9730 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,5673.1135 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,1513.0436 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,4043.3492 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,669.4828 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,1698.6331 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,40643.7662 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,19613.7480 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,2261.0668 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,7907.8183 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,2669.7200 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,10492.6483 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4007.6202 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,aura,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,7328.6896 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,2369.9650 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,2001.3394 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,4085.7256 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,691.4166 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,1854.3229 +0xe6281Fc01607366794597d7fA6b32931fF986969,aura,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,aura,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,balancer,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,aura,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,balancer,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,826.4363 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,aura,0 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,balancer,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,2045.7368 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1612.3247 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,3182.4384 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,223.8776 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,2448.6497 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,0.0000 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,1511.1308 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,1086.1146 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,0 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,1738.3430 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,630.3597 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,0 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1592.0225 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,1164.4742 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,0 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,891.2552 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,1885.8267 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,aura,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,balancer,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,aura,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,9223.4538 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,0.0000 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,aura,0 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,balancer,0 +0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E,aura,0 +0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E,balancer,0 +0x7542967F91fD6EE8433A41B22C2be8972A002CA5,aura,0 +0x7542967F91fD6EE8433A41B22C2be8972A002CA5,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,6833.6984 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1870.7132 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,1666.3884 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,1802.9749 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,aura,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,balancer,0 +0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1,aura,0 +0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,0 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,1874.1489 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,970.0538 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,4780.0354 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,2474.1319 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,7165.2390 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3708.7060 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,76141.2345 diff --git a/MaxiOps/feeDistributions/2024-05-09/2024-05-10.json b/MaxiOps/feeDistributions/2024-05-09/2024-05-10.json new file mode 100644 index 000000000..8ed9e832f --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-09/2024-05-10.json @@ -0,0 +1,2222 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "217546385700" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "76141234500" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6114697600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "932806100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3253223700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "912973000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1513043600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "669482800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1698633100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "19613748000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2261066800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2669720000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4007620200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2369965000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2001339400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "691416600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1854322900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "826436300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2045736800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1612324700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "223877600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1511130800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1086114600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1738343000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "630359700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1592022500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1164474200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "891255200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1885826700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1870713200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1666388400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1802974900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "970053800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2474131900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3708706000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14563532300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9035150000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5673113500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4043349200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "40643766200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7907818300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10492648300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7328689600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4085725600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3182438400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2448649700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9223453800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6833698400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1874148900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4780035400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7165239000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "141405240133" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "2246136699563568034032" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-05-09/2024-05-10.report.txt b/MaxiOps/feeDistributions/2024-05-09/2024-05-10.report.txt new file mode 100644 index 000000000..7ce1983f9 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-09/2024-05-10.report.txt @@ -0,0 +1,192 @@ +FILENAME: `MaxiOps/feeDistributions/2024-05-09/2024-05-10.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `a1abd553fc20c785b5f7050180f490c7ebbc3ac7` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/81b57286-7b6f-4b7c-9fab-5267ad592984) +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+=================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 76141.2345 (RAW: 76141234500) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 141405.240133 (RAW: 141405240133) | N/A | 51 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 2246.136699563568 (RAW: 2246136699563568034032) | N/A | 52 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-05-09/2024-05-10.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `a1abd553fc20c785b5f7050180f490c7ebbc3ac7` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/ec81d4d1-1843-4b58-9b9b-6e13b7508e88) +``` ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+==============================+====================================================================+===========+============+ +| depositBribe | rETH weETH | USDC 6114.6976(6114697600) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sDAI GYD (GYROE) | USDC 932.8061(932806100) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH rETH | USDC 3253.2237(3253223700) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | DOLA sDOLA | USDC 912.973(912973000) | balancer | 2 | 5 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 1513.0436(1513043600) | balancer | 2 | 6 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sfrxETH rETH wstETH | USDC 669.4828(669482800) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-DAI-USDT sDAI | USDC 1698.6331(1698633100) | balancer | 2 | 8 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH ezETH | USDC 19613.748(19613748000) | balancer | 2 | 9 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH ETHx | USDC 2261.0668(2261066800) | balancer | 2 | 10 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ezETH weETH rswETH | USDC 2669.72(2669720000) | balancer | 2 | 11 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH | USDC 4007.6202(4007620200) | balancer | 2 | 12 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | svETH wstETH | USDC 2369.965(2369965000) | balancer | 2 | 13 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 2001.3394(2001339400) | balancer | 2 | 14 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH (GYROE) | USDC 691.4166(691416600) | balancer | 2 | 15 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH cbETH (GYROE) | USDC 1854.3229(1854322900) | balancer | 2 | 16 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH-50% KEP-50% | USDC 826.4363(826436300) | balancer | 2 | 17 | +| | 0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672 | | 0x4e2835e738fb15a3600360e12dd427b4fc60b12272e11093fdacf14a88cc6a52 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | pufETH wstETH | USDC 2045.7368(2045736800) | balancer | 2 | 18 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH-20% ALCX-80% | USDC 1612.3247(1612324700) | balancer | 2 | 19 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDT USDC GHO | USDC 223.8776(223877600) | balancer | 2 | 20 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RDNT-80% WETH-20% | USDC 1511.1308(1511130800) | balancer | 2 | 21 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 1086.1146(1086114600) | balancer | 2 | 22 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH cbETH wstETH | USDC 1738.343(1738343000) | balancer | 2 | 23 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 630.3597(630359700) | balancer | 2 | 24 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH WETH | USDC 1592.0225(1592022500) | balancer | 2 | 25 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ezETH wstETH | USDC 1164.4742(1164474200) | balancer | 2 | 26 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH sfrxETH | USDC 891.2552(891255200) | balancer | 2 | 27 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH WETH | USDC 1885.8267(1885826700) | balancer | 2 | 28 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX | USDC 1870.7132(1870713200) | balancer | 2 | 29 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 1666.3884(1666388400) | balancer | 2 | 30 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 1802.9749(1802974900) | balancer | 2 | 31 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) ggAVAX WAVAX | USDC 970.0538(970053800) | balancer | 2 | 32 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) WAVAX sAVAX | USDC 2474.1319(2474131900) | balancer | 2 | 33 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 3708.706(3708706000) | balancer | 2 | 34 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/weETH | USDC 14563.5323(14563532300) | aura | 1 | 35 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/rETH | USDC 9035.15(9035150000) | aura | 1 | 36 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 5673.1135(5673113500) | aura | 1 | 37 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable sfrxETH/rETH/wstETH | USDC 4043.3492(4043349200) | aura | 1 | 38 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/ezETH | USDC 40643.7662(40643766200) | aura | 1 | 39 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable ezETH/weETH/rswETH | USDC 7907.8183(7907818300) | aura | 1 | 40 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/WETH | USDC 10492.6483(10492648300) | aura | 1 | 41 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable svETH/wstETH | USDC 7328.6896(7328689600) | aura | 1 | 42 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe wstETH/WETH | USDC 4085.7256(4085725600) | aura | 1 | 43 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDT/USDC/GHO | USDC 3182.4384(3182438400) | aura | 1 | 44 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 STG/USDC | USDC 2448.6497(2448649700) | aura | 1 | 45 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 9223.4538(9223453800) | aura | 1 | 46 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 6833.6984(6833698400) | aura | 1 | 47 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC 1874.1489(1874148900) | aura | 1 | 48 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable WAVAX/sAVAX | USDC 4780.0354(4780035400) | aura | 1 | 49 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 7165.239(7165239000) | aura | 1 | 50 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-05-09/2024-05-10.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `a1abd553fc20c785b5f7050180f490c7ebbc3ac7` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a2f21ef5-831d-435a-b23e-f288c8690522) +``` ++-----------+----------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+=============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:217546385700, 18 decimals:2.175463857E-7, 6 decimals: 217546.3857" | | | +| | | | ] | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-05-09/fees_2024-04-25_2024-05-09.json b/MaxiOps/feeDistributions/2024-05-09/fees_2024-04-25_2024-05-09.json new file mode 100644 index 000000000..1addd4aba --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-09/fees_2024-04-25_2024-05-09.json @@ -0,0 +1,8 @@ +{ + "mainnet": 332376.89, + "arbitrum": 36423.7, + "polygon": 20741.6, + "base": 3605.95, + "gnosis": 21747.89, + "avalanche": 20196.74 +} diff --git a/MaxiOps/feeDistributions/2024-05-09/incentives_2024-04-25_2024-05-09.csv b/MaxiOps/feeDistributions/2024-05-09/incentives_2024-04-25_2024-05-09.csv new file mode 100644 index 000000000..81db0a3c9 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-09/incentives_2024-04-25_2024-05-09.csv @@ -0,0 +1,72 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,5039.39,5397.8096,2906.5128,8704.4116,6833.6984,1870.7132,400.0892,0,2024-05-10 13:15:58+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,964.75,1033.3665,556.4281,1666.3884,0,1666.3884,76.5938,0,2024-05-10 10:01:18+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,289.27,309.8439,166.8390,0,0,0,-476.6830,0,2024-05-10 14:01:02+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,97680.11,38657.9182,20815.8021,60257.5142,40643.7662,19613.7480,783.7938,0,2024-05-10 14:59:47+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,33520.33,13266.0188,7143.2409,20678.2296,14563.5323,6114.6976,268.9699,0,2024-05-10 03:58:23+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,23505.58,9302.5775,5009.0802,14500.2684,10492.6483,4007.6202,188.6108,0,2024-05-10 13:08:47+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,19920.00,7883.5469,4244.9868,12288.3734,9035.1500,3253.2237,159.8397,0,2024-05-10 03:28:59+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,17146.66,6785.9688,3653.9832,10577.5384,7907.8183,2669.7200,137.5864,0,2024-05-10 12:26:47+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,15721.95,6222.1250,3350.3750,9698.6546,7328.6896,2369.9650,126.1545,0,2024-05-10 10:09:35+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,11649.08,4610.2444,2482.4393,7186.1571,5673.1135,1513.0436,93.4734,0,2024-05-10 09:21:59+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,7743.96,3064.7526,1650.2514,4777.1421,4085.7256,691.4166,62.1381,0,2024-05-10 04:37:11+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,7639.71,3023.4946,1628.0356,4712.8319,4043.3492,669.4828,61.3018,0,2024-05-08 00:11:35+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,5521.79,2185.3058,1176.7031,3406.3162,3182.4384,223.8776,44.3073,0,2024-05-09 13:06:35+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,3969.37,1570.9194,845.8797,2448.6498,2448.6497,0.0000,31.8507,0,2024-05-08 19:10:35+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,3665.29,1450.5766,781.0797,2261.0667,0,2261.0668,29.4104,0,2024-05-10 10:04:11+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,3316.23,1312.4325,706.6944,2045.7366,0,2045.7368,26.6097,0,2024-05-10 15:09:47+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,3244.26,1283.9496,691.3575,2001.3394,0,2001.3394,26.0323,0,2024-05-10 14:41:11+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,3005.94,1189.6320,640.5711,1854.3228,0,1854.3229,24.1198,0,2024-05-08 17:05:59+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,2753.56,1089.7500,586.7884,1698.6333,0,1698.6331,22.0949,0,2024-05-09 20:05:11+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,2613.65,1034.3791,556.9734,1612.3246,0,1612.3247,20.9721,0,2024-05-09 18:46:59+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,2449.61,969.4586,522.0162,1511.1308,0,1511.1308,19.6560,0,2024-05-09 22:52:59+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,1512.12,598.4372,322.2354,932.8060,0,932.8061,12.1334,0,2024-05-07 18:12:59+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1479.97,585.7135,315.3842,912.9731,0,912.9730,11.8754,0,2024-05-09 13:04:59+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,1339.69,530.1962,285.4903,826.4364,0,826.4363,10.7499,0,2024-04-29 21:57:35+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,642.81,254.3987,136.9839,0,0,0,-391.3827,0,2024-04-28 16:46:35+00:00 +0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c,mainnet,pyUSD/sDOLA BSP,572.25,226.4739,121.9475,0,0,0,-348.4214,0,2024-05-05 15:27:35+00:00 +0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661,mainnet,vETH/wstETH,469.57,185.8372,100.0662,0,0,0,-285.9034,0,2024-05-09 19:42:11+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,468.48,185.4058,99.8339,0,0,0,-285.2397,0,2024-05-07 18:23:11+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,465.24,184.1236,99.1435,0,0,0,-283.2670,0,2024-04-27 10:49:47+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,331.53,131.2064,70.6496,0,0,0,-201.8561,0,2024-05-02 17:58:23+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,199.03,78.7682,42.4136,0,0,0,-121.1818,0,2024-05-09 13:03:11+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,142.83,56.5265,30.4373,0,0,0,-86.9638,0,2024-05-01 09:52:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,141.06,55.8260,30.0601,0,0,0,-85.8861,0,2024-04-24 17:39:11+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,66.40,26.2785,14.1500,0,0,0,-40.4284,0,2024-05-03 22:22:23+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,23.85,9.4389,5.0825,0,0,0,-14.5214,0,2024-05-10 01:28:47+00:00 +0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,mainnet,wbETH-wstETH,14.19,5.6158,3.0239,0,0,0,-8.6398,0,2024-05-04 12:26:47+00:00 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,13.12,5.1924,2.7959,0,0,0,-7.9883,0,2024-05-07 06:34:59+00:00 +0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7,mainnet,uniETH/wstETH/rETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-03-15 01:40:47+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-09 01:56:35+00:00 +0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670,mainnet,InstETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-12 14:54:47+00:00 +0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b,mainnet,genETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-12 14:53:35+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,6079.63,7068.0643,3805.8807,10873.9450,7165.2390,3708.7060,0,0,2024-05-09 20:18:20+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1284.75,746.0542,401.7215,1802.9749,0,1802.9749,655.1992,0,2024-05-10 15:09:53+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,424.89,246.7336,132.8565,0,0,0,-379.5901,0,2024-05-10 13:15:03+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,191.84,111.4015,59.9854,0,0,0,-171.3869,0,2024-05-10 14:16:23+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,116.66,67.7445,36.4778,0,0,0,-104.2222,0,2024-05-10 06:00:03+00:00 +0x98bedb6a3c0b6feebbe662e6419481a6877d9681000000000000000000000104,base,sfrxETH/cbETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-02 23:43:41+00:00 +0x821afe819450a359e29a5209c48f2fa3321c8ad200020000000000000000010d,base,ECLP-sDAI-USDC-rh,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-12 11:15:59+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,11378.59,4632.9154,2494.6468,7254.1673,4780.0354,2474.1319,126.6051,0,2024-05-10 13:52:12+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,4461.30,1816.4663,978.0973,2844.2027,1874.1489,970.0538,49.6391,0,2024-05-10 13:21:02+00:00 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,240.02,97.7267,52.6221,0,0,0,-150.3488,0,2024-05-10 04:20:36+00:00 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,41.34,16.8320,9.0634,0,0,0,-25.8954,0,2024-05-10 10:51:34+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,13083.10,5792.8468,3119.2252,9223.4538,9223.4538,0.0000,311.3817,0,2024-05-10 15:20:10+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,2674.97,1184.4052,637.7566,1885.8269,0,1885.8267,63.6651,0,2024-05-10 15:07:42+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,2465.77,1091.7770,587.8799,1738.3430,0,1738.3430,58.6860,0,2024-05-10 08:07:39+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,2258.22,999.8794,538.3966,1592.0224,0,1592.0225,53.7464,0,2024-05-10 14:23:57+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1651.76,731.3552,393.8066,1164.4743,0,1164.4742,39.3125,0,2024-05-10 01:51:01+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1540.61,682.1409,367.3066,1086.1146,0,1086.1146,36.6670,0,2024-05-08 13:25:23+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,1264.21,559.7584,301.4084,891.2553,0,891.2552,30.0886,0,2024-05-10 15:09:49+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,894.14,395.9013,213.1776,630.3597,0,630.3597,21.2808,0,2024-05-10 09:22:37+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,539.01,238.6592,128.5088,0,0,0,-367.1680,0,2024-05-10 12:16:40+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,131.47,58.2114,31.3446,0,0,0,-89.5560,0,2024-05-10 14:58:37+00:00 +0xfb2f7ed572589940e24c5711c002adc59d5e79ef000000000000000000000535,arbitrum,jitoSOL/wSOL,112.33,49.7367,26.7813,0,0,0,-76.5180,0,2024-05-10 05:08:39+00:00 +0x260dbd54d87a10a0fc9d08622ebc969a3bf4e6bb000200000000000000000536,arbitrum,jitoSOL/wstETH,93.34,41.3285,22.2538,0,0,0,-63.5822,0,2024-05-10 13:28:08+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,26.43,11.7025,6.3013,0,0,0,-18.0038,0,2024-05-08 02:42:53+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-02-16 15:49:05+00:00 +0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d,arbitrum,weETH/rETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-07 13:56:07+00:00 +0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d,arbitrum,2CLP-AUSDC-USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-10 11:20:22+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-10 11:17:00+00:00 +0x2f0cdf8596be980ef24924ca7bf54e630ca526b2000000000000000000000529,arbitrum,sUSDe/USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-07 19:43:13+00:00 diff --git a/MaxiOps/feeDistributions/2024-05-23/2024-05-23.csv b/MaxiOps/feeDistributions/2024-05-23/2024-05-23.csv new file mode 100644 index 000000000..b7ef1226e --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-23/2024-05-23.csv @@ -0,0 +1,146 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,17210.4373 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,7552.3473 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,1134.8183 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,11951.5468 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,5028.2591 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,1842.4193 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,11164.3246 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,4650.4191 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,2962.8618 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,713.9963 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,1229.3383 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,38614.5879 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,17825.6108 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,1879.6777 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,194.1047 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,5637.8600 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,1997.9044 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,8654.9471 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,3446.0035 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,2736.2412 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,605.2262 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,aura,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,6670.5562 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,2493.5635 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1705.6269 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,2525.1895 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,503.9286 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,aura,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,aura,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,balancer,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,aura,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,balancer,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,aura,0 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,balancer,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2303.8737 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,397.7044 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1831.4497 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,2736.8885 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,605.5370 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,0 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,1140.5152 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,2222.4822 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,358.6393 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,1028.9033 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,882.2735 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,0 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,1533.9505 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,641.4175 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,0 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1538.5016 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,731.3106 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,0 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,709.6480 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,1329.8917 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,aura,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,balancer,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,aura,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,9715.9866 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,0.0000 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,aura,0 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,balancer,0 +0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E,aura,0 +0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E,balancer,0 +0x7542967F91fD6EE8433A41B22C2be8972A002CA5,aura,0 +0x7542967F91fD6EE8433A41B22C2be8972A002CA5,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,5952.5896 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1533.8841 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,1323.1563 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,1528.2618 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,aura,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,balancer,0 +0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1,aura,0 +0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,719.3032 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1497.1531 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,5551.8743 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1167.5576 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,11375.4239 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,5459.8161 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,79362.4266 diff --git a/MaxiOps/feeDistributions/2024-05-23/2024-05-23.json b/MaxiOps/feeDistributions/2024-05-23/2024-05-23.json new file mode 100644 index 000000000..6156e0d79 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-23/2024-05-23.json @@ -0,0 +1,2394 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "226749789700" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "79362426600" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7552347300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1134818300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5028259100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1842419300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4650419100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "713996300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1229338300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "17825610800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "194104700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1997904400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3446003500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "605226200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2493563500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1705626900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "503928600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "397704400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1831449700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "605537000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1140515200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "358639300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1028903300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "882273500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1533950500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "641417500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1538501600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "731310600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "709648000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1329891700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1533884100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1323156300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1528261800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "719303200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1497153100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1167557600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5459816100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "17210437300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11951546800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11164324600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2962861800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "38614587900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1879677700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5637860000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8654947100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2736241200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6670556200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2525189500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2303873700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2736888500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2222482200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9715986600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5952589600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5551874300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11375423900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "147387430744" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "2442162635822209684591" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-05-23/2024-05-23.report.txt b/MaxiOps/feeDistributions/2024-05-23/2024-05-23.report.txt new file mode 100644 index 000000000..4423e7daa --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-23/2024-05-23.report.txt @@ -0,0 +1,204 @@ +FILENAME: `MaxiOps/feeDistributions/2024-05-23/2024-05-23.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `bea6c0365a6f2486353a29285fd7721e111239ea` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/37846975-6615-4da9-a25b-dc8edb13e03c) +``` ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+=================================================+=========================================================================+==================================================+=======+============+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 79362.4266 (RAW: 79362426600) | N/A | 1 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 147387.430744 (RAW: 147387430744) | N/A | 55 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 2442.1626358222097 (RAW: 2442162635822209684591) | N/A | 56 | ++------------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-05-23/2024-05-23.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `bea6c0365a6f2486353a29285fd7721e111239ea` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/8fe19efa-32d2-4192-ae12-7f361d049b45) +``` ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++==============+====================================================================+==============================+====================================================================+===========+============+ +| depositBribe | rETH weETH | USDC 7552.3473(7552347300) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sDAI GYD (GYROE) | USDC 1134.8183(1134818300) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH rETH | USDC 5028.2591(5028259100) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | DOLA sDOLA | USDC 1842.4193(1842419300) | balancer | 2 | 5 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH-50% ACX-50% | USDC 4650.4191(4650419100) | balancer | 2 | 6 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH sfrxETH wstETH | USDC 713.9963(713996300) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDC-DAI-USDT sDAI | USDC 1229.3383(1229338300) | balancer | 2 | 8 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH ezETH | USDC 17825.6108(17825610800) | balancer | 2 | 9 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rsETH ETHx | USDC 194.1047(194104700) | balancer | 2 | 10 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | weETH ezETH rswETH | USDC 1997.9044(1997904400) | balancer | 2 | 11 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH WETH | USDC 3446.0035(3446003500) | balancer | 2 | 12 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | rETH-50% RPL-50% | USDC 605.2262(605226200) | balancer | 2 | 13 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | svETH wstETH | USDC 2493.5635(2493563500) | balancer | 2 | 14 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | wstETH ankrETH | USDC 1705.6269(1705626900) | balancer | 2 | 15 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | WETH wstETH (GYROE) | USDC 503.9286(503928600) | balancer | 2 | 16 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | pufETH wstETH | USDC 397.7044(397704400) | balancer | 2 | 17 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ALCX-80% WETH-20% | USDC 1831.4497(1831449700) | balancer | 2 | 18 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | USDT USDC GHO | USDC 605.537(605537000) | balancer | 2 | 19 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | STG-50% USDC-50% | USDC 1140.5152(1140515200) | balancer | 2 | 20 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | RDNT-80% WETH-20% | USDC 358.6393(358639300) | balancer | 2 | 21 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | sUSDe USDC | USDC 1028.9033(1028903300) | balancer | 2 | 22 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 882.2735(882273500) | balancer | 2 | 23 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH cbETH wstETH | USDC 1533.9505(1533950500) | balancer | 2 | 24 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ankrETH wstETH | USDC 641.4175(641417500) | balancer | 2 | 25 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) WETH wstETH | USDC 1538.5016(1538501600) | balancer | 2 | 26 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) ezETH wstETH | USDC 731.3106(731310600) | balancer | 2 | 27 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) wstETH sfrxETH | USDC 709.648(709648000) | balancer | 2 | 28 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (A) rETH WETH | USDC 1329.8917(1329891700) | balancer | 2 | 29 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) WMATIC MaticX | USDC 1533.8841(1533884100) | balancer | 2 | 30 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 1323.1563(1323156300) | balancer | 2 | 31 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) WETH rETH | USDC 1528.2618(1528261800) | balancer | 2 | 32 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (B) weETH WETH | USDC 719.3032(719303200) | balancer | 2 | 33 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) ggAVAX WAVAX | USDC 1497.1531(1497153100) | balancer | 2 | 34 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (AV) sAVAX WAVAX | USDC 1167.5576(1167557600) | balancer | 2 | 35 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | (G) WETH wstETH | USDC 5459.8161(5459816100) | balancer | 2 | 36 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/weETH | USDC 17210.4373(17210437300) | aura | 1 | 37 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | MetaStable WETH/rETH | USDC 11951.5468(11951546800) | aura | 1 | 38 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 wstETH/ACX | USDC 11164.3246(11164324600) | aura | 1 | 39 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC 2962.8618(2962861800) | aura | 1 | 40 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable WETH/ezETH | USDC 38614.5879(38614587900) | aura | 1 | 41 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable rsETH/ETHx | USDC 1879.6777(1879677700) | aura | 1 | 42 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC 5637.86(5637860000) | aura | 1 | 43 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable wstETH/WETH | USDC 8654.9471(8654947100) | aura | 1 | 44 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 50/50 rETH/RPL | USDC 2736.2412(2736241200) | aura | 1 | 45 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable svETH/wstETH | USDC 6670.5562(6670556200) | aura | 1 | 46 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | Gyroe WETH/wstETH | USDC 2525.1895(2525189500) | aura | 1 | 47 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable pufETH/wstETH | USDC 2303.8737(2303873700) | aura | 1 | 48 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | ComposableStable USDT/USDC/GHO | USDC 2736.8885(2736888500) | aura | 1 | 49 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | 80/20 RDNT/WETH | USDC 2222.4822(2222482200) | aura | 1 | 50 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | a-80/20 RDNT/WETH | USDC 9715.9866(9715986600) | aura | 1 | 51 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 5952.5896(5952589600) | aura | 1 | 52 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC 5551.8743(5551874300) | aura | 1 | 53 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +| depositBribe | g-ComposableStable WETH/wstETH | USDC 11375.4239(11375423900) | aura | 1 | 54 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+-----------+------------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-05-23/2024-05-23.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `bea6c0365a6f2486353a29285fd7721e111239ea` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/111bbd5f-6c2c-4561-b096-90904faaa5f5) +``` ++-----------+----------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===========+==========================================================+=========+=============================================================================+==============+============+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:226749789700, 18 decimals:2.267497897E-7, 6 decimals: 226749.7897" | | | +| | | | ] | | | +| | | | } | | | ++-----------+----------------------------------------------------------+---------+-----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/feeDistributions/2024-05-23/fees_2024-05-09_2024-05-23.json b/MaxiOps/feeDistributions/2024-05-23/fees_2024-05-09_2024-05-23.json new file mode 100644 index 000000000..68be77cbf --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-23/fees_2024-05-09_2024-05-23.json @@ -0,0 +1,8 @@ +{ + "mainnet": 347115.58, + "arbitrum": 34165.96, + "polygon": 17619.26, + "base": 4495.13, + "gnosis": 33670.48, + "avalanche": 16433.17 +} diff --git a/MaxiOps/feeDistributions/2024-05-23/incentives_2024-05-09_2024-05-23.csv b/MaxiOps/feeDistributions/2024-05-23/incentives_2024-05-09_2024-05-23.csv new file mode 100644 index 000000000..66804a79d --- /dev/null +++ b/MaxiOps/feeDistributions/2024-05-23/incentives_2024-05-09_2024-05-23.csv @@ -0,0 +1,73 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,5331.12,4673.2968,2516.3906,7486.4737,5952.5896,1533.8841,296.7863,0,2024-05-23 09:32:50+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,942.22,825.9566,444.7459,1323.1563,0,1323.1563,52.4539,0,2024-05-23 09:19:44+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,258.96,227.0061,122.2341,0,0,0,-349.2402,0,2024-05-22 20:24:18+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,78360.50,36379.2077,19588.8041,56440.1987,38614.5879,17825.6108,472.1869,0,2024-05-23 03:56:23+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,34380.18,15961.1502,8594.4655,24762.7847,17210.4373,7552.3473,207.1690,0,2024-05-23 07:21:35+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,23574.44,10944.5377,5893.2126,16979.8059,11951.5468,5028.2591,142.0555,0,2024-05-23 04:25:47+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,21956.89,10193.5830,5488.8524,15814.7439,11164.3246,4650.4191,132.3085,0,2024-05-22 09:27:47+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,16800.73,7799.8130,4199.8993,12100.9506,8654.9471,3446.0035,101.2383,0,2024-05-21 03:58:11+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,12723.29,5906.8435,3180.6080,9164.1199,6670.5562,2493.5635,76.6684,0,2024-05-20 19:59:47+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,10601.35,4921.7235,2650.1588,7635.7641,5637.8600,1997.9044,63.8818,0,2024-05-23 08:23:23+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,5104.88,2369.9631,1276.1340,3676.8582,2962.8618,713.9963,30.7612,0,2024-05-21 05:53:35+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,4640.56,2154.4004,1160.0618,3342.4255,2736.8885,605.5370,27.9633,0,2024-05-23 08:09:23+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,4639.23,2153.7830,1159.7293,3341.4675,2736.2412,605.2262,27.9552,0,2024-05-20 00:38:23+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,4205.57,1952.4544,1051.3216,3029.1181,2525.1895,503.9286,25.3421,0,2024-05-21 19:15:11+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,3750.82,1741.3347,937.6418,2701.5782,2303.8737,397.7044,22.6017,0,2024-05-23 08:54:35+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,3583.58,1663.6928,895.8346,2581.1213,2222.4822,358.6393,21.5939,0,2024-05-23 03:22:23+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,2879.20,1336.6813,719.7515,2073.7824,1879.6777,194.1047,17.3496,0,2024-05-22 14:03:47+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,2557.98,1187.5535,639.4519,1842.4195,0,1842.4193,15.4141,0,2024-05-21 20:59:11+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,2542.75,1180.4829,635.6446,1831.4496,0,1831.4497,15.3221,0,2024-05-20 17:54:59+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,2368.06,1099.3823,591.9751,1705.6269,0,1705.6269,14.2695,0,2024-05-23 07:46:23+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,1706.79,792.3848,426.6687,1229.3383,0,1229.3383,10.2848,0,2024-05-20 06:33:11+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,1583.47,735.1329,395.8408,1140.5155,0,1140.5152,9.5418,0,2024-05-20 00:25:11+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,1575.56,731.4607,393.8634,1134.8182,0,1134.8183,9.4941,0,2024-05-22 10:40:35+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,1428.51,663.1921,357.1034,1028.9034,0,1028.9033,8.6079,0,2024-05-20 15:43:59+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,590.46,274.1237,147.6050,0,0,0,-421.7287,0,2024-05-15 16:18:23+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,542.34,251.7837,135.5759,0,0,0,-387.3596,0,2024-05-22 07:19:11+00:00 +0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c,mainnet,pyUSD/sDOLA BSP,381.58,177.1502,95.3886,0,0,0,-272.5388,0,2024-05-22 13:47:47+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,165.90,77.0198,41.4722,0,0,0,-118.4920,0,2024-05-21 19:24:11+00:00 +0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661,mainnet,vETH/wstETH,147.64,68.5425,36.9075,0,0,0,-105.4500,0,2024-05-19 16:49:59+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,114.33,53.0782,28.5806,0,0,0,-81.6588,0,2024-05-22 15:21:59+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,53.36,24.7726,13.3391,0,0,0,-38.1117,0,2024-05-10 19:50:23+00:00 +0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,mainnet,wbETH-wstETH,37.34,17.3353,9.3344,0,0,0,-26.6696,0,2024-05-23 02:31:11+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-28 16:46:35+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-01 09:52:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-24 17:39:11+00:00 +0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7,mainnet,uniETH/wstETH/rETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-03-15 01:40:47+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-09 01:56:35+00:00 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-07 06:34:59+00:00 +0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670,mainnet,InstETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-12 14:54:47+00:00 +0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b,mainnet,genETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-12 14:53:35+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-03 22:22:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,6579.95,10942.9060,5892.3340,16835.2400,11375.4239,5459.8161,0,0,2024-05-23 06:50:40+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1120.60,821.6949,442.4511,1528.2618,0,1528.2618,264.1158,0,2024-05-23 09:27:55+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,527.43,386.7451,208.2474,719.3032,0,719.3032,124.3107,0,2024-05-23 08:29:53+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,271.65,199.1910,107.2567,0,0,0,-306.4477,0,2024-05-22 22:00:17+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,72.67,53.2862,28.6926,0,0,0,-81.9788,0,2024-05-23 09:32:11+00:00 +0x98bedb6a3c0b6feebbe662e6419481a6877d9681000000000000000000000104,base,sfrxETH/cbETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-02 23:43:41+00:00 +0x821afe819450a359e29a5209c48f2fa3321c8ad200020000000000000000010d,base,ECLP-sDAI-USDC-rh,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-12 11:15:59+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,12138.98,4322.3734,2327.4318,6719.4319,5551.8743,1167.5576,69.6266,0,2024-05-22 23:18:35+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,2704.68,963.0658,518.5739,1497.1531,0,1497.1531,15.5134,0,2024-05-22 21:25:46+00:00 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,134.91,48.0379,25.8666,0,0,0,-73.9045,0,2024-05-22 11:39:23+00:00 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,20.51,7.3031,3.9324,0,0,0,-11.2355,0,2024-05-22 00:32:06+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,13513.70,5980.3778,3220.2034,9715.9865,9715.9866,0.0000,515.4053,0,2024-05-23 09:19:15+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,2139.86,946.9776,509.9110,1538.5016,0,1538.5016,81.6130,0,2024-05-23 07:10:20+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,2133.53,944.1763,508.4026,1533.9506,0,1533.9505,81.3717,0,2024-05-23 08:25:26+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1849.71,818.5741,440.7707,1329.8916,0,1329.8917,70.5469,0,2024-05-23 08:06:00+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1227.13,543.0564,292.4150,882.2736,0,882.2735,46.8022,0,2024-05-17 16:53:36+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1017.16,450.1359,242.3809,731.3107,0,731.3106,38.7940,0,2024-05-23 08:20:20+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,987.03,436.8021,235.2011,709.6480,0,709.6480,37.6448,0,2024-05-23 00:51:08+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,892.13,394.8049,212.5872,641.4174,0,641.4175,34.0253,0,2024-05-23 06:23:12+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,502.61,222.4260,119.7678,0,0,0,-342.1938,0,2024-05-22 22:20:43+00:00 +0xfb2f7ed572589940e24c5711c002adc59d5e79ef000000000000000000000535,arbitrum,jitoSOL/wSOL,382.38,169.2192,91.1180,0,0,0,-260.3372,0,2024-05-20 00:32:49+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,363.63,160.9215,86.6500,0,0,0,-247.5715,0,2024-05-22 20:18:37+00:00 +0x260dbd54d87a10a0fc9d08622ebc969a3bf4e6bb000200000000000000000536,arbitrum,jitoSOL/wstETH,46.68,20.6579,11.1235,0,0,0,-31.7813,0,2024-05-23 09:03:21+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,35.72,15.8076,8.5118,0,0,0,-24.3194,0,2024-05-22 16:26:29+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-02-16 15:49:05+00:00 +0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d,arbitrum,weETH/rETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-07 13:56:07+00:00 +0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d,arbitrum,2CLP-AUSDC-USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-23 07:57:21+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-23 06:04:42+00:00 +0x2f0cdf8596be980ef24924ca7bf54e630ca526b2000000000000000000000529,arbitrum,sUSDe/USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-07 19:43:13+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-07 15:42:14+00:00 diff --git a/MaxiOps/feeDistributions/2024-06-06/2024-06-06.csv b/MaxiOps/feeDistributions/2024-06-06/2024-06-06.csv new file mode 100644 index 000000000..0a439b1ec --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-06/2024-06-06.csv @@ -0,0 +1,148 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,14313.9100 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,6566.1084 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,710.3683 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,8984.1050 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,4043.3795 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,1223.2641 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,aura,0 +0xd1c070eBc7Ec77f2134b3Ef75283b6C1fb31a157,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,6299.7388 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,2772.8020 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,3142.3518 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,1278.3322 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,876.2077 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,35415.0529 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,16553.8036 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,2002.4216 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,738.7750 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,4369.3853 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,1859.1176 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,9226.1341 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4157.9373 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,1819.3216 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,652.1093 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,aura,0 +0x3ca33F22893a51A80Ed4ed8afebc900Ae813cA02,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,952.5370 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,7020.4978 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,3113.9552 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1554.7566 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,526.8840 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,2886.9280 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1157.4338 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1188.7651 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,353.6512 +0xe6281Fc01607366794597d7fA6b32931fF986969,aura,0 +0xe6281Fc01607366794597d7fA6b32931fF986969,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,aura,0 +0x87012b0C3257423fD74a5986F81a0f1954C17a1d,balancer,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,aura,0 +0xCDA1B6704B108dF230d2a36da4C088C6afd6f335,balancer,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,aura,0 +0xF849D20a927C892Ad2C476a5cc7E2cDbD9BbC18f,balancer,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,aura,0 +0x7d631e72eb15285Da57eeaf40a971724A94ced05,balancer,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2216.9153 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,840.3003 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,3035.9619 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1227.9752 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,1431.2558 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,468.4278 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,0 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,2336.6646 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,896.9804 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,2153.9240 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,810.4848 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,864.1321 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,2038.2482 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,180.4424 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,742.6341 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,1872.4486 +0xb6d101874B975083C76598542946Fe047f059066,balancer,101.9652 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,772.3063 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,0 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,758.1723 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,1701.2798 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,20.9468 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,aura,0 +0xa8Bb331a84032b156E5c670152A5Bd48f5DeC784,balancer,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,aura,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,balancer,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,aura,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,15110.6122 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,6367.9168 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,aura,0 +0x6A8B6F0177E273600c6BaE84dA3A9a3c8B29d778,balancer,0 +0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E,aura,0 +0x6Bf6fb94027FDe38B40C7ADC154AA32C36174C8E,balancer,0 +0x7542967F91fD6EE8433A41B22C2be8972A002CA5,aura,0 +0x7542967F91fD6EE8433A41B22C2be8972A002CA5,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,3933.6119 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1861.8762 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,1001.8985 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,474.2234 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1904.5637 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,901.4773 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,aura,0 +0x3CFfb5d5Db1dA8AA58908e54C03a7f8a7edb233c,balancer,0 +0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1,aura,0 +0x39a6D33557d31151F88D0b12Ab2D2Fb659c238A1,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,1111.0170 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,525.8720 +0x956074628A64a316086f7125074a8A52d3306321,aura,0 +0x956074628A64a316086f7125074a8A52d3306321,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1326.7702 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,5914.5816 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1472.7483 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,aura,0 +0xB95397A17ACbb5824535ebE69Cd9DCF8fA7aFC50,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,11525.3164 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,5455.2186 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,80191.7213 diff --git a/MaxiOps/feeDistributions/2024-06-06/2024-06-07.json b/MaxiOps/feeDistributions/2024-06-06/2024-06-07.json new file mode 100644 index 000000000..b8b3ea2e0 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-06/2024-06-07.json @@ -0,0 +1,2910 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "229119204801" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "80191721300" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6566108400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "710368300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4043379500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1223264100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2772802000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1278332200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "876207700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16553803600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "738775000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1859117600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4157937299", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "652109300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5578b5cfceb511af5d1ac11aacd75e89c6122939b7688697f22492fd8e40408c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "952537000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3113955200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "526884000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1157433800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "353651200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "840300300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1227975200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "468427800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "896980400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "810484800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "864132100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "180442400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "742634100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "101965200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "772306300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "758172300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "20946800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6367916800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1861876200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "474223400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "901477300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "525871999", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1326770200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1472748300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5455218600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14313910000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8984105000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6299738800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3142351800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "35415052900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2002421600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4369385300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9226134100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1819321600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7020497800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1554756600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2886928000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1188765100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2216915300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3035961900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1431255800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2336664600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2153924000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2038248200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1872448600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1701279800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15110612200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3933611900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1001898500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1904563700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1111017000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5914581600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11525316400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "148927545712" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "1431669728570651401792" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-06-06/2024-06-07.report.txt b/MaxiOps/feeDistributions/2024-06-06/2024-06-07.report.txt new file mode 100644 index 000000000..42418d673 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-06/2024-06-07.report.txt @@ -0,0 +1,174 @@ +FILENAME: `MaxiOps/feeDistributions/2024-06-06/2024-06-07.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `6cdb04bd7a1ca08355663de4e4ae6ee0a1bbdf7b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9dc8362d-05a7-436a-8e64-422ca94f7436) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 80191.7213 (RAW: 80191721300) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 148927.545712 (RAW: 148927545712) | N/A | 67 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 1431.6697285706514 (RAW: 1431669728570651401792) | N/A | 68 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-06-06/2024-06-07.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `6cdb04bd7a1ca08355663de4e4ae6ee0a1bbdf7b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a51d0668-4233-4ac7-98f2-cc2ab0ce2553) +``` ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC 6566.1084(6566108400) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | sDAI GYD (GYROE) | USDC 710.3683(710368300) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | +| depositBribe | WETH rETH | USDC 4043.3795(4043379500) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | DOLA sDOLA | USDC 1223.2641(1223264100) | balancer | 2 | 5 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | wstETH-50% ACX-50% | USDC 2772.802(2772802000) | balancer | 2 | 6 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC 1278.3322(1278332200) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | USDC-DAI-USDT sDAI | USDC 876.2077(876207700) | balancer | 2 | 8 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | WETH ezETH | USDC 16553.8036(16553803600) | balancer | 2 | 9 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | rsETH ETHx | USDC 738.775(738775000) | balancer | 2 | 10 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | weETH ezETH rswETH | USDC 1859.1176(1859117600) | balancer | 2 | 11 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC 4157.937299(4157937299) | balancer | 2 | 12 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC 652.1093(652109300) | balancer | 2 | 13 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | WETH uniETH | USDC 952.537(952537000) | balancer | 2 | 14 | +| | 0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e | | 0x5578b5cfceb511af5d1ac11aacd75e89c6122939b7688697f22492fd8e40408c | | | +| depositBribe | svETH wstETH | USDC 3113.9552(3113955200) | balancer | 2 | 15 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | +| depositBribe | wstETH ankrETH | USDC 526.884(526884000) | balancer | 2 | 16 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | WETH wstETH (GYROE) | USDC 1157.4338(1157433800) | balancer | 2 | 17 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | wstETH cbETH (GYROE) | USDC 353.6512(353651200) | balancer | 2 | 18 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | pufETH wstETH | USDC 840.3003(840300300) | balancer | 2 | 19 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ALCX-80% WETH-20% | USDC 1227.9752(1227975200) | balancer | 2 | 20 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC 468.4278(468427800) | balancer | 2 | 21 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | RDNT-80% WETH-20% | USDC 896.9804(896980400) | balancer | 2 | 22 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | sUSDe USDC | USDC 810.4848(810484800) | balancer | 2 | 23 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 864.1321(864132100) | balancer | 2 | 24 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC 180.4424(180442400) | balancer | 2 | 25 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) ankrETH wstETH | USDC 742.6341(742634100) | balancer | 2 | 26 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | +| depositBribe | (A) WETH wstETH | USDC 101.9652(101965200) | balancer | 2 | 27 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC 772.3063(772306300) | balancer | 2 | 28 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC 758.1723(758172300) | balancer | 2 | 29 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) rETH WETH | USDC 20.9468(20946800) | balancer | 2 | 30 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC 6367.9168(6367916800) | balancer | 2 | 31 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) WMATIC MaticX | USDC 1861.8762(1861876200) | balancer | 2 | 32 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 474.2234(474223400) | balancer | 2 | 33 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | (B) WETH rETH | USDC 901.4773(901477300) | balancer | 2 | 34 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (B) weETH WETH | USDC 525.871999(525871999) | balancer | 2 | 35 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC 1326.7702(1326770200) | balancer | 2 | 36 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (AV) sAVAX WAVAX | USDC 1472.7483(1472748300) | balancer | 2 | 37 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC 5455.2186(5455218600) | balancer | 2 | 38 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC 14313.91(14313910000) | aura | 1 | 39 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | MetaStable WETH/rETH | USDC 8984.105(8984105000) | aura | 1 | 40 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | 50/50 wstETH/ACX | USDC 6299.7388(6299738800) | aura | 1 | 41 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC 3142.3518(3142351800) | aura | 1 | 42 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC 35415.0529(35415052900) | aura | 1 | 43 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC 2002.4216(2002421600) | aura | 1 | 44 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC 4369.3853(4369385300) | aura | 1 | 45 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC 9226.1341(9226134100) | aura | 1 | 46 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC 1819.3216(1819321600) | aura | 1 | 47 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable svETH/wstETH | USDC 7020.4978(7020497800) | aura | 1 | 48 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC 1554.7566(1554756600) | aura | 1 | 49 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | Gyroe WETH/wstETH | USDC 2886.928(2886928000) | aura | 1 | 50 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | Gyroe wstETH/cbETH | USDC 1188.7651(1188765100) | aura | 1 | 51 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC 2216.9153(2216915300) | aura | 1 | 52 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | 80/20 ALCX/WETH | USDC 3035.9619(3035961900) | aura | 1 | 53 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC 1431.2558(1431255800) | aura | 1 | 54 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 80/20 RDNT/WETH | USDC 2336.6646(2336664600) | aura | 1 | 55 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC 2153.924(2153924000) | aura | 1 | 56 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC 2038.2482(2038248200) | aura | 1 | 57 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-ComposableStable WETH/wstETH | USDC 1872.4486(1872448600) | aura | 1 | 58 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable rETH/WETH | USDC 1701.2798(1701279800) | aura | 1 | 59 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC 15110.6122(15110612200) | aura | 1 | 60 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 3933.6119(3933611900) | aura | 1 | 61 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | p-Gyroe WMATIC/stMATIC | USDC 1001.8985(1001898500) | aura | 1 | 62 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC 1904.5637(1904563700) | aura | 1 | 63 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | b-ComposableStable weETH/WETH | USDC 1111.017(1111017000) | aura | 1 | 64 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC 5914.5816(5914581600) | aura | 1 | 65 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC 11525.3164(11525316400) | aura | 1 | 66 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-06-06/2024-06-07.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `6cdb04bd7a1ca08355663de4e4ae6ee0a1bbdf7b` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/63179576-a90e-47c1-a156-4049e2e45e47) +``` ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:229119204801, 18 decimals:2.29119204801E-7, 6 decimals: 229119.204801" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-06-06/fees_2024-05-23_2024-06-06.json b/MaxiOps/feeDistributions/2024-06-06/fees_2024-05-23_2024-06-06.json new file mode 100644 index 000000000..db788792e --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-06/fees_2024-05-23_2024-06-06.json @@ -0,0 +1,8 @@ +{ + "mainnet": 322357.85, + "arbitrum": 61062.21, + "polygon": 14543.22, + "base": 8885.86, + "gnosis": 33961.07, + "avalanche": 17428.2 +} diff --git a/MaxiOps/feeDistributions/2024-06-06/incentives_2024-05-23_2024-06-06.csv b/MaxiOps/feeDistributions/2024-06-06/incentives_2024-05-23_2024-06-06.csv new file mode 100644 index 000000000..486b4189b --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-06/incentives_2024-05-23_2024-06-06.csv @@ -0,0 +1,74 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,4649.71,3699.3515,1991.9585,5795.4881,3933.6119,1861.8762,104.1781,0,2024-06-07 04:59:48+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,1184.29,942.2319,507.3556,1476.1219,1001.8985,474.2234,26.5344,0,2024-06-07 07:48:10+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,106.79,84.9631,45.7494,0,0,0,-130.7125,0,2024-06-06 06:17:39+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,79448.44,33497.5301,18037.1316,51968.8565,35415.0529,16553.8036,434.1948,0,2024-06-05 22:40:47+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,31920.75,13458.6190,7246.9487,20880.0183,14313.9100,6566.1084,174.4506,0,2024-06-07 07:34:23+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,20461.17,8626.9618,4645.2871,13384.0714,9226.1341,4157.9373,111.8225,0,2024-06-05 15:54:23+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,19916.03,8397.1166,4521.5243,13027.4844,8984.1050,4043.3795,108.8435,0,2024-06-06 11:35:11+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,15493.25,6532.3574,3517.4232,10134.4530,7020.4978,3113.9552,84.6723,0,2024-06-05 00:46:23+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,13869.83,5847.8813,3148.8592,9072.5407,6299.7388,2772.8020,75.8002,0,2024-06-07 00:43:35+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,9521.95,4014.7019,2161.7626,6228.5030,4369.3853,1859.1176,52.0385,0,2024-06-07 08:06:59+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,6758.21,2849.4372,1534.3124,4420.6839,3142.3518,1278.3322,36.9343,0,2024-06-05 00:44:11+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,6518.58,2748.4030,1479.9093,4263.9372,3035.9619,1227.9752,35.6249,0,2024-06-03 17:59:47+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,6182.90,2606.8716,1403.7001,4044.3618,2886.9280,1157.4338,33.7902,0,2024-06-05 01:20:59+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,4943.50,2084.3083,1122.3198,3233.6450,2336.6646,896.9804,27.0169,0,2024-06-06 04:54:59+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,4673.78,1970.5873,1061.0855,3057.2155,2216.9153,840.3003,25.5427,0,2024-06-07 06:26:11+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,4531.90,1910.7670,1028.8745,2964.4088,2153.9240,810.4848,24.7673,0,2024-06-05 00:53:11+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,4190.66,1766.8913,951.4030,2741.1967,2002.4216,738.7750,22.9024,0,2024-06-04 08:41:59+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,3778.25,1593.0085,857.7738,2471.4310,1819.3216,652.1093,20.6486,0,2024-06-04 14:43:11+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,3182.35,1341.7616,722.4870,2081.6405,1554.7566,526.8840,17.3919,0,2024-06-06 09:13:23+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,2904.18,1224.4779,659.3342,1899.6837,1431.2558,468.4278,15.8716,0,2024-06-07 06:23:59+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,2358.00,994.1942,535.3353,1542.4163,1188.7651,353.6512,12.8868,0,2024-06-04 20:31:47+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1870.09,788.4786,424.5654,1223.2643,0,1223.2641,10.2203,0,2024-06-03 18:18:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,1456.21,613.9760,330.6025,952.5370,0,952.5370,7.9585,0,2024-06-05 00:48:23+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,1339.52,564.7765,304.1104,876.2074,0,876.2077,7.3205,0,2024-06-06 03:52:59+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,1085.99,457.8816,246.5517,710.3684,0,710.3683,5.9351,0,2024-06-04 15:01:59+00:00 +0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c,mainnet,pyUSD/sDOLA BSP,631.62,266.3074,143.3963,0,0,0,-409.7037,0,2024-06-06 21:05:35+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,429.45,181.0673,97.4978,0,0,0,-278.5651,0,2024-06-01 10:35:35+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,321.20,135.4263,72.9218,0,0,0,-208.3481,0,2024-05-28 21:11:35+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,297.36,125.3747,67.5095,0,0,0,-192.8842,0,2024-06-06 10:37:59+00:00 +0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670,mainnet,InstETH/wstETH,166.42,70.1670,37.7822,0,0,0,-107.9492,0,2024-06-05 00:47:23+00:00 +0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b,mainnet,genETH/wstETH,142.34,60.0142,32.3154,0,0,0,-92.3296,0,2024-06-05 00:50:35+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,71.47,30.1336,16.2258,0,0,0,-46.3594,0,2024-05-29 03:46:59+00:00 +0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536,mainnet,wbETH-wstETH,9.26,3.9043,2.1023,0,0,0,-6.0065,0,2024-05-23 02:31:11+00:00 +0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7,mainnet,uniETH/wstETH/rETH,6.92,2.9177,1.5710,0,0,0,-4.4887,0,2024-06-05 00:51:11+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-01 09:52:47+00:00 +0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661,mainnet,vETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-19 16:49:59+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-09 01:56:35+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-21 19:24:11+00:00 +0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464,mainnet,50rETH-50BADGER,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-07 06:34:59+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-20 00:25:11+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-03 22:22:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,9571.72,11037.3478,5943.1872,16980.5350,11525.3164,5455.2186,0,0,2024-06-06 23:38:55+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1404.47,1496.8411,805.9913,2806.0410,1904.5637,901.4773,503.2086,0,2024-06-07 11:21:35+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,819.29,873.1742,470.1707,1636.8890,1111.0170,525.8720,293.5441,0,2024-06-07 10:47:43+00:00 +0x821afe819450a359e29a5209c48f2fa3321c8ad200020000000000000000010d,base,ECLP-sDAI-USDC-rh,196.79,209.7327,112.9330,0,0,0,-322.6658,0,2024-06-06 12:56:17+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,183.89,195.9843,105.5300,0,0,0,-301.5143,0,2024-06-07 08:52:37+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,105.25,112.1722,60.4004,0,0,0,-172.5726,0,2024-06-07 11:48:21+00:00 +0x98bedb6a3c0b6feebbe662e6419481a6877d9681000000000000000000000104,base,sfrxETH/cbETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-02 23:43:41+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,14066.03,4750.7021,2558.0704,7387.3298,5914.5816,1472.7483,78.5573,0,2024-06-07 11:18:58+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,2526.27,853.2298,459.4314,1326.7703,0,1326.7702,14.1090,0,2024-06-07 10:03:33+00:00 +0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f,avalanche,yyAVAX-WAVAX-BPT,168.43,56.8860,30.6309,0,0,0,-87.5170,0,2024-06-05 21:37:13+00:00 +0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e,avalanche,USDC-USDT-BPT,9.91,3.3470,1.8022,0,0,0,-5.1493,0,2024-05-30 16:12:08+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,31198.26,13575.6357,7309.9577,21478.5291,15110.6122,6367.9168,592.9357,0,2024-06-07 11:38:31+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,3222.72,1402.3369,755.1045,2218.6906,2038.2482,180.4424,61.2491,0,2024-06-06 20:24:26+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,2867.90,1247.9403,671.9678,1974.4137,1872.4486,101.9652,54.5056,0,2024-06-07 10:10:32+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,2501.59,1088.5439,586.1390,1722.2266,1701.2798,20.9468,47.5437,0,2024-06-07 02:27:30+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1255.18,546.1800,294.0969,864.1323,0,864.1321,23.8553,0,2024-06-05 04:56:45+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1121.80,488.1409,262.8451,772.3062,0,772.3063,21.3201,0,2024-06-07 11:38:27+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,1101.27,479.2075,258.0348,758.1724,0,758.1723,20.9301,0,2024-06-06 23:17:36+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,1078.70,469.3864,252.7465,742.6340,0,742.6341,20.5011,0,2024-06-07 09:40:48+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,601.00,261.5196,140.8183,0,0,0,-402.3379,0,2024-06-07 06:58:02+00:00 +0x260dbd54d87a10a0fc9d08622ebc969a3bf4e6bb000200000000000000000536,arbitrum,jitoSOL/wstETH,374.99,163.1734,87.8626,0,0,0,-251.0361,0,2024-06-06 16:47:36+00:00 +0xfb2f7ed572589940e24c5711c002adc59d5e79ef000000000000000000000535,arbitrum,jitoSOL/wSOL,123.98,53.9488,29.0493,0,0,0,-82.9981,0,2024-06-06 04:56:06+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,64.34,27.9970,15.0753,0,0,0,-43.0722,0,2024-06-07 04:39:59+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,61.80,26.8917,14.4801,0,0,0,-41.3718,0,2024-06-07 04:41:09+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,32.90,14.3161,7.7087,0,0,0,-22.0248,0,2024-06-07 06:02:22+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 +0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4,arbitrum,50wstETH/50-4Pool,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-02-16 15:49:05+00:00 +0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d,arbitrum,weETH/rETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-07 13:56:07+00:00 +0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d,arbitrum,2CLP-AUSDC-USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-06 22:27:03+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-04 20:03:31+00:00 +0x2f0cdf8596be980ef24924ca7bf54e630ca526b2000000000000000000000529,arbitrum,sUSDe/USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-04-07 19:43:13+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-13 23:49:46+00:00 diff --git a/MaxiOps/feeDistributions/2024-06-20/2024-06-20.json b/MaxiOps/feeDistributions/2024-06-20/2024-06-20.json new file mode 100644 index 000000000..a08682a15 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-20/2024-06-20.json @@ -0,0 +1,2824 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "247606304200" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "86662206700" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6501629800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x0085bdf8723a0cbfe1ca09802aa20ce386f77f3964c810eebb8eb7395d904f0f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "608637900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "670701300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4057985400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1239280000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3009045700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe4ea1699072d6b6a3b7c7e80706b196ead8584eb63a672d97387a07d795d933c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "519139699", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1107416000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1342790000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14008953800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "603091100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2017470000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4203501900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1972973200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "804926700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3118553600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "757384000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "394896200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "746918100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "253568300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1310106400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "283603400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10021946800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "476567800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1005520500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "586773300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "187247200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "729762600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "862975300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3782271500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1580206600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1452331400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "677109000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "607602000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2362622200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4257098100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14906930900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9576366300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7288209200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe4ea1699072d6b6a3b7c7e80706b196ead8584eb63a672d97387a07d795d933c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1856729800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3139995300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "31283404500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2039861400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5125186900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9893795600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5028121300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7527089800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2376435600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1585704900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2353605100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1277412100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1342930800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "22586149300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1763863300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1618782800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2145417600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1274511800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9987602500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6615177000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1124735900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1325422800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5153823000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9286431900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "160944160845" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "2852114960073177142922" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-06-20/2024-06-20.report.txt b/MaxiOps/feeDistributions/2024-06-20/2024-06-20.report.txt new file mode 100644 index 000000000..86a43a526 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-20/2024-06-20.report.txt @@ -0,0 +1,170 @@ +FILENAME: `MaxiOps/feeDistributions/2024-06-20/2024-06-20.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `6a3cc9b076c5ba0f984f564b3e6ec47c92f1bd75` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/053f6494-421a-4902-aaad-f9ec9d35767b) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 86662.2067 (RAW: 86662206700) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 160944.160845 (RAW: 160944160845) | N/A | 65 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 2852.114960073177 (RAW: 2852114960073177142922) | N/A | 66 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-06-20/2024-06-20.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `6a3cc9b076c5ba0f984f564b3e6ec47c92f1bd75` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7e99785a-97f2-422c-beb0-f95931065b93) +``` ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC 6501.6298(6501629800) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | PYUSD sDOLA | USDC 608.6379(608637900) | balancer | 2 | 3 | +| | 0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c | | 0x0085bdf8723a0cbfe1ca09802aa20ce386f77f3964c810eebb8eb7395d904f0f | | | +| depositBribe | sDAI GYD (GYROE) | USDC 670.7013(670701300) | balancer | 2 | 4 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | +| depositBribe | WETH rETH | USDC 4057.9854(4057985400) | balancer | 2 | 5 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | DOLA sDOLA | USDC 1239.28(1239280000) | balancer | 2 | 6 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | wstETH-50% ACX-50% | USDC 3009.0457(3009045700) | balancer | 2 | 7 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | qETH WETH | USDC 519.139699(519139699) | balancer | 2 | 8 | +| | 0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5 | | 0xe4ea1699072d6b6a3b7c7e80706b196ead8584eb63a672d97387a07d795d933c | | | +| depositBribe | rETH sfrxETH wstETH | USDC 1107.416(1107416000) | balancer | 2 | 9 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | USDC-DAI-USDT sDAI | USDC 1342.79(1342790000) | balancer | 2 | 10 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | WETH ezETH | USDC 14008.9538(14008953800) | balancer | 2 | 11 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC 603.0911(603091100) | balancer | 2 | 12 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | weETH ezETH rswETH | USDC 2017.47(2017470000) | balancer | 2 | 13 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC 4203.5019(4203501900) | balancer | 2 | 14 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC 1972.9732(1972973200) | balancer | 2 | 15 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | WETH staFi rETH | USDC 804.9267(804926700) | balancer | 2 | 16 | +| | 0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445 | | 0x4c1db2608a67a01de924aef59dea34a573405f6e495371275b389670b8104d1d | | | +| depositBribe | sUSDe USDC | USDC 3118.5536(3118553600) | balancer | 2 | 17 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | svETH wstETH | USDC 757.384(757384000) | balancer | 2 | 18 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | +| depositBribe | wstETH ankrETH | USDC 394.8962(394896200) | balancer | 2 | 19 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | WETH wstETH (GYROE) | USDC 746.9181(746918100) | balancer | 2 | 20 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | wstETH cbETH (GYROE) | USDC 253.5683(253568300) | balancer | 2 | 21 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | ALCX-80% WETH-20% | USDC 1310.1064(1310106400) | balancer | 2 | 22 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC 283.6034(283603400) | balancer | 2 | 23 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC 10021.9468(10021946800) | balancer | 2 | 24 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | RDNT-80% WETH-20% | USDC 476.5678(476567800) | balancer | 2 | 25 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 1005.5205(1005520500) | balancer | 2 | 26 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) ankrETH wstETH | USDC 586.7733(586773300) | balancer | 2 | 27 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | +| depositBribe | (A) WETH wstETH | USDC 187.2472(187247200) | balancer | 2 | 28 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC 729.7626(729762600) | balancer | 2 | 29 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC 862.9753(862975300) | balancer | 2 | 30 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC 3782.2715(3782271500) | balancer | 2 | 31 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) WMATIC MaticX | USDC 1580.2066(1580206600) | balancer | 2 | 32 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 1452.3314(1452331400) | balancer | 2 | 33 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | (B) weETH WETH | USDC 677.109(677109000) | balancer | 2 | 34 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC 607.602(607602000) | balancer | 2 | 35 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (AV) sAVAX WAVAX | USDC 2362.6222(2362622200) | balancer | 2 | 36 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC 4257.0981(4257098100) | balancer | 2 | 37 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC 14906.9309(14906930900) | aura | 1 | 38 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | MetaStable WETH/rETH | USDC 9576.3663(9576366300) | aura | 1 | 39 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | 50/50 wstETH/ACX | USDC 7288.2092(7288209200) | aura | 1 | 40 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable qETH/WETH | USDC 1856.7298(1856729800) | aura | 1 | 41 | +| | 0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5 | | 0xe4ea1699072d6b6a3b7c7e80706b196ead8584eb63a672d97387a07d795d933c | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC 3139.9953(3139995300) | aura | 1 | 42 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC 31283.4045(31283404500) | aura | 1 | 43 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC 2039.8614(2039861400) | aura | 1 | 44 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC 5125.1869(5125186900) | aura | 1 | 45 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC 9893.7956(9893795600) | aura | 1 | 46 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC 5028.1213(5028121300) | aura | 1 | 47 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC 7527.0898(7527089800) | aura | 1 | 48 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable svETH/wstETH | USDC 2376.4356(2376435600) | aura | 1 | 49 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC 1585.7049(1585704900) | aura | 1 | 50 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | Gyroe WETH/wstETH | USDC 2353.6051(2353605100) | aura | 1 | 51 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | Gyroe wstETH/cbETH | USDC 1277.4121(1277412100) | aura | 1 | 52 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC 1342.9308(1342930800) | aura | 1 | 53 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC 22586.1493(22586149300) | aura | 1 | 54 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC 1763.8633(1763863300) | aura | 1 | 55 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC 1618.7828(1618782800) | aura | 1 | 56 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-ComposableStable WETH/wstETH | USDC 2145.4176(2145417600) | aura | 1 | 57 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable rETH/WETH | USDC 1274.5118(1274511800) | aura | 1 | 58 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC 9987.6025(9987602500) | aura | 1 | 59 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 6615.177(6615177000) | aura | 1 | 60 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC 1124.7359(1124735900) | aura | 1 | 61 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC 1325.4228(1325422800) | aura | 1 | 62 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC 5153.823(5153823000) | aura | 1 | 63 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC 9286.4319(9286431900) | aura | 1 | 64 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-06-20/2024-06-20.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `6a3cc9b076c5ba0f984f564b3e6ec47c92f1bd75` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e92e4051-6a46-4dbb-9526-fde5257dda57) +``` ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:247606304200, 18 decimals:2.476063042E-7, 6 decimals: 247606.3042" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-06-20/fees_2024-06-06_2024-06-20.json b/MaxiOps/feeDistributions/2024-06-20/fees_2024-06-06_2024-06-20.json new file mode 100644 index 000000000..266ff0b76 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-20/fees_2024-06-06_2024-06-20.json @@ -0,0 +1,8 @@ +{ + "mainnet": 381965.76, + "arbitrum": 44361.73, + "polygon": 19295.43, + "base": 3603.69, + "gnosis": 27087.06, + "avalanche": 18898.94 +} diff --git a/MaxiOps/feeDistributions/2024-06-20/incentives_2024-06-06_2024-06-20.csv b/MaxiOps/feeDistributions/2024-06-20/incentives_2024-06-06_2024-06-20.csv new file mode 100644 index 000000000..3158ff7ee --- /dev/null +++ b/MaxiOps/feeDistributions/2024-06-20/incentives_2024-06-06_2024-06-20.csv @@ -0,0 +1,58 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,6555.77,5326.9993,2868.3843,8195.3836,6615.1770,1580.2066,0.0000,0,2024-06-20 14:05:38+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,1161.77,944.0154,508.3160,1452.3314,0,1452.3314,0.0000,0,2024-06-20 10:31:50+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-19 22:56:08+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,70189.85,29263.8097,15757.4360,45292.3582,31283.4045,14008.9538,271.1125,0,2024-06-20 10:50:47+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,50532.97,21068.3912,11344.5183,32608.0962,22586.1493,10021.9468,195.1867,0,2024-06-17 02:12:11+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,33176.98,13832.2682,7448.1444,21408.5607,14906.9309,6501.6298,128.1481,0,2024-06-19 23:46:59+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,21846.67,9108.3938,4904.5197,14097.2976,9893.7956,4203.5019,84.3841,0,2024-06-20 14:28:47+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,21129.24,8809.2802,4743.4586,13634.3517,9576.3663,4057.9854,81.6129,0,2024-06-20 14:30:35+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,16497.62,6878.2482,3703.6721,10645.6435,7527.0898,3118.5536,63.7231,0,2024-06-16 11:45:35+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,15957.72,6653.1512,3582.4660,10297.2548,7288.2092,3009.0457,61.6376,0,2024-06-18 23:53:23+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,11069.02,4614.9364,2484.9658,7142.6569,5125.1869,2017.4700,42.7547,0,2024-06-20 04:47:59+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,10849.64,4523.4717,2435.7155,7001.0946,5028.1213,1972.9732,41.9074,0,2024-06-17 02:32:59+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,6582.24,2744.2916,1477.6955,4247.4114,3139.9953,1107.4160,25.4243,0,2024-06-20 00:07:35+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,4856.50,2024.7898,1090.2714,3133.8198,2376.4356,757.3840,18.7586,0,2024-06-17 20:23:23+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,4804.90,2003.2765,1078.6874,3100.5232,2353.6051,746.9181,18.5593,0,2024-06-20 01:15:23+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,4095.80,1707.6360,919.4963,2642.9525,2039.8614,603.0911,15.8203,0,2024-06-20 06:41:59+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,3681.90,1535.0713,826.5768,2375.8697,1856.7298,519.1397,14.2216,0,2024-06-17 06:42:35+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,3472.01,1447.5631,779.4571,2240.4311,1763.8633,476.5678,13.4109,0,2024-06-20 01:16:47+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,3069.35,1279.6847,689.0610,1980.6011,1585.7049,394.8962,11.8555,0,2024-06-18 06:12:11+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,2520.65,1050.9186,565.8793,1626.5341,1342.9308,283.6034,9.7362,0,2024-06-20 12:06:35+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,2372.57,989.1806,532.6357,1530.9805,1277.4121,253.5683,9.1642,0,2024-06-16 23:11:35+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,2080.93,867.5890,467.1633,1342.7900,0,1342.7900,8.0377,0,2024-06-11 06:30:59+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,2030.28,846.4718,455.7925,1310.1064,0,1310.1064,7.8421,0,2024-06-17 07:17:47+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1920.52,800.7102,431.1517,1239.2800,0,1239.2800,7.4181,0,2024-06-20 02:41:47+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,1247.40,520.0706,280.0380,804.9267,0,804.9267,4.8181,0,2024-06-09 13:30:59+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,1039.39,433.3463,233.3403,670.7013,0,670.7013,4.0147,0,2024-06-19 03:25:23+00:00 +0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c,mainnet,pyUSD/sDOLA BSP,943.21,393.2466,211.7482,608.6379,0,608.6379,3.6432,0,2024-06-20 02:04:23+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,740.08,308.5569,166.1460,0,0,0,-474.7029,0,2024-06-20 14:18:47+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,607.36,253.2228,136.3507,0,0,0,-389.5735,0,2024-06-18 22:20:11+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,434.84,181.2951,97.6204,0,0,0,-278.9155,0,2024-06-19 17:36:47+00:00 +0x38fe2b73612527eff3c5ac3bf2dcb73784ad927400000000000000000000068c,mainnet,saETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:35+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:59+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-21 19:24:11+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-20 10:42:59+00:00 +0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a0300000000000000000000059f,mainnet,vETH/WETH BPT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:48:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:48:23+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-29 03:46:59+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,9629.40,8803.2945,4740.2355,13543.5300,9286.4319,4257.0981,0,0,2024-06-20 06:21:35+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1273.82,660.6167,355.7167,1124.7359,1124.7359,0.0000,108.4026,0,2024-06-20 11:44:13+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,766.86,397.7018,214.1471,677.1090,0,677.1090,65.2601,0,2024-06-20 14:25:37+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,112.88,58.5408,31.5220,0,0,0,-90.0627,0,2024-06-20 14:03:43+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,104.78,54.3400,29.2600,0,0,0,-83.6000,0,2024-06-20 14:54:55+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,13602.53,4885.6894,2630.7558,7516.4452,5153.8230,2362.6222,0,0,2024-06-20 13:21:53+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,3498.20,1256.4661,676.5587,1933.0248,1325.4228,607.6020,0,0,2024-06-18 17:52:16+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,19535.43,8555.7772,4606.9570,13769.8740,9987.6025,3782.2715,607.1398,0,2024-06-20 14:48:36+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,3309.37,1449.3785,780.4346,2332.6646,2145.4176,187.2472,102.8515,0,2024-06-20 06:33:24+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,2296.58,1005.8149,541.5926,1618.7828,1618.7828,0.0000,71.3752,0,2024-06-19 18:13:54+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1808.16,791.9055,426.4106,1274.5117,1274.5118,0.0000,56.1956,0,2024-06-19 14:05:54+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1426.54,624.7704,336.4148,1005.5205,0,1005.5205,44.3353,0,2024-06-20 07:32:19+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,1224.31,536.2013,288.7238,862.9754,0,862.9753,38.0503,0,2024-06-17 20:14:13+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1035.32,453.4309,244.1551,729.7625,0,729.7626,32.1765,0,2024-06-20 09:15:38+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,832.46,364.5859,196.3155,586.7734,0,586.7733,25.8720,0,2024-06-18 22:05:38+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,520.64,228.0206,122.7803,0,0,0,-350.8009,0,2024-06-20 11:02:41+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,471.82,206.6393,111.2673,0,0,0,-317.9066,0,2024-06-20 11:49:50+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,445.96,195.3136,105.1688,0,0,0,-300.4824,0,2024-06-19 05:59:51+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,13.07,5.7242,3.0822,0,0,0,-8.8064,0,2024-06-20 01:14:44+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 diff --git a/MaxiOps/feeDistributions/2024-07-04/2024-07-04.csv b/MaxiOps/feeDistributions/2024-07-04/2024-07-04.csv new file mode 100644 index 000000000..01e332980 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-04/2024-07-04.csv @@ -0,0 +1,126 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,16810.3563 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,7135.5695 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,670.5599 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,7691.5468 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,3067.2343 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,1194.0484 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,168.3910 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,5459.6058 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,2071.4592 +0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e,aura,0 +0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e,balancer,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,2458.9213 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,732.7109 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,aura,0 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,balancer,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,1294.7137 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,71899.9938 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,31713.6793 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2847.1446 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,905.9160 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,5677.3970 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,2168.6262 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,7773.7676 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,3103.9169 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,8313.2226 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,3344.5934 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,3869.3509 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1361.9709 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,1014.6522 +0x0A4825154bCFD493d15777184d01B93e8115215a,aura,0 +0x0A4825154bCFD493d15777184d01B93e8115215a,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,10221.6623 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,4196.0394 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,832.4099 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1423.1684 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,270.6124 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,3561.2664 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,1224.5196 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1294.8388 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,213.3584 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,1638.2144 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,366.5546 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,1156.9196 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,2189.4058 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,612.4673 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,0 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,1224.3700 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,732.4727 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,1512.4376 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,95.2021 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,691.0097 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,786.7830 +0xb6d101874B975083C76598542946Fe047f059066,aura,1908.0912 +0xb6d101874B975083C76598542946Fe047f059066,balancer,271.7222 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,1605.4855 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,136.7153 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,0 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,687.5755 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,0 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,1199.4670 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,0.0000 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,5309.7842 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,1789.3793 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,4335.9889 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1086.7746 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,847.7165 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,1532.1443 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,0.0000 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,882.9107 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1252.9711 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,5086.9980 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1016.5809 +0x6d060a785530cB13795b3c5a43320c462811d43b,aura,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,8295.8198 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3701.1602 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,93779.1207 diff --git a/MaxiOps/feeDistributions/2024-07-04/2024-07-04.json b/MaxiOps/feeDistributions/2024-07-04/2024-07-04.json new file mode 100644 index 000000000..95e4e0739 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-04/2024-07-04.json @@ -0,0 +1,2824 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "267940346100" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "93779120700" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7135569500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "670559900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3067234300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "168391000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2071459199", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "732710900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1294713700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "31713679300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "905916000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2168626200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3103916900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3344593400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1361970900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf512ca7f2d414492b70978b612f9ebe6efbe83be25c331b17db20d6c5eae5882", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1014652200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4196039399", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "832409900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "270612400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1224519600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "213358400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "366554600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1156919600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "612467300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1224370000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "732472700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "95202100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "691009700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "786783000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "271722200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "136715300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "687575500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1789379300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1086774600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "847716500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "882910700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1252971100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1016580900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3701160200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16810356300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7691546800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1194048400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5459605800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2458921300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "71899993800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2847144600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5677397000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7773767600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8313222599", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3869350900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10221662300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1423168400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3561266400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1294838800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1638214400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2189405800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1512437600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1908091200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1605485500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1199467000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5309784200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4335988900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1532144300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5086998000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8295819799", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "174161321598" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "2888649180978955125685" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-07-04/2024-07-04.report.txt b/MaxiOps/feeDistributions/2024-07-04/2024-07-04.report.txt new file mode 100644 index 000000000..5890da3b1 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-04/2024-07-04.report.txt @@ -0,0 +1,170 @@ +FILENAME: `MaxiOps/feeDistributions/2024-07-04/2024-07-04.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `7dc4b7e8fd7d50cea1aa1994a7390252a80490f6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/a65c6903-7239-49db-939d-d2b8fff52146) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 93779.1207 (RAW: 93779120700) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 174161.321598 (RAW: 174161321598) | N/A | 65 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 2888.649180978955 (RAW: 2888649180978955125685) | N/A | 66 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-07-04/2024-07-04.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `7dc4b7e8fd7d50cea1aa1994a7390252a80490f6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/39211e4c-d3b6-48d5-91a7-2723aa915661) +``` ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC 7135.5695(7135569500) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | sDAI GYD (GYROE) | USDC 670.5599(670559900) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | +| depositBribe | WETH rETH | USDC 3067.2343(3067234300) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | DOLA sDOLA | USDC 168.391(168391000) | balancer | 2 | 5 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | wstETH-50% ACX-50% | USDC 2071.459199(2071459199) | balancer | 2 | 6 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC 732.7109(732710900) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | USDC-DAI-USDT sDAI | USDC 1294.7137(1294713700) | balancer | 2 | 8 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | WETH ezETH | USDC 31713.6793(31713679300) | balancer | 2 | 9 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC 905.916(905916000) | balancer | 2 | 10 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | rsETH ETHx | USDC 2168.6262(2168626200) | balancer | 2 | 11 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | weETH ezETH rswETH | USDC 3103.9169(3103916900) | balancer | 2 | 12 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC 3344.5934(3344593400) | balancer | 2 | 13 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC 1361.9709(1361970900) | balancer | 2 | 14 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | mevETH WETH (GYROE) | USDC 1014.6522(1014652200) | balancer | 2 | 15 | +| | 0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611 | | 0xf512ca7f2d414492b70978b612f9ebe6efbe83be25c331b17db20d6c5eae5882 | | | +| depositBribe | sUSDe USDC | USDC 4196.039399(4196039399) | balancer | 2 | 16 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | svETH wstETH | USDC 832.4099(832409900) | balancer | 2 | 17 | +| | 0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669 | | 0xaa5e4a82ebdeade73c3061278eecc974066337d013d22b6ce504771cf8a1cb8d | | | +| depositBribe | wstETH ankrETH | USDC 270.6124(270612400) | balancer | 2 | 18 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | WETH wstETH (GYROE) | USDC 1224.5196(1224519600) | balancer | 2 | 19 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | wstETH cbETH (GYROE) | USDC 213.3584(213358400) | balancer | 2 | 20 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | ALCX-80% WETH-20% | USDC 366.5546(366554600) | balancer | 2 | 21 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC 1156.9196(1156919600) | balancer | 2 | 22 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC 612.4673(612467300) | balancer | 2 | 23 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | RDNT-80% WETH-20% | USDC 1224.37(1224370000) | balancer | 2 | 24 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC 732.4727(732472700) | balancer | 2 | 25 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC 95.2021(95202100) | balancer | 2 | 26 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) ankrETH wstETH | USDC 691.0097(691009700) | balancer | 2 | 27 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | +| depositBribe | (A) rsETH WETH | USDC 786.783(786783000) | balancer | 2 | 28 | +| | 0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c | | 0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e | | | +| depositBribe | (A) WETH wstETH | USDC 271.7222(271722200) | balancer | 2 | 29 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC 136.7153(136715300) | balancer | 2 | 30 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC 687.5755(687575500) | balancer | 2 | 31 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC 1789.3793(1789379300) | balancer | 2 | 32 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) WMATIC MaticX | USDC 1086.7746(1086774600) | balancer | 2 | 33 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC 847.7165(847716500) | balancer | 2 | 34 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | (B) WETH rETH | USDC 882.9107(882910700) | balancer | 2 | 35 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC 1252.9711(1252971100) | balancer | 2 | 36 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (AV) sAVAX WAVAX | USDC 1016.5809(1016580900) | balancer | 2 | 37 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC 3701.1602(3701160200) | balancer | 2 | 38 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC 16810.3563(16810356300) | aura | 1 | 39 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | MetaStable WETH/rETH | USDC 7691.5468(7691546800) | aura | 1 | 40 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | ComposableStable DOLA/sDOLA | USDC 1194.0484(1194048400) | aura | 1 | 41 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | 50/50 wstETH/ACX | USDC 5459.6058(5459605800) | aura | 1 | 42 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC 2458.9213(2458921300) | aura | 1 | 43 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC 71899.9938(71899993800) | aura | 1 | 44 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC 2847.1446(2847144600) | aura | 1 | 45 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC 5677.397(5677397000) | aura | 1 | 46 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC 7773.7676(7773767600) | aura | 1 | 47 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC 8313.222599(8313222599) | aura | 1 | 48 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC 3869.3509(3869350900) | aura | 1 | 49 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC 10221.6623(10221662300) | aura | 1 | 50 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC 1423.1684(1423168400) | aura | 1 | 51 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | Gyroe WETH/wstETH | USDC 3561.2664(3561266400) | aura | 1 | 52 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | Gyroe wstETH/cbETH | USDC 1294.8388(1294838800) | aura | 1 | 53 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | 80/20 ALCX/WETH | USDC 1638.2144(1638214400) | aura | 1 | 54 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | 50/50 STG/USDC | USDC 2189.4058(2189405800) | aura | 1 | 55 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC 1512.4376(1512437600) | aura | 1 | 56 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-ComposableStable WETH/wstETH | USDC 1908.0912(1908091200) | aura | 1 | 57 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC 1605.4855(1605485500) | aura | 1 | 58 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable rETH/WETH | USDC 1199.467(1199467000) | aura | 1 | 59 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC 5309.7842(5309784200) | aura | 1 | 60 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC 4335.9889(4335988900) | aura | 1 | 61 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-ComposableStable weETH/WETH | USDC 1532.1443(1532144300) | aura | 1 | 62 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC 5086.998(5086998000) | aura | 1 | 63 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC 8295.819799(8295819799) | aura | 1 | 64 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-07-04/2024-07-04.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `7dc4b7e8fd7d50cea1aa1994a7390252a80490f6` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5ceb2e7e-1568-4232-a6ce-cba017632819) +``` ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:267940346100, 18 decimals:2.679403461E-7, 6 decimals: 267940.3461" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-07-04/fees_2024-06-20_2024-07-04.json b/MaxiOps/feeDistributions/2024-07-04/fees_2024-06-20_2024-07-04.json new file mode 100644 index 000000000..ba3251261 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-04/fees_2024-06-20_2024-07-04.json @@ -0,0 +1,8 @@ +{ + "mainnet": 446350.31, + "arbitrum": 33452.25, + "polygon": 12540.96, + "base": 4830.11, + "gnosis": 23993.96, + "avalanche": 14713.1 +} diff --git a/MaxiOps/feeDistributions/2024-07-04/incentives_2024-06-20_2024-07-04.csv b/MaxiOps/feeDistributions/2024-07-04/incentives_2024-06-20_2024-07-04.csv new file mode 100644 index 000000000..4e899f43e --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-04/incentives_2024-06-20_2024-07-04.csv @@ -0,0 +1,63 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,6141.99,3524.7963,1897.9672,5422.7635,4335.9889,1086.7746,0.0000,0,2024-07-03 22:27:36+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,960.15,551.0157,296.7008,847.7165,0,847.7165,0.0000,0,2024-07-04 13:10:15+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-04 12:59:53+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,131800.93,67002.7599,36078.4092,103613.6734,71899.9938,31713.6793,532.5043,0,2024-07-04 09:56:35+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,30460.22,15484.8589,8338.0010,23945.9257,16810.3563,7135.5695,123.0658,0,2024-07-03 22:22:35+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,18339.92,9323.3428,5020.2615,14417.7016,10221.6623,4196.0394,74.0972,0,2024-07-03 06:34:59+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,14829.23,7538.6368,4059.2660,11657.8160,8313.2226,3344.5934,59.9133,0,2024-07-03 14:06:59+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,13836.87,7034.1573,3787.6232,10877.6844,7773.7676,3103.9169,55.9039,0,2024-07-04 07:49:23+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,13685.62,6957.2674,3746.2209,10758.7811,7691.5468,3067.2343,55.2928,0,2024-07-04 03:38:35+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,9980.47,5073.7050,2731.9950,7846.0232,5677.3970,2168.6262,40.3232,0,2024-07-02 11:37:23+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,9579.83,4870.0343,2622.3262,7531.0650,5459.6058,2071.4592,38.7045,0,2024-07-04 06:49:11+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,6654.46,3382.8835,1821.5526,5231.3217,3869.3509,1361.9709,26.8856,0,2024-07-02 22:25:23+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,6087.72,3094.7736,1666.4166,4785.7859,3561.2664,1224.5196,24.5957,0,2024-07-03 13:53:47+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,4774.05,2426.9520,1306.8203,3753.0606,2847.1446,905.9160,19.2883,0,2024-07-04 06:52:11+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,4059.89,2063.8992,1111.3303,3191.6324,2458.9213,732.7109,16.4029,0,2024-07-02 06:07:47+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,3564.10,1811.8578,975.6157,2801.8732,2189.4058,612.4673,14.3997,0,2024-07-03 06:18:47+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,2550.15,1296.4028,698.0630,2004.7689,1638.2144,366.5546,10.3031,0,2024-07-02 10:14:59+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,2154.56,1095.2993,589.7765,1693.7807,1423.1684,270.6124,8.7049,0,2024-07-03 11:04:23+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,1918.49,975.2900,525.1561,1508.1973,1294.8388,213.3584,7.7512,0,2024-07-02 09:30:23+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1733.08,881.0343,474.4031,1362.4394,1194.0484,168.3910,7.0020,0,2024-07-04 10:02:59+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,1646.93,837.2388,450.8209,1294.7137,0,1294.7137,6.6540,0,2024-06-27 12:39:47+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,1557.45,791.7505,426.3272,1224.3700,0,1224.3700,6.2924,0,2024-07-03 13:04:11+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,1471.65,748.1329,402.8408,1156.9195,0,1156.9196,5.9458,0,2024-07-03 20:27:47+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,1290.68,656.1344,353.3031,1014.6521,0,1014.6522,5.2146,0,2024-07-02 09:27:47+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,1058.86,538.2856,289.8461,832.4097,0,832.4099,4.2780,0,2024-07-04 10:00:11+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,852.98,433.6238,233.4897,670.5596,0,670.5599,3.4461,0,2024-07-03 05:56:35+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,495.44,251.8635,135.6188,0,0,0,-387.4824,0,2024-07-02 05:43:59+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,377.34,191.8258,103.2908,0,0,0,-295.1166,0,2024-07-04 00:51:35+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,351.51,178.6948,96.2203,0,0,0,-274.9151,0,2024-06-27 12:30:23+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,172.10,87.4893,47.1096,0,0,0,-134.5990,0,2024-07-03 10:12:35+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,70.14,35.6566,19.1997,0,0,0,-54.8563,0,2024-06-27 09:57:23+00:00 +0x38fe2b73612527eff3c5ac3bf2dcb73784ad927400000000000000000000068c,mainnet,saETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:35+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:59+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-21 19:24:11+00:00 +0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a0300000000000000000000059f,mainnet,vETH/WETH BPT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:48:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:48:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,7654.20,7798.0370,4198.9430,11996.9800,8295.8198,3701.1602,0.0000,0,2024-07-04 10:22:30+00:00 +0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c,gnosis,ECLP-wstETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-04 12:03:20+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,2132.10,917.9482,494.2798,1532.1443,1532.1443,0.0000,119.9163,0,2024-07-04 13:50:51+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1228.64,528.9751,284.8328,882.9107,0,882.9107,69.1028,0,2024-07-04 13:42:23+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,197.73,85.1301,45.8393,0,0,0,-130.9694,0,2024-07-04 13:44:55+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,87.64,37.7323,20.3174,0,0,0,-58.0497,0,2024-07-04 12:12:19+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,11549.67,3967.3263,2136.2526,6103.5789,5086.9980,1016.5809,0,0,2024-07-04 13:33:55+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,2370.97,814.4312,438.5399,1252.9711,0,1252.9711,0,0,2024-07-02 12:01:27+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,9819.31,4195.1495,2258.9267,7099.1636,5309.7842,1789.3793,645.0874,0,2024-07-04 13:47:58+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,3015.04,1288.1296,693.6082,2179.8133,1908.0912,271.7222,198.0755,0,2024-07-04 04:59:07+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,2409.75,1029.5287,554.3616,1742.2007,1605.4855,136.7153,158.3104,0,2024-07-04 07:05:56+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,2223.63,950.0118,511.5448,1607.6397,1512.4376,95.2021,146.0831,0,2024-07-04 11:15:32+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1659.06,708.8079,381.6658,1199.4670,1199.4670,0.0000,108.9933,0,2024-07-04 13:49:34+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,1088.25,464.9381,250.3513,786.7827,0,786.7830,71.4933,0,2024-07-04 10:29:20+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1013.13,432.8442,233.0700,732.4727,0,732.4727,66.5585,0,2024-07-03 17:41:26+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,955.78,408.3423,219.8766,691.0098,0,691.0097,62.7908,0,2024-07-04 12:16:46+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,951.03,406.3130,218.7839,687.5756,0,687.5755,62.4787,0,2024-07-04 01:37:53+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,726.85,310.5355,167.2114,0,0,0,-477.7469,0,2024-07-04 13:10:09+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,630.37,269.3159,145.0163,0,0,0,-414.3322,0,2024-07-04 08:18:12+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,503.58,215.1468,115.8483,0,0,0,-330.9951,0,2024-07-04 11:56:18+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,377.87,161.4392,86.9288,0,0,0,-248.3679,0,2024-07-04 12:52:54+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,73.68,31.4786,16.9500,0,0,0,-48.4287,0,2024-06-28 14:27:27+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-04 13:50:07+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-04 09:26:05+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-04 06:33:17+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 diff --git a/MaxiOps/feeDistributions/2024-07-18/2024-07-18.csv b/MaxiOps/feeDistributions/2024-07-18/2024-07-18.csv new file mode 100644 index 000000000..d9171a391 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-18/2024-07-18.csv @@ -0,0 +1,136 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,4570.0973 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,1074.3269 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,0 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,13411.8814 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,684.9689 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,9961.5061 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3430.4843 +0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e,aura,0 +0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e,balancer,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,836.3936 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,3795.3277 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,735.7366 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,aura,0 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,balancer,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,1172.4346 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0.0000 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,21801.6025 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,8604.8516 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2385.1344 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,119.4530 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,3030.3650 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,401.4322 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,4941.2880 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,1236.5450 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,10117.9134 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,3498.8375 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,2859.5939 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,326.8017 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x0A4825154bCFD493d15777184d01B93e8115215a,aura,0 +0x0A4825154bCFD493d15777184d01B93e8115215a,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,8351.1863 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,2726.7411 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,617.4739 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,1114.8597 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0.0000 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,1061.4828 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,2677.8782 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,247.3881 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1854.7987 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0.0000 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,1367.1813 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0.0000 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,1259.9045 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,0.0000 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,3060.7760 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,414.7225 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1913.0308 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,0.0000 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,679.2799 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,1536.3159 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,0.0000 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,924.7389 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,1038.6991 +0xb6d101874B975083C76598542946Fe047f059066,aura,1943.3620 +0xb6d101874B975083C76598542946Fe047f059066,balancer,0.0000 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,1073.6073 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1216.0702 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,0.0000 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,0 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,893.0333 +0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7,aura,0 +0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,6901.2944 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,1863.6690 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,5402.9214 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1359.8938 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,1001.2948 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,1093.1216 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,1174.8235 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1079.4909 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,4573.7719 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,919.3422 +0x6d060a785530cB13795b3c5a43320c462811d43b,aura,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,7569.3551 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3307.9649 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,59925.7574 diff --git a/MaxiOps/feeDistributions/2024-07-18/2024-07-18.json b/MaxiOps/feeDistributions/2024-07-18/2024-07-18.json new file mode 100644 index 000000000..d82d57f86 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-18/2024-07-18.json @@ -0,0 +1,2480 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "171216449601" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "59925757400" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1074326900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "13411881400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "684968900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3430484300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "836393600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "735736600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8604851600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "119453000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "401432200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1236545000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3498837500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "326801700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2726741100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "617473900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1061482800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "247388100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "414722500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "679279900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "924738900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1038699100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1073607299", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "893033300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1863669000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1359893800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1001294800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1093121600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1174823500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1079490900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "919342200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3307964900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4570097300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9961506100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3795327700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1172434600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "21801602500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2385134400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3030365000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4941288000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10117913400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2859593900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8351186299", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5578b5cfceb511af5d1ac11aacd75e89c6122939b7688697f22492fd8e40408c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1114859700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2677878200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1854798700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1367181300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1259904500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3060776000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1913030800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1536315900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1943362000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1216070200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6901294400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5402921400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4573771900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7569355100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "111290684372" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "5115258384428873174624" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-07-18/2024-07-18.report.txt b/MaxiOps/feeDistributions/2024-07-18/2024-07-18.report.txt new file mode 100644 index 000000000..96d3669d9 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-18/2024-07-18.report.txt @@ -0,0 +1,154 @@ +FILENAME: `MaxiOps/feeDistributions/2024-07-18/2024-07-18.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `0d20e18c72a44224ad1f783cbef5eccb5f121cb5` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d650ed28-f41c-4759-8acc-add29325f311) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 59925.7574 (RAW: 59925757400) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 111290.684372 (RAW: 111290684372) | N/A | 57 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 5115.258384428873 (RAW: 5115258384428873174624) | N/A | 58 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-07-18/2024-07-18.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `0d20e18c72a44224ad1f783cbef5eccb5f121cb5` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/87e6c19d-8104-47c5-9222-344389fe1f68) +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 1074.3269(1074326900) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 13411.8814(13411881400) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | DOLA sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 684.9689(684968900) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 3430.4843(3430484300) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | amphrETH rstETH wstETH Re7LRT steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 836.3936(836393600) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 735.7366(735736600) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 8604.8516(8604851600) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 119.453(119453000) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | rsETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 401.4322(401432200) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 1236.545(1236545000) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 3498.8375(3498837500) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 326.8017(326801700) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 2726.7411(2726741100) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ETHx wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 617.4739(617473900) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | wstETH ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 1061.4828(1061482800) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | WETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | 247.3881(247388100) | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 414.7225(414722500) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 679.2799(679279900) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) ankrETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | 924.7389(924738900) | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | +| depositBribe | (A) rsETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c | 1038.6991(1038699100) | 0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 1073.607299(1073607299) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 893.0333(893033300) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 1863.669(1863669000) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) WMATIC MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 1359.8938(1359893800) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | 1001.2948(1001294800) | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | (B) weETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | 1093.1216(1093121600) | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 1174.8235(1174823500) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | 1079.4909(1079490900) | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 919.3422(919342200) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 31 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 3307.9649(3307964900) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 32 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 4570.0973(4570097300) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 33 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 9961.5061(9961506100) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 34 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 3795.3277(3795327700) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 35 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | 1172.4346(1172434600) | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 36 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 21801.6025(21801602500) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 2385.1344(2385134400) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 3030.365(3030365000) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 4941.288(4941288000) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 10117.9134(10117913400) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 2859.5939(2859593900) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 8351.186299(8351186299) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable WETH/uniETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e | 1114.8597(1114859700) | 0x5578b5cfceb511af5d1ac11aacd75e89c6122939b7688697f22492fd8e40408c | | | +| depositBribe | Gyroe WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | 2677.8782(2677878200) | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | Gyroe wstETH/cbETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | 1854.7987(1854798700) | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | 80/20 ALCX/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 1367.1813(1367181300) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 1259.9045(1259904500) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 3060.776(3060776000) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 1913.0308(1913030800) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 1536.3159(1536315900) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 1943.362(1943362000) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1216.0702(1216070200) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 6901.2944(6901294400) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 5402.9214(5402921400) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 4573.7719(4573771900) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 7569.3551(7569355100) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-07-18/2024-07-18.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `0d20e18c72a44224ad1f783cbef5eccb5f121cb5` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/5622bfb5-2794-4a2e-9361-9908f5e72ff7) +``` ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:171216449601, 18 decimals:1.71216449601E-7, 6 decimals: 171216.449601" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-07-18/fees_2024-07-04_2024-07-18.json b/MaxiOps/feeDistributions/2024-07-18/fees_2024-07-04_2024-07-18.json new file mode 100644 index 000000000..b6dd9a4b8 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-18/fees_2024-07-04_2024-07-18.json @@ -0,0 +1,8 @@ +{ + "mainnet": 251328.8, + "arbitrum": 36140.14, + "polygon": 15528.22, + "base": 4535.89, + "gnosis": 21754.64, + "avalanche": 13145.21 +} diff --git a/MaxiOps/feeDistributions/2024-07-18/incentives_2024-07-04_2024-07-18.csv b/MaxiOps/feeDistributions/2024-07-18/incentives_2024-07-04_2024-07-18.csv new file mode 100644 index 000000000..55c61a79d --- /dev/null +++ b/MaxiOps/feeDistributions/2024-07-18/incentives_2024-07-04_2024-07-18.csv @@ -0,0 +1,68 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,5036.51,4395.8299,2366.9853,6762.8152,5402.9214,1359.8938,0.0000,0,2024-07-18 15:15:24+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,745.70,650.8416,350.4532,1001.2948,0,1001.2948,0.0000,0,2024-07-18 10:11:07+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-17 00:12:01+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,36076.13,19534.6175,10518.6402,30406.4542,21801.6025,8604.8516,353.1965,0,2024-07-18 15:41:59+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,16155.77,8748.0777,4710.5034,13616.7509,10117.9134,3498.8375,158.1699,0,2024-07-12 06:03:11+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,15912.70,8616.4593,4639.6320,13411.8815,0,13411.8814,155.7902,0,2024-07-18 01:35:23+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,15889.10,8603.6803,4632.7510,13391.9904,9961.5061,3430.4843,155.5591,0,2024-07-17 14:33:47+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,13143.55,7117.0112,3832.2368,11077.9274,8351.1863,2726.7411,128.6794,0,2024-07-17 15:52:35+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,7329.77,3968.9471,2137.1254,6177.8331,4941.2880,1236.5450,71.7606,0,2024-07-17 17:42:35+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,6696.90,3626.2587,1952.6008,5644.4243,4570.0973,1074.3269,65.5648,0,2024-07-18 09:22:47+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,5375.94,2910.9811,1567.4513,4531.0644,3795.3277,735.7366,52.6320,0,2024-07-02 06:07:47+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,4123.55,2232.8330,1202.2947,3475.4985,3060.7760,414.7225,40.3709,0,2024-07-14 23:17:11+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,4071.70,2204.7571,1187.1769,3431.7971,3030.3650,401.4322,39.8632,0,2024-07-17 16:22:11+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,3780.54,2047.0988,1102.2840,3186.3954,2859.5939,326.8017,37.0126,0,2024-07-15 02:08:11+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,3470.72,1879.3365,1011.9504,2925.2662,2677.8782,247.3881,33.9793,0,2024-07-17 02:00:23+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,2971.60,1609.0714,866.4231,2504.5873,2385.1344,119.4530,29.0928,0,2024-07-18 00:45:47+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,2269.74,1229.0260,661.7832,1913.0307,1913.0308,0.0000,22.2214,0,2024-07-18 14:48:11+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,2200.65,1191.6150,641.6388,1854.7989,1854.7987,0.0000,21.5451,0,2024-07-15 07:08:23+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,1622.11,878.3453,472.9551,1367.1814,1367.1813,0.0000,15.8810,0,2024-07-17 13:59:11+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,1494.83,809.4253,435.8444,1259.9045,1259.9045,0.0000,14.6348,0,2024-07-15 18:11:35+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,1391.05,753.2302,405.5855,1172.4343,1172.4346,0.0000,13.6186,0,2024-07-11 08:45:23+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,1322.74,716.2415,385.6685,1114.8599,1114.8597,0.0000,12.9500,0,2024-07-12 05:45:23+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,1259.41,681.9493,367.2035,1061.4828,0,1061.4828,12.3300,0,2024-07-15 18:10:47+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,992.35,537.3408,289.3374,836.3936,0,836.3936,9.7154,0,2024-07-18 03:26:59+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,812.69,440.0580,236.9543,684.9689,0,684.9689,7.9566,0,2024-07-18 15:33:35+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,732.61,396.6960,213.6055,617.4740,0,617.4739,7.1725,0,2024-07-16 10:02:23+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,591.66,320.3739,172.5090,0,0,0,-492.8830,0,2024-07-18 15:27:11+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,435.49,235.8105,126.9749,0,0,0,-362.7854,0,2024-07-16 05:43:35+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,310.07,167.8977,90.4064,0,0,0,-258.3041,0,2024-07-15 22:36:11+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,244.05,132.1490,71.1571,0,0,0,-203.3061,0,2024-07-17 06:46:35+00:00 +0xb54e6aadbf1ac1a3ef2a56e358706f0f8e320a0300000000000000000000059f,mainnet,vETH/WETH BPT,138.11,74.7842,40.2684,0,0,0,-115.0527,0,2024-07-05 22:53:23+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,32.85,17.7877,9.5780,0,0,0,-27.3657,0,2024-07-05 22:53:11+00:00 +0x38fe2b73612527eff3c5ac3bf2dcb73784ad927400000000000000000000068c,mainnet,saETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:35+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-03 10:12:35+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:59+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-21 19:24:11+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-27 09:57:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,6654.99,7070.2580,3807.0620,10877.3200,7569.3551,3307.9649,0.0000,0,2024-07-18 14:11:25+00:00 +0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c,gnosis,ECLP-wstETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-18 17:06:20+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,912.23,686.6712,369.7460,1174.8234,0,1174.8235,118.4062,0,2024-07-18 15:37:29+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,848.79,638.9174,344.0325,1093.1217,0,1093.1216,110.1718,0,2024-07-18 17:29:07+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,162.10,122.0190,65.7025,0,0,0,-187.7216,0,2024-07-18 15:03:05+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,35.28,26.5566,14.2997,0,0,0,-40.8564,0,2024-07-18 03:00:33+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,10319.00,3570.5242,1922.5899,5493.1141,4573.7719,919.3422,0,0,2024-07-18 13:11:19+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,2027.86,701.6691,377.8218,1079.4909,0,1079.4909,0,0,2024-07-18 09:31:53+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,13438.16,5156.3286,2776.4847,8764.9634,6901.2944,1863.6690,832.1501,0,2024-07-18 17:26:36+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,2979.50,1143.2578,615.6004,1943.3619,1943.3620,0.0000,184.5038,0,2024-07-18 14:10:50+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,2355.43,903.7972,486.6600,1536.3158,1536.3159,0.0000,145.8586,0,2024-07-18 05:21:28+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,1864.44,715.4004,385.2156,1216.0704,1216.0702,0.0000,115.4544,0,2024-07-18 05:38:16+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1646.02,631.5909,340.0874,1073.6071,0,1073.6073,101.9287,0,2024-07-18 16:10:52+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,1592.50,611.0549,329.0296,1038.6990,0,1038.6991,98.6146,0,2024-07-18 16:11:10+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,1417.78,544.0134,292.9303,924.7391,0,924.7389,87.7953,0,2024-07-18 04:26:53+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1369.17,525.3614,282.8869,893.0334,0,893.0333,84.7851,0,2024-07-18 13:10:43+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1041.45,399.6126,215.1760,679.2800,0,679.2799,64.4913,0,2024-07-18 08:58:59+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,611.24,234.5376,126.2895,0,0,0,-360.8271,0,2024-07-18 10:21:55+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,567.77,217.8579,117.3081,0,0,0,-335.1659,0,2024-07-18 17:27:40+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,560.58,215.0990,115.8225,0,0,0,-330.9215,0,2024-07-18 16:19:00+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,535.54,205.4909,110.6490,0,0,0,-316.1399,0,2024-07-18 13:42:36+00:00 +0xe8a6026365254f779b6927f00f8724ea1b8ae5e0000000000000000000000580,arbitrum,gUSDC/USDC,443.72,170.2589,91.6779,0,0,0,-261.9367,0,2024-07-18 05:56:18+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,127.33,48.8575,26.3079,0,0,0,-75.1654,0,2024-07-18 17:14:07+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,32.69,12.5434,6.7541,0,0,0,-19.2976,0,2024-07-06 19:04:31+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,17.20,6.5998,3.5537,0,0,0,-10.1535,0,2024-07-18 15:48:15+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,6.69,2.5670,1.3822,0,0,0,-3.9492,0,2024-07-18 14:55:14+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,3.43,1.3161,0.7087,0,0,0,-2.0248,0,2024-07-18 15:57:31+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-18 11:09:34+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 diff --git a/MaxiOps/feeDistributions/2024-08-01/2024-08-01.csv b/MaxiOps/feeDistributions/2024-08-01/2024-08-01.csv new file mode 100644 index 000000000..d851c7bd3 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-01/2024-08-01.csv @@ -0,0 +1,136 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,3853.5619 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,930.8933 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,0 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,11515.0810 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,1659.8910 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,0.8379 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,4477.5613 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,1195.4515 +0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e,aura,0 +0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e,balancer,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,1046.3418 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0.0000 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,2526.0513 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,368.0659 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,aura,0 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,balancer,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,1002.2436 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0.0000 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,14294.1106 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,5357.3957 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2012.1424 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,150.1827 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,2277.9631 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,262.8833 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,5125.1334 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,1470.0044 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,8565.5132 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,2928.6297 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,3757.0972 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,889.9951 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,5556.7019 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,1652.9774 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,aura,0 +0xD98ed0426D18B115d6388923803e33ad8aaF11F8,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1316.0450 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,0.0000 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,537.8097 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,992.0756 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0.0000 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,599.4822 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,1735.7514 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,33.0006 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,2205.2612 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,232.0596 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1943.4606 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,121.0636 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,709.9609 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,1579.7945 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,92.3138 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,715.8153 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,1431.6194 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,29.4916 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,637.0992 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,644.8218 +0xb6d101874B975083C76598542946Fe047f059066,aura,1707.7924 +0xb6d101874B975083C76598542946Fe047f059066,balancer,146.5812 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,726.0129 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1389.6165 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,11.6834 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,947.7409 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,0.0000 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,608.6169 +0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7,aura,1136.5417 +0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7,balancer,0.0000 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,7001.2311 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,2390.8519 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,4415.4460 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1243.7252 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,628.3010 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,1662.6498 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,704.9173 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1157.6842 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,490.8261 +0xefF145872582721e1b33931d61c3fE9C1ca66690,aura,0 +0xefF145872582721e1b33931d61c3fE9C1ca66690,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,924.1239 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,4238.0002 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,872.6702 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,aura,0 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,balancer,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,aura,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,8878.1849 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3764.1034 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,50218.3282 diff --git a/MaxiOps/feeDistributions/2024-08-01/2024-08-01.json b/MaxiOps/feeDistributions/2024-08-01/2024-08-01.json new file mode 100644 index 000000000..0d9738f4f --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-01/2024-08-01.json @@ -0,0 +1,2910 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "143480937701" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "50218328200" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "930893300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11515081000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "837900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1195451500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "368065900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5357395700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "150182700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "262883300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1470004400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2928629700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "889995100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1652977400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "537809700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "599482200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "33000600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "232059600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "121063600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "709960900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "92313800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "715815300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc69ffa3cec5bc11c9793a1249af1f0753137fc81fc125c4beac5f0ea20f381c5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "29491600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "637099200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "644821800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "146581200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "726012900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11683400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "608616900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2390851900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1243725200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "628301000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "704917300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "490826100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "924123900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "872670200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3764103400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3853561900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1659891000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4477561300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1046341799", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2526051300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1002243600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14294110600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2012142400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2277963100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5125133400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8565513199", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3757097200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5556701900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1316045000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "992075600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1735751400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2205261200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1943460600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1579794500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc69ffa3cec5bc11c9793a1249af1f0753137fc81fc125c4beac5f0ea20f381c5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1431619400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1707792400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1389616500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "947740900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xad58b05cfc3a960b432abea8e6e1b0038e20cf0f34995557c3bf59c50739cb25", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1136541700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7001231100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4415446000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1662649800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1157684200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4238000200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8878184900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "93262608512" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "4329399098850610728448" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-08-01/2024-08-01.report.txt b/MaxiOps/feeDistributions/2024-08-01/2024-08-01.report.txt new file mode 100644 index 000000000..4b85133c0 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-01/2024-08-01.report.txt @@ -0,0 +1,174 @@ +FILENAME: `MaxiOps/feeDistributions/2024-08-01/2024-08-01.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `e4886f119b7be7eed7299630f1133704ec64b780` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0f522fde-db90-4c7e-a21e-8b888e80daa1) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 50218.3282 (RAW: 50218328200) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 93262.608512 (RAW: 93262608512) | N/A | 67 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 4329.399098850611 (RAW: 4329399098850610728448) | N/A | 68 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-08-01/2024-08-01.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `e4886f119b7be7eed7299630f1133704ec64b780` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8c6f5287-57fe-4852-8442-9323c83beb3a) +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 930.8933(930893300) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 11515.081(11515081000) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | DOLA sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 0.8379(837900) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 1195.4515(1195451500) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 368.0659(368065900) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 5357.3957(5357395700) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 150.1827(150182700) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | rsETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 262.8833(262883300) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 1470.0044(1470004400) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 2928.6297(2928629700) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 889.9951(889995100) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 1652.9774(1652977400) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | WETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | 537.8097(537809700) | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | WETH-20% ALCX-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 599.4822(599482200) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 33.0006(33000600) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 232.0596(232059600) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | RDNT-80% WETH-20% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 121.0636(121063600) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 709.9609(709960900) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 92.3138(92313800) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) ankrETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | 715.8153(715815300) | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | +| depositBribe | (A) AaveUSDCn GHO (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c | 29.4916(29491600) | 0xc69ffa3cec5bc11c9793a1249af1f0753137fc81fc125c4beac5f0ea20f381c5 | | | +| depositBribe | (A) wstETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 637.0992(637099200) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | (A) rsETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c | 644.8218(644821800) | 0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 146.5812(146581200) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 726.0129(726012900) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 11.6834(11683400) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 608.6169(608616900) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 2390.8519(2390851900) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) WMATIC MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 1243.7252(1243725200) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 31 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | 628.301(628301000) | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | (B) weETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 32 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | 704.9173(704917300) | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 33 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 490.8261(490826100) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 34 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | 924.1239(924123900) | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 35 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 872.6702(872670200) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 36 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 3764.1034(3764103400) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 3853.5619(3853561900) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | ComposableStable DOLA/sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 1659.891(1659891000) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 4477.5613(4477561300) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 1046.341799(1046341799) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 2526.0513(2526051300) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | 1002.2436(1002243600) | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 14294.1106(14294110600) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 2012.1424(2012142400) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 2277.9631(2277963100) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 5125.1334(5125133400) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 8565.513199(8565513199) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 3757.0972(3757097200) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 5556.7019(5556701900) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 1316.045(1316045000) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | Gyroe wstETH/cbETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | 992.0756(992075600) | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 1735.7514(1735751400) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 2205.2612(2205261200) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 1943.4606(1943460600) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 1579.7945(1579794500) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-Gyroe AaveUSDCn/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c | 1431.6194(1431619400) | 0xc69ffa3cec5bc11c9793a1249af1f0753137fc81fc125c4beac5f0ea20f381c5 | | | +| depositBribe | a-ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 1707.7924(1707792400) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1389.6165(1389616500) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 947.7409(947740900) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-ComposableStable USDC/gUSDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 60 | +| | 0xe8a6026365254f779b6927f00f8724ea1b8ae5e0000000000000000000000580 | 1136.5417(1136541700) | 0xad58b05cfc3a960b432abea8e6e1b0038e20cf0f34995557c3bf59c50739cb25 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 61 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 7001.2311(7001231100) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 62 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 4415.446(4415446000) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-ComposableStable weETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 63 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | 1662.6498(1662649800) | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 64 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 1157.6842(1157684200) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 65 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 4238.0002(4238000200) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 66 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 8878.1849(8878184900) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-08-01/2024-08-01.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `e4886f119b7be7eed7299630f1133704ec64b780` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/86e9e902-27dd-4388-b49f-9abb0f26b447) +``` ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:143480937701, 18 decimals:1.43480937701E-7, 6 decimals: 143480.937701" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-08-01/fees_2024-07-18_2024-08-01.json b/MaxiOps/feeDistributions/2024-08-01/fees_2024-07-18_2024-08-01.json new file mode 100644 index 000000000..abfe74744 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-01/fees_2024-07-18_2024-08-01.json @@ -0,0 +1,8 @@ +{ + "mainnet": 185185439083, + "arbitrum": 43815170906, + "polygon": 12574944522, + "base": 8032154654, + "gnosis": 25284576601, + "avalanche": 12069588644 +} diff --git a/MaxiOps/feeDistributions/2024-08-01/incentives_2024-07-18_2024-08-01.csv b/MaxiOps/feeDistributions/2024-08-01/incentives_2024-07-18_2024-08-01.csv new file mode 100644 index 000000000..326ba470a --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-01/incentives_2024-07-18_2024-08-01.csv @@ -0,0 +1,68 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,5948.29,3678.4613,1980.7099,5659.1712,4415.4460,1243.7252,0.0000,0,2024-08-01 12:05:18+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,660.40,408.3957,219.9054,628.3010,0,628.3010,0.0000,0,2024-07-31 16:38:49+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-01 11:54:48+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,25472.32,12543.2104,6754.0364,19651.5063,14294.1106,5357.3957,354.2595,0,2024-08-01 02:04:11+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,14925.87,7349.8734,3957.6242,11515.0810,0,11515.0810,207.5834,0,2024-07-31 21:03:47+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,14898.73,7336.5090,3950.4279,11494.1429,8565.5132,2928.6297,207.2059,0,2024-07-28 09:13:23+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,9345.20,4601.8113,2477.8984,7209.6793,5556.7019,1652.9774,129.9696,0,2024-07-31 17:45:59+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,8548.63,4209.5602,2266.6863,6595.1376,5125.1334,1470.0044,118.8911,0,2024-08-01 03:55:23+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,7353.37,3620.9842,1949.7607,5673.0130,4477.5613,1195.4515,102.2681,0,2024-07-31 00:48:59+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,6201.62,3053.8335,1644.3719,4784.4552,3853.5619,930.8933,86.2498,0,2024-08-01 10:37:59+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,6023.57,2966.1572,1597.1616,4647.0923,3757.0972,889.9951,83.7735,0,2024-07-30 08:51:35+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,3751.36,1847.2639,994.6806,2894.1170,2526.0513,368.0659,52.1725,0,2024-07-02 06:07:47+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,3293.45,1621.7775,873.2648,2540.8466,2277.9631,262.8833,45.8042,0,2024-07-21 14:13:35+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,3159.26,1555.6990,837.6841,2437.3210,2205.2612,232.0596,43.9379,0,2024-07-30 08:52:47+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,2802.81,1380.1741,743.1707,2162.3251,2012.1424,150.1827,38.9804,0,2024-07-29 15:51:59+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,2676.04,1317.7493,709.5573,2064.5241,1943.4606,121.0636,37.2174,0,2024-08-01 10:20:47+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,2292.66,1128.9634,607.9034,1768.7523,1735.7514,33.0006,31.8855,0,2024-07-30 07:06:59+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,2152.64,1060.0140,570.7768,1660.7290,1659.8910,0.8379,29.9382,0,2024-07-31 15:50:23+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,1705.86,840.0083,452.3122,1316.0450,1316.0450,0.0000,23.7245,0,2024-07-24 08:49:47+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,1356.27,667.8614,359.6177,1046.3417,1046.3418,0.0000,18.8626,0,2024-07-31 14:11:23+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,1299.11,639.7144,344.4616,1002.2436,1002.2436,0.0000,18.0676,0,2024-07-29 00:37:59+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,1285.93,633.2242,340.9669,992.0754,992.0756,0.0000,17.8843,0,2024-07-28 22:53:35+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,777.05,382.6389,206.0364,599.4823,0,599.4822,10.8070,0,2024-08-01 09:49:11+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,697.11,343.2745,184.8401,537.8098,0,537.8097,9.6952,0,2024-08-01 02:25:47+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,423.81,208.6947,112.3741,0,0,0,-321.0688,0,2024-07-31 20:47:23+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,421.50,207.5572,111.7616,0,0,0,-319.3188,0,2024-08-01 01:40:23+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,363.78,179.1344,96.4570,0,0,0,-275.5914,0,2024-07-29 16:31:23+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,328.20,161.6139,87.0229,0,0,0,-248.6368,0,2024-07-27 06:09:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,270.07,132.9893,71.6096,0,0,0,-204.5989,0,2024-07-30 03:34:47+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,207.74,102.2964,55.0827,0,0,0,-157.3791,0,2024-07-24 17:19:23+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,136.29,67.1126,36.1376,0,0,0,-103.2502,0,2024-07-20 17:05:11+00:00 +0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669,mainnet,svETH/wstETH,51.92,25.5667,13.7667,0,0,0,-39.3334,0,2024-07-28 00:54:35+00:00 +0x38fe2b73612527eff3c5ac3bf2dcb73784ad927400000000000000000000068c,mainnet,saETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:35+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-03 10:12:35+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:59+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-05-21 19:24:11+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,6235.92,8217.4874,4424.8009,12642.2883,8878.1849,3764.1034,0.0000,0,2024-08-01 05:55:40+00:00 +0x71e1179c5e197fa551beec85ca2ef8693c61b85b0002000000000000000000a0,gnosis,ECLP-rETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-01 08:23:20+00:00 +0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c,gnosis,ECLP-wstETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-01 11:57:15+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,1060.02,1400.4897,754.1098,2367.5671,1662.6498,704.9173,212.9676,0,2024-08-01 06:07:01+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,738.08,975.1452,525.0782,1648.5103,1157.6842,490.8261,148.2869,0,2024-08-01 03:48:49+00:00 +0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026,base,cbETH/WETH,147.16,194.4266,104.6912,0,0,0,-299.1178,0,2024-08-01 12:42:23+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,30.57,40.3888,21.7478,0,0,0,-62.1367,0,2024-07-31 13:37:41+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,8690.68,3321.9358,1788.7346,5110.6704,4238.0002,872.6702,0,0,2024-08-01 11:29:21+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,1571.47,600.6805,323.4434,924.1239,0,924.1239,0,0,2024-07-31 11:19:33+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,13925.39,5565.5951,2996.8589,9392.0830,7001.2311,2390.8519,829.6291,0,2024-08-01 12:38:27+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,2749.43,1098.8715,591.7000,1854.3736,1707.7924,146.5812,163.8021,0,2024-08-01 07:39:11+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,2479.19,990.8640,533.5422,1672.1082,1579.7945,92.3138,147.7020,0,2024-08-01 10:11:15+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,2166.35,865.8305,466.2164,1461.1110,1431.6194,29.4916,129.0641,0,2024-08-01 10:12:36+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2077.67,830.3875,447.1317,1401.3000,1389.6165,11.6834,123.7808,0,2024-08-01 09:56:07+00:00 +0xe8a6026365254f779b6927f00f8724ea1b8ae5e0000000000000000000000580,arbitrum,gUSDC/USDC,1685.12,673.4961,362.6517,1136.5417,1136.5417,0.0000,100.3939,0,2024-08-01 09:52:38+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,1405.19,561.6158,302.4085,947.7408,947.7409,0.0000,83.7166,0,2024-08-01 11:16:51+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1076.44,430.2234,231.6588,726.0129,0,726.0129,64.1307,0,2024-08-01 12:11:48+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,1061.32,424.1804,228.4048,715.8151,0,715.8153,63.2299,0,2024-07-31 14:15:54+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1052.64,420.7112,226.5368,709.9609,0,709.9609,62.7129,0,2024-07-31 04:04:03+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,956.06,382.1109,205.7520,644.8217,0,644.8218,56.9588,0,2024-08-01 12:20:07+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,944.61,377.5346,203.2879,637.0992,0,637.0992,56.2767,0,2024-08-01 11:25:48+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,902.38,360.6564,194.1996,608.6171,0,608.6169,53.7610,0,2024-08-01 12:08:17+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,746.49,298.3515,160.6508,0,0,0,-459.0023,0,2024-08-01 11:40:37+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,715.21,285.8497,153.9191,0,0,0,-439.7688,0,2024-08-01 12:40:41+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,656.16,262.2491,141.2110,0,0,0,-403.4601,0,2024-08-01 08:26:12+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,492.52,196.8467,105.9944,0,0,0,-302.8411,0,2024-08-01 10:24:28+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,344.80,137.8071,74.2038,0,0,0,-212.0109,0,2024-08-01 04:32:22+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,192.03,76.7491,41.3264,0,0,0,-118.0755,0,2024-08-01 04:58:58+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-31 08:31:55+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 diff --git a/MaxiOps/feeDistributions/2024-08-15/2024-08-15.csv b/MaxiOps/feeDistributions/2024-08-15/2024-08-15.csv new file mode 100644 index 000000000..e18478dae --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-15/2024-08-15.csv @@ -0,0 +1,134 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,6556.2369 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,1879.8690 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,0 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,15489.6903 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,887.4555 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,0.0000 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,10896.2845 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3763.9697 +0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e,aura,0 +0x192e80145D8A78B4eF6ec5De5c8fD51aFC7F9c5e,balancer,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,1092.3609 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0.0000 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,3654.5261 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,620.1788 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,aura,0 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,balancer,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,1882.1906 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0.0000 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,22287.8679 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,8709.2823 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2492.1367 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,115.5623 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,3618.3703 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,604.4827 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,11707.8905 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,4116.3039 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,14279.4541 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,5232.6709 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,0 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,701.7678 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,14653.1430 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,5394.8966 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,628.7854 +0xB002073210698B0852E34DA6A5e432a04D299205,aura,0 +0xB002073210698B0852E34DA6A5e432a04D299205,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1789.6150 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,0.0000 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,573.5812 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,1337.2926 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0.0000 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,1552.9154 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0.0000 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,4411.0722 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,948.6105 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,4737.2365 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,1090.2049 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1285.8785 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,0.0000 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,776.9211 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,1874.5648 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,310.9621 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,631.2892 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,aura,0 +0xB5dCdE9aDCace88705658Aa276C557afC011FE55,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,878.5471 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,1304.2131 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,63.3610 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,1022.3140 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,0.0000 +0xb6d101874B975083C76598542946Fe047f059066,aura,1595.7629 +0xb6d101874B975083C76598542946Fe047f059066,balancer,189.9286 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,1712.0586 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,240.4149 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1766.6759 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,264.1254 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,1816.7050 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,285.8439 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,904.5009 +0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7,aura,0 +0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,831.3307 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,5039.0938 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,1684.7468 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,5754.7354 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1813.7563 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,684.4887 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,744.9192 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1047.7573 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,0.0000 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,883.7911 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,383.6713 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1610.7223 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,699.2465 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,aura,0 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,balancer,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,aura,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,14651.4670 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,6360.4926 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,75887.0670 diff --git a/MaxiOps/feeDistributions/2024-08-15/2024-08-15.json b/MaxiOps/feeDistributions/2024-08-15/2024-08-15.json new file mode 100644 index 000000000..8e68b0f8a --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-15/2024-08-15.json @@ -0,0 +1,2867 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "216820191001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "75887067000" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1879869000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15489690300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3763969700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "620178800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8709282300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "115562300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "604482700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4116303900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5232670900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "701767800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5394896600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "628785400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8ac7e1cdb7027ad6c85510ced04226736826af98d9add220ba6dd5edd723d58c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "573581200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "948610500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1090204900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "776921100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "310962100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "631289200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "878547100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "63361000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "189928600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "240414900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "264125400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "285843900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "904500900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x7d9054cc6e2e14472f6685634b07c4aad4175cb72a4aa825a38e3e30d8265424", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "831330700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1684746800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1813756300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "684488700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "744919200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "383671300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "699246500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6360492600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6556236900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "887455500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10896284500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1092360900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3654526100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1882190600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "22287867900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2492136700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3618370300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11707890500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14279454100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14653143000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1789615000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1337292600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1552915400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4411072200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4737236500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1285878500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1874564800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1304213100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1022314000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1595762900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1712058600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1766675900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1816705000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5039093800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5754735400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1047757300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "883791100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1610722300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14651467000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "140933125474" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "6075043442075263373340" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-08-15/2024-08-15.report.txt b/MaxiOps/feeDistributions/2024-08-15/2024-08-15.report.txt new file mode 100644 index 000000000..8d69b98d3 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-15/2024-08-15.report.txt @@ -0,0 +1,172 @@ +FILENAME: `MaxiOps/feeDistributions/2024-08-15/2024-08-15.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `5b19f76bd62ed868d773bcf89e2b138fdc4806ce` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/026346b7-2d5b-4113-8eda-a01dcf23466b) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 75887.067 (RAW: 75887067000) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 140933.125474 (RAW: 140933125474) | N/A | 66 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 6075.043442075264 (RAW: 6075043442075263373340) | N/A | 67 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-08-15/2024-08-15.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `5b19f76bd62ed868d773bcf89e2b138fdc4806ce` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e3f73a9d-4087-436d-94eb-ae05b67e34c0) +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 1879.869(1879869000) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 15489.6903(15489690300) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 3763.9697(3763969700) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 620.1788(620178800) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 8709.2823(8709282300) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 115.5623(115562300) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | rsETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 604.4827(604482700) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 4116.3039(4116303900) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 5232.6709(5232670900) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 701.7678(701767800) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 5394.8966(5394896600) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ETHx wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 628.7854(628785400) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | sDAI ShezUSD | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687 | 573.5812(573581200) | 0x8ac7e1cdb7027ad6c85510ced04226736826af98d9add220ba6dd5edd723d58c | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 948.6105(948610500) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 1090.2049(1090204900) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 776.9211(776921100) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 310.9621(310962100) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) ankrETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480 | 631.2892(631289200) | 0xa5d7a19f5b09985f6e716722761c9a837f614a0e447c1ab67dbb56bb101b6e94 | | | +| depositBribe | (A) wstETH WETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 878.5471(878547100) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | (A) wstETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 63.361(63361000) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 189.9286(189928600) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 240.4149(240414900) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 264.1254(264125400) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 285.8439(285843900) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 904.5009(904500900) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH WOETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a | 831.3307(831330700) | 0x7d9054cc6e2e14472f6685634b07c4aad4175cb72a4aa825a38e3e30d8265424 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 1684.7468(1684746800) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) WMATIC MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 1813.7563(1813756300) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | 684.4887(684488700) | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | (B) weETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 31 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | 744.9192(744919200) | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 32 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | 383.6713(383671300) | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 33 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 699.2465(699246500) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 34 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 6360.4926(6360492600) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 35 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 6556.2369(6556236900) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | ComposableStable DOLA/sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 36 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 887.4555(887455500) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 10896.2845(10896284500) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 1092.3609(1092360900) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 3654.5261(3654526100) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | 1882.1906(1882190600) | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 22287.8679(22287867900) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 2492.1367(2492136700) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 3618.3703(3618370300) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 11707.8905(11707890500) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 14279.4541(14279454100) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 14653.143(14653143000) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 1789.615(1789615000) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | Gyroe wstETH/cbETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | 1337.2926(1337292600) | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | 80/20 ALCX/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 1552.9154(1552915400) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 4411.0722(4411072200) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 4737.2365(4737236500) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 1285.8785(1285878500) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 1874.5648(1874564800) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-ComposableStable wstETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 1304.2131(1304213100) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | a-ComposableStable rsETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c | 1022.314(1022314000) | 0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e | | | +| depositBribe | a-ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 1595.7629(1595762900) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 1712.0586(1712058600) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1766.6759(1766675900) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 1816.705(1816705000) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 60 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 5039.0938(5039093800) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 61 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 5754.7354(5754735400) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 62 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 1047.7573(1047757300) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | av-ComposableStable ggAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 63 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | 883.7911(883791100) | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 64 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 1610.7223(1610722300) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 65 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 14651.467(14651467000) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-08-15/2024-08-15.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `5b19f76bd62ed868d773bcf89e2b138fdc4806ce` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/be4b5cf7-ac7a-4d4e-b048-2795b1c6a57c) +``` ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:216820191001, 18 decimals:2.16820191001E-7, 6 decimals: 216820.191001" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-08-15/fees_2024-08-01_2024-08-15.json b/MaxiOps/feeDistributions/2024-08-15/fees_2024-08-01_2024-08-15.json new file mode 100644 index 000000000..08ec048c1 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-15/fees_2024-08-01_2024-08-15.json @@ -0,0 +1,8 @@ +{ + "mainnet": 317983567199, + "arbitrum": 46386721047, + "polygon": 16505960660, + "base": 3585352929, + "gnosis": 42023919244, + "avalanche": 7154862393 +} diff --git a/MaxiOps/feeDistributions/2024-08-15/incentives_2024-08-01_2024-08-15.csv b/MaxiOps/feeDistributions/2024-08-15/incentives_2024-08-01_2024-08-15.csv new file mode 100644 index 000000000..81b3fd5e5 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-15/incentives_2024-08-01_2024-08-15.csv @@ -0,0 +1,67 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,5322.80,4919.5196,2648.9721,7568.4917,5754.7354,1813.7563,0.0000,0,2024-08-15 17:13:13+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,481.39,444.9176,239.5710,684.4887,0,684.4887,0.0000,0,2024-08-15 05:10:24+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-12 23:28:09+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,34678.38,19965.0226,10750.3968,30997.1501,22287.8679,8709.2823,281.7308,0,2024-08-15 20:05:59+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,22428.95,12912.7858,6953.0385,20048.0395,14653.1430,5394.8966,182.2152,0,2024-08-09 04:30:11+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,21829.39,12567.6074,6767.1732,19512.1249,14279.4541,5232.6709,177.3443,0,2024-08-15 09:47:23+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,17703.48,10192.2402,5488.1293,15824.1945,11707.8905,4116.3039,143.8250,0,2024-08-15 13:51:23+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,17329.25,9976.7886,5372.1170,15489.6902,0,15489.6903,140.7846,0,2024-08-15 04:31:35+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,16401.31,9442.5554,5084.4529,14660.2542,10896.2845,3763.9697,133.2459,0,2024-08-13 23:04:11+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,9437.98,5433.6299,2925.8007,8436.1060,6556.2369,1879.8690,76.6753,0,2024-08-15 16:18:23+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,6519.51,3753.4096,2021.0667,5827.4415,4737.2365,1090.2049,52.9652,0,2024-08-13 08:47:59+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,5996.20,3452.1298,1858.8391,5359.6826,4411.0722,948.6105,48.7137,0,2024-08-15 14:07:59+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,4782.37,2753.3041,1482.5483,4274.7049,3654.5261,620.1788,38.8525,0,2024-07-02 06:07:47+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,4724.36,2719.9066,1464.5651,4222.8529,3618.3703,604.4827,38.3812,0,2024-08-08 13:38:59+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,2917.39,1679.5986,904.3992,2607.6991,2492.1367,115.5623,23.7013,0,2024-08-15 07:00:47+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,2105.72,1212.3042,652.7792,1882.1906,1882.1906,0.0000,17.1071,0,2024-08-09 20:21:47+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,2002.15,1152.6770,620.6722,1789.6149,1789.6150,0.0000,16.2657,0,2024-08-06 14:51:11+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,1737.34,1000.2207,538.5804,1552.9153,1552.9154,0.0000,14.1143,0,2024-08-15 00:59:47+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,1496.11,861.3398,463.7984,1337.2927,1337.2926,0.0000,12.1545,0,2024-08-11 22:12:35+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,1438.59,828.2244,445.9670,1285.8787,1285.8785,0.0000,11.6873,0,2024-08-14 11:59:23+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,1222.09,703.5811,378.8514,1092.3609,1092.3609,0.0000,9.9284,0,2024-08-08 19:32:23+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,992.85,571.6032,307.7863,887.4556,887.4555,0.0000,8.0661,0,2024-08-13 17:36:59+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,785.11,452.0032,243.3863,701.7678,0,701.7678,6.3783,0,2024-08-01 23:58:35+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,703.46,404.9957,218.0746,628.7853,0,628.7854,5.7150,0,2024-08-14 21:52:59+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,641.70,369.4393,198.9288,573.5813,0,573.5812,5.2132,0,2024-08-15 00:08:11+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,561.21,323.0996,173.9767,0,0,0,-497.0763,0,2024-08-14 07:56:11+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,281.58,162.1111,87.2906,0,0,0,-249.4017,0,2024-08-15 09:48:35+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,246.18,141.7306,76.3165,0,0,0,-218.0472,0,2024-08-09 09:44:47+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,235.94,135.8353,73.1421,0,0,0,-208.9774,0,2024-08-01 02:25:47+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,232.94,134.1081,72.2121,0,0,0,-206.3202,0,2024-08-11 15:58:59+00:00 +0xdb1f2e1655477d08fb0992f82eede0053b8cd3820000000000000000000006ae,mainnet,shezETH/wstETH,73.66,42.4075,22.8348,0,0,0,-65.2423,0,2024-08-14 04:54:35+00:00 +0x38fe2b73612527eff3c5ac3bf2dcb73784ad927400000000000000000000068c,mainnet,saETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:35+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-03 10:12:35+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:59+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-15 17:50:47+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-24 17:19:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,7275.34,13657.7738,7354.1859,21011.9596,14651.4670,6360.4926,0.0000,0,2024-08-15 11:53:45+00:00 +0x71e1179c5e197fa551beec85ca2ef8693c61b85b0002000000000000000000a0,gnosis,ECLP-rETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-15 20:24:00+00:00 +0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c,gnosis,ECLP-wstETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-15 20:21:55+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,974.97,662.5882,356.7783,1047.7573,1047.7573,0.0000,28.3908,0,2024-08-15 16:45:47+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,693.17,471.0773,253.6570,744.9192,0,744.9192,20.1848,0,2024-08-15 09:15:57+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,46.46,31.5741,17.0015,0,0,0,-48.5756,0,2024-08-14 16:18:59+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,3948.97,1501.4797,808.4891,2309.9688,1610.7223,699.2465,0,0,2024-08-15 19:42:55+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,2166.77,823.8506,443.6118,1267.4624,883.7911,383.6713,0,0,2024-08-15 19:49:10+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,11393.87,4117.8687,2217.3139,6723.8407,5039.0938,1684.7468,388.6580,0,2024-08-15 20:22:54+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,3703.48,1338.4780,720.7189,2185.5270,1874.5648,310.9621,126.3301,0,2024-08-15 04:10:44+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,3562.87,1287.6600,693.3554,2102.5490,1816.7050,285.8439,121.5336,0,2024-08-15 17:37:29+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,3441.29,1243.7197,669.6952,2030.8013,1766.6759,264.1254,117.3864,0,2024-08-15 19:17:22+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,3308.56,1195.7496,643.8652,1952.4735,1712.0586,240.4149,112.8587,0,2024-08-15 20:06:48+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,3025.94,1093.6077,588.8657,1785.6916,1595.7629,189.9286,103.2183,0,2024-08-15 18:11:09+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,2317.42,837.5408,450.9835,1367.5743,1304.2131,63.3610,79.0499,0,2024-08-15 14:19:35+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,1732.36,626.0938,337.1274,1022.3140,1022.3140,0.0000,59.0928,0,2024-08-15 20:28:42+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1532.72,553.9417,298.2763,904.5009,0,904.5009,52.2829,0,2024-08-15 17:38:56+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,1488.74,538.0469,289.7175,878.5471,0,878.5471,50.7827,0,2024-08-15 15:32:42+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,1408.73,509.1304,274.1471,831.3309,0,831.3307,48.0534,0,2024-08-15 18:24:45+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1316.53,475.8083,256.2045,776.9210,0,776.9211,44.9083,0,2024-08-14 01:25:56+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,1069.75,386.6193,208.1796,631.2893,0,631.2892,36.4904,0,2024-08-15 14:45:02+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,715.16,258.4666,139.1743,0,0,0,-397.6409,0,2024-08-15 16:11:04+00:00 +0xe8a6026365254f779b6927f00f8724ea1b8ae5e0000000000000000000000580,arbitrum,gUSDC/USDC,627.97,226.9552,122.2066,0,0,0,-349.1618,0,2024-08-15 20:03:55+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,497.30,179.7296,96.7775,0,0,0,-276.5071,0,2024-08-15 07:11:07+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,226.57,81.8849,44.0919,0,0,0,-125.9767,0,2024-08-15 12:10:18+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,172.36,62.2928,33.5423,0,0,0,-95.8350,0,2024-08-15 16:58:33+00:00 +0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d,arbitrum,weETH/rETH,171.80,62.0904,33.4333,0,0,0,-95.5237,0,2024-08-15 07:11:22+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-14 13:45:06+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 diff --git a/MaxiOps/feeDistributions/2024-08-29/2024-08-29.csv b/MaxiOps/feeDistributions/2024-08-29/2024-08-29.csv new file mode 100644 index 000000000..a6f31125c --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-29/2024-08-29.csv @@ -0,0 +1,156 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,3729.8633 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,993.0308 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,581.6965 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,12644.4361 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,1437.9134 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,0.0000 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,9493.7988 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3658.0076 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,aura,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,2839.8827 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,581.5450 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,4368.7345 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,1288.4152 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,aura,0 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,balancer,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,1163.3681 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0.0000 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,18057.3575 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,7617.4002 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2491.5186 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,420.4778 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,aura,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,balancer,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,1927.7408 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,159.8130 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,4084.3323 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,1156.9209 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,11481.8292 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4577.1808 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,6385.6085 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,2220.9243 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,3200.2104 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,748.1439 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,577.2016 +0xB002073210698B0852E34DA6A5e432a04D299205,aura,0 +0xB002073210698B0852E34DA6A5e432a04D299205,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1755.3589 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,80.1116 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,826.3670 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,2422.3944 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,388.5178 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,905.8958 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0.0000 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,2450.4227 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,401.4769 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,3655.9757 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,958.8687 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,2176.6935 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,274.9172 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,2305.4240 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,334.4361 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,866.1370 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,200.7706 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,1005.2557 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,265.0927 +0x9eCc698c20219Ea45697d82ca89cD044aEEACF60,aura,0 +0x9eCc698c20219Ea45697d82ca89cD044aEEACF60,balancer,0 +0x00654F788342647A8Aa15f2eb2490e17d222aC85,aura,0 +0x00654F788342647A8Aa15f2eb2490e17d222aC85,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,aura,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,balancer,0 +0x86893f6829dA1296F739F50Ff9d3923453E9b48D,aura,0 +0x86893f6829dA1296F739F50Ff9d3923453E9b48D,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,860.0602 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,1087.4811 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,303.1102 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,aura,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,balancer,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,1155.4698 +0xb6d101874B975083C76598542946Fe047f059066,balancer,334.5453 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,aura,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,balancer,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,906.3494 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,219.3632 +0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729,aura,0 +0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729,balancer,0 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1552.3409 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,518.0396 +0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C,aura,0 +0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C,balancer,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,aura,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,balancer,0 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,1485.4406 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,487.1078 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,737.4660 +0x5a47e3f2E5009168Af11C4b0198605f694805779,aura,0 +0x5a47e3f2E5009168Af11C4b0198605f694805779,balancer,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,aura,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,balancer,0 +0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7,aura,0 +0x5A482e8478d63219bC33C7F1d7Cdb599039ABad7,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,aura,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,3431.5036 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,1386.8775 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,6794.2487 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,2301.0580 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,840.2877 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,0 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,894.5853 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,413.6148 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,1164.3161 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,2489.0987 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,0.0000 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,aura,0 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,balancer,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,aura,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,8380.5690 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3874.7867 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,59772.7157 diff --git a/MaxiOps/feeDistributions/2024-08-29/2024-08-29.json b/MaxiOps/feeDistributions/2024-08-29/2024-08-29.json new file mode 100644 index 000000000..d59b88c42 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-29/2024-08-29.json @@ -0,0 +1,3039 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "170779188301" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "59772715700" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "993030800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "581696500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12644436100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3658007600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "581545000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1288415200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7617400200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "420477800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "159813000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1156920900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4577180800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2220924300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "748143900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "577201600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "80111600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8ac7e1cdb7027ad6c85510ced04226736826af98d9add220ba6dd5edd723d58c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "826367000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "388517800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "401476900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "958868700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "274917200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "334436100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "200770600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "265092699", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "860060200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "303110200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "334545300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "219363200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "518039599", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "487107800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "737466000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1386877500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2301058000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "840287700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "413614800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1164316100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3874786700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3729863300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1437913400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9493798800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2839882700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4368734500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1163368100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "18057357500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2491518600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1927740800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4084332300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11481829200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6385608500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3200210400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1755358900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2422394400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "905895800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2450422700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3655975700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2176693500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2305424000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "866137000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1005255700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1087481100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1155469800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "906349400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1552340900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1485440600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3431503600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6794248700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "894585300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2489098700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8380568999", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "111006472211" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "2172096965258488456117" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-08-29/2024-08-29.report.txt b/MaxiOps/feeDistributions/2024-08-29/2024-08-29.report.txt new file mode 100644 index 000000000..db5a56ce0 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-29/2024-08-29.report.txt @@ -0,0 +1,180 @@ +FILENAME: `MaxiOps/feeDistributions/2024-08-29/2024-08-29.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `fa7de3b009f6f7d8e6c0717361e572bfc340a1e1` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/19963449-7e7f-4020-aff5-0a7d5529800f) +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 59772.7157 (RAW: 59772715700) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 111006.472211 (RAW: 111006472211) | N/A | 70 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 2172.0969652584886 (RAW: 2172096965258488456117) | N/A | 71 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-08-29/2024-08-29.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `fa7de3b009f6f7d8e6c0717361e572bfc340a1e1` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c5621ada-aadd-4836-afe2-eb675979a0bc) +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 993.0308(993030800) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | sDAI GYD (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | 581.6965(581696500) | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 12644.4361(12644436100) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 3658.0076(3658007600) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | amphrETH rstETH wstETH Re7LRT steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 581.545(581545000) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 1288.4152(1288415200) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 7617.4002(7617400200) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 420.4778(420477800) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | rsETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 159.813(159813000) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 1156.9209(1156920900) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 4577.1808(4577180800) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 2220.9243(2220924300) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 748.1439(748143900) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ETHx wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 577.2016(577201600) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | wstETH ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 80.1116(80111600) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | sDAI ShezUSD | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687 | 826.367(826367000) | 0x8ac7e1cdb7027ad6c85510ced04226736826af98d9add220ba6dd5edd723d58c | | | +| depositBribe | WETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | 388.5178(388517800) | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | WETH-20% ALCX-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 401.4769(401476900) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 958.8687(958868700) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 274.9172(274917200) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | RDNT-80% WETH-20% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 334.4361(334436100) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 200.7706(200770600) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 265.092699(265092699) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) wstETH WETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 860.0602(860060200) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | (A) wstETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 303.1102(303110200) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 334.5453(334545300) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 219.3632(219363200) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 518.039599(518039599) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 487.1078(487107800) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 31 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 737.466(737466000) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 32 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 1386.8775(1386877500) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) WMATIC MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 33 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 2301.058(2301058000) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (P) stMATIC WMATIC (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 34 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | 840.2877(840287700) | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 35 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 413.6148(413614800) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 36 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | 1164.3161(1164316100) | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 37 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 3874.7867(3874786700) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 3729.8633(3729863300) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | ComposableStable DOLA/sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 1437.9134(1437913400) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 9493.7988(9493798800) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 2839.8827(2839882700) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 4368.7345(4368734500) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | 1163.3681(1163368100) | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 18057.3575(18057357500) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 2491.5186(2491518600) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 1927.7408(1927740800) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 4084.3323(4084332300) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 11481.8292(11481829200) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 6385.6085(6385608500) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 3200.2104(3200210400) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 1755.3589(1755358900) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | Gyroe WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | 2422.3944(2422394400) | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | Gyroe wstETH/cbETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | 905.8958(905895800) | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | 80/20 ALCX/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 2450.4227(2450422700) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 3655.9757(3655975700) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 2176.6935(2176693500) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 2305.424(2305424000) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 866.137(866137000) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 1005.2557(1005255700) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-ComposableStable wstETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 60 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 1087.4811(1087481100) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | a-ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 61 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 1155.4698(1155469800) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 62 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 906.3494(906349400) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 63 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1552.3409(1552340900) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 64 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 1485.4406(1485440600) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 65 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 3431.5036(3431503600) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable WMATIC/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 66 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 6794.2487(6794248700) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 67 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 894.5853(894585300) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 68 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 2489.0987(2489098700) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 69 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 8380.568999(8380568999) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-08-29/2024-08-29.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `fa7de3b009f6f7d8e6c0717361e572bfc340a1e1` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5651bdfb-0100-45b8-9140-917d847a71df) +``` ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:170779188301, 18 decimals:1.70779188301E-7, 6 decimals: 170779.188301" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-08-29/fees_2024-08-15_2024-08-29.json b/MaxiOps/feeDistributions/2024-08-29/fees_2024-08-15_2024-08-29.json new file mode 100644 index 000000000..51ca72e23 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-29/fees_2024-08-15_2024-08-29.json @@ -0,0 +1,8 @@ +{ + "mainnet": 253648423866, + "arbitrum": 33604822432, + "polygon": 19871188819, + "base": 2616400124, + "gnosis": 24510711489, + "avalanche": 7306829481 +} diff --git a/MaxiOps/feeDistributions/2024-08-29/incentives_2024-08-15_2024-08-29.csv b/MaxiOps/feeDistributions/2024-08-29/incentives_2024-08-15_2024-08-29.csv new file mode 100644 index 000000000..3c5e9db92 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-08-29/incentives_2024-08-15_2024-08-29.csv @@ -0,0 +1,78 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,6056.05,5911.9494,3183.3574,9095.3067,6794.2487,2301.0580,0.0000,0,2024-08-29 06:57:10+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,559.50,546.1870,294.1007,840.2877,0,840.2877,0.0000,0,2024-08-29 05:30:06+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-26 14:18:02+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,20677.64,16581.5932,8928.5502,25674.7576,18057.3575,7617.4002,164.6142,0,2024-08-29 08:19:35+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,12933.42,10371.4307,5584.6165,16059.0099,11481.8292,4577.1808,102.9627,0,2024-08-28 18:31:35+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,10592.05,8493.8641,4573.6191,13151.8065,9493.7988,3658.0076,84.3232,0,2024-08-28 15:15:47+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,10183.43,8166.1879,4397.1781,12644.4361,0,12644.4361,81.0701,0,2024-08-29 05:05:23+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,6931.43,5558.3787,2992.9731,8606.5328,6385.6085,2220.9243,55.1810,0,2024-08-26 03:22:59+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,4556.09,3653.5713,1967.3076,5657.1498,4368.7345,1288.4152,36.2709,0,2024-08-17 18:04:23+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,4221.14,3384.9717,1822.6771,5241.2532,4084.3323,1156.9209,33.6044,0,2024-08-27 18:56:47+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,3803.67,3050.1986,1642.4146,4722.8940,3729.8633,993.0308,30.2808,0,2024-08-28 02:32:35+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,3716.65,2980.4165,1604.8396,4614.8443,3655.9757,958.8687,29.5882,0,2024-08-28 15:33:47+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,3179.88,2549.9756,1373.0638,3948.3543,3200.2104,748.1439,25.3150,0,2024-08-25 22:09:47+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,2755.51,2209.6693,1189.8219,3421.4277,2839.8827,581.5450,21.9365,0,2024-08-26 07:02:59+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,2345.23,1880.6619,1012.6641,2911.9964,2491.5186,420.4778,18.6704,0,2024-08-29 06:11:59+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,2296.83,1841.8495,991.7651,2851.8995,2450.4227,401.4769,18.2849,0,2024-08-26 01:33:35+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,2263.82,1815.3785,977.5115,2810.9121,2422.3944,388.5178,18.0222,0,2024-08-26 01:06:35+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,2126.06,1704.9074,918.0271,2639.8600,2305.4240,334.4361,16.9255,0,2024-08-29 06:28:47+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,1974.45,1583.3300,852.5623,2451.6107,2176.6935,274.9172,15.7185,0,2024-08-27 07:12:11+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,1681.25,1348.2101,725.9593,2087.5539,1927.7408,159.8130,13.3845,0,2024-08-23 16:39:47+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,1478.23,1185.4065,638.2958,1835.4704,1755.3589,80.1116,11.7681,0,2024-08-26 16:44:59+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1158.05,928.6511,500.0429,1437.9133,1437.9134,0.0000,9.2192,0,2024-08-29 03:48:47+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,936.94,751.3410,404.5682,1163.3681,1163.3681,0.0000,7.4589,0,2024-08-09 20:21:47+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,729.58,585.0570,315.0307,905.8958,905.8958,0.0000,5.8081,0,2024-08-24 02:10:23+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,665.53,533.6947,287.3741,826.3671,0,826.3670,5.2983,0,2024-08-28 23:31:35+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,468.48,375.6785,202.2884,581.6966,0,581.6965,3.7297,0,2024-08-28 18:04:59+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,464.86,372.7756,200.7253,577.2017,0,577.2016,3.7008,0,2024-08-27 23:13:23+00:00 +0xdb1f2e1655477d08fb0992f82eede0053b8cd3820000000000000000000006ae,mainnet,shezETH/wstETH,297.39,238.4798,128.4122,0,0,0,-366.8920,0,2024-08-28 21:36:35+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,186.47,149.5320,80.5173,0,0,0,-230.0493,0,2024-08-19 06:37:11+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,135.70,108.8191,58.5949,0,0,0,-167.4140,0,2024-08-26 01:17:35+00:00 +0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6,mainnet,cdcETH/wstETH,39.28,31.4990,16.9610,0,0,0,-48.4600,0,2024-08-23 07:28:35+00:00 +0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be,mainnet,ECLP-stdeUSD-deUSD,0.26,0.2085,0.1123,0,0,0,-0.3208,0,2024-08-28 22:35:23+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-03 10:12:35+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-06-05 00:44:59+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-11 15:58:59+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-09 09:44:47+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,4471.64,7965.9812,4289.3745,12255.3557,8380.5690,3874.7867,0.0000,0,2024-08-29 01:44:45+00:00 +0x71e1179c5e197fa551beec85ca2ef8693c61b85b0002000000000000000000a0,gnosis,ECLP-rETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-29 09:40:35+00:00 +0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c,gnosis,ECLP-wstETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-29 09:34:50+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,947.83,620.3622,334.0412,1308.2001,894.5853,413.6148,353.7968,0,2024-08-29 07:09:43+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,336.50,220.2419,118.5918,0,0,0,-338.8337,0,2024-08-29 04:42:29+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,14.86,9.7260,5.2371,0,0,0,-14.9631,0,2024-08-28 12:40:43+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,4298.43,1617.9141,871.1845,2489.0987,2489.0987,0.0000,0,0,2024-08-29 00:05:37+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,2010.66,756.8054,407.5106,1164.3161,0,1164.3161,0,0,2024-08-28 17:47:09+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,6660.78,2514.5083,1353.9660,4818.3809,3431.5036,1386.8775,949.9067,0,2024-08-29 09:30:12+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2862.03,1080.4437,581.7774,2070.3805,1552.3409,518.0396,408.1594,0,2024-08-29 08:54:09+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,2726.79,1029.3893,554.2866,1972.5488,1485.4406,487.1078,388.8729,0,2024-08-29 09:11:31+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,2059.75,777.5754,418.6944,1490.0150,1155.4698,334.5453,293.7452,0,2024-08-29 07:49:47+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,1922.31,725.6904,390.7564,1390.5912,1087.4811,303.1102,274.1444,0,2024-08-29 07:40:48+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,1756.09,662.9408,356.9681,1270.3485,1005.2557,265.0927,250.4396,0,2024-08-29 08:10:42+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1556.15,587.4615,316.3254,1125.7126,906.3494,219.3632,221.9256,0,2024-08-29 08:57:45+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1474.86,556.7738,299.8013,1066.9077,866.1370,200.7706,210.3327,0,2024-08-29 04:43:11+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,1188.92,448.8287,241.6770,860.0598,0,860.0602,169.5541,0,2024-08-29 07:50:58+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1019.45,384.8521,207.2281,737.4659,0,737.4660,145.3857,0,2024-08-28 13:42:56+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,780.51,294.6500,158.6577,0,0,0,-453.3077,0,2024-08-29 07:52:12+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,702.50,265.2005,142.8003,0,0,0,-408.0007,0,2024-08-27 22:07:15+00:00 +0x59743f1812bb85db83e9e4ee061d124aaa64290000000000000000000000052b,arbitrum,sUSDe/sFRAX,629.66,237.7027,127.9938,0,0,0,-365.6964,0,2024-08-29 08:40:39+00:00 +0xe8a6026365254f779b6927f00f8724ea1b8ae5e0000000000000000000000580,arbitrum,gUSDC/USDC,614.05,231.8098,124.8206,0,0,0,-356.6304,0,2024-08-28 17:13:10+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,536.23,202.4320,109.0018,0,0,0,-311.4338,0,2024-08-29 09:32:14+00:00 +0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c,arbitrum,sUSX/USDC,423.69,159.9470,86.1253,0,0,0,-246.0724,0,2024-08-15 02:08:46+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,389.76,147.1381,79.2282,0,0,0,-226.3664,0,2024-08-28 13:11:38+00:00 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,308.62,116.5070,62.7345,0,0,0,-179.2415,0,2024-08-27 23:41:34+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,264.04,99.6776,53.6726,0,0,0,-153.3502,0,2024-08-29 04:43:11+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,218.67,82.5500,44.4500,0,0,0,-127.0000,0,2024-08-29 03:46:56+00:00 +0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f,arbitrum,ECLP-sUSDe-GYD,209.12,78.9448,42.5087,0,0,0,-121.4535,0,2024-08-29 08:11:12+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,190.18,71.7948,38.6587,0,0,0,-110.4535,0,2024-08-29 05:24:04+00:00 +0xc757f12694f550d0985ad6e1019c4db4a803f1600002000000000000000004de,arbitrum,50wstETH/50sFRAX,127.45,48.1136,25.9073,0,0,0,-74.0209,0,2024-08-29 04:16:48+00:00 +0x69d9bc07a19caad9ae4ca40af18d5a688839a29900020000000000000000058e,arbitrum,ECLP-gUSDC-AUSDC,102.26,38.6041,20.7868,0,0,0,-59.3910,0,2024-08-29 06:13:16+00:00 +0xb8cb384e65096386c1edaaf784e842c957fa3645000000000000000000000571,arbitrum,inETH/wstETH,92.05,34.7498,18.7114,0,0,0,-53.4612,0,2024-08-29 09:40:53+00:00 +0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594,arbitrum,ECLP-rETH-wstETH,45.81,17.2937,9.3120,0,0,0,-26.6057,0,2024-08-29 01:30:19+00:00 +0x315dd595e82bdc0c194f3a38a08fde480d7e5d2100020000000000000000056a,arbitrum,ECLP-wUSDM-GYD,45.69,17.2484,9.2876,0,0,0,-26.5360,0,2024-08-29 05:19:33+00:00 +0x36c2f879f446c3b6533f9703745c0504f3a84885000200000000000000000591,arbitrum,ECLP-sFRAX-aFRAX,23.15,8.7393,4.7058,0,0,0,-13.4451,0,2024-08-29 04:45:44+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-29 09:08:37+00:00 +0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d,arbitrum,2CLP-AUSDC-USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-28 22:41:53+00:00 +0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595,arbitrum,weETH/wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-13 20:33:49+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 diff --git a/MaxiOps/feeDistributions/2024-09-12/2024-09-12.csv b/MaxiOps/feeDistributions/2024-09-12/2024-09-12.csv new file mode 100644 index 000000000..e20456d86 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-12/2024-09-12.csv @@ -0,0 +1,158 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,3302.8044 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,687.9683 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,0 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,12105.6826 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,781.3148 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,6010.7437 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,1958.8005 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,aura,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,1414.4691 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0.0000 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,3012.5975 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,551.7745 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,aura,0 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,balancer,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,1241.0942 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0.0000 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,8838.4270 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,3285.8283 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2697.6483 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,403.9695 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,aura,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,balancer,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,2209.3117 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,174.7937 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,4645.3847 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,1318.0394 +0x146b6030E6d6a6398B918E9854652a71C9537180,aura,0 +0x146b6030E6d6a6398B918E9854652a71C9537180,balancer,0 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,10686.5049 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4153.1288 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,3771.0008 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,907.6924 +0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f,aura,0 +0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f,balancer,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,aura,0 +0x10a361766e64D7983a97202ac3a0F4cee06Eb717,balancer,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,3488.7984 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,775.2550 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,0 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,626.0716 +0xB002073210698B0852E34DA6A5e432a04D299205,aura,0 +0xB002073210698B0852E34DA6A5e432a04D299205,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,944.7124 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,0.0000 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,544.3079 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,aura,0 +0xA71Adac76A2e34f8F988Fa6992E3bDAd08D92C01,balancer,773.0804 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,932.8015 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0.0000 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,686.1374 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,1711.8923 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0.0000 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,3416.5826 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,741.3644 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,2087.7949 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,117.7663 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,3116.9943 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,600.7680 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,970.8939 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,151.1127 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,945.4105 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,139.1534 +0x9eCc698c20219Ea45697d82ca89cD044aEEACF60,aura,0 +0x9eCc698c20219Ea45697d82ca89cD044aEEACF60,balancer,0 +0x00654F788342647A8Aa15f2eb2490e17d222aC85,aura,0 +0x00654F788342647A8Aa15f2eb2490e17d222aC85,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,aura,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,balancer,0 +0x86893f6829dA1296F739F50Ff9d3923453E9b48D,aura,0 +0x86893f6829dA1296F739F50Ff9d3923453E9b48D,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E,aura,0 +0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,685.9804 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,1286.3209 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,299.1422 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,aura,1338.9916 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,balancer,323.8607 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,909.4352 +0xb6d101874B975083C76598542946Fe047f059066,balancer,122.2702 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,aura,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,balancer,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,991.5318 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,160.7981 +0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729,aura,0 +0xE3A23a49128Aa55d0705E4F97ac4dc3149dFf729,balancer,0 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1472.6489 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,386.5859 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,1329.5383 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,319.4240 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,635.0372 +0x5a47e3f2E5009168Af11C4b0198605f694805779,aura,0 +0x5a47e3f2E5009168Af11C4b0198605f694805779,balancer,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,aura,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,762.3656 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,aura,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,balancer,657.3548 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,aura,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,12965.1760 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,5780.0124 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,3551.9110 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1666.9068 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,544.7964 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,638.6558 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1875.0414 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,879.9545 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,aura,0 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,balancer,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,aura,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,7337.8968 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3443.6647 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,51553.3129 diff --git a/MaxiOps/feeDistributions/2024-09-12/2024-09-12.json b/MaxiOps/feeDistributions/2024-09-12/2024-09-12.json new file mode 100644 index 000000000..31607f019 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-12/2024-09-12.json @@ -0,0 +1,2996 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "147295178600" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "51553312900" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "687968300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12105682600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "781314800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1958800500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "551774500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3285828300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "403969500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "174793700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1318039400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4153128800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "907692400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "775255000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "626071600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "544307900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8ac7e1cdb7027ad6c85510ced04226736826af98d9add220ba6dd5edd723d58c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "773080400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "686137400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "741364400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "117766300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "600768000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "151112700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "139153400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "685980400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "299142200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe8b56fa5129613c439c48b490c50f1e54a31201113abd0f40422ab5129c7296c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "323860700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "122270200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "160798100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "386585900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "319424000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "635037200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x7d9054cc6e2e14472f6685634b07c4aad4175cb72a4aa825a38e3e30d8265424", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "762365600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa081cb17f847afe52e6bbdc5d151f91e7185d33a1746eaa1fe0847637247299c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "657354800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5780012400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1666906800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "544796400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "638655800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "879954500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3443664700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3302804400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6010743700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1414469100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3012597500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1241094200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8838427000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2697648300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2209311700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4645384700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10686504900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3771000800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3488798400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "944712400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "932801500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1711892300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3416582600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2087794899", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3116994300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "970893900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "945410500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1286320900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe8b56fa5129613c439c48b490c50f1e54a31201113abd0f40422ab5129c7296c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1338991600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "909435200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "991531800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1472648900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1329538300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12965176000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3551911000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1875041400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7337896800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "95741867458" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "4383943591301527946958" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-09-12/2024-09-12.report.txt b/MaxiOps/feeDistributions/2024-09-12/2024-09-12.report.txt new file mode 100644 index 000000000..0a48671f3 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-12/2024-09-12.report.txt @@ -0,0 +1,181 @@ +FILENAME: `MaxiOps/feeDistributions/2024-09-12/2024-09-12.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `74f0da1654d7cc30584fe398bd421458dbdbe3c2` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2a6ec6f1-2cb6-4492-b21d-36e402e02f2d) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 51553.3129 (RAW: 51553312900) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 95741.867458 (RAW: 95741867458) | N/A | 69 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 4383.943591301528 (RAW: 4383943591301527946958) | N/A | 70 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-09-12/2024-09-12.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `74f0da1654d7cc30584fe398bd421458dbdbe3c2` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/dcc1b033-f232-43ac-811d-e4cae80d2240) + +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 687.9683(687968300) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 12105.6826(12105682600) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | DOLA sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 781.3148(781314800) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 1958.8005(1958800500) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 551.7745(551774500) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 3285.8283(3285828300) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 403.9695(403969500) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | rsETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 174.7937(174793700) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 1318.0394(1318039400) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 4153.1288(4153128800) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 907.6924(907692400) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 775.255(775255000) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ETHx wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 626.0716(626071600) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | swETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca | 544.3079(544307900) | 0x3421a1fa438ff3366d709e7c95f216034b1a0bd35e33dba3c3c27998863ba710 | | | +| depositBribe | sDAI ShezUSD | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687 | 773.0804(773080400) | 0x8ac7e1cdb7027ad6c85510ced04226736826af98d9add220ba6dd5edd723d58c | | | +| depositBribe | wstETH cbETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0 | 686.1374(686137400) | 0xbe7cb0d7913723170b7aee386143aa0337b043cf1b8432cb0131b8ffd2ab04f4 | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 741.3644(741364400) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 117.7663(117766300) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | RDNT-80% WETH-20% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 600.768(600768000) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 151.1127(151112700) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 139.1534(139153400) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) wstETH WETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 685.9804(685980400) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | (A) wstETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 299.1422(299142200) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | (A) USDC sUSX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c | 323.8607(323860700) | 0xe8b56fa5129613c439c48b490c50f1e54a31201113abd0f40422ab5129c7296c | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 122.2702(122270200) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 160.7981(160798100) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 386.5859(386585900) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 319.424(319424000) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 635.0372(635037200) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH WOETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 31 | +| | 0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a | 762.3656(762365600) | 0x7d9054cc6e2e14472f6685634b07c4aad4175cb72a4aa825a38e3e30d8265424 | | | +| depositBribe | (A) weETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 32 | +| | 0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595 | 657.3548(657354800) | 0xa081cb17f847afe52e6bbdc5d151f91e7185d33a1746eaa1fe0847637247299c | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 33 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 5780.0124(5780012400) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) wPOL MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 34 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 1666.9068(1666906800) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (B) weETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 35 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | 544.7964(544796400) | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 36 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 638.6558(638655800) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 37 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 879.9545(879954500) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 38 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 3443.6647(3443664700) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 3302.8044(3302804400) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 6010.7437(6010743700) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 1414.4691(1414469100) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 3012.5975(3012597500) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | 1241.0942(1241094200) | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 8838.427(8838427000) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 2697.6483(2697648300) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 2209.3117(2209311700) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 4645.3847(4645384700) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 10686.5049(10686504900) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 3771.0008(3771000800) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 3488.7984(3488798400) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 944.7124(944712400) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | Gyroe WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | 932.8015(932801500) | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | 80/20 ALCX/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 1711.8923(1711892300) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 3416.5826(3416582600) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 2087.794899(2087794899) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 3116.9943(3116994300) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 970.8939(970893900) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 945.4105(945410500) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-ComposableStable wstETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 1286.3209(1286320900) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | a-ComposableStable USDC/sUSX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 60 | +| | 0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c | 1338.9916(1338991600) | 0xe8b56fa5129613c439c48b490c50f1e54a31201113abd0f40422ab5129c7296c | | | +| depositBribe | a-ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 61 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 909.4352(909435200) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 62 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 991.5318(991531800) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 63 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1472.6489(1472648900) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 64 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 1329.5383(1329538300) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 65 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 12965.176(12965176000) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable wPOL/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 66 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 3551.911(3551911000) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 67 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 1875.0414(1875041400) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 68 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 7337.8968(7337896800) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-09-12/2024-09-12.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `74f0da1654d7cc30584fe398bd421458dbdbe3c2` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/bdf5cd9c-bd88-4f8b-ad48-42cb98a8432d) + +``` ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:147295178600, 18 decimals:1.472951786E-7, 6 decimals: 147295.1786" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-09-12/fees_2024-08-29_2024-09-12.json b/MaxiOps/feeDistributions/2024-09-12/fees_2024-08-29_2024-09-12.json new file mode 100644 index 000000000..d7655980a --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-12/fees_2024-08-29_2024-09-12.json @@ -0,0 +1,8 @@ +{ + "mainnet": 189446614082, + "arbitrum": 65266090393, + "polygon": 10437635607, + "base": 2366904211, + "gnosis": 21563122993, + "avalanche": 5509991668 +} diff --git a/MaxiOps/feeDistributions/2024-09-12/incentives_2024-08-29_2024-09-12.csv b/MaxiOps/feeDistributions/2024-09-12/incentives_2024-08-29_2024-09-12.csv new file mode 100644 index 000000000..9c1a3526c --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-12/incentives_2024-08-29_2024-09-12.csv @@ -0,0 +1,79 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,4903.75,3186.5447,1715.8318,5218.8178,3551.9110,1666.9068,316.4413,0,2024-09-12 08:30:08+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,316.53,205.6869,110.7545,0,0,0,-316.4413,0,2024-09-12 11:23:55+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-09 16:24:15+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,14813.52,9433.3005,5079.4695,14839.6336,10686.5049,4153.1288,326.8636,0,2024-09-12 08:04:47+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,12102.92,7707.1811,4150.0206,12124.2554,8838.4270,3285.8283,267.0537,0,2024-09-12 04:58:59+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,12084.38,7695.3748,4143.6633,12105.6826,0,12105.6826,266.6445,0,2024-09-10 05:25:23+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,7955.52,5066.1025,2727.9014,7969.5442,6010.7437,1958.8005,175.5403,0,2024-09-11 02:17:23+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,5952.93,3790.8463,2041.2249,5963.4240,4645.3847,1318.0394,131.3527,0,2024-09-11 08:14:11+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,4670.46,2974.1650,1601.4735,4678.6933,3771.0008,907.6924,103.0548,0,2024-09-09 23:10:23+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,4256.55,2710.5857,1459.5461,4264.0536,3488.7984,775.2550,93.9218,0,2024-09-12 08:13:11+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,4150.63,2643.1355,1423.2268,4157.9470,3416.5826,741.3644,91.5847,0,2024-09-12 10:00:35+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,3983.75,2536.8657,1366.0046,3990.7725,3302.8044,687.9683,87.9022,0,2024-09-10 23:12:59+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,3711.22,2363.3177,1272.5557,3717.7622,3116.9943,600.7680,81.8889,0,2024-09-10 23:50:35+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,3558.10,2265.8103,1220.0517,3564.3723,3012.5975,551.7745,78.5103,0,2024-09-10 01:49:23+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,3096.16,1971.6453,1061.6552,3101.6180,2697.6483,403.9695,68.3175,0,2024-09-08 13:43:59+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,2379.91,1515.5349,816.0572,2384.1052,2209.3117,174.7937,52.5131,0,2024-09-10 09:22:23+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,2201.68,1402.0374,754.9432,2205.5611,2087.7949,117.7663,48.5805,0,2024-09-10 09:58:35+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,1708.88,1088.2207,585.9650,1711.8924,1711.8923,0.0000,37.7068,0,2024-09-11 13:17:47+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,1411.98,899.1537,484.1597,1414.4690,1414.4691,0.0000,31.1556,0,2024-09-12 05:52:47+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,1238.91,788.9422,424.8150,1241.0942,1241.0942,0.0000,27.3370,0,2024-09-10 06:01:11+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,943.05,600.5375,323.3663,944.7124,944.7124,0.0000,20.8086,0,2024-08-26 16:44:59+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,931.16,592.9659,319.2893,932.8014,932.8015,0.0000,20.5462,0,2024-09-08 22:09:59+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,779.94,496.6685,267.4369,781.3149,0,781.3148,17.2096,0,2024-09-05 04:35:47+00:00 +0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687,mainnet,ShezUSD/sDAI,771.72,491.4340,264.6183,773.0804,0,773.0804,17.0282,0,2024-09-12 06:51:23+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,684.93,436.1658,234.8585,686.1374,0,686.1374,15.1131,0,2024-09-08 22:18:35+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,624.97,397.9830,214.2986,626.0717,0,626.0716,13.7901,0,2024-09-09 12:32:35+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,543.35,346.0072,186.3115,544.3079,0,544.3079,11.9892,0,2024-09-06 09:01:35+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,498.49,317.4401,170.9293,0,0,0,-488.3695,0,2024-09-11 08:55:23+00:00 +0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6,mainnet,cdcETH/wstETH,370.07,235.6618,126.8948,0,0,0,-362.5567,0,2024-09-10 06:23:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,335.42,213.5966,115.0136,0,0,0,-328.6102,0,2024-09-10 06:19:23+00:00 +0xdb1f2e1655477d08fb0992f82eede0053b8cd3820000000000000000000006ae,mainnet,shezETH/wstETH,321.94,205.0125,110.3913,0,0,0,-315.4038,0,2024-09-12 07:50:59+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,259.76,165.4161,89.0702,0,0,0,-254.4862,0,2024-09-10 05:44:35+00:00 +0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3,mainnet,ECLP-sUSDe-GYD,188.12,119.7955,64.5052,0,0,0,-184.3007,0,2024-09-12 08:48:11+00:00 +0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445,mainnet,B-staFiETH-WETH-Stable,112.14,71.4111,38.4522,0,0,0,-109.8633,0,2024-09-10 06:17:47+00:00 +0xabc7d08ef73fe3fb67efd900f4471cca788b089900000000000000000000069d,mainnet,B-baoETH-rETH-BPT,24.92,15.8691,8.5449,0,0,0,-24.4141,0,2024-09-12 05:26:35+00:00 +0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be,mainnet,ECLP-stdeUSD-deUSD,18.79,11.9655,6.4430,0,0,0,-18.4085,0,2024-09-11 11:38:23+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-03 10:12:35+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-26 01:17:35+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,4745.13,7008.0150,3773.5465,10781.5615,7337.8968,3443.6647,0.0000,0,2024-09-11 18:37:10+00:00 +0x71e1179c5e197fa551beec85ca2ef8693c61b85b0002000000000000000000a0,gnosis,ECLP-rETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-12 12:21:45+00:00 +0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c,gnosis,ECLP-wstETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-12 12:26:40+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,612.53,410.5507,221.0658,638.6559,0,638.6558,7.0394,0,2024-09-12 10:31:43+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,522.51,350.2144,188.5770,544.7963,0,544.7964,6.0048,0,2024-09-12 08:13:13+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,12.65,8.4787,4.5655,0,0,0,-13.0442,0,2024-09-08 15:23:35+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,4454.10,1644.2757,885.3792,2754.9959,1875.0414,879.9545,225.3410,0,2024-09-12 04:57:47+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,396.77,146.4716,78.8693,0,0,0,-225.3410,0,2024-09-06 17:04:14+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,28380.91,10977.5747,5911.0018,18745.1884,12965.1760,5780.0124,1856.6119,0,2024-09-12 12:28:51+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2814.95,1088.8067,586.2805,1859.2345,1472.6489,386.5859,184.1473,0,2024-09-12 09:28:46+00:00 +0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c,arbitrum,sUSX/USDC,2517.62,973.8011,524.3544,1662.8524,1338.9916,323.8607,164.6968,0,2024-09-09 00:48:47+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,2496.59,965.6668,519.9744,1648.9623,1329.5383,319.4240,163.3210,0,2024-09-12 11:22:06+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,2400.45,928.4804,499.9510,1585.4630,1286.3209,299.1422,157.0316,0,2024-09-12 08:11:54+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1744.67,674.8284,363.3692,1152.3296,991.5318,160.7981,114.1320,0,2024-09-12 02:01:03+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1698.76,657.0707,353.8073,1122.0069,970.8939,151.1127,111.1289,0,2024-09-11 23:34:03+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,1642.07,635.1433,342.0003,1084.5639,945.4105,139.1534,107.4203,0,2024-09-12 10:10:53+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,1562.04,604.1882,325.3321,1031.7053,909.4352,122.2702,102.1850,0,2024-09-11 15:25:36+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,1154.25,446.4573,240.4001,762.3657,0,762.3656,75.5083,0,2024-09-12 07:32:00+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,1038.60,401.7246,216.3132,685.9807,0,685.9804,67.9429,0,2024-09-12 11:46:48+00:00 +0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595,arbitrum,weETH/wETH,995.26,384.9609,207.2866,657.3552,0,657.3548,65.1076,0,2024-09-08 19:45:50+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,961.47,371.8911,200.2491,635.0375,0,635.0372,62.8973,0,2024-09-12 00:11:16+00:00 +0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594,arbitrum,ECLP-rETH-wstETH,711.94,275.3743,148.2785,0,0,0,-423.6528,0,2024-09-11 20:16:41+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,588.49,227.6246,122.5671,0,0,0,-350.1917,0,2024-09-12 07:31:09+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,564.41,218.3106,117.5519,0,0,0,-335.8624,0,2024-09-12 12:26:07+00:00 +0x59743f1812bb85db83e9e4ee061d124aaa64290000000000000000000000052b,arbitrum,sUSDe/sFRAX,527.61,204.0766,109.8874,0,0,0,-313.9639,0,2024-09-12 06:58:35+00:00 +0x69d9bc07a19caad9ae4ca40af18d5a688839a29900020000000000000000058e,arbitrum,ECLP-gUSDC-AUSDC,517.07,199.9997,107.6922,0,0,0,-307.6919,0,2024-09-12 08:51:41+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,380.98,147.3609,79.3482,0,0,0,-226.7091,0,2024-09-11 22:11:39+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,343.68,132.9335,71.5796,0,0,0,-204.5130,0,2024-09-12 12:18:29+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,310.04,119.9217,64.5732,0,0,0,-184.4949,0,2024-09-12 11:18:24+00:00 +0xb8cb384e65096386c1edaaf784e842c957fa3645000000000000000000000571,arbitrum,inETH/wstETH,308.85,119.4614,64.3254,0,0,0,-183.7868,0,2024-09-12 11:45:02+00:00 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,278.23,107.6178,57.9480,0,0,0,-165.5658,0,2024-09-11 13:47:20+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,273.16,105.6567,56.8921,0,0,0,-162.5488,0,2024-09-12 08:10:54+00:00 +0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f,arbitrum,ECLP-sUSDe-GYD,259.97,100.5549,54.1450,0,0,0,-154.6999,0,2024-09-12 11:36:58+00:00 +0x71c64ac8ec1da03f8a05c3cfeb6493e6dad54a6f000200000000000000000592,arbitrum,ECLP-wUSDM-USDC-rh,139.92,54.1203,29.1417,0,0,0,-83.2619,0,2024-09-12 09:19:27+00:00 +0x315dd595e82bdc0c194f3a38a08fde480d7e5d2100020000000000000000056a,arbitrum,ECLP-wUSDM-GYD,123.98,47.9548,25.8218,0,0,0,-73.7766,0,2024-09-11 17:28:14+00:00 +0x36c2f879f446c3b6533f9703745c0504f3a84885000200000000000000000591,arbitrum,ECLP-sFRAX-aFRAX,102.51,39.6503,21.3502,0,0,0,-61.0004,0,2024-09-12 05:49:20+00:00 +0xff38cc0ce0de4476c5a3e78675b48420a851035b000200000000000000000593,arbitrum,ECLP-GHO-GYD-rh,0.69,0.2669,0.1437,0,0,0,-0.4106,0,2024-09-12 07:40:38+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-12 11:50:53+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 diff --git a/MaxiOps/feeDistributions/2024-09-26/2024-09-26.csv b/MaxiOps/feeDistributions/2024-09-26/2024-09-26.csv new file mode 100644 index 000000000..6ad2b9f8a --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-26/2024-09-26.csv @@ -0,0 +1,150 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,3729.5896 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,1253.1767 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,596.4985 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,9919.0382 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,1653.3035 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,214.3817 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,4193.0991 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,1485.0770 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,aura,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,1091.6440 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0.0000 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,2549.1698 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,662.5964 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,aura,0 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,balancer,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,514.6607 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,7350.4829 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,3064.7600 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2624.0714 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,700.0707 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,aura,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,balancer,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,1449.1556 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,112.2439 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,2567.6093 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,671.8219 +0x146b6030E6d6a6398B918E9854652a71C9537180,aura,1018.4361 +0x146b6030E6d6a6398B918E9854652a71C9537180,balancer,0.0000 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,9585.6451 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4183.0427 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,3015.7843 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,896.0500 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,3460.4099 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,1118.5024 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,1638.9494 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,207.2003 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1313.6474 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,44.4474 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,3769.4295 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,1273.1090 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,3078.9922 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,927.6738 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1364.0112 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,69.6449 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,1015.7527 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,217.3704 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,976.6672 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,197.8153 +0x9eCc698c20219Ea45697d82ca89cD044aEEACF60,aura,0 +0x9eCc698c20219Ea45697d82ca89cD044aEEACF60,balancer,0 +0x00654F788342647A8Aa15f2eb2490e17d222aC85,aura,0 +0x00654F788342647A8Aa15f2eb2490e17d222aC85,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,aura,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,balancer,0 +0x86893f6829dA1296F739F50Ff9d3923453E9b48D,aura,0 +0x86893f6829dA1296F739F50Ff9d3923453E9b48D,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,945.7136 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,1780.4517 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,599.9598 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,691.3058 +0xb6d101874B975083C76598542946Fe047f059066,aura,905.4066 +0xb6d101874B975083C76598542946Fe047f059066,balancer,162.1627 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,aura,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,balancer,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,1333.1475 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,376.1674 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1739.8143 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,579.6283 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,1776.9052 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,598.1855 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,689.5800 +0x5a47e3f2E5009168Af11C4b0198605f694805779,aura,0 +0x5a47e3f2E5009168Af11C4b0198605f694805779,balancer,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,aura,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,aura,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,balancer,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,aura,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,3086.2593 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,1253.2735 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,3557.1887 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1779.7109 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,aura,0 +0x82bcaD0C8F51D88ec339141F0d8953Bc25cc3d8c,balancer,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,1145.5505 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,994.6750 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,2173.0637 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,92.5390 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,aura,0 +0xBf4116cEf22D4565A16696427Eaefc248F47Beb6,balancer,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,aura,0 +0x6d060a785530cB13795b3c5a43320c462811d43b,balancer,0 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,9840.4197 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,4923.2987 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,44379.8037 diff --git a/MaxiOps/feeDistributions/2024-09-26/2024-09-27.json b/MaxiOps/feeDistributions/2024-09-26/2024-09-27.json new file mode 100644 index 000000000..44367e037 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-26/2024-09-27.json @@ -0,0 +1,2867 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "126799439500" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "44379803700" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1253176700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "596498500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9919038200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "214381700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1485077000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "662596400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "514660700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3064760000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "700070700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "112243900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "671821900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4183042700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "896050000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1118502400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "207200300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "44447400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1273109000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "927673800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "69644900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "217370400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "197815300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "945713600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "599959800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "691305800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "162162700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "376167400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "579628300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "598185500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "689580000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1253273500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1779710900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1145550500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "994675000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "92539000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4923298700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3729589600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1653303500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4193099100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1091644000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2549169800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7350482900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2624071400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1449155600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2567609300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x05e9c22eb896dbfa38783b21e75280f0cfc5cef892fe25b945208c1472d0dbd1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1018436100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9585645100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3015784300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3460409900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1638949400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1313647400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3769429500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3078992200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1364011200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1015752700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "976667200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1780451700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "905406600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1333147500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1739814300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1776905200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3086259300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3557188700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2173063700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9840419700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "82419633305" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "1726626764260883218391" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-09-26/2024-09-27.report.txt b/MaxiOps/feeDistributions/2024-09-26/2024-09-27.report.txt new file mode 100644 index 000000000..cc2fc5f7a --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-26/2024-09-27.report.txt @@ -0,0 +1,175 @@ +FILENAME: `MaxiOps/feeDistributions/2024-09-26/2024-09-27.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `9ca1db10bcc80dc457a6469775c42f863fdd61be` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/cbb039cd-8c8f-40fb-996a-a6f154361c07) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 44379.8037 (RAW: 44379803700) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 82419.633305 (RAW: 82419633305) | N/A | 66 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 1726.6267642608832 (RAW: 1726626764260883218391) | N/A | 67 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-09-26/2024-09-27.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `9ca1db10bcc80dc457a6469775c42f863fdd61be` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c8a0a146-d65d-483e-8d97-3bee298dcda0) + +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 1253.1767(1253176700) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | sDAI GYD (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | 596.4985(596498500) | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 9919.0382(9919038200) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | DOLA sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 214.3817(214381700) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 1485.077(1485077000) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 662.5964(662596400) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | USDC-DAI-USDT sDAI | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | 514.6607(514660700) | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 3064.76(3064760000) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 700.0707(700070700) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | rsETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 112.2439(112243900) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 671.8219(671821900) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 4183.0427(4183042700) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 896.05(896050000) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 1118.5024(1118502400) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ETHx wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 207.2003(207200300) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | wstETH ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 44.4474(44447400) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 1273.109(1273109000) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 927.6738(927673800) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | RDNT-80% WETH-20% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 69.6449(69644900) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 217.3704(217370400) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 197.8153(197815300) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) wstETH WETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 945.7136(945713600) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | (A) wstETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 599.9598(599959800) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | (A) rsETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c | 691.3058(691305800) | 0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 162.1627(162162700) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 376.1674(376167400) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 579.6283(579628300) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 598.1855(598185500) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 689.58(689580000) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 31 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 1253.2735(1253273500) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) wPOL MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 32 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 1779.7109(1779710900) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (B) weETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 33 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | 1145.5505(1145550500) | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 34 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | 994.675(994675000) | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 35 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 92.539(92539000) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 36 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 4923.2987(4923298700) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 3729.5896(3729589600) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | ComposableStable DOLA/sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 1653.3035(1653303500) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 4193.0991(4193099100) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 1091.644(1091644000) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 2549.1698(2549169800) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 7350.4829(7350482900) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 2624.0714(2624071400) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 1449.1556(1449155600) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 2567.6093(2567609300) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | Gyroe sUSDe/GYD | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3 | 1018.4361(1018436100) | 0x05e9c22eb896dbfa38783b21e75280f0cfc5cef892fe25b945208c1472d0dbd1 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 9585.6451(9585645100) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 3015.7843(3015784300) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 3460.4099(3460409900) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable ETHx/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 1638.9494(1638949400) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 1313.6474(1313647400) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 3769.4295(3769429500) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 3078.9922(3078992200) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 1364.0112(1364011200) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 1015.7527(1015752700) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | a-ComposableStable rETH/cbETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 976.6672(976667200) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | a-ComposableStable wstETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 1780.4517(1780451700) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | a-ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 905.4066(905406600) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 1333.1475(1333147500) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 60 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1739.8143(1739814300) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 61 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 1776.9052(1776905200) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 62 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 3086.2593(3086259300) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable wPOL/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 63 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 3557.1887(3557188700) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 64 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 2173.0637(2173063700) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 65 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 9840.4197(9840419700) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-09-26/2024-09-27.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `9ca1db10bcc80dc457a6469775c42f863fdd61be` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1ea2f721-42a0-45f9-a3ce-cc1e85e1c77f) + +``` ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:126799439500, 18 decimals:1.267994395E-7, 6 decimals: 126799.4395" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-09-26/fees_2024-09-12_2024-09-26.json b/MaxiOps/feeDistributions/2024-09-26/fees_2024-09-12_2024-09-26.json new file mode 100644 index 000000000..2a9787f5e --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-26/fees_2024-09-12_2024-09-26.json @@ -0,0 +1,8 @@ +{ + "mainnet": 166734852326, + "arbitrum": 37851131836, + "polygon": 10673799185, + "base": 2291101007, + "gnosis": 29527436869, + "avalanche": 6520555281 +} diff --git a/MaxiOps/feeDistributions/2024-09-26/incentives_2024-09-12_2024-09-26.csv b/MaxiOps/feeDistributions/2024-09-26/incentives_2024-09-12_2024-09-26.csv new file mode 100644 index 000000000..2180f1e91 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-09-26/incentives_2024-09-12_2024-09-26.csv @@ -0,0 +1,75 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,3914.90,3234.1767,1741.4798,5336.8996,3557.1887,1779.7109,361.2432,0,2024-09-27 00:38:55+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,284.23,234.8081,126.4351,0,0,0,-361.2432,0,2024-09-27 01:48:39+00:00 +0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7,polygon,ECLP-WMATIC-MATICX,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-23 16:59:44+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,14039.94,8822.7408,4750.7066,13768.6877,9585.6451,4183.0427,195.2403,0,2024-09-24 13:57:11+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,10620.43,6673.9104,3593.6440,10415.2427,7350.4829,3064.7600,147.6883,0,2024-09-26 11:01:47+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,10114.45,6355.9510,3422.4352,9919.0384,0,9919.0382,140.6522,0,2024-09-25 20:42:35+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,5790.04,3638.4787,1959.1808,5678.1761,4193.0991,1485.0770,80.5166,0,2024-09-27 06:52:11+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,5141.88,3231.1730,1739.8624,5042.5386,3769.4295,1273.1090,71.5033,0,2024-09-27 07:55:11+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,5080.93,3192.8718,1719.2387,4982.7662,3729.5896,1253.1767,70.6557,0,2024-09-26 01:56:35+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,4669.12,2934.0891,1579.8942,4578.9124,3460.4099,1118.5024,64.9291,0,2024-09-27 07:30:59+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,4085.60,2567.4034,1382.4480,4006.6660,3078.9922,927.6738,56.8146,0,2024-09-24 10:33:59+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,3988.90,2506.6368,1349.7275,3911.8343,3015.7843,896.0500,55.4699,0,2024-09-26 20:55:35+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,3389.63,2130.0538,1146.9520,3324.1422,2624.0714,700.0707,47.1364,0,2024-09-26 23:24:23+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,3303.25,2075.7723,1117.7235,3239.4312,2567.6093,671.8219,45.9353,0,2024-09-26 16:31:59+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,3275.04,2058.0451,1108.1781,3211.7661,2549.1698,662.5964,45.5429,0,2024-09-16 16:14:47+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1904.48,1196.7810,644.4205,1867.6853,1653.3035,214.3817,26.4838,0,2024-09-27 03:18:23+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,1882.52,1182.9813,636.9899,1846.1498,1638.9494,207.2003,26.1786,0,2024-09-27 05:10:23+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,1592.16,1000.5182,538.7406,1561.3993,1449.1556,112.2439,22.1406,0,2024-09-23 00:45:59+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,1461.90,918.6624,494.6644,1433.6560,1364.0112,69.6449,20.3292,0,2024-09-25 07:38:59+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,1384.85,870.2439,468.5929,1358.0945,1313.6474,44.4474,19.2577,0,2024-08-26 16:44:59+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,1113.15,699.5068,376.6575,1091.6440,1091.6440,0.0000,15.4796,0,2024-09-25 17:08:59+00:00 +0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3,mainnet,ECLP-sUSDe-GYD,1038.50,652.5965,351.3981,1018.4362,1018.4361,0.0000,14.4415,0,2024-09-26 08:41:35+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,608.25,382.2261,205.8141,596.4985,0,596.4985,8.4583,0,2024-09-26 18:26:35+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,524.80,329.7859,177.5770,514.6608,0,514.6607,7.2979,0,2024-09-27 08:22:59+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,495.66,311.4742,167.7169,0,0,0,-479.1911,0,2024-09-23 02:20:23+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,447.75,281.3675,151.5056,0,0,0,-432.8730,0,2024-09-18 22:13:59+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,143.07,89.9056,48.4107,0,0,0,-138.3163,0,2024-09-26 05:48:23+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,124.39,78.1671,42.0900,0,0,0,-120.2570,0,2024-09-25 18:58:59+00:00 +0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be,mainnet,ECLP-stdeUSD-deUSD,11.91,7.4843,4.0300,0,0,0,-11.5143,0,2024-09-25 02:47:23+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-03 10:12:35+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-10 05:44:35+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-15 17:50:47+00:00 +0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6,mainnet,cdcETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-10 06:23:47+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-10 06:19:23+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-27 04:00:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,5160.24,9596.4170,5167.3015,14763.7184,9840.4197,4923.2987,0.0000,0,2024-09-26 23:06:00+00:00 +0x71e1179c5e197fa551beec85ca2ef8693c61b85b0002000000000000000000a0,gnosis,ECLP-rETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-27 09:40:30+00:00 +0x8dd4df4ce580b9644437f3375e54f1ab0980822800020000000000000000009c,gnosis,ECLP-wstETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-27 09:48:25+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,873.91,456.0953,245.5898,1145.5505,0,1145.5505,443.8655,0,2024-09-26 22:00:11+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,537.51,280.5275,151.0533,0,0,0,-431.5807,0,2024-09-27 07:58:51+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,15.30,7.9851,4.2997,0,0,0,-12.2848,0,2024-09-27 07:19:51+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,4193.60,1472.6417,792.9609,2265.6027,2173.0637,92.5390,0,0,2024-09-26 20:12:54+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,1841.13,646.5387,348.1362,994.6750,0,994.6750,0,0,2024-09-25 16:38:01+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,6336.81,2361.8733,1271.7779,4339.5325,3086.2593,1253.2735,705.8812,0,2024-09-27 09:31:52+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,3476.00,1295.5843,697.6223,2380.4115,1780.4517,599.9598,387.2049,0,2024-09-27 08:15:34+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,3468.23,1292.6883,696.0629,2375.0903,1776.9052,598.1855,386.3391,0,2024-09-27 00:52:55+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,3386.97,1262.4008,679.7543,2319.4427,1739.8143,579.6283,377.2876,0,2024-09-26 14:49:42+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,2496.03,930.3272,500.9454,1709.3147,1333.1475,376.1674,278.0421,0,2024-09-27 09:06:50+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1800.67,671.1507,361.3888,1233.1230,1015.7527,217.3704,200.5835,0,2024-09-25 20:48:00+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,1715.04,639.2344,344.2032,1174.4823,976.6672,197.8153,191.0447,0,2024-09-24 18:12:10+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,1558.92,581.0450,312.8704,1067.5695,905.4066,162.1627,173.6542,0,2024-09-27 09:02:49+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,1380.98,514.7227,277.1584,945.7136,0,945.7136,153.8326,0,2024-09-27 00:10:49+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,1009.48,376.2562,202.5995,691.3054,0,691.3058,112.4497,0,2024-09-27 09:05:53+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1006.96,375.3169,202.0937,689.5797,0,689.5800,112.1691,0,2024-09-27 09:00:00+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,815.31,303.8846,163.6302,0,0,0,-467.5148,0,2024-09-26 15:41:46+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,615.02,229.2320,123.4326,0,0,0,-352.6645,0,2024-09-27 09:16:10+00:00 +0x59743f1812bb85db83e9e4ee061d124aaa64290000000000000000000000052b,arbitrum,sUSDe/sFRAX,607.47,226.4179,121.9173,0,0,0,-348.3352,0,2024-09-26 16:08:26+00:00 +0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f,arbitrum,ECLP-sUSDe-GYD,527.43,196.5852,105.8536,0,0,0,-302.4387,0,2024-09-27 04:59:49+00:00 +0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595,arbitrum,weETH/wETH,478.96,178.5193,96.1258,0,0,0,-274.6451,0,2024-09-24 08:07:00+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,460.03,171.4637,92.3266,0,0,0,-263.7902,0,2024-09-26 17:08:08+00:00 +0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594,arbitrum,ECLP-rETH-wstETH,405.66,151.1987,81.4147,0,0,0,-232.6134,0,2024-09-26 07:30:45+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,356.27,132.7899,71.5023,0,0,0,-204.2922,0,2024-09-27 09:10:31+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,321.65,119.8863,64.5541,0,0,0,-184.4404,0,2024-09-27 07:44:26+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,267.23,99.6027,53.6322,0,0,0,-153.2349,0,2024-09-24 19:37:34+00:00 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,178.09,66.3782,35.7421,0,0,0,-102.1203,0,2024-09-25 16:17:11+00:00 +0x69d9bc07a19caad9ae4ca40af18d5a688839a29900020000000000000000058e,arbitrum,ECLP-gUSDC-AUSDC,119.21,44.4323,23.9251,0,0,0,-68.3574,0,2024-09-21 08:07:11+00:00 +0x315dd595e82bdc0c194f3a38a08fde480d7e5d2100020000000000000000056a,arbitrum,ECLP-wUSDM-GYD,104.60,38.9868,20.9929,0,0,0,-59.9797,0,2024-09-27 00:41:25+00:00 +0x36c2f879f446c3b6533f9703745c0504f3a84885000200000000000000000591,arbitrum,ECLP-sFRAX-aFRAX,98.68,36.7803,19.8048,0,0,0,-56.5850,0,2024-09-27 08:58:30+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,13.04,4.8603,2.6171,0,0,0,-7.4774,0,2024-09-25 05:13:27+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-27 03:40:30+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-27 05:35:34+00:00 +0xff38cc0ce0de4476c5a3e78675b48420a851035b000200000000000000000593,arbitrum,ECLP-GHO-GYD-rh,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-27 08:33:23+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-01-02 18:27:12+00:00 diff --git a/MaxiOps/feeDistributions/2024-10-10/2024-10-10.csv b/MaxiOps/feeDistributions/2024-10-10/2024-10-10.csv new file mode 100644 index 000000000..68e8fe18d --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-10/2024-10-10.csv @@ -0,0 +1,138 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,4627.0141 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,1400.2743 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,857.5501 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,15046.3274 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,1132.2407 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,0.0000 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,8775.6172 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,3431.8685 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,aura,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,3535.5519 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,865.7791 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,aura,0 +0x4B14d90f76FCF4D69CbCCdf87643E5DD7815D21A,balancer,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,960.1369 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0.0000 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,7348.9569 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,2733.2251 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2687.3282 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,450.3993 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,aura,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,balancer,718.5160 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,1575.7018 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,0.0000 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,4015.9313 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,1101.0237 +0x146b6030E6d6a6398B918E9854652a71C9537180,aura,1162.0654 +0x146b6030E6d6a6398B918E9854652a71C9537180,balancer,0.0000 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,10078.9391 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4070.1127 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,3058.0102 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,631.9243 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A,aura,0 +0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,8254.0779 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,3176.4679 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,1473.8766 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0.0000 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,689.6187 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1302.2473 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,0.0000 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,1310.3163 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0.0000 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,aura,0 +0x4D4264aebf65Bb1727bb5438E0b2Aaf86186DA50,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,2177.3479 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,200.6590 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,3020.1477 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,613.3828 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,2301.3975 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,261.4067 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1430.6850 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,0.0000 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,1210.6369 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,0.0000 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,0 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,929.9489 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,aura,0 +0xB66E8D615F8109cA52D47D9cB65Fc4edcF9c1342,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,aura,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,2468.2640 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,605.9106 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,aura,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,balancer,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,0 +0xb6d101874B975083C76598542946Fe047f059066,balancer,1013.9830 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,aura,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,balancer,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,1349.7660 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,58.1758 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1725.4654 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,242.1579 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,1661.2823 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,210.7273 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,671.4332 +0x5a47e3f2E5009168Af11C4b0198605f694805779,aura,0 +0x5a47e3f2E5009168Af11C4b0198605f694805779,balancer,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,aura,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,aura,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,balancer,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,aura,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,3427.5430 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,1075.6750 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,1001.5071 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,2499.2512 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1223.8975 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,0 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,0 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,772.0160 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1750.2780 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,857.1210 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,7385.3244 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3616.6350 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,49781.5933 diff --git a/MaxiOps/feeDistributions/2024-10-10/2024-10-10.json b/MaxiOps/feeDistributions/2024-10-10/2024-10-10.json new file mode 100644 index 000000000..1e6a8dfa1 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-10/2024-10-10.json @@ -0,0 +1,2609 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "142233125001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "49781593300" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1400274300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "857550100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15046327400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3431868500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "865779100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2733225100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "450399300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x496571a2859ae746cfca27996c48273736c3efae0cfbd08887654cb12f0ea0c6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "718516000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1101023700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4070112700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "631924300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3176467900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5578b5cfceb511af5d1ac11aacd75e89c6122939b7688697f22492fd8e40408c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "689618700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "200659000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "613382800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "261406700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "929948900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "605910600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1013983000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "58175800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "242157900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "210727300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "671433200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1075675000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xdfe39737dd2da0601ae3d3a01076cb285e512c2781cb90c39b0d83f8e8cbb324", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1001507100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1223897500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "772016000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "857121000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3616635000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4627014100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1132240700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8775617200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3535551900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "960136900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7348956900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2687328200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1575701800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4015931300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x05e9c22eb896dbfa38783b21e75280f0cfc5cef892fe25b945208c1472d0dbd1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1162065400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10078939100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3058010200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8254077900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1473876600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1302247300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1310316300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2177347900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3020147700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2301397500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1430685000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1210636900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2468264000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1349766000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1725465400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1661282300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3427543000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2499251200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1750278000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7385324400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "92451530418" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "5051267982013469099459" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-10-10/2024-10-10.report.txt b/MaxiOps/feeDistributions/2024-10-10/2024-10-10.report.txt new file mode 100644 index 000000000..6d86d51c0 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-10/2024-10-10.report.txt @@ -0,0 +1,163 @@ +FILENAME: `MaxiOps/feeDistributions/2024-10-10/2024-10-10.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `3ac69e92f59548cb11f709e0d13b9829db5e85c0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8323beda-4669-45ea-81f0-a0e60b02777f) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 49781.5933 (RAW: 49781593300) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 92451.530418 (RAW: 92451530418) | N/A | 60 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 5051.267982013469 (RAW: 5051267982013469099459) | N/A | 61 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-10-10/2024-10-10.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `3ac69e92f59548cb11f709e0d13b9829db5e85c0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d38da8a2-4d11-4688-8513-52ffb3f6ec32) + +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 1400.2743(1400274300) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | sDAI GYD (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | 857.5501(857550100) | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 15046.3274(15046327400) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 3431.8685(3431868500) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 865.7791(865779100) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 2733.2251(2733225100) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 450.3993(450399300) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | wstETH CDCETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6 | 718.516(718516000) | 0x496571a2859ae746cfca27996c48273736c3efae0cfbd08887654cb12f0ea0c6 | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 1101.0237(1101023700) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 4070.1127(4070112700) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 631.9243(631924300) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 3176.4679(3176467900) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | WETH uniETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e | 689.6187(689618700) | 0x5578b5cfceb511af5d1ac11aacd75e89c6122939b7688697f22492fd8e40408c | | | +| depositBribe | WETH-20% ALCX-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 200.659(200659000) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 613.3828(613382800) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 261.4067(261406700) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 929.9489(929948900) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) wstETH ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 605.9106(605910600) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 1013.983(1013983000) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 58.1758(58175800) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 242.1579(242157900) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 210.7273(210727300) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 671.4332(671433200) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 1075.675(1075675000) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (A) ANKR-50% ankrETH-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4 | 1001.5071(1001507100) | 0xdfe39737dd2da0601ae3d3a01076cb285e512c2781cb90c39b0d83f8e8cbb324 | | | +| depositBribe | (P) wPOL MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 1223.8975(1223897500) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 772.016(772016000) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 857.121(857121000) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 3616.635(3616635000) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 31 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 4627.0141(4627014100) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | ComposableStable DOLA/sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 32 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 1132.2407(1132240700) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 33 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 8775.6172(8775617200) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 34 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 3535.5519(3535551900) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable USDC-DAI-USDT/sDAI | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 35 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | 960.1369(960136900) | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 36 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 7348.9569(7348956900) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 2687.3282(2687328200) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 1575.7018(1575701800) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 4015.9313(4015931300) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | Gyroe sUSDe/GYD | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3 | 1162.0654(1162065400) | 0x05e9c22eb896dbfa38783b21e75280f0cfc5cef892fe25b945208c1472d0dbd1 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 10078.9391(10078939100) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 3058.0102(3058010200) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 8254.0779(8254077900) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable ETHx/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 1473.8766(1473876600) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 1302.2473(1302247300) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | Gyroe WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de | 1310.3163(1310316300) | 0xe433dcc60ff593a33effc72b74b927bd050f80bff0ce1902e0298036f87eeb30 | | | +| depositBribe | 80/20 ALCX/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 2177.3479(2177347900) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 3020.1477(3020147700) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 2301.3975(2301397500) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 1430.685(1430685000) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 1210.6369(1210636900) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | a-ComposableStable wstETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 2468.264(2468264000) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 1349.766(1349766000) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1725.4654(1725465400) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 1661.2823(1661282300) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 3427.543(3427543000) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable wPOL/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 2499.2512(2499251200) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 1750.278(1750278000) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 7385.3244(7385324400) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-10-10/2024-10-10.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `3ac69e92f59548cb11f709e0d13b9829db5e85c0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6db66c58-4683-4321-a47d-f9a8239b65b9) + +``` ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:142233125001, 18 decimals:1.42233125001E-7, 6 decimals: 142233.125001" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-10-10/fees_2024-09-26_2024-10-10.json b/MaxiOps/feeDistributions/2024-10-10/fees_2024-09-26_2024-10-10.json new file mode 100644 index 000000000..a7f61d4a4 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-10/fees_2024-09-26_2024-10-10.json @@ -0,0 +1,8 @@ +{ + "mainnet": 212952250747, + "arbitrum": 35304951855, + "polygon": 7446297356, + "base": 1544031849, + "gnosis": 22003918893, + "avalanche": 5214798019 +} diff --git a/MaxiOps/feeDistributions/2024-10-10/incentives_2024-09-26_2024-10-10.csv b/MaxiOps/feeDistributions/2024-10-10/incentives_2024-09-26_2024-10-10.csv new file mode 100644 index 000000000..89955f389 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-10/incentives_2024-09-26_2024-10-10.csv @@ -0,0 +1,69 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,3631.99,2300.9144,1238.9539,3723.1487,2499.2512,1223.8975,183.2803,0,2024-10-10 13:15:29+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,188.05,119.1322,64.1481,0,0,0,-183.2803,0,2024-10-10 03:40:29+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,13631.44,9717.0111,5232.2367,15046.3276,0,15046.3274,97.0798,0,2024-10-10 08:09:23+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,12818.54,9137.5449,4920.2165,14149.0518,10078.9391,4070.1127,91.2904,0,2024-10-10 06:17:23+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,11059.55,7883.6696,4245.0529,12207.4858,8775.6172,3431.8685,78.7633,0,2024-10-06 22:36:59+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,10355.67,7381.9171,3974.8784,11430.5459,8254.0779,3176.4679,73.7504,0,2024-10-02 12:35:35+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,9134.10,6511.1353,3505.9959,10082.1821,7348.9569,2733.2251,65.0508,0,2024-10-09 17:46:23+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,5460.51,3892.4601,2095.9400,6027.2886,4627.0141,1400.2743,38.8885,0,2024-10-10 15:26:35+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,4635.78,3304.5610,1779.3790,5116.9550,4015.9313,1101.0237,33.0149,0,2024-10-10 15:33:23+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,3987.45,2842.4067,1530.5267,4401.3309,3535.5519,865.7791,28.3976,0,2024-10-09 04:21:59+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,3342.95,2382.9824,1283.1444,3689.9345,3058.0102,631.9243,23.8077,0,2024-10-09 13:44:23+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,3291.85,2346.5564,1263.5304,3633.5304,3020.1477,613.3828,23.4436,0,2024-10-10 07:28:35+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,2842.67,2026.3637,1091.1189,3137.7275,2687.3282,450.3993,20.2448,0,2024-10-08 21:04:35+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,2321.81,1655.0748,891.1941,2562.8044,2301.3975,261.4067,16.5354,0,2024-10-06 22:34:47+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,2154.39,1535.7315,826.9323,2378.0068,2177.3479,200.6590,15.3430,0,2024-10-06 22:35:47+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,1427.53,1017.5979,547.9373,1575.7018,1575.7018,0.0000,10.1666,0,2024-10-10 04:34:23+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,1335.28,951.8386,512.5285,1473.8767,1473.8766,0.0000,9.5097,0,2024-10-03 05:29:23+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,1296.15,923.9452,497.5090,1430.6851,1430.6850,0.0000,9.2309,0,2024-10-10 08:48:59+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,1187.10,846.2102,455.6517,1310.3160,1310.3163,0.0000,8.4541,0,2024-10-07 08:34:23+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,1179.79,840.9994,452.8458,1302.2473,1302.2473,0.0000,8.4021,0,2024-10-06 20:35:11+00:00 +0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3,mainnet,ECLP-sUSDe-GYD,1052.79,750.4689,404.0986,1162.0653,1162.0654,0.0000,7.4977,0,2024-10-09 16:12:11+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1025.77,731.2080,393.7274,1132.2407,1132.2407,0.0000,7.3053,0,2024-10-09 00:18:11+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,869.85,620.0623,333.8797,960.1369,960.1369,0.0000,6.1949,0,2024-09-30 06:56:35+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,776.91,553.8111,298.2060,857.5500,0,857.5501,5.5329,0,2024-10-08 10:48:59+00:00 +0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6,mainnet,cdcETH/wstETH,650.95,464.0220,249.8580,718.5159,0,718.5160,4.6359,0,2024-10-08 14:18:59+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,624.77,445.3599,239.8092,689.6186,0,689.6187,4.4495,0,2024-10-08 05:46:59+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,312.18,222.5338,119.8259,0,0,0,-342.3597,0,2024-09-28 10:13:23+00:00 +0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0,mainnet,ECLP-wstETH-cbETH,184.19,131.2977,70.6987,0,0,0,-201.9964,0,2024-10-08 02:24:47+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,63.46,45.2367,24.3582,0,0,0,-69.5949,0,2024-10-03 05:58:59+00:00 +0xb757ddbc72155c0a41058e148969ba29ba071a2e0000000000000000000006ce,mainnet,balETH/wstETH,36.05,25.6978,13.8373,0,0,0,-39.5351,0,2024-10-10 08:01:23+00:00 +0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be,mainnet,ECLP-stdeUSD-deUSD,27.58,19.6601,10.5862,0,0,0,-30.2463,0,2024-10-09 23:20:35+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,2.97,2.1171,1.1400,0,0,0,-3.2571,0,2024-09-27 04:00:23+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-03 10:12:35+00:00 +0x47a4f5440ab097cf3ec7abeedf1afecc5749a4e200000000000000000000068d,mainnet,aETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-10 05:44:35+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,4603.96,7151.2736,3850.6858,11001.9594,7385.3244,3616.6350,0,0,2024-10-09 12:01:25+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,907.56,390.0104,210.0056,772.0160,0,772.0160,171.9999,0,2024-10-10 15:07:37+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,249.77,107.3350,57.7957,0,0,0,-165.1307,0,2024-10-10 15:12:37+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,10.39,4.4649,2.4042,0,0,0,-6.8692,0,2024-10-10 11:36:31+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,3970.99,1503.5535,809.6057,2607.3990,1750.2780,857.1210,294.2397,0,2024-10-09 04:31:13+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,505.12,191.2558,102.9839,0,0,0,-294.2397,0,2024-10-07 21:31:20+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,6432.16,2374.8660,1278.7740,4503.2178,3427.5430,1075.6750,849.5778,0,2024-10-10 15:23:25+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,4390.99,1621.2303,872.9702,3074.1747,2468.2640,605.9106,579.9742,0,2024-10-10 13:27:46+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2810.45,1037.6673,558.7439,1967.6232,1725.4654,242.1579,371.2120,0,2024-10-08 20:34:26+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,2673.88,987.2433,531.5925,1872.0094,1661.2823,210.7273,353.1736,0,2024-10-10 14:33:14+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,2011.03,742.5075,399.8117,1407.9418,1349.7660,58.1758,265.6226,0,2024-10-10 12:30:55+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1729.21,638.4546,343.7832,1210.6369,1210.6369,0.0000,228.3991,0,2024-10-09 13:15:48+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,1448.32,534.7451,287.9397,1013.9829,0,1013.9830,191.2982,0,2024-10-10 14:00:59+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,1430.50,528.1656,284.3969,1001.5070,0,1001.5071,188.9445,0,2024-10-02 23:13:03+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,1328.29,490.4279,264.0766,929.9487,0,929.9489,175.4442,0,2024-10-10 15:17:30+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,959.04,354.0943,190.6662,671.4334,0,671.4332,126.6729,0,2024-10-10 02:37:10+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,850.14,313.8866,169.0158,0,0,0,-482.9024,0,2024-10-09 17:11:25+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,752.30,277.7623,149.5643,0,0,0,-427.3266,0,2024-10-10 12:54:14+00:00 +0x59743f1812bb85db83e9e4ee061d124aaa64290000000000000000000000052b,arbitrum,sUSDe/sFRAX,706.78,260.9555,140.5145,0,0,0,-401.4701,0,2024-10-10 14:19:31+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,589.35,217.5983,117.1683,0,0,0,-334.7667,0,2024-10-10 09:10:12+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,487.73,180.0784,96.9653,0,0,0,-277.0438,0,2024-10-06 23:07:46+00:00 +0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c,arbitrum,sUSX/USDC,437.89,161.6766,87.0567,0,0,0,-248.7333,0,2024-10-10 07:32:18+00:00 +0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f,arbitrum,ECLP-sUSDe-GYD,349.66,129.1006,69.5157,0,0,0,-198.6163,0,2024-10-10 12:40:51+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,303.92,112.2126,60.4222,0,0,0,-172.6347,0,2024-10-10 07:33:16+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,269.68,99.5706,53.6149,0,0,0,-153.1855,0,2024-10-10 04:40:53+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,264.50,97.6580,52.5851,0,0,0,-150.2431,0,2024-10-10 15:09:40+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,260.07,96.0224,51.7044,0,0,0,-147.7268,0,2024-10-10 10:21:40+00:00 +0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594,arbitrum,ECLP-rETH-wstETH,209.09,77.1997,41.5691,0,0,0,-118.7687,0,2024-10-08 20:18:03+00:00 +0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595,arbitrum,weETH/wETH,205.23,75.7745,40.8017,0,0,0,-116.5762,0,2024-09-29 19:08:04+00:00 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,145.00,53.5365,28.8274,0,0,0,-82.3639,0,2024-09-29 17:37:02+00:00 +0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5,arbitrum,plsRDNT-Stable,21.53,7.9493,4.2804,0,0,0,-12.2296,0,2024-10-10 12:43:10+00:00 +0xff38cc0ce0de4476c5a3e78675b48420a851035b000200000000000000000593,arbitrum,ECLP-GHO-GYD-rh,10.09,3.7254,2.0060,0,0,0,-5.7314,0,2024-10-10 02:10:30+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-10 14:59:05+00:00 diff --git a/MaxiOps/feeDistributions/2024-10-24/2024-10-24.csv b/MaxiOps/feeDistributions/2024-10-24/2024-10-24.csv new file mode 100644 index 000000000..34316de18 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-24/2024-10-24.csv @@ -0,0 +1,146 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,4227.4297 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,1446.5659 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,556.4441 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,9273.0808 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,536.9394 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,5815.3690 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,2218.6018 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,1064.5975 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0.0000 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,aura,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,1055.7435 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0.0000 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,2620.5270 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,665.3101 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,591.1583 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,15930.2972 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,7136.3516 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,3026.8405 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,862.8546 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,aura,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,balancer,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,1124.2840 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,0.0000 +0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43,aura,0 +0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43,balancer,0 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,5466.1745 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,2048.8280 +0x146b6030E6d6a6398B918E9854652a71C9537180,aura,0 +0x146b6030E6d6a6398B918E9854652a71C9537180,balancer,0 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,11126.8712 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4800.9868 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,2256.3207 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,488.2376 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A,aura,0 +0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,2088.5693 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,406.6791 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,1763.4992 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,248.6342 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1336.8508 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,41.2030 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,3563.0006 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,1123.5289 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,5444.2322 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,2038.1597 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,1825.4844 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,278.7705 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1220.3066 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,0.0000 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,aura,0 +0xc6b65bc6bF4a5fF4D90fDf7f568cBF8C99419DA1,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,1038.6802 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,0.0000 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,0 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,813.0601 +0x00654F788342647A8Aa15f2eb2490e17d222aC85,aura,0 +0x00654F788342647A8Aa15f2eb2490e17d222aC85,balancer,0 +0xD558C611B69a223767788B638717E868D8947Fd0,aura,0 +0xD558C611B69a223767788B638717E868D8947Fd0,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,aura,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,968.0548 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,1110.5054 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,0.0000 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,aura,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,balancer,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,0 +0xb6d101874B975083C76598542946Fe047f059066,balancer,908.5409 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,aura,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,balancer,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,2125.4027 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,475.9708 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1649.9328 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,244.8033 +0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C,aura,0 +0xBE0FC6A0cc4eeeB168dfbDA75523c43dFE7D1F9C,balancer,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,aura,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,balancer,0 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,2594.8638 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,704.2168 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,654.5820 +0x5a47e3f2E5009168Af11C4b0198605f694805779,aura,0 +0x5a47e3f2E5009168Af11C4b0198605f694805779,balancer,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,aura,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,aura,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,balancer,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,aura,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,4552.9626 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,1656.2196 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,3648.4817 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1773.8456 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,518.8323 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1361.9697 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,143.3401 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1084.2173 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,527.1328 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,8020.8190 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,3899.6205 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,51168.1751 diff --git a/MaxiOps/feeDistributions/2024-10-24/2024-10-24.json b/MaxiOps/feeDistributions/2024-10-24/2024-10-24.json new file mode 100644 index 000000000..8ad08dea4 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-24/2024-10-24.json @@ -0,0 +1,2652 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "146194787101" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "51168175100" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1446565900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "556444100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9273080800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "536939400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2218601800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "665310100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "591158300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7136351600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "862854600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2048828000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4800986800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "488237600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "406679100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "248634200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "41203000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1123528900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2038159700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "278770500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "813060100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "968054800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "908540900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "475970800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "244803300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "704216800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "654582000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1656219600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1773845600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "518832300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "143340100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "527132800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3899620500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4227429699", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5815369000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe4ea1699072d6b6a3b7c7e80706b196ead8584eb63a672d97387a07d795d933c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1064597500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1055743500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2620527000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15930297200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3026840500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1124284000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5466174500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11126871200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2256320700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2088569300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1763499200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1336850800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3563000600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5444232200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1825484400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1220306600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1038680200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1110505400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2125402700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1649932800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2594863800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4552962600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3648481700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1361969700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1084217300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8020819000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "95026610795" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "1630063392172434127722" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-10-24/2024-10-24.report.txt b/MaxiOps/feeDistributions/2024-10-24/2024-10-24.report.txt new file mode 100644 index 000000000..bdc0579b4 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-24/2024-10-24.report.txt @@ -0,0 +1,165 @@ +FILENAME: `MaxiOps/feeDistributions/2024-10-24/2024-10-24.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `55e90de20a746d5e724008f81e86459ae1efa911` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/771ac7f0-a778-4c75-b116-8173b31c634e) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 51168.1751 (RAW: 51168175100) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 95026.610795 (RAW: 95026610795) | N/A | 61 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 1630.063392172434 (RAW: 1630063392172434127722) | N/A | 62 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-10-24/2024-10-24.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `55e90de20a746d5e724008f81e86459ae1efa911` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6a06a168-7ce3-4b89-beaa-81aabfcb0914) + +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 1446.5659(1446565900) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | sDAI GYD (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b | 556.4441(556444100) | 0x96bed1ad24c620d6b99eaad950ad54f9cb871f2450cf759838a8e4e2f757ac61 | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 9273.0808(9273080800) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | DOLA sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 536.9394(536939400) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 2218.6018(2218601800) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 665.3101(665310100) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | USDC-DAI-USDT sDAI | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a | 591.1583(591158300) | 0xec07bcbfd9d7138d9bac720335e00213d49230fad03f64c3bd0d454f1a1b7b27 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 7136.3516(7136351600) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 862.8546(862854600) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 2048.828(2048828000) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 4800.9868(4800986800) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 488.2376(488237600) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 406.6791(406679100) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ETHx wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 248.6342(248634200) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | wstETH ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 41.203(41203000) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | WETH-20% ALCX-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 1123.5289(1123528900) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 2038.1597(2038159700) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 278.7705(278770500) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 813.0601(813060100) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) wstETH WETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 968.0548(968054800) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 908.5409(908540900) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 475.9708(475970800) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 244.8033(244803300) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 704.2168(704216800) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 654.582(654582000) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 1656.2196(1656219600) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) wPOL MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 1773.8456(1773845600) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (B) weETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118 | 518.8323(518832300) | 0x1fa5e76578ca2d9cfce1e94a5a1e989f5c48ab1614e760a291e9f8d9e8c335bf | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 143.3401(143340100) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 31 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 527.1328(527132800) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 32 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 3899.6205(3899620500) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 33 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 4227.429699(4227429699) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 34 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 5815.369(5815369000) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable qETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 35 | +| | 0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5 | 1064.5975(1064597500) | 0xe4ea1699072d6b6a3b7c7e80706b196ead8584eb63a672d97387a07d795d933c | | | +| depositBribe | ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 36 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 1055.7435(1055743500) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 2620.527(2620527000) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 15930.2972(15930297200) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 3026.8405(3026840500) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 1124.284(1124284000) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 5466.1745(5466174500) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 11126.8712(11126871200) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 2256.3207(2256320700) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 2088.5693(2088569300) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable ETHx/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 1763.4992(1763499200) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 1336.8508(1336850800) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | 80/20 ALCX/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 3563.0006(3563000600) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 5444.2322(5444232200) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 1825.4844(1825484400) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 1220.3066(1220306600) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable sFRAX/4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 1038.6802(1038680200) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | a-ComposableStable wstETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c | 1110.5054(1110505400) | 0x235c6e66a308f166c04afe3e641b54bedb50923b93d9335f36db3bdf1d8cb23b | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 2125.4027(2125402700) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1649.9328(1649932800) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 2594.8638(2594863800) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 4552.9626(4552962600) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable wPOL/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 3648.4817(3648481700) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 1361.9697(1361969700) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 1084.2173(1084217300) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 60 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 8020.819(8020819000) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-10-24/2024-10-24.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `55e90de20a746d5e724008f81e86459ae1efa911` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e00e18f3-1c5f-4a1d-8459-30f8d2ec2ae7) + +``` ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:146194787101, 18 decimals:1.46194787101E-7, 6 decimals: 146194.787101" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-10-24/fees_2024-10-10_2024-10-24.json b/MaxiOps/feeDistributions/2024-10-24/fees_2024-10-10_2024-10-24.json new file mode 100644 index 000000000..da63f850d --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-24/fees_2024-10-10_2024-10-24.json @@ -0,0 +1,8 @@ +{ + "mainnet": 211437463228, + "arbitrum": 38995591916, + "polygon": 10844654531, + "base": 4048284069, + "gnosis": 23840879092, + "avalanche": 3222700159 +} diff --git a/MaxiOps/feeDistributions/2024-10-24/incentives_2024-10-10_2024-10-24.csv b/MaxiOps/feeDistributions/2024-10-24/incentives_2024-10-10_2024-10-24.csv new file mode 100644 index 000000000..440add84b --- /dev/null +++ b/MaxiOps/feeDistributions/2024-10-24/incentives_2024-10-10_2024-10-24.csv @@ -0,0 +1,73 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,2352.99,3367.7329,1813.3946,5422.3273,3648.4817,1773.8456,241.1998,0,2024-10-24 16:51:05+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,109.54,156.7799,84.4199,0,0,0,-241.1998,0,2024-10-24 18:25:34+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,21050.59,14832.7530,7986.8670,23066.6488,15930.2972,7136.3516,247.0289,0,2024-10-24 12:58:47+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,14535.74,10242.2327,5515.0484,15927.8581,11126.8712,4800.9868,170.5771,0,2024-10-24 19:36:23+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,8462.60,5962.9519,3210.8202,9273.0808,0,9273.0808,99.3087,0,2024-10-24 19:59:35+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,7331.79,5166.1559,2781.7763,8033.9707,5815.3690,2218.6018,86.0385,0,2024-10-24 02:06:47+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,6858.18,4832.4389,2602.0825,7515.0023,5466.1745,2048.8280,80.4809,0,2024-10-24 18:34:35+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,6828.42,4811.4693,2590.7911,7482.3919,5444.2322,2038.1597,80.1315,0,2024-10-24 14:07:35+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,5178.08,3648.5999,1964.6307,5673.9956,4227.4297,1446.5659,60.7649,0,2024-10-24 18:33:47+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,4276.92,3013.6209,1622.7189,4686.5295,3563.0006,1123.5289,50.1897,0,2024-10-23 10:23:59+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,3549.73,2501.2253,1346.8136,3889.6950,3026.8405,862.8546,41.6561,0,2024-10-24 12:53:11+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,2998.65,2112.9210,1137.7267,3285.8369,2620.5270,665.3101,35.1891,0,2024-10-13 17:10:23+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,2504.68,1764.8579,950.3081,2744.5584,2256.3207,488.2376,29.3924,0,2024-10-21 22:15:23+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,2277.16,1604.5418,863.9841,2495.2484,2088.5693,406.6791,26.7225,0,2024-10-24 11:01:59+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,1920.34,1353.1178,728.6019,2104.2548,1825.4844,278.7705,22.5351,0,2024-10-23 12:16:35+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,1836.27,1293.8801,696.7047,2012.1334,1763.4992,248.6342,21.5486,0,2024-10-23 17:31:59+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,1257.61,886.1423,477.1536,1378.0538,1336.8508,41.2030,14.7579,0,2024-10-24 13:11:35+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,1113.65,784.7046,422.5333,1220.3066,1220.3066,0.0000,13.0687,0,2024-10-23 07:13:11+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,1026.02,722.9584,389.2853,1124.2840,1124.2840,0.0000,12.0403,0,2024-10-24 20:31:47+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,971.55,684.5775,368.6187,1064.5972,1064.5975,0.0000,11.4010,0,2024-10-12 07:25:47+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,963.47,678.8842,365.5530,1055.7435,1055.7435,0.0000,11.3063,0,2024-10-20 01:55:47+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,539.49,380.1377,204.6895,591.1581,0,591.1583,6.3309,0,2024-10-22 05:41:47+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,507.81,357.8152,192.6697,556.4440,0,556.4441,5.9591,0,2024-10-23 10:19:47+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,490.01,345.2729,185.9162,536.9394,0,536.9394,5.7504,0,2024-10-24 02:30:11+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,410.88,289.5159,155.8932,0,0,0,-445.4092,0,2024-10-16 01:55:59+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,253.95,178.9393,96.3519,0,0,0,-275.2912,0,2024-10-22 05:40:47+00:00 +0xb757ddbc72155c0a41058e148969ba29ba071a2e0000000000000000000006ce,mainnet,balETH/wstETH,182.82,128.8194,69.3643,0,0,0,-198.1837,0,2024-10-24 18:52:47+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,143.77,101.3038,54.5482,0,0,0,-155.8520,0,2024-10-22 16:02:59+00:00 +0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be,mainnet,ECLP-stdeUSD-deUSD,32.11,22.6255,12.1830,0,0,0,-34.8084,0,2024-10-22 20:32:47+00:00 +0x8296057edb832feac03269e9fce8304ebcbabcaf00000000000000000000069c,mainnet,B-baoETH-wstETH-BPT,20.88,14.7126,7.9221,0,0,0,-22.6347,0,2024-10-21 21:03:47+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-15 17:50:47+00:00 +0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6,mainnet,cdcETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-08 14:18:59+00:00 +0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3,mainnet,ECLP-sUSDe-GYD,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-24 07:10:35+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672,mainnet,50KEP/50rsETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-09-27 04:00:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,4545.30,7748.2857,4172.1538,11920.4395,8020.8190,3899.6205,0,0,2024-10-24 19:15:55+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,931.94,970.7283,522.6998,1505.3098,1361.9697,143.3401,11.8817,0,2024-10-24 06:21:27+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,321.21,334.5791,180.1580,518.8323,0,518.8323,4.0952,0,2024-10-24 14:58:23+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,9.97,10.3850,5.5919,0,0,0,-15.9769,0,2024-10-24 06:31:47+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,3024.97,894.0791,481.4272,1611.3501,1084.2173,527.1328,235.8437,0,2024-10-24 20:37:31+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,518.66,153.2984,82.5453,0,0,0,-235.8437,0,2024-10-24 15:08:51+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,9108.19,3474.0226,1870.6276,6209.1822,4552.9626,1656.2196,864.5320,0,2024-10-24 20:36:40+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,4839.39,1845.8278,993.9073,3299.0807,2594.8638,704.2168,459.3456,0,2024-10-24 00:12:06+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,3815.93,1455.4623,783.7105,2601.3736,2125.4027,475.9708,362.2008,0,2024-10-24 14:45:35+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2779.37,1060.1002,570.8232,1894.7358,1649.9328,244.8033,263.8124,0,2024-10-24 18:20:03+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,1628.99,621.3252,334.5597,1110.5055,1110.5054,0.0000,154.6206,0,2024-10-24 14:36:35+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1523.63,581.1391,312.9210,1038.6800,1038.6802,0.0000,144.6199,0,2024-10-24 05:06:05+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,1420.03,541.6242,291.6438,968.0545,0,968.0548,134.7865,0,2024-10-24 09:11:12+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,1332.73,508.3265,273.7143,908.5411,0,908.5409,126.5004,0,2024-10-24 14:13:31+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,1192.67,454.9051,244.9489,813.0602,0,813.0601,113.2061,0,2024-10-21 21:19:18+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,960.20,366.2370,197.2046,654.5818,0,654.5820,91.1402,0,2024-10-24 12:01:01+00:00 +0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595,arbitrum,weETH/wETH,783.15,298.7071,160.8423,0,0,0,-459.5493,0,2024-10-22 12:06:28+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,619.82,236.4102,127.2978,0,0,0,-363.7079,0,2024-10-24 12:03:29+00:00 +0x59743f1812bb85db83e9e4ee061d124aaa64290000000000000000000000052b,arbitrum,sUSDe/sFRAX,471.82,179.9604,96.9017,0,0,0,-276.8621,0,2024-10-24 18:38:31+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,450.64,171.8820,92.5518,0,0,0,-264.4338,0,2024-10-24 17:33:57+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,450.51,171.8324,92.5251,0,0,0,-264.3575,0,2024-10-23 18:31:35+00:00 +0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c,arbitrum,sUSX/USDC,356.97,136.1546,73.3140,0,0,0,-209.4686,0,2024-10-24 12:14:28+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,269.52,102.7996,55.3536,0,0,0,-158.1533,0,2024-10-23 23:40:34+00:00 +0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594,arbitrum,ECLP-rETH-wstETH,255.87,97.5933,52.5502,0,0,0,-150.1435,0,2024-10-22 09:14:38+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,242.32,92.4251,49.7673,0,0,0,-142.1924,0,2024-10-23 21:41:14+00:00 +0x38161e9efb8de52d00a1eb0f773223fd28fdd7c20002000000000000000005a0,arbitrum,ECLP-GHO-USDe-rh,207.42,79.1136,42.5996,0,0,0,-121.7132,0,2024-10-24 19:27:05+00:00 +0xc757f12694f550d0985ad6e1019c4db4a803f1600002000000000000000004de,arbitrum,50wstETH/50sFRAX,147.19,56.1408,30.2297,0,0,0,-86.3705,0,2024-10-23 10:49:41+00:00 +0x36c2f879f446c3b6533f9703745c0504f3a84885000200000000000000000591,arbitrum,ECLP-sFRAX-aFRAX,122.43,46.6969,25.1445,0,0,0,-71.8414,0,2024-10-23 22:50:29+00:00 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,116.02,44.2521,23.8280,0,0,0,-68.0801,0,2024-10-23 21:11:25+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,44.16,16.8434,9.0695,0,0,0,-25.9129,0,2024-10-24 16:37:04+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,39.73,15.1537,8.1597,0,0,0,-23.3134,0,2024-10-24 12:48:33+00:00 +0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f,arbitrum,ECLP-sUSDe-GYD,32.08,12.2359,6.5885,0,0,0,-18.8244,0,2024-10-24 14:07:46+00:00 +0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d,arbitrum,2CLP-AUSDC-USDC,6.94,2.6470,1.4253,0,0,0,-4.0724,0,2024-10-24 15:42:13+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,5.60,2.1359,1.1501,0,0,0,-3.2861,0,2024-10-24 03:40:47+00:00 +0xff38cc0ce0de4476c5a3e78675b48420a851035b000200000000000000000593,arbitrum,ECLP-GHO-GYD-rh,4.23,1.6134,0.8688,0,0,0,-2.4821,0,2024-10-24 16:41:47+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-24 19:33:49+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-02 23:13:03+00:00 diff --git a/MaxiOps/feeDistributions/2024-11-07/2024-11-07.csv b/MaxiOps/feeDistributions/2024-11-07/2024-11-07.csv new file mode 100644 index 000000000..8a4786afa --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-07/2024-11-07.csv @@ -0,0 +1,142 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,6130.5856 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,1826.5605 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,0 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,15140.1710 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,1270.1497 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,0.0000 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,6263.9012 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,1890.2752 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,3797.2965 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,711.4258 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,11445.8603 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,4366.8576 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,3464.3347 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,552.2952 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,aura,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,balancer,658.7475 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,0 +0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43,aura,0 +0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43,balancer,0 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,3393.7715 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,518.5713 +0x146b6030E6d6a6398B918E9854652a71C9537180,aura,0 +0x146b6030E6d6a6398B918E9854652a71C9537180,balancer,0 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,11420.0453 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4354.5196 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,2003.8622 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,0.0000 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,aura,0 +0x70754AB20c63cc65Ea12206CF28342723d731aC6,balancer,0 +0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A,aura,0 +0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,3703.0849 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,666.3997 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,895.1757 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0.0000 +0xCda69C40176B98bB1773109d1fEa91e12F478451,aura,0 +0xCda69C40176B98bB1773109d1fEa91e12F478451,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,939.1801 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,0.0000 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,751.9806 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,3311.4884 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,479.2464 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,1571.8930 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,0.0000 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,1905.6397 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,0.0000 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,911.6641 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,0 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,653.9717 +0xD558C611B69a223767788B638717E868D8947Fd0,aura,0 +0xD558C611B69a223767788B638717E868D8947Fd0,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,aura,0 +0x4D82D6d68aBfC6B2C9A9fEd775cF24Dbf8b014bE,balancer,0 +0x82bc385C57447188de50Ba8237210cAaA43a0BB3,aura,0 +0x82bc385C57447188de50Ba8237210cAaA43a0BB3,balancer,0 +0x9E965252d1b294aF358a232933A65Bd30645c34C,aura,0 +0x9E965252d1b294aF358a232933A65Bd30645c34C,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,997.6485 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,aura,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,balancer,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,0 +0xb6d101874B975083C76598542946Fe047f059066,balancer,945.9117 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,aura,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,balancer,0 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,1110.8576 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,0.0000 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1687.5774 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,0.0000 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,aura,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,balancer,0 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,2769.8726 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,172.8920 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,0 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,1094.3891 +0x5a47e3f2E5009168Af11C4b0198605f694805779,aura,0 +0x5a47e3f2E5009168Af11C4b0198605f694805779,balancer,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,aura,0 +0x2aBd1863C84CdfEA63581D5b4BAb89B690B39DdF,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,aura,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,balancer,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,aura,0 +0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,4338.1830 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,922.4250 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,0 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,3090.3676 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,1476.9605 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,0 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1405.2198 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,671.5880 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,861.5091 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,411.7359 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,14732.2265 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,7040.8837 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,48555.2211 diff --git a/MaxiOps/feeDistributions/2024-11-07/2024-11-07.json b/MaxiOps/feeDistributions/2024-11-07/2024-11-07.json new file mode 100644 index 000000000..e8a9bb048 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-07/2024-11-07.json @@ -0,0 +1,2093 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "138729203001" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "48555221100" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1826560500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15140171000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1890275200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "711425800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4366857600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "552295200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x496571a2859ae746cfca27996c48273736c3efae0cfbd08887654cb12f0ea0c6", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "658747500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "518571299", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4354519600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "666399700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "751980600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "479246400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "911664100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "653971700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "997648500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "945911700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "172892000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1094389100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "922425000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1476960500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "671588000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "411735900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7040883700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6130585600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1270149700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6263901200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3797296500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11445860300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3464334700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3393771500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11420045300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2003862200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3703084900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "895175700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "939180100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3311488400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1571893000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1905639700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1110857600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1687577400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2769872600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4338183000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3090367600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1405219800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "861509100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "14732226500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "90173981219" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "1626841445347752961072" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-11-07/2024-11-07.report.txt b/MaxiOps/feeDistributions/2024-11-07/2024-11-07.report.txt new file mode 100644 index 000000000..4c5251ae0 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-07/2024-11-07.report.txt @@ -0,0 +1,139 @@ +FILENAME: `MaxiOps/feeDistributions/2024-11-07/2024-11-07.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `bce7cc2b461065078145ef2844f8408ae324b23f` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/341fdfd4-15fc-4e8c-bb49-72a2ef64b49f) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 48555.2211 (RAW: 48555221100) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 90173.981219 (RAW: 90173981219) | N/A | 48 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 1626.841445347753 (RAW: 1626841445347752961072) | N/A | 49 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-11-07/2024-11-07.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `bce7cc2b461065078145ef2844f8408ae324b23f` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/de0528bd-b460-440f-ac9e-8b0348fd8dda) + +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 1826.5605(1826560500) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 15140.171(15140171000) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 1890.2752(1890275200) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 711.4258(711425800) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 4366.8576(4366857600) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 552.2952(552295200) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | wstETH CDCETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6 | 658.7475(658747500) | 0x496571a2859ae746cfca27996c48273736c3efae0cfbd08887654cb12f0ea0c6 | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 518.571299(518571299) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 4354.5196(4354519600) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 666.3997(666399700) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | WETH-20% ALCX-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 751.9806(751980600) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 479.2464(479246400) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 911.6641(911664100) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 653.9717(653971700) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) wstETH WETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 997.6485(997648500) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 945.9117(945911700) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 172.892(172892000) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 1094.3891(1094389100) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 922.425(922425000) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) wPOL MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 1476.9605(1476960500) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 671.588(671588000) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 411.7359(411735900) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 7040.8837(7040883700) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 25 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 6130.5856(6130585600) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | ComposableStable DOLA/sDOLA | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 26 | +| | 0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b | 1270.1497(1270149700) | 0x374772c3849574196515b3f1196d5b807a2997b394f61338bb77d0b241d8e0df | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 27 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 6263.9012(6263901200) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 28 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 3797.2965(3797296500) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 29 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 11445.8603(11445860300) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 30 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 3464.3347(3464334700) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 31 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 3393.7715(3393771500) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 32 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 11420.0453(11420045300) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 33 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 2003.8622(2003862200) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 34 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 3703.0849(3703084900) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable ETHx/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 35 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 895.1757(895175700) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 36 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 939.1801(939180100) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 3311.4884(3311488400) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 1571.893(1571893000) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 1905.6397(1905639700) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 1110.8576(1110857600) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1687.5774(1687577400) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 2769.8726(2769872600) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 4338.183(4338183000) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable wPOL/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 3090.3676(3090367600) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 1405.2198(1405219800) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 861.5091(861509100) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 14732.2265(14732226500) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-11-07/2024-11-07.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `bce7cc2b461065078145ef2844f8408ae324b23f` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/98ba40d2-cecd-470b-97a2-a9d1afa1cb46) + +``` ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:138729203001, 18 decimals:1.38729203001E-7, 6 decimals: 138729.203001" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+---------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-11-07/fees_2024-10-24_2024-11-07.json b/MaxiOps/feeDistributions/2024-11-07/fees_2024-10-24_2024-11-07.json new file mode 100644 index 000000000..8d81f4d8f --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-07/fees_2024-10-24_2024-11-07.json @@ -0,0 +1,8 @@ +{ + "mainnet": 186866638328, + "arbitrum": 31210784610, + "polygon": 9134656331, + "base": 4153615767, + "gnosis": 43546220356, + "avalanche": 2546489926 +} diff --git a/MaxiOps/feeDistributions/2024-11-07/incentives_2024-10-24_2024-11-07.csv b/MaxiOps/feeDistributions/2024-11-07/incentives_2024-10-24_2024-11-07.csv new file mode 100644 index 000000000..5bafe9277 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-07/incentives_2024-10-24_2024-11-07.csv @@ -0,0 +1,71 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,2173.99,2829.3886,1523.5169,4567.3281,3090.3676,1476.9605,214.4226,0,2024-11-07 03:33:44+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,107.09,139.3747,75.0479,0,0,0,-214.4226,0,2024-11-07 04:44:27+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,14862.45,10048.1906,5410.5642,15812.7174,11445.8603,4366.8576,353.9627,0,2024-11-07 08:42:35+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,14826.59,10023.9464,5397.5096,15774.5650,11420.0453,4354.5196,353.1090,0,2024-11-07 09:06:47+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,14230.32,9620.8207,5180.4419,15140.1708,0,15140.1710,338.9081,0,2024-11-07 05:25:11+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,7664.15,5181.5710,2790.0767,8154.1764,6263.9012,1890.2752,182.5287,0,2024-11-04 10:07:11+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,7478.96,5056.3679,2722.6596,7957.1459,6130.5856,1826.5605,178.1183,0,2024-11-05 15:59:35+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,4237.77,2865.0674,1542.7286,4508.7223,3797.2965,711.4258,100.9263,0,2024-10-13 17:10:23+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,4106.90,2776.5889,1495.0863,4369.4849,3703.0849,666.3997,97.8097,0,2024-10-30 21:04:59+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,3775.25,2552.3673,1374.3516,4016.6300,3464.3347,552.2952,89.9111,0,2024-11-06 02:26:59+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,3677.23,2486.0980,1338.6682,3912.3429,3393.7715,518.5713,87.5767,0,2024-11-06 05:55:35+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,3562.93,2408.8222,1297.0581,3790.7348,3311.4884,479.2464,84.8545,0,2024-11-07 06:55:11+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,1883.44,1273.3543,685.6523,2003.8625,2003.8622,0.0000,44.8559,0,2024-11-03 23:38:11+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,1791.12,1210.9386,652.0439,1905.6398,1905.6397,0.0000,42.6573,0,2024-11-07 04:13:23+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,1477.43,998.8594,537.8474,1571.8931,1571.8930,0.0000,35.1863,0,2024-11-04 10:04:59+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,1193.82,807.1167,434.6013,1270.1498,1270.1497,0.0000,28.4319,0,2024-11-04 22:42:47+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,882.74,596.8020,321.3549,939.1800,939.1801,0.0000,21.0231,0,2024-11-03 10:33:23+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,841.38,568.8394,306.2981,895.1756,895.1757,0.0000,20.0381,0,2024-11-04 09:44:23+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,706.79,477.8459,257.3016,751.9803,0,751.9806,16.8328,0,2024-11-04 10:05:59+00:00 +0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6,mainnet,cdcETH/wstETH,619.16,418.6011,225.4006,658.7475,0,658.7475,14.7458,0,2024-11-05 06:40:47+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,480.12,324.5991,174.7841,0,0,0,-499.3832,0,2024-11-05 06:39:23+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,447.04,302.2344,162.7416,0,0,0,-464.9759,0,2024-11-05 18:59:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,330.69,223.5726,120.3852,0,0,0,-343.9578,0,2024-11-05 06:33:23+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,212.32,143.5451,77.2935,0,0,0,-220.8386,0,2024-10-28 22:44:59+00:00 +0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3,mainnet,ECLP-sUSDe-GYD,142.24,96.1655,51.7814,0,0,0,-147.9469,0,2024-10-27 22:30:11+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,138.11,93.3733,50.2779,0,0,0,-143.6512,0,2024-11-05 21:13:59+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,96.67,65.3566,35.1920,0,0,0,-100.5486,0,2024-11-04 10:39:47+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,73.90,49.9622,26.9027,0,0,0,-76.8650,0,2024-10-26 03:31:11+00:00 +0xb757ddbc72155c0a41058e148969ba29ba071a2e0000000000000000000006ce,mainnet,balETH/wstETH,58.00,39.2126,21.1145,0,0,0,-60.3271,0,2024-10-26 02:34:11+00:00 +0xc8cf54b0b70899ea846b70361e62f3f5b22b1f4b0002000000000000000006c7,mainnet,ECLP-wstETH-GYD,31.71,21.4385,11.5438,0,0,0,-32.9823,0,2024-11-05 10:15:11+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-12 07:25:47+00:00 +0x8296057edb832feac03269e9fce8304ebcbabcaf00000000000000000000069c,mainnet,B-baoETH-wstETH-BPT,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-21 21:03:47+00:00 +0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611,mainnet,ECLP-mevETH-wETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-07-02 09:27:47+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,4496.01,14152.5216,7620.5886,21773.1102,14732.2265,7040.8837,0,0,2024-11-04 14:28:20+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,937.44,1018.3752,548.3559,2076.8078,1405.2198,671.5880,510.0767,0,2024-11-07 03:50:15+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,295.77,321.3057,173.0108,0,0,0,-494.3165,0,2024-11-06 03:50:25+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,9.43,10.2442,5.5161,0,0,0,-15.7602,0,2024-11-05 10:05:59+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,2642.32,778.2624,419.0644,1273.2450,861.5091,411.7359,75.9182,0,2024-11-07 08:19:28+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,167.54,49.3468,26.5714,0,0,0,-75.9182,0,2024-11-06 19:04:30+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,6861.45,2739.1503,1474.9271,5260.6079,4338.1830,922.4250,1046.5305,0,2024-11-07 10:22:56+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,3838.27,1532.2707,825.0688,2942.7648,2769.8726,172.8920,585.4253,0,2024-11-06 21:39:12+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2201.12,878.7062,473.1495,1687.5775,1687.5774,0.0000,335.7218,0,2024-11-07 05:27:51+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1448.90,578.4134,311.4534,1110.8572,1110.8576,0.0000,220.9904,0,2024-11-07 01:07:43+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1427.42,569.8384,306.8361,1094.3892,0,1094.3891,217.7147,0,2024-11-07 06:26:03+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,1301.24,519.4663,279.7126,997.6480,0,997.6485,198.4691,0,2024-11-07 02:10:29+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,1233.76,492.5277,265.2072,945.9119,0,945.9117,188.1770,0,2024-11-07 03:40:22+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1189.09,474.6950,255.6050,911.6637,0,911.6641,181.3636,0,2024-11-05 18:37:58+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,852.98,340.5170,183.3553,653.9717,0,653.9717,130.0994,0,2024-11-05 13:23:56+00:00 +0x38161e9efb8de52d00a1eb0f773223fd28fdd7c20002000000000000000005a0,arbitrum,ECLP-GHO-USDe-rh,722.73,288.5201,155.3570,0,0,0,-443.8770,0,2024-11-07 05:14:49+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,642.28,256.4037,138.0636,0,0,0,-394.4673,0,2024-11-05 23:25:51+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,628.83,251.0344,135.1724,0,0,0,-386.2067,0,2024-11-07 06:01:26+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,556.80,222.2794,119.6889,0,0,0,-341.9683,0,2024-11-05 18:38:55+00:00 +0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595,arbitrum,weETH/wETH,446.23,178.1389,95.9209,0,0,0,-274.0598,0,2024-11-03 20:56:31+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,422.92,168.8333,90.9103,0,0,0,-259.7436,0,2024-11-04 10:56:35+00:00 +0x59743f1812bb85db83e9e4ee061d124aaa64290000000000000000000000052b,arbitrum,sUSDe/sFRAX,351.07,140.1502,75.4655,0,0,0,-215.6157,0,2024-11-04 15:56:37+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,316.22,126.2378,67.9742,0,0,0,-194.2119,0,2024-11-07 09:33:45+00:00 +0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594,arbitrum,ECLP-rETH-wstETH,218.51,87.2311,46.9706,0,0,0,-134.2017,0,2024-11-05 18:26:55+00:00 +0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c,arbitrum,sUSX/USDC,171.09,68.3006,36.7773,0,0,0,-105.0779,0,2024-11-04 04:21:16+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,170.37,68.0132,36.6225,0,0,0,-104.6357,0,2024-11-06 19:41:52+00:00 +0xdfa752ca3ff49d4b6dbe08e2d5a111f51773d3950000000000000000000004e8,arbitrum,sFRAX/FRAX,104.02,41.5257,22.3600,0,0,0,-63.8857,0,2024-11-06 21:59:15+00:00 +0x5b89dc91e5a4dc6d4ab0d970af6a7f981971a443000000000000000000000572,arbitrum,instETH/wstETH,74.81,29.8648,16.0810,0,0,0,-45.9458,0,2024-11-06 15:43:26+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,67.37,26.8947,14.4818,0,0,0,-41.3764,0,2024-11-07 06:11:04+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,45.45,18.1440,9.7699,0,0,0,-27.9139,0,2024-11-07 07:49:02+00:00 +0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f,arbitrum,ECLP-sUSDe-GYD,43.67,17.4334,9.3872,0,0,0,-26.8207,0,2024-11-07 03:40:31+00:00 +0x6ce1d1e46548ef657f8d7ebddfc4beadb04f72f30002000000000000000005a1,arbitrum,ECLP-wstETH-GYD,43.41,17.3296,9.3313,0,0,0,-26.6610,0,2024-11-07 00:57:46+00:00 +0xff38cc0ce0de4476c5a3e78675b48420a851035b000200000000000000000593,arbitrum,ECLP-GHO-GYD-rh,14.21,5.6728,3.0546,0,0,0,-8.7273,0,2024-11-07 08:10:55+00:00 +0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d,arbitrum,2CLP-AUSDC-USDC,7.87,3.1418,1.6917,0,0,0,-4.8335,0,2024-11-07 08:13:28+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,6.94,2.7705,1.4918,0,0,0,-4.2623,0,2024-11-07 03:10:41+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-07 05:31:11+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-02 23:13:03+00:00 diff --git a/MaxiOps/feeDistributions/2024-11-21/2024-11-21.csv b/MaxiOps/feeDistributions/2024-11-21/2024-11-21.csv new file mode 100644 index 000000000..07254ff67 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-21/2024-11-21.csv @@ -0,0 +1,140 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,11036.0909 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,4108.9770 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,0 +0xf697535848B535900c76f70F1e36EC3985D27862,aura,0 +0xf697535848B535900c76f70F1e36EC3985D27862,balancer,0 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,17871.7122 +0xCD19892916929F013930ed628547Cc1F439b230e,aura,0 +0xCD19892916929F013930ed628547Cc1F439b230e,balancer,0 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,16652.2364 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,6734.9737 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,aura,1668.3282 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,balancer,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,0 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,5364.3533 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,1456.9865 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,22261.7083 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,9357.8501 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,0 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,5888.3219 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,1701.9840 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,aura,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,balancer,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,2264.1808 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,0 +0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43,aura,0 +0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43,balancer,0 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,5834.6610 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,1676.8930 +0x146b6030E6d6a6398B918E9854652a71C9537180,aura,0 +0x146b6030E6d6a6398B918E9854652a71C9537180,balancer,0 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,19295.7722 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,7971.0381 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,4566.5497 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1083.9496 +0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f,aura,0 +0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f,balancer,0 +0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A,aura,0 +0xfc4BEBF1f33594be59Fdfb7e1c4a45759ECaEc5A,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,6840.2171 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,2147.0709 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,1439.9379 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0x655A2B240151b4fAb06dfb2B6329eF72647F89dd,aura,0 +0x655A2B240151b4fAb06dfb2B6329eF72647F89dd,balancer,0 +0xCda69C40176B98bB1773109d1fEa91e12F478451,aura,0 +0xCda69C40176B98bB1773109d1fEa91e12F478451,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,1632.6516 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,3586.6362 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,625.7615 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,10090.8151 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,3666.9851 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,15958.2270 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,6410.4690 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,3253.2914 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,469.8963 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,aura,0 +0xF937BF168B33D8D10d555e9a039Ec1B8e4c543d1,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,928.5333 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,0 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,821.6952 +0xD558C611B69a223767788B638717E868D8947Fd0,aura,0 +0xD558C611B69a223767788B638717E868D8947Fd0,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,985.9160 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,aura,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,balancer,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,632.4472 +0xb6d101874B975083C76598542946Fe047f059066,aura,1250.9195 +0xb6d101874B975083C76598542946Fe047f059066,balancer,210.6565 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,aura,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,balancer,0 +0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,aura,1208.9728 +0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,balancer,191.0431 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,1313.8956 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,240.1029 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1484.3507 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,319.8044 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,aura,0 +0x75BA7F8733c154302cbE2e19fe3ec417E0679833,balancer,0 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,2668.4310 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,873.4562 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,1333.2625 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,249.1584 +0x5a47e3f2E5009168Af11C4b0198605f694805779,aura,0 +0x5a47e3f2E5009168Af11C4b0198605f694805779,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,aura,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,balancer,611.3110 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,8811.9789 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,3746.0557 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,5046.3148 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,2359.5554 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,0 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,3057.4780 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,1429.6152 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,0 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,1021.5433 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,477.6531 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,24946.8958 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,11664.6670 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,98281.4842 diff --git a/MaxiOps/feeDistributions/2024-11-21/2024-11-21.json b/MaxiOps/feeDistributions/2024-11-21/2024-11-21.json new file mode 100644 index 000000000..f23594b66 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-21/2024-11-21.json @@ -0,0 +1,2609 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "280804239500" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "98281484200" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4108977000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "17871712200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6734973700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1456986500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9357850100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1701984000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1676893000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7971038100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1083949600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2147070900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "625761500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3666985100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6410469000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "469896300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "928533300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "821695200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "632447200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "210656500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8c79700d6a561a8296de97638472d78fec325c13ca5dfd39a11dbcc094dacaaa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "191043100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "240102900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "319804400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "873456200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "249158400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xa081cb17f847afe52e6bbdc5d151f91e7185d33a1746eaa1fe0847637247299c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "611311000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3746055700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2359555400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1429615200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "477653100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11664667000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11036090900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "16652236400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb3bc3a7d6ce63b937e14db4912221da78d3c2250b5a79c5bfeba9db698ba2574", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1668328200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5364353300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "22261708300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5888321900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2264180800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5834661000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "19295772200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4566549700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6840217100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1439937900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1632651600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3586636200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10090815100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15958227000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3253291400", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "985916000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1250919500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8c79700d6a561a8296de97638472d78fec325c13ca5dfd39a11dbcc094dacaaa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1208972800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1313895600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1484350700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2668431000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1333262500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "8811978900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5046314800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3057478000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1021543300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "24946895800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "182522757028" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "6848942525179636602462" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-11-21/2024-11-21.report.txt b/MaxiOps/feeDistributions/2024-11-21/2024-11-21.report.txt new file mode 100644 index 000000000..b8db96dfc --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-21/2024-11-21.report.txt @@ -0,0 +1,163 @@ +FILENAME: `MaxiOps/feeDistributions/2024-11-21/2024-11-21.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `f0fac5348d6789f6600df92d565af6ac9a215379` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fbea6d15-4b66-4a6d-9d77-5a083296cb73) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 98281.4842 (RAW: 98281484200) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 182522.757028 (RAW: 182522757028) | N/A | 60 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 6848.9425251796365 (RAW: 6848942525179636602462) | N/A | 61 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+--------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-11-21/2024-11-21.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `f0fac5348d6789f6600df92d565af6ac9a215379` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/81fe0cca-290c-448e-83e1-6bfffc27c7e6) + +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 4108.977(4108977000) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 17871.7122(17871712200) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 6734.9737(6734973700) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 1456.9865(1456986500) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 9357.8501(9357850100) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | pufETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 1701.984(1701984000) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 1676.893(1676893000) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 7971.0381(7971038100) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 1083.9496(1083949600) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 2147.0709(2147070900) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | WETH-20% ALCX-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 625.7615(625761500) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 3666.9851(3666985100) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 6410.469(6410469000) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | RDNT-80% WETH-20% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 469.8963(469896300) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 928.5333(928533300) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 821.6952(821695200) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) rsETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c | 632.4472(632447200) | 0x17da0fdbd3ff9930dd682991859f8cfe753f68628ab4b36956098104aab3184e | | | +| depositBribe | (A) wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 210.6565(210656500) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | (A) wUSDL GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0xab297f94235de777b85024ed1208ff43852385d90000000000000000000005bb | 191.0431(191043100) | 0x8c79700d6a561a8296de97638472d78fec325c13ca5dfd39a11dbcc094dacaaa | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 240.1029(240102900) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) wstETH sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 319.8044(319804400) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 873.4562(873456200) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 249.1584(249158400) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) weETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595 | 611.311(611311000) | 0xa081cb17f847afe52e6bbdc5d151f91e7185d33a1746eaa1fe0847637247299c | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 3746.0557(3746055700) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (P) wPOL MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 2359.5554(2359555400) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 1429.6152(1429615200) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 477.6531(477653100) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 11664.667(11664667000) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 31 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 11036.0909(11036090900) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 32 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 16652.2364(16652236400) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | Gyroe deUSD/sdeUSD | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 33 | +| | 0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be | 1668.3282(1668328200) | 0xb3bc3a7d6ce63b937e14db4912221da78d3c2250b5a79c5bfeba9db698ba2574 | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 34 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 5364.3533(5364353300) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 35 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 22261.7083(22261708300) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 36 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 5888.3219(5888321900) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable rsETH/ETHx | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d | 2264.1808(2264180800) | 0x08fc8c8bfce86f5fb7e72f4213517208421ef68f351f91c00be0339344db711d | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 5834.661(5834661000) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 19295.7722(19295772200) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 4566.5497(4566549700) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 6840.2171(6840217100) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable ETHx/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 1439.9379(1439937900) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | ComposableStable wstETH/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 1632.6516(1632651600) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | 80/20 ALCX/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 3586.6362(3586636200) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 10090.8151(10090815100) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 15958.227(15958227000) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 3253.2914(3253291400) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-Gyroe wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 985.916(985916000) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | a-ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 1250.9195(1250919500) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable wUSDL/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0xab297f94235de777b85024ed1208ff43852385d90000000000000000000005bb | 1208.9728(1208972800) | 0x8c79700d6a561a8296de97638472d78fec325c13ca5dfd39a11dbcc094dacaaa | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 1313.8956(1313895600) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1484.3507(1484350700) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 2668.431(2668431000) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-ComposableStable rETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 1333.2625(1333262500) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 8811.9789(8811978900) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | p-ComposableStable wPOL/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 5046.3148(5046314800) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 3057.478(3057478000) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 1021.5433(1021543300) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 24946.8958(24946895800) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-11-21/2024-11-21.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `f0fac5348d6789f6600df92d565af6ac9a215379` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9bf09e63-0662-46d3-b1da-6f03df2b9fc2) + +``` ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:280804239500, 18 decimals:2.808042395E-7, 6 decimals: 280804.2395" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-11-21/fees_2024-11-07_2024-11-21.json b/MaxiOps/feeDistributions/2024-11-21/fees_2024-11-07_2024-11-21.json new file mode 100644 index 000000000..1465c947a --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-21/fees_2024-11-07_2024-11-21.json @@ -0,0 +1,8 @@ +{ + "gnosis": 73223125553, + "arbitrum": 55763982234, + "avalanche": 2998392840, + "polygon": 14811740262, + "base": 8974186484, + "mainnet": 405837053353 +} diff --git a/MaxiOps/feeDistributions/2024-11-21/incentives_2024-11-07_2024-11-21.csv b/MaxiOps/feeDistributions/2024-11-21/incentives_2024-11-07_2024-11-21.csv new file mode 100644 index 000000000..9d212e73a --- /dev/null +++ b/MaxiOps/feeDistributions/2024-11-21/incentives_2024-11-07_2024-11-21.csv @@ -0,0 +1,70 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,3286.14,4609.9538,2482.2828,7405.8702,5046.3148,2359.5554,313.6336,0,2024-11-21 07:00:21+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,145.32,203.8618,109.7717,0,0,0,-313.6336,0,2024-11-20 03:32:26+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,23761.37,20372.8480,10969.9951,31619.5585,22261.7083,9357.8501,276.7154,0,2024-11-21 02:01:35+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,20490.38,17568.3219,9459.8656,27266.8103,19295.7722,7971.0381,238.6227,0,2024-11-20 18:41:11+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,17574.95,15068.6507,8113.8888,23387.2103,16652.2364,6734.9737,204.6707,0,2024-11-19 04:54:11+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,16809.56,14412.4102,7760.5286,22368.6959,15958.2270,6410.4690,195.7572,0,2024-11-18 01:25:47+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,13430.18,11514.9512,6200.3583,17871.7120,0,17871.7122,156.4025,0,2024-11-20 23:54:47+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,11381.17,9758.1430,5254.3847,15145.0681,11036.0909,4108.9770,132.5404,0,2024-11-21 05:34:59+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,10338.67,8864.3101,4773.0901,13757.8002,10090.8151,3666.9851,120.4000,0,2024-11-21 11:16:35+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,6753.74,5790.6139,3118.0228,8987.2880,6840.2171,2147.0709,78.6513,0,2024-11-11 16:36:59+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,5703.94,4890.5220,2633.3580,7590.3058,5888.3219,1701.9840,66.4258,0,2024-11-19 03:01:35+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,5644.76,4839.7814,2606.0362,7511.5540,5834.6610,1676.8930,65.7364,0,2024-11-21 13:59:35+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,5126.08,4395.0685,2366.5753,6821.3399,5364.3533,1456.9865,59.6961,0,2024-11-21 00:38:47+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,4246.22,3640.6821,1960.3673,5650.4993,4566.5497,1083.9496,49.4499,0,2024-11-18 09:05:59+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,3165.52,2714.0968,1461.4367,4212.3979,3586.6362,625.7615,36.8644,0,2024-11-18 09:18:11+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,2797.89,2398.8931,1291.7117,3723.1878,3253.2914,469.8963,32.5830,0,2024-11-20 23:37:59+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,1701.48,1458.8382,785.5282,2264.1814,2264.1808,0,19.8150,0,2024-11-20 17:08:23+00:00 +0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be,mainnet,ECLP-stdeUSD-deUSD,1253.71,1074.9230,578.8047,1668.3277,1668.3282,0,14.6000,0,2024-11-20 22:11:35+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,1226.90,1051.9363,566.4272,1632.6515,1632.6516,0,14.2880,0,2024-11-17 21:32:11+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,1082.08,927.7685,499.5677,1439.9376,1439.9379,0,12.6014,0,2024-11-20 06:52:11+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,323.04,276.9724,149.1390,0,0,0,-426.1115,0,2024-11-17 22:44:23+00:00 +0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b,mainnet,sDOLA-DOLA BSP,312.10,267.5926,144.0883,0,0,0,-411.6809,0,2024-11-19 10:45:47+00:00 +0xb757ddbc72155c0a41058e148969ba29ba071a2e0000000000000000000006ce,mainnet,balETH/wstETH,263.27,225.7260,121.5448,0,0,0,-347.2708,0,2024-11-08 23:24:23+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,137.23,117.6601,63.3555,0,0,0,-181.0156,0,2024-11-19 23:49:47+00:00 +0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3,mainnet,ECLP-sUSDe-GYD,94.82,81.2981,43.7759,0,0,0,-125.0739,0,2024-11-20 10:49:11+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,94.22,80.7836,43.4989,0,0,0,-124.2825,0,2024-11-18 16:24:35+00:00 +0x1d13531bf6344c102280ce4c458781fbf14dad140000000000000000000006df,mainnet,tETH/wstETH,57.43,49.2401,26.5139,0,0,0,-75.7540,0,2024-11-21 13:58:11+00:00 +0x8296057edb832feac03269e9fce8304ebcbabcaf00000000000000000000069c,mainnet,B-baoETH-wstETH-BPT,32.23,27.6338,14.8797,0,0,0,-42.5135,0,2024-11-08 04:41:11+00:00 +0xabc7d08ef73fe3fb67efd900f4471cca788b089900000000000000000000069d,mainnet,B-baoETH-rETH-BPT,30.54,26.1848,14.0995,0,0,0,-40.2843,0,2024-11-19 15:26:35+00:00 +0xc683955059e98350de4e5dc1c75971bd640829bb0002000000000000000006e1,mainnet,ECLP-cbETH-wstETH,1.39,1.1918,0.6417,0,0,0,-1.8335,0,2024-11-20 09:38:47+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-12 07:25:47+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-28 22:44:59+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-05 06:39:23+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-08-15 17:50:47+00:00 +0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6,mainnet,cdcETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-05 06:40:47+00:00 +0xc8cf54b0b70899ea846b70361e62f3f5b22b1f4b0002000000000000000006c7,mainnet,ECLP-wstETH-GYD,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-21 00:06:35+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-05 06:33:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,11714.50,23797.5158,12814.0470,36611.5628,24946.8958,11664.6670,0,0,2024-11-19 20:50:30+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,1883.46,2602.6178,1401.4096,4487.0932,3057.4780,1429.6152,483.0658,0,2024-11-21 11:42:19+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,210.05,290.2530,156.2901,0,0,0,-446.5430,0,2024-11-19 07:17:35+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,17.18,23.7398,12.7830,0,0,0,-36.5228,0,2024-11-20 08:13:41+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,2294.36,821.6932,442.4502,1499.1964,1021.5433,477.6531,235.0530,0,2024-11-21 10:39:34+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,426.61,152.7845,82.2686,0,0,0,-235.0530,0,2024-11-20 16:39:53+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,14461.31,7570.4331,4076.3870,12558.0346,8811.9789,3746.0557,911.2145,0,2024-11-21 14:08:51+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,4078.69,2135.1765,1149.7104,3541.8873,2668.4310,873.4562,257.0003,0,2024-11-21 12:41:35+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,2077.59,1087.6094,585.6358,1804.1553,1484.3507,319.8044,130.9101,0,2024-11-19 12:13:13+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,1822.25,953.9400,513.6600,1582.4210,1333.2625,249.1584,114.8210,0,2024-11-21 08:00:51+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,1789.52,936.8060,504.4340,1553.9984,1313.8956,240.1029,112.7585,0,2024-11-21 12:00:41+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,1683.09,881.0903,474.4332,1461.5759,1250.9195,210.6565,106.0523,0,2024-11-21 11:31:18+00:00 +0xab297f94235de777b85024ed1208ff43852385d90000000000000000000005bb,arbitrum,wUSDL/GHO,1612.20,843.9797,454.4506,1400.0159,1208.9728,191.0431,101.5856,0,2024-11-21 11:09:30+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,1135.34,594.3456,320.0322,985.9163,985.9160,0,71.5385,0,2024-11-20 20:52:46+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1069.26,559.7530,301.4054,928.5331,0,928.5333,67.3747,0,2024-11-21 08:30:17+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,946.23,495.3473,266.7255,821.6952,0,821.6952,59.6224,0,2024-11-20 06:20:20+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,728.30,381.2619,205.2949,632.4474,0,632.4472,45.8906,0,2024-11-21 11:32:09+00:00 +0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595,arbitrum,weETH/wETH,703.96,368.5200,198.4339,611.3107,0,611.3110,44.3568,0,2024-11-17 22:46:44+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,559.81,293.0581,157.8005,0,0,0,-450.8586,0,2024-11-21 08:24:48+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,537.10,281.1695,151.3990,0,0,0,-432.5685,0,2024-11-18 08:07:53+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,454.56,237.9602,128.1324,0,0,0,-366.0926,0,2024-11-21 08:35:10+00:00 +0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c,arbitrum,sUSX/USDC,241.12,126.2253,67.9675,0,0,0,-194.1927,0,2024-11-20 12:20:15+00:00 +0x38161e9efb8de52d00a1eb0f773223fd28fdd7c20002000000000000000005a0,arbitrum,ECLP-GHO-USDe-rh,187.33,98.0664,52.8050,0,0,0,-150.8715,0,2024-11-20 11:14:50+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,162.19,84.9058,45.7185,0,0,0,-130.6242,0,2024-11-21 00:41:15+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,131.67,68.9287,37.1154,0,0,0,-106.0441,0,2024-11-21 04:31:45+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,69.05,36.1474,19.4640,0,0,0,-55.6113,0,2024-11-20 22:12:40+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,64.77,33.9068,18.2575,0,0,0,-52.1643,0,2024-11-21 00:40:44+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,37.23,19.4897,10.4945,0,0,0,-29.9842,0,2024-11-21 05:40:27+00:00 +0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f,arbitrum,ECLP-sUSDe-GYD,30.00,15.7049,8.4565,0,0,0,-24.1613,0,2024-11-21 12:55:45+00:00 +0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594,arbitrum,ECLP-rETH-wstETH,14.23,7.4493,4.0112,0,0,0,-11.4605,0,2024-11-21 12:20:24+00:00 +0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f,arbitrum,2CLP-AUSDT-USDT,12.09,6.3291,3.4080,0,0,0,-9.7370,0,2024-11-20 20:11:05+00:00 +0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d,arbitrum,2CLP-AUSDC-USDC,10.87,5.6904,3.0641,0,0,0,-8.7545,0,2024-11-21 09:11:16+00:00 diff --git a/MaxiOps/feeDistributions/2024-12-05/2024-12-05.csv b/MaxiOps/feeDistributions/2024-12-05/2024-12-05.csv new file mode 100644 index 000000000..fba48a424 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-12-05/2024-12-05.csv @@ -0,0 +1,138 @@ +target,platform,amount +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,aura,7257.8547 +0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,balancer,1628.4803 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,aura,0 +0xFc3f916C28f32DEBA1cc04b1F6011F28a691134c,balancer,0 +0xf697535848B535900c76f70F1e36EC3985D27862,aura,0 +0xf697535848B535900c76f70F1e36EC3985D27862,balancer,0 +0x79eF6103A513951a3b25743DB509E267685726B7,aura,0 +0x79eF6103A513951a3b25743DB509E267685726B7,balancer,27539.0407 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,aura,12634.5981 +0xf7B0751Fea697cf1A541A5f57D11058a8fB794ee,balancer,4168.7695 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,aura,0 +0x6A58e7C904eCF991A3183d28FC73bE90732B7a30,balancer,0 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,aura,7742.9322 +0xA00DB7d9c465e95e4AA814A9340B9A161364470a,balancer,1857.6597 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,aura,1478.3207 +0x03ac2920378A51d6CA78813b1d7578Dab08d3760,balancer,0 +0x0021e01B9fAb840567a8291b864fF783894EabC6,aura,4079.8015 +0x0021e01B9fAb840567a8291b864fF783894EabC6,balancer,126.9817 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,aura,0 +0xF6A7ad46b00300344C7d4739C0518db70e722DC4,balancer,0 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,aura,11400.7226 +0xa8B309a75f0D64ED632d45A003c68A30e59A1D8b,balancer,3585.8142 +0x95201B61EF19C867dA0D093DF20021e1a559452c,aura,0 +0x95201B61EF19C867dA0D093DF20021e1a559452c,balancer,659.7850 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,aura,2347.8026 +0x0B9Ea598757c7D03FB1937cc16bdD2C9D416ff80,balancer,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,aura,0 +0x80A423a65a6a630943D9A34b8b78943af00c98cD,balancer,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,aura,0 +0x0BcDb6d9b27Bd62d3De605393902C7d1a2c71Aab,balancer,0 +0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43,aura,0 +0x001EDF44D8aa79922dBE74f57C703EbCe2E13B43,balancer,0 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,aura,5795.4251 +0x253ED65fff980AEE7E94a0dC57BE304426048b35,balancer,937.5432 +0x146b6030E6d6a6398B918E9854652a71C9537180,aura,0 +0x146b6030E6d6a6398B918E9854652a71C9537180,balancer,0 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,aura,13799.8641 +0x5C0F23A5c1be65Fa710d385814a7Fd1Bda480b1C,balancer,4719.3095 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,aura,6787.7528 +0x2C2179abce3413E27BDA6917f60ae37F96D01826,balancer,1406.3768 +0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f,aura,0 +0x80f129622dC60f5A7De85cBc98F7e3a99b09E57f,balancer,0 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,aura,5970.4703 +0x84f7F5cD2218f31B750E7009Bb6fD34e0b945DaC,balancer,1020.2445 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,aura,1460.8579 +0xAC08fde28aa2D123B61a5dB3074cAF72760FfeEB,balancer,0 +0x655A2B240151b4fAb06dfb2B6329eF72647F89dd,aura,0 +0x655A2B240151b4fAb06dfb2B6329eF72647F89dd,balancer,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,aura,0 +0xe77D45b5dE97aC7717E4EdE6bE16E3D805fF02A5,balancer,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,aura,0 +0xbf65b3fA6c208762eD74e82d4AEfCDDfd0323648,balancer,610.0648 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,aura,0 +0xee01c0d9c0439c94D314a6ecAE0490989750746C,balancer,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,aura,0 +0xdf54d2Dd06F8Be3B0c4FfC157bE54EC9cca91F3C,balancer,0 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,aura,1883.2228 +0x183D73dA7adC5011EC3C46e33BB50271e59EC976,balancer,0 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,aura,10685.6546 +0xf720e9137baa9C7612e6CA59149a5057ab320cFa,balancer,3247.9742 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,aura,7023.7319 +0x15C84754c7445D0DF6c613f1490cA07654347c1B,balancer,1517.8671 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,aura,2351.8808 +0xF22BbdAd6B3Dd9314BdF97724DF32b09Ff95C216,balancer,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,aura,0 +0xBB034E493eBF45F874e038Ae76576Df9Cc1137e5,balancer,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,aura,0 +0x62A82FE26E21a8807599374CaC8024fae342eF83,balancer,832.8635 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,aura,0 +0xBE0967E7510604302b0F974E21A625D9f762B8bb,balancer,683.6244 +0xD558C611B69a223767788B638717E868D8947Fd0,aura,0 +0xD558C611B69a223767788B638717E868D8947Fd0,balancer,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,aura,0 +0x671eD21480acf63b0AB7297b901505F5BccAfa9b,balancer,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,aura,0 +0x27213687F92cdA21F10cc09A3e860B6D817Ef096,balancer,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,aura,0 +0xd384F6aC540eFeF9378cf8F6453Ad38A696411b5,balancer,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,aura,0 +0x7E123aD65cc842AB93bf2Dc79A8eadE8975bd3Cb,balancer,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,aura,0 +0x3ABa56CeC68987963566a9AA93bb7f7DD28De3F5,balancer,783.0462 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,aura,0 +0x058059cb764a98c18B937222eD06C1ad2f174Dce,balancer,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,aura,0 +0x4a0c9905b098842827fB09BaA4522721d4e14deE,balancer,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,aura,0 +0x061130d4715FCD4828BfCAf6B1a9B93DF5e6e4c9,balancer,0 +0xb6d101874B975083C76598542946Fe047f059066,aura,1153.7975 +0xb6d101874B975083C76598542946Fe047f059066,balancer,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,aura,0 +0xcb785286C9bEBeFF7654a8238Eb563666fD75338,balancer,0 +0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,aura,0 +0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,balancer,882.7440 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,aura,1794.9639 +0xCD41Bc6DC6e9821C4C36848Ff3397493e458A5d1,balancer,393.4349 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,aura,1050.4616 +0xEaF1eef5814D9be44D0dBFb54c7773844339B7F8,balancer,0 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,aura,2066.7641 +0xE6a0FD593e6beca161D0D933b4Fb4fecaF49d46a,balancer,521.8495 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,aura,1374.4141 +0xf8A95653CC7ee59AfA2304DcC518c431a15C292C,balancer,194.7426 +0x5a47e3f2E5009168Af11C4b0198605f694805779,aura,0 +0x5a47e3f2E5009168Af11C4b0198605f694805779,balancer,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,aura,0 +0x38F1e186cC7609D236AA2161e2ca622B5BC4Ef8b,balancer,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,aura,0 +0xF22c4C0093a13c193A3162d5B50bC92a8ECB58ef,balancer,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,aura,0 +0xBb1a15dfd849bc5a6F33C002999c8953aFA626Ad,balancer,0 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,aura,9485.7237 +0x8135d6AbFd42707A87A7b94c5CFA3529f9b432AD,balancer,4027.0011 +0x4e15b9184553740f5C822bd3d6169029D302e63e,aura,1323.6581 +0x4e15b9184553740f5C822bd3d6169029D302e63e,balancer,170.7627 +0x8E4debFB047eFCF6501665160739818E90eD621F,aura,0 +0x8E4debFB047eFCF6501665160739818E90eD621F,balancer,0 +0x9965713498c74aee49cEf80B2195461F188F24f8,aura,17214.3757 +0x9965713498c74aee49cEf80B2195461F188F24f8,balancer,7249.3408 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,aura,0 +0xD103Dd49B8051A09B399A52E9A8aB629392dE2fb,balancer,883.7399 +0xE01347229d681C69f459176A042268Cf981DFaa4,aura,4121.2841 +0xE01347229d681C69f459176A042268Cf981DFaa4,balancer,1947.1363 +0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC,aura,0 +0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC,balancer,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,aura,0 +0x2280B8C8B401CA54eBF15736B77E1d3bF4924A9D,balancer,0 +0xd75026F8723b94d9a360A282080492d905c6A558,aura,1779.0266 +0xd75026F8723b94d9a360A282080492d905c6A558,balancer,840.5165 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,aura,0 +0xe9B2CB6836Be07357bCb8144F398730d5EC268E9,balancer,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,aura,0 +0xa86e8e8CfAe8C9847fA9381d4631c13c7b3466bd,balancer,524.7828 +0x1e916950A659Da9813EE34479BFf04C732E03deb,aura,3393.9038 +0x1e916950A659Da9813EE34479BFf04C732E03deb,balancer,1078.6965 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,aura,15334.7787 +0xf8C85bd74FeE26831336B51A90587145391a27Ba,balancer,7245.0488 +0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f,payment,85427.7501 diff --git a/MaxiOps/feeDistributions/2024-12-05/2024-12-05.json b/MaxiOps/feeDistributions/2024-12-05/2024-12-05.json new file mode 100644 index 000000000..247f724e0 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-12-05/2024-12-05.json @@ -0,0 +1,2609 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "rawAmount": "244079286300" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "value": "85427750100" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1628480300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "27539040700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4168769500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb3bc3a7d6ce63b937e14db4912221da78d3c2250b5a79c5bfeba9db698ba2574", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1857659700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "126981700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3585814200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x68b00bf6c1909a50516d07afa82e1cdee0b62e3133b9f6264107ef864f36b8ed", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "659785000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "937543200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4719309500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1406376800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1020244500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "610064800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3247974200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1517867100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "832863500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "683624400", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "783046200", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8c79700d6a561a8296de97638472d78fec325c13ca5dfd39a11dbcc094dacaaa", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "882744000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "393434900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "521849500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "194742600", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4027001100", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xdfe39737dd2da0601ae3d3a01076cb285e512c2781cb90c39b0d83f8e8cbb324", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "170762700", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7249340800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "883739900", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08f2411649d46ba8a15368bd92f9609590c8ea20435a2edb3fef5c3b6bb795de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1947136300", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "840516500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "524782799", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1078696500", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7245048800", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7257854700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "12634598100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb3bc3a7d6ce63b937e14db4912221da78d3c2250b5a79c5bfeba9db698ba2574", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7742932200", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1478320700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4079801500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "11400722600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2347802600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5795425100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "13799864100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "6787752800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "5970470300", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1460857900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1883222800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "10685654600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "7023731900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2351880800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1153797500", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1794963900", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1050461600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "2066764099", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1374414100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "9485723700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xdfe39737dd2da0601ae3d3a01076cb285e512c2781cb90c39b0d83f8e8cbb324", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1323658100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "17214375700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x08f2411649d46ba8a15368bd92f9609590c8ea20435a2edb3fef5c3b6bb795de", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "4121284100", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "1779026600", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "3393903800", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0", + "_token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "_amount": "15334778700", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "158651536250" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255", + "value": "9112777281929966467942" + } + } + ] +} diff --git a/MaxiOps/feeDistributions/2024-12-05/2024-12-05.report.txt b/MaxiOps/feeDistributions/2024-12-05/2024-12-05.report.txt new file mode 100644 index 000000000..bac91eaf6 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-12-05/2024-12-05.report.txt @@ -0,0 +1,163 @@ +FILENAME: `MaxiOps/feeDistributions/2024-12-05/2024-12-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `4c859d0db13c3a361ef874c8eefa082a1b5801d0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/cd2bcd2e-31a4-4ae4-843d-11a279d077a5) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | multisigs/dao:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | 85427.7501 (RAW: 85427750100) | N/A | 1 | +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 158651.53625 (RAW: 158651536250) | N/A | 60 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/veBalFeeInjector:0x8AD2512819A7eae1dd398973EFfaE48dafBe8255 | 9112.777281929966 (RAW: 9112777281929966467942) | N/A | 61 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-12-05/2024-12-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `4c859d0db13c3a361ef874c8eefa082a1b5801d0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2c95557c-d78b-4b89-a206-ea74259d705f) + +``` ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | rETH weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 2 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 1628.4803(1628480300) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 3 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 27539.0407(27539040700) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | wstETH-50% ACX-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 4 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 4168.7695(4168769500) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | deUSD sdeUSD (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 5 | +| | 0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be | 1857.6597(1857659700) | 0xb3bc3a7d6ce63b937e14db4912221da78d3c2250b5a79c5bfeba9db698ba2574 | | | +| depositBribe | rETH sfrxETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 6 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 126.9817(126981700) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | WETH ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 7 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 3585.8142(3585814200) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | wstETH-50% LDO-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 8 | +| | 0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465 | 659.785(659785000) | 0x68b00bf6c1909a50516d07afa82e1cdee0b62e3133b9f6264107ef864f36b8ed | | | +| depositBribe | weETH ezETH rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 9 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 937.5432(937543200) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | wstETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 10 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 4719.3095(4719309500) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | rETH-50% RPL-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 11 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 1406.3768(1406376800) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | sUSDe USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 12 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 1020.2445(1020244500) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | wstETH ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 13 | +| | 0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558 | 610.0648(610064800) | 0x4f26a1373247b9b8cdfa95eac55e54689f25a43afe7b8f992e5e9ef766d961ea | | | +| depositBribe | USDT USDC GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 14 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 3247.9742(3247974200) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | STG-50% USDC-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 15 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 1517.8671(1517867100) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | (A) sFRAX 4POOL-BPT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 16 | +| | 0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc | 832.8635(832863500) | 0x800eefe3ee3d0574e390f833bba777aa3d0b6fa0cb3d599d2f2fc651f05174d9 | | | +| depositBribe | (A) rETH cbETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 17 | +| | 0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500 | 683.6244(683624400) | 0x897faa513f9820b44b25d0756f1e5337f28c506bdae93da8509b2e16d880055c | | | +| depositBribe | (A) wstETH WETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 18 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 783.0462(783046200) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | (A) wUSDL GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 19 | +| | 0xab297f94235de777b85024ed1208ff43852385d90000000000000000000005bb | 882.744(882744000) | 0x8c79700d6a561a8296de97638472d78fec325c13ca5dfd39a11dbcc094dacaaa | | | +| depositBribe | (A) ezETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 20 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 393.4349(393434900) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | (A) weETH wstETH (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 21 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 521.8495(521849500) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | (A) rETH WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 22 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 194.7426(194742600) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | (A) WETH-20% RDNT-80% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 23 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 4027.0011(4027001100) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | (A) ANKR-50% ankrETH-50% | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 24 | +| | 0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4 | 170.7627(170762700) | 0xdfe39737dd2da0601ae3d3a01076cb285e512c2781cb90c39b0d83f8e8cbb324 | | | +| depositBribe | (P) wPOL MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 25 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 7249.3408(7249340800) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | (P) stMATIC wPOL (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 26 | +| | 0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49 | 883.7399(883739900) | 0xc5a362d174af729433fd7c9881aca87166c1c7e374a250472e03b9da2caf53a4 | | | +| depositBribe | (B) WETH USDC (GYROE) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 27 | +| | 0x4c42b5057a8663e2b1ac21685d1502c937a0381700020000000000000000019c | 1947.1363(1947136300) | 0x08f2411649d46ba8a15368bd92f9609590c8ea20435a2edb3fef5c3b6bb795de | | | +| depositBribe | (B) WETH rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 28 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 840.5165(840516500) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | (AV) ggAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 29 | +| | 0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d | 524.782799(524782799) | 0x8a3b2018af44b8e89454d23d2f6ed166e7f3fbd3e325acb3a31b04f8993e7abe | | | +| depositBribe | (AV) sAVAX WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 30 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 1078.6965(1078696500) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | (G) WETH wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | balancer | 2 | 31 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 7245.0488(7245048800) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | +| depositBribe | ComposableStable rETH/weETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 32 | +| | 0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645 | 7257.8547(7257854700) | 0xe5e764574f51f588997f73047f8d1d869102330f6cc45a29cab33e68c39dbc0b | | | +| depositBribe | 50/50 wstETH/ACX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 33 | +| | 0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466 | 12634.5981(12634598100) | 0xe71103e76460c687649b7fef55f411db9c3f3e14067689822494328394b48e4b | | | +| depositBribe | Gyroe deUSD/sdeUSD | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 34 | +| | 0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be | 7742.9322(7742932200) | 0xb3bc3a7d6ce63b937e14db4912221da78d3c2250b5a79c5bfeba9db698ba2574 | | | +| depositBribe | ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 35 | +| | 0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1 | 1478.3207(1478320700) | 0xb9c1265259e78e20592919155255ad412dee819be30d89707d6e987ebd42961f | | | +| depositBribe | ComposableStable rETH/sfrxETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 36 | +| | 0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b | 4079.8015(4079801500) | 0xbd289a16c8632127837dc9aaeaac774103472e81246bc6e73d982e5592d7ffd3 | | | +| depositBribe | ComposableStable WETH/ezETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 37 | +| | 0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659 | 11400.7226(11400722600) | 0x9dbc094e3628d47695438a384279c49dbc7ea1ec5195c7a74ec2acf617b35e95 | | | +| depositBribe | ComposableStable pufETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 38 | +| | 0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681 | 2347.8026(2347802600) | 0x3addcf5d0b4de5d0ca01aca49b9152ae31988e127a72278263fb0d2feeab61f1 | | | +| depositBribe | ComposableStable weETH/ezETH/rswETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 39 | +| | 0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a | 5795.4251(5795425100) | 0x2ff31fa719ffb25eeb673ce7792433ad3f32b44a6bbf9b7bd9177c11e72c7a51 | | | +| depositBribe | ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 40 | +| | 0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2 | 13799.8641(13799864100) | 0x5393491357661cb2d39d5057abeaf751616b755a33a39ac0268b6bba440130f3 | | | +| depositBribe | 50/50 rETH/RPL | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 41 | +| | 0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462 | 6787.7528(6787752800) | 0x141872391b371d834979669a2f6ab67381c163cbfe3b3293bb41bb83f99a9da0 | | | +| depositBribe | ComposableStable sUSDe/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 42 | +| | 0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689 | 5970.4703(5970470300) | 0x534eb2e0dff0b465a2278ea916e1d6eed99e6f8d8dd551430750af9371b09796 | | | +| depositBribe | ComposableStable ETHx/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 43 | +| | 0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c | 1460.8579(1460857900) | 0xd3c4003d9ddc9b88014f0b81bc812752e80d749b476bc51e4f172bcc1f2aa6de | | | +| depositBribe | 80/20 ALCX/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 44 | +| | 0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb | 1883.2228(1883222800) | 0x032da7c2d942c0e5982a4c06651997dccbe2003f8930e8670ed63d6806e7380e | | | +| depositBribe | ComposableStable USDT/USDC/GHO | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 45 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 10685.6546(10685654600) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | +| depositBribe | 50/50 STG/USDC | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 46 | +| | 0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5 | 7023.7319(7023731900) | 0xb77540810d85a619ece994507eea9d81cdf80853be8c230dc60c8ca28f3695af | | | +| depositBribe | 80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 47 | +| | 0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617 | 2351.8808(2351880800) | 0x837f67cbf3add27893d9913543d7b3a0815feca7fa629cb64a10d3717c66830c | | | +| depositBribe | a-ComposableStable wstETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 48 | +| | 0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498 | 1153.7975(1153797500) | 0x8a9b12b747f0a683e5721aab45ae6f9ff3b521263473b24119b072ef56f5a31f | | | +| depositBribe | a-ComposableStable ezETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 49 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 1794.9639(1794963900) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | +| depositBribe | a-ComposableStable wstETH/sfrxETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 50 | +| | 0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3 | 1050.4616(1050461600) | 0xacdacd275adf9d49b7298e3c8a8aeadbcf55a5c4af7d2e89fe30b47c9daa71c1 | | | +| depositBribe | a-Gyroe weETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 51 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 2066.764099(2066764099) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-ComposableStable rETH/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 52 | +| | 0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef | 1374.4141(1374414100) | 0xbd7630d0e05b94dc91a35b417ecb286391af930bcc3e87c50f19486fb379fd73 | | | +| depositBribe | a-80/20 RDNT/WETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 53 | +| | 0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd | 9485.7237(9485723700) | 0x621f3eb8fd5653e67afdb1f8a9e00ecd874b66cc9fa5a2cfa0733985196831fe | | | +| depositBribe | a-50/50 ANKR/ankrETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 54 | +| | 0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4 | 1323.6581(1323658100) | 0xdfe39737dd2da0601ae3d3a01076cb285e512c2781cb90c39b0d83f8e8cbb324 | | | +| depositBribe | p-ComposableStable wPOL/MaticX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 55 | +| | 0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22 | 17214.3757(17214375700) | 0xcbb8720a0ad5592ac16f8e384579708c9c9c95f42b36186b677ff8ed015b5a1a | | | +| depositBribe | b-Gyroe WETH/USDC (0xe0) | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 56 | +| | 0x4c42b5057a8663e2b1ac21685d1502c937a0381700020000000000000000019c | 4121.2841(4121284100) | 0x08f2411649d46ba8a15368bd92f9609590c8ea20435a2edb3fef5c3b6bb795de | | | +| depositBribe | b-ComposableStable WETH/rETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 57 | +| | 0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023 | 1779.0266(1779026600) | 0xc20113e699a8cc094b01a28cda05f42e052b32fb52da0e75677696fa53f414d5 | | | +| depositBribe | av-ComposableStable sAVAX/WAVAX | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 58 | +| | 0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c | 3393.9038(3393903800) | 0x914f232c88637f3f301e1309049974e16a8ad3a4ed7989a1dd6cb7199c93ca30 | | | +| depositBribe | g-ComposableStable WETH/wstETH | USDC(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | aura | 1 | 59 | +| | 0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034 | 15334.7787(15334778700) | 0xfa663e35d2750065af9ccb9b839d2dc90eb496bc7a5564d97cafa241904310e0 | | | ++--------------+--------------------------------------------------------------------+---------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/feeDistributions/2024-12-05/2024-12-05.json` +MULTISIG: `multisigs/fees (mainnet:0x7c68c42De679ffB0f16216154C996C354cF1161B)` +COMMIT: `4c859d0db13c3a361ef874c8eefa082a1b5801d0` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/35a98214-c3f7-4b37-b41d-b211a1da94e0) + +``` ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:244079286300, 18 decimals:2.440792863E-7, 6 decimals: 244079.2863" | | | +| | | | ] | | | +| | | | } | | | ++---------+----------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/feeDistributions/2024-12-05/fees_2024-11-21_2024-12-05.json b/MaxiOps/feeDistributions/2024-12-05/fees_2024-11-21_2024-12-05.json new file mode 100644 index 000000000..5c2dfc6cc --- /dev/null +++ b/MaxiOps/feeDistributions/2024-12-05/fees_2024-11-21_2024-12-05.json @@ -0,0 +1,8 @@ +{ + "gnosis": 45159655022, + "avalanche": 9994766144, + "polygon": 50694912927, + "arbitrum": 53479704961, + "base": 17375926957, + "mainnet": 311453606639 +} diff --git a/MaxiOps/feeDistributions/2024-12-05/incentives_2024-11-21_2024-12-05.csv b/MaxiOps/feeDistributions/2024-12-05/incentives_2024-11-21_2024-12-05.csv new file mode 100644 index 000000000..216ed7a10 --- /dev/null +++ b/MaxiOps/feeDistributions/2024-12-05/incentives_2024-11-21_2024-12-05.csv @@ -0,0 +1,69 @@ +,chain,symbol,earned_fees,fees_to_vebal,fees_to_dao,total_incentives,aura_incentives,bal_incentives,redirected_incentives,reroute_incentives,last_join_exit +0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22,polygon,maticX-WMATIC-BPT,6089.77,15884.4733,8553.1779,24463.7165,17214.3757,7249.3408,26.0652,0,2024-12-05 05:56:44+00:00 +0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49,polygon,ECLP-WMATIC-stMATIC,219.99,573.8189,308.9794,883.7399,0,883.7399,0.9416,0,2024-12-05 00:29:56+00:00 +0xa8cbbffe0d62797afaf7af0a23810bd5ba39a4dd000200000000000000000f04,polygon,ECLP-GYD-AUSDT,6.73,17.5544,9.4524,0,0,0,-27.0068,0,2024-12-04 20:45:28+00:00 +0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112,mainnet,B-rETH-STABLE,25389.66,17766.2749,9566.4557,27539.0408,0,27539.0407,206.3102,0,2024-12-04 17:01:59+00:00 +0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2,mainnet,wstETH-WETH-BPT,17073.78,11947.2836,6433.1527,18519.1737,13799.8641,4719.3095,138.7373,0,2024-12-02 03:45:59+00:00 +0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466,mainnet,50wstETH-50ACX,15491.89,10840.3648,5837.1195,16803.3675,12634.5981,4168.7695,125.8832,0,2024-12-05 05:05:35+00:00 +0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659,mainnet,ezETH-WETH-BPT,13816.86,9668.2718,5205.9925,14986.5367,11400.7226,3585.8142,112.2724,0,2024-12-05 02:01:23+00:00 +0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9,mainnet,GHO/USDT/USDC,12846.13,8989.0088,4840.2355,13933.6288,10685.6546,3247.9742,104.3845,0,2024-12-05 05:57:59+00:00 +0x41fdbea2e52790c0a1dc374f07b628741f2e062d0002000000000000000006be,mainnet,ECLP-stdeUSD-deUSD,8851.28,6193.6345,3335.0340,9600.5916,7742.9322,1857.6597,71.9232,0,2024-12-05 01:25:11+00:00 +0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645,mainnet,weETH/rETH,8192.77,5732.8457,3086.9169,8886.3351,7257.8547,1628.4803,66.5724,0,2024-12-05 08:31:23+00:00 +0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5,mainnet,STG/USDC,7874.94,5510.4459,2967.1632,8541.5989,7023.7319,1517.8671,63.9898,0,2024-12-03 08:07:11+00:00 +0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462,mainnet,50rETH-50RPL,7554.59,5286.2828,2846.4600,8194.1297,6787.7528,1406.3768,61.3869,0,2024-12-04 16:46:59+00:00 +0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689,mainnet,sUSDe/USDC,6445.10,4509.9233,2428.4202,6990.7148,5970.4703,1020.2445,52.3713,0,2024-12-01 09:33:47+00:00 +0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a,mainnet,weETH/ezETH/rswETH,6207.47,4343.6430,2338.8847,6732.9682,5795.4251,937.5432,50.4405,0,2024-12-04 08:33:35+00:00 +0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b,mainnet,wstETH-rETH-sfrxETH-BPT,3878.45,2713.9241,1461.3437,4206.7831,4079.8015,126.9817,31.5153,0,2024-12-02 22:07:35+00:00 +0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617,mainnet,RDNT-WETH,2168.32,1517.2700,816.9915,2351.8806,2351.8808,0,17.6191,0,2024-12-05 06:58:47+00:00 +0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681,mainnet,pufETH/wstETH,2164.56,1514.6390,815.5748,2347.8026,2347.8026,0,17.5888,0,2024-12-04 12:15:11+00:00 +0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb,mainnet,20WETH-80ALCX,1736.24,1214.9244,654.1901,1883.2226,1883.2228,0,14.1082,0,2024-12-01 23:47:59+00:00 +0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1,mainnet,trenSTETH,1362.94,953.7098,513.5360,1478.3208,1478.3207,0,11.0750,0,2024-12-04 09:25:59+00:00 +0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c,mainnet,ETHx/wstETH,1346.84,942.4439,507.4698,1460.8579,1460.8579,0,10.9442,0,2024-12-03 00:11:11+00:00 +0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465,mainnet,50wstETH-50LDO,608.29,425.6476,229.1949,659.7853,0,659.7850,4.9429,0,2024-12-01 23:46:11+00:00 +0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558,mainnet,ankrETH/wstETH,562.45,393.5713,211.9230,610.0646,0,610.0648,4.5703,0,2024-11-26 15:47:11+00:00 +0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d,mainnet,rsETH / ETHx,317.74,222.3368,119.7198,0,0,0,-342.0566,0,2024-12-03 00:15:35+00:00 +0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de,mainnet,ECLP-wstETH-wETH,265.49,185.7752,100.0328,0,0,0,-285.8079,0,2024-12-01 09:49:47+00:00 +0x1d13531bf6344c102280ce4c458781fbf14dad140000000000000000000006df,mainnet,tETH/wstETH,161.41,112.9458,60.8169,0,0,0,-173.7627,0,2024-12-03 05:39:59+00:00 +0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b,mainnet,ECLP-GYD-sDAI,111.26,77.8536,41.9212,0,0,0,-119.7747,0,2024-11-30 02:25:59+00:00 +0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca,mainnet,swETH-WETH-BPT,78.44,54.8880,29.5551,0,0,0,-84.4430,0,2024-12-02 02:15:59+00:00 +0x8d93b853849b9884e2bb413444ec23eb5366ee910002000000000000000006b3,mainnet,ECLP-sUSDe-GYD,48.07,33.6367,18.1121,0,0,0,-51.7488,0,2024-12-04 10:05:11+00:00 +0xabc7d08ef73fe3fb67efd900f4471cca788b089900000000000000000000069d,mainnet,B-baoETH-rETH-BPT,40.40,28.2697,15.2221,0,0,0,-43.4918,0,2024-11-26 01:41:35+00:00 +0x8296057edb832feac03269e9fce8304ebcbabcaf00000000000000000000069c,mainnet,B-baoETH-wstETH-BPT,39.59,27.7029,14.9169,0,0,0,-42.6198,0,2024-11-26 19:59:59+00:00 +0xc683955059e98350de4e5dc1c75971bd640829bb0002000000000000000006e1,mainnet,ECLP-cbETH-wstETH,21.30,14.9046,8.0255,0,0,0,-22.9301,0,2024-11-29 22:54:47+00:00 +0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5,mainnet,qETH/WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-10-12 07:25:47+00:00 +0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a,mainnet,sDAI/3Pool,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-05 06:39:23+00:00 +0x740a691bd31c4176bcb6b8a7a40f1a723537d99d0000000000000000000006b6,mainnet,cdcETH/wstETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-05 06:40:47+00:00 +0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e,mainnet,uniETH-WETH,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-05 06:33:23+00:00 +0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034,gnosis,bb-WETH-wstETH,12290.88,14676.8879,7902.9396,22579.8275,15334.7787,7245.0488,0,0,2024-11-30 17:41:00+00:00 +0x4c42b5057a8663e2b1ac21685d1502c937a0381700020000000000000000019c,base,ECLP-WETH-USDC,6633.06,3797.0547,2044.5679,6068.4204,4121.2841,1947.1363,226.7977,0,2024-12-05 05:01:43+00:00 +0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023,base,rETH-WETH-BPT,2863.28,1639.0672,882.5746,2619.5431,1779.0266,840.5165,97.9013,0,2024-12-04 20:46:49+00:00 +0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118,base,weETH/wETH,333.93,191.1562,102.9303,0,0,0,-294.0864,0,2024-12-05 05:14:09+00:00 +0x54d86e177cdc664b5f9b17eb5fd6a76fa529e466000200000000000000000199,base,ECLP-cbETH-wstETH,22.08,12.6396,6.8059,0,0,0,-19.4455,0,2024-12-05 07:47:21+00:00 +0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046,base,USDC/USDbC/axlUSDC,12.68,7.2586,3.9085,0,0,0,-11.1671,0,2024-12-04 08:50:17+00:00 +0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c,avalanche,sAVAX-WAVAX-BPT,3251.52,2907.1902,1565.4101,4472.6003,3393.9038,1078.6965,0,0,2024-12-05 00:49:12+00:00 +0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d,avalanche,ggAVAX-WAVAX-BPT,381.51,341.1088,183.6740,524.7828,0,524.7828,0,0,2024-12-04 05:08:09+00:00 +0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd,arbitrum,RDNT-WETH,19093.06,8078.0173,4349.7016,13512.7249,9485.7237,4027.0011,1085.0059,0,2024-12-05 08:16:02+00:00 +0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558,arbitrum,ECLP-weETH-wstETH,3657.63,1547.4941,833.2661,2588.6132,2066.7641,521.8495,207.8530,0,2024-12-05 05:41:13+00:00 +0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516,arbitrum,ezETH/wstETH,3092.14,1308.2429,704.4385,2188.3992,1794.9639,393.4349,175.7178,0,2024-12-04 21:53:07+00:00 +0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef,arbitrum,rETH/wETH BPT,2217.17,938.0549,505.1065,1569.1570,1374.4141,194.7426,125.9957,0,2024-12-04 15:45:43+00:00 +0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4,arbitrum,50ANKR/50ankrETH,2111.57,893.3769,481.0491,1494.4205,1323.6581,170.7627,119.9945,0,2024-10-02 23:13:03+00:00 +0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498,arbitrum,wstETH-WETH-BPT,1630.28,689.7496,371.4036,1153.7976,1153.7975,0,92.6444,0,2024-12-04 14:42:35+00:00 +0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3,arbitrum,wstETH/sfrxETH,1484.27,627.9747,338.1402,1050.4619,1050.4616,0,84.3470,0,2024-12-03 07:21:35+00:00 +0xab297f94235de777b85024ed1208ff43852385d90000000000000000000005bb,arbitrum,wUSDL/GHO,1247.29,527.7117,284.1524,882.7441,0,882.7440,70.8800,0,2024-11-27 18:31:03+00:00 +0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc,arbitrum,sFRAX/4POOL,1176.81,497.8925,268.0960,832.8634,0,832.8635,66.8749,0,2024-12-03 03:35:13+00:00 +0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e,arbitrum,ECLP-wstETH-WETH,1106.42,468.1114,252.0600,783.0464,0,783.0462,62.8749,0,2024-12-04 20:40:25+00:00 +0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500,arbitrum,cbETH/rETH/wstETH,965.94,408.6762,220.0564,683.6245,0,683.6244,54.8918,0,2024-12-04 20:41:59+00:00 +0x90e6cb5249f5e1572afbf8a96d8a1ca6acffd73900000000000000000000055c,arbitrum,rsETH/wETH,687.86,291.0243,156.7054,0,0,0,-447.7297,0,2024-12-04 23:51:20+00:00 +0xf13758d6edd1937dcb3f4fe75889b579d400299a000000000000000000000595,arbitrum,weETH/wETH,675.37,285.7400,153.8600,0,0,0,-439.6000,0,2024-12-05 07:46:48+00:00 +0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480,arbitrum,ankrETH/wstETH-BPT,529.78,224.1428,120.6923,0,0,0,-344.8351,0,2024-12-04 11:31:49+00:00 +0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c,arbitrum,ETHx/wstETH,419.34,177.4171,95.5323,0,0,0,-272.9494,0,2024-12-04 09:42:05+00:00 +0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496,arbitrum,4POOL-BPT,366.24,154.9512,83.4353,0,0,0,-238.3865,0,2024-12-02 10:14:29+00:00 +0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a,arbitrum,ECLP-WOETH-WETH,154.62,65.4176,35.2249,0,0,0,-100.6425,0,2024-12-04 17:40:48+00:00 +0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514,arbitrum,ECLP-AUSDC-AUSDT,129.10,54.6205,29.4110,0,0,0,-84.0315,0,2024-12-04 23:21:43+00:00 +0x38161e9efb8de52d00a1eb0f773223fd28fdd7c20002000000000000000005a0,arbitrum,ECLP-GHO-USDe-rh,122.72,51.9212,27.9576,0,0,0,-79.8787,0,2024-12-04 04:41:05+00:00 +0x6e822c64c00393b2078f2a5bb75c575ab505b55c000200000000000000000548,arbitrum,ECLP-GYD-AUSDC,66.36,28.0760,15.1179,0,0,0,-43.1939,0,2024-12-04 21:50:47+00:00 +0x46472cba35e6800012aa9fcc7939ff07478c473e00020000000000000000056c,arbitrum,ECLP-GHO-AUSDC,54.81,23.1894,12.4866,0,0,0,-35.6760,0,2024-12-05 01:36:22+00:00 +0x7272163a931dac5bbe1cb5fefaf959bb65f7346f000200000000000000000549,arbitrum,ECLP-GYD-AUSDT,42.43,17.9516,9.6662,0,0,0,-27.6178,0,2024-12-04 22:11:01+00:00 +0xa899c63ba9ff275d6bfc83e43ee8e58ff6987584000200000000000000000594,arbitrum,ECLP-rETH-wstETH,27.33,11.5630,6.2262,0,0,0,-17.7892,0,2024-12-02 14:05:25+00:00 +0xdeeaf8b0a8cf26217261b813e085418c7dd8f1ee00020000000000000000058f,arbitrum,ECLP-sUSDe-GYD,22.66,9.5871,5.1623,0,0,0,-14.7494,0,2024-12-04 23:19:37+00:00 +0x8d58755ca11d2c7273fed72aeb637e38a66c228c00000000000000000000058c,arbitrum,sUSX/USDC,0.00,0.0000,0.0000,0,0,0,0.0000,0,2024-11-20 12:20:15+00:00 diff --git a/MaxiOps/gasStation/2024-04/lm/add_gosuto_polygon.json b/MaxiOps/gasStation/2024-04/lm/add_gosuto_polygon.json new file mode 100644 index 000000000..a85668baf --- /dev/null +++ b/MaxiOps/gasStation/2024-04/lm/add_gosuto_polygon.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1716469459372, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x486bccb7ad111919e886375cb42a1e17017a6c4a6f8850adc15cbfe75f24d2c3" + }, + "transactions": [ + { + "to": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipients", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "minBalanceWei", + "type": "uint96", + "internalType": "uint96" + }, + { + "name": "topUpToAmountWei", + "type": "uint96", + "internalType": "uint96" + } + ], + "name": "addRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0x11761c7b08287d9489CD84C04DF6852F5C07107b]", + "minBalanceWei": "15000000000000000000", + "topUpToAmountWei": "20000000000000000000" + } + } + ] +} diff --git a/MaxiOps/gasStation/2024-04/lm/add_gosuto_polygon.report.txt b/MaxiOps/gasStation/2024-04/lm/add_gosuto_polygon.report.txt new file mode 100644 index 000000000..084bac8f4 --- /dev/null +++ b/MaxiOps/gasStation/2024-04/lm/add_gosuto_polygon.report.txt @@ -0,0 +1,22 @@ +FILENAME: `MaxiOps/gasStation/2024-04/lm/add_gosuto_polygon.json` +MULTISIG: `multisigs/lm (polygon:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `566002d17dd35067e49e4638a5a7d060e25633e7` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/6219bcd2-e120-4b8f-8e07-71e4e27ed96c) +``` ++---------------+---------------------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=====================================================================+=========+============================================================================+==============+============+ +| addRecipients | 0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0x11761c7b08287d9489CD84C04DF6852F5C07107b (EOA/maxis/gosuto)" | | | +| | | | ], | | | +| | | | "minBalanceWei": [ | | | +| | | | "15000000000000000000" | | | +| | | | ], | | | +| | | | "topUpToAmountWei": [ | | | +| | | | "raw:20000000000000000000, 18 decimals:20, 6 decimals: 20000000000000" | | | +| | | | ] | | | +| | | | } | | | ++---------------+---------------------------------------------------------------------+---------+----------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/gasStation/2024-04/lm/replace_oz_relayer_polygon.json b/MaxiOps/gasStation/2024-04/lm/replace_oz_relayer_polygon.json new file mode 100644 index 000000000..105faf0f0 --- /dev/null +++ b/MaxiOps/gasStation/2024-04/lm/replace_oz_relayer_polygon.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "137", + "createdAt": 1714061627633, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x8aa01a7bc97fa81ff62206cb12b288ac20601893e6fbe0f971ff6187c4f5d296" + }, + "transactions": [ + { + "to": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipients", + "type": "address[]", + "internalType": "address[]" + } + ], + "name": "removeRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0xe9735f7D85a57BFb860c1E2c1c7B4F587BA0F6e7]" + } + }, + { + "to": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipients", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "minBalanceWei", + "type": "uint96", + "internalType": "uint96" + }, + { + "name": "topUpToAmountWei", + "type": "uint96", + "internalType": "uint96" + } + ], + "name": "addRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0xfb7d0D001BC8D0bC998071C762BfF53EE31b725F]", + "minBalanceWei": "15000000000000000000", + "topUpToAmountWei": "20000000000000000000" + } + } + ] +} diff --git a/MaxiOps/gasStation/2024-04/lm/replace_oz_relayer_polygon.report.txt b/MaxiOps/gasStation/2024-04/lm/replace_oz_relayer_polygon.report.txt new file mode 100644 index 000000000..be0275329 --- /dev/null +++ b/MaxiOps/gasStation/2024-04/lm/replace_oz_relayer_polygon.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/gasStation/2024-04/lm/replace_oz_relayer_polygon.json` +MULTISIG: `multisigs/lm (polygon:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b1343ac6c0766bcfae1502719cad3a365931c64a` +CHAIN(S): `polygon` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9b73c116-a81f-43ea-8710-759fb1aca945) +``` ++------------------+---------------------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=====================================================================+=========+===================================================================================+==============+============+ +| removeRecipients | 0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0xe9735f7D85a57BFb860c1E2c1c7B4F587BA0F6e7 (EOA/keepers/old_oz_relayer_v1) " | | | +| | | | ] | | | +| | | | } | | | ++------------------+---------------------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| addRecipients | 0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0xfb7d0D001BC8D0bC998071C762BfF53EE31b725F (EOA/keepers/oz_relayer_v2) " | | | +| | | | ], | | | +| | | | "minBalanceWei": [ | | | +| | | | "15000000000000000000" | | | +| | | | ], | | | +| | | | "topUpToAmountWei": [ | | | +| | | | "raw:20000000000000000000, 18 decimals:20, 6 decimals: 20000000000000" | | | +| | | | ] | | | +| | | | } | | | ++------------------+---------------------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/gasStation/2024-04/lm/withdraw_gas_lz_poker_mainnet.json b/MaxiOps/gasStation/2024-04/lm/withdraw_gas_lz_poker_mainnet.json new file mode 100644 index 000000000..864d43c35 --- /dev/null +++ b/MaxiOps/gasStation/2024-04/lm/withdraw_gas_lz_poker_mainnet.json @@ -0,0 +1,41 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714062062268, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xf0714692670b0a3bd04892d7ab013338695df1b2cabd731efa85989dce636228" + }, + "transactions": [ + { + "to": "0xdDd5FF0E581f097573B13f247F6BE736f602F839", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "withdrawGasToken", + "payable": false + }, + "contractInputsValues": { + "amount": "313000000000000000" + } + }, + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "313000000000000000", + "data": null, + "contractMethod": null, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/gasStation/2024-04/lm/withdraw_gas_lz_poker_mainnet.report.txt b/MaxiOps/gasStation/2024-04/lm/withdraw_gas_lz_poker_mainnet.report.txt new file mode 100644 index 000000000..b1c2be24e --- /dev/null +++ b/MaxiOps/gasStation/2024-04/lm/withdraw_gas_lz_poker_mainnet.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/gasStation/2024-04/lm/withdraw_gas_lz_poker_mainnet.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `b1343ac6c0766bcfae1502719cad3a365931c64a` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/6cd14b48-97a7-4066-85ed-03514f979adb) +``` ++------------------+------------------------------------------------------------------------------+---------------------------------+---------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+==============================================================================+=================================+===========================================================================+==============+============+ +| withdrawGasToken | 0xdDd5FF0E581f097573B13f247F6BE736f602F839 (maxiKeepers/LZRateProviderPoker) | 0 | { | N/A | N/A | +| | | | "amount": [ | | | +| | | | "raw:313000000000000000, 18 decimals:0.313, 6 decimals: 313000000000" | | | +| | | | ] | | | +| | | | } | | | ++------------------+------------------------------------------------------------------------------+---------------------------------+---------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 313000000000000000/1e18 = 0.313 | "N/A" | N/A | N/A | ++------------------+------------------------------------------------------------------------------+---------------------------------+---------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/gasStation/2024-04/lm/withdraw_lz_second.json b/MaxiOps/gasStation/2024-04/lm/withdraw_lz_second.json new file mode 100644 index 000000000..ec4f6da22 --- /dev/null +++ b/MaxiOps/gasStation/2024-04/lm/withdraw_lz_second.json @@ -0,0 +1,41 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714212856543, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x3814afed5343b1adbae3155693b1df752a6cc8ab539ace1a47addc90b24bfd06" + }, + "transactions": [ + { + "to": "0xdDd5FF0E581f097573B13f247F6BE736f602F839", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "withdrawGasToken", + "payable": false + }, + "contractInputsValues": { + "amount": "400000000000000000" + } + }, + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "400000000000000000", + "data": null, + "contractMethod": null, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/gasStation/2024-04/lm/withdraw_lz_second.report.txt b/MaxiOps/gasStation/2024-04/lm/withdraw_lz_second.report.txt new file mode 100644 index 000000000..6a59824fc --- /dev/null +++ b/MaxiOps/gasStation/2024-04/lm/withdraw_lz_second.report.txt @@ -0,0 +1,20 @@ +FILENAME: `MaxiOps/gasStation/2024-04/lm/withdraw_lz_second.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `1a6474d448f5996b38bb7dca699bbd2687060c98` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/9bb13c3c-87d7-4f9a-89b3-5004a55e72da) +``` ++------------------+------------------------------------------------------------------------------+-------------------------------+---------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+==============================================================================+===============================+===========================================================================+==============+============+ +| withdrawGasToken | 0xdDd5FF0E581f097573B13f247F6BE736f602F839 (maxiKeepers/LZRateProviderPoker) | 0 | { | N/A | N/A | +| | | | "amount": [ | | | +| | | | [ | | | +| | | | "raw:400000000000000000, 18 decimals:0.4, 6 decimals: 400000000000" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++------------------+------------------------------------------------------------------------------+-------------------------------+---------------------------------------------------------------------------+--------------+------------+ +| !!N/A!! | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 400000000000000000/1e18 = 0.4 | "N/A" | N/A | N/A | ++------------------+------------------------------------------------------------------------------+-------------------------------+---------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/gasStation/2024-04/maxi_ops/remove_lz_from_gasstation.json b/MaxiOps/gasStation/2024-04/maxi_ops/remove_lz_from_gasstation.json new file mode 100644 index 000000000..b2fd57064 --- /dev/null +++ b/MaxiOps/gasStation/2024-04/maxi_ops/remove_lz_from_gasstation.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714551758998, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xce55267f53eeafa6f649b64a0e04bcd22aab9b7a5b8758d1e2cd0ddb1a011a57" + }, + "transactions": [ + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipients", + "type": "address[]", + "internalType": "address[]" + } + ], + "name": "removeRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0xdDd5FF0E581f097573B13f247F6BE736f602F839]" + } + } + ] +} diff --git a/MaxiOps/gasStation/2024-04/maxi_ops/remove_lz_from_gasstation.report.txt b/MaxiOps/gasStation/2024-04/maxi_ops/remove_lz_from_gasstation.report.txt new file mode 100644 index 000000000..e933fc806 --- /dev/null +++ b/MaxiOps/gasStation/2024-04/maxi_ops/remove_lz_from_gasstation.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/gasStation/2024-04/maxi_ops/remove_lz_from_gasstation.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `1a6474d448f5996b38bb7dca699bbd2687060c98` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/34f44c78-318e-4480-9df4-eb7a0c06b211) +``` ++------------------+---------------------------------------------------------------------+---------+-------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=====================================================================+=========+=====================================================================================+==============+============+ +| removeRecipients | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0xdDd5FF0E581f097573B13f247F6BE736f602F839 (maxiKeepers/LZRateProviderPoker) " | | | +| | | | ] | | | +| | | | } | | | ++------------------+---------------------------------------------------------------------+---------+-------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/gasStation/2024-04/maxi_ops/remove_oz_v1_relayer_mainnet.json b/MaxiOps/gasStation/2024-04/maxi_ops/remove_oz_v1_relayer_mainnet.json new file mode 100644 index 000000000..65f1da24b --- /dev/null +++ b/MaxiOps/gasStation/2024-04/maxi_ops/remove_oz_v1_relayer_mainnet.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1714061184947, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0xbc51ec7b89aa8dd59683ec70ee62cae3372760ff6b9e64b7b7bc700dd871190c" + }, + "transactions": [ + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipients", + "type": "address[]", + "internalType": "address[]" + } + ], + "name": "removeRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0xe9735f7D85a57BFb860c1E2c1c7B4F587BA0F6e7]" + } + } + ] +} diff --git a/MaxiOps/gasStation/2024-04/maxi_ops/remove_oz_v1_relayer_mainnet.report.txt b/MaxiOps/gasStation/2024-04/maxi_ops/remove_oz_v1_relayer_mainnet.report.txt new file mode 100644 index 000000000..5ef7a0b40 --- /dev/null +++ b/MaxiOps/gasStation/2024-04/maxi_ops/remove_oz_v1_relayer_mainnet.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/gasStation/2024-04/maxi_ops/remove_oz_v1_relayer_mainnet.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `b1343ac6c0766bcfae1502719cad3a365931c64a` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/45e4973c-597f-41cb-854e-81768d628f57) +``` ++------------------+---------------------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+=====================================================================+=========+===================================================================================+==============+============+ +| removeRecipients | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0xe9735f7D85a57BFb860c1E2c1c7B4F587BA0F6e7 (EOA/keepers/old_oz_relayer_v1) " | | | +| | | | ] | | | +| | | | } | | | ++------------------+---------------------------------------------------------------------+---------+-----------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/gasStation/2024-06/add_gosuto_deployer.json b/MaxiOps/gasStation/2024-06/add_gosuto_deployer.json new file mode 100644 index 000000000..21df26c27 --- /dev/null +++ b/MaxiOps/gasStation/2024-06/add_gosuto_deployer.json @@ -0,0 +1,61 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1717673716137, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x9756499a867fe0c6e0730e942c582dcdd8be167e8b151c555c27b809e3287deb" + }, + "transactions": [ + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipients", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "minBalanceWei", + "type": "uint96", + "internalType": "uint96" + }, + { + "name": "topUpToAmountWei", + "type": "uint96", + "internalType": "uint96" + } + ], + "name": "addRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0x4BC8121278056BFCaC2BD14D455659224d6dDf48]", + "minBalanceWei": "250000000000000000", + "topUpToAmountWei": "1000000000000000000" + } + }, + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + } + } + ] +} diff --git a/MaxiOps/gasStation/2024-06/add_gosuto_deployer.report.txt b/MaxiOps/gasStation/2024-06/add_gosuto_deployer.report.txt new file mode 100644 index 000000000..caabaa319 --- /dev/null +++ b/MaxiOps/gasStation/2024-06/add_gosuto_deployer.report.txt @@ -0,0 +1,27 @@ +FILENAME: `MaxiOps/gasStation/2024-06/add_gosuto_deployer.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `3829086fcb825cb1f94b2caf3175018cc235379a` +CHAIN(S): `mainnet` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7df59b5c-fefe-4b74-9a69-c288c6c21d96) +``` ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +| addRecipients | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0x4BC8121278056BFCaC2BD14D455659224d6dDf48 (EOA/maxi_deployers/gosuto)" | | | +| | | | ], | | | +| | | | "minBalanceWei": [ | | | +| | | | "250000000000000000" | | | +| | | | ], | | | +| | | | "topUpToAmountWei": [ | | | +| | | | "raw:1000000000000000000, 18 decimals:1, 6 decimals: 1000000000000" | | | +| | | | ] | | | +| | | | } | | | +| transferOwnership | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/vote_incentive_recycling)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+---------------------------------------------------------------------+-------+---------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/gasStation/2024-12/remove-tritium-gas-station.json b/MaxiOps/gasStation/2024-12/remove-tritium-gas-station.json new file mode 100644 index 000000000..5da9e23b5 --- /dev/null +++ b/MaxiOps/gasStation/2024-12/remove-tritium-gas-station.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734377975589, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x9f323d7c9dc7e95992feeeb8aaad2fb0b2a4173ae6d902995f3f0aa838976b30" + }, + "transactions": [ + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "recipients", + "type": "address[]", + "internalType": "address[]" + } + ], + "name": "removeRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0x53a806789BBfd366d9dEB9Cbe5d622089e845fdb]" + } + } + ] +} diff --git a/MaxiOps/gasStation/2024-12/remove-tritium-gas-station.report.txt b/MaxiOps/gasStation/2024-12/remove-tritium-gas-station.report.txt new file mode 100644 index 000000000..50e0834b8 --- /dev/null +++ b/MaxiOps/gasStation/2024-12/remove-tritium-gas-station.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/gasStation/2024-12/remove-tritium-gas-station.json` +MULTISIG: `multisigs/maxi_omni (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `338c0c577b203aa12ec4f3d11c37fada53647fbb` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f92e544c-4d54-40ac-98b6-5897bab019e4) + +``` ++------------------+---------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------+---------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +| removeRecipients | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0x53a806789BBfd366d9dEB9Cbe5d622089e845fdb (EOA/maxi_deployers/tritium)" | | | +| | | | ] | | | +| | | | } | | | ++------------------+---------------------------------------------------------------------+-------+-------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/gasStation/refills/top-up-gas-station-2024-10-01.json b/MaxiOps/gasStation/refills/top-up-gas-station-2024-10-01.json new file mode 100644 index 000000000..a40393c4b --- /dev/null +++ b/MaxiOps/gasStation/refills/top-up-gas-station-2024-10-01.json @@ -0,0 +1,22 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727804408, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "10000000000000000000", + "data": null, + "contractMethod": null, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/gasStation/refills/top-up-gas-station-2024-10-01.report.txt b/MaxiOps/gasStation/refills/top-up-gas-station-2024-10-01.report.txt new file mode 100644 index 000000000..40f6678f5 --- /dev/null +++ b/MaxiOps/gasStation/refills/top-up-gas-station-2024-10-01.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/gasStation/refills/top-up-gas-station-2024-10-01.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `4779c1b5ba1af6b0dd9d16c7bd405a07aa894057` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/da871dcf-b153-4165-b69d-bcf99c946c16) + +``` ++---------+---------------------------------------------------------------------+----------------------------------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------------------+----------------------------------+--------+------------+----------+ +| !!N/A!! | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 10000000000000000000/1e18 = 10.0 | "N/A" | N/A | N/A | ++---------+---------------------------------------------------------------------+----------------------------------+--------+------------+----------+ +``` diff --git a/MaxiOps/gasStation/refills/top-up-gas-station-2024-12-11.json b/MaxiOps/gasStation/refills/top-up-gas-station-2024-12-11.json new file mode 100644 index 000000000..b73256a72 --- /dev/null +++ b/MaxiOps/gasStation/refills/top-up-gas-station-2024-12-11.json @@ -0,0 +1,22 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733900168, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x7fb8f5D04b521B6880158819E69538655AABD5c4", + "value": "10000000000000000000", + "data": null, + "contractMethod": null, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/gasStation/refills/top-up-gas-station-2024-12-11.report.txt b/MaxiOps/gasStation/refills/top-up-gas-station-2024-12-11.report.txt new file mode 100644 index 000000000..6ea8b2500 --- /dev/null +++ b/MaxiOps/gasStation/refills/top-up-gas-station-2024-12-11.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/gasStation/refills/top-up-gas-station-2024-12-11.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `6e7d992dee163710aeabcfe0d8eb58b11357dfeb` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5d26f83c-e217-41e2-93e3-1c69c3b0226c) + +``` ++---------+---------------------------------------------------------------------+----------------------------------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------------------+----------------------------------+--------+------------+----------+ +| !!N/A!! | 0x7fb8f5D04b521B6880158819E69538655AABD5c4 (maxiKeepers/gasStation) | 10000000000000000000/1e18 = 10.0 | "N/A" | N/A | N/A | ++---------+---------------------------------------------------------------------+----------------------------------+--------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-04.json b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-04.json new file mode 100644 index 000000000..143e44305 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-04.json @@ -0,0 +1,169 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1698450039804, + "meta": { + "name": "", + "description": "July Arbi Bribs from Lido", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x8d89593c199Cb763bDEF04529F978f82503E4669", + "rawAmount": "7500000000000000000000" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "3750000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "1875000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "1875000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-04.report.txt b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-04.report.txt new file mode 100644 index 000000000..aac68fe60 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-04.report.txt @@ -0,0 +1,36 @@ +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-07-04.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `9c9b45d0c8ad6f9afb255b65d08a8964a7ded5ae` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/1468e4a2-902f-4674-8ed3-15c20d92afe0) +``` ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | a-Gyroe wstETH/WETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 1 | 1 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 3750.0(3750000000000000000000) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | a-Gyroe weETH/wstETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 1 | 2 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 1875.0(1875000000000000000000) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-ComposableStable ezETH/wstETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 1 | 3 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 1875.0(1875000000000000000000) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-07-04.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `9c9b45d0c8ad6f9afb255b65d08a8964a7ded5ae` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/30038c38-671e-4439-b032-ff3c89640a90) +``` ++---------+---------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| approve | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x8d89593c199Cb763bDEF04529F978f82503E4669 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:7500000000000000000000, 18 decimals:7500, 6 decimals: 7500000000000000" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-05-aura-direct.json b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-05-aura-direct.json new file mode 100644 index 000000000..9ddf46e31 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-05-aura-direct.json @@ -0,0 +1,93 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1698450039804, + "meta": { + "name": "", + "description": "July $ARB Direct payments", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "description": "wstETH/ETH ECLP ExtraRewardsStash - Arbitrum AURA PID 68", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xfb293d5ce33cc37df1fe6b255d2ca4a7c32a1262", + "amount": "1875000000000000000000" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "description": "weETH/wstETH ECLP ExtraRewardsStash - Arbitrum AURA PID 67", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x034b005153523b3dc1a6657db8e1f7f656c86e0f", + "amount": "937500000000000000000" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "description": "ezETH/wstETH ECLP ExtraRewardsStash - Arbitrum AURA PID 54", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x9758414c8c9e6378c37eb7d2d27c9dc94615db60", + "amount": "937500000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-05-aura-direct.report.txt b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-05-aura-direct.report.txt new file mode 100644 index 000000000..dc1b4c843 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-05-aura-direct.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-07-05-aura-direct.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `9c9b45d0c8ad6f9afb255b65d08a8964a7ded5ae` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d8276654-9ce8-4feb-a1c1-9dd0049e1298) +``` ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0xfB293D5ce33cc37DF1FE6B255D2cA4a7C32a1262 | 1875.0 (RAW: 1875000000000000000000) | N/A | 0 | +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0x034B005153523b3Dc1a6657DB8E1F7f656C86e0f | 937.5 (RAW: 937500000000000000000) | N/A | 1 | +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0x9758414C8C9e6378C37EB7D2D27c9dc94615DB60 | 937.5 (RAW: 937500000000000000000) | N/A | 2 | ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-19.json b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-19.json new file mode 100644 index 000000000..e18d340e8 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-19.json @@ -0,0 +1,169 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1698450039804, + "meta": { + "name": "", + "description": "July Arbi Bribs from Lido/ second part", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x8d89593c199Cb763bDEF04529F978f82503E4669", + "rawAmount": "15000000000000000000000" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "7500000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "3750000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "3750000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "1" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-19.report.txt b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-19.report.txt new file mode 100644 index 000000000..9efe795c5 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-19.report.txt @@ -0,0 +1,36 @@ +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-07-19.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `0dcbc038f63098030a968227e15951105cacf4db` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/6a712e4f-20ad-4def-be9b-d53bfe5f8a82) +``` ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | a-Gyroe wstETH/WETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 1 | 1 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 7500.0(7500000000000000000000) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | a-Gyroe weETH/wstETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 1 | 2 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 3750.0(3750000000000000000000) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-ComposableStable ezETH/wstETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 1 | 3 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 3750.0(3750000000000000000000) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-07-19.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `0dcbc038f63098030a968227e15951105cacf4db` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/4ce54aa0-8f70-4ca4-9a56-08061a418d9f) +``` ++---------+---------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x8d89593c199Cb763bDEF04529F978f82503E4669 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:15000000000000000000000, 18 decimals:15000, 6 decimals: 15000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-22-3750-to-beefy.json b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-22-3750-to-beefy.json new file mode 100644 index 000000000..610101b4f --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-22-3750-to-beefy.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x12f0520DAFd65e6468d4dD4F79dd15b6589cb76a", + "amount": "3750000000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-22-3750-to-beefy.report.txt b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-22-3750-to-beefy.report.txt new file mode 100644 index 000000000..b750f3d29 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-07-22-3750-to-beefy.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-07-22-3750-to-beefy.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `2f6aeb6449627dcdcbbc9c8ada322f011b2a78a7` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/33830208-b9bd-4bda-ba09-31f5f489f9e1) +``` ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0x12f0520DAFd65e6468d4dD4F79dd15b6589cb76a | 3750.0 (RAW: 3750000000000000000000) | N/A | 0 | ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-01-august-bribs.json b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-01-august-bribs.json new file mode 100644 index 000000000..5979df7b5 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-01-august-bribs.json @@ -0,0 +1,169 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1698450039804, + "meta": { + "name": "", + "description": "August Arbi Bribs from Lido", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x8d89593c199Cb763bDEF04529F978f82503E4669", + "rawAmount": "24000000000000000000000" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "12000000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "6000000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x928b06229a3f4Bc7806d80Fe54e48E777BB74536", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "6000000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-01-august-bribs.report.txt b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-01-august-bribs.report.txt new file mode 100644 index 000000000..2395d3cb9 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-01-august-bribs.report.txt @@ -0,0 +1,36 @@ +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-08-01-august-bribs.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `ddca2c11df944f3e703176b4a5209100ffba0204` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0e7044d4-f8a8-4c80-b1a3-3b9f6f06fd05) +``` ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | a-Gyroe wstETH/WETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 2 | 1 | +| | 0x7967fa58b9501600d96bd843173b9334983ee6e600020000000000000000056e | 12000.0(12000000000000000000000) | 0x9211c605c0a7fa383d5bb82f1c30a0fa01dc7a5293ab31d7bac36d29d84a540f | | | +| depositBribe | a-Gyroe weETH/wstETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 2 | 2 | +| | 0xcdcef9765d369954a4a936064535710f7235110a000200000000000000000558 | 6000.0(6000000000000000000000) | 0x453430b3fcee27035fac06f6b70875101fb394e6658059f35cf7faeebc1323c3 | | | +| depositBribe | a-ComposableStable ezETH/wstETH | ARB(0x912CE59144191C1204E64559FE8253a0e49E6548) | aura | 2 | 3 | +| | 0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516 | 6000.0(6000000000000000000000) | 0x35f0db0217e1509c9edc86b7b4017a5d9d2b4d68a3e3388e97ee3597dc27422f | | | ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-08-01-august-bribs.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `ddca2c11df944f3e703176b4a5209100ffba0204` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d4830e80-cc27-491c-9694-118865df8bcc) +``` ++---------+---------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+---------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x8d89593c199Cb763bDEF04529F978f82503E4669 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:24000000000000000000000, 18 decimals:24000, 6 decimals: 24000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++---------+---------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-05-beefy-direct.json b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-05-beefy-direct.json new file mode 100644 index 000000000..52295d9a0 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-05-beefy-direct.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722873476153, + "meta": { + "name": "Transactions Batch", + "description": "Payment", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x6B970F0D1F0255b8E0B1c4515Ae827931b32312C", + "value": "1500000000000000000000" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xfcF293AFa58fa277935eddAa44E0f782EC41B09B", + "value": "1500000000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-05-beefy-direct.report.txt b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-05-beefy-direct.report.txt new file mode 100644 index 000000000..76f587398 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-08-05-beefy-direct.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-08-05-beefy-direct.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `497aa47b8a91396dfc23843706954a46890f8cd0` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ecb532c7-4c93-4470-b707-ffd6e69ef908) +``` ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0x6B970F0D1F0255b8E0B1c4515Ae827931b32312C | 1500.0 (RAW: 1500000000000000000000) | N/A | 0 | +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0xfcF293AFa58fa277935eddAa44E0f782EC41B09B | 1500.0 (RAW: 1500000000000000000000) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-09-04-beefy-direct.json b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-09-04-beefy-direct.json new file mode 100644 index 000000000..5937a8036 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-09-04-beefy-direct.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722873476153, + "meta": { + "name": "Transactions Batch", + "description": "Payment", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x6B970F0D1F0255b8E0B1c4515Ae827931b32312C", + "value": "3000000000000000000000" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0xfcF293AFa58fa277935eddAa44E0f782EC41B09B", + "value": "3000000000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-09-04-beefy-direct.report.txt b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-09-04-beefy-direct.report.txt new file mode 100644 index 000000000..a8e40699f --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/ARB/2024-09-04-beefy-direct.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/00partnerLM/LIDO/ARB/2024-09-04-beefy-direct.json` +MULTISIG: `multisigs/lido_partner_lm (arbitrum:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `34efd177f77f696257060e944e86b2289b8c92f4` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/76f58d18-083c-4833-9738-a27768809927) +``` ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0x6B970F0D1F0255b8E0B1c4515Ae827931b32312C | 3000.0 (RAW: 3000000000000000000000) | N/A | 0 | +| transfer | ARB:0x912CE59144191C1204E64559FE8253a0e49E6548 | N/A:0xfcF293AFa58fa277935eddAa44E0f782EC41B09B | 3000.0 (RAW: 3000000000000000000000) | N/A | 1 | ++----------+------------------------------------------------+------------------------------------------------+--------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/OP/2024-07-04.json b/MaxiOps/injectorScheduling/00partnerLM/LIDO/OP/2024-07-04.json new file mode 100644 index 000000000..3538de064 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/OP/2024-07-04.json @@ -0,0 +1,84 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1698450039804, + "meta": { + "name": "", + "description": "July OP Bribs from Lido", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1", + "createdFromOwnerAddress": "", + "checksum": "" + }, + + "transactions": [ + { + "to": "0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xa9b08B4CeEC1EF29EdEC7F9C94583270337D6416", + "rawAmount": "2470000000000000000" + } + }, + { + "to": "0x679c5C5828367db9005FdEa80faA45AE7B881791", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xfc150eb9ea72bc5bf3a9590a0aeeb1c4b48e468817d9ddb867b47f68652a30a2", + "_token": "0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb", + "_amount": "2470000000000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/LIDO/OP/2024-07-04.report.txt b/MaxiOps/injectorScheduling/00partnerLM/LIDO/OP/2024-07-04.report.txt new file mode 100644 index 000000000..40844ecfc --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/LIDO/OP/2024-07-04.report.txt @@ -0,0 +1,32 @@ +FILENAME: `MaxiOps/00partnerLM/LIDO/OP/2024-07-04.json` +MULTISIG: `multisigs/lido_partner_lm (optimism:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `9c9b45d0c8ad6f9afb255b65d08a8964a7ded5ae` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/622f2dae-656e-404d-a6a6-6e8f8817d3a0) +``` ++--------------+--------------------------------------------------------------------+-----------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+-----------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | o-ComposableStable wstETH/weETH | wstETH(0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb) | aura | 2 | 1 | +| | 0x2bb4712247d5f451063b5e4f6948abdfb925d93d000000000000000000000136 | 2.47(2470000000000000000) | 0xfc150eb9ea72bc5bf3a9590a0aeeb1c4b48e468817d9ddb867b47f68652a30a2 | | | ++--------------+--------------------------------------------------------------------+-----------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/00partnerLM/LIDO/OP/2024-07-04.json` +MULTISIG: `multisigs/lido_partner_lm (optimism:0xeD2Bc4e72Ed7D61FA4812a6B0E3d16F8Ad8369a1)` +COMMIT: `9c9b45d0c8ad6f9afb255b65d08a8964a7ded5ae` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/258d7cd0-b6b1-4a08-8086-6fa49ed80d17) +``` ++---------+--------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| approve | 0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xa9b08B4CeEC1EF29EdEC7F9C94583270337D6416 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:2470000000000000000, 18 decimals:2.47, 6 decimals: 2470000000000" | | | +| | | | ] | | | +| | | | } | | | ++---------+--------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/Rocketpool/Mainnet-RPL-rETH-USDC-Injection-2Weeks.json b/MaxiOps/injectorScheduling/00partnerLM/Rocketpool/Mainnet-RPL-rETH-USDC-Injection-2Weeks.json new file mode 100644 index 000000000..93f3ca3a4 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/Rocketpool/Mainnet-RPL-rETH-USDC-Injection-2Weeks.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730314023927, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x8d07b88eb45bbaf9e616080cfc0d823c1d5d5a2a5d691a174f0fff4cbe7bf623" + }, + "transactions": [ + { + "to": "0x80D737BF3973D92a1B5FC4b166F89cb9e7445632", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "gaugeAddresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amountsPerPeriod", + "type": "uint256[]" + }, + { "internalType": "uint8[]", "name": "maxPeriods", "type": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x2c2179abce3413e27bda6917f60ae37f96d01826]", + "amountsPerPeriod": "[831600000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/Rocketpool/Mainnet-RPL-rETH-USDC-Injection-2Weeks.report.txt b/MaxiOps/injectorScheduling/00partnerLM/Rocketpool/Mainnet-RPL-rETH-USDC-Injection-2Weeks.report.txt new file mode 100644 index 000000000..a92b0c117 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/Rocketpool/Mainnet-RPL-rETH-USDC-Injection-2Weeks.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/00partnerLM/Rocketpool/Mainnet-RPL-rETH-USDC-Injection-2Weeks.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `a3407dd613dfbf7e74184a06605f659e75610a1b` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0f8272ec-a6f3-4791-b25c-445274918e24) + +``` ++------------------+------------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------+--------------------------+---------+----------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+------------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------+--------------------------+---------+----------------------------+----------+ +| setRecipientList | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632(maxiKeepers/gaugeRewardsInjectors/usdc) | USDC | [ | [ | [ | raw: 831600000/1e6 = 831.6 | 0 | +| | | | "0x2c2179abce3413e27bda6917f60ae37f96d01826 (Balancer 50rETH-50RPL Gauge Deposit)" | "831600000/1e6 = 831.6" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+------------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------+--------------------------+---------+----------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-09.json b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-09.json new file mode 100644 index 000000000..9b5f424fd --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-09.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722608476993, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x21a8725f6a00ae907f9375550ab89c4d5ab6e6e2cd3d88b4d0e2f5ee3de025f3" + }, + "transactions": [ + { + "to": "0xE23eb92f0C76bF47f77F80D144e30F31b98450A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2, 0x6e654787251ae77Fe1873f93A5f220E00afa90E8]", + "amountsPerPeriod": "[6250000000000000000000, 17500000000000000000000]", + "maxPeriods": "[2, 2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-09.report.txt b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-09.report.txt new file mode 100644 index 000000000..732800cc9 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-09.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/00partnerLM/TokenLogic/ARB/GHO-2024-09-09.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `c4ee7b9a1571dc7a6ee8e73ee0b7c249e84b217e` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/85e925b3-6b69-4e3b-bee4-30574b59c4dd) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9(maxiKeepers/gaugeRewardsInjectors/arb_aave_injector) | ARB | [ | [ | [ | raw: 23750000000000000000000/1e18 = 23750.0 | 0 | +| | | | "0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2 (gauges/GHO/USDC/USDT-gauge-7d90)", | "6250000000000000000000/1e18 = 6250.0", | "2", | | | +| | | | "0x6e654787251ae77Fe1873f93A5f220E00afa90E8 (gauges/ECLP-GHO-AUSDC-gauge-6e65)" | "17500000000000000000000/1e18 = 17500.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-24.json b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-24.json new file mode 100644 index 000000000..9ea79664c --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-24.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1727209293025, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x67130059d39e65707e7f6167238e71a02f384cfb02093054a7aac1ca5a4752ef" + }, + "transactions": [ + { + "to": "0xE23eb92f0C76bF47f77F80D144e30F31b98450A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x6e654787251ae77Fe1873f93A5f220E00afa90E8, 0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2]", + "amountsPerPeriod": "[17500000000000000000000, 6250000000000000000000]", + "maxPeriods": "[2,2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-24.report.txt b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-24.report.txt new file mode 100644 index 000000000..6fd529062 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-09-24.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/00partnerLM/TokenLogic/ARB/GHO-2024-09-24.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `e826fba7f73230b3a37fe0c5c3a17ecb8b38562c` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e323ccdf-4050-4145-af73-c5c448722189) + +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------+--------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------+--------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9(maxiKeepers/gaugeRewardsInjectors/arb_aave_injector) | ARB | [ | [ | [ | raw: 23750000000000000000000/1e18 = 23750.0 | 0 | +| | | | "0x6e654787251ae77Fe1873f93A5f220E00afa90E8 (gauges/ECLP-GHO-AUSDC-gauge-6e65)", | "17500000000000000000000/1e18 = 17500.0", | "2", | | | +| | | | "0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2 (gauges/GHO/USDC/USDT-gauge-7d90)" | "6250000000000000000000/1e18 = 6250.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------+--------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-2.json b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-2.json new file mode 100644 index 000000000..db0a56469 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-2.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722608476993, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x21a8725f6a00ae907f9375550ab89c4d5ab6e6e2cd3d88b4d0e2f5ee3de025f3" + }, + "transactions": [ + { + "to": "0xE23eb92f0C76bF47f77F80D144e30F31b98450A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2, 0x6e654787251ae77Fe1873f93A5f220E00afa90E8]", + "amountsPerPeriod": "[5740500000000000000000, 18450000000000000000000]", + "maxPeriods": "[3, 1]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-2.report.txt b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-2.report.txt new file mode 100644 index 000000000..919916a81 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-2.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/00partnerLM/TokenLogic/ARB/GHO-2024-8-2.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `abce17b494921be05be7d0b11246f0c2674b1a18` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/46d1b2d3-0c46-497d-85bf-e317824b4be8) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9(maxiKeepers/gaugeRewardsInjectors/arb_aave_injector) | ARB | [ | [ | [ | raw: 24190500000000000000000/1e18 = 24190.5 | 0 | +| | | | "0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2 (gauges/GHO/USDC/USDT-gauge-7d90)", | "5740500000000000000000/1e18 = 5740.5", | "3", | | | +| | | | "0x6e654787251ae77Fe1873f93A5f220E00afa90E8 (gauges/ECLP-GHO-AUSDC-gauge-6e65)" | "18450000000000000000000/1e18 = 18450.0" | "1" | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-25.json b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-25.json new file mode 100644 index 000000000..9b5f424fd --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-25.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722608476993, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x21a8725f6a00ae907f9375550ab89c4d5ab6e6e2cd3d88b4d0e2f5ee3de025f3" + }, + "transactions": [ + { + "to": "0xE23eb92f0C76bF47f77F80D144e30F31b98450A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2, 0x6e654787251ae77Fe1873f93A5f220E00afa90E8]", + "amountsPerPeriod": "[6250000000000000000000, 17500000000000000000000]", + "maxPeriods": "[2, 2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-25.report.txt b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-25.report.txt new file mode 100644 index 000000000..a46af3587 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-25.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/00partnerLM/TokenLogic/ARB/GHO-2024-8-25.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `27b5358a6a86355f8624d698255acef212505b40` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/73e747fc-55ae-4099-8cb1-2a0d0e4ef425) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9(maxiKeepers/gaugeRewardsInjectors/arb_aave_injector) | ARB | [ | [ | [ | raw: 23750000000000000000000/1e18 = 23750.0 | 0 | +| | | | "0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2 (gauges/GHO/USDC/USDT-gauge-7d90)", | "6250000000000000000000/1e18 = 6250.0", | "2", | | | +| | | | "0x6e654787251ae77Fe1873f93A5f220E00afa90E8 (gauges/ECLP-GHO-AUSDC-gauge-6e65)" | "17500000000000000000000/1e18 = 17500.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-9.json b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-9.json new file mode 100644 index 000000000..9d534b8aa --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-9.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1722608506892, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x40d1ea1e8961aa1aebfc11fe5707adf6a36105e2cbc2e23a8307a17b44177176" + }, + "transactions": [ + { + "to": "0xE23eb92f0C76bF47f77F80D144e30F31b98450A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2, 0x6e654787251ae77Fe1873f93A5f220E00afa90E8]", + "amountsPerPeriod": "[5740500000000000000000, 17500000000000000000000]", + "maxPeriods": "[2, 2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-9.report.txt b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-9.report.txt new file mode 100644 index 000000000..4d653b27a --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-2024-8-9.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/00partnerLM/TokenLogic/ARB/GHO-2024-8-9.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `abce17b494921be05be7d0b11246f0c2674b1a18` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fdfa754b-fc6f-4652-be19-5490ae3c00b6) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9(maxiKeepers/gaugeRewardsInjectors/arb_aave_injector) | ARB | [ | [ | [ | raw: 23240500000000000000000/1e18 = 23240.5 | 0 | +| | | | "0x7d907D8D66B6CAd285D4349F507EcdfD11FD23D2 (gauges/GHO/USDC/USDT-gauge-7d90)", | "5740500000000000000000/1e18 = 5740.5", | "2", | | | +| | | | "0x6e654787251ae77Fe1873f93A5f220E00afa90E8 (gauges/ECLP-GHO-AUSDC-gauge-6e65)" | "17500000000000000000000/1e18 = 17500.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-USDe-rh-2024-10-3.json b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-USDe-rh-2024-10-3.json new file mode 100644 index 000000000..d1c0fab07 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-USDe-rh-2024-10-3.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1727967715934, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xfa75d1912553a105613f04dd65f5c2c64b49100ae403e6c608eaf69889218557" + }, + "transactions": [ + { + "to": "0xE23eb92f0C76bF47f77F80D144e30F31b98450A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xcfab2efeF3aFfdd158568DC896115Eac26B3C498]", + "amountsPerPeriod": "[4233333000000000000000]", + "maxPeriods": "[3]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-USDe-rh-2024-10-3.report.txt b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-USDe-rh-2024-10-3.report.txt new file mode 100644 index 000000000..7c9647be2 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO-USDe-rh-2024-10-3.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/00partnerLM/TokenLogic/ARB/GHO-USDe-rh-2024-10-3.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `3ccffd9261f46cf654938c6ef7df725ed33189b8` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4bd693e2-f222-4af4-832d-7da1b45678a4) + +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9(maxiKeepers/gaugeRewardsInjectors/arb_aave_injector) | ARB | [ | [ | [ | raw: 4233333000000000000000/1e18 = 4233.333 | 0 | +| | | | "0xcfab2efeF3aFfdd158568DC896115Eac26B3C498 (gauges/ECLP-GHO-USDe-rh-gauge-cfab)" | "4233333000000000000000/1e18 = 4233.333" | "3" | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO_2024-07-26.json b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO_2024-07-26.json new file mode 100644 index 000000000..dd534bdbc --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO_2024-07-26.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0xE23eb92f0C76bF47f77F80D144e30F31b98450A9", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x6e654787251ae77fe1873f93a5f220e00afa90e8,0x7d907d8d66b6cad285d4349f507ecdfd11fd23d2]", + "amountsPerPeriod": "[18450000000000000000000,5740500000000000000000]", + "maxPeriods": "[1,2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO_2024-07-26.report.txt b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO_2024-07-26.report.txt new file mode 100644 index 000000000..f5640fc55 --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/ARB/GHO_2024-07-26.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/00partnerLM/TokenLogic/ARB/GHO_2024-07-26.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `0987747b3d6943bbb00e89de5865af942885e55c` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e4e26922-13ee-4370-85fb-ec9f35b1652e) +``` ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------------+--------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------------+--------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0xE23eb92f0C76bF47f77F80D144e30F31b98450A9(maxiKeepers/gaugeRewardsInjectors/arb_aave_injector) | ARB | [ | [ | [ | raw: 24190500000000000000000/1e18 = 24190.5 | 0 | +| | | | "0x6e654787251ae77fe1873f93a5f220e00afa90e8 (Balancer ECLP-GHO-AUSDC Gauge Deposit)", | "18450000000000000000000/1e18 = 18450.0", | "1", | | | +| | | | "0x7d907d8d66b6cad285d4349f507ecdfd11fd23d2 (Balancer GHO/USDC/USDT Gauge Deposit)" | "5740500000000000000000/1e18 = 5740.5" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------------+--------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/GHO/special_paladin_topup.json b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/GHO/special_paladin_topup.json new file mode 100644 index 000000000..3196f5d1d --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/GHO/special_paladin_topup.json @@ -0,0 +1,113 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727980854879, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x59202e74f1324cd75e1399d4d1d984d98d259e15cca75d04623412db99a7c9d9" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf720e9137baa9C7612e6CA59149a5057ab320cFa", + "data": "0x058a3a2400000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f000000000000000000000000c38c5f97b34e175ffd35407fc91a937300e33860" + } + }, + { + "to": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xf720e9137baa9C7612e6CA59149a5057ab320cFa", + "amount": "28000000000000000000000" + } + }, + { + "to": "0xf720e9137baa9C7612e6CA59149a5057ab320cFa", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_amount", + "type": "uint256" + } + ], + "name": "deposit_reward_token", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "_amount": "28000000000000000000000" + } + }, + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xf720e9137baa9C7612e6CA59149a5057ab320cFa", + "data": "0x058a3a2400000000000000000000000040d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f000000000000000000000000feb352930ca196a80b708cdd5dcb4eca94805dab" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/GHO/special_paladin_topup.report.txt b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/GHO/special_paladin_topup.report.txt new file mode 100644 index 000000000..c2bed07ab --- /dev/null +++ b/MaxiOps/injectorScheduling/00partnerLM/TokenLogic/GHO/special_paladin_topup.report.txt @@ -0,0 +1,44 @@ +FILENAME: `MaxiOps/00partnerLM/TokenLogic/GHO/special_paladin_topup.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e699fe45fd0dc3e11cda45f4f8dfc1de36bdf26b` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7fd73ed8-7380-4581-a1a8-46f26ddabb45) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xf720e9137baa9C7612e6CA59149a5057ab320cFa (gauges/GHO/USDT/USDC-gauge-f720) | set_reward_distributor(address,address) | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f: GHO | N/A | 0 | +| | | | | 0xc38c5f97B34E175FFd35407fc91a937300E33860: multisigs/lm | | | +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xf720e9137baa9C7612e6CA59149a5057ab320cFa (gauges/GHO/USDT/USDC-gauge-f720) | set_reward_distributor(address,address) | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f: GHO | N/A | 3 | +| | | | | 0xfEb352930cA196a80B708CDD5dcb4eCA94805daB: paladin/QuestBoardV2_1 | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+-----------------------------------------+--------------------------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/00partnerLM/TokenLogic/GHO/special_paladin_topup.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `e699fe45fd0dc3e11cda45f4f8dfc1de36bdf26b` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/bc5dfda0-d789-419e-b2b3-ea63e6936316) + +``` ++----------------------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++----------------------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xf720e9137baa9C7612e6CA59149a5057ab320cFa (gauges/GHO/USDT/USDC-gauge-f720)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:28000000000000000000000, 18 decimals:28000, 6 decimals: 28000000000000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit_reward_token | 0xf720e9137baa9C7612e6CA59149a5057ab320cFa (gauges/GHO/USDT/USDC-gauge-f720) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (N/A)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:28000000000000000000000, 18 decimals:28000, 6 decimals: 28000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++----------------------+------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/LTIPP/kyc-stip-accept-owner.json b/MaxiOps/injectorScheduling/LTIPP/kyc-stip-accept-owner.json new file mode 100644 index 000000000..7246ae829 --- /dev/null +++ b/MaxiOps/injectorScheduling/LTIPP/kyc-stip-accept-owner.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1718826338664, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e", + "createdFromOwnerAddress": "", + "checksum": "0x24663dd610b9838baf242d270bb2fb8924e107e0c0a3166dcb947f20acb5c952" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/injectorScheduling/LTIPP/kyc-stip-accept-owner.report.txt b/MaxiOps/injectorScheduling/LTIPP/kyc-stip-accept-owner.report.txt new file mode 100644 index 000000000..55d39c06b --- /dev/null +++ b/MaxiOps/injectorScheduling/LTIPP/kyc-stip-accept-owner.report.txt @@ -0,0 +1,12 @@ +FILENAME: `MaxiOps/injectorScheduling/LTIPP/kyc-stip-accept-owner.json` +MULTISIG: `multisigs/kyc_grant_safe (arbitrum:0xb6BfF54589f269E248f99D5956f1fDD5b014D50e)` +COMMIT: `45787c2f8333b6a952fd35f4c6a36928eb16df05` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/2b8c0fd0-a806-41d6-b00d-770a00fae984) +``` ++-----------------+--------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+--------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| acceptOwnership | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | "N/A" | N/A | N/A | ++-----------------+--------------------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/LTIPP/tx_owner_arbi_kyc.json b/MaxiOps/injectorScheduling/LTIPP/tx_owner_arbi_kyc.json new file mode 100644 index 000000000..abe3c65eb --- /dev/null +++ b/MaxiOps/injectorScheduling/LTIPP/tx_owner_arbi_kyc.json @@ -0,0 +1,30 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1718826215217, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x383d2cf3f0b03fd971c7a5592b3925c9d7023ccaca810319c1fe45d73ff50004" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "transferOwnership", + "payable": false + }, + "contractInputsValues": { + "to": "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/LTIPP/tx_owner_arbi_kyc.report.txt b/MaxiOps/injectorScheduling/LTIPP/tx_owner_arbi_kyc.report.txt new file mode 100644 index 000000000..beac31076 --- /dev/null +++ b/MaxiOps/injectorScheduling/LTIPP/tx_owner_arbi_kyc.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/injectorScheduling/LTIPP/tx_owner_arbi_kyc.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `45787c2f8333b6a952fd35f4c6a36928eb16df05` +CHAIN(S): `arbitrum` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7f52892e-59e9-4a0f-9e46-ae506e91513d) +``` ++-------------------+--------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------------+--------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +| transferOwnership | 0xF23d8342881eDECcED51EA694AC21C2B68440929 (maxiKeepers/gaugeRewardsInjectors/arb_STIP_injector) | 0 | { | N/A | N/A | +| | | | "to": [ | | | +| | | | "0xb6BfF54589f269E248f99D5956f1fDD5b014D50e (multisigs/kyc_grant_safe)" | | | +| | | | ] | | | +| | | | } | | | ++-------------------+--------------------------------------------------------------------------------------------------+-------+-----------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/MOP-000.json b/MaxiOps/injectorScheduling/MOP-000.json new file mode 100644 index 000000000..2a3313afd --- /dev/null +++ b/MaxiOps/injectorScheduling/MOP-000.json @@ -0,0 +1,43 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1705092587042, + "meta": { + "name": "Transactions Batch", + "description": "Child Chain Injector Program Load", + "txBuilderVersion": "1.16.3" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": ["[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]"], + "amountsPerPeriod": ["[1000000000000000000000]"], + "maxPeriods": ["[4]"] + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/[chain]/injector-configurator.json b/MaxiOps/injectorScheduling/[chain]/injector-configurator.json new file mode 100644 index 000000000..c684cd783 --- /dev/null +++ b/MaxiOps/injectorScheduling/[chain]/injector-configurator.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734026402730, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x8266d9ae63588" + }, + "transactions": [ + { + "to": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x4B891340b51889f438a03DC0e8aAAFB0Bc89e7A6, 0x70A1c01902DAb7a45dcA1098Ca76A8314dd8aDbA, 0x1f3A4C8115629C33A28bF2F97F22D31d256317F6]", + "amountsPerPeriod": "[1062500000000000000000, 478100000000000000000, 796860000000000000000]", + "maxPeriods": "[2, 2, 2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/[chain]/injector-configurator.report.txt b/MaxiOps/injectorScheduling/[chain]/injector-configurator.report.txt new file mode 100644 index 000000000..7d101efbb --- /dev/null +++ b/MaxiOps/injectorScheduling/[chain]/injector-configurator.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/injectorScheduling/[chain]/injector-configurator.json` +MULTISIG: `multisigs/maxi_omni (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `545ade7f197b9b837630a1095eba86be66ab472f` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/896cc5fe-b60b-4e9e-ad84-e4e78d09f1f1) + +``` ++------------------+--------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------------------+------------------------------------------+---------+--------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+--------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------------------+------------------------------------------+---------+--------------------------------------------+----------+ +| setRecipientList | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE(maxiKeepers/gaugeRewardsInjectors/Balancer_BAL) | BAL | [ | [ | [ | raw: 2337460000000000000000/1e18 = 2337.46 | 0 | +| | | | "0x4B891340b51889f438a03DC0e8aAAFB0Bc89e7A6 (Balancer Aave Lido wETH-wstETH Gauge Deposit)", | "1062500000000000000000/1e18 = 1062.5", | "2", | | | +| | | | "0x70A1c01902DAb7a45dcA1098Ca76A8314dd8aDbA (Balancer osETH-waWETH Gauge Deposit)", | "478100000000000000000/1e18 = 478.1", | "2", | | | +| | | | "0x1f3A4C8115629C33A28bF2F97F22D31d256317F6 (Balancer ETHx waWETH Gauge Deposit)" | "796860000000000000000/1e18 = 796.86" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+--------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------------------+------------------------------------------+---------+--------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-2-MORE-weeks.json b/MaxiOps/injectorScheduling/arbitrum/USDC-2-MORE-weeks.json new file mode 100644 index 000000000..5b2f4c042 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-2-MORE-weeks.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726843968842, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xed8867f4c278bc2c1da1d3214382e159989ae035dc704d4e8ec955ea86ddb483" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc]", + "amountsPerPeriod": "[5000000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-2-MORE-weeks.report.txt b/MaxiOps/injectorScheduling/arbitrum/USDC-2-MORE-weeks.report.txt new file mode 100644 index 000000000..f76e078e9 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-2-MORE-weeks.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/arbitrum/USDC-2-MORE-weeks.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `d31c4652c56fcb8be12e9561710f7b3898c9ba59` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/fa39e340-73db-414f-8771-408dd36f1ca9) + +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 5000000000/1e6 = 5000.0 | 0 | +| | | | "0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc (gauges/ECLP-MORE-GYD-gauge-3b9c)" | "5000000000/1e6 = 5000.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-ARB-wETH.json b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-ARB-wETH.json new file mode 100644 index 000000000..77929f0a8 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-ARB-wETH.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726492764911, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x50d72f6b21151226fadda9254aaf71020d5127d9d5c1f051276e563cf000072c" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xbDBc27A1C245ed52EAcb0dc6ebA922992328F303]", + "amountsPerPeriod": "[5000000000]", + "maxPeriods": "[3]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-ARB-wETH.report.txt b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-ARB-wETH.report.txt new file mode 100644 index 000000000..d3ded1431 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-ARB-wETH.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/arbitrum/USDC-Cow-ARB-wETH.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `7512b1093c1fd2c34bc58c6d4dad305ef1399443` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c36d722c-7a95-4f49-a9c9-d6d3c7fcafa5) + +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 5000000000/1e6 = 5000.0 | 0 | +| | | | "0xbDBc27A1C245ed52EAcb0dc6ebA922992328F303 (Balancer BCoW-50ARB-50WETH Gauge Deposit)" | "5000000000/1e6 = 5000.0" | "3" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-Pendle.json b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-Pendle.json new file mode 100644 index 000000000..987817ef2 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-Pendle.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726826465347, + "meta": { + "name": "Transactions Batch", + "description": "Child Chain Injector Program Load", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xbDBc27A1C245ed52EAcb0dc6ebA922992328F303, 0xa1231e274c2e4e817923c0a0edc9c5e0d4cb8b80]", + "amountsPerPeriod": "[5000000000,3000000000]", + "maxPeriods": "[2,2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-Pendle.report.txt b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-Pendle.report.txt new file mode 100644 index 000000000..5a1360dfc --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-Pendle.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/injectorScheduling/arbitrum/USDC-Cow-Pendle.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `b71ae10713ac5765d923dca1c2801d1cabf57573` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/822ae3ca-9462-4f0d-8c34-7f91d16e2a9d) + +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------------------+-----------------------------+---------+------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------------------+-----------------------------+---------+------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 8000000000/1e6 = 8000.0 | 0 | +| | | | "0xbDBc27A1C245ed52EAcb0dc6ebA922992328F303 (Balancer BCoW-50ARB-50WETH Gauge Deposit)", | "5000000000/1e6 = 5000.0", | "2", | | | +| | | | "0xa1231e274c2e4e817923c0a0edc9c5e0d4cb8b80 (Balancer BCoW-50PENDLE-50wstETH Gauge Deposit)" | "3000000000/1e6 = 3000.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+-----------------------------------------------------------------------------------------------+-----------------------------+---------+------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-and-Real.json b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-and-Real.json new file mode 100644 index 000000000..f21524fb2 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-and-Real.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1726843968842, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xed8867f4c278bc2c1da1d3214382e159989ae035dc704d4e8ec955ea86ddb483" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xbDBc27A1C245ed52EAcb0dc6ebA922992328F303, 0xa1231e274c2e4E817923c0A0eDC9c5E0d4CB8B80, 0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc]", + "amountsPerPeriod": "[5000000000, 3000000000, 5000000000]", + "maxPeriods": "[2,1,2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-and-Real.report.txt b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-and-Real.report.txt new file mode 100644 index 000000000..0dda01e1e --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-Cow-and-Real.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/injectorScheduling/arbitrum/USDC-Cow-and-Real.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `ec8821f133fd6be0464c6776af3837b012906b0c` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/14d6f4f6-9326-4816-b90d-eb6fb91bb7d9) + +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------------------+-----------------------------+---------+--------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------------------+-----------------------------+---------+--------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 13000000000/1e6 = 13000.0 | 0 | +| | | | "0xbDBc27A1C245ed52EAcb0dc6ebA922992328F303 (Balancer BCoW-50ARB-50WETH Gauge Deposit)", | "5000000000/1e6 = 5000.0", | "2", | | | +| | | | "0xa1231e274c2e4E817923c0A0eDC9c5E0d4CB8B80 (Balancer BCoW-50PENDLE-50wstETH Gauge Deposit)", | "3000000000/1e6 = 3000.0", | "1", | | | +| | | | "0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc (Balancer ECLP-MORE-GYD Gauge Deposit)" | "5000000000/1e6 = 5000.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------------------+-----------------------------+---------+--------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-Injection-rETH-wETH.json b/MaxiOps/injectorScheduling/arbitrum/USDC-Injection-rETH-wETH.json new file mode 100644 index 000000000..d47837a08 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-Injection-rETH-wETH.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1730671010918, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xf720eafacb1a565da59ed25c0a2ab54494578ff053806c698e137247ccc2f76f" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68]", + "amountsPerPeriod": "[1587600000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-Injection-rETH-wETH.report.txt b/MaxiOps/injectorScheduling/arbitrum/USDC-Injection-rETH-wETH.report.txt new file mode 100644 index 000000000..c2cefac4a --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-Injection-rETH-wETH.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/arbitrum/USDC-Injection-rETH-wETH.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `88cb1ee6168fed18d2d6c9bb101b6956e10801da` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/67b2baed-22e1-439c-82ea-b3e10e9939c9) + +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 1587600000/1e6 = 1587.6 | 0 | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)" | "1587600000/1e6 = 1587.6" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-MONEY-COW-and-Real.json b/MaxiOps/injectorScheduling/arbitrum/USDC-MONEY-COW-and-Real.json new file mode 100644 index 000000000..6e27f4a0b --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-MONEY-COW-and-Real.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1728517561089, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x531532a0aed91" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc, 0xd9332d9354a89957c9ba8bc73727015ef8c67a42]", + "amountsPerPeriod": "[5000000000, 960000000]", + "maxPeriods": "[1, 2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC-MONEY-COW-and-Real.report.txt b/MaxiOps/injectorScheduling/arbitrum/USDC-MONEY-COW-and-Real.report.txt new file mode 100644 index 000000000..c3da0c569 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC-MONEY-COW-and-Real.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/injectorScheduling/arbitrum/USDC-MONEY-COW-and-Real.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `34621452b37bda12ac3242980df22c81ec4bb382` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/656dc3dc-a0b2-4f13-9291-e3aadec7b685) + +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------+---------+------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------+---------+------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 5960000000/1e6 = 5960.0 | 0 | +| | | | "0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc (gauges/ECLP-MORE-GYD-gauge-3b9c)", | "5000000000/1e6 = 5000.0", | "1", | | | +| | | | "0xd9332d9354a89957c9ba8bc73727015ef8c67a42 (Balancer BCoW-50MONEY-50WETH Gauge Deposit)" | "960000000/1e6 = 960.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------+---------+------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-&-MONEY-COW.json b/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-&-MONEY-COW.json new file mode 100644 index 000000000..4dde8ebe1 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-&-MONEY-COW.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1729350416120, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x092d6587fbd08" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc, 0xd9332D9354A89957c9ba8bC73727015eF8c67a42, 0xd7052ab8D0eD15B8AAA543CabDd4acA60093E567]", + "amountsPerPeriod": "[5000000000, 960000000, 5000000000]", + "maxPeriods": "[1, 1, 2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-&-MONEY-COW.report.txt b/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-&-MONEY-COW.report.txt new file mode 100644 index 000000000..02ecf362b --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-&-MONEY-COW.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-&-MONEY-COW.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `01de5a075a5eee524933052fda2c884c5f08fcfb` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c411abaf-6837-4a62-9926-a42cdf3a3515) + +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------------+-----------------------------+---------+--------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------------+-----------------------------+---------+--------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 10960000000/1e6 = 10960.0 | 0 | +| | | | "0x3b9c6C47bD3AC2e5E284265757EA2F6A4aED5fCc (gauges/ECLP-MORE-GYD-gauge-3b9c)", | "5000000000/1e6 = 5000.0", | "1", | | | +| | | | "0xd9332D9354A89957c9ba8bC73727015eF8c67a42 (gauges/BCoW-50MONEY-50WETH-gauge-d933)", | "960000000/1e6 = 960.0", | "1", | | | +| | | | "0xd7052ab8D0eD15B8AAA543CabDd4acA60093E567 (Balancer ECLP-MORE-GHO Gauge Deposit)" | "5000000000/1e6 = 5000.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------------+-----------------------------+---------+--------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-Nov-12-2024.json b/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-Nov-12-2024.json new file mode 100644 index 000000000..310298428 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-Nov-12-2024.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1731375527586, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x92fb0029c9bc6" + }, + "transactions": [ + { + "to": "0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68, 0xcE1Ca8DDECCb3a2cD7fb1244C90f91Ee6A926f47]", + "amountsPerPeriod": "[1587600000, 20000000000]", + "maxPeriods": "[1, 2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-Nov-12-2024.report.txt b/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-Nov-12-2024.report.txt new file mode 100644 index 000000000..2d76cbfc4 --- /dev/null +++ b/MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-Nov-12-2024.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/injectorScheduling/arbitrum/USDC_MORE-GYD-Nov-12-2024.json` +MULTISIG: `multisigs/vote_incentive_recycling (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `da7adf3e5c5debdb97fc142a34037c6cf7a51598` +CHAIN(S): `arbitrum` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/f7a74a67-3919-41dd-b5c7-8773237c4604) + +``` ++------------------+-----------------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------+------------------------------+---------+--------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------+------------------------------+---------+--------------------------------+----------+ +| setRecipientList | 0xabC414cEE2F6E8Ee262d6dc106c86A3f627f84D2(maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | USDC | [ | [ | [ | raw: 21587600000/1e6 = 21587.6 | 0 | +| | | | "0x8ba2D53F34159C5C5e7add60B56C7dE3BBc1DA68 (gauges/rETH/wETH BPT-gauge-8ba2)", | "1587600000/1e6 = 1587.6", | "1", | | | +| | | | "0xcE1Ca8DDECCb3a2cD7fb1244C90f91Ee6A926f47 (Balancer ECLP-MORE-GYD Gauge Deposit)" | "20000000000/1e6 = 20000.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------+------------------------------+---------+--------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks.json new file mode 100644 index 000000000..ed73aeb0a --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1720907727188, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xf854ad2f984f293bdfa0007d0f8970006b1e1d5527c73598993a7921a3c84249" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[75000000000000000000]", + "maxPeriods": "[4]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks.report.txt new file mode 100644 index 000000000..142dbe087 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks.json` +MULTISIG: `multisigs/vote_incentive_recycling (avalanche:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `648c3d856f0b1f6ec0bda570ee0272202e695fa8` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e873d8e8-9187-402f-9147-7decd03b8694) +``` ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5(maxiKeepers/gaugeRewardsInjectors/ggp) | GGP | [ | [ | [ | raw: 75000000000000000000/1e18 = 75.0 | 0 | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (gauges/ggAVAX-WAVAX-BPT-gauge-231d)" | "75000000000000000000/1e18 = 75.0" | "4" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks2.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks2.json new file mode 100644 index 000000000..9d2d7fd61 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks2.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1722859685299, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x2e7144bf4d3905124cd1c351264240daec4d44c74dd4fc40d7fa88a267df9dad" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[75000000000000000000]", + "maxPeriods": "[4]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks2.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks2.report.txt new file mode 100644 index 000000000..bf7ccbe47 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks2.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks2.json` +MULTISIG: `multisigs/vote_incentive_recycling (avalanche:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `3ce547ec9ca87f0173d4125deaa8618e95fdb511` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e27924cf-3339-4982-94cf-060b1a68919a) +``` ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5(maxiKeepers/gaugeRewardsInjectors/ggp) | GGP | [ | [ | [ | raw: 75000000000000000000/1e18 = 75.0 | 0 | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (gauges/ggAVAX-WAVAX-BPT-gauge-231d)" | "75000000000000000000/1e18 = 75.0" | "4" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks_Nov5-2024.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks_Nov5-2024.json new file mode 100644 index 000000000..95e602bfc --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks_Nov5-2024.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1730749064466, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xf694f0e2f3d64" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[75000000000000000000]", + "maxPeriods": "[4]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks_Nov5-2024.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks_Nov5-2024.report.txt new file mode 100644 index 000000000..20808cccc --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks_Nov5-2024.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_4wks_Nov5-2024.json` +MULTISIG: `multisigs/vote_incentive_recycling (avalanche:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `d31e0bd544c4d75b709666f34abb8f39295977c2` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e75d6da1-53c3-47bf-bd07-2d78ded7b22b) + +``` ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5(maxiKeepers/gaugeRewardsInjectors/ggp) | GGP | [ | [ | [ | raw: 75000000000000000000/1e18 = 75.0 | 0 | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (gauges/ggAVAX-WAVAX-BPT-gauge-231d)" | "75000000000000000000/1e18 = 75.0" | "4" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks.json new file mode 100644 index 000000000..2c69dec5c --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1728301422324, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x4213e56c00b9dba95f5ce49d1dc69839c2ac1f722d2030ff79165952d23d7764" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[75000000000000000000]", + "maxPeriods": "[4]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks.report.txt new file mode 100644 index 000000000..65d6cdf62 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks.json` +MULTISIG: `multisigs/vote_incentive_recycling (avalanche:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `00ce50a70b22da0b16709ce221a6929887f1e853` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/dad5600f-a3e0-49fb-98df-e7eaf0c7f443) + +``` ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5(maxiKeepers/gaugeRewardsInjectors/ggp) | GGP | [ | [ | [ | raw: 75000000000000000000/1e18 = 75.0 | 0 | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (gauges/ggAVAX-WAVAX-BPT-gauge-231d)" | "75000000000000000000/1e18 = 75.0" | "4" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks_Nov29-2024.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks_Nov29-2024.json new file mode 100644 index 000000000..06e7131b4 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks_Nov29-2024.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1732891058773, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x7e3215b713afb" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[75000000000000000000]", + "maxPeriods": "[5]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks_Nov29-2024.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks_Nov29-2024.report.txt new file mode 100644 index 000000000..bab4dd9b9 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks_Nov29-2024.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_75perwk_5wks_Nov29-2024.json` +MULTISIG: `multisigs/vote_incentive_recycling (avalanche:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `337728d1a4836ebec25e191d46f3f40c3aba538f` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/95d01edd-cbaf-47c3-8799-c2253a3d92cf) + +``` ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5(maxiKeepers/gaugeRewardsInjectors/ggp) | GGP | [ | [ | [ | raw: 75000000000000000000/1e18 = 75.0 | 0 | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (gauges/ggAVAX-WAVAX-BPT-gauge-231d)" | "75000000000000000000/1e18 = 75.0" | "5" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_May25_250perweek_3weeks.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_May25_250perweek_3weeks.json new file mode 100644 index 000000000..52a6587c5 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_May25_250perweek_3weeks.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1716651662179, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x50e5c38911ea4e72b3b298a6b8e005fa9553c2f89390009b337037a5816c6fd5" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[250000000000000000000]", + "maxPeriods": "[3]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_May25_250perweek_3weeks.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_May25_250perweek_3weeks.report.txt new file mode 100644 index 000000000..46eeaa6d8 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_May25_250perweek_3weeks.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_May25_250perweek_3weeks.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `e91ad79f6d83bcec06bbfc0188a0b4ce8299bbf3` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/67d5c312-e213-4dbc-92de-7d4a2e0a02a5) +``` ++------------------+-----------------------------------------------------------------------------------+----------+------------------------------------------------------------------------------------+---------------------------------------+-----------+-----------------------------------------+------------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++==================+===================================================================================+==========+====================================================================================+=======================================+===========+=========================================+============+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5(maxiKeepers/gaugeRewardsInjectors/ggp) | GGP | [ | [ | [ | raw: 250000000000000000000/1e18 = 250.0 | 0 | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (gauges/ggAVAX-WAVAX-BPT-gauge-231d)" | "250000000000000000000/1e18 = 250.0" | "3" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+----------+------------------------------------------------------------------------------------+---------------------------------------+-----------+-----------------------------------------+------------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept2_75perweek_2weeks.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept2_75perweek_2weeks.json new file mode 100644 index 000000000..ae3038070 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept2_75perweek_2weeks.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1725307234703, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x07861ca86912472846ee9d547983ea17f37e182af24dcde908228446ea4d6d7b" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[75000000000000000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept2_75perweek_2weeks.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept2_75perweek_2weeks.report.txt new file mode 100644 index 000000000..ce33e840c --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept2_75perweek_2weeks.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept2_75perweek_2weeks.json` +MULTISIG: `multisigs/vote_incentive_recycling (avalanche:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `7e79b6c9753848ec4089072e616b79f9084554c4` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8d6e14bf-c0a3-44f8-986d-4016914a7e8b) +``` ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5(maxiKeepers/gaugeRewardsInjectors/ggp) | GGP | [ | [ | [ | raw: 75000000000000000000/1e18 = 75.0 | 0 | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (gauges/ggAVAX-WAVAX-BPT-gauge-231d)" | "75000000000000000000/1e18 = 75.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept9_75perweek_5weeks.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept9_75perweek_5weeks.json new file mode 100644 index 000000000..90826fe17 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept9_75perweek_5weeks.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1725908086473, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xfd9c618042e90376daf843ab4740659242193512da87e61c51b26db5936db579" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[75000000000000000000]", + "maxPeriods": "[5]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept9_75perweek_5weeks.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept9_75perweek_5weeks.report.txt new file mode 100644 index 000000000..8ae4c07d3 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept9_75perweek_5weeks.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_Sept9_75perweek_5weeks.json` +MULTISIG: `multisigs/vote_incentive_recycling (avalanche:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `13b377aa3c94352026fc82b287a9299602c4705d` +CHAIN(S): `avalanche` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/d185e118-1483-484b-876d-dadc55f21b23) +``` ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5(maxiKeepers/gaugeRewardsInjectors/ggp) | GGP | [ | [ | [ | raw: 75000000000000000000/1e18 = 75.0 | 0 | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (gauges/ggAVAX-WAVAX-BPT-gauge-231d)" | "75000000000000000000/1e18 = 75.0" | "5" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+------------------------------------------------------------------------------------+-------------------------------------+---------+---------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_avax_ggAVAX_GGP.json.json b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_avax_ggAVAX_GGP.json.json new file mode 100644 index 000000000..0aa8d2f7a --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_avax_ggAVAX_GGP.json.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1707587349134, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x19a8dc2007787df68a2a758bef9b08aa587448345d72ece96c8e233142488bd9" + }, + "transactions": [ + { + "to": "0x39C441560e83e02452e4B4789934aC031A85c1d5", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92]", + "amountsPerPeriod": "[560000000000000000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_avax_ggAVAX_GGP.report.txt.report.txt b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_avax_ggAVAX_GGP.report.txt.report.txt new file mode 100644 index 000000000..a250c42e5 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/GGP/setRecipientList_avax_ggAVAX_GGP.report.txt.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/GGP/setRecipientList_avax_ggAVAX_GGP.json.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `93fa62ed4598b15a3786bc9b345bcbf618aca4a9` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/aefec6ce-a9ee-4783-abcb-6eda3d891700) +``` ++------------------+------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+====================================================================================+=========+=========================================================+==============+============+ +| setRecipientList | 0x39C441560e83e02452e4B4789934aC031A85c1d5 (maxiKeepers/gaugeRewardsInjectors/ggp) | 0 | { | N/A | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0x231d84C37b2C4B5a2E2Fe325BB77DAa65bF71D92 (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": "[560000000000000000000]", | | | +| | | | "maxPeriods": "[2]" | | | +| | | | } | | | ++------------------+------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/injectorScheduling/avax/QI/setRecipientList_avax_sAVAX_QI.json b/MaxiOps/injectorScheduling/avax/QI/setRecipientList_avax_sAVAX_QI.json new file mode 100644 index 000000000..0dbc8a422 --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/QI/setRecipientList_avax_sAVAX_QI.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1708589438916, + "meta": { + "name": "Set new sAVAX QI rewards schedule", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0xb5ffe360573be6bd7f48618b285cccff758ede51f4ea29edd09de81fdbed95e4" + }, + "transactions": [ + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xf9aE6D2D56f02304f72dcC61694eAD0dC8DB51f7]", + "amountsPerPeriod": "[700000000000000000000000]", + "maxPeriods": "[4]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/avax/QI/setRecipientList_avax_sAVAX_QI.report.txt b/MaxiOps/injectorScheduling/avax/QI/setRecipientList_avax_sAVAX_QI.report.txt new file mode 100644 index 000000000..9e24c364e --- /dev/null +++ b/MaxiOps/injectorScheduling/avax/QI/setRecipientList_avax_sAVAX_QI.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/injectorScheduling/avax/QI/setRecipientList_avax_sAVAX_QI.json` +MULTISIG: `multisigs/fees (avalanche:0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6)` +COMMIT: `31c092ac701adb4bc003c88b4247ed64c9a5e5b1` +CHAIN(S): `avalanche` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/55a9f523-de99-44dd-9750-ffcb296ab207) +``` ++------------------+-----------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+===================================================================================+=========+=========================================================+==============+============+ +| setRecipientList | 0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE (maxiKeepers/gaugeRewardsInjectors/qi) | 0 | { | N/A | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0xf9aE6D2D56f02304f72dcC61694eAD0dC8DB51f7 (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": "[700000000000000000000000]", | | | +| | | | "maxPeriods": "[4]" | | | +| | | | } | | | ++------------------+-----------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-10000-2.json b/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-10000-2.json new file mode 100644 index 000000000..ed91d0918 --- /dev/null +++ b/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-10000-2.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1729182784671, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x3d5ab501a2dc02886a0091d2f47cd8728c3e6c74b81308751ecd6db47d45b8da" + }, + "transactions": [ + { + "to": "0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x04eb463335845e8b8d46d410b344fd2187bbf87c]", + "amountsPerPeriod": "[10000000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-stable-10000.json b/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-stable-10000.json new file mode 100644 index 000000000..262734e87 --- /dev/null +++ b/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-stable-10000.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1729182784671, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x3d5ab501a2dc02886a0091d2f47cd8728c3e6c74b81308751ecd6db47d45b8da" + }, + "transactions": [ + { + "to": "0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x60ED9E5DA6437A6e19B7815e013e3426161e8044]", + "amountsPerPeriod": "[20000000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-stable-10000.report.txt b/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-stable-10000.report.txt new file mode 100644 index 000000000..3bf749298 --- /dev/null +++ b/MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-stable-10000.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/base/USDC-Injection-MORE-USDC-stable-10000.json` +MULTISIG: `multisigs/vote_incentive_recycling (base:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `da13ee55c9f781a016cdcfe2e7bcb06d57175898` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/477b52f4-2c9a-4976-b0c4-a4091d42ec4b) + +``` ++------------------+------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+------------------------------+---------+--------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+------------------------------+---------+--------------------------------+----------+ +| setRecipientList | 0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A(maxiKeepers/gaugeRewardsInjectors/usdc) | USDC | [ | [ | [ | raw: 20000000000/1e6 = 20000.0 | 0 | +| | | | "0x60ED9E5DA6437A6e19B7815e013e3426161e8044 (Balancer MOREUSDC Gauge Deposit)" | "20000000000/1e6 = 20000.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------+------------------------------+---------+--------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/base/USDC-Injection-rETH&MORE.json b/MaxiOps/injectorScheduling/base/USDC-Injection-rETH&MORE.json new file mode 100644 index 000000000..e446337fd --- /dev/null +++ b/MaxiOps/injectorScheduling/base/USDC-Injection-rETH&MORE.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1730670281051, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x96625695024106a6848fadcb9a56c52d661b036e750a5b15daeb283075e0a137" + }, + "transactions": [ + { + "to": "0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x60ED9E5DA6437A6e19B7815e013e3426161e8044, 0x8D118063B521e0CB9947A934BE90f7e32d02b158]", + "amountsPerPeriod": "[20000000000, 1436400000]", + "maxPeriods": "[1,2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/base/USDC-Injection-rETH&MORE.report.txt b/MaxiOps/injectorScheduling/base/USDC-Injection-rETH&MORE.report.txt new file mode 100644 index 000000000..c7e1ca80a --- /dev/null +++ b/MaxiOps/injectorScheduling/base/USDC-Injection-rETH&MORE.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/injectorScheduling/base/USDC-Injection-rETH&MORE.json` +MULTISIG: `multisigs/vote_incentive_recycling (base:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `88cb1ee6168fed18d2d6c9bb101b6956e10801da` +CHAIN(S): `base` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/205228ea-495c-4247-b3ea-0b336973d592) + +``` ++------------------+------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------+---------+--------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------+---------+--------------------------------+----------+ +| setRecipientList | 0xA6E7840Fc8193cFeBDdf177fa410038E5DD08f7A(maxiKeepers/gaugeRewardsInjectors/usdc) | USDC | [ | [ | [ | raw: 21436400000/1e6 = 21436.4 | 0 | +| | | | "0x60ED9E5DA6437A6e19B7815e013e3426161e8044 (Balancer MOREUSDC Gauge Deposit)", | "20000000000/1e6 = 20000.0", | "1", | | | +| | | | "0x8D118063B521e0CB9947A934BE90f7e32d02b158 (gauges/rETH-WETH-BPT-gauge-8d11)" | "1436400000/1e6 = 1436.4" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+------------------------------------------------------------------------------------+--------+----------------------------------------------------------------------------------+-------------------------------+---------+--------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/base/injectorv2_test_addrewards.json b/MaxiOps/injectorScheduling/base/injectorv2_test_addrewards.json new file mode 100644 index 000000000..f620068e1 --- /dev/null +++ b/MaxiOps/injectorScheduling/base/injectorv2_test_addrewards.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "8453", + "createdAt": 1732703664859, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x65226673F3D202E0f897C862590d7e1A992B2048", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xC97fa65107AE7b94FB749cF05abb01005c14351E", + "data": "0xe8de0d4d000000000000000000000000833589fCD6eDb6E08f4c7C32D4f71b54bdA02913000000000000000000000000fa7b21B30325DBbd4A71ee2B2EDE74A7d8A2c0E4" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/base/injectorv2_test_addrewards.report.txt b/MaxiOps/injectorScheduling/base/injectorv2_test_addrewards.report.txt new file mode 100644 index 000000000..cd64ea091 --- /dev/null +++ b/MaxiOps/injectorScheduling/base/injectorv2_test_addrewards.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/injectorScheduling/base/injectorv2_test_addrewards.json` +MULTISIG: `multisigs/lm (base:0x65226673F3D202E0f897C862590d7e1A992B2048)` +COMMIT: `e862e5c9a319d212f642fe26dcdf7a728d4f477c` +CHAIN(S): `base` +TENDERLY: [`🟥 FAILURE`](https://www.tdly.co/shared/simulation/287b9a93-157e-4aa3-9b15-a53a78775d10) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------+-----+----------+ +| performAction | 0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xC97fa65107AE7b94FB749cF05abb01005c14351E (gauges/BPT-stabal3-gauge-c97f) | add_reward(address,address) | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913: tokens/USDC | N/A | 0 | +| | | | | 0xfa7b21B30325DBbd4A71ee2B2EDE74A7d8A2c0E4: maxiKeepers/injectorV2/USDC-omnichain | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/injectorScheduling/gnosis/SEND-USDC-to-v3-Launch-Injector.json b/MaxiOps/injectorScheduling/gnosis/SEND-USDC-to-v3-Launch-Injector.json new file mode 100644 index 000000000..83563bdde --- /dev/null +++ b/MaxiOps/injectorScheduling/gnosis/SEND-USDC-to-v3-Launch-Injector.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1734029598677, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "createdFromOwnerAddress": "", + "checksum": "0x44f3656c790f6a06ac7ab54ac3d179b76c9a66688bbd0e606a054fb1e4ca7951" + }, + "transactions": [ + { + "to": "0x2a22f9c3b484c3629090FeED35F17Ff8F88f76F0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838", + "value": "5750000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/gnosis/SEND-USDC-to-v3-Launch-Injector.report.txt b/MaxiOps/injectorScheduling/gnosis/SEND-USDC-to-v3-Launch-Injector.report.txt new file mode 100644 index 000000000..c766bb719 --- /dev/null +++ b/MaxiOps/injectorScheduling/gnosis/SEND-USDC-to-v3-Launch-Injector.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/injectorScheduling/gnosis/SEND-USDC-to-v3-Launch-Injector.json` +MULTISIG: `multisigs/lm (gnosis:0x14969B55a675d13a1700F71A37511bc22D90155a)` +COMMIT: `45737dc517c0560398d66a0a86ebebdf964aec22` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8412937f-6c50-47c7-8a75-7066bade250d) + +``` ++----------+---------------------------------------------------+--------------------------------------------------------------------------+--------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+---------------------------------------------------+--------------------------------------------------------------------------+--------------------------+-----+----------+ +| transfer | USDC.e:0x2a22f9c3b484c3629090FeED35F17Ff8F88f76F0 | maxiKeepers/injectorV2/USDC.e:0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838 | 5750.0 (RAW: 5750000000) | N/A | 0 | ++----------+---------------------------------------------------+--------------------------------------------------------------------------+--------------------------+-----+----------+ +``` diff --git a/MaxiOps/injectorScheduling/gnosis/v3-Launch-Partners.json b/MaxiOps/injectorScheduling/gnosis/v3-Launch-Partners.json new file mode 100644 index 000000000..68c5db551 --- /dev/null +++ b/MaxiOps/injectorScheduling/gnosis/v3-Launch-Partners.json @@ -0,0 +1,94 @@ +{ + "version": "1.0", + "chainId": "100", + "createdAt": 1734024528492, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x00cb3bb6250febbf2e210258602af8784bb1afb0cdfc4bc3cbc30857f012f7db" + }, + "transactions": [ + { + "to": "0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "setMaxInjectionAmount", + "payable": false + }, + "contractInputsValues": { "amount": "25000000000" } + }, + { + "to": "0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "recipients", + "type": "address[]" + }, + { + "internalType": "uint256", + "name": "amountPerPeriod", + "type": "uint256" + }, + { "internalType": "uint8", "name": "maxPeriods", "type": "uint8" }, + { + "internalType": "uint56", + "name": "doNotStartBeforeTimestamp", + "type": "uint56" + } + ], + "name": "addRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0xcBD87e4Dad6a99506484E9adEEC8FF84Ce7BD399]", + "amountPerPeriod": "1923000000", + "maxPeriods": "8", + "doNotStartBeforeTimestamp": "1734023794" + } + }, + { + "to": "0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "recipients", + "type": "address[]" + }, + { + "internalType": "uint256", + "name": "amountPerPeriod", + "type": "uint256" + }, + { "internalType": "uint8", "name": "maxPeriods", "type": "uint8" }, + { + "internalType": "uint56", + "name": "doNotStartBeforeTimestamp", + "type": "uint56" + } + ], + "name": "addRecipients", + "payable": false + }, + "contractInputsValues": { + "recipients": "[0xA76ED5da09209D6f2198d8D793005393327b736E]", + "amountPerPeriod": "961500000", + "maxPeriods": "8", + "doNotStartBeforeTimestamp": "1734023794" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/gnosis/v3-Launch-Partners.report.txt b/MaxiOps/injectorScheduling/gnosis/v3-Launch-Partners.report.txt new file mode 100644 index 000000000..ce9e39cd4 --- /dev/null +++ b/MaxiOps/injectorScheduling/gnosis/v3-Launch-Partners.report.txt @@ -0,0 +1,45 @@ +FILENAME: `MaxiOps/injectorScheduling/gnosis/v3-Launch-Partners.json` +MULTISIG: `multisigs/maxi_omni (gnosis:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `174cb8823d7b7d12d5c6e22ad8b89be1ac47f4f5` +CHAIN(S): `gnosis` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5b721bf8-872e-4592-b3dc-1470fdf2c04e) + +``` ++-----------------------+----------------------------------------------------------------------------+-------+---------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------+----------------------------------------------------------------------------+-------+---------------------------------------------------------------+------------+----------+ +| setMaxInjectionAmount | 0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838 (maxiKeepers/injectorV2/USDC.e) | 0 | { | N/A | N/A | +| | | | "amount": [ | | | +| | | | "raw:25000000000, 18 decimals:2.5E-8, 6 decimals: 25000" | | | +| | | | ] | | | +| | | | } | | | +| addRecipients | 0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838 (maxiKeepers/injectorV2/USDC.e) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0xcBD87e4Dad6a99506484E9adEEC8FF84Ce7BD399 (N/A)" | | | +| | | | ], | | | +| | | | "amountPerPeriod": [ | | | +| | | | "raw:1923000000, 18 decimals:1.923E-9, 6 decimals: 1923" | | | +| | | | ], | | | +| | | | "maxPeriods": [ | | | +| | | | "8" | | | +| | | | ], | | | +| | | | "doNotStartBeforeTimestamp": [ | | | +| | | | "1734023794" | | | +| | | | ] | | | +| | | | } | | | +| addRecipients | 0x4aC87aEa2A3A99f34Fec78A6A73Bc495893b2838 (maxiKeepers/injectorV2/USDC.e) | 0 | { | N/A | N/A | +| | | | "recipients": [ | | | +| | | | "0xA76ED5da09209D6f2198d8D793005393327b736E (N/A)" | | | +| | | | ], | | | +| | | | "amountPerPeriod": [ | | | +| | | | "raw:961500000, 18 decimals:9.615E-10, 6 decimals: 961.5" | | | +| | | | ], | | | +| | | | "maxPeriods": [ | | | +| | | | "8" | | | +| | | | ], | | | +| | | | "doNotStartBeforeTimestamp": [ | | | +| | | | "1734023794" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+----------------------------------------------------------------------------+-------+---------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/BAL_CoWAMM_Eigen-addrewards.json b/MaxiOps/injectorScheduling/mainnet/BAL_CoWAMM_Eigen-addrewards.json new file mode 100644 index 000000000..2b4a83188 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/BAL_CoWAMM_Eigen-addrewards.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727788167919, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x98999Bcc14A159342fF4445dce6d0a885e42916B", + "data": "0xe8de0d4d000000000000000000000000ba100000625a3754423978a60c9317c58a424e3D0000000000000000000000005a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/BAL_CoWAMM_Eigen-addrewards.report.txt b/MaxiOps/injectorScheduling/mainnet/BAL_CoWAMM_Eigen-addrewards.report.txt new file mode 100644 index 000000000..312067776 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/BAL_CoWAMM_Eigen-addrewards.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/BAL_CoWAMM_Eigen-addrewards.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `9db73a6ceb5768d173ddde9c68d04f9c86f599db` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/2653f7d0-8e74-4946-8c8d-ec448bc18b83) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x98999Bcc14A159342fF4445dce6d0a885e42916B (None) | add_reward(address,address) | 0xba100000625a3754423978a60c9317c58a424e3D: tokens/BAL | N/A | 0 | +| | | | | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE: maxiKeepers/gaugeRewardsInjectors/Balancer_BAL | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+--------------------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week1.json b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week1.json new file mode 100644 index 000000000..7c5c04876 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week1.json @@ -0,0 +1,67 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1726843968842, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xed8867f4c278bc2c1da1d3214382e159989ae035dc704d4e8ec955ea86ddb483" + }, + "transactions": [ + { + "to": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x98999Bcc14A159342fF4445dce6d0a885e42916B]", + "amountsPerPeriod": "[2223000000000000000000]", + "maxPeriods": "[1]" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "value": "2223000000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week1.report.txt b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week1.report.txt new file mode 100644 index 000000000..592f3aeca --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week1.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week1.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `9db73a6ceb5768d173ddde9c68d04f9c86f599db` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8b2f8f06-1e9a-4072-af64-b8e697fb7218) + +``` ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+--------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+--------------------------------------+-----+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/gaugeRewardsInjectors/Balancer_BAL:0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE | 2223.0 (RAW: 2223000000000000000000) | N/A | 1 | ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+--------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week1.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `9db73a6ceb5768d173ddde9c68d04f9c86f599db` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/96112ba7-600c-4ac2-b899-b24c144f003b) + +``` ++------------------+--------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------------------+---------+-------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+--------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------------------+---------+-------------------------------------------+----------+ +| setRecipientList | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE(maxiKeepers/gaugeRewardsInjectors/Balancer_BAL) | BAL | [ | [ | [ | raw: 2223000000000000000000/1e18 = 2223.0 | 0 | +| | | | "0x98999Bcc14A159342fF4445dce6d0a885e42916B (Balancer BCoW-50WETH-50EIGEN Gauge Deposit)" | "2223000000000000000000/1e18 = 2223.0" | 1 | | | +| | | | ] | ] | ] | | | ++------------------+--------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------------------+---------+-------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week2.json b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week2.json new file mode 100644 index 000000000..dfbf32964 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week2.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1727880616823, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x080781a5ec025" + }, + "transactions": [ + { + "to": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x98999Bcc14A159342fF4445dce6d0a885e42916B]", + "amountsPerPeriod": "[1429000000000000000000]", + "maxPeriods": "[1]" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "value": "1429000000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week2.report.txt b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week2.report.txt new file mode 100644 index 000000000..d50961fc9 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week2.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week2.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `e4b2f329a40d1d3f8f37516c85da552ec6e51260` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/5ba98afa-829a-4185-beca-8a3f20a99baa) + +``` ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+--------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+--------------------------------------+-----+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/gaugeRewardsInjectors/Balancer_BAL:0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE | 1429.0 (RAW: 1429000000000000000000) | N/A | 1 | ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+--------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_EIGEN_week2.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `e4b2f329a40d1d3f8f37516c85da552ec6e51260` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/55a33ed0-3eb8-43b0-9a4f-a9220194360c) + +``` ++------------------+--------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------------------+---------+-------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+--------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------------------+---------+-------------------------------------------+----------+ +| setRecipientList | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE(maxiKeepers/gaugeRewardsInjectors/Balancer_BAL) | BAL | [ | [ | [ | raw: 1429000000000000000000/1e18 = 1429.0 | 0 | +| | | | "0x98999Bcc14A159342fF4445dce6d0a885e42916B (Balancer BCoW-50WETH-50EIGEN Gauge Deposit)" | "1429000000000000000000/1e18 = 1429.0" | 1 | | | +| | | | ] | ] | ] | | | ++------------------+--------------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+-----------------------------------------+---------+-------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_FXS-sfrxETH.json b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_FXS-sfrxETH.json new file mode 100644 index 000000000..026592178 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_FXS-sfrxETH.json @@ -0,0 +1,59 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728404641073, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xd7ea2ca5f3f10b43911b1f1d6453d8fd3a60d040accfb262bab89bd184b29fb3" + }, + "transactions": [ + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "amount": "976000000000000000000" + } + }, + { + "to": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x331945d46A804ad8579e14466c52d344536DcaD6]", + "amountsPerPeriod": "[244000000000000000000]", + "maxPeriods": "[4]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_FXS-sfrxETH.report.txt b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_FXS-sfrxETH.report.txt new file mode 100644 index 000000000..36078e918 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_FXS-sfrxETH.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_FXS-sfrxETH.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `aa4c72b144e486cf7e874fc5fc372e17d0f88ebb` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6e85e216-f868-4790-8008-2ddecf2ae778) + +``` ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------+-----+----------+ +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/gaugeRewardsInjectors/Balancer_BAL:0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE | 976.0 (RAW: 976000000000000000000) | N/A | 0 | ++----------+------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/injectorScheduling/mainnet/BAL_CowAMM_FXS-sfrxETH.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `aa4c72b144e486cf7e874fc5fc372e17d0f88ebb` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6f27490f-16c9-4331-a359-130e99518df9) + +``` ++------------------+--------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------------+---------------------------------------+---------+-----------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+--------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------------+---------------------------------------+---------+-----------------------------------------+----------+ +| setRecipientList | 0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE(maxiKeepers/gaugeRewardsInjectors/Balancer_BAL) | BAL | [ | [ | [ | raw: 244000000000000000000/1e18 = 244.0 | 1 | +| | | | "0x331945d46A804ad8579e14466c52d344536DcaD6 (Balancer BCoW-50sfrxETH-50FXS Gauge Deposit)" | "244000000000000000000/1e18 = 244.0" | 4 | | | +| | | | ] | ] | ] | | | ++------------------+--------------------------------------------------------------------------------------------+--------+---------------------------------------------------------------------------------------------+---------------------------------------+---------+-----------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/SEND-BAL-USDC-to-Injectors-V3-Launch.json b/MaxiOps/injectorScheduling/mainnet/SEND-BAL-USDC-to-Injectors-V3-Launch.json new file mode 100644 index 000000000..a97bba760 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/SEND-BAL-USDC-to-Injectors-V3-Launch.json @@ -0,0 +1,49 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734029403695, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xa4a9444e50a69ff5a4e215c1ce29dc010d74089abfaddff254e7d812bd2a41f3" + }, + "transactions": [ + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "to", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x80D737BF3973D92a1B5FC4b166F89cb9e7445632", + "value": "23056000000" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "recipient", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE", + "amount": "18918919000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/SEND-BAL-USDC-to-Injectors-V3-Launch.report.txt b/MaxiOps/injectorScheduling/mainnet/SEND-BAL-USDC-to-Injectors-V3-Launch.report.txt new file mode 100644 index 000000000..f95c99675 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/SEND-BAL-USDC-to-Injectors-V3-Launch.report.txt @@ -0,0 +1,14 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/SEND-BAL-USDC-to-Injectors-V3-Launch.json` +MULTISIG: `multisigs/lm (mainnet:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `45737dc517c0560398d66a0a86ebebdf964aec22` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ee4b6055-5fb9-4514-91ff-b1341feadfd6) + +``` ++----------+-------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------------+-----+----------+ +| transfer | USDC:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 | maxiKeepers/gaugeRewardsInjectors/usdc:0x80D737BF3973D92a1B5FC4b166F89cb9e7445632 | 23056.0 (RAW: 23056000000) | N/A | 0 | +| transfer | BAL:0xba100000625a3754423978a60c9317c58a424e3D | maxiKeepers/gaugeRewardsInjectors/Balancer_BAL:0x5a18FE4D7a2bd5A39CCa4F9D05D073F21FAE28EE | 18918.919 (RAW: 18918919000000000000000) | N/A | 1 | ++----------+-------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/configure-NET-injector.json b/MaxiOps/injectorScheduling/mainnet/configure-NET-injector.json new file mode 100644 index 000000000..19b3de97c --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/configure-NET-injector.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733149894552, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xccdfa6c4cdd8c" + }, + "transactions": [ + { + "to": "0x9BE5CE14d1FD02517682aeC14c7162328E9e386e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x76a6d2A59D3524cFA6775465341a19ca0d5a8657]", + "amountsPerPeriod": "[15500000000000000000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/configure-NET-injector.report.txt b/MaxiOps/injectorScheduling/mainnet/configure-NET-injector.report.txt new file mode 100644 index 000000000..c0439cb27 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/configure-NET-injector.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/configure-NET-injector.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `2de73a078744c8b7dd9b31b08d0ad8470c76eeb8` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9bf6a18a-8496-4710-a469-48806eb2240d) + +``` ++------------------+-----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+-----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +| setRecipientList | 0x9BE5CE14d1FD02517682aeC14c7162328E9e386e(maxiKeepers/gaugeRewardsInjectors/net) | NET | [ | [ | [ | raw: 15500000000000000000000/1e18 = 15500.0 | 0 | +| | | | "0x76a6d2A59D3524cFA6775465341a19ca0d5a8657 (Balancer NETETH Gauge Deposit)" | "15500000000000000000000/1e18 = 15500.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+-----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------+-------------------------------------------+---------+---------------------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/setup_NET_injector.json b/MaxiOps/injectorScheduling/mainnet/setup_NET_injector.json new file mode 100644 index 000000000..fefb0ea22 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/setup_NET_injector.json @@ -0,0 +1,26 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730279673289, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x9be5ce14d1fd02517682aec14c7162328e9e386e", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/setup_NET_injector.report.txt b/MaxiOps/injectorScheduling/mainnet/setup_NET_injector.report.txt new file mode 100644 index 000000000..e0a1ba519 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/setup_NET_injector.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/setup_NET_injector.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `0b29be3b2e856786627536c78c241f74426ce742` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6a124d33-06f4-4cc5-94b1-9e9b2281caa6) + +``` ++-----------------+------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+------------------------------------------------------------------------------------+-------+--------+------------+----------+ +| acceptOwnership | 0x9be5ce14d1fd02517682aec14c7162328e9e386e (maxiKeepers/gaugeRewardsInjectors/net) | 0 | "N/A" | N/A | N/A | ++-----------------+------------------------------------------------------------------------------------+-------+--------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/setup_USDC_injector.json b/MaxiOps/injectorScheduling/mainnet/setup_USDC_injector.json new file mode 100644 index 000000000..c90a49a3c --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/setup_USDC_injector.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1730279673289, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x8996a20afb646904a656a0466334e838bddd0a472e67c441c34152d19b62ce2e" + }, + "transactions": [ + { + "to": "0x80D737BF3973D92a1B5FC4b166F89cb9e7445632", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x80D737BF3973D92a1B5FC4b166F89cb9e7445632", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "keeperRegistryAddress", + "type": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x40eE4593aD793CA372928586bF5326eD30305EF8" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/mainnet/setup_USDC_injector.report.txt b/MaxiOps/injectorScheduling/mainnet/setup_USDC_injector.report.txt new file mode 100644 index 000000000..9eaeab2b0 --- /dev/null +++ b/MaxiOps/injectorScheduling/mainnet/setup_USDC_injector.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/injectorScheduling/mainnet/setup_USDC_injector.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `8051ff1b34b41a8c34a885706f7d91a6e7c5250c` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c399dee2-594a-4698-8c4a-0695e44647fa) + +``` ++--------------------------+-------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------------------+-------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +| acceptOwnership | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632 (maxiKeepers/gaugeRewardsInjectors/usdc) | 0 | "N/A" | N/A | N/A | +| setKeeperRegistryAddress | 0x80D737BF3973D92a1B5FC4b166F89cb9e7445632 (maxiKeepers/gaugeRewardsInjectors/usdc) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x40eE4593aD793CA372928586bF5326eD30305EF8 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++--------------------------+-------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/mainnet/v3-Launch-Pools-BAL-&-USDC.json b/MaxiOps/injectorScheduling/mainnet/v3-Launch-Pools-BAL-&-USDC.json new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/injectorScheduling/op/OpUSDCInjector.json b/MaxiOps/injectorScheduling/op/OpUSDCInjector.json new file mode 100644 index 000000000..7d07fcbdd --- /dev/null +++ b/MaxiOps/injectorScheduling/op/OpUSDCInjector.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1730279673289, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x8996a20afb646904a656a0466334e838bddd0a472e67c441c34152d19b62ce2e" + }, + "transactions": [ + { + "to": "0x79D0F97D4D8c1Dd30b1Ea09746dB8847036AD92d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x79D0F97D4D8c1Dd30b1Ea09746dB8847036AD92d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "keeperRegistryAddress", + "type": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x25c059EE800de5B33764E2eEa01858A4015b4fD8" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/op/OpUSDCInjector.report.txt b/MaxiOps/injectorScheduling/op/OpUSDCInjector.report.txt new file mode 100644 index 000000000..d7b13f7f5 --- /dev/null +++ b/MaxiOps/injectorScheduling/op/OpUSDCInjector.report.txt @@ -0,0 +1,18 @@ +FILENAME: `MaxiOps/injectorScheduling/op/OpUSDCInjector.json` +MULTISIG: `multisigs/vote_incentive_recycling (optimism:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `8051ff1b34b41a8c34a885706f7d91a6e7c5250c` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b4cc317c-fc41-4ac4-a195-e5a44b6e7d07) + +``` ++--------------------------+-------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------------------+-------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +| acceptOwnership | 0x79D0F97D4D8c1Dd30b1Ea09746dB8847036AD92d (maxiKeepers/gaugeRewardsInjectors/usdc) | 0 | "N/A" | N/A | N/A | +| setKeeperRegistryAddress | 0x79D0F97D4D8c1Dd30b1Ea09746dB8847036AD92d (maxiKeepers/gaugeRewardsInjectors/usdc) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x25c059EE800de5B33764E2eEa01858A4015b4fD8 (N/A)" | | | +| | | | ] | | | +| | | | } | | | ++--------------------------+-------------------------------------------------------------------------------------+-------+--------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/optimism/USDC-Injection-rETH-wETH.json b/MaxiOps/injectorScheduling/optimism/USDC-Injection-rETH-wETH.json new file mode 100644 index 000000000..ffe7326df --- /dev/null +++ b/MaxiOps/injectorScheduling/optimism/USDC-Injection-rETH-wETH.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1730671344645, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xd9cd24699c52bb89a34f1c9bee59e40a427274d38e2a626d658bf567674e5af3" + }, + "transactions": [ + { + "to": "0x79D0F97D4D8c1Dd30b1Ea09746dB8847036AD92d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xF27D53f21d024643d50de50183932F17638229F6]", + "amountsPerPeriod": "[1080000000]", + "maxPeriods": "[2]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/optimism/USDC-Injection-rETH-wETH.report.txt b/MaxiOps/injectorScheduling/optimism/USDC-Injection-rETH-wETH.report.txt new file mode 100644 index 000000000..888f11d61 --- /dev/null +++ b/MaxiOps/injectorScheduling/optimism/USDC-Injection-rETH-wETH.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/injectorScheduling/optimism/USDC-Injection-rETH-wETH.json` +MULTISIG: `multisigs/vote_incentive_recycling (optimism:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `88cb1ee6168fed18d2d6c9bb101b6956e10801da` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/764eaded-c6d4-4bc5-a8e7-af0bdd3d9e12) + +``` ++------------------+------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +| setRecipientList | 0x79D0F97D4D8c1Dd30b1Ea09746dB8847036AD92d(maxiKeepers/gaugeRewardsInjectors/usdc) | USDC | [ | [ | [ | raw: 1080000000/1e6 = 1080.0 | 0 | +| | | | "0xF27D53f21d024643d50de50183932F17638229F6 (gauges/BPT-rETH-ETH-gauge-f27d)" | "1080000000/1e6 = 1080.0" | "2" | | | +| | | | ] | ] | ] | | | ++------------------+------------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------+----------------------------+---------+------------------------------+----------+ +``` diff --git a/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-bal-weth-gauge-to-injector.json b/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-bal-weth-gauge-to-injector.json new file mode 100644 index 000000000..3994ec1a2 --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-bal-weth-gauge-to-injector.json @@ -0,0 +1,70 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1714386269037, + "meta": { + "name": "Transactions Batch", + "description": "Child Chain Injector Program Load", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xb11C1A66f90CD16c6ae83d503CF2E138B8D8FD42,0xA442C9cB6Fafb6Fb2a722A1BAa54f9b8ff0A55D3, 0x11A72ebFc318c977a6A1b9b6e4565e068f9B3c12]", + "amountsPerPeriod": "[1000000000000000000000,500000000000000000000, 100000000000000000000]", + "maxPeriods": "[1, 1, 12]" + } + }, + { + "to": "0xa2036f0538221a77A3937F1379699f44945018d0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02", + "amount": "1200000000000000000000" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-bal-weth-gauge-to-injector.report.txt b/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-bal-weth-gauge-to-injector.report.txt new file mode 100644 index 000000000..62e4165e9 --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-bal-weth-gauge-to-injector.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-bal-weth-gauge-to-injector.json` +MULTISIG: `multisigs/feesManager (zkevm:0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09)` +COMMIT: `f00523b5ac53e5d48b40572ccd399cb881a4af03` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': 'c5bb5fe8-1258-41af-b83c-a91b5a118210', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++------------+--------------------------------------------------+-----------------------------------------------------------------------------------------------------+--------------------------------------+-------+------------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++============+==================================================+=====================================================================================================+======================================+=======+============+ +| transfer | MATIC:0xa2036f0538221a77A3937F1379699f44945018d0 | maxiKeepers/gaugeRewardsInjectors/matic_rewards_injector:0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02 | 1200.0 (RAW: 1200000000000000000000) | N/A | 1 | ++------------+--------------------------------------------------+-----------------------------------------------------------------------------------------------------+--------------------------------------+-------+------------+ +``` +FILENAME: `MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-bal-weth-gauge-to-injector.json` +MULTISIG: `multisigs/feesManager (zkevm:0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09)` +COMMIT: `f00523b5ac53e5d48b40572ccd399cb881a4af03` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`ValueError({'error': {'id': 'efda93df-9ccb-4614-98b5-fb005a341502', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}})`) +``` ++------------------+------------------------------------------------------------------------------------------------------+----------+-----------------------------------------------------------------------------------+------------------------------------------+-----------+-------------------------------------------+------------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount | tx_index | ++==================+======================================================================================================+==========+===================================================================================+==========================================+===========+===========================================+============+ +| setRecipientList | 0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02(maxiKeepers/gaugeRewardsInjectors/matic_rewards_injector) | MATIC | [ | [ | [ | raw: 1600000000000000000000/1e18 = 1600.0 | 0 | +| | | | "0xb11C1A66f90CD16c6ae83d503CF2E138B8D8FD42 (gauges/ECLP-wETH-rETH-gauge-b11c)", | "1000000000000000000000/1e18 = 1000.0", | 1, | | | +| | | | "0xA442C9cB6Fafb6Fb2a722A1BAa54f9b8ff0A55D3 (gauges/rsETH/wETH-gauge-a442)", | "500000000000000000000/1e18 = 500.0", | 1, | | | +| | | | "0x11A72ebFc318c977a6A1b9b6e4565e068f9B3c12 (gauges/50BAL-50WETH-gauge-11a7)" | "100000000000000000000/1e18 = 100.0" | 12 | | | +| | | | ] | ] | ] | | | ++------------------+------------------------------------------------------------------------------------------------------+----------+-----------------------------------------------------------------------------------+------------------------------------------+-----------+-------------------------------------------+------------+ +``` diff --git a/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-matic-to-bal-weth.json b/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-matic-to-bal-weth.json new file mode 100644 index 000000000..dd2f9628a --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-matic-to-bal-weth.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1714157066535, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "", + "checksum": "0x5d5d5529a4db5a634ee5a3cf145b231862e4d044ed4a801c0f667cddf3b9365f" + }, + "transactions": [ + { + "to": "0xb9aD3466cdd42015cc05d4804DC68D562b6a2065", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x11A72ebFc318c977a6A1b9b6e4565e068f9B3c12", + "data": "0xe8de0d4d000000000000000000000000a2036f0538221a77a3937f1379699f44945018d00000000000000000000000003fb4ee715987ed98edbeeb144f9b6b034c4c9f02" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-matic-to-bal-weth.report.txt b/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-matic-to-bal-weth.report.txt new file mode 100644 index 000000000..0ef265ab4 --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-matic-to-bal-weth.report.txt @@ -0,0 +1,21 @@ +FILENAME: `MaxiOps/injectorScheduling/zkevm/MATIC/zkEVM-add-matic-to-bal-weth.json` +MULTISIG: `multisigs/feesManager (zkevm:0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09)` +COMMIT: `4b58a3feaeebc4550160c8191b48f65025c6704a` +CHAIN(S): `zkevm` +TENDERLY: SKIPPED (`KeyError('simulation')`) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+====================================================================================================================================================+==============+============+ +| performAction | 0xb9aD3466cdd42015cc05d4804DC68D562b6a2065 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x11A72ebFc318c977a6A1b9b6e4565e068f9B3c12 (gauges/50BAL-50WETH-gauge-11a7) " | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | [ | | | +| | | | "0xe8de0d4d000000000000000000000000a2036f0538221a77a3937f1379699f44945018d00000000000000000000000003fb4ee715987ed98edbeeb144f9b6b034c4c9f02" | | | +| | | | ] | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/injectorScheduling/zkevm/USDC/30-01-2023-rsETH/setRecipientList_zkEVM_USDC_rsETH.json b/MaxiOps/injectorScheduling/zkevm/USDC/30-01-2023-rsETH/setRecipientList_zkEVM_USDC_rsETH.json new file mode 100644 index 000000000..91952c9b5 --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/USDC/30-01-2023-rsETH/setRecipientList_zkEVM_USDC_rsETH.json @@ -0,0 +1,42 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1705971679785, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "", + "checksum": "0x19f8cdb3baa78d152cb1231db224e76f369ebe1549ea9e3d2d52fa36af0ae799" + }, + "transactions": [ + { + "to": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { "name": "maxPeriods", "type": "uint8[]", "internalType": "uint8[]" } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xA442C9cB6Fafb6Fb2a722A1BAa54f9b8ff0A55D3]", + "amountsPerPeriod": "[1500000000]", + "maxPeriods": "[8]" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/zkevm/USDC/30-01-2023-rsETH/setRecipientList_zkEVM_USDC_rsETH.report.txt b/MaxiOps/injectorScheduling/zkevm/USDC/30-01-2023-rsETH/setRecipientList_zkEVM_USDC_rsETH.report.txt new file mode 100644 index 000000000..b899a358e --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/USDC/30-01-2023-rsETH/setRecipientList_zkEVM_USDC_rsETH.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/01-2024/MOPS-002/setRecipientList_zkEVM_USDC_rsETH.json` +MULTISIG: `multisigs/feesManager (zkevm:0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09)` +COMMIT: `31cbb485e78f74eff63e1d7e4436feb581103031` +CHAIN(S): `zkevm` +``` ++------------------+------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++==================+======================================================================================================+=========+=========================================================+==============+============+ +| setRecipientList | 0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | 0 | { | N/A | N/A | +| | | | "gaugeAddresses": [ | | | +| | | | "0xA442C9cB6Fafb6Fb2a722A1BAa54f9b8ff0A55D3 (N/A) " | | | +| | | | ], | | | +| | | | "amountsPerPeriod": "[1500000000]", | | | +| | | | "maxPeriods": "[8]" | | | +| | | | } | | | ++------------------+------------------------------------------------------------------------------------------------------+---------+---------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/injectorScheduling/zkevm/USDC/add_reward_USDC_rsETH_gauge.json b/MaxiOps/injectorScheduling/zkevm/USDC/add_reward_USDC_rsETH_gauge.json new file mode 100644 index 000000000..ee6a11a87 --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/USDC/add_reward_USDC_rsETH_gauge.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1705969784090, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "", + "checksum": "0xc0392a8d3930af734be87f8d12f684c2c994d7aa2d09a23feaa19794131454bc" + }, + "transactions": [ + { + "to": "0xb9aD3466cdd42015cc05d4804DC68D562b6a2065", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xA442C9cB6Fafb6Fb2a722A1BAa54f9b8ff0A55D3", + "data": "0xe8de0d4d000000000000000000000000a8ce8aee21bc2a48a5ef670afcc9274c7bbbc0350000000000000000000000002f1901f2a82fcc3ee9010b809938816b3b06fa6a" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/zkevm/USDC/add_reward_USDC_rsETH_gauge.report.txt b/MaxiOps/injectorScheduling/zkevm/USDC/add_reward_USDC_rsETH_gauge.report.txt new file mode 100644 index 000000000..121839d58 --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/USDC/add_reward_USDC_rsETH_gauge.report.txt @@ -0,0 +1,16 @@ +FILENAME: `MaxiOps/01-2024/add_reward_USDC_rsETH_gauge.json` +MULTISIG: `multisigs/feesManager (zkevm:0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09)` +COMMIT: `31cbb485e78f74eff63e1d7e4436feb581103031` +CHAIN(S): `zkevm` +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++===============+=================================================================================================================+=========+========================================================================================================================================================+==============+============+ +| performAction | 0xb9aD3466cdd42015cc05d4804DC68D562b6a2065 (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xA442C9cB6Fafb6Fb2a722A1BAa54f9b8ff0A55D3 (N/A) " | | | +| | | | ], | | | +| | | | "data": "0xe8de0d4d000000000000000000000000a8ce8aee21bc2a48a5ef670afcc9274c7bbbc0350000000000000000000000002f1901f2a82fcc3ee9010b809938816b3b06fa6a" | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------+--------------------------------------------------------------------------------------------------------------------------------------------------------+--------------+------------+ +``` diff --git a/MaxiOps/injectorScheduling/zkevm/set_poker_as_keeper.json b/MaxiOps/injectorScheduling/zkevm/set_poker_as_keeper.json new file mode 100644 index 000000000..57db36d0e --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/set_poker_as_keeper.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "1101", + "createdAt": 1732256750075, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09", + "createdFromOwnerAddress": "", + "checksum": "0x0f2f27bc17da2bc14feadb01280cf275b18a46f654ccccb02b42230b1d7dd5be" + }, + "transactions": [ + { + "to": "0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x737760C760FfEc370F84861E4Be4AFF7093Ffa3f" + } + }, + { + "to": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "keeperRegistryAddress", + "type": "address", + "internalType": "address" + } + ], + "name": "setKeeperRegistryAddress", + "payable": false + }, + "contractInputsValues": { + "keeperRegistryAddress": "0x737760C760FfEc370F84861E4Be4AFF7093Ffa3f" + } + } + ] +} diff --git a/MaxiOps/injectorScheduling/zkevm/set_poker_as_keeper.report.txt b/MaxiOps/injectorScheduling/zkevm/set_poker_as_keeper.report.txt new file mode 100644 index 000000000..2990a36b5 --- /dev/null +++ b/MaxiOps/injectorScheduling/zkevm/set_poker_as_keeper.report.txt @@ -0,0 +1,22 @@ +FILENAME: `MaxiOps/injectorScheduling/zkevm/set_poker_as_keeper.json` +MULTISIG: `multisigs/feesManager (zkevm:0xB59Ab49CA8d064E645Bf2c546d9FE6d1d4147a09)` +COMMIT: `3e187956a0db2ef14eccfed137c66f4f3a132ab2` +CHAIN(S): `zkevm` +TENDERLY: `🟪 SKIPPED (ValueError({'error': {'id': 'c6f9bf3e-4e93-433b-8888-fec81f57bc0a', 'slug': 'invalid_transaction_simulation', 'message': 'Unsupported network'}}))` + +``` ++--------------------------+-------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------------------+-------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| setKeeperRegistryAddress | 0x3fb4ee715987eD98EDbeEb144F9b6b034C4c9F02 (maxiKeepers/gaugeRewardsInjectors/matic_rewards_injector) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x737760C760FfEc370F84861E4Be4AFF7093Ffa3f (EOA/keepers/github_actions_poker)" | | | +| | | | ] | | | +| | | | } | | | +| setKeeperRegistryAddress | 0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A (maxiKeepers/gaugeRewardsInjectors/usdc_rewards_injector) | 0 | { | N/A | N/A | +| | | | "keeperRegistryAddress": [ | | | +| | | | "0x737760C760FfEc370F84861E4Be4AFF7093Ffa3f (EOA/keepers/github_actions_poker)" | | | +| | | | ] | | | +| | | | } | | | ++--------------------------+-------------------------------------------------------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/merkl/.gitkeep b/MaxiOps/merkl/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/op_lstlrt/claim_op_grant.json b/MaxiOps/op_lstlrt/claim_op_grant.json new file mode 100644 index 000000000..9a8984564 --- /dev/null +++ b/MaxiOps/op_lstlrt/claim_op_grant.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1723191485883, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0xce3756c3dc2863a7524e621944e40757a08aabdf51c5b6d5bfb7ef390be54bf2" + }, + "transactions": [ + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "from", + "type": "address", + "internalType": "address" + }, + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transferFrom", + "payable": false + }, + "contractInputsValues": { + "from": "0x19793c7824Be70ec58BB673CA42D2779d12581BE", + "to": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "amount": "60000000000000000000000" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/claim_op_grant.report.txt b/MaxiOps/op_lstlrt/claim_op_grant.report.txt new file mode 100644 index 000000000..66f930a2c --- /dev/null +++ b/MaxiOps/op_lstlrt/claim_op_grant.report.txt @@ -0,0 +1,22 @@ +FILENAME: `MaxiOps/op_lstlrt/claim_op_grant.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `4e34fadf3bf89a29fa3b2e180d00bbb9be8f9ec5` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b0709091-9c19-47d1-9032-a7faffc123ce) +``` ++--------------+--------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------+--------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +| transferFrom | 0x4200000000000000000000000000000000000042 (tokens/OP) | 0 | { | N/A | N/A | +| | | | "from": [ | | | +| | | | "0x19793c7824Be70ec58BB673CA42D2779d12581BE (N/A)" | | | +| | | | ], | | | +| | | | "to": [ | | | +| | | | "0x09Df1626110803C7b3b07085Ef1E053494155089 (multisigs/lm)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:60000000000000000000000, 18 decimals:60000, 6 decimals: 60000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++--------------+--------------------------------------------------------+-------+-------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/fix_reward_distributor_ineth_gauge.json b/MaxiOps/op_lstlrt/fix_reward_distributor_ineth_gauge.json new file mode 100644 index 000000000..4b8624269 --- /dev/null +++ b/MaxiOps/op_lstlrt/fix_reward_distributor_ineth_gauge.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1720454599638, + "meta": { + "name": "Transactions Batch", + "description": "Setting the distributor for gauge 0x476f2dedf358eb87c4c22dfaf5e511f68e0272e0 (inETH/wstETH pool) for OP (0x4200000000000000000000000000000000000042) to the reward injector (0x34a265e1EBCb31586293eb2D2f94c6ff2f920340)", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x476f2dedf358eb87c4c22dfaf5e511f68e0272e0", + "data": "0x058a3a24000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1ebcb31586293eb2d2f94c6ff2f920340" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/fix_reward_distributor_ineth_gauge.report.txt b/MaxiOps/op_lstlrt/fix_reward_distributor_ineth_gauge.report.txt new file mode 100644 index 000000000..574d91873 --- /dev/null +++ b/MaxiOps/op_lstlrt/fix_reward_distributor_ineth_gauge.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/op_lstlrt/fix_reward_distributor_ineth_gauge.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `495c0e6514a44de0ff3e73efd8f2a3ec659f0aee` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/75c0e56f-d22b-40b7-aa7b-d2e30ed2165e) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------+----------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------+----------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x476f2dedf358eb87c4c22dfaf5e511f68e0272e0 (None) | set_reward_distributor(address,address) | 0x4200000000000000000000000000000000000042: tokens/OP | N/A | 0 | +| | | | | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340: maxiKeepers/gaugeRewardsInjectors/op | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------+----------------------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/op_lstlrt/fix_reward_token.json b/MaxiOps/op_lstlrt/fix_reward_token.json new file mode 100644 index 000000000..9c4d9258f --- /dev/null +++ b/MaxiOps/op_lstlrt/fix_reward_token.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1720454599638, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0x48b0a702139cad717f760eBf55C817D545A415ca", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_reward_token", "type": "address" }, + { "name": "_distributor", "type": "address" } + ], + "name": "set_reward_distributor", + "payable": false + }, + "contractInputsValues": { + "_reward_token": "0x4200000000000000000000000000000000000042", + "_distributor": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/fix_reward_token.report.txt b/MaxiOps/op_lstlrt/fix_reward_token.report.txt new file mode 100644 index 000000000..76fc54ef8 --- /dev/null +++ b/MaxiOps/op_lstlrt/fix_reward_token.report.txt @@ -0,0 +1,19 @@ +FILENAME: `MaxiOps/op_lstlrt/fix_reward_token.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `899a4180ab3a609aea811aea3b9649a940592a0e` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1421577f-3f60-440f-877c-00bc04922069) +``` ++------------------------+--------------------------------------------------------+-------+-----------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------------+--------------------------------------------------------+-------+-----------------------------------------------------------------------------------------+------------+----------+ +| set_reward_distributor | 0x48b0a702139cad717f760eBf55C817D545A415ca (Not Found) | 0 | { | N/A | N/A | +| | | | "_reward_token": [ | | | +| | | | "0x4200000000000000000000000000000000000042 (tokens/OP)" | | | +| | | | ], | | | +| | | | "_distributor": [ | | | +| | | | "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 (maxiKeepers/gaugeRewardsInjectors/op)" | | | +| | | | ] | | | +| | | | } | | | ++------------------------+--------------------------------------------------------+-------+-----------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/inception-bootstrapping-incentives-2024-08-15.json b/MaxiOps/op_lstlrt/inception-bootstrapping-incentives-2024-08-15.json new file mode 100644 index 000000000..0d0781b4f --- /dev/null +++ b/MaxiOps/op_lstlrt/inception-bootstrapping-incentives-2024-08-15.json @@ -0,0 +1,127 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1698450039804, + "meta": { + "name": "", + "description": "Inception pools bootstrapping incentives", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "" + }, + + "transactions": [ + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xa9b08B4CeEC1EF29EdEC7F9C94583270337D6416", + "rawAmount": "6000000000000000000000" + } + }, + { + "to": "0x679c5C5828367db9005FdEa80faA45AE7B881791", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x37c91824db1639ff3d9b54e7d96156a4aa4b1c3f7ea31926a77eef6d12c69fda", + "_token": "0x4200000000000000000000000000000000000042", + "_amount": "3000000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x679c5C5828367db9005FdEa80faA45AE7B881791", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x248d01fb35eada971276e509780419ec017bb357b6ebbed7d267d9e18387fe12", + "_token": "0x4200000000000000000000000000000000000042", + "_amount": "3000000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/inception-bootstrapping-incentives-2024-08-15.report.txt b/MaxiOps/op_lstlrt/inception-bootstrapping-incentives-2024-08-15.report.txt new file mode 100644 index 000000000..f525d2725 --- /dev/null +++ b/MaxiOps/op_lstlrt/inception-bootstrapping-incentives-2024-08-15.report.txt @@ -0,0 +1,34 @@ +FILENAME: `MaxiOps/op_lstlrt/inception-bootstrapping-incentives-2024-08-15.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `84bd45d0594d85759e267f21c9afb74dcf5f3ec8` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/41a0399d-cdb5-4fee-9d4d-02fb8eceb728) +``` ++--------------+--------------------------------------------------------------------+-------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+-------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | o-ComposableStable wstETH/inETH | OP(0x4200000000000000000000000000000000000042) | aura | 2 | 1 | +| | 0x0ccb0c34d4898dfa8de3ece9d814074e60adefd0000000000000000000000142 | 3000.0(3000000000000000000000) | 0x37c91824db1639ff3d9b54e7d96156a4aa4b1c3f7ea31926a77eef6d12c69fda | | | +| depositBribe | o-ComposableStable wstETH/instETH | OP(0x4200000000000000000000000000000000000042) | aura | 2 | 2 | +| | 0xc9eb4b8ce914ee451360b315ffd1d1af8df96be9000000000000000000000143 | 3000.0(3000000000000000000000) | 0x248d01fb35eada971276e509780419ec017bb357b6ebbed7d267d9e18387fe12 | | | ++--------------+--------------------------------------------------------------------+-------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/inception-bootstrapping-incentives-2024-08-15.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `84bd45d0594d85759e267f21c9afb74dcf5f3ec8` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6147684c-9da0-4112-989a-22e680c6014e) +``` ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4200000000000000000000000000000000000042 (tokens/OP) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xa9b08B4CeEC1EF29EdEC7F9C94583270337D6416 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:6000000000000000000000, 18 decimals:6000, 6 decimals: 6000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.json b/MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.json new file mode 100644 index 000000000..befe41a7b --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.json @@ -0,0 +1,82 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E,0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e,0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A,0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5,0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C,0xF27D53f21d024643d50de50183932F17638229F6,0x80aDD8a1BF48AB726b96f19Ae1bF27A39e3C9cbD,0xA15C762974BA3aC59abc305FbA097A0E564F7470,0xC19055C2FF199Ba6190505Ef776573c8B7cC676A]", + "amountsPerPeriod": "[68086992212050000000,67370788085950000000,633300000000000000000,633300000000000000000,340900360760000000000,447976927245300000000,83669834614300000000,633300000000000000000,258595097082250000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "amount": "6332999999999700000000" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.report.txt b/MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.report.txt new file mode 100644 index 000000000..38595f5b5 --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.report.txt @@ -0,0 +1,46 @@ +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `42f0299d8dc8430afe7b2510983b2f5361656f1c` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/b662aa8d-f163-41de-98f2-b776f2228f1e) +``` ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------------+-----+----------+ +| transfer | OP:0x4200000000000000000000000000000000000042 | maxiKeepers/gaugeRewardsInjectors/op:0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 | 6332.9999999997 (RAW: 6332999999999700000000) | N/A | 2 | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `42f0299d8dc8430afe7b2510983b2f5361656f1c` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/72b2e28a-1f46-4181-97d9-558a6a3917a5) +``` ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------+-------------------------------------------------+---------+-----------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------+-------------------------------------------------+---------+-----------------------------------------------------+----------+ +| setRecipientList | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340(maxiKeepers/gaugeRewardsInjectors/op) | OP | [ | [ | [ | raw: 3166499999999850000000/1e18 = 3166.49999999985 | 1 | +| | | | "0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E (gauges/bpt-yieldconcerto-gauge-758d)", | "68086992212050000000/1e18 = 68.08699221205", | 2, | | | +| | | | "0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e (gauges/bpt-fraxethe-gauge-c46a)", | "67370788085950000000/1e18 = 67.37078808595", | 2, | | | +| | | | "0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A (gauges/bpt-ethtri-gauge-5669)", | "633300000000000000000/1e18 = 633.3", | 2, | | | +| | | | "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5 (gauges/bpt-weethwsteth-gauge-f3b3)", | "633300000000000000000/1e18 = 633.3", | 2, | | | +| | | | "0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C (gauges/ECLP-wstETH-WETH-gauge-9f9f)", | "340900360760000000000/1e18 = 340.90036076", | 2, | | | +| | | | "0xF27D53f21d024643d50de50183932F17638229F6 (gauges/BPT-rETH-ETH-gauge-f27d)", | "447976927245300000000/1e18 = 447.9769272453", | 2, | | | +| | | | "0x80aDD8a1BF48AB726b96f19Ae1bF27A39e3C9cbD (gauges/bpt-stadue-gauge-80ad)", | "83669834614300000000/1e18 = 83.6698346143", | 2, | | | +| | | | "0xA15C762974BA3aC59abc305FbA097A0E564F7470 (gauges/wrsETH/wETH-gauge-a15c)", | "633300000000000000000/1e18 = 633.3", | 2, | | | +| | | | "0xC19055C2FF199Ba6190505Ef776573c8B7cC676A (gauges/bpt-ankrgalaharm-gauge-c190)" | "258595097082250000000/1e18 = 258.59509708225" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------+-------------------------------------------------+---------+-----------------------------------------------------+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-06-27_2024-07-11_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `42f0299d8dc8430afe7b2510983b2f5361656f1c` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/21937e47-ddcf-43f3-b82f-f8fa9bb9aad0) +``` ++-----------------+-----------------------------------------------------------------------------------+-------+--------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------+-----------------------------------------------------------------------------------+-------+--------------+------------+----------+ +| acceptOwnership | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 (maxiKeepers/gaugeRewardsInjectors/op) | 0 | "0x79ba5097" | N/A | N/A | ++-----------------+-----------------------------------------------------------------------------------+-------+--------------+------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-11_2024-07-25_bal_injector_stream.json b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-11_2024-07-25_bal_injector_stream.json new file mode 100644 index 000000000..e815d1c36 --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-11_2024-07-25_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C,0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A,0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e,0xC19055C2FF199Ba6190505Ef776573c8B7cC676A,0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5,0xA15C762974BA3aC59abc305FbA097A0E564F7470,0xF27D53f21d024643d50de50183932F17638229F6,0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E]", + "amountsPerPeriod": "[335770965118650000000,633300000000000000000,64068106263000000000,310495019343600000000,633300000000000000000,633300000000000000000,500767928293550000000,55497980981050000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "amount": "6332999999999700000000" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-11_2024-07-25_bal_injector_stream.report.txt b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-11_2024-07-25_bal_injector_stream.report.txt new file mode 100644 index 000000000..e968db6e0 --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-11_2024-07-25_bal_injector_stream.report.txt @@ -0,0 +1,33 @@ +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-07-11_2024-07-25_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `a1aad3c1b9cf34b312f6a4a8cc4ab03ea1dca953` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/e4fe23a6-9a74-4def-85e7-57a044bc9a3d) +``` ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------------+-----+----------+ +| transfer | OP:0x4200000000000000000000000000000000000042 | maxiKeepers/gaugeRewardsInjectors/op:0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 | 6332.9999999997 (RAW: 6332999999999700000000) | N/A | 1 | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-07-11_2024-07-25_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `a1aad3c1b9cf34b312f6a4a8cc4ab03ea1dca953` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/d992328a-5329-4be9-87c8-34e537f0f15b) +``` ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------+--------------------------------------------------+---------+-----------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------+--------------------------------------------------+---------+-----------------------------------------------------+----------+ +| setRecipientList | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340(maxiKeepers/gaugeRewardsInjectors/op) | OP | [ | [ | [ | raw: 3166499999999850000000/1e18 = 3166.49999999985 | 0 | +| | | | "0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C (gauges/ECLP-wstETH-WETH-gauge-9f9f)", | "335770965118650000000/1e18 = 335.77096511865", | 2, | | | +| | | | "0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A (gauges/bpt-ethtri-gauge-5669)", | "633300000000000000000/1e18 = 633.3", | 2, | | | +| | | | "0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e (gauges/bpt-fraxethe-gauge-c46a)", | "64068106263000000000/1e18 = 64.068106263", | 2, | | | +| | | | "0xC19055C2FF199Ba6190505Ef776573c8B7cC676A (gauges/bpt-ankrgalaharm-gauge-c190)", | "310495019343600000000/1e18 = 310.4950193436", | 2, | | | +| | | | "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5 (gauges/bpt-weethwsteth-gauge-f3b3)", | "633300000000000000000/1e18 = 633.3", | 2, | | | +| | | | "0xA15C762974BA3aC59abc305FbA097A0E564F7470 (gauges/wrsETH/wETH-gauge-a15c)", | "633300000000000000000/1e18 = 633.3", | 2, | | | +| | | | "0xF27D53f21d024643d50de50183932F17638229F6 (gauges/BPT-rETH-ETH-gauge-f27d)", | "500767928293550000000/1e18 = 500.76792829355", | 2, | | | +| | | | "0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E (gauges/bpt-yieldconcerto-gauge-758d)" | "55497980981050000000/1e18 = 55.49798098105" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------+--------------------------------------------------+---------+-----------------------------------------------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08.csv b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08.csv new file mode 100644 index 000000000..a393e15f9 --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08.csv @@ -0,0 +1,9 @@ +recipientGaugeAddr,poolAddress,symbol,distribution,pctDistribution,voteWeightNoBoost,staticBoost,dynamicBoost,boost,voteWeight,cap,fixedIncentive +0xA15C762974BA3aC59abc305FbA097A0E564F7470,0x73A7fe27fe9545D53924E529Acf11F3073841b9e,wrsETH/wETH,2814.8,20.0,0.7656693122222175,2.0,1.0,2.0,1.531338624444435,20%,0 +0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5,0x2Bb4712247D5F451063b5E4f6948abDfb925d93D,bpt-weethwsteth,2814.8,20.0,0.6593263521913542,2.0,1.0,2.0,1.3186527043827083,20%,0 +0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A,0x5F8893506Ddc4C271837187d14A9C87964a074Dc,bpt-ethtri,2814.8,20.0,0.36865559477365983,1.5,2.8029489956394453,3.3029489956394453,1.2176506264945222,20%,0 +0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C,0x7Ca75bdEa9dEde97F8B13C6641B768650CB83782,ECLP-wstETH-WETH,1897.0622782187781,13.479197656805303,0.2481335734053481,1.0,3.0,3.0,0.7444007202160443,20%,0 +0xF27D53f21d024643d50de50183932F17638229F6,0x4Fd63966879300caFafBB35D157dC5229278Ed23,BPT-rETH-ETH,1773.2108702798457,12.599196179336689,0.6455404885645438,1.0,1.0,1.0,0.6455404885645438,20%,0 +0xC19055C2FF199Ba6190505Ef776573c8B7cC676A,0x004700ba0a4f5f22e1E78a277fCA55e36F47E09C,bpt-ankrgalaharm,1316.7688657234519,9.35603855139585,0.2410440427366241,1.75,1.3277712572415796,2.0777712572415794,0.5008343837274685,20%,0 +0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E,0x2FEb76966459d7841fa8A7Ed0aa4bf574d6111Bf,bpt-yieldconcerto,333.8411008831618,2.372041359124356,0.1205220213683117,1.0,1.0,1.0,0.1205220213683117,10%,0 +0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e,0xA71021492a3966EeC735Ed1B505aFa097c7cFe6f,bpt-fraxethe,308.7168848947609,2.1935262533377924,0.1205220213683117,1.0,1.0,1.0,0.1205220213683117,20%,0 diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08_bal_injector_stream.json b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08_bal_injector_stream.json new file mode 100644 index 000000000..9a01a756e --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xA15C762974BA3aC59abc305FbA097A0E564F7470,0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E,0xF27D53f21d024643d50de50183932F17638229F6,0xC19055C2FF199Ba6190505Ef776573c8B7cC676A,0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e,0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C,0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A,0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5]", + "amountsPerPeriod": "[1407400000000000000000,166920550441550000000,886605435139900000000,658384432861700000000,154358442447350000000,948531139109350000000,1407400000000000000000,1407400000000000000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "amount": "14073999999999700000000" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08_bal_injector_stream.report.txt b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08_bal_injector_stream.report.txt new file mode 100644 index 000000000..8e5a368c7 --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08_bal_injector_stream.report.txt @@ -0,0 +1,33 @@ +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `02a9233c116fe85cab0f7e475f98f5c356500453` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1b4cd2ad-9d7c-457d-aede-ab6c9ff83175) +``` ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | OP:0x4200000000000000000000000000000000000042 | maxiKeepers/gaugeRewardsInjectors/op:0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 | 14073.9999999997 (RAW: 14073999999999700000000) | N/A | 1 | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-07-25_2024-08-08_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `02a9233c116fe85cab0f7e475f98f5c356500453` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/b50d3543-e1a1-4064-985a-2b367a04e497) +``` ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+--------------------------------------------------+---------+-----------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+--------------------------------------------------+---------+-----------------------------------------------------+----------+ +| setRecipientList | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340(maxiKeepers/gaugeRewardsInjectors/op) | OP | [ | [ | [ | raw: 7036999999999850000000/1e18 = 7036.99999999985 | 0 | +| | | | "0xA15C762974BA3aC59abc305FbA097A0E564F7470 (Balancer wrsETH/wETH Gauge Deposit)", | "1407400000000000000000/1e18 = 1407.4", | 2, | | | +| | | | "0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E (Balancer bpt-yieldconcerto Gauge Deposit)", | "166920550441550000000/1e18 = 166.92055044155", | 2, | | | +| | | | "0xF27D53f21d024643d50de50183932F17638229F6 (Balancer BPT-rETH-ETH Gauge Deposit)", | "886605435139900000000/1e18 = 886.6054351399", | 2, | | | +| | | | "0xC19055C2FF199Ba6190505Ef776573c8B7cC676A (Balancer bpt-ankrgalaharm Gauge Deposit)", | "658384432861700000000/1e18 = 658.3844328617", | 2, | | | +| | | | "0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e (Balancer bpt-fraxethe Gauge Deposit)", | "154358442447350000000/1e18 = 154.35844244735", | 2, | | | +| | | | "0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C (Balancer ECLP-wstETH-WETH Gauge Deposit)", | "948531139109350000000/1e18 = 948.53113910935", | 2, | | | +| | | | "0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A (Balancer bpt-ethtri Gauge Deposit)", | "1407400000000000000000/1e18 = 1407.4", | 2, | | | +| | | | "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5 (Balancer bpt-weethwsteth Gauge Deposit)" | "1407400000000000000000/1e18 = 1407.4" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+--------------------------------------------------+---------+-----------------------------------------------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-08_2024-08-22_bal_injector_stream.json b/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-08_2024-08-22_bal_injector_stream.json new file mode 100644 index 000000000..2910592bc --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-08_2024-08-22_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A,0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e,0xF27D53f21d024643d50de50183932F17638229F6,0xA15C762974BA3aC59abc305FbA097A0E564F7470,0xC19055C2FF199Ba6190505Ef776573c8B7cC676A,0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E,0x48b0a702139cad717f760eBf55C817D545A415ca,0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5,0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C,0x476F2DedF358eB87c4C22DFaf5e511f68e0272e0]", + "amountsPerPeriod": "[1027730458708600000000,183766009188550000000,768447226828450000000,1163263333662000000000,552540271418200000000,127311521146300000000,535762678478400000000,1407400000000000000000,604051420172400000000,666727080396900000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "amount": "14073999999999600000000" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-08_2024-08-22_bal_injector_stream.report.txt b/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-08_2024-08-22_bal_injector_stream.report.txt new file mode 100644 index 000000000..22d07daf4 --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-08_2024-08-22_bal_injector_stream.report.txt @@ -0,0 +1,35 @@ +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-08-08_2024-08-22_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `5ddb228a94b8a97dcd1c982d8e346fe10980bcd5` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/78a89e23-ef5e-4883-9e42-85ebe45f7d3d) +``` ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | OP:0x4200000000000000000000000000000000000042 | maxiKeepers/gaugeRewardsInjectors/op:0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 | 14073.9999999996 (RAW: 14073999999999600000000) | N/A | 1 | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-08-08_2024-08-22_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `5ddb228a94b8a97dcd1c982d8e346fe10980bcd5` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/93abd0b2-7c95-4b76-9f50-085733630f80) +``` ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+---------------------------------------------------+---------+----------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+---------------------------------------------------+---------+----------------------------------------------------+----------+ +| setRecipientList | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340(maxiKeepers/gaugeRewardsInjectors/op) | OP | [ | [ | [ | raw: 7036999999999800000000/1e18 = 7036.9999999998 | 0 | +| | | | "0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A (Balancer bpt-ethtri Gauge Deposit)", | "1027730458708600000000/1e18 = 1027.7304587086", | 2, | | | +| | | | "0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e (Balancer bpt-fraxethe Gauge Deposit)", | "183766009188550000000/1e18 = 183.76600918855", | 2, | | | +| | | | "0xF27D53f21d024643d50de50183932F17638229F6 (Balancer BPT-rETH-ETH Gauge Deposit)", | "768447226828450000000/1e18 = 768.44722682845", | 2, | | | +| | | | "0xA15C762974BA3aC59abc305FbA097A0E564F7470 (Balancer wrsETH/wETH Gauge Deposit)", | "1163263333662000000000/1e18 = 1163.263333662", | 2, | | | +| | | | "0xC19055C2FF199Ba6190505Ef776573c8B7cC676A (Balancer bpt-ankrgalaharm Gauge Deposit)", | "552540271418200000000/1e18 = 552.5402714182", | 2, | | | +| | | | "0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E (Balancer bpt-yieldconcerto Gauge Deposit)", | "127311521146300000000/1e18 = 127.3115211463", | 2, | | | +| | | | "0x48b0a702139cad717f760eBf55C817D545A415ca (Balancer bpt-insteth-wsteth Gauge Deposit)", | "535762678478400000000/1e18 = 535.7626784784", | 2, | | | +| | | | "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5 (Balancer bpt-weethwsteth Gauge Deposit)", | "1407400000000000000000/1e18 = 1407.4", | 2, | | | +| | | | "0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C (Balancer ECLP-wstETH-WETH Gauge Deposit)", | "604051420172400000000/1e18 = 604.0514201724", | 2, | | | +| | | | "0x476F2DedF358eB87c4C22DFaf5e511f68e0272e0 (Balancer bpt-ineth-wsteth Gauge Deposit)" | "666727080396900000000/1e18 = 666.7270803969" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+---------------------------------------------------+---------+----------------------------------------------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.json b/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.json new file mode 100644 index 000000000..a86282c3b --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.json @@ -0,0 +1,90 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "Sweep OP tokens, load new config to injector (0x34a265e1EBCb31586293eb2D2f94c6ff2f920340), transfer OP tokens to injector (0x34a265e1EBCb31586293eb2D2f94c6ff2f920340)", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "token", + "type": "address", + "internalType": "address" + } + ], + "name": "sweep", + "payable": false + }, + "contractInputsValues": { + "token": "0x4200000000000000000000000000000000000042" + } + }, + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A,0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C,0xA15C762974BA3aC59abc305FbA097A0E564F7470,0xC19055C2FF199Ba6190505Ef776573c8B7cC676A,0x476F2DedF358eB87c4C22DFaf5e511f68e0272e0,0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e,0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E,0xF27D53f21d024643d50de50183932F17638229F6,0x48b0a702139cad717f760eBf55C817D545A415ca,0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5]", + "amountsPerPeriod": "[943909094350750000000,643385831711050000000,1092749956498250000000,566145125488400000000,1630072436783500000000,258809200223250000000,208485189068700000000,740747670461550000000,776428316727050000000,842994259084150000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "amount": "15407454160793300000000" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.report.txt b/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.report.txt new file mode 100644 index 000000000..5fce8b7bb --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.report.txt @@ -0,0 +1,51 @@ +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `c3a54f47b710040dda79289c6204d4c3e6666262` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/a041e821-b7ac-41db-957f-9d4d290831fa) +``` ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | OP:0x4200000000000000000000000000000000000042 | maxiKeepers/gaugeRewardsInjectors/op:0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 | 15407.4541607933 (RAW: 15407454160793300000000) | N/A | 2 | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `c3a54f47b710040dda79289c6204d4c3e6666262` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8c9bcbd2-02d0-497d-a9bf-07b346bbe6a5) +``` ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+----------------------------------------------------+---------+-----------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+----------------------------------------------------+---------+-----------------------------------------------------+----------+ +| setRecipientList | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340(maxiKeepers/gaugeRewardsInjectors/op) | OP | [ | [ | [ | raw: 7703727080396650000000/1e18 = 7703.72708039665 | 1 | +| | | | "0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A (Balancer bpt-ethtri Gauge Deposit)", | "943909094350750000000/1e18 = 943.90909435075", | 2, | | | +| | | | "0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C (Balancer ECLP-wstETH-WETH Gauge Deposit)", | "643385831711050000000/1e18 = 643.38583171105", | 2, | | | +| | | | "0xA15C762974BA3aC59abc305FbA097A0E564F7470 (Balancer wrsETH/wETH Gauge Deposit)", | "1092749956498250000000/1e18 = 1092.74995649825", | 2, | | | +| | | | "0xC19055C2FF199Ba6190505Ef776573c8B7cC676A (Balancer bpt-ankrgalaharm Gauge Deposit)", | "566145125488400000000/1e18 = 566.1451254884", | 2, | | | +| | | | "0x476F2DedF358eB87c4C22DFaf5e511f68e0272e0 (Balancer bpt-ineth-wsteth Gauge Deposit)", | "1630072436783500000000/1e18 = 1630.0724367835", | 2, | | | +| | | | "0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e (Balancer bpt-fraxethe Gauge Deposit)", | "258809200223250000000/1e18 = 258.80920022325", | 2, | | | +| | | | "0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E (Balancer bpt-yieldconcerto Gauge Deposit)", | "208485189068700000000/1e18 = 208.4851890687", | 2, | | | +| | | | "0xF27D53f21d024643d50de50183932F17638229F6 (Balancer BPT-rETH-ETH Gauge Deposit)", | "740747670461550000000/1e18 = 740.74767046155", | 2, | | | +| | | | "0x48b0a702139cad717f760eBf55C817D545A415ca (Balancer bpt-insteth-wsteth Gauge Deposit)", | "776428316727050000000/1e18 = 776.42831672705", | 2, | | | +| | | | "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5 (Balancer bpt-weethwsteth Gauge Deposit)" | "842994259084150000000/1e18 = 842.99425908415" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+----------------------------------------------------+---------+-----------------------------------------------------+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-08-22_2024-09-05_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `c3a54f47b710040dda79289c6204d4c3e6666262` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/4ec168c8-3a84-491a-9003-2aa284f6cf31) +``` ++---------+-----------------------------------------------------------------------------------+-------+--------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-----------------------------------------------------------------------------------+-------+--------------------------------------------------------------+------------+----------+ +| sweep | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 (maxiKeepers/gaugeRewardsInjectors/op) | 0 | { | N/A | N/A | +| | | | "token": [ | | | +| | | | "0x4200000000000000000000000000000000000042 (tokens/OP)" | | | +| | | | ] | | | +| | | | } | | | ++---------+-----------------------------------------------------------------------------------+-------+--------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-05_2024-09-19_bal_injector_stream.json b/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-05_2024-09-19_bal_injector_stream.json new file mode 100644 index 000000000..890ce1824 --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-05_2024-09-19_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x48b0a702139cad717f760eBf55C817D545A415ca,0xF27D53f21d024643d50de50183932F17638229F6,0xC19055C2FF199Ba6190505Ef776573c8B7cC676A,0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C,0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E,0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5,0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e,0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A,0xA15C762974BA3aC59abc305FbA097A0E564F7470]", + "amountsPerPeriod": "[783155300000000,953639960942250000000,684847574707050000000,879483173440400000000,350134304780100000000,1183151973446300000000,348586483304350000000,1229755746224050000000,1407400000000000000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "amount": "14073999999999600000000" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-05_2024-09-19_bal_injector_stream.report.txt b/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-05_2024-09-19_bal_injector_stream.report.txt new file mode 100644 index 000000000..3d2b6b923 --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-05_2024-09-19_bal_injector_stream.report.txt @@ -0,0 +1,36 @@ +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-09-05_2024-09-19_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `c3c083d8d02612e3ff54c2241e9aac5b5a471014` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/23ad2626-34c4-4178-ba70-3bd110b591e8) + +``` ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | OP:0x4200000000000000000000000000000000000042 | maxiKeepers/gaugeRewardsInjectors/op:0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 | 14073.9999999996 (RAW: 14073999999999600000000) | N/A | 1 | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-09-05_2024-09-19_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `c3c083d8d02612e3ff54c2241e9aac5b5a471014` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/45448243-06c0-44bb-bec8-5030f9ba6ecf) + +``` ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+----------------------------------------------------+---------+----------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+----------------------------------------------------+---------+----------------------------------------------------+----------+ +| setRecipientList | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340(maxiKeepers/gaugeRewardsInjectors/op) | OP | [ | [ | [ | raw: 7036999999999800000000/1e18 = 7036.9999999998 | 0 | +| | | | "0x48b0a702139cad717f760eBf55C817D545A415ca (Balancer bpt-insteth-wsteth Gauge Deposit)", | "783155300000000/1e18 = 0.0007831553", | 2, | | | +| | | | "0xF27D53f21d024643d50de50183932F17638229F6 (Balancer BPT-rETH-ETH Gauge Deposit)", | "953639960942250000000/1e18 = 953.63996094225", | 2, | | | +| | | | "0xC19055C2FF199Ba6190505Ef776573c8B7cC676A (Balancer bpt-ankrgalaharm Gauge Deposit)", | "684847574707050000000/1e18 = 684.84757470705", | 2, | | | +| | | | "0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C (Balancer ECLP-wstETH-WETH Gauge Deposit)", | "879483173440400000000/1e18 = 879.4831734404", | 2, | | | +| | | | "0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E (Balancer bpt-yieldconcerto Gauge Deposit)", | "350134304780100000000/1e18 = 350.1343047801", | 2, | | | +| | | | "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5 (Balancer bpt-weethwsteth Gauge Deposit)", | "1183151973446300000000/1e18 = 1183.1519734463", | 2, | | | +| | | | "0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e (Balancer bpt-fraxethe Gauge Deposit)", | "348586483304350000000/1e18 = 348.58648330435", | 2, | | | +| | | | "0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A (Balancer bpt-ethtri Gauge Deposit)", | "1229755746224050000000/1e18 = 1229.75574622405", | 2, | | | +| | | | "0xA15C762974BA3aC59abc305FbA097A0E564F7470 (Balancer wrsETH/wETH Gauge Deposit)" | "1407400000000000000000/1e18 = 1407.4" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+----------------------------------------------------------------------------------+--------+--------------------------------------------------------------------------------------------+----------------------------------------------------+---------+----------------------------------------------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-19_2024-10-03_bal_injector_stream.json b/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-19_2024-10-03_bal_injector_stream.json new file mode 100644 index 000000000..ffe65afbb --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-19_2024-10-03_bal_injector_stream.json @@ -0,0 +1,71 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1691667397141, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x60b02488a85be3a01e98bf20b0a502aa807f462e6f59a740ec3d602a56a716ae" + }, + "transactions": [ + { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5,0xC19055C2FF199Ba6190505Ef776573c8B7cC676A,0x028591C6e8DFeb2E315Ddc2647ADBfC5A62b4f77,0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C,0xA15C762974BA3aC59abc305FbA097A0E564F7470,0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e,0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E,0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A,0xF27D53f21d024643d50de50183932F17638229F6]", + "amountsPerPeriod": "[902732255461450000000,573807308984250000000,1537127291960500000000,810419067691350000000,1537127291960500000000,232443829517400000000,232083981067900000000,1097336754004300000000,762558679154700000000]", + "maxPeriods": "[2,2,2,2,2,2,2,2,2]" + } + }, + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x34a265e1EBCb31586293eb2D2f94c6ff2f920340", + "amount": "15371272919604700000000" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-19_2024-10-03_bal_injector_stream.report.txt b/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-19_2024-10-03_bal_injector_stream.report.txt new file mode 100644 index 000000000..947c99d3e --- /dev/null +++ b/MaxiOps/op_lstlrt/op_lst_lrt_2024-09-19_2024-10-03_bal_injector_stream.report.txt @@ -0,0 +1,36 @@ +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-09-19_2024-10-03_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `579aac694c05cea1ddd2f46183c0c203f1da0246` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/6f01a483-668d-4757-8126-76aad93c2b17) + +``` ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +| transfer | OP:0x4200000000000000000000000000000000000042 | maxiKeepers/gaugeRewardsInjectors/op:0x34a265e1EBCb31586293eb2D2f94c6ff2f920340 | 15371.2729196047 (RAW: 15371272919604700000000) | N/A | 1 | ++----------+-----------------------------------------------+---------------------------------------------------------------------------------+-------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/op_lst_lrt_2024-09-19_2024-10-03_bal_injector_stream.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `579aac694c05cea1ddd2f46183c0c203f1da0246` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/9a7a9254-5425-44ac-889a-becf6833add1) + +``` ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+---------------------------------------------------+---------+-----------------------------------------------------+----------+ +| function | injector | symbol | gaugeList | amounts_per_period | periods | total_amount_first_period | tx_index | ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+---------------------------------------------------+---------+-----------------------------------------------------+----------+ +| setRecipientList | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340(maxiKeepers/gaugeRewardsInjectors/op) | OP | [ | [ | [ | raw: 7685636459802350000000/1e18 = 7685.63645980235 | 0 | +| | | | "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5 (Balancer bpt-weethwsteth Gauge Deposit)", | "902732255461450000000/1e18 = 902.73225546145", | 2, | | | +| | | | "0xC19055C2FF199Ba6190505Ef776573c8B7cC676A (Balancer bpt-ankrgalaharm Gauge Deposit)", | "573807308984250000000/1e18 = 573.80730898425", | 2, | | | +| | | | "0x028591C6e8DFeb2E315Ddc2647ADBfC5A62b4f77 (Balancer bpt-wrseth-wsteth Gauge Deposit)", | "1537127291960500000000/1e18 = 1537.1272919605", | 2, | | | +| | | | "0x9F9f8d58496691D541C40dbc2b1b20f8C43e8d8C (Balancer ECLP-wstETH-WETH Gauge Deposit)", | "810419067691350000000/1e18 = 810.41906769135", | 2, | | | +| | | | "0xA15C762974BA3aC59abc305FbA097A0E564F7470 (Balancer wrsETH/wETH Gauge Deposit)", | "1537127291960500000000/1e18 = 1537.1272919605", | 2, | | | +| | | | "0xc46AB6Aa92F7c30B8Fb1D445b4B957203EbBbd6e (Balancer bpt-fraxethe Gauge Deposit)", | "232443829517400000000/1e18 = 232.4438295174", | 2, | | | +| | | | "0x758D3297d9D9325EFb6DD424a7B2EdCaB47e309E (Balancer bpt-yieldconcerto Gauge Deposit)", | "232083981067900000000/1e18 = 232.0839810679", | 2, | | | +| | | | "0x5669FB0DCfA758Bf69FB3AdAB14578EDe14cc89A (Balancer bpt-ethtri Gauge Deposit)", | "1097336754004300000000/1e18 = 1097.3367540043", | 2, | | | +| | | | "0xF27D53f21d024643d50de50183932F17638229F6 (Balancer BPT-rETH-ETH Gauge Deposit)" | "762558679154700000000/1e18 = 762.5586791547" | 2 | | | +| | | | ] | ] | ] | | | ++------------------+----------------------------------------------------------------------------------+--------+-------------------------------------------------------------------------------------------+---------------------------------------------------+---------+-----------------------------------------------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/set_initial_reward_tokens.json b/MaxiOps/op_lstlrt/set_initial_reward_tokens.json new file mode 100644 index 000000000..ba53be593 --- /dev/null +++ b/MaxiOps/op_lstlrt/set_initial_reward_tokens.json @@ -0,0 +1,190 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1720454599638, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x5669fb0dcfa758bf69fb3adab14578ede14cc89a", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" + } + }, + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc19055c2ff199ba6190505ef776573c8b7cc676a", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" + } + }, + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xc46ab6aa92f7c30b8fb1d445b4b957203ebbbd6e", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" + } + }, + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x758d3297d9d9325efb6dd424a7b2edcab47e309e", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" + } + }, + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x80aDD8a1BF48AB726b96f19Ae1bF27A39e3C9cbD", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" + } + }, + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xa15c762974ba3ac59abc305fba097a0e564f7470", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" + } + }, + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/set_initial_reward_tokens.report.txt b/MaxiOps/op_lstlrt/set_initial_reward_tokens.report.txt new file mode 100644 index 000000000..b2c4227bb --- /dev/null +++ b/MaxiOps/op_lstlrt/set_initial_reward_tokens.report.txt @@ -0,0 +1,67 @@ +FILENAME: `MaxiOps/op_lstlrt/set_initial_reward_tokens.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `5ad30b79bc753c7efa2e2e321c22ab8e7212100f` +CHAIN(S): `optimism` +TENDERLY: [SUCCESS](https://www.tdly.co/shared/simulation/7af93ac7-9bf7-4416-9ad1-439ae5368749) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x5669fb0dcfa758bf69fb3adab14578ede14cc89a (gauges/bpt-ethtri-gauge-5669)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xc19055c2ff199ba6190505ef776573c8b7cc676a (gauges/bpt-ankrgalaharm-gauge-c190)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xc46ab6aa92f7c30b8fb1d445b4b957203ebbbd6e (gauges/bpt-fraxethe-gauge-c46a)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x758d3297d9d9325efb6dd424a7b2edcab47e309e (gauges/bpt-yieldconcerto-gauge-758d)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0x80aDD8a1BF48AB726b96f19Ae1bF27A39e3C9cbD (gauges/bpt-stadue-gauge-80ad)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xa15c762974ba3ac59abc305fba097a0e564f7470 (gauges/wrsETH/wETH-gauge-a15c)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" | | | +| | | | ] | | | +| | | | } | | | +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0 | { | N/A | N/A | +| | | | "target": [ | | | +| | | | "0xF3B314B1D2bd7d9afa8eC637716A9Bb81dBc79e5 (gauges/bpt-weethwsteth-gauge-f3b3)" | | | +| | | | ], | | | +| | | | "data": [ | | | +| | | | "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1EBCb31586293eb2D2f94c6ff2f920340" | | | +| | | | ] | | | +| | | | } | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/op_lstlrt/set_reward_token_inception_gauges.json b/MaxiOps/op_lstlrt/set_reward_token_inception_gauges.json new file mode 100644 index 000000000..5a6a2705e --- /dev/null +++ b/MaxiOps/op_lstlrt/set_reward_token_inception_gauges.json @@ -0,0 +1,65 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1720454599638, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "0x90f4c82078ec24e1c5389807a2084a2e7a3c9904d86f418ef33e7b6a67722ee5" + }, + "transactions": [ + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x48b0a702139cad717f760eBf55C817D545A415ca", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000009df1626110803c7b3b07085ef1e053494155089" + } + }, + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x476f2dedf358eb87c4c22dfaf5e511f68e0272e0", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000048b0a702139cad717f760ebf55c817d545a415ca" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/set_reward_token_inception_gauges.report.txt b/MaxiOps/op_lstlrt/set_reward_token_inception_gauges.report.txt new file mode 100644 index 000000000..654a0bfb1 --- /dev/null +++ b/MaxiOps/op_lstlrt/set_reward_token_inception_gauges.report.txt @@ -0,0 +1,15 @@ +FILENAME: `MaxiOps/op_lstlrt/set_reward_token_inception_gauges.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `2c2dcbda1b7cef06b3036c4d67f6441b35549f4d` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/c48a1d95-f089-4be0-aff6-8ae95e45285d) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+----------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+----------------------------------------------------------------------+-----+----------+ +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x48b0a702139cad717f760eBf55C817D545A415ca (None) | add_reward(address,address) | 0x4200000000000000000000000000000000000042: tokens/OP | N/A | 0 | +| | | | | 0x09Df1626110803C7b3b07085Ef1E053494155089: multisigs/lm | | | +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x476f2dedf358eb87c4c22dfaf5e511f68e0272e0 (None) | add_reward(address,address) | 0x4200000000000000000000000000000000000042: tokens/OP | N/A | 1 | +| | | | | 0x48b0a702139cad717f760eBf55C817D545A415ca: bpt-insteth-wsteth-gauge | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+----------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.json b/MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.json new file mode 100644 index 000000000..1e7268412 --- /dev/null +++ b/MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.json @@ -0,0 +1,109 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1698450039804, + "meta": { + "name": "", + "description": "wrsETH/wstETH pool bootstrapping incentives and reward token config", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "createdFromOwnerAddress": "", + "checksum": "" + }, + + "transactions": [ + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xa9b08B4CeEC1EF29EdEC7F9C94583270337D6416", + "rawAmount": "3000000000000000000000" + } + }, + { + "to": "0x679c5C5828367db9005FdEa80faA45AE7B881791", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x3a870bcddc13fd509ac089bbf8c8ab5d25a37565190c6d423ecbb2fa21ea73b1", + "_token": "0x4200000000000000000000000000000000000042", + "_amount": "3000000000000000000000", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0x028591C6e8DFeb2E315Ddc2647ADBfC5A62b4f77", + "data": "0xe8de0d4d000000000000000000000000420000000000000000000000000000000000004200000000000000000000000034a265e1ebcb31586293eb2d2f94c6ff2f920340" + } + } + ] +} diff --git a/MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.report.txt b/MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.report.txt new file mode 100644 index 000000000..7d669338a --- /dev/null +++ b/MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.report.txt @@ -0,0 +1,48 @@ +FILENAME: `MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `2ada56d8d280badd5fc481c6db47d8d06109f581` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e4df2ccc-3caf-47e4-ac8c-a5951d3b98e2) + +``` ++--------------+--------------------------------------------------------------------+-------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+-------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | o-ComposableStable wstETH/wrsETH | OP(0x4200000000000000000000000000000000000042) | aura | 2 | 1 | +| | 0xcb7d357c84b101e3d559ff4845cef63d7d0753ef000000000000000000000150 | 3000.0(3000000000000000000000) | 0x3a870bcddc13fd509ac089bbf8c8ab5d25a37565190c6d423ecbb2fa21ea73b1 | | | ++--------------+--------------------------------------------------------------------+-------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `2ada56d8d280badd5fc481c6db47d8d06109f581` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/21864999-eddd-4c6f-a026-7f63636bdab3) + +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+----------------------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+----------------------------------------------------------------------------------+-----+----------+ +| performAction | 0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0x028591C6e8DFeb2E315Ddc2647ADBfC5A62b4f77 (None) | add_reward(address,address) | 0x4200000000000000000000000000000000000042: tokens/OP | N/A | 2 | +| | | | | 0x34a265e1EBCb31586293eb2D2f94c6ff2f920340: maxiKeepers/gaugeRewardsInjectors/op | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+---------------------------------------------------+-----------------------------+----------------------------------------------------------------------------------+-----+----------+ +``` +FILENAME: `MaxiOps/op_lstlrt/wrsETH_wstETH_bootstrapping_and_rewardtoken.json` +MULTISIG: `multisigs/lm (optimism:0x09Df1626110803C7b3b07085Ef1E053494155089)` +COMMIT: `2ada56d8d280badd5fc481c6db47d8d06109f581` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/ecf1a450-bb34-4bd1-801a-cdf752d0b78f) + +``` ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4200000000000000000000000000000000000042 (tokens/OP) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xa9b08B4CeEC1EF29EdEC7F9C94583270337D6416 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "rawAmount": [ | | | +| | | | "raw:3000000000000000000000, 18 decimals:3000, 6 decimals: 3000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/paladin_bribes/2024-12-06/arbitrum/.gitkeep b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_bribe_recycling_arbitrum_2024-12-06.json b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_bribe_recycling_arbitrum_2024-12-06.json new file mode 100644 index 000000000..6115667b1 --- /dev/null +++ b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_bribe_recycling_arbitrum_2024-12-06.json @@ -0,0 +1,539 @@ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1733524018, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "transactions": [ + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "11", + "period": "1724889600", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "902503091021552770066", + "merkleProof": "[0xd2f29c757e9a4b26dc8a44d40dfb95cf1583a52e38b2ffb9b00db9dc23e4add5]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "14", + "period": "1724889600", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "240384615384615384614", + "merkleProof": "[]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "11", + "period": "1725494400", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "884806951981914480456", + "merkleProof": "[0xd4acc28390a7585aa2703fa6e3e6394e66a8a02b50f80991cd8d142606f806bb]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "14", + "period": "1725494400", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "240384615384615384614", + "merkleProof": "[]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "11", + "period": "1726099200", + "index": "1", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1090504607211401534586", + "merkleProof": "[0x2c383937d362c11724db76bc197b69e6f84520aed533b8d5086552caaf12c3bd,0xb9b809dab03ab85a0f4044b242f04879919d92fe93c11740dbf114403b6105db]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "11", + "period": "1726704000", + "index": "1", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1069122163932746602536", + "merkleProof": "[0x1ee248da850873582c974ef94a0df764693557b3d2cd6ceeedcf25a7e334e8b3,0xc54412cf5f5d5b38428ccc6d32339dd15a5dd60a01ead70fe240d448912f8f01]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "18", + "period": "1729728000", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "371064665490089080784", + "merkleProof": "[0x7d5f688e618d47af49dc2b213ecc2a6c5945911e0180af94f8a1dc2ec9e4260a,0xa18c6d4c3449b2ff4131258d9a733bc34869d361e031ad4afe89a7268f534ed6]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "18", + "period": "1730332800", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "371064665490089080784", + "merkleProof": "[0x49ba6411855a5dfe9377560bd2162320b54756e1e0706d92ac8b85b54ba961ce,0xddb8a797da667491c8e39e978ca579eaae39659ff2956bf5c1281b7db36970c7]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "21", + "period": "1730937600", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "340914376792464471859", + "merkleProof": "[0xdd387a0e093b4cc35068d688e1d35b203bcca51853e2fd37684fd53b09955685]" + } + }, + { + "to": "0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "21", + "period": "1731542400", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "334229781169082815548", + "merkleProof": "[0x834593501a596d3ca2de38671f4eedae3dd37b29d018dd1b7abef41fcaaf6ccd]" + } + }, + { + "to": "0x5E90Fb83Bc3B733D028454f7372A80b2977d7e6a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "1", + "period": "1732147200", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "318408039864844575904", + "merkleProof": "[0xfa55dd40649a42c0af0ec1c64cc762a781a8c9d6f820d425bddc751773f728f5]" + } + }, + { + "to": "0x5E90Fb83Bc3B733D028454f7372A80b2977d7e6a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "1", + "period": "1732752000", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "312164744965533897944", + "merkleProof": "[0x5e92b2a632dbd8cda96fb4da9cff6798df0bf2f0bbcb8fb2e97a38cb21f13756]" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_spender", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0x8d89593c199Cb763bDEF04529F978f82503E4669", + "_value": "2762855769903330771350" + } + }, + { + "to": "0xA8214b4Fb98936Ed45463956aFD24a862cC86Dc1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x48ede18c542650f9953281ef2684d8e9b1d7b77a52f22229de12567e50fb5b59", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "2762855769903330771350", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_spender", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0x8d89593c199Cb763bDEF04529F978f82503E4669", + "_value": "336538461538461538459" + } + }, + { + "to": "0xA8214b4Fb98936Ed45463956aFD24a862cC86Dc1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xff7e948da47a7575a768d14fe804593fa3d9c6040c6490a1120bc04c88ff6ca6", + "_token": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "_amount": "336538461538461538459", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_spender", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0x8d89593c199Cb763bDEF04529F978f82503E4669", + "_value": "519490531686124713097" + } + }, + { + "to": "0xA8214b4Fb98936Ed45463956aFD24a862cC86Dc1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x6a0722cdf37b8c3dd73b9101ab3b9449bd0245f4cc169ad023e61984d30b2d87", + "_token": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33", + "_amount": "519490531686124713097", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_spender", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0x8d89593c199Cb763bDEF04529F978f82503E4669", + "_value": "914001859954348032878" + } + }, + { + "to": "0xA8214b4Fb98936Ed45463956aFD24a862cC86Dc1", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x8c79700d6a561a8296de97638472d78fec325c13ca5dfd39a11dbcc094dacaaa", + "_token": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33", + "_amount": "914001859954348032878", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_bribe_recycling_arbitrum_2024-12-06.report.txt b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_bribe_recycling_arbitrum_2024-12-06.report.txt new file mode 100644 index 000000000..90933c3dc --- /dev/null +++ b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_bribe_recycling_arbitrum_2024-12-06.report.txt @@ -0,0 +1,350 @@ +FILENAME: `MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_bribe_recycling_arbitrum_2024-12-06.json` +MULTISIG: `multisigs/maxi_omni (arbitrum:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `121ff2bc769294ad09b1ba8d4172b38f909634cd` +CHAIN(S): `arbitrum` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `claim`, positional arguments with type(s) `int,int,int,address,int,(str)` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `claim`: ['claim(uint256,uint256,uint256,address,uint256,bytes32[])']\nFunction invocation failed due to no matching argument types."))` + +``` ++--------------+----------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++--------------+----------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "11" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1724889600" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:902503091021552770066, 18 decimals:902.503091021552770066, 6 decimals: 902503091021552.770066" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xd2f29c757e9a4b26dc8a44d40dfb95cf1583a52e38b2ffb9b00db9dc23e4add5" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "14" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1724889600" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:240384615384615384614, 18 decimals:240.384615384615384614, 6 decimals: 240384615384615.384614" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "11" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1725494400" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:884806951981914480456, 18 decimals:884.806951981914480456, 6 decimals: 884806951981914.480456" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xd4acc28390a7585aa2703fa6e3e6394e66a8a02b50f80991cd8d142606f806bb" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "14" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1725494400" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:240384615384615384614, 18 decimals:240.384615384615384614, 6 decimals: 240384615384615.384614" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "11" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1726099200" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "1" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1090504607211401534586, 18 decimals:1090.504607211401534586, 6 decimals: 1090504607211401.534586" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x2c383937d362c11724db76bc197b69e6f84520aed533b8d5086552caaf12c3bd", | | | +| | | | "0xb9b809dab03ab85a0f4044b242f04879919d92fe93c11740dbf114403b6105db" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "11" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1726704000" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "1" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1069122163932746602536, 18 decimals:1069.122163932746602536, 6 decimals: 1069122163932746.602536" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x1ee248da850873582c974ef94a0df764693557b3d2cd6ceeedcf25a7e334e8b3", | | | +| | | | "0xc54412cf5f5d5b38428ccc6d32339dd15a5dd60a01ead70fe240d448912f8f01" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "18" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1729728000" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "2" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:371064665490089080784, 18 decimals:371.064665490089080784, 6 decimals: 371064665490089.080784" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x7d5f688e618d47af49dc2b213ecc2a6c5945911e0180af94f8a1dc2ec9e4260a", | | | +| | | | "0xa18c6d4c3449b2ff4131258d9a733bc34869d361e031ad4afe89a7268f534ed6" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "18" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1730332800" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "2" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:371064665490089080784, 18 decimals:371.064665490089080784, 6 decimals: 371064665490089.080784" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x49ba6411855a5dfe9377560bd2162320b54756e1e0706d92ac8b85b54ba961ce", | | | +| | | | "0xddb8a797da667491c8e39e978ca579eaae39659ff2956bf5c1281b7db36970c7" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "21" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1730937600" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:340914376792464471859, 18 decimals:340.914376792464471859, 6 decimals: 340914376792464.471859" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xdd387a0e093b4cc35068d688e1d35b203bcca51853e2fd37684fd53b09955685" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0xB5757D5D93a26EaA3Bc6b0b25cb2364bE8d5b90E (paladin/DistributorV1) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "21" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1731542400" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:334229781169082815548, 18 decimals:334.229781169082815548, 6 decimals: 334229781169082.815548" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x834593501a596d3ca2de38671f4eedae3dd37b29d018dd1b7abef41fcaaf6ccd" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x5E90Fb83Bc3B733D028454f7372A80b2977d7e6a (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "1" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1732147200" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:318408039864844575904, 18 decimals:318.408039864844575904, 6 decimals: 318408039864844.575904" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xfa55dd40649a42c0af0ec1c64cc762a781a8c9d6f820d425bddc751773f728f5" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x5E90Fb83Bc3B733D028454f7372A80b2977d7e6a (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | "1" | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | "1732752000" | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:312164744965533897944, 18 decimals:312.164744965533897944, 6 decimals: 312164744965533.897944" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x5e92b2a632dbd8cda96fb4da9cff6798df0bf2f0bbcb8fb2e97a38cb21f13756" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | N/A | N/A | +| | | | "_spender": [ | | | +| | | | "0x8d89593c199Cb763bDEF04529F978f82503E4669 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:2762855769903330771350, 18 decimals:2762.85576990333077135, 6 decimals: 2762855769903330.77135" | | | +| | | | ] | | | +| | | | } | | | +| depositBribe | 0xA8214b4Fb98936Ed45463956aFD24a862cC86Dc1 (hidden_hand2/bal_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": [ | | | +| | | | "0x48ede18c542650f9953281ef2684d8e9b1d7b77a52f22229de12567e50fb5b59" | | | +| | | | ], | | | +| | | | "_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:2762855769903330771350, 18 decimals:2762.85576990333077135, 6 decimals: 2762855769903330.77135" | | | +| | | | ], | | | +| | | | "_maxTokensPerVote": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "_periods": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB) | 0 | { | N/A | N/A | +| | | | "_spender": [ | | | +| | | | "0x8d89593c199Cb763bDEF04529F978f82503E4669 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:336538461538461538459, 18 decimals:336.538461538461538459, 6 decimals: 336538461538461.538459" | | | +| | | | ] | | | +| | | | } | | | +| depositBribe | 0xA8214b4Fb98936Ed45463956aFD24a862cC86Dc1 (hidden_hand2/bal_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": [ | | | +| | | | "0xff7e948da47a7575a768d14fe804593fa3d9c6040c6490a1120bc04c88ff6ca6" | | | +| | | | ], | | | +| | | | "_token": [ | | | +| | | | "0x912CE59144191C1204E64559FE8253a0e49E6548 (tokens/ARB)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:336538461538461538459, 18 decimals:336.538461538461538459, 6 decimals: 336538461538461.538459" | | | +| | | | ], | | | +| | | | "_maxTokensPerVote": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "_periods": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33 (tokens/GHO) | 0 | { | N/A | N/A | +| | | | "_spender": [ | | | +| | | | "0x8d89593c199Cb763bDEF04529F978f82503E4669 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:519490531686124713097, 18 decimals:519.490531686124713097, 6 decimals: 519490531686124.713097" | | | +| | | | ] | | | +| | | | } | | | +| depositBribe | 0xA8214b4Fb98936Ed45463956aFD24a862cC86Dc1 (hidden_hand2/bal_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": [ | | | +| | | | "0x6a0722cdf37b8c3dd73b9101ab3b9449bd0245f4cc169ad023e61984d30b2d87" | | | +| | | | ], | | | +| | | | "_token": [ | | | +| | | | "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33 (tokens/GHO)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:519490531686124713097, 18 decimals:519.490531686124713097, 6 decimals: 519490531686124.713097" | | | +| | | | ], | | | +| | | | "_maxTokensPerVote": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "_periods": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33 (tokens/GHO) | 0 | { | N/A | N/A | +| | | | "_spender": [ | | | +| | | | "0x8d89593c199Cb763bDEF04529F978f82503E4669 (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:914001859954348032878, 18 decimals:914.001859954348032878, 6 decimals: 914001859954348.032878" | | | +| | | | ] | | | +| | | | } | | | +| depositBribe | 0xA8214b4Fb98936Ed45463956aFD24a862cC86Dc1 (hidden_hand2/bal_briber) | 0 | { | N/A | N/A | +| | | | "_proposal": [ | | | +| | | | "0x8c79700d6a561a8296de97638472d78fec325c13ca5dfd39a11dbcc094dacaaa" | | | +| | | | ], | | | +| | | | "_token": [ | | | +| | | | "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33 (tokens/GHO)" | | | +| | | | ], | | | +| | | | "_amount": [ | | | +| | | | "raw:914001859954348032878, 18 decimals:914.001859954348032878, 6 decimals: 914001859954348.032878" | | | +| | | | ], | | | +| | | | "_maxTokensPerVote": [ | | | +| | | | "0" | | | +| | | | ], | | | +| | | | "_periods": [ | | | +| | | | "2" | | | +| | | | ] | | | +| | | | } | | | ++--------------+----------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_claims_arbitrum_2024-12-06.csv b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_claims_arbitrum_2024-12-06.csv new file mode 100644 index 000000000..1595a70be --- /dev/null +++ b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_claims_arbitrum_2024-12-06.csv @@ -0,0 +1,13 @@ +chain,token_address,gauge_address,amount,amount_mantissa +arbitrum,0x912CE59144191C1204E64559FE8253a0e49E6548,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,902.503091021552770066,902503091021552770066 +arbitrum,0x912CE59144191C1204E64559FE8253a0e49E6548,0x00654F788342647A8Aa15f2eb2490e17d222aC85,240.384615384615384614,240384615384615384614 +arbitrum,0x912CE59144191C1204E64559FE8253a0e49E6548,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,884.806951981914480456,884806951981914480456 +arbitrum,0x912CE59144191C1204E64559FE8253a0e49E6548,0x00654F788342647A8Aa15f2eb2490e17d222aC85,240.384615384615384614,240384615384615384614 +arbitrum,0x912CE59144191C1204E64559FE8253a0e49E6548,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,1090.504607211401534586,1090504607211401534586 +arbitrum,0x912CE59144191C1204E64559FE8253a0e49E6548,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,1069.122163932746602536,1069122163932746602536 +arbitrum,0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33,0xD558C611B69a223767788B638717E868D8947Fd0,371.064665490089080784,371064665490089080784 +arbitrum,0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33,0xD558C611B69a223767788B638717E868D8947Fd0,371.064665490089080784,371064665490089080784 +arbitrum,0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,340.914376792464471859,340914376792464471859 +arbitrum,0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,334.229781169082815548,334229781169082815548 +arbitrum,0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,318.408039864844575904,318408039864844575904 +arbitrum,0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,312.164744965533897944,312164744965533897944 diff --git a/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_tokens_to_sell_arbitrum_2024-12-06.csv b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_tokens_to_sell_arbitrum_2024-12-06.csv new file mode 100644 index 000000000..12217839e --- /dev/null +++ b/MaxiOps/paladin_bribes/2024-12-06/arbitrum/paladin_tokens_to_sell_arbitrum_2024-12-06.csv @@ -0,0 +1,3 @@ +chain,token_address,amount,amount_mantissa +arbitrum,0x912CE59144191C1204E64559FE8253a0e49E6548,1328.311813475053847063,1328311813475053847063 +arbitrum,0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33,614.353882131631176848,614353882131631176848 diff --git a/MaxiOps/paladin_bribes/2024-12-06/mainnet/.gitkeep b/MaxiOps/paladin_bribes/2024-12-06/mainnet/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_bribe_recycling_mainnet_2024-12-06.json b/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_bribe_recycling_mainnet_2024-12-06.json new file mode 100644 index 000000000..79c18532f --- /dev/null +++ b/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_bribe_recycling_mainnet_2024-12-06.json @@ -0,0 +1,1147 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733524006, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "transactions": [ + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "81", + "period": "1725494400", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "50416957123116529302", + "merkleProof": "[0x45f7c145a619efe77bc2a423b4d0fd7ffadfecf45acb17fd8d10a3ae3a66465e,0x28f897a315d5692cfb8b6b8d2aa3437a42c04b62cc1a0e9eaaf022ac18ac7f60,0x8ea83723e802c922c1eb3c7478b3211f144d17f20ad2e973f06d7592a0e6f18c]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "31", + "period": "1720051200", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "62717181962631992162", + "merkleProof": "[0xa3a84db88b7c1b0bfd079d7b6723145853082aabb5c1d92a35d2b01436a329f3]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "31", + "period": "1720656000", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "61487433296698031532", + "merkleProof": "[0xce08d0f489c3d7ff4f85e8bc7ced526ee59fba85deafa2121af959f8f677a9ad]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "40", + "period": "1721260800", + "index": "1", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "40821014383285361450", + "merkleProof": "[0xee1deca2981910045b2565b25234364c13f79a6cb0d6ffb0445f3e0ecf614fa6,0x25632bf5a165397e82122a8755498c2f180047b081b416a7596cdfb8db5ae823]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "97", + "period": "1726099200", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "55296107732644483029", + "merkleProof": "[0x1b768f637b64dc2bf6968061859c33b768d7301308198343b4407d2278334d70,0x4f56f297a82d880c652bbd12daa101312f2c479db93e81bf5d35fc436d61c609]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "100", + "period": "1726099200", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "933816663172894608078", + "merkleProof": "[0x1bed3dbe64e3e7d35926b126f05293989135ac6fce6eeb6056a1af436841ecd7,0xceb1c5bc8dd02f01de459f4982e725ee81cc4d43a05578d1b7d5bf76997bdd7d,0xb3de55bb7d2be8c39e622a1f1e344d0be2cebee8f295c6eeed83b70cf7fbbd84]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "34", + "period": "1721260800", + "index": "4", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "309918625268805655200", + "merkleProof": "[0x7ce51e3388f078fdc193816df6dd428f453575caa02f5ddcf9e8da50aec3d84a]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "40", + "period": "1721865600", + "index": "1", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "40004594095619654221", + "merkleProof": "[0xdfaccee72af0f0de7c4aad208abdbed157d75486f03123f915dbfd63c2765fa8,0xe790f56a8b8ffef6271eb29072d461672c9f4ee2e844e43e0d65bbca621feda4]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "34", + "period": "1721865600", + "index": "3", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "521228266831436504454", + "merkleProof": "[0xacd1a2d214f3cc40161d418418eb5ca4bea32133e284ad938d518c0fa89ccc53,0x352db9b220de57066902bac01d3ec5e39be980b5ab4d00db29d8c4c3f6de32d1]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "61", + "period": "1722470400", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "64940470766419370404", + "merkleProof": "[0x03affc5ef951c85d3817aa255fb3c498a8844228550fc9b24a8041bf70d30bb2,0xa20213ab248d13d3027fd8f2337c2444bd1ed9a4de921aed22459825d370f37a]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "97", + "period": "1726704000", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "54211870326122042184", + "merkleProof": "[0x5cd3477fdf69c4f03c1589bd949cdb12504189b837497ac8b6ad821b9095a8f4,0xc5ae9bb465335c13ad9d705bdb63d016596a8f7777e6637a7d5bcc433714109a]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "100", + "period": "1726704000", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "915506532522445694194", + "merkleProof": "[0x11fc2b3620e518b861edb70dcdaf4102a49b0aa7375cdf40318d28142d64f168,0xf5b7bf54b0afe08966195761c214c6b7082f77bac3ee41c8b61ba1329f1da920,0xa26923fb0af4969f596b4de69b210faa36271b045367329c199a50a0d45b4ea5]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "61", + "period": "1723075200", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "63973450974892918235", + "merkleProof": "[0x7d23700c81bac9e89bcebedaf059404e8c5d1a081f2e9cf62637d5ddd6f54ab3,0x19cbf82570cced4124939a9481500b8b07a6053c378076ba1d41a413119d2ca2]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "111", + "period": "1727308800", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "43168025696981426546", + "merkleProof": "[0x4df6edf83575ef0f07dd3918b913a2ea25e0bc80398c28a06188931f242d87b7,0xfe19aa28e6686915ad16fdb72066de2a9c6f613abdc7e1398250607fd768d49a,0x81d7b6b20e9341a76c46fb603b06bbbe24c55293db0cebc58bfb8be9ac103398]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "110", + "period": "1727308800", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1158257313251212237841", + "merkleProof": "[0x6de3d32ac810f7049b5990a553abff7d2ee57fca1ece6a509c3165c9139797ff,0xddc6fb1343350a62844e6eaa42ab0da356adf00cfba3e4bcdccf5e662049bca6,0xc47cb2bc3007300aea1bb766397b3449489e3626cf894755f5dddb51019ee70e]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "70", + "period": "1723680000", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "44588947282807290293", + "merkleProof": "[0x880bc38def0c598ee6b2dfbbd6ad71b204598d58ba6d48ba9956093caf6170b2,0xec17f61426c9c4ed5fd83519d69c51acdcbbda9dd11a05c48c8440f15eac842e]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "111", + "period": "1727913600", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "43168025696981426546", + "merkleProof": "[0xf43aadd0263802c34a2c4024d8db072faf38cb6d911622ae405adc37fbba4e8f]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "110", + "period": "1727913600", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1135092166986187993084", + "merkleProof": "[0xe4b50b291b4b222d974004b413c24f38d67e39ca4b59c42ae5dbac940ad0331c,0x32c24579c97ccfa6016ee68258aff7a4c6d9bc9f6adb9b1053c6f127fd80e3a8]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "70", + "period": "1724284800", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "44588947282807290293", + "merkleProof": "[0xc5633476df3e10990a45f78d93b4aa5231079eb9c10a1d4c4fb0f3447adbda31,0x6f1c6dd774719ef760342417b73bf40257e2be2ce3e75925c5bd93d33c49e0cd]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "81", + "period": "1724889600", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "50416957123116529302", + "merkleProof": "[0x3a941c7dc2e628806ee4df26b1091ce56fad8105e662b7685d3dbd67c9f41c5b,0x3a494448a0207298aa6d54a1988f770daa13697296d366e68623480858ff291d,0xf61ff2e4b8c249ce915e4e8976af51754a644695d221df91898459c247caaf10]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "119", + "period": "1728518400", + "index": "3", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1105350537707417051884", + "merkleProof": "[0x593ae1f237ecf20f3c27dd6e5a7cc78e94cd12133f72c8c7c722b16a5a6ed634,0x36961df6ce6819e48fad88390018ee3acaedfb0d04c53129a985745be51efd77,0x7826381c36647338f7999a9504cbf35626ef3d438886a56eb4d34186050c75d3]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "128", + "period": "1728518400", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "63493949329513832909", + "merkleProof": "[0x057694745e8d5e61d338776bce1df42ac6c81748eac3ede01ed3ff47b671ed34,0x80176d442eaad055026da1490a50c5e328470016562760b84675db5cae6d5972]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "119", + "period": "1729123200", + "index": "3", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1083243526953268710846", + "merkleProof": "[0x10c7751edc3548d7dc2c1331c4a6cf779a251a970003b9cad3891402601e5c2e,0x748b3e2a9c95d42fb2746b6ca54a63652d6e3c3d2c94d59164d8ab9412b3cc8c,0xf9002af703fd60f31ca495a1d041424ae955835ccd6b95fc576619cee1783bb9]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "128", + "period": "1729123200", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "62224070342923556251", + "merkleProof": "[0xeb479238ed084e88830fb8bdd5b0698552f337b9d2d43b9467bb58da4fb57b33,0xd7efc4d5d720477ec65b39be5e349e2222e0759da3fa5cb706f2111af872c5da]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "134", + "period": "1729728000", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "34450502455440836470", + "merkleProof": "[0xae882c2587e359b20cd794db77a19e78a5b9b2f962f5f32a3ce32425a2eb83ae,0xc1917c6f025c9bdc5ac7f2509bc88dd474391ee049b838bfd890bae6f2c12fb3]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "132", + "period": "1729728000", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1068428782260322917962", + "merkleProof": "[0x7293de2c1dd2072757528208c803438c6d7862af4d55de1a170021aa7ed7b027,0x4d80c41a1dadbb6570a7fd01b707a2fc2177099b34a19a62541301fa9a890160,0xc7262eb9329f6448fba184f4434e2614b115e2e84c7614342d1648c6d4e84d05]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "132", + "period": "1730332800", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1047479198294434233296", + "merkleProof": "[0xa19580e6a8bd085595f4c204ffb321a8f35480d4ef44d84df1b5cb6cf31145a1,0x7031bf290240b912694692798f58699f9a2ca31a83ae82ca8914d7068be04fb0]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "134", + "period": "1730332800", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "33775002407294937716", + "merkleProof": "[0xab4dbcbd4bb881f40cc28cb6a596314d71403c04ac2e7ef2e5b96b1f40b58bf7,0xe04213a52018c1fa557ad0f7de4f681e0db1e0f81ec176ae1a129d30abc0e018]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "154", + "period": "1730937600", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "61691050955156507511", + "merkleProof": "[0x4269b5efd262652cec3d0de1e861ea3cb257cd24807a1cd1095ea48d1aeddadc,0xed68045bee4c914531587f39485072e66e0cd15eaebec466db70da216156e700]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "143", + "period": "1730937600", + "index": "3", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1125093564894628539907", + "merkleProof": "[0x37a1eaa0e9533366105dc1f8b4a64f3fa2f892338a8e927ac2f06a58c7cb28f5,0xfbbd1e324312e219af3e0b3ad481f0f0d942c7888aeadf879b9c81866614d806,0xf334de51edd7d7ed0c03efcb084bf5d97f1de0d145c9c7a258272948db992e67]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "154", + "period": "1731542400", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "60481422505055399521", + "merkleProof": "[0x45c20c4cb4eccb9188a50b80cb34bfecce3b2dccfea894f5bba365debae9a62d]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "143", + "period": "1731542400", + "index": "3", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1103032906759439745007", + "merkleProof": "[0x7e4a09c295ba485f6edb5c6cb74977c311c05255f4aa02eb20c592d418837e42,0x9b47377687d61501ed5b8d1523093ebf2ccfea5d95c0271f2101e3411ac88ccd,0xd4b8d7f74d04f2c4fdf44d0545bc8caf0bfef1cb8a5e2d7204187f68580afd5f]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "158", + "period": "1732147200", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "40161144730322881815", + "merkleProof": "[0x4b4d1341c5dcf007477b872b0fd7b247e2e7127e314749e196ec285e9453a329,0x6875568ea847b94d1d1652589fb093bec440c046e9937c5dd391e4ffae69a844,0xcc0a5b45bc99afe72c09b4d0e6285d635801f383fe2fc09277ac3e488c3b2a82]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "156", + "period": "1732147200", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1073007926666939728033", + "merkleProof": "[0xd5022c5aa89b7633ed80a7215a773f8b68fd7a25bb3d224372df5c7e515dc932,0x6258605ff3f942932a3ad444257d245797e27d3ef9bc8acc906df2a09eafb196]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "158", + "period": "1732752000", + "index": "0", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "40161144730322881815", + "merkleProof": "[0xe17fe6777d228f0913fcc7e04a447662b568a8321f1ad5fd99ee260d7fc9857f,0xb6c43533bb9c883875129ee3422e020acf9807639c5332185e186ea2a6ab1d17]" + } + }, + { + "to": "0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "questID", "type": "uint256", "internalType": "uint256" }, + { "name": "period", "type": "uint256", "internalType": "uint256" }, + { "name": "index", "type": "uint256", "internalType": "uint256" }, + { "name": "account", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "merkleProof", + "type": "bytes32[]", + "internalType": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "questID": "156", + "period": "1732752000", + "index": "2", + "account": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "amount": "1051968555555823262777", + "merkleProof": "[0x13bd65d1c57fa2c98b5f4f1632f6d08db7e04a5b6a7257f88e2f44f11393f73b,0xee66c62cb1d7befda4e88967bf1ece76c8c9c48e7ac495cfff46e1048ccb6eac,0x1e675f73c6ff0f68aaf370eda831be59f6efca950ad7f77ac24733cf2afcebfd]" + } + }, + { + "to": "0xD33526068D116cE69F19A9ee46F0bd304F21A51f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_spender", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "_value": "781366789840108625654" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf", + "_token": "0xD33526068D116cE69F19A9ee46F0bd304F21A51f", + "_amount": "781366789840108625654", + "_maxTokensPerVote": "0", + "_periods": "2" + } + }, + { + "to": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_spender", "type": "address", "internalType": "address" }, + { "name": "_value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC", + "_value": "9541997196987679817794" + } + }, + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_proposal", "type": "bytes32", "internalType": "bytes32" }, + { "name": "_token", "type": "address", "internalType": "address" }, + { "name": "_amount", "type": "uint256", "internalType": "uint256" }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { "name": "_periods", "type": "uint256", "internalType": "uint256" } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f", + "_token": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "_amount": "9541997196987679817794", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} diff --git a/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_bribe_recycling_mainnet_2024-12-06.report.txt b/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_bribe_recycling_mainnet_2024-12-06.report.txt new file mode 100644 index 000000000..1eb4a16b6 --- /dev/null +++ b/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_bribe_recycling_mainnet_2024-12-06.report.txt @@ -0,0 +1,808 @@ +FILENAME: `MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_bribe_recycling_mainnet_2024-12-06.json` +MULTISIG: `multisigs/maxi_omni (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `121ff2bc769294ad09b1ba8d4172b38f909634cd` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0744f614-2093-4d3a-8f8e-1a7458388baf) + +``` ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| function | title_and_poolId | incentive_paid | market_and_prophash | periods | tx_index | ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +| depositBribe | WETH rETH | RPL(0xD33526068D116cE69F19A9ee46F0bd304F21A51f) | balancer | 2 | 37 | +| | 0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112 | 781.3667898401086(781366789840108625654) | 0x9da569f067c8ce7105bddd07c2dd92a257983c53e631290d7c202d27e7072cbf | | | +| depositBribe | USDT USDC GHO | GHO(0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f) | balancer | 2 | 39 | +| | 0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9 | 9541.99719698768(9541997196987679817794) | 0xf7584003dcd19d66e6354e5d6da2e1d087ef28ecb175d098c47ecaf038c4b46f | | | ++--------------+--------------------------------------------------------------------+--------------------------------------------------+--------------------------------------------------------------------+---------+----------+ +``` +FILENAME: `MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_bribe_recycling_mainnet_2024-12-06.json` +MULTISIG: `multisigs/maxi_omni (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `121ff2bc769294ad09b1ba8d4172b38f909634cd` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7844a421-6696-4408-a840-040cbc524e8f) + +``` ++---------+--------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 81 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1725494400 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:50416957123116529302, 18 decimals:50.416957123116529302, 6 decimals: 50416957123116.529302" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x45f7c145a619efe77bc2a423b4d0fd7ffadfecf45acb17fd8d10a3ae3a66465e", | | | +| | | | "0x28f897a315d5692cfb8b6b8d2aa3437a42c04b62cc1a0e9eaaf022ac18ac7f60", | | | +| | | | "0x8ea83723e802c922c1eb3c7478b3211f144d17f20ad2e973f06d7592a0e6f18c" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 31 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1720051200 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:62717181962631992162, 18 decimals:62.717181962631992162, 6 decimals: 62717181962631.992162" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xa3a84db88b7c1b0bfd079d7b6723145853082aabb5c1d92a35d2b01436a329f3" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 31 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1720656000 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:61487433296698031532, 18 decimals:61.487433296698031532, 6 decimals: 61487433296698.031532" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xce08d0f489c3d7ff4f85e8bc7ced526ee59fba85deafa2121af959f8f677a9ad" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 40 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1721260800 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 1 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:40821014383285361450, 18 decimals:40.82101438328536145, 6 decimals: 40821014383285.36145" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xee1deca2981910045b2565b25234364c13f79a6cb0d6ffb0445f3e0ecf614fa6", | | | +| | | | "0x25632bf5a165397e82122a8755498c2f180047b081b416a7596cdfb8db5ae823" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 97 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1726099200 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:55296107732644483029, 18 decimals:55.296107732644483029, 6 decimals: 55296107732644.483029" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x1b768f637b64dc2bf6968061859c33b768d7301308198343b4407d2278334d70", | | | +| | | | "0x4f56f297a82d880c652bbd12daa101312f2c479db93e81bf5d35fc436d61c609" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 100 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1726099200 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:933816663172894608078, 18 decimals:933.816663172894608078, 6 decimals: 933816663172894.608078" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x1bed3dbe64e3e7d35926b126f05293989135ac6fce6eeb6056a1af436841ecd7", | | | +| | | | "0xceb1c5bc8dd02f01de459f4982e725ee81cc4d43a05578d1b7d5bf76997bdd7d", | | | +| | | | "0xb3de55bb7d2be8c39e622a1f1e344d0be2cebee8f295c6eeed83b70cf7fbbd84" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 34 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1721260800 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 4 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:309918625268805655200, 18 decimals:309.9186252688056552, 6 decimals: 309918625268805.6552" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x7ce51e3388f078fdc193816df6dd428f453575caa02f5ddcf9e8da50aec3d84a" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 40 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1721865600 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 1 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:40004594095619654221, 18 decimals:40.004594095619654221, 6 decimals: 40004594095619.654221" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xdfaccee72af0f0de7c4aad208abdbed157d75486f03123f915dbfd63c2765fa8", | | | +| | | | "0xe790f56a8b8ffef6271eb29072d461672c9f4ee2e844e43e0d65bbca621feda4" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 34 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1721865600 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 3 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:521228266831436504454, 18 decimals:521.228266831436504454, 6 decimals: 521228266831436.504454" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xacd1a2d214f3cc40161d418418eb5ca4bea32133e284ad938d518c0fa89ccc53", | | | +| | | | "0x352db9b220de57066902bac01d3ec5e39be980b5ab4d00db29d8c4c3f6de32d1" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 61 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1722470400 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:64940470766419370404, 18 decimals:64.940470766419370404, 6 decimals: 64940470766419.370404" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x03affc5ef951c85d3817aa255fb3c498a8844228550fc9b24a8041bf70d30bb2", | | | +| | | | "0xa20213ab248d13d3027fd8f2337c2444bd1ed9a4de921aed22459825d370f37a" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 97 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1726704000 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:54211870326122042184, 18 decimals:54.211870326122042184, 6 decimals: 54211870326122.042184" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x5cd3477fdf69c4f03c1589bd949cdb12504189b837497ac8b6ad821b9095a8f4", | | | +| | | | "0xc5ae9bb465335c13ad9d705bdb63d016596a8f7777e6637a7d5bcc433714109a" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 100 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1726704000 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:915506532522445694194, 18 decimals:915.506532522445694194, 6 decimals: 915506532522445.694194" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x11fc2b3620e518b861edb70dcdaf4102a49b0aa7375cdf40318d28142d64f168", | | | +| | | | "0xf5b7bf54b0afe08966195761c214c6b7082f77bac3ee41c8b61ba1329f1da920", | | | +| | | | "0xa26923fb0af4969f596b4de69b210faa36271b045367329c199a50a0d45b4ea5" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 61 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1723075200 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:63973450974892918235, 18 decimals:63.973450974892918235, 6 decimals: 63973450974892.918235" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x7d23700c81bac9e89bcebedaf059404e8c5d1a081f2e9cf62637d5ddd6f54ab3", | | | +| | | | "0x19cbf82570cced4124939a9481500b8b07a6053c378076ba1d41a413119d2ca2" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 111 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1727308800 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:43168025696981426546, 18 decimals:43.168025696981426546, 6 decimals: 43168025696981.426546" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x4df6edf83575ef0f07dd3918b913a2ea25e0bc80398c28a06188931f242d87b7", | | | +| | | | "0xfe19aa28e6686915ad16fdb72066de2a9c6f613abdc7e1398250607fd768d49a", | | | +| | | | "0x81d7b6b20e9341a76c46fb603b06bbbe24c55293db0cebc58bfb8be9ac103398" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 110 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1727308800 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1158257313251212237841, 18 decimals:1158.257313251212237841, 6 decimals: 1158257313251212.237841" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x6de3d32ac810f7049b5990a553abff7d2ee57fca1ece6a509c3165c9139797ff", | | | +| | | | "0xddc6fb1343350a62844e6eaa42ab0da356adf00cfba3e4bcdccf5e662049bca6", | | | +| | | | "0xc47cb2bc3007300aea1bb766397b3449489e3626cf894755f5dddb51019ee70e" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 70 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1723680000 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:44588947282807290293, 18 decimals:44.588947282807290293, 6 decimals: 44588947282807.290293" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x880bc38def0c598ee6b2dfbbd6ad71b204598d58ba6d48ba9956093caf6170b2", | | | +| | | | "0xec17f61426c9c4ed5fd83519d69c51acdcbbda9dd11a05c48c8440f15eac842e" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 111 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1727913600 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:43168025696981426546, 18 decimals:43.168025696981426546, 6 decimals: 43168025696981.426546" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xf43aadd0263802c34a2c4024d8db072faf38cb6d911622ae405adc37fbba4e8f" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 110 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1727913600 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1135092166986187993084, 18 decimals:1135.092166986187993084, 6 decimals: 1135092166986187.993084" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xe4b50b291b4b222d974004b413c24f38d67e39ca4b59c42ae5dbac940ad0331c", | | | +| | | | "0x32c24579c97ccfa6016ee68258aff7a4c6d9bc9f6adb9b1053c6f127fd80e3a8" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 70 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1724284800 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:44588947282807290293, 18 decimals:44.588947282807290293, 6 decimals: 44588947282807.290293" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xc5633476df3e10990a45f78d93b4aa5231079eb9c10a1d4c4fb0f3447adbda31", | | | +| | | | "0x6f1c6dd774719ef760342417b73bf40257e2be2ce3e75925c5bd93d33c49e0cd" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 81 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1724889600 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:50416957123116529302, 18 decimals:50.416957123116529302, 6 decimals: 50416957123116.529302" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x3a941c7dc2e628806ee4df26b1091ce56fad8105e662b7685d3dbd67c9f41c5b", | | | +| | | | "0x3a494448a0207298aa6d54a1988f770daa13697296d366e68623480858ff291d", | | | +| | | | "0xf61ff2e4b8c249ce915e4e8976af51754a644695d221df91898459c247caaf10" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 119 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1728518400 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 3 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1105350537707417051884, 18 decimals:1105.350537707417051884, 6 decimals: 1105350537707417.051884" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x593ae1f237ecf20f3c27dd6e5a7cc78e94cd12133f72c8c7c722b16a5a6ed634", | | | +| | | | "0x36961df6ce6819e48fad88390018ee3acaedfb0d04c53129a985745be51efd77", | | | +| | | | "0x7826381c36647338f7999a9504cbf35626ef3d438886a56eb4d34186050c75d3" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 128 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1728518400 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:63493949329513832909, 18 decimals:63.493949329513832909, 6 decimals: 63493949329513.832909" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x057694745e8d5e61d338776bce1df42ac6c81748eac3ede01ed3ff47b671ed34", | | | +| | | | "0x80176d442eaad055026da1490a50c5e328470016562760b84675db5cae6d5972" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 119 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1729123200 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 3 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1083243526953268710846, 18 decimals:1083.243526953268710846, 6 decimals: 1083243526953268.710846" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x10c7751edc3548d7dc2c1331c4a6cf779a251a970003b9cad3891402601e5c2e", | | | +| | | | "0x748b3e2a9c95d42fb2746b6ca54a63652d6e3c3d2c94d59164d8ab9412b3cc8c", | | | +| | | | "0xf9002af703fd60f31ca495a1d041424ae955835ccd6b95fc576619cee1783bb9" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 128 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1729123200 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:62224070342923556251, 18 decimals:62.224070342923556251, 6 decimals: 62224070342923.556251" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xeb479238ed084e88830fb8bdd5b0698552f337b9d2d43b9467bb58da4fb57b33", | | | +| | | | "0xd7efc4d5d720477ec65b39be5e349e2222e0759da3fa5cb706f2111af872c5da" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 134 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1729728000 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:34450502455440836470, 18 decimals:34.45050245544083647, 6 decimals: 34450502455440.83647" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xae882c2587e359b20cd794db77a19e78a5b9b2f962f5f32a3ce32425a2eb83ae", | | | +| | | | "0xc1917c6f025c9bdc5ac7f2509bc88dd474391ee049b838bfd890bae6f2c12fb3" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 132 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1729728000 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1068428782260322917962, 18 decimals:1068.428782260322917962, 6 decimals: 1068428782260322.917962" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x7293de2c1dd2072757528208c803438c6d7862af4d55de1a170021aa7ed7b027", | | | +| | | | "0x4d80c41a1dadbb6570a7fd01b707a2fc2177099b34a19a62541301fa9a890160", | | | +| | | | "0xc7262eb9329f6448fba184f4434e2614b115e2e84c7614342d1648c6d4e84d05" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 132 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1730332800 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1047479198294434233296, 18 decimals:1047.479198294434233296, 6 decimals: 1047479198294434.233296" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xa19580e6a8bd085595f4c204ffb321a8f35480d4ef44d84df1b5cb6cf31145a1", | | | +| | | | "0x7031bf290240b912694692798f58699f9a2ca31a83ae82ca8914d7068be04fb0" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 134 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1730332800 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:33775002407294937716, 18 decimals:33.775002407294937716, 6 decimals: 33775002407294.937716" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xab4dbcbd4bb881f40cc28cb6a596314d71403c04ac2e7ef2e5b96b1f40b58bf7", | | | +| | | | "0xe04213a52018c1fa557ad0f7de4f681e0db1e0f81ec176ae1a129d30abc0e018" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 154 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1730937600 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:61691050955156507511, 18 decimals:61.691050955156507511, 6 decimals: 61691050955156.507511" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x4269b5efd262652cec3d0de1e861ea3cb257cd24807a1cd1095ea48d1aeddadc", | | | +| | | | "0xed68045bee4c914531587f39485072e66e0cd15eaebec466db70da216156e700" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 143 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1730937600 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 3 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1125093564894628539907, 18 decimals:1125.093564894628539907, 6 decimals: 1125093564894628.539907" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x37a1eaa0e9533366105dc1f8b4a64f3fa2f892338a8e927ac2f06a58c7cb28f5", | | | +| | | | "0xfbbd1e324312e219af3e0b3ad481f0f0d942c7888aeadf879b9c81866614d806", | | | +| | | | "0xf334de51edd7d7ed0c03efcb084bf5d97f1de0d145c9c7a258272948db992e67" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 154 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1731542400 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:60481422505055399521, 18 decimals:60.481422505055399521, 6 decimals: 60481422505055.399521" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x45c20c4cb4eccb9188a50b80cb34bfecce3b2dccfea894f5bba365debae9a62d" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 143 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1731542400 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 3 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1103032906759439745007, 18 decimals:1103.032906759439745007, 6 decimals: 1103032906759439.745007" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x7e4a09c295ba485f6edb5c6cb74977c311c05255f4aa02eb20c592d418837e42", | | | +| | | | "0x9b47377687d61501ed5b8d1523093ebf2ccfea5d95c0271f2101e3411ac88ccd", | | | +| | | | "0xd4b8d7f74d04f2c4fdf44d0545bc8caf0bfef1cb8a5e2d7204187f68580afd5f" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 158 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1732147200 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:40161144730322881815, 18 decimals:40.161144730322881815, 6 decimals: 40161144730322.881815" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x4b4d1341c5dcf007477b872b0fd7b247e2e7127e314749e196ec285e9453a329", | | | +| | | | "0x6875568ea847b94d1d1652589fb093bec440c046e9937c5dd391e4ffae69a844", | | | +| | | | "0xcc0a5b45bc99afe72c09b4d0e6285d635801f383fe2fc09277ac3e488c3b2a82" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 156 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1732147200 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1073007926666939728033, 18 decimals:1073.007926666939728033, 6 decimals: 1073007926666939.728033" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xd5022c5aa89b7633ed80a7215a773f8b68fd7a25bb3d224372df5c7e515dc932", | | | +| | | | "0x6258605ff3f942932a3ad444257d245797e27d3ef9bc8acc906df2a09eafb196" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 158 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1732752000 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 0 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:40161144730322881815, 18 decimals:40.161144730322881815, 6 decimals: 40161144730322.881815" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0xe17fe6777d228f0913fcc7e04a447662b568a8321f1ad5fd99ee260d7fc9857f", | | | +| | | | "0xb6c43533bb9c883875129ee3422e020acf9807639c5332185e186ea2a6ab1d17" | | | +| | | | ] | | | +| | | | } | | | +| claim | 0x1F7b4Bf0CD21c1FBC4F1d995BA0608fDfC992aF4 (paladin/DistributorV2) | 0 | { | N/A | N/A | +| | | | "questID": [ | | | +| | | | 156 | | | +| | | | ], | | | +| | | | "period": [ | | | +| | | | 1732752000 | | | +| | | | ], | | | +| | | | "index": [ | | | +| | | | 2 | | | +| | | | ], | | | +| | | | "account": [ | | | +| | | | "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e (multisigs/maxi_omni)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1051968555555823262777, 18 decimals:1051.968555555823262777, 6 decimals: 1051968555555823.262777" | | | +| | | | ], | | | +| | | | "merkleProof": [ | | | +| | | | "0x13bd65d1c57fa2c98b5f4f1632f6d08db7e04a5b6a7257f88e2f44f11393f73b", | | | +| | | | "0xee66c62cb1d7befda4e88967bf1ece76c8c9c48e7ac495cfff46e1048ccb6eac", | | | +| | | | "0x1e675f73c6ff0f68aaf370eda831be59f6efca950ad7f77ac24733cf2afcebfd" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0xD33526068D116cE69F19A9ee46F0bd304F21A51f (tokens/RPL) | 0 | { | N/A | N/A | +| | | | "_spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:781366789840108625654, 18 decimals:781.366789840108625654, 6 decimals: 781366789840108.625654" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f (tokens/GHO) | 0 | { | N/A | N/A | +| | | | "_spender": [ | | | +| | | | "0xE00fe722e5bE7ad45b1A16066E431E47Df476CeC (hidden_hand2/bribe_vault)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:9541997196987679817794, 18 decimals:9541.997196987679817794, 6 decimals: 9541997196987679.817794" | | | +| | | | ] | | | +| | | | } | | | ++---------+--------------------------------------------------------------------+-------+------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_claims_mainnet_2024-12-06.csv b/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_claims_mainnet_2024-12-06.csv new file mode 100644 index 000000000..370e7aeed --- /dev/null +++ b/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_claims_mainnet_2024-12-06.csv @@ -0,0 +1,37 @@ +chain,token_address,gauge_address,amount,amount_mantissa +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,50.416957123116529302,50416957123116529302 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,62.717181962631992162,62717181962631992162 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,61.487433296698031532,61487433296698031532 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,40.82101438328536145,40821014383285361450 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,55.296107732644483029,55296107732644483029 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,933.816663172894608078,933816663172894608078 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,309.9186252688056552,309918625268805655200 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,40.004594095619654221,40004594095619654221 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,521.228266831436504454,521228266831436504454 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,64.940470766419370404,64940470766419370404 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,54.211870326122042184,54211870326122042184 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,915.506532522445694194,915506532522445694194 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,63.973450974892918235,63973450974892918235 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,43.168025696981426546,43168025696981426546 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1158.257313251212237841,1158257313251212237841 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,44.588947282807290293,44588947282807290293 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,43.168025696981426546,43168025696981426546 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1135.092166986187993084,1135092166986187993084 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,44.588947282807290293,44588947282807290293 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,50.416957123116529302,50416957123116529302 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1105.350537707417051884,1105350537707417051884 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,63.493949329513832909,63493949329513832909 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1083.243526953268710846,1083243526953268710846 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,62.224070342923556251,62224070342923556251 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,34.45050245544083647,34450502455440836470 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1068.428782260322917962,1068428782260322917962 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1047.479198294434233296,1047479198294434233296 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,33.775002407294937716,33775002407294937716 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,61.691050955156507511,61691050955156507511 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1125.093564894628539907,1125093564894628539907 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,60.481422505055399521,60481422505055399521 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1103.032906759439745007,1103032906759439745007 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,40.161144730322881815,40161144730322881815 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1073.007926666939728033,1073007926666939728033 +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,0x79eF6103A513951a3b25743DB509E267685726B7,40.161144730322881815,40161144730322881815 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,0xf720e9137baa9C7612e6CA59149a5057ab320cFa,1051.968555555823262777,1051968555555823262777 diff --git a/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_tokens_to_sell_mainnet_2024-12-06.csv b/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_tokens_to_sell_mainnet_2024-12-06.csv new file mode 100644 index 000000000..d60b63985 --- /dev/null +++ b/MaxiOps/paladin_bribes/2024-12-06/mainnet/paladin_tokens_to_sell_mainnet_2024-12-06.csv @@ -0,0 +1,3 @@ +chain,token_address,amount,amount_mantissa +mainnet,0xD33526068D116cE69F19A9ee46F0bd304F21A51f,334.871481360046553853,334871481360046553853 +mainnet,0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f,4089.427370137577064769,4089427370137577064769 diff --git a/MaxiOps/revoke_approvals_20241011.json b/MaxiOps/revoke_approvals_20241011.json new file mode 100644 index 000000000..8133e738e --- /dev/null +++ b/MaxiOps/revoke_approvals_20241011.json @@ -0,0 +1,168 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1728601142676, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.0", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x2def8c15481109ddfd93c5ead13e7452c26f08581674664c3a2a3a26f22c3235" + }, + "transactions": [ + { + "to": "0x616e8BfA43F920657B3497DBf40D6b1A02D4608d", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68", + "amount": "0" + } + }, + { + "to": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xC92E8bdf79f0507f65a392b0ab4667716BFE0110", + "amount": "0" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xC92E8bdf79f0507f65a392b0ab4667716BFE0110", + "amount": "0" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "amount": "0" + } + }, + { + "to": "0xba100000625a3754423978a60c9317c58a424e3D", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9", + "amount": "0" + } + }, + { + "to": "0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "amount", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9", + "amount": "0" + } + }, + { + "to": "0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xB5Ec9706C3Be9d22326D208f491E5DEef7C8d9f0", + "value": "0" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xC92E8bdf79f0507f65a392b0ab4667716BFE0110", + "value": "0" + } + }, + { + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "value", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0" + } + } + ] +} diff --git a/MaxiOps/revoke_approvals_20241011.report.txt b/MaxiOps/revoke_approvals_20241011.report.txt new file mode 100644 index 000000000..22d177f8b --- /dev/null +++ b/MaxiOps/revoke_approvals_20241011.report.txt @@ -0,0 +1,84 @@ +FILENAME: `MaxiOps/revoke_approvals_20241011.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `e61dd51c75ef4a144525fa4aded95a003cf0866c` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/7244d961-ff02-4783-991c-6844c323e627) + +``` ++---------+------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x616e8BfA43F920657B3497DBf40D6b1A02D4608d (tokens/AURABAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xdF9080B6BfE4630a97A0655C0016E0e9B43a7C68 (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56 (tokens/BalWeth8020) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xC92E8bdf79f0507f65a392b0ab4667716BFE0110 (cow/vault_relayer)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xC92E8bdf79f0507f65a392b0ab4667716BFE0110 (cow/vault_relayer)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0xba100000625a3754423978a60c9317c58a424e3D (tokens/BAL) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 (20220420-fee-distributor/FeeDistributor)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x7B50775383d3D6f0215A8F290f2C9e2eEBBEceb2 (pools/bb-a-USD-7b50) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9 (20220420-fee-distributor/FeeDistributor)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xB5Ec9706C3Be9d22326D208f491E5DEef7C8d9f0 (N/A)" | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xC92E8bdf79f0507f65a392b0ab4667716BFE0110 (cow/vault_relayer)" | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (tokens/USDC) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xBA12222222228d8Ba445958a75a0704d566BF2C8 (20210418-vault/Vault)" | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | "raw:0, 18 decimals:0, 6 decimals: 0" | | | +| | | | ] | | | +| | | | } | | | ++---------+------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/sablier/cancel-tritium.json b/MaxiOps/sablier/cancel-tritium.json new file mode 100644 index 000000000..948300c23 --- /dev/null +++ b/MaxiOps/sablier/cancel-tritium.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734340934361, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x4dd6b12fa29cd0e773ca498db9eccfa10abfa6af825d532842f3146b5592a848" + }, + "transactions": [ + { + "to": "0x3962f6585946823440d274aD7C719B02b49DE51E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "streamId", "type": "uint256", "internalType": "uint256" } + ], + "name": "cancel", + "payable": false + }, + "contractInputsValues": { "streamId": "1607" } + }, + { + "to": "0x3962f6585946823440d274aD7C719B02b49DE51E", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "streamId", "type": "uint256", "internalType": "uint256" }, + { "name": "to", "type": "address", "internalType": "address" } + ], + "name": "withdrawMax", + "payable": false + }, + "contractInputsValues": { + "streamId": "1607", + "to": "0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93" + } + } + ] +} diff --git a/MaxiOps/sablier/cancel-tritium.report.txt b/MaxiOps/sablier/cancel-tritium.report.txt new file mode 100644 index 000000000..05f713719 --- /dev/null +++ b/MaxiOps/sablier/cancel-tritium.report.txt @@ -0,0 +1,25 @@ +FILENAME: `MaxiOps/sablier/cancel-tritium.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `a9b38ba6f33613856185f45510ad2236b91d1b72` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/0527d53b-f3d3-4260-9de7-df12ea22082c) + +``` ++-------------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------+------------+----------+ +| cancel | 0x3962f6585946823440d274aD7C719B02b49DE51E (Not Found) | 0 | { | N/A | N/A | +| | | | "streamId": [ | | | +| | | | "1607" | | | +| | | | ] | | | +| | | | } | | | +| withdrawMax | 0x3962f6585946823440d274aD7C719B02b49DE51E (Not Found) | 0 | { | N/A | N/A | +| | | | "streamId": [ | | | +| | | | "1607" | | | +| | | | ], | | | +| | | | "to": [ | | | +| | | | "0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93 (EOA/contributors-payees/tritium)" | | | +| | | | ] | | | +| | | | } | | | ++-------------+--------------------------------------------------------+-------+------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/sablier/transfer-susds-delta-tritium.json b/MaxiOps/sablier/transfer-susds-delta-tritium.json new file mode 100644 index 000000000..d6f609f00 --- /dev/null +++ b/MaxiOps/sablier/transfer-susds-delta-tritium.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1734377045207, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x296a921de9f3acbca235a5e618222bd06e55fb01ccc6abf1cafc8a7c6c547f7e" + }, + "transactions": [ + { + "to": "0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93", + "value": "6106491848689630800180" + } + } + ] +} diff --git a/MaxiOps/sablier/transfer-susds-delta-tritium.report.txt b/MaxiOps/sablier/transfer-susds-delta-tritium.report.txt new file mode 100644 index 000000000..8c45d1c3b --- /dev/null +++ b/MaxiOps/sablier/transfer-susds-delta-tritium.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/sablier/transfer-susds-delta-tritium.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `60f7339441df081acb8d6b578ddf8fc69ecc5464` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/24612601-cc31-40a4-90b2-73069afa1cb2) + +``` ++----------+--------------------------------------------------+----------------------------------------------------------------------------+------------------------------------------------+-----+----------+ +| function | token_symbol | recipient | amount | bip | tx_index | ++----------+--------------------------------------------------+----------------------------------------------------------------------------+------------------------------------------------+-----+----------+ +| transfer | sUSDS:0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD | EOA/contributors-payees/tritium:0x27e472f2625D6d4913F6cb5b99DAAadb58Da1D93 | 6106.49184868963 (RAW: 6106491848689630800180) | N/A | 0 | ++----------+--------------------------------------------------+----------------------------------------------------------------------------+------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/sdBAL_vesters/test_deposit_for_deployer.json b/MaxiOps/sdBAL_vesters/test_deposit_for_deployer.json new file mode 100644 index 000000000..89f7e23f7 --- /dev/null +++ b/MaxiOps/sdBAL_vesters/test_deposit_for_deployer.json @@ -0,0 +1,53 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733547183223, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x10714117d4eea2f9d3d0b89a90ed62bbd6ae4b35f2171504d7b610cf340dc9f9" + }, + "transactions": [ + { + "to": "0x3E8C72655e48591d93e6dfdA16823dB0fF23d859", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "_spender", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "_spender": "0x8aB61e36265c162345b60cBAC8517e7d5dCE8381", + "_value": "1000000000000000000" + } + }, + { + "to": "0x8aB61e36265c162345b60cBAC8517e7d5dCE8381", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_amount", "type": "uint256" }, + { + "internalType": "uint256", + "name": "_vestingPeriod", + "type": "uint256" + } + ], + "name": "deposit", + "payable": false + }, + "contractInputsValues": { + "_amount": "1000000000000000000", + "_vestingPeriod": "1209600" + } + } + ] +} diff --git a/MaxiOps/sdBAL_vesters/test_deposit_for_deployer.report.txt b/MaxiOps/sdBAL_vesters/test_deposit_for_deployer.report.txt new file mode 100644 index 000000000..ee4c9b1f7 --- /dev/null +++ b/MaxiOps/sdBAL_vesters/test_deposit_for_deployer.report.txt @@ -0,0 +1,28 @@ +FILENAME: `MaxiOps/sdBAL_vesters/test_deposit_for_deployer.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `47b393eee5b0cfc62c1caf4f9ee23cd8473b1c65` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/1b85ce9e-403f-4a5b-8932-cc17682649cb) + +``` ++---------+-----------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+-----------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +| approve | 0x3E8C72655e48591d93e6dfdA16823dB0fF23d859 (stake_dao/sdBAL_gauge_contract) | 0 | { | N/A | N/A | +| | | | "_spender": [ | | | +| | | | "0x8aB61e36265c162345b60cBAC8517e7d5dCE8381 (N/A)" | | | +| | | | ], | | | +| | | | "_value": [ | | | +| | | | "raw:1000000000000000000, 18 decimals:1, 6 decimals: 1000000000000" | | | +| | | | ] | | | +| | | | } | | | +| deposit | 0x8aB61e36265c162345b60cBAC8517e7d5dCE8381 (Not Found) | 0 | { | N/A | N/A | +| | | | "_amount": [ | | | +| | | | "raw:1000000000000000000, 18 decimals:1, 6 decimals: 1000000000000" | | | +| | | | ], | | | +| | | | "_vestingPeriod": [ | | | +| | | | "1209600" | | | +| | | | ] | | | +| | | | } | | | ++---------+-----------------------------------------------------------------------------+-------+-------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/sdBAL_vesters/test_vester_on_deployer.json b/MaxiOps/sdBAL_vesters/test_vester_on_deployer.json new file mode 100644 index 000000000..56aee876e --- /dev/null +++ b/MaxiOps/sdBAL_vesters/test_vester_on_deployer.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1733474625600, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x166f54F44F271407f24AA1BE415a730035637325", + "createdFromOwnerAddress": "", + "checksum": "0x8c2a76c625ce265d079715c4491d14a8e0c813c6dd7f7ff31a39f363c6804379" + }, + "transactions": [ + { + "to": "0x032007EC766D7fD0061d20aC9130894878433bd0", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "_beneficiary", + "type": "address" + } + ], + "name": "deployVestingContract", + "payable": false + }, + "contractInputsValues": { + "_beneficiary": "0x4BC8121278056BFCaC2BD14D455659224d6dDf48" + } + } + ] +} diff --git a/MaxiOps/sdBAL_vesters/test_vester_on_deployer.report.txt b/MaxiOps/sdBAL_vesters/test_vester_on_deployer.report.txt new file mode 100644 index 000000000..28841ec46 --- /dev/null +++ b/MaxiOps/sdBAL_vesters/test_vester_on_deployer.report.txt @@ -0,0 +1,17 @@ +FILENAME: `MaxiOps/sdBAL_vesters/test_vester_on_deployer.json` +MULTISIG: `multisigs/maxi_ops (mainnet:0x166f54F44F271407f24AA1BE415a730035637325)` +COMMIT: `dece4fe4313b6c710f77a7fec1bb41a2a39a628d` +CHAIN(S): `mainnet` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/cc71edb4-bfe4-46cd-a658-9ec6ed9cbc6d) + +``` ++-----------------------+--------------------------------------------------------+-------+------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-----------------------+--------------------------------------------------------+-------+------------------------------------------------------------------------------+------------+----------+ +| deployVestingContract | 0x032007EC766D7fD0061d20aC9130894878433bd0 (Not Found) | 0 | { | N/A | N/A | +| | | | "_beneficiary": [ | | | +| | | | "0x4BC8121278056BFCaC2BD14D455659224d6dDf48 (EOA/maxi_deployers/gosuto)" | | | +| | | | ] | | | +| | | | } | | | ++-----------------------+--------------------------------------------------------+-------+------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/testing_paylaods/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718301952.json b/MaxiOps/testing_paylaods/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718301952.json new file mode 100644 index 000000000..f83e21470 --- /dev/null +++ b/MaxiOps/testing_paylaods/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718301952.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": 42161, + "createdAt": 1714157066535, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09", + "data": "0xe8de0d4d000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548000000000000000000000000823f70044351b213083f0abc2169f95e2731064e" + } + } + ] +} diff --git a/MaxiOps/testing_paylaods/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718301952.report.txt b/MaxiOps/testing_paylaods/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718301952.report.txt new file mode 100644 index 000000000..e1dbf5082 --- /dev/null +++ b/MaxiOps/testing_paylaods/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718301952.report.txt @@ -0,0 +1,14 @@ + +FILENAME: `MaxiOps/testing_paylaods/0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09_0x912CE59144191C1204E64559FE8253a0e49E6548_1718301952.json` +MULTISIG: `multisigs/lm (arbitrum:0xc38c5f97B34E175FFd35407fc91a937300E33860)` +COMMIT: `781fccf300c24e96c1caf8da5db4df412dad1a7f` +CHAIN(S): `arbitrum` +TENDERLY: [FAILURE](https://www.tdly.co/shared/simulation/af660c55-b70a-4570-b1e6-95dcb60648b6) +``` ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+----------------------------------------------------------------------+-----+----------+ +| function | entrypoint | target | selector | parsed_inputs | bip | tx_index | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+----------------------------------------------------------------------+-----+----------+ +| performAction | 0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A (20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint) | 0xd9647eb5d6457bd7adb39b335ab89ec3a1ea6d09 (gauges/ECLP-GYD-AUSDT-gauge-d964) | add_reward(address,address) | 0x912CE59144191C1204E64559FE8253a0e49E6548: tokens/ARB | N/A | 0 | +| | | | | 0x823F70044351b213083F0ABc2169F95E2731064E: gyro/foundation_multisig | | | ++---------------+-----------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------+-----------------------------+----------------------------------------------------------------------+-----+----------+ +``` diff --git a/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-1.json b/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-1.json new file mode 100644 index 000000000..a6268e8cf --- /dev/null +++ b/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-1.json @@ -0,0 +1,207 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1732140615, + "meta": { + "name": "Create Merkl Campaign", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e" + }, + "transactions": [ + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "amount": "3000000000000000000000" + } + }, + { + "to": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptConditions", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "campaignId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "creator", + "type": "address" + }, + { + "internalType": "address", + "name": "rewardToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint32", + "name": "campaignType", + "type": "uint32" + }, + { + "internalType": "uint32", + "name": "startTimestamp", + "type": "uint32" + }, + { + "internalType": "uint32", + "name": "duration", + "type": "uint32" + }, + { + "internalType": "bytes", + "name": "campaignData", + "type": "bytes" + } + ], + "internalType": "struct CampaignParameters", + "name": "newCampaign", + "type": "tuple" + } + ], + "name": "createCampaign", + "payable": false + }, + "contractInputsValues": { + "newCampaign": "[\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x0000000000000000000000000000000000000000\",\"0x4200000000000000000000000000000000000042\",\"3000000000000000000000\",1,1732234182,1209018,\"0x000000000000000000000000000000000000000000000000000000000000868b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000001224d4e918e69189760888fd40ec1491c93cd59b00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0c0c0c0\"]" + } + }, + + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "spender", + "type": "address", + "internalType": "address" + }, + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "amount": "3000000000000000000000" + } + }, + { + "to": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptConditions", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "campaignId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "creator", + "type": "address" + }, + { + "internalType": "address", + "name": "rewardToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint32", + "name": "campaignType", + "type": "uint32" + }, + { + "internalType": "uint32", + "name": "startTimestamp", + "type": "uint32" + }, + { + "internalType": "uint32", + "name": "duration", + "type": "uint32" + }, + { + "internalType": "bytes", + "name": "campaignData", + "type": "bytes" + } + ], + "internalType": "struct CampaignParameters", + "name": "newCampaign", + "type": "tuple" + } + ], + "name": "createCampaign", + "payable": false + }, + "contractInputsValues": { + "newCampaign": "[\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x0000000000000000000000000000000000000000\",\"0x4200000000000000000000000000000000000042\",\"3000000000000000000000\",1,1732234182,1209018,\"0x000000000000000000000000000000000000000000000000000000000000868b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000016453789fed619c7fa18c068dec1cb2766ba2e3e00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0c0c0c0\"]" + } + } + ] +} diff --git a/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-1.report.txt b/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-1.report.txt new file mode 100644 index 000000000..e142ce293 --- /dev/null +++ b/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-1.report.txt @@ -0,0 +1,54 @@ +FILENAME: `MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-1.json` +MULTISIG: `multisigs/vote_incentive_recycling (optimism:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `115acf0497e2f2d345aabd99da5ba02478c24e5c` +CHAIN(S): `optimism` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `createCampaign`, positional arguments with type(s) `((str,address,address,int,int,int,int,str))` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `createCampaign`: ['createCampaign((bytes32,address,address,uint256,uint32,uint32,uint32,bytes))']\nFunction invocation failed due to no matching argument types."))` + +``` ++------------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4200000000000000000000000000000000000042 (tokens/OP) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:3000000000000000000000, 18 decimals:3000, 6 decimals: 3000000000000000" | | | +| | | | ] | | | +| | | | } | | | +| acceptConditions | 0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (Not Found) | 0 | "N/A" | N/A | N/A | +| createCampaign | 0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (Not Found) | 0 | { | N/A | N/A | +| | | | "newCampaign": [ | | | +| | | | "\"0x0000000000000000000000000000000000000000000000000000000000000000\"", | | | +| | | | "\"0x0000000000000000000000000000000000000000\"", | | | +| | | | "\"0x4200000000000000000000000000000000000042\"", | | | +| | | | "\"3000000000000000000000\"", | | | +| | | | "1", | | | +| | | | "1732234182", | | | +| | | | "1209018", | | | +| | | | "\"0x000000000000000000000000000000000000000000000000000000000000868b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000001224d4e918e69189760888fd40ec1491c93cd59b00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0c0c0c0\"" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4200000000000000000000000000000000000042 (tokens/OP) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (N/A)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:3000000000000000000000, 18 decimals:3000, 6 decimals: 3000000000000000" | | | +| | | | ] | | | +| | | | } | | | +| acceptConditions | 0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (Not Found) | 0 | "N/A" | N/A | N/A | +| createCampaign | 0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (Not Found) | 0 | { | N/A | N/A | +| | | | "newCampaign": [ | | | +| | | | "\"0x0000000000000000000000000000000000000000000000000000000000000000\"", | | | +| | | | "\"0x0000000000000000000000000000000000000000\"", | | | +| | | | "\"0x4200000000000000000000000000000000000042\"", | | | +| | | | "\"3000000000000000000000\"", | | | +| | | | "1", | | | +| | | | "1732234182", | | | +| | | | "1209018", | | | +| | | | "\"0x000000000000000000000000000000000000000000000000000000000000868b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000016453789fed619c7fa18c068dec1cb2766ba2e3e00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0c0c0c0\"" | | | +| | | | ] | | | +| | | | } | | | ++------------------+--------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-2.json b/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-2.json new file mode 100644 index 000000000..61a615e5f --- /dev/null +++ b/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-2.json @@ -0,0 +1,193 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1733347913967, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xce7d98da2f2b0d247dd178dd8bd159b31eb3e6861bbfe62429d21b74a426ae46" + }, + "transactions": [ + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "amount": "5000000000000000000000" + } + }, + { + "to": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptConditions", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "campaignId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "creator", + "type": "address" + }, + { + "internalType": "address", + "name": "rewardToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint32", + "name": "campaignType", + "type": "uint32" + }, + { + "internalType": "uint32", + "name": "startTimestamp", + "type": "uint32" + }, + { + "internalType": "uint32", + "name": "duration", + "type": "uint32" + }, + { + "internalType": "bytes", + "name": "campaignData", + "type": "bytes" + } + ], + "internalType": "struct CampaignParameters", + "name": "newCampaign", + "type": "tuple" + } + ], + "name": "createCampaign", + "payable": false + }, + "contractInputsValues": { + "newCampaign": "[\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x0000000000000000000000000000000000000000\",\"0x4200000000000000000000000000000000000042\",\"5000000000000000000000\",1,1733439600,1209600,\"0x000000000000000000000000000000000000000000000000000000000000868b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000001224d4e918e69189760888fd40ec1491c93cd59b00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0c0c0c0\"]" + } + }, + { + "to": "0x4200000000000000000000000000000000000042", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "spender", "type": "address", "internalType": "address" }, + { "name": "amount", "type": "uint256", "internalType": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "amount": "1500000000000000000000" + } + }, + { + "to": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptConditions", + "payable": false + }, + "contractInputsValues": null + }, + { + "to": "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "campaignId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "creator", + "type": "address" + }, + { + "internalType": "address", + "name": "rewardToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint32", + "name": "campaignType", + "type": "uint32" + }, + { + "internalType": "uint32", + "name": "startTimestamp", + "type": "uint32" + }, + { + "internalType": "uint32", + "name": "duration", + "type": "uint32" + }, + { + "internalType": "bytes", + "name": "campaignData", + "type": "bytes" + } + ], + "internalType": "struct CampaignParameters", + "name": "newCampaign", + "type": "tuple" + } + ], + "name": "createCampaign", + "payable": false + }, + "contractInputsValues": { + "newCampaign": "[\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x0000000000000000000000000000000000000000\",\"0x4200000000000000000000000000000000000042\",\"1500000000000000000000\",1,1733439600,1209600,\"0x000000000000000000000000000000000000000000000000000000000000868b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000016453789fed619c7fa18c068dec1cb2766ba2e3e00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0c0c0c0\"]" + } + } + ] +} diff --git a/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-2.report.txt b/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-2.report.txt new file mode 100644 index 000000000..c911b55c6 --- /dev/null +++ b/MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-2.report.txt @@ -0,0 +1,54 @@ +FILENAME: `MaxiOps/veMODE-Transactions/OP-Incentives/Epoch-2.json` +MULTISIG: `multisigs/maxi_omni (optimism:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `ce3f9c4a013750435b537e32065dafa4b4273ca1` +CHAIN(S): `optimism` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `createCampaign`, positional arguments with type(s) `((str,address,address,int,int,int,int,str))` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `createCampaign`: ['createCampaign((bytes32,address,address,uint256,uint32,uint32,uint32,bytes))']\nFunction invocation failed due to no matching argument types."))` + +``` ++------------------+------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------------+------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0x4200000000000000000000000000000000000042 (tokens/OP) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (angle/DistributionCreator)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:5000000000000000000000, 18 decimals:5000, 6 decimals: 5000000000000000" | | | +| | | | ] | | | +| | | | } | | | +| acceptConditions | 0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (angle/DistributionCreator) | 0 | "N/A" | N/A | N/A | +| createCampaign | 0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (angle/DistributionCreator) | 0 | { | N/A | N/A | +| | | | "newCampaign": [ | | | +| | | | "\"0x0000000000000000000000000000000000000000000000000000000000000000\"", | | | +| | | | "\"0x0000000000000000000000000000000000000000\"", | | | +| | | | "\"0x4200000000000000000000000000000000000042\"", | | | +| | | | "\"5000000000000000000000\"", | | | +| | | | "1", | | | +| | | | "1733439600", | | | +| | | | "1209600", | | | +| | | | "\"0x000000000000000000000000000000000000000000000000000000000000868b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000001224d4e918e69189760888fd40ec1491c93cd59b00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0c0c0c0\"" | | | +| | | | ] | | | +| | | | } | | | +| approve | 0x4200000000000000000000000000000000000042 (tokens/OP) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (angle/DistributionCreator)" | | | +| | | | ], | | | +| | | | "amount": [ | | | +| | | | "raw:1500000000000000000000, 18 decimals:1500, 6 decimals: 1500000000000000" | | | +| | | | ] | | | +| | | | } | | | +| acceptConditions | 0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (angle/DistributionCreator) | 0 | "N/A" | N/A | N/A | +| createCampaign | 0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd (angle/DistributionCreator) | 0 | { | N/A | N/A | +| | | | "newCampaign": [ | | | +| | | | "\"0x0000000000000000000000000000000000000000000000000000000000000000\"", | | | +| | | | "\"0x0000000000000000000000000000000000000000\"", | | | +| | | | "\"0x4200000000000000000000000000000000000042\"", | | | +| | | | "\"1500000000000000000000\"", | | | +| | | | "1", | | | +| | | | "1733439600", | | | +| | | | "1209600", | | | +| | | | "\"0x000000000000000000000000000000000000000000000000000000000000868b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000016453789fed619c7fa18c068dec1cb2766ba2e3e00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0c0c0c0\"" | | | +| | | | ] | | | +| | | | } | | | ++------------------+------------------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/veMODE-Transactions/Staking-Transactions/Mode-Lock-SingleStake-DevDrop.json b/MaxiOps/veMODE-Transactions/Staking-Transactions/Mode-Lock-SingleStake-DevDrop.json new file mode 100644 index 000000000..d52d52f69 --- /dev/null +++ b/MaxiOps/veMODE-Transactions/Staking-Transactions/Mode-Lock-SingleStake-DevDrop.json @@ -0,0 +1,45 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1729632379118, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xb082da2f4bc45497c3e928090b62ab50f146dbe42c26fb6787b07321cb327e46" + }, + "transactions": [ + { + "to": "0xDfc7C877a950e49D2610114102175A06C2e3167a", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "address", "name": "spender", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "0xff8AB822b8A853b01F9a9E9465321d6Fe77c9D2F", + "value": "1000000000000000000000000" + } + }, + { + "to": "0xff8AB822b8A853b01F9a9E9465321d6Fe77c9D2F", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_value", "type": "uint256" } + ], + "name": "createLock", + "payable": false + }, + "contractInputsValues": { "_value": "1000000000000000000000000" } + } + ] +} diff --git a/MaxiOps/veMODE-Transactions/Staking-Transactions/Mode-Lock-SingleStake-DevDrop.report.txt b/MaxiOps/veMODE-Transactions/Staking-Transactions/Mode-Lock-SingleStake-DevDrop.report.txt new file mode 100644 index 000000000..660e2bcd8 --- /dev/null +++ b/MaxiOps/veMODE-Transactions/Staking-Transactions/Mode-Lock-SingleStake-DevDrop.report.txt @@ -0,0 +1,25 @@ +FILENAME: `MaxiOps/veMODE-Transactions/Staking-Transactions/Mode-Lock-SingleStake-DevDrop.json` +MULTISIG: `multisigs/lm (mode:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `3c120bec991682e61deab283581cc928288be65d` +CHAIN(S): `mode` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/8474117e-df03-489b-872d-f3adf5a38ed3) + +``` ++------------+--------------------------------------------------------+-------+-------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++------------+--------------------------------------------------------+-------+-------------------------------------------------------------------------------------------+------------+----------+ +| approve | 0xDfc7C877a950e49D2610114102175A06C2e3167a (Not Found) | 0 | { | N/A | N/A | +| | | | "spender": [ | | | +| | | | "0xff8AB822b8A853b01F9a9E9465321d6Fe77c9D2F (N/A)" | | | +| | | | ], | | | +| | | | "value": [ | | | +| | | | "raw:1000000000000000000000000, 18 decimals:1000000, 6 decimals: 1000000000000000000" | | | +| | | | ] | | | +| | | | } | | | +| createLock | 0xff8AB822b8A853b01F9a9E9465321d6Fe77c9D2F (Not Found) | 0 | { | N/A | N/A | +| | | | "_value": [ | | | +| | | | "raw:1000000000000000000000000, 18 decimals:1000000, 6 decimals: 1000000000000000000" | | | +| | | | ] | | | +| | | | } | | | ++------------+--------------------------------------------------------+-------+-------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/veMODE-Transactions/Vote-Transactions/veMODE-BPT-Vote-1.json b/MaxiOps/veMODE-Transactions/Vote-Transactions/veMODE-BPT-Vote-1.json new file mode 100644 index 000000000..bb9c5e730 --- /dev/null +++ b/MaxiOps/veMODE-Transactions/Vote-Transactions/veMODE-BPT-Vote-1.json @@ -0,0 +1,44 @@ +{ + "version": "1.0", + "chainId": "34443", + "createdAt": 1730139390525, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0x53531d16f59ade450f97769d73da6668e00604c1b5430f89f2a0ed5f590a20cd" + }, + "transactions": [ + { + "to": "0x2aA8A5C1Af4EA11A1f1F10f3b73cfB30419F77Fb", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "internalType": "uint256", "name": "_tokenId", "type": "uint256" }, + { + "components": [ + { + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { "internalType": "address", "name": "gauge", "type": "address" } + ], + "internalType": "struct IGaugeVote.GaugeVote[]", + "name": "_votes", + "type": "tuple[]" + } + ], + "name": "vote", + "payable": false + }, + "contractInputsValues": { + "_tokenId": "98", + "_votes": "[[1,\"0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e\"]]" + } + } + ] +} diff --git a/MaxiOps/veMODE-Transactions/Vote-Transactions/veMODE-BPT-Vote-1.report.txt b/MaxiOps/veMODE-Transactions/Vote-Transactions/veMODE-BPT-Vote-1.report.txt new file mode 100644 index 000000000..b4c5ddf43 --- /dev/null +++ b/MaxiOps/veMODE-Transactions/Vote-Transactions/veMODE-BPT-Vote-1.report.txt @@ -0,0 +1,21 @@ +FILENAME: `MaxiOps/veMODE-Transactions/Vote-Transactions/veMODE-BPT-Vote-1.json` +MULTISIG: `multisigs/lm (mode:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `c77d1c9649266a078e6d6b2c8d2a1e75e530a641` +CHAIN(S): `mode` +TENDERLY: `🟪 SKIPPED (Web3ValidationError("\nCould not identify the intended function with name `vote`, positional arguments with type(s) `int,(str,str)` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `vote`: ['vote(uint256,(uint256,address)[])']\nFunction invocation failed due to no matching argument types."))` + +``` ++---------+--------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +| vote | 0x2aA8A5C1Af4EA11A1f1F10f3b73cfB30419F77Fb (Not Found) | 0 | { | N/A | N/A | +| | | | "_tokenId": [ | | | +| | | | "98" | | | +| | | | ], | | | +| | | | "_votes": [ | | | +| | | | "1", | | | +| | | | "\"0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e\"" | | | +| | | | ] | | | +| | | | } | | | ++---------+--------------------------------------------------------+-------+------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/veMODE-Transactions/hedgey-airdrop-claim.json b/MaxiOps/veMODE-Transactions/hedgey-airdrop-claim.json new file mode 100644 index 000000000..b01a7fd44 --- /dev/null +++ b/MaxiOps/veMODE-Transactions/hedgey-airdrop-claim.json @@ -0,0 +1,22 @@ +{ + "version": "1.0", + "chainId": "10", + "createdAt": 1733803127131, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.17.1", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xf84ec1701d070af577e96c8d2aabc4ac897eb721b956428090ee6a04cf872b4a" + }, + "transactions": [ + { + "to": "0x8A2725a6f04816A5274dDD9FEaDd3bd0C253C1A6", + "value": "0", + "data": "0x891f4e420aa5f701895e411896c379d64528ef70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000076c3d59f6e02869000000000000000000000000000000000000000000000000000000000000000000d02d19a565a50536c9a5aa9429b10e7361a57da1e3b1fccdd0a8e786b383b45ec90c3946034d60aae5bcc93bc5e1b071180e9425f1ee7f86fe4bee39a5487479964e3d10181efb3449d14f41f3f9dfab5b9d3524ce0a447eff9ea39229a0fd9ba1208616ae6a27555433c4c8b3ec49f4c6dee3f07c31cba3786961b779868d8d0c9022835ec16054b597077c0c8794ca398b2b7a0f2cf74283240ce34454170f49ad5a9de82105246e0b8d9f4714efa99c38da71d055cdf4f4c6254d282c8b22c66ac55aa8073afb896356c0187a623caab0607af90a074e0be95580e1809732f61a924dfc25d0df02fff89e9ad2088986a211edd7405c79f102972ecdfe577216091c90a4d62e7ca548602f2c7bf9ad4886b0aeabf03767af961ab8a277d1b306060da76d84e89ad67b404817179a2d3b9a4b712d5c1ae91f692dd25f933a29b9e4c08908e889c968049274a8e007fcaadd816401034fe3e923f5258b8300c866fe56bce6ef42e7f91b381284892607d80c61c3ee999c612fa34c79dfad6d3c56b42e3778235a6f3f3d6adf88294dd57f7943a664ad637016622a69a9996da4f", + "contractMethod": null, + "contractInputsValues": null + } + ] +} diff --git a/MaxiOps/veMODE-Transactions/hedgey-airdrop-claim.report.txt b/MaxiOps/veMODE-Transactions/hedgey-airdrop-claim.report.txt new file mode 100644 index 000000000..0870a400a --- /dev/null +++ b/MaxiOps/veMODE-Transactions/hedgey-airdrop-claim.report.txt @@ -0,0 +1,13 @@ +FILENAME: `MaxiOps/veMODE-Transactions/hedgey-airdrop-claim.json` +MULTISIG: `multisigs/maxi_omni (optimism:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `7059b4ac6b85c4464da3f965eaa7e71ecd78b236` +CHAIN(S): `optimism` +TENDERLY: [`🟩 SUCCESS`](https://www.tdly.co/shared/simulation/e224ad03-5e6b-4da8-8733-85ce92b103ce) + +``` ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +| !!N/A!! | 0x8A2725a6f04816A5274dDD9FEaDd3bd0C253C1A6 (Not Found) | 0 | "0x891f4e420aa5f701895e411896c379d64528ef70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000076c3d59f6e02869000000000000000000000000000000000000000000000000000000000000000000d02d19a565a50536c9a5aa9429b10e7361a57da1e3b1fccdd0a8e786b383b45ec90c3946034d60aae5bcc93bc5e1b071180e9425f1ee7f86fe4bee39a5487479964e3d10181efb3449d14f41f3f9dfab5b9d3524ce0a447eff9ea39229a0fd9ba1208616ae6a27555433c4c8b3ec49f4c6dee3f07c31cba3786961b779868d8d0c9022835ec16054b597077c0c8794ca398b2b7a0f2cf74283240ce34454170f49ad5a9de82105246e0b8d9f4714efa99c38da71d055cdf4f4c6254d282c8b22c66ac55aa8073afb896356c0187a623caab0607af90a074e0be95580e1809732f61a924dfc25d0df02fff89e9ad2088986a211edd7405c79f102972ecdfe577216091c90a4d62e7ca548602f2c7bf9ad4886b0aeabf03767af961ab8a277d1b306060da76d84e89ad67b404817179a2d3b9a4b712d5c1ae91f692dd25f933a29b9e4c08908e889c968049274a8e007fcaadd816401034fe3e923f5258b8300c866fe56bce6ef42e7f91b381284892607d80c61c3ee999c612fa34c79dfad6d3c56b42e3778235a6f3f3d6adf88294dd57f7943a664ad637016622a69a9996da4f" | N/A | N/A | ++---------+--------------------------------------------------------+-------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+----------+ +``` diff --git a/MaxiOps/vlaura_voting/2024-04-26-vote-report.txt b/MaxiOps/vlaura_voting/2024-04-26-vote-report.txt new file mode 100644 index 000000000..752d1b80b --- /dev/null +++ b/MaxiOps/vlaura_voting/2024-04-26-vote-report.txt @@ -0,0 +1,85 @@ +msg hash: 0xa3be5916eedf6ef34ef47cfc92f66898a65a76fb86353ab7ee55a9e4490d6ca0 + +Voting for: { + "ComposableStable USDC-DAI-USDT/sDAI": 0.15, + "a-ComposableStable sFRAX/4POOL-BPT": 0.15, + "a-ComposableStable USDT/DAI/USDC/USDC.e": 0.05, + "b-ComposableStable USDC/USDbC/axlUSDC": 0.075, + "ComposableStable wstETH/WETH": 0.025, + "ComposableStable ezETH/weETH/rswETH": 0.0463, + "a-ComposableStable rETH/cbETH/wstETH": 0.0213, + "ComposableStable svETH/wstETH": 0.0243, + "ComposableStable rETH/weETH": 0.0444, + "ComposableStable WETH/ezETH": 0.1365, + "MetaStable WETH/rETH": 0.0272, + "a-ComposableStable USDC/sUSDe": 0.08, + "ComposableStable pufETH/wstETH": 0.12, + "a-Gyro AaveUSDCn/USDC": 0.025, + "a-Gyro AaveUSDT/USDT": 0.025 +} + +payload: +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "EIP712Domain": [ + { + "name": "name", + "type": "string" + }, + { + "name": "version", + "type": "string" + } + ], + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x959f5f4b98b6fbd521844262bc9e2ab7a46344efe823afcb8d09771a55aaab90", + "choice": "{'76': 0.15, '147': 0.15, '157': 0.05, '230': 0.075, '94': 0.025, '59': 0.0463, '143': 0.0213, '74': 0.0243, '68': 0.0444, '85': 0.1365, '111': 0.0272, '153': 0.08, '63': 0.12, '160': 0.025, '161': 0.025}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1714153655 + }, + "primaryType": "Vote" +} + diff --git a/MaxiOps/vlaura_voting/2024-05-24-payload.json b/MaxiOps/vlaura_voting/2024-05-24-payload.json new file mode 100644 index 000000000..9b0f8a1a9 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024-05-24-payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x83a6e03e93a8206ab28f231b61ffd5ec6db2260570a9d3ffa474c8110b4a5663", + "choice": "{\"77\":12.5,\"151\":10.0,\"162\":5.0,\"165\":5.0,\"166\":5.0,\"26\":3.8,\"95\":2.91,\"75\":2.1999999999999997,\"70\":5.949999999999999,\"87\":13.56,\"114\":4.08,\"159\":5.0,\"169\":5.0,\"246\":5.0,\"242\":5.0,\"206\":5.0,\"131\":5.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1716583206 + } +} diff --git a/MaxiOps/vlaura_voting/2024-05-24-vote-report.txt b/MaxiOps/vlaura_voting/2024-05-24-vote-report.txt new file mode 100644 index 000000000..608d07ac3 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024-05-24-vote-report.txt @@ -0,0 +1,21 @@ +Voting for: { + "ComposableStable USDC-DAI-USDT/sDAI": 0.125, + "a-ComposableStable sFRAX/4POOL-BPT": 0.1, + "a-ComposableStable USDT/DAI/USDC/USDC.e": 0.05, + "a-Gyro AaveUSDCn/USDC": 0.05, + "a-Gyro AaveUSDT/USDT": 0.05, + "50/50 wstETH/ACX": 0.038, + "ComposableStable wstETH/WETH": 0.0291, + "ComposableStable svETH/wstETH": 0.022, + "ComposableStable rETH/weETH": 0.0595, + "ComposableStable WETH/ezETH": 0.1356, + "MetaStable WETH/rETH": 0.0408, + "a-ComposableStable USDC/sUSDe": 0.05, + "a-Gyroe WETH/WOETH": 0.05, + "b-Gyroe AaveUSDC/sDAI": 0.05, + "b-ComposableStable weETH/WETH": 0.05, + "o-ComposableStable WETH/wrsETH": 0.05, + "a-50/50 wstETH/JitoSOL": 0.05 +} + +hash: 0x2f2a68797bc67a4fcea2bac56d7b7cbce14caceeeac3f4344b1c00adfbd8eb9a diff --git a/MaxiOps/vlaura_voting/2024-06-07-payload.json b/MaxiOps/vlaura_voting/2024-06-07-payload.json new file mode 100644 index 000000000..d6707790e --- /dev/null +++ b/MaxiOps/vlaura_voting/2024-06-07-payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0xf5f08d407b3643c6bdd0155d70729be7be8128153d74f3941872874564d3c056", + "choice": "{\"80\":12.5,\"153\":10.0,\"165\":5.0,\"169\":2.3,\"170\":2.3,\"171\":5.4,\"23\":3.52,\"98\":4.01,\"117\":5.92,\"73\":3.51,\"90\":6.81,\"87\":8.73,\"77\":7.0,\"173\":5.0,\"253\":3.0,\"249\":5.0,\"167\":10.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1717886791 + } +} diff --git a/MaxiOps/vlaura_voting/2024-06-07-vote-report.txt b/MaxiOps/vlaura_voting/2024-06-07-vote-report.txt new file mode 100644 index 000000000..4c9219bd2 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024-06-07-vote-report.txt @@ -0,0 +1,21 @@ +Voting for: { + "ComposableStable USDC-DAI-USDT/sDAI": 0.125, + "a-ComposableStable sFRAX/4POOL-BPT": 0.1, + "a-ComposableStable USDT/DAI/USDC/USDC.e": 0.05, + "a-Gyro AaveUSDCn/USDC": 0.023, + "a-Gyro AaveUSDT/USDT": 0.023, + "a-Gyroe AaveUSDCn/AaveUSDT": 0.054, + "50/50 STG/USDC": 0.0352, + "ComposableStable wstETH/WETH": 0.0401, + "MetaStable WETH/rETH": 0.0592, + "ComposableStable rETH/weETH": 0.0351, + "ComposableStable WETH/ezETH": 0.0681, + "ComposableStable weETH/ezETH/rswETH": 0.0873, + "ComposableStable sUSDe/USDC": 0.07, + "a-Gyroe WETH/WOETH": 0.05, + "b-Gyroe AaveUSDC/sDAI": 0.03, + "b-ComposableStable weETH/WETH": 0.05, + "a-ComposableStable wstETH/ETHx": 0.1 +} + +hash: 0xae72099367226580ddf8c088d33da63befcdc2022e1591b3ba5890b6e595ec8c diff --git a/MaxiOps/vlaura_voting/2024/W25/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W25/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W25/input/input.csv b/MaxiOps/vlaura_voting/2024/W25/input/input.csv new file mode 100644 index 000000000..6ae824cdb --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W25/input/input.csv @@ -0,0 +1,20 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,12.50%,Core Liquidity +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,10.00%, +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,37.50% +Mainnet,STG/USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,2.53%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,2.89%, +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,7.92%, +Avalanche,sAVAX/wAVAX,0x1e916950a659da9813ee34479bff04c732e03deb ,3.36%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,9.11%, +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,11.69%,37.50% +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,7.50%,Biz Dev +Arbitrum,woETH/wETH,0x38f1e186cc7609d236aa2161e2ca622b5bc4ef8b ,5.00%, +Arbitrum,rsETH / wETH,0x061130d4715fcd4828bfcaf6b1a9b93df5e6e4c9,5.00%, +Arbitrum,weETH / wstETH,0xe6a0fd593e6beca161d0d933b4fb4fecaf49d46a,7.50%, +,,,,25% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W25/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W25/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W25/output/payload.json b/MaxiOps/vlaura_voting/2024/W25/output/payload.json new file mode 100644 index 000000000..ddaff24e2 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W25/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x917f4e9d801a047c8f63b9ff60bf68141acd7865b4ef62b4d0fa58ab7738d7dd", + "choice": "{\"82\":12.5,\"158\":10.0,\"170\":5.0,\"174\":2.3,\"175\":2.3,\"176\":5.4,\"23\":2.53,\"101\":2.89,\"120\":7.92,\"263\":3.36,\"92\":9.11,\"89\":11.69,\"79\":7.5,\"179\":5.0,\"157\":5.0,\"178\":7.5}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1719174310 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W25/output/report.txt b/MaxiOps/vlaura_voting/2024/W25/output/report.txt new file mode 100644 index 000000000..dad764997 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W25/output/report.txt @@ -0,0 +1,2 @@ +hash: 0x60571583d2efaad1176e1f28d7a50f8c7c46c4d8794166ca1d1210ea2f2fd3fb +relayer: https://relayer.snapshot.org/api/messages/0x60571583d2efaad1176e1f28d7a50f8c7c46c4d8794166ca1d1210ea2f2fd3fb \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W25/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W25/output/vote_df.csv new file mode 100644 index 000000000..629f8d55a --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W25/output/vote_df.csv @@ -0,0 +1,17 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,12.50%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,82,12.5 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,10.00%,,a-ComposableStable sFRAX/4POOL-BPT,158,10.0 +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%,,a-ComposableStable USDT/DAI/USDC/USDC.e,170,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%,,a-Gyro AaveUSDCn/USDC,174,2.3 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%,,a-Gyro AaveUSDT/USDT,175,2.3 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,37.50%,a-Gyroe AaveUSDCn/AaveUSDT,176,5.4 +Mainnet,STG/USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,2.53%,Revenue ,50/50 STG/USDC,23,2.53 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,2.89%,,ComposableStable wstETH/WETH,101,2.89 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,7.92%,,MetaStable WETH/rETH,120,7.92 +Avalanche,sAVAX/wAVAX,0x1e916950a659da9813ee34479bff04c732e03deb ,3.36%,,av-ComposableStable sAVAX/WAVAX,263,3.36 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,9.11%,,ComposableStable WETH/ezETH,92,9.11 +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,11.69%,37.50%,ComposableStable weETH/ezETH/rswETH,89,11.69 +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,7.50%,Biz Dev,ComposableStable sUSDe/USDC,79,7.5 +Arbitrum,woETH/wETH,0x38f1e186cc7609d236aa2161e2ca622b5bc4ef8b ,5.00%,,a-Gyroe WETH/WOETH,179,5.0 +Arbitrum,rsETH / wETH,0x061130d4715fcd4828bfcaf6b1a9b93df5e6e4c9,5.00%,,a-ComposableStable rsETH/WETH,157,5.0 +Arbitrum,weETH / wstETH,0xe6a0fd593e6beca161d0d933b4fb4fecaf49d46a,7.50%,,a-Gyroe weETH/wstETH,178,7.5 diff --git a/MaxiOps/vlaura_voting/2024/W27/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W27/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W27/input/BD Vote Template - July 4 2024.csv b/MaxiOps/vlaura_voting/2024/W27/input/BD Vote Template - July 4 2024.csv new file mode 100644 index 000000000..c1c368326 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W27/input/BD Vote Template - July 4 2024.csv @@ -0,0 +1,21 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,12.50%,Core Liquidity +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,10.00%, +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,37.50% +Mainnet,STG/USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,3.93%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,4.46%,37.50% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,6.60%, +Avalanche,sAVAX/wAVAX,0x1e916950a659da9813ee34479bff04c732e03deb ,5.19%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,7.59%, +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,9.73%,37.50% +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,5.00%,Biz Dev +Arbitrum,woETH/wETH,0x38f1e186cc7609d236aa2161e2ca622b5bc4ef8b ,5.00%, +Optimism,wrsETH / wETH,0x65a5c255cfddb99caccacee6f0fa63f3ab886e79,5.00%, +Arbitrum,weETH / wstETH,0xe6a0fd593e6beca161d0d933b4fb4fecaf49d46a,5.00%, +Mainnet,trenSTETH,0x03ac2920378a51d6ca78813b1d7578dab08d3760,5.00%, +,,,,25% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W27/input/input.csv b/MaxiOps/vlaura_voting/2024/W27/input/input.csv new file mode 100644 index 000000000..c1c368326 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W27/input/input.csv @@ -0,0 +1,21 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,12.50%,Core Liquidity +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,10.00%, +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,37.50% +Mainnet,STG/USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,3.93%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,4.46%,37.50% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,6.60%, +Avalanche,sAVAX/wAVAX,0x1e916950a659da9813ee34479bff04c732e03deb ,5.19%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,7.59%, +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,9.73%,37.50% +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,5.00%,Biz Dev +Arbitrum,woETH/wETH,0x38f1e186cc7609d236aa2161e2ca622b5bc4ef8b ,5.00%, +Optimism,wrsETH / wETH,0x65a5c255cfddb99caccacee6f0fa63f3ab886e79,5.00%, +Arbitrum,weETH / wstETH,0xe6a0fd593e6beca161d0d933b4fb4fecaf49d46a,5.00%, +Mainnet,trenSTETH,0x03ac2920378a51d6ca78813b1d7578dab08d3760,5.00%, +,,,,25% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W27/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W27/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W27/output/payload.json b/MaxiOps/vlaura_voting/2024/W27/output/payload.json new file mode 100644 index 000000000..19e28ea48 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W27/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0xb2185096fc70b23df3253e46993c07e7e7ed1a7fb617ad574a15a0e6d5ded1ab", + "choice": "{\"86\":12.5,\"164\":10.0,\"176\":5.0,\"182\":2.3,\"183\":2.3,\"184\":5.4,\"23\":3.93,\"105\":4.46,\"124\":6.6,\"282\":5.19,\"96\":7.59,\"93\":9.73,\"82\":5.0,\"189\":5.0,\"231\":5.0,\"188\":5.0,\"60\":5.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1720393231 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W27/output/report.txt b/MaxiOps/vlaura_voting/2024/W27/output/report.txt new file mode 100644 index 000000000..2674ee081 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W27/output/report.txt @@ -0,0 +1,2 @@ +hash: 0x9ca0691286b53d73d0fdcaf6e6c9b58c8f30b9bf8615af79ef0cfc5771af0f1e +relayer: https://relayer.snapshot.org/api/messages/0x9ca0691286b53d73d0fdcaf6e6c9b58c8f30b9bf8615af79ef0cfc5771af0f1e \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W27/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W27/output/vote_df.csv new file mode 100644 index 000000000..f03f7de85 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W27/output/vote_df.csv @@ -0,0 +1,18 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,12.50%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,86,12.5 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,10.00%,,a-ComposableStable sFRAX/4POOL-BPT,164,10.0 +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%,,a-ComposableStable USDT/DAI/USDC/USDC.e,176,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%,,a-Gyro AaveUSDCn/USDC,182,2.3 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%,,a-Gyro AaveUSDT/USDT,183,2.3 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,37.50%,a-Gyroe AaveUSDCn/AaveUSDT,184,5.4 +Mainnet,STG/USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,3.93%,Revenue ,50/50 STG/USDC,23,3.93 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,4.46%,37.50%,ComposableStable wstETH/WETH,105,4.46 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,6.60%,,MetaStable WETH/rETH,124,6.6 +Avalanche,sAVAX/wAVAX,0x1e916950a659da9813ee34479bff04c732e03deb ,5.19%,,av-ComposableStable sAVAX/WAVAX,282,5.19 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,7.59%,,ComposableStable WETH/ezETH,96,7.59 +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,9.73%,37.50%,ComposableStable weETH/ezETH/rswETH,93,9.73 +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,5.00%,Biz Dev,ComposableStable sUSDe/USDC,82,5.0 +Arbitrum,woETH/wETH,0x38f1e186cc7609d236aa2161e2ca622b5bc4ef8b ,5.00%,,a-Gyroe WETH/WOETH,189,5.0 +Optimism,wrsETH / wETH,0x65a5c255cfddb99caccacee6f0fa63f3ab886e79,5.00%,,o-ComposableStable WETH/wrsETH,231,5.0 +Arbitrum,weETH / wstETH,0xe6a0fd593e6beca161d0d933b4fb4fecaf49d46a,5.00%,,a-Gyroe weETH/wstETH,188,5.0 +Mainnet,trenSTETH,0x03ac2920378a51d6ca78813b1d7578dab08d3760,5.00%,,ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT,60,5.0 diff --git a/MaxiOps/vlaura_voting/2024/W29/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W29/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W29/input/input.csv b/MaxiOps/vlaura_voting/2024/W29/input/input.csv new file mode 100644 index 000000000..0cfc6dcb5 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W29/input/input.csv @@ -0,0 +1,22 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.50%, +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,42.50% +Mainnet,wstETH-ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,4.94%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,5.03%,32.50% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,4.95%, +Avalanche,sUSDE/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,4.09%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,11.22%, +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,2.27%,32.50% +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,2.50%,Biz Dev +Arbitrum,woETH/wETH,0x38f1e186cc7609d236aa2161e2ca622b5bc4ef8b ,4.00%, +Optimism,wrsETH / wETH,0x65a5c255cfddb99caccacee6f0fa63f3ab886e79,5.00%, +Arbitrum,weETH / wstETH,0xe6a0fd593e6beca161d0d933b4fb4fecaf49d46a,4.00%, +Mainnet,trenSTETH,0x03ac2920378a51d6ca78813b1d7578dab08d3760,6.00%, +Arbitrum,gUSDC/USDC,0x5a482e8478d63219bc33c7f1d7cdb599039abad7 ,3.50%,25% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W29/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W29/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W29/output/payload.json b/MaxiOps/vlaura_voting/2024/W29/output/payload.json new file mode 100644 index 000000000..975ffd760 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W29/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x78aaf514dd57a595fffea9c4b42b3db87b6dc112027bf4447c196d4bbe72a2d0", + "choice": "{\"92\":10.0,\"95\":10.0,\"172\":7.5,\"185\":5.0,\"191\":2.3,\"192\":2.3,\"193\":5.4,\"30\":4.94,\"112\":5.03,\"131\":4.95,\"88\":2.5,\"102\":11.22,\"99\":2.27,\"201\":4.0,\"243\":5.0,\"200\":4.0,\"62\":6.0,\"181\":3.5}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1721427396 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W29/output/report.txt b/MaxiOps/vlaura_voting/2024/W29/output/report.txt new file mode 100644 index 000000000..d68db466a --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W29/output/report.txt @@ -0,0 +1,2 @@ +hash: 0x1838b93d3523b1008e033ecf46a0fb6529fe94676e044ad8d857850b941456aa +relayer: https://relayer.snapshot.org/api/messages/0x1838b93d3523b1008e033ecf46a0fb6529fe94676e044ad8d857850b941456aa \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W29/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W29/output/vote_df.csv new file mode 100644 index 000000000..1a8b71aef --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W29/output/vote_df.csv @@ -0,0 +1,20 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,92,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%,,ComposableStable USDT/USDC/GHO,95,10.0 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.50%,,a-ComposableStable sFRAX/4POOL-BPT,172,7.5 +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%,,a-ComposableStable USDT/DAI/USDC/USDC.e,185,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%,,a-Gyro AaveUSDCn/USDC,191,2.3 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%,,a-Gyro AaveUSDT/USDT,192,2.3 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,42.50%,a-Gyroe AaveUSDCn/AaveUSDT,193,5.4 +Mainnet,wstETH-ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,4.94%,Revenue ,50/50 wstETH/ACX,30,4.94 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,5.03%,32.50%,ComposableStable wstETH/WETH,112,5.03 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,4.95%,,MetaStable WETH/rETH,131,4.95 +Avalanche,sUSDE/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,4.09%,,ComposableStable sUSDe/USDC,88,4.09 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,11.22%,,ComposableStable WETH/ezETH,102,11.22 +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,2.27%,32.50%,ComposableStable weETH/ezETH/rswETH,99,2.27 +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,2.50%,Biz Dev,ComposableStable sUSDe/USDC,88,2.5 +Arbitrum,woETH/wETH,0x38f1e186cc7609d236aa2161e2ca622b5bc4ef8b ,4.00%,,a-Gyroe WETH/WOETH,201,4.0 +Optimism,wrsETH / wETH,0x65a5c255cfddb99caccacee6f0fa63f3ab886e79,5.00%,,o-ComposableStable WETH/wrsETH,243,5.0 +Arbitrum,weETH / wstETH,0xe6a0fd593e6beca161d0d933b4fb4fecaf49d46a,4.00%,,a-Gyroe weETH/wstETH,200,4.0 +Mainnet,trenSTETH,0x03ac2920378a51d6ca78813b1d7578dab08d3760,6.00%,,ComposableStable amphrETH/rstETH/wstETH/Re7LRT/steakLRT,62,6.0 +Arbitrum,gUSDC/USDC,0x5a482e8478d63219bc33c7f1d7cdb599039abad7 ,3.50%,25%,a-ComposableStable USDC/gUSDC,181,3.5 diff --git a/MaxiOps/vlaura_voting/2024/W31/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W31/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W31/input/BD Vote Template - August 1 2024.csv b/MaxiOps/vlaura_voting/2024/W31/input/BD Vote Template - August 1 2024.csv new file mode 100644 index 000000000..e6d711ee5 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W31/input/BD Vote Template - August 1 2024.csv @@ -0,0 +1,22 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.50%, +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,42.50% +Mainnet,wstETH-ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,3.20%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,6.47%,35.00% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,6.49%, +Mainnet,sUSDE/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,4.06%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,11.07%, +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,3.71%,35.00% +Arbitrum,gUSDC/USDC,0x5a482e8478d63219bc33c7f1d7cdb599039abad7 ,3.50%,Biz Dev +Arbitrum,woETH/wETH,0x38f1e186cc7609d236aa2161e2ca622b5bc4ef8b ,4.00%, +Optimism,wrsETH / wETH,0x65a5c255cfddb99caccacee6f0fa63f3ab886e79,5.00%, +Arbitrum,weETH / wstETH,0xe6a0fd593e6beca161d0d933b4fb4fecaf49d46a,4.00%, +Mainnet,trenSTETH,0x03ac2920378a51d6ca78813b1d7578dab08d3760,6.00%, +,,,,23% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W31/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W31/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W33/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W33/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W33/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W33/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W34/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W34/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W34/input/BD Vote Template - August 15 2024.csv b/MaxiOps/vlaura_voting/2024/W34/input/BD Vote Template - August 15 2024.csv new file mode 100644 index 000000000..5443c9c60 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W34/input/BD Vote Template - August 15 2024.csv @@ -0,0 +1,22 @@ +Chain,Label,Gauge Address,Allocation %,, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity, +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%,, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.50%,, +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%,, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%,, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%,, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,42.50%, +Mainnet,wstETH-ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,4.09%,Revenue , +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,5.44%,32.50%, +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,4.32%,, +Mainnet,sUSDE/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,5.59%,, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,8.65%,, +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,4.41%,32.50%, +,,,,Biz Dev,This is the new gains pool. Could remove? +Arbitrum,sUSDe/GYD ECLP,0x5a47e3f2E5009168Af11C4b0198605f694805779,5.00%,, +Arbitrum,rETH/wstETH ECLP,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,5.00%,, +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%,, +Arbitrum,wUSDM/aUSDC ECLP,0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E,5.00%,, +Arbitrum,sFRAX/aFRAX ECLP,0x00654F788342647A8Aa15f2eb2490e17d222aC85,5.00%,25%, +,,,,TOTAL, +,,,,100.00%, \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W34/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W34/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W34/output/payload.json b/MaxiOps/vlaura_voting/2024/W34/output/payload.json new file mode 100644 index 000000000..b00873337 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W34/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x4e5be40be9a9a66fd89751189183091299e55af7e849257cc59aca5d683c4dff", + "choice": "{\"93\":10.0,\"96\":10.0,\"173\":7.5,\"186\":5.0,\"192\":2.3,\"193\":2.3,\"194\":5.4,\"30\":4.09,\"113\":5.44,\"132\":4.32,\"89\":5.59,\"103\":8.65,\"100\":4.41,\"203\":5.0,\"207\":5.0,\"201\":5.0,\"209\":5.0,\"202\":5.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1723834498 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W34/output/report.txt b/MaxiOps/vlaura_voting/2024/W34/output/report.txt new file mode 100644 index 000000000..a23e1daf9 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W34/output/report.txt @@ -0,0 +1,2 @@ +hash: 0xef7d804c0acdf35108253d91cc45334b21ef8f0ff0979a862326f68481a3f8c9 +relayer: https://relayer.snapshot.org/api/messages/0xef7d804c0acdf35108253d91cc45334b21ef8f0ff0979a862326f68481a3f8c9 \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W34/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W34/output/vote_df.csv new file mode 100644 index 000000000..767481cb0 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W34/output/vote_df.csv @@ -0,0 +1,19 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,Unnamed: 5,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,,ComposableStable USDC-DAI-USDT/sDAI,93,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%,,,ComposableStable USDT/USDC/GHO,96,10.0 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.50%,,,a-ComposableStable sFRAX/4POOL-BPT,173,7.5 +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%,,,a-ComposableStable USDT/DAI/USDC/USDC.e,186,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%,,,a-Gyro AaveUSDCn/USDC,192,2.3 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%,,,a-Gyro AaveUSDT/USDT,193,2.3 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,42.50%,,a-Gyroe AaveUSDCn/AaveUSDT,194,5.4 +Mainnet,wstETH-ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,4.09%,Revenue ,,50/50 wstETH/ACX,30,4.09 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,5.44%,32.50%,,ComposableStable wstETH/WETH,113,5.44 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,4.32%,,,MetaStable WETH/rETH,132,4.32 +Mainnet,sUSDE/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac,5.59%,,,ComposableStable sUSDe/USDC,89,5.59 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,8.65%,,,ComposableStable WETH/ezETH,103,8.65 +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,4.41%,32.50%,,ComposableStable weETH/ezETH/rswETH,100,4.41 +Arbitrum,sUSDe/GYD ECLP,0x5a47e3f2E5009168Af11C4b0198605f694805779,5.00%,,,a-Gyroe sUSDe/GYD,203,5.0 +Arbitrum,rETH/wstETH ECLP,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,5.00%,,,a-Gyroe wstETH/rETH,207,5.0 +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%,,,a-Gyroe GYD/stataArbGHO,201,5.0 +Arbitrum,wUSDM/aUSDC ECLP,0x594dD4297Ef4A5ebeD3DA337Aa56078637aCb18E,5.00%,,,a-Gyroe wUSDM/AaveUSDCn,209,5.0 +Arbitrum,sFRAX/aFRAX ECLP,0x00654F788342647A8Aa15f2eb2490e17d222aC85,5.00%,25%,,a-Gyroe stataArbFRAX/sFRAX,202,5.0 diff --git a/MaxiOps/vlaura_voting/2024/W35/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W35/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W35/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W35/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W36/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W36/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W36/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W36/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W37/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W37/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W37/input/BD Vote Template - August 29 2024.csv b/MaxiOps/vlaura_voting/2024/W37/input/BD Vote Template - August 29 2024.csv new file mode 100644 index 000000000..7c8429a2c --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W37/input/BD Vote Template - August 29 2024.csv @@ -0,0 +1,20 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.50%, +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,42.50% +Mainnet,STG-USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,3.52%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,4.01%,32.50% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,5.92%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.51%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,6.81%, +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,8.73%,32.50% +,,,,Biz Dev +Ethereum,sdeUSD / deUSD,0xA00DB7d9c465e95e4AA814A9340B9A161364470a ,15.00%, +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%, +Arbitrum,sFRAX/aFRAX ECLP,0x00654F788342647A8Aa15f2eb2490e17d222aC85,5.00%,25% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W37/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W37/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W37/output/payload.json b/MaxiOps/vlaura_voting/2024/W37/output/payload.json new file mode 100644 index 000000000..995748d63 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W37/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x5c9b2b52b7e866e42c8b1ab166e6af34feef697c4ab5f35f5c468b379024187e", + "choice": "{\"93\":10.0,\"96\":10.0,\"176\":7.5,\"190\":5.0,\"197\":2.3,\"198\":2.3,\"199\":5.4,\"24\":3.52,\"114\":4.01,\"135\":5.92,\"82\":3.51,\"103\":6.81,\"100\":8.73,\"118\":15.0,\"206\":5.0,\"207\":5.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1725112353 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W37/output/report.txt b/MaxiOps/vlaura_voting/2024/W37/output/report.txt new file mode 100644 index 000000000..de533929f --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W37/output/report.txt @@ -0,0 +1,2 @@ +hash: 0xaa9fdcbec90beef2918c79c9f84a9b660132cc2de5eef7a76870b8ba1ee1ee6c +relayer: https://relayer.snapshot.org/api/messages/0xaa9fdcbec90beef2918c79c9f84a9b660132cc2de5eef7a76870b8ba1ee1ee6c \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W37/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W37/output/vote_df.csv new file mode 100644 index 000000000..09e65c9a0 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W37/output/vote_df.csv @@ -0,0 +1,17 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,93,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%,,ComposableStable USDT/USDC/GHO,96,10.0 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.50%,,a-ComposableStable sFRAX/4POOL-BPT,176,7.5 +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%,,a-ComposableStable USDT/DAI/USDC/USDC.e,190,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%,,a-Gyro AaveUSDCn/USDC,197,2.3 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%,,a-Gyro AaveUSDT/USDT,198,2.3 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,42.50%,a-Gyroe AaveUSDCn/AaveUSDT,199,5.4 +Mainnet,STG-USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,3.52%,Revenue ,50/50 STG/USDC,24,3.52 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,4.01%,32.50%,ComposableStable wstETH/WETH,114,4.01 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,5.92%,,MetaStable WETH/rETH,135,5.92 +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.51%,,ComposableStable rETH/weETH,82,3.51 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,6.81%,,ComposableStable WETH/ezETH,103,6.81 +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,8.73%,32.50%,ComposableStable weETH/ezETH/rswETH,100,8.73 +Ethereum,sdeUSD / deUSD,0xA00DB7d9c465e95e4AA814A9340B9A161364470a ,15.00%,,Gyroe deUSD/sdeUSD,118,15.0 +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%,,a-Gyroe GYD/stataArbGHO,206,5.0 +Arbitrum,sFRAX/aFRAX ECLP,0x00654F788342647A8Aa15f2eb2490e17d222aC85,5.00%,25%,a-Gyroe stataArbFRAX/sFRAX,207,5.0 diff --git a/MaxiOps/vlaura_voting/2024/W38/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W38/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W38/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W38/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W39/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W39/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W39/input/BD Vote Template - September 13 2024 input.csv b/MaxiOps/vlaura_voting/2024/W39/input/BD Vote Template - September 13 2024 input.csv new file mode 100644 index 000000000..3e9e855a5 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W39/input/BD Vote Template - September 13 2024 input.csv @@ -0,0 +1,21 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%, +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,40.00% +Mainnet,STG-USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,3.24%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,3.70%,30.00% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,5.47%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.24%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,6.29%, +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,8.06%,30.00% +,,,,Biz Dev +Ethereum,sdeUSD / deUSD,0xA00DB7d9c465e95e4AA814A9340B9A161364470a ,15.00%, +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%, +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,5.00%, +Arbitrum,USDC/sUSX,0x4a0c9905b098842827fB09BaA4522721d4e14deE,5.00%,30% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W39/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W39/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W39/output/payload.json b/MaxiOps/vlaura_voting/2024/W39/output/payload.json new file mode 100644 index 000000000..9066d1ed2 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W39/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x143d297ea7b43ee93fb157dfffad5a7af9d100cf68cbf7cd70569ee3e4ca5aac", + "choice": "{\"94\":10.0,\"97\":10.0,\"177\":5.0,\"191\":5.0,\"198\":2.3,\"199\":2.3,\"200\":5.4,\"24\":3.24,\"115\":3.7,\"136\":5.47,\"83\":3.24,\"104\":6.29,\"101\":8.06,\"119\":15.0,\"207\":5.0,\"215\":5.0,\"188\":5.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1726245486 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W39/output/report.txt b/MaxiOps/vlaura_voting/2024/W39/output/report.txt new file mode 100644 index 000000000..bc92bca83 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W39/output/report.txt @@ -0,0 +1,2 @@ +hash: 0x57ca2937895bb200987236cfdfc3ae7d7c1dcc31266d79d1da6c8105521972e1 +relayer: https://relayer.snapshot.org/api/messages/0x57ca2937895bb200987236cfdfc3ae7d7c1dcc31266d79d1da6c8105521972e1 \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W39/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W39/output/vote_df.csv new file mode 100644 index 000000000..7dc4e8779 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W39/output/vote_df.csv @@ -0,0 +1,18 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,94,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,10.00%,,ComposableStable USDT/USDC/GHO,97,10.0 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%,,a-ComposableStable sFRAX/4POOL-BPT,177,5.0 +Arbitrum,4Pool,0xbb1a15dfd849bc5a6f33c002999c8953afa626ad,5.00%,,a-ComposableStable USDT/DAI/USDC/USDC.e,191,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.30%,,a-Gyro AaveUSDCn/USDC,198,2.3 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.30%,,a-Gyro AaveUSDT/USDT,199,2.3 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.40%,40.00%,a-Gyroe AaveUSDCn/AaveUSDT,200,5.4 +Mainnet,STG-USDC,0x15c84754c7445d0df6c613f1490ca07654347c1b,3.24%,Revenue ,50/50 STG/USDC,24,3.24 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,3.70%,30.00%,ComposableStable wstETH/WETH,115,3.7 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,5.47%,,MetaStable WETH/rETH,136,5.47 +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.24%,,ComposableStable rETH/weETH,83,3.24 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,6.29%,,ComposableStable WETH/ezETH,104,6.29 +Mainnet,weETH/ezETH/swETH,0x253ed65fff980aee7e94a0dc57be304426048b35 ,8.06%,30.00%,ComposableStable weETH/ezETH/rswETH,101,8.06 +Ethereum,sdeUSD / deUSD,0xA00DB7d9c465e95e4AA814A9340B9A161364470a ,15.00%,,Gyroe deUSD/sdeUSD,119,15.0 +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%,,a-Gyroe GYD/stataArbGHO,207,5.0 +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,5.00%,,a-Gyroe wstETH/rETH,215,5.0 +Arbitrum,USDC/sUSX,0x4a0c9905b098842827fB09BaA4522721d4e14deE,5.00%,30%,a-ComposableStable USDC/sUSX,188,5.0 diff --git a/MaxiOps/vlaura_voting/2024/W40/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W40/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W40/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W40/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W41/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W41/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W41/input/BD Vote Template - September 27 2024 (1).csv b/MaxiOps/vlaura_voting/2024/W41/input/BD Vote Template - September 27 2024 (1).csv new file mode 100644 index 000000000..346bfcf65 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W41/input/BD Vote Template - September 27 2024 (1).csv @@ -0,0 +1,23 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.00%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,39.00% +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,3.16%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.67%,27.50% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,5.53%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,2.78%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,5.80%, +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac ,2.56%,27.50% +,,,,Biz Dev +Mainnet,balETH/wstETH,0xfc4bebf1f33594be59fdfb7e1c4a45759ecaec5a,10.00%, +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%, +Arbitrum,USDe/aGHO ECLP,0xD558C611B69a223767788B638717E868D8947Fd0,5.00%, +Arbitrum,GYD/wstETH,0x9E965252d1b294aF358a232933A65Bd30645c34C,3.00%, +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,4.00%, +Mainnet,deUSD/sdeUSD,0xa00db7d9c465e95e4aa814a9340b9a161364470a,3.50%, +Arbitrum,USDC/sUSX,0x4a0c9905b098842827fB09BaA4522721d4e14deE,3.00%,34% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W41/input/BD Vote Template - September 27 2024.csv b/MaxiOps/vlaura_voting/2024/W41/input/BD Vote Template - September 27 2024.csv new file mode 100644 index 000000000..a62f75775 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W41/input/BD Vote Template - September 27 2024.csv @@ -0,0 +1,26 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.00%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,39.00% +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,3.16%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.67%,27.50% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,5.53%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,2.78%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,5.80%, +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac ,2.56%,27.50% +,,,,Biz Dev +Mainnet,balETH/wstETH,0xfc4bebf1f33594be59fdfb7e1c4a45759ecaec5a,10.00%, +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%, +Arbitrum,USDe/aGHO ECLP,0xD558C611B69a223767788B638717E868D8947Fd0,5.00%, +Arbitrum,GYD/wstETH,0x9E965252d1b294aF358a232933A65Bd30645c34C,3.00%, +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,4.00%, +Mainnet,deUSD/sdeUSD,0xa00db7d9c465e95e4aa814a9340b9a161364470a,3.50%, +Arbitrum,USDC/sUSX,0x4a0c9905b098842827fB09BaA4522721d4e14deE,3.00%,34% +,,,,TOTAL +,,,,100.00% +,,,, +,,"If sUSX is in fine as is, 27.5% for Revenue Section",, +,,"If sUSX dies, put rest of portion on Aave BD tings",, \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W41/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W41/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W41/output/payload.json b/MaxiOps/vlaura_voting/2024/W41/output/payload.json new file mode 100644 index 000000000..e319ded83 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W41/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x7f604b07b26848a99f07c9a4ddfd1c0599176cb31615542ce87800010195b7fc", + "choice": "{\"95\":10.0,\"98\":12.5,\"179\":7.0,\"200\":2.0,\"201\":2.0,\"202\":5.5,\"30\":3.16,\"116\":7.67,\"138\":5.53,\"84\":2.78,\"105\":5.8,\"91\":2.56,\"65\":10.0,\"209\":5.0,\"213\":5.0,\"216\":3.0,\"218\":4.0,\"120\":3.5,\"190\":3.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1727476421 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W41/output/report.txt b/MaxiOps/vlaura_voting/2024/W41/output/report.txt new file mode 100644 index 000000000..b27e1ec3f --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W41/output/report.txt @@ -0,0 +1,2 @@ +hash: 0xae86b687a56a44480739d914c013512f0cbdb78645942692289aee1541a21769 +relayer: https://relayer.snapshot.org/api/messages/0xae86b687a56a44480739d914c013512f0cbdb78645942692289aee1541a21769 \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W41/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W41/output/vote_df.csv new file mode 100644 index 000000000..c7bb0513c --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W41/output/vote_df.csv @@ -0,0 +1,20 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,95,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%,,ComposableStable USDT/USDC/GHO,98,12.5 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.00%,,a-ComposableStable sFRAX/4POOL-BPT,179,7.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%,,a-Gyro AaveUSDCn/USDC,200,2.0 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.00%,,a-Gyro AaveUSDT/USDT,201,2.0 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,39.00%,a-Gyroe AaveUSDCn/AaveUSDT,202,5.5 +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,3.16%,Revenue ,50/50 wstETH/ACX,30,3.16 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.67%,27.50%,ComposableStable wstETH/WETH,116,7.67 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,5.53%,,MetaStable WETH/rETH,138,5.53 +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,2.78%,,ComposableStable rETH/weETH,84,2.78 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,5.80%,,ComposableStable WETH/ezETH,105,5.8 +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac ,2.56%,27.50%,ComposableStable sUSDe/USDC,91,2.56 +Mainnet,balETH/wstETH,0xfc4bebf1f33594be59fdfb7e1c4a45759ecaec5a,10.00%,,ComposableStable balETH/wstETH,65,10.0 +Arbitrum,aGHO/GYD ECLP,0xB599e35f760c47888aD3fF684FF4cd01ff4Dc45B,5.00%,,a-Gyroe GYD/stataArbGHO,209,5.0 +Arbitrum,USDe/aGHO ECLP,0xD558C611B69a223767788B638717E868D8947Fd0,5.00%,,a-Gyroe USDe/stataArbGHO,213,5.0 +Arbitrum,GYD/wstETH,0x9E965252d1b294aF358a232933A65Bd30645c34C,3.00%,,a-Gyroe wstETH/GYD (0x9e),216,3.0 +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,4.00%,,a-Gyroe wstETH/rETH,218,4.0 +Mainnet,deUSD/sdeUSD,0xa00db7d9c465e95e4aa814a9340b9a161364470a,3.50%,,Gyroe deUSD/sdeUSD,120,3.5 +Arbitrum,USDC/sUSX,0x4a0c9905b098842827fB09BaA4522721d4e14deE,3.00%,34%,a-ComposableStable USDC/sUSX,190,3.0 diff --git a/MaxiOps/vlaura_voting/2024/W42/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W42/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W42/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W42/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W43/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W43/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W43/input/BD Vote Template - October 10 2024.csv b/MaxiOps/vlaura_voting/2024/W43/input/BD Vote Template - October 10 2024.csv new file mode 100644 index 000000000..ab68562fd --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W43/input/BD Vote Template - October 10 2024.csv @@ -0,0 +1,23 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.00%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,39.00% +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,6.20%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.18%,35.00% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,7.64%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.06%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,5.12%, +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac ,5.80%,35% +,,,,Biz Dev +Mainnet,balETH/wstETH,0xfc4bebf1f33594be59fdfb7e1c4a45759ecaec5a,10.00%, +Arbitrum,USDe/aGHO ECLP,0xD558C611B69a223767788B638717E868D8947Fd0,7.00%, +Arbitrum,GYD/wstETH,0x9E965252d1b294aF358a232933A65Bd30645c34C,4.00%, +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,5.00%, +,,,, +,,,, +,,,,26% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W43/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W43/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W43/output/payload.json b/MaxiOps/vlaura_voting/2024/W43/output/payload.json new file mode 100644 index 000000000..fec83182c --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W43/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x3220c1c5c2a02676e9df058cdd576a474ace75f183616d53bd0f5106aeb20cd5", + "choice": "{\"93\":10.0,\"96\":12.5,\"176\":7.0,\"197\":2.0,\"198\":2.0,\"210\":5.5,\"30\":6.2,\"115\":7.18,\"137\":7.64,\"84\":3.06,\"103\":5.12,\"89\":5.8,\"65\":10.0,\"205\":7.0,\"214\":4.0,\"216\":5.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1728660254 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W43/output/report.txt b/MaxiOps/vlaura_voting/2024/W43/output/report.txt new file mode 100644 index 000000000..aa2f4caf3 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W43/output/report.txt @@ -0,0 +1,2 @@ +hash: 0x11676c674b8e77978cf7190eb3695e2678c0c6f9d284de3f103036b630938ce2 +relayer: https://relayer.snapshot.org/api/messages/0x11676c674b8e77978cf7190eb3695e2678c0c6f9d284de3f103036b630938ce2 \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W43/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W43/output/vote_df.csv new file mode 100644 index 000000000..e032acfb8 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W43/output/vote_df.csv @@ -0,0 +1,17 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,93,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%,,ComposableStable USDT/USDC/GHO,96,12.5 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,7.00%,,a-ComposableStable sFRAX/4POOL-BPT,176,7.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%,,a-Gyro waUSDCn/USDC,197,2.0 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.00%,,a-Gyro waUSDT/USDT,198,2.0 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,39.00%,a-Gyroe waUSDCn/waUSDT,210,5.5 +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,6.20%,Revenue ,50/50 wstETH/ACX,30,6.2 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.18%,35.00%,ComposableStable wstETH/WETH,115,7.18 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,7.64%,,MetaStable WETH/rETH,137,7.64 +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.06%,,ComposableStable rETH/weETH,84,3.06 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,5.12%,,ComposableStable WETH/ezETH,103,5.12 +Mainnet,sUSDe/USDC,0x84f7f5cd2218f31b750e7009bb6fd34e0b945dac ,5.80%,35%,ComposableStable sUSDe/USDC,89,5.8 +Mainnet,balETH/wstETH,0xfc4bebf1f33594be59fdfb7e1c4a45759ecaec5a,10.00%,,ComposableStable balETH/wstETH,65,10.0 +Arbitrum,USDe/aGHO ECLP,0xD558C611B69a223767788B638717E868D8947Fd0,7.00%,,a-Gyroe USDe/waGHO,205,7.0 +Arbitrum,GYD/wstETH,0x9E965252d1b294aF358a232933A65Bd30645c34C,4.00%,,a-Gyroe wstETH/GYD (0x9e),214,4.0 +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,5.00%,,a-Gyroe wstETH/rETH,216,5.0 diff --git a/MaxiOps/vlaura_voting/2024/W44/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W44/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W44/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W44/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W45/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W45/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W45/input/BD Vote Template - October 24 2024.csv b/MaxiOps/vlaura_voting/2024/W45/input/BD Vote Template - October 24 2024.csv new file mode 100644 index 000000000..f7d5f1b63 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W45/input/BD Vote Template - October 24 2024.csv @@ -0,0 +1,24 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%, +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.00%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,37.00% +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,3.70%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.33%,32.00% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,4.27%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,2.61%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,10.62%, +Mainnet,weETH/ezETH/rswETH,0x253ED65fff980AEE7E94a0dC57BE304426048b35 ,3.47%,32% +,,,,Biz Dev +Mainnet,balETH/wstETH,0xfc4bebf1f33594be59fdfb7e1c4a45759ecaec5a,10.00%, +Arbitrum,USDe/aGHO ECLP,0xD558C611B69a223767788B638717E868D8947Fd0,5.00%, +Arbitrum,GYD/wstETH,0x9E965252d1b294aF358a232933A65Bd30645c34C,3.00%, +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,3.00%, +Arbitrum,GHO / USDL,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,4.00%, +Mainnet,hETH / wstETH,0x60adB6A1D73b16F47EA3CCBa94f79cc95D2ba73B ,4.00%, +Optimism,ECLP-waUSDC-waUSDT,0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301,2.00%, +,,,,31% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W45/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W45/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W45/output/payload.json b/MaxiOps/vlaura_voting/2024/W45/output/payload.json new file mode 100644 index 000000000..ab948ee0a --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W45/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x92210213b7685eca71b046724cfee9afd0375b938412ad30e479610caa0a2d4c", + "choice": "{\"95\":10.0,\"98\":12.5,\"179\":5.0,\"201\":2.0,\"202\":2.0,\"214\":5.5,\"30\":3.7,\"117\":7.33,\"140\":4.27,\"86\":2.61,\"105\":10.62,\"102\":3.47,\"65\":10.0,\"209\":5.0,\"218\":3.0,\"220\":3.0,\"200\":4.0,\"74\":4.0,\"275\":2.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1729884982 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W45/output/report.txt b/MaxiOps/vlaura_voting/2024/W45/output/report.txt new file mode 100644 index 000000000..3e4ed4026 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W45/output/report.txt @@ -0,0 +1,2 @@ +hash: 0xe85be3db94f89ed056ab32953db6b68d179fb92f8119433f5832f4d02f4d868f +relayer: https://relayer.snapshot.org/api/messages/0xe85be3db94f89ed056ab32953db6b68d179fb92f8119433f5832f4d02f4d868f \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W45/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W45/output/vote_df.csv new file mode 100644 index 000000000..c78a1c342 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W45/output/vote_df.csv @@ -0,0 +1,20 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,95,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%,,ComposableStable USDT/USDC/GHO,98,12.5 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%,,a-ComposableStable sFRAX/4POOL-BPT,179,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%,,a-Gyro waUSDCn/USDC,201,2.0 +Arbitrum,aUSDT/USDT,0xf937bf168b33d8d10d555e9a039ec1b8e4c543d1,2.00%,,a-Gyro waUSDT/USDT,202,2.0 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,37.00%,a-Gyroe waUSDCn/waUSDT,214,5.5 +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,3.70%,Revenue ,50/50 wstETH/ACX,30,3.7 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.33%,32.00%,ComposableStable wstETH/WETH,117,7.33 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,4.27%,,MetaStable WETH/rETH,140,4.27 +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,2.61%,,ComposableStable rETH/weETH,86,2.61 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,10.62%,,ComposableStable WETH/ezETH,105,10.62 +Mainnet,weETH/ezETH/rswETH,0x253ED65fff980AEE7E94a0dC57BE304426048b35 ,3.47%,32%,ComposableStable weETH/ezETH/rswETH,102,3.47 +Mainnet,balETH/wstETH,0xfc4bebf1f33594be59fdfb7e1c4a45759ecaec5a,10.00%,,ComposableStable balETH/wstETH,65,10.0 +Arbitrum,USDe/aGHO ECLP,0xD558C611B69a223767788B638717E868D8947Fd0,5.00%,,a-Gyroe USDe/waGHO,209,5.0 +Arbitrum,GYD/wstETH,0x9E965252d1b294aF358a232933A65Bd30645c34C,3.00%,,a-Gyroe wstETH/GYD (0x9e),218,3.0 +Arbitrum,ECLP-wstETH/rETH,0xcb785286C9bEBeFF7654a8238Eb563666fD75338,3.00%,,a-Gyroe wstETH/rETH,220,3.0 +Arbitrum,GHO / USDL,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,4.00%,,a-ComposableStable wUSDL/GHO,200,4.0 +Mainnet,hETH / wstETH,0x60adB6A1D73b16F47EA3CCBa94f79cc95D2ba73B ,4.00%,,ComposableStable hETH/wstETH,74,4.0 +Optimism,ECLP-waUSDC-waUSDT,0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301,2.00%,,o-Gyroe waUSDT/waUSDCn,275,2.0 diff --git a/MaxiOps/vlaura_voting/2024/W46/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W46/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W46/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W46/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W47/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W47/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W47/input/BD Vote Template - November 8 2024.csv b/MaxiOps/vlaura_voting/2024/W47/input/BD Vote Template - November 8 2024.csv new file mode 100644 index 000000000..167bd8c4b --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W47/input/BD Vote Template - November 8 2024.csv @@ -0,0 +1,23 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%, +Optimsim,ECLP-waUSDC-waUSDT,0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301,2.00%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,37.00% +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,4.24%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,8.20%,35.00% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,7.87%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,4.14%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,8.21%, +Mainnet,wstETH-rETH-sfrxETH-BPT,0x0021e01b9fab840567a8291b864ff783894eabc6 ,2.34%,35% +,,,,Biz Dev +Mainnet,tETH/wstETH,0xf697535848B535900c76f70F1e36EC3985D27862 ,4.00%, +Mainnet,cbETH/wstETH,0x655A2B240151b4fAb06dfb2B6329eF72647F89dd ,5.00%, +Mainnet,cbBTC/wBTC,0xF3E9A97e5fEddf961A3d431627561bbFc7cFb6cf ,4.00%, +Arbitrum,GHO / USDL,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,4.00%, +Base,cbETH/wstETH,0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC,5.00%, +Base,wETH/USDC,0xE01347229d681C69f459176A042268Cf981DFaa4 ,6.00%, +,,,,28% +,,,,TOTAL +,,,,100.00% \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W47/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W47/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W47/output/payload.json b/MaxiOps/vlaura_voting/2024/W47/output/payload.json new file mode 100644 index 000000000..eee5e8f0d --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W47/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x9dcb635e6a6f9469ea739b9c10008cfcfc60b39c04c0640c4bba223c7000d3fc", + "choice": "{\"95\":10.0,\"98\":12.5,\"184\":5.0,\"206\":2.0,\"280\":2.0,\"219\":5.5,\"30\":4.24,\"120\":8.2,\"145\":7.87,\"86\":4.14,\"106\":8.21,\"84\":2.34,\"117\":4.0,\"143\":5.0,\"139\":4.0,\"205\":4.0,\"327\":5.0,\"330\":6.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1731209958 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W47/output/report.txt b/MaxiOps/vlaura_voting/2024/W47/output/report.txt new file mode 100644 index 000000000..3a36dbb09 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W47/output/report.txt @@ -0,0 +1,2 @@ +hash: 0x833ec71e5575cf58c3e740bf14ce71996ef335171b8daf1b645d5eb6ab87ba25 +relayer: https://relayer.snapshot.org/api/messages/0x833ec71e5575cf58c3e740bf14ce71996ef335171b8daf1b645d5eb6ab87ba25 \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W47/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W47/output/vote_df.csv new file mode 100644 index 000000000..6bc0fb849 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W47/output/vote_df.csv @@ -0,0 +1,19 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,95,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.50%,,ComposableStable USDT/USDC/GHO,98,12.5 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%,,a-ComposableStable sFRAX/4POOL-BPT,184,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%,,a-Gyro waUSDCn/USDC,206,2.0 +Optimsim,ECLP-waUSDC-waUSDT,0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301,2.00%,,o-Gyroe waUSDT/waUSDCn,280,2.0 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,37.00%,a-Gyroe waUSDCn/waUSDT,219,5.5 +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,4.24%,Revenue ,50/50 wstETH/ACX,30,4.24 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,8.20%,35.00%,ComposableStable wstETH/WETH,120,8.2 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,7.87%,,MetaStable WETH/rETH,145,7.87 +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,4.14%,,ComposableStable rETH/weETH,86,4.14 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,8.21%,,ComposableStable WETH/ezETH,106,8.21 +Mainnet,wstETH-rETH-sfrxETH-BPT,0x0021e01b9fab840567a8291b864ff783894eabc6 ,2.34%,35%,ComposableStable rETH/sfrxETH/wstETH,84,2.34 +Mainnet,tETH/wstETH,0xf697535848B535900c76f70F1e36EC3985D27862 ,4.00%,,ComposableStable wstETH/tETH,117,4.0 +Mainnet,cbETH/wstETH,0x655A2B240151b4fAb06dfb2B6329eF72647F89dd ,5.00%,,Gyroe wstETH/cbETH (0x65),143,5.0 +Mainnet,cbBTC/wBTC,0xF3E9A97e5fEddf961A3d431627561bbFc7cFb6cf ,4.00%,,Gyroe WBTC/cbBTC,139,4.0 +Arbitrum,GHO / USDL,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,4.00%,,a-ComposableStable wUSDL/GHO,205,4.0 +Base,cbETH/wstETH,0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC,5.00%,,b-Gyroe cbETH/wstETH,327,5.0 +Base,wETH/USDC,0xE01347229d681C69f459176A042268Cf981DFaa4 ,6.00%,,b-Gyroe WETH/USDC (0xe0),330,6.0 diff --git a/MaxiOps/vlaura_voting/2024/W48/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W48/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W48/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W48/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W49/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W49/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W49/input/BD Vote Template - November 21 2024 (1) - BD Vote Template - November 21 2024 (1).csv b/MaxiOps/vlaura_voting/2024/W49/input/BD Vote Template - November 21 2024 (1) - BD Vote Template - November 21 2024 (1).csv new file mode 100644 index 000000000..b3b00eaf4 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W49/input/BD Vote Template - November 21 2024 (1) - BD Vote Template - November 21 2024 (1).csv @@ -0,0 +1,42 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa,12.50%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%, +Optimsim,ECLP-waUSDC-waUSDT,0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301,2.00%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,37.00% +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,5.95%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,6.93%,35.00% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7,4.54%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.85%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,8.04%, +Mainnet,STG/USDC,0x15C84754c7445D0DF6c613f1490cA07654347c1B,5.69%,35% +,,,,Biz Dev +Mainnet,tETH/wstETH,0xf697535848B535900c76f70F1e36EC3985D27862,5.00%, +Mainnet,cbETH/wstETH,0x655A2B240151b4fAb06dfb2B6329eF72647F89dd,5.00%, +Mainnet,sdeUSD/deUSD,0xA00DB7d9c465e95e4AA814A9340B9A161364470a,5.00%, +Arbitrum,GHO / USDL,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,4.00%, +Base,cbETH/wstETH,0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC,5.00%, +Base,wETH/USDC,0xE01347229d681C69f459176A042268Cf981DFaa4,4.00%, +,,,,28% +,,,,TOTAL +,,,,100.00% +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +Total USDC,"$100,000",,, +APY needed,6%,,, +Incentives per 1m,60000,,, +Incentives per wk,"$1,154",,, +Incentives per 6 wks,"$4,615",,, +Total TVL to support,22,,, \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W49/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W49/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W49/output/payload.json b/MaxiOps/vlaura_voting/2024/W49/output/payload.json new file mode 100644 index 000000000..1433196d0 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W49/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0x2cc46de8f63d957646a1e3132a95056e9274f9277f016b02eb588888bc942a9a", + "choice": "{\"95\":10.0,\"98\":12.5,\"183\":5.0,\"205\":2.0,\"275\":2.0,\"215\":5.5,\"30\":5.95,\"120\":6.93,\"144\":4.54,\"86\":3.85,\"106\":8.04,\"24\":5.69,\"117\":5.0,\"142\":5.0,\"124\":5.0,\"204\":4.0,\"320\":5.0,\"323\":4.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1732479974 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W49/output/report.txt b/MaxiOps/vlaura_voting/2024/W49/output/report.txt new file mode 100644 index 000000000..adc4996f8 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W49/output/report.txt @@ -0,0 +1,2 @@ +hash: 0xffaf631277d02bd61856b63e2e7ba2d6cffae9b5c9b008d79f475e2738c1c41f +relayer: https://relayer.snapshot.org/api/messages/0xffaf631277d02bd61856b63e2e7ba2d6cffae9b5c9b008d79f475e2738c1c41f \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W49/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W49/output/vote_df.csv new file mode 100644 index 000000000..35ba1e7d2 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W49/output/vote_df.csv @@ -0,0 +1,19 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,95,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa,12.50%,,ComposableStable USDT/USDC/GHO,98,12.5 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%,,a-ComposableStable sFRAX/4POOL-BPT,183,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%,,a-Gyro waUSDCn/USDC,205,2.0 +Optimsim,ECLP-waUSDC-waUSDT,0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301,2.00%,,o-Gyroe waUSDT/waUSDCn,275,2.0 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,5.50%,37.00%,a-Gyroe waUSDCn/waUSDT,215,5.5 +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,5.95%,Revenue,50/50 wstETH/ACX,30,5.95 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,6.93%,35.00%,ComposableStable wstETH/WETH,120,6.93 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7,4.54%,,MetaStable WETH/rETH,144,4.54 +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.85%,,ComposableStable rETH/weETH,86,3.85 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,8.04%,,ComposableStable WETH/ezETH,106,8.04 +Mainnet,STG/USDC,0x15C84754c7445D0DF6c613f1490cA07654347c1B,5.69%,35%,50/50 STG/USDC,24,5.69 +Mainnet,tETH/wstETH,0xf697535848B535900c76f70F1e36EC3985D27862,5.00%,,ComposableStable wstETH/tETH,117,5.0 +Mainnet,cbETH/wstETH,0x655A2B240151b4fAb06dfb2B6329eF72647F89dd,5.00%,,Gyroe wstETH/cbETH (0x65),142,5.0 +Mainnet,sdeUSD/deUSD,0xA00DB7d9c465e95e4AA814A9340B9A161364470a,5.00%,,Gyroe deUSD/sdeUSD,124,5.0 +Arbitrum,GHO / USDL,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,4.00%,,a-ComposableStable wUSDL/GHO,204,4.0 +Base,cbETH/wstETH,0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC,5.00%,,b-Gyroe cbETH/wstETH,320,5.0 +Base,wETH/USDC,0xE01347229d681C69f459176A042268Cf981DFaa4,4.00%,,b-Gyroe WETH/USDC (0xe0),323,4.0 diff --git a/MaxiOps/vlaura_voting/2024/W50/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W50/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W50/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W50/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W51/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W51/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W51/input/BD Vote Template - December 5 2024.csv b/MaxiOps/vlaura_voting/2024/W51/input/BD Vote Template - December 5 2024.csv new file mode 100644 index 000000000..38f87460a --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W51/input/BD Vote Template - December 5 2024.csv @@ -0,0 +1,42 @@ +Chain,Label,Gauge Address,Allocation %, +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.00%, +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%, +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%, +Optimsim,ECLP-waUSDC-waUSDT,0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301,4.00%, +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,4.00%,37.00% +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,7.21%,Revenue +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.95%,45.00% +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,11.82%, +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.81%, +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,6.43%, +Mainnet,sdeUSD/deUSD,0xA00DB7d9c465e95e4AA814A9340B9A161364470a ,4.12%, +Mainnet,STG/USDC,0x15C84754c7445D0DF6c613f1490cA07654347c1B,3.66%,45% +,,,,Biz Dev +Mainnet,tETH/wstETH,0xf697535848B535900c76f70F1e36EC3985D27862 ,3.00%, +Mainnet,cbETH/wstETH,0x655A2B240151b4fAb06dfb2B6329eF72647F89dd ,5.00%, +Arbitrum,GHO / USDL,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,3.00%, +Base,cbETH/wstETH,0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC,7.00%, +,,,, +,,,,18% +,,,,TOTAL +,,,,100.00% +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,,, +,,1200,, +,,100000,, +,,"$16,666.67",, +,,14,, +,,,, +Total USDC,"$100,000",,, +APY needed,6%,,, +Incentives per 1m,60000,,, +Incentives per wk,"$1,154",,, +Incentives per 6 wks,"$4,615",,, +Total TVL to support,22,,, diff --git a/MaxiOps/vlaura_voting/2024/W51/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W51/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W51/output/payload.json b/MaxiOps/vlaura_voting/2024/W51/output/payload.json new file mode 100644 index 000000000..b7f578221 --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W51/output/payload.json @@ -0,0 +1,52 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "0xca2db946abe18169bd4fd1d296721f16df66a4052e9ebee434d7085bc9968c4e", + "choice": "{\"96\":10.0,\"99\":12.0,\"186\":5.0,\"208\":2.0,\"278\":4.0,\"218\":4.0,\"30\":7.21,\"121\":7.95,\"147\":11.82,\"87\":3.81,\"107\":6.43,\"125\":4.12,\"24\":3.66,\"118\":3.0,\"144\":5.0,\"207\":3.0,\"323\":7.0}", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "timestamp": 1733522848 + } +} diff --git a/MaxiOps/vlaura_voting/2024/W51/output/report.txt b/MaxiOps/vlaura_voting/2024/W51/output/report.txt new file mode 100644 index 000000000..466d70ceb --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W51/output/report.txt @@ -0,0 +1,2 @@ +hash: 0xd0dae94c72903124766367d63e0f99a0e5eda7d6607a5a7799cd5d61bcaa79fa +relayer: https://relayer.snapshot.org/api/messages/0xd0dae94c72903124766367d63e0f99a0e5eda7d6607a5a7799cd5d61bcaa79fa \ No newline at end of file diff --git a/MaxiOps/vlaura_voting/2024/W51/output/vote_df.csv b/MaxiOps/vlaura_voting/2024/W51/output/vote_df.csv new file mode 100644 index 000000000..842c5606e --- /dev/null +++ b/MaxiOps/vlaura_voting/2024/W51/output/vote_df.csv @@ -0,0 +1,18 @@ +Chain,Label,Gauge Address,Allocation %,Unnamed: 4,snapshot_label,snapshot_index,share +Mainnet,sDAI/4Pool,0xf6a7ad46b00300344c7d4739c0518db70e722dc4,10.00%,Core Liquidity,ComposableStable USDC-DAI-USDT/sDAI,96,10.0 +Mainnet,GHO/USDC/USDT,0xf720e9137baa9c7612e6ca59149a5057ab320cfa ,12.00%,,ComposableStable USDT/USDC/GHO,99,12.0 +Arbitrum,sFRAX/4Pool,0x62a82fe26e21a8807599374cac8024fae342ef83,5.00%,,a-ComposableStable sFRAX/4POOL-BPT,186,5.0 +Arbitrum,aUSDC/USDC,0x75ba7f8733c154302cbe2e19fe3ec417e0679833,2.00%,,a-Gyro waUSDCn/USDC,208,2.0 +Optimsim,ECLP-waUSDC-waUSDT,0x1a8F7747cA103d229d7bDFF5f89c176b95Faf301,4.00%,,o-Gyroe waUSDT/waUSDCn,278,4.0 +Arbitrum,aUSDC/aUSDT,0xbb034e493ebf45f874e038ae76576df9cc1137e5,4.00%,37.00%,a-Gyroe waUSDCn/waUSDT,218,4.0 +Mainnet,50wstETH/ACX,0xf7b0751fea697cf1a541a5f57d11058a8fb794ee,7.21%,Revenue ,50/50 wstETH/ACX,30,7.21 +Mainnet,wstETH-wETH-BPT,0x5c0f23a5c1be65fa710d385814a7fd1bda480b1c,7.95%,45.00%,ComposableStable wstETH/WETH,121,7.95 +Mainnet,B-rETH-Stable,0x79ef6103a513951a3b25743db509e267685726b7 ,11.82%,,MetaStable WETH/rETH,147,11.82 +Mainnet,weETH/rETH,0xC859BF9d7B8C557bBd229565124c2C09269F3aEF,3.81%,,ComposableStable rETH/weETH,87,3.81 +Mainnet,ezETH-wETH,0xa8b309a75f0d64ed632d45a003c68a30e59a1d8b,6.43%,,ComposableStable WETH/ezETH,107,6.43 +Mainnet,sdeUSD/deUSD,0xA00DB7d9c465e95e4AA814A9340B9A161364470a ,4.12%,,Gyroe deUSD/sdeUSD,125,4.12 +Mainnet,STG/USDC,0x15C84754c7445D0DF6c613f1490cA07654347c1B,3.66%,45%,50/50 STG/USDC,24,3.66 +Mainnet,tETH/wstETH,0xf697535848B535900c76f70F1e36EC3985D27862 ,3.00%,,ComposableStable wstETH/tETH,118,3.0 +Mainnet,cbETH/wstETH,0x655A2B240151b4fAb06dfb2B6329eF72647F89dd ,5.00%,,Gyroe wstETH/cbETH (0x65),144,5.0 +Arbitrum,GHO / USDL,0x2e8A05f0216c6cC43BC123EE7dEf58901d3844D2,3.00%,,a-ComposableStable wUSDL/GHO,207,3.0 +Base,cbETH/wstETH,0xBDc908e5dF4A95909DD8cbdD5E88C4078a85f7fC,7.00%,,b-Gyroe cbETH/wstETH,323,7.0 diff --git a/MaxiOps/vlaura_voting/2024/W52/input/.gitkeep b/MaxiOps/vlaura_voting/2024/W52/input/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/2024/W52/output/.gitkeep b/MaxiOps/vlaura_voting/2024/W52/output/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/MaxiOps/vlaura_voting/README.md b/MaxiOps/vlaura_voting/README.md new file mode 100644 index 000000000..87f3052fa --- /dev/null +++ b/MaxiOps/vlaura_voting/README.md @@ -0,0 +1,40 @@ +# Tutorial for Submitting Bi-Weekly Aura Gauge Votes on Snapshot + + +## Steps to Submit Votes + +### Step 1: Prepare Your Voting Data + +1. **Create a CSV File**: Prepare a CSV file with your voting data. use the template [here](https://docs.google.com/spreadsheets/d/1w63dyNGi0IB_bXgGXQk2lwknnT5wxCUkKHVp5bHqlFc/edit?gid=0#gid=0). The "chain" and "label" columns are for reference. Only the "gauge address" and "Allocation %" columns are read in by the script. +2. Save to a `input.csv`. + + +### Step 2: PR the Votes + +1. **Upload the CSV File**: + - Navigate to the `input` directory for the current week and year. For example, for week 25 of 2024, the path would be: **`MaxiOps/vlaura_voting/2024/W25/input`**. + - Go to the URL: `https://github.com/BalancerMaxis/multisig-ops/upload/main/MaxiOps/vlaura_voting/2024/W25/input`. (replace with current year/W##) + - Drag and drop your CSV file into the upload area or click "choose your files" to select the file from your computer. + - Add a commit message, for example, "Add voting data for 2024-W25". + - Ensure you select the option to "Create a new branch for this commit and start a pull request". + - Name the branch appropriately, for example, `voting-data-2024-W25`. + - Click the "Propose changes" button. + +2. **Create a Pull Request (PR)**: + - You will be redirected to the "Open a pull request" page. + - Click the "Create pull request" button and assign reviewer(s) + +### Step 3: Run the GitHub Action Workflow + +1. **Wait for Review**: Wait for the PR to be reviewed and merged + +1. **Navigate to Actions**: + - Go to the [Actions tab](https://github.com/BalancerMaxis/multisig-ops/actions) in the repository. + +2. **Run the Workflow**: + - Find the workflow named "Post vlAURA snapshot votes to voter multisig and send to the vote relayer". + - Click on the workflow and then click the "Run workflow" button on the right side. + - Enter the `week-string` in the format `YYYY-W##`, for example, `2024-W25`. + - Click the "Run workflow" button to start the process. (This will create a Safe transaction on the [voting multisig](https://app.safe.global/transactions/history?safe=eth:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)) + +Once the the Safe transaction is signed and executed, votes will be posted on Snapshot diff --git a/MaxiOps/vlaura_voting/vote template.csv b/MaxiOps/vlaura_voting/vote template.csv new file mode 100644 index 000000000..3d8c19e66 --- /dev/null +++ b/MaxiOps/vlaura_voting/vote template.csv @@ -0,0 +1 @@ +Chain,Label,Gauge Address,Allocation % \ No newline at end of file diff --git a/README.md b/README.md index 9716aa29a..e4fc5502c 100644 --- a/README.md +++ b/README.md @@ -1,51 +1,79 @@ ## Welcome to the Balancer Multisig Operations Repo + This repo is used to store payloads uploaded to the multisig, as well as any tooling used to generate such payloads. You can find a FAQ about snapshot handling here: [FAQ](FAQ.md) -### Uploading transaction JSONs as part of Balancer Governance +## The Multisigs + +Information about all of the Multisigs that the Maxis may load transactions into are in [multisigs.md](multisigs.md) + +## Uploading transaction JSONs as part of Balancer Governance + Balancer Governance requires that a link to a PR request in this repo with a gnosis-safe transaction builder JSON is included. -PR's should be to include a single file named `BIP-XXX.json` in the `BIPs` directory where XXX is the number of the BIP. The PR should include the BIP title as it's commit/pr text. -#### Examples -Here are some documents of how to do specific, commonly requested things. +- Set up a branch for your payload, but don't number the BIP yet. E.g. `bip-xxx-some_title` +- Place the payload in `BIP-XXX-some_title.json` in `BIPS/00proposed/` +- Open a PR with the title: "BIP-XXX: Some Title" +- Let the GitHub actions verify the payload file and generate a report of the payload + +A post can now be created on the forum with the title "BIP-XXX: Some Title" linking to this PR. + +Here is the minimal viable framework for a Balancer Governance acceptable payload + +```json +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685637015445, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", + "bipNumber": 42069 + }, + "transactions": [] +} +``` + +All payloads MUST include the following in the global section: -| Link | Description | Difficulty/Complexity | -|---------------------------------------------------|---------------------------------------------------------------|--------------------------------------| -| [Add Gauge to veBAL](00xamples/gauge-request) | Add a gauge to veBAL and upload it | Low - Noob | -| [Transfer DAO Funds](00examples/funding) | Transfer funds from the treasury one or more other addresses | Low - Noob | -| [Gauge Replacement](00examples/gauge-replacement) | Kill one gauge and add another for pool or gauge replacements | Moderate - Requires basic git skillz | +- `createdFromSafeAddress`: That matches a known balancer multisig +- `chainId`: Must be the numeric chain ID of the chain to run on +Note that the `bipNumber` will be added later, once the forum proposal has been assigned a number. -### Balancer Multisigs -Here are a list of multisigs that the Maxis can and may load transactions into due to governance snapshots. +You can provide more details in name and description if you want. -| Name | Purpose | Chain | Address | -|-------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| -| Protocol Fees Multisig | Collect fees, and set A-Factors and Fees on pools (default pool-owner, except on mainnet where a separate multisig is used to set fees. | [MAINNET](https://gnosis-safe.io/app/eth:0x7c68c42De679ffB0f16216154C996C354cF1161B/home), [ARBI](https://gnosis-safe.io/app/arb1:0x7c68c42De679ffB0f16216154C996C354cF1161B/home), [POLYGON](https://gnosis-safe.io/app/matic:0x7c68c42De679ffB0f16216154C996C354cF1161B/home) | 0x7c68c42De679ffB0f16216154C996C354cF1161B | -| Mainnet Fee Setter | Default pool owner for Mainnet that can set A-Factors and protocol fees. | [MAINNET](https://gnosis-safe.io/app/eth:0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6/home) | 0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6 | -| DAO Multlsig | Funding BIPs, killing of gauges, veBAL whitelisting | [MAINNET](https://gnosis-safe.io/app/eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f/home) | 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f | -| Gauge Controller(LM Multisig) | Used to manage gauges and Reward Tokens and manage liquidity supplied to multichain (bridge). New Gauge requests go here. | [MAINNET](https://gnosis-safe.io/app/eth:0xc38c5f97B34E175FFd35407fc91a937300E33860/home), [ARBI](https://gnosis-safe.io/app/arb1:0xc38c5f97B34E175FFd35407fc91a937300E33860/home), [POLYGON](https://gnosis-safe.io/app/matic:0xc38c5f97B34E175FFd35407fc91a937300E33860/home) | 0xc38c5f97B34E175FFd35407fc91a937300E33860 | -| Linear Pool Control | Manage limits on Mainnet Linear Pools | [MAINNET](https://gnosis-safe.io/app/eth:0x75a52c0e32397A3FC0c052E2CeB3479802713Cf4/home) | 0x75a52c0e32397A3FC0c052E2CeB3479802713Cf4 | -| Maxi Operational Payments | Holds the Maxi Budget and is used to pay people and expenses. | [MAINNET](https://gnosis-safe.io/app/eth:0x166f54F44F271407f24AA1BE415a730035637325/home) | 0x166f54F44F271407f24AA1BE415a730035637325 | - | Arbitrum Treasury | Holds DAO funds on Arbitrum | [ARBI](https://app.safe.global/arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0/home) | 0xaF23DC5983230E9eEAf93280e312e57539D098D0 | -### Optimism Multisigs -**PENDING: TODO** +The transaction list takes the format of a standard gnosis tx builder list. -### Ecosystem Multisigs -Here are a list of multisigs that have frequent interactions with BalancerDAO but are not managed in any way by the Maxis and are not triggered by snapshot votes. +### Examples -| Name | Purpose | Chain | Address | -|------------------|-------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|--------------------------------------------| -| Balancer Grants | Multisig funded by the Balancer treasury with funds managed by the community elected Grants Committee | [MAINNET](https://gnosis-safe.io/app/eth:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597/home) | 0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | +We are slowly developing a library of detailed examples for how to build BIP payloads based on common actions. +These examples can be found [HERE](BIPs/00examples) -### Commonly used target addresses +### Chainlink Upkeeps -| Name | Address | Purpose | -|---------------------|--------------------------------------------|---------------------------------------| -| GaugeAdder | 0x2fFB7B215Ae7F088eC2530C7aa8E1B24E398f26a | Adding New Gauges | -| AuthorizerAdaptor | 0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75 | Accessing functions via granted roles | +The Maxi's have started using Chainlink automation to automate some regular processes that don't need deep review. +Documentation of our various running keepers can be found in [chainlink_keepers](./chainlink_keepers) +Chainlinks documation around this automation setup can be found [here](https://docs.chain.link/chainlink-automation/introduction). + +### Governance Process + +Verbose and up-to-date docs about the balancer governance process can be found on [docs.balancer.fi](https://docs.balancer.fi/concepts/governance/) + +### Fees and Bribs + +- Check out the [Bribs](./Bribs) for artifacts from our Core Pools Fee redirection processes (BIP-19) +- Check out [FeeSweep](./FeeSweep) for artifacts and info about our protocol fee processing activities + +### Assorted Tooling + +- [tools](./tools) is a somewhat messy directory with a bunch of reports/automations and scripts we use to deal with the various workloads. +- [action-scripts](./action-scripts) is where we build more final code and integrate more hashed out automations into github actions. ### Need Help -You can contact Tritium, Solarcurve or any of the BAL Maxis on the Balancer Discord for help getting your JSON PR submitted. We can also just do it for you if that's what you'd prefer. + +You can contact Tritium, Solarcurve or any of the BAL Maxis on the Balancer Discord for help getting your JSON PR submitted. We can also just do it for you if that's what you'd prefer. diff --git a/action-scripts/abis/Authorizer.json b/action-scripts/abis/Authorizer.json new file mode 100644 index 000000000..0adc42da3 --- /dev/null +++ b/action-scripts/abis/Authorizer.json @@ -0,0 +1,342 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "admin", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "actionId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "canPerform", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "name": "getRoleMember", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleMemberCount", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address[]", + "name": "accounts", + "type": "address[]" + } + ], + "name": "grantRolesToMany", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRoles", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address[]", + "name": "accounts", + "type": "address[]" + } + ], + "name": "revokeRolesFromMany", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] diff --git a/action-scripts/abis/ChildChainGauge.json b/action-scripts/abis/ChildChainGauge.json new file mode 100644 index 000000000..032f9e31f --- /dev/null +++ b/action-scripts/abis/ChildChainGauge.json @@ -0,0 +1,1034 @@ +[ + { + "name": "Approval", + "inputs": [ + { + "name": "_owner", + "type": "address", + "indexed": true + }, + { + "name": "_spender", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Transfer", + "inputs": [ + { + "name": "_from", + "type": "address", + "indexed": true + }, + { + "name": "_to", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Deposit", + "inputs": [ + { + "name": "_user", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Withdraw", + "inputs": [ + { + "name": "_user", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "UpdateLiquidityLimit", + "inputs": [ + { + "name": "_user", + "type": "address", + "indexed": true + }, + { + "name": "_original_balance", + "type": "uint256", + "indexed": false + }, + { + "name": "_original_supply", + "type": "uint256", + "indexed": false + }, + { + "name": "_working_balance", + "type": "uint256", + "indexed": false + }, + { + "name": "_working_supply", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "stateMutability": "nonpayable", + "type": "constructor", + "inputs": [ + { + "name": "_voting_escrow_delegation_proxy", + "type": "address" + }, + { + "name": "_bal_pseudo_minter", + "type": "address" + }, + { + "name": "_authorizer_adaptor", + "type": "address" + }, + { + "name": "_version", + "type": "string" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_user", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw", + "inputs": [ + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_user", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "transferFrom", + "inputs": [ + { + "name": "_from", + "type": "address" + }, + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "approve", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "permit", + "inputs": [ + { + "name": "_owner", + "type": "address" + }, + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_deadline", + "type": "uint256" + }, + { + "name": "_v", + "type": "uint8" + }, + { + "name": "_r", + "type": "bytes32" + }, + { + "name": "_s", + "type": "bytes32" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "transfer", + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "increaseAllowance", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_added_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "decreaseAllowance", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_subtracted_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "user_checkpoint", + "inputs": [ + { + "name": "addr", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claimable_tokens", + "inputs": [ + { + "name": "addr", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claimed_reward", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claimable_reward", + "inputs": [ + { + "name": "_user", + "type": "address" + }, + { + "name": "_reward_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_rewards_receiver", + "inputs": [ + { + "name": "_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_receiver", + "type": "address" + }, + { + "name": "_reward_indexes", + "type": "uint256[]" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "add_reward", + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_reward_distributor", + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit_reward_token", + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_amount", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "killGauge", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "unkillGauge", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "decimals", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "allowance", + "inputs": [ + { + "name": "owner", + "type": "address" + }, + { + "name": "spender", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_checkpoint", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "bal_token", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "bal_pseudo_minter", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "voting_escrow_delegation_proxy", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "authorizer_adaptor", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "initialize", + "inputs": [ + { + "name": "_lp_token", + "type": "address" + }, + { + "name": "_version", + "type": "string" + } + ], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "DOMAIN_SEPARATOR", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes32" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "nonces", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "name", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "symbol", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "balanceOf", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "totalSupply", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "lp_token", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "version", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "factory", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "working_balances", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "working_supply", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "period", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "period_timestamp", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_checkpoint_of", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_fraction", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_inv_supply", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_inv_supply_of", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_count", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_tokens", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_data", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "tuple", + "components": [ + { + "name": "distributor", + "type": "address" + }, + { + "name": "period_finish", + "type": "uint256" + }, + { + "name": "rate", + "type": "uint256" + }, + { + "name": "last_update", + "type": "uint256" + }, + { + "name": "integral", + "type": "uint256" + } + ] + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "rewards_receiver", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_integral_for", + "inputs": [ + { + "name": "arg0", + "type": "address" + }, + { + "name": "arg1", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "is_killed", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "inflation_rate", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + } +] diff --git a/action-scripts/abis/ERC20.json b/action-scripts/abis/ERC20.json new file mode 100644 index 000000000..668d6979f --- /dev/null +++ b/action-scripts/abis/ERC20.json @@ -0,0 +1,222 @@ +[ + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_from", + "type": "address" + }, + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [ + { + "name": "", + "type": "uint8" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "_owner", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "balance", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "_owner", + "type": "address" + }, + { + "name": "_spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "from", + "type": "address" + }, + { + "indexed": true, + "name": "to", + "type": "address" + }, + { + "indexed": false, + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + } +] \ No newline at end of file diff --git a/action-scripts/abis/GearAirdropDistributor.json b/action-scripts/abis/GearAirdropDistributor.json new file mode 100644 index 000000000..95d650451 --- /dev/null +++ b/action-scripts/abis/GearAirdropDistributor.json @@ -0,0 +1,320 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "addressProvider", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot_", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct ClaimedData[]", + "name": "alreadyClaimed", + "type": "tuple[]" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [], + "name": "AlreadyClaimedFinishedException", + "type": "error" + }, + { + "inputs": [], + "name": "TreasuryOnlyException", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bool", + "name": "historic", + "type": "bool" + } + ], + "name": "Claimed", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "oldRoot", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newRoot", + "type": "bytes32" + } + ], + "name": "RootUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint8", + "name": "campaignId", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "TokenAllocated", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "totalAmount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "claimed", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint8", + "name": "campaignId", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct DistributionData[]", + "name": "data", + "type": "tuple[]" + } + ], + "name": "emitDistributionEvents", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "merkleRoot", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "token", + "outputs": [ + { + "internalType": "contract IERC20", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "treasury", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct ClaimedData[]", + "name": "alreadyClaimed", + "type": "tuple[]" + } + ], + "name": "updateHistoricClaims", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "newRoot", + "type": "bytes32" + } + ], + "name": "updateMerkleRoot", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] \ No newline at end of file diff --git a/action-scripts/abis/IAuraBriber.json b/action-scripts/abis/IAuraBriber.json new file mode 100644 index 000000000..76d5000d8 --- /dev/null +++ b/action-scripts/abis/IAuraBriber.json @@ -0,0 +1,733 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "_BRIBE_VAULT", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "AddWhitelistTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "bribeIdentifier", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "rewardIdentifier", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "briber", + "type": "address" + } + ], + "name": "DepositBribe", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "GrantTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "RemoveWhitelistTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "RevokeTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposal", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "proposalIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "choiceCount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposalChoices", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "SetRewardForwarding", + "type": "event" + }, + { + "inputs": [], + "name": "BRIBE_VAULT", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "PROTOCOL", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "TEAM_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "addWhitelistTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "allWhitelistedTokens", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + } + ], + "name": "depositBribe", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "depositBribeERC20", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "generateBribeVaultIdentifier", + "outputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "generateRewardIdentifier", + "outputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getBribe", + "outputs": [ + { + "internalType": "address", + "name": "bribeToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "bribeAmount", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getWhitelistedTokens", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "grantTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "indexOfWhitelistedToken", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "isWhitelistedToken", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "name": "proposalDeadlines", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "removeWhitelistTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "revokeTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "rewardForwarding", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalIndex", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "choiceCount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "setProposalChoices", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "setRewardForwarding", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/action-scripts/abis/IBalancerBribe.json b/action-scripts/abis/IBalancerBribe.json new file mode 100644 index 000000000..861573196 --- /dev/null +++ b/action-scripts/abis/IBalancerBribe.json @@ -0,0 +1,772 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "_BRIBE_VAULT", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "AddWhitelistTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "bribeIdentifier", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "rewardIdentifier", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "briber", + "type": "address" + } + ], + "name": "DepositBribe", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "GrantTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "RemoveWhitelistTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "RevokeTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposal", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "SetRewardForwarding", + "type": "event" + }, + { + "inputs": [], + "name": "BRIBE_VAULT", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "PROTOCOL", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "TEAM_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "addWhitelistTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "allWhitelistedTokens", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + } + ], + "name": "depositBribe", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "depositBribeERC20", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "gauges", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "generateBribeVaultIdentifier", + "outputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "generateRewardIdentifier", + "outputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getBribe", + "outputs": [ + { + "internalType": "address", + "name": "bribeToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "bribeAmount", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getGauges", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getWhitelistedTokens", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "grantTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "indexOfGauge", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "indexOfWhitelistedToken", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "isWhitelistedToken", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "name": "proposalDeadlines", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "removeWhitelistTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "revokeTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "rewardForwarding", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "gauge", + "type": "address" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "setGaugeProposal", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "gauges_", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "deadlines", + "type": "uint256[]" + } + ], + "name": "setGaugeProposals", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "setRewardForwarding", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/action-scripts/abis/IBalancerMinter.json b/action-scripts/abis/IBalancerMinter.json new file mode 100644 index 000000000..c94bfba3a --- /dev/null +++ b/action-scripts/abis/IBalancerMinter.json @@ -0,0 +1,154 @@ +[ + { + "inputs": [ + { + "internalType": "contract IBalancerMinter", + "name": "minter", + "type": "address" + }, + { + "internalType": "contract IGatewayRouter", + "name": "gatewayRouter", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "periodTime", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "periodEmissions", + "type": "uint256" + } + ], + "name": "Checkpoint", + "type": "event" + }, + { + "inputs": [], + "name": "checkpoint", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "getRecipient", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getTotalBridgeCost", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "user", + "type": "address" + } + ], + "name": "integrate_fraction", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "is_killed", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "killGauge", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unkillGauge", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "user_checkpoint", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "pure", + "type": "function" + } +] diff --git a/action-scripts/abis/IChildChainStreamer.json b/action-scripts/abis/IChildChainStreamer.json new file mode 100644 index 000000000..ef356cc45 --- /dev/null +++ b/action-scripts/abis/IChildChainStreamer.json @@ -0,0 +1,246 @@ +[ + { + "name": "RewardDistributorUpdated", + "inputs": [ + { + "name": "reward_token", + "type": "address", + "indexed": true + }, + { + "name": "distributor", + "type": "address", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "RewardDurationUpdated", + "inputs": [ + { + "name": "reward_token", + "type": "address", + "indexed": true + }, + { + "name": "duration", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "stateMutability": "nonpayable", + "type": "constructor", + "inputs": [ + { + "name": "_bal_token", + "type": "address" + }, + { + "name": "_authorizerAdaptor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "add_reward", + "inputs": [ + { + "name": "_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + }, + { + "name": "_duration", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "remove_reward", + "inputs": [ + { + "name": "_token", + "type": "address" + }, + { + "name": "_recipient", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "get_reward", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "notify_reward_amount", + "inputs": [ + { + "name": "_token", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_reward_duration", + "inputs": [ + { + "name": "_token", + "type": "address" + }, + { + "name": "_duration", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_reward_distributor", + "inputs": [ + { + "name": "_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "initialize", + "inputs": [ + { + "name": "reward_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_receiver", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_tokens", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_count", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_data", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "tuple", + "components": [ + { + "name": "distributor", + "type": "address" + }, + { + "name": "period_finish", + "type": "uint256" + }, + { + "name": "rate", + "type": "uint256" + }, + { + "name": "duration", + "type": "uint256" + }, + { + "name": "received", + "type": "uint256" + }, + { + "name": "paid", + "type": "uint256" + } + ] + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "last_update_time", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + } +] diff --git a/action-scripts/abis/IComposibleStable.json b/action-scripts/abis/IComposibleStable.json new file mode 100644 index 000000000..6c192e419 --- /dev/null +++ b/action-scripts/abis/IComposibleStable.json @@ -0,0 +1,1409 @@ +[ + { + "inputs": [ + { + "components": [ + { + "internalType": "contract IVault", + "name": "vault", + "type": "address" + }, + { + "internalType": "contract IProtocolFeePercentagesProvider", + "name": "protocolFeeProvider", + "type": "address" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol", + "type": "string" + }, + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "contract IRateProvider[]", + "name": "rateProviders", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "tokenRateCacheDurations", + "type": "uint256[]" + }, + { + "internalType": "bool[]", + "name": "exemptFromYieldProtocolFeeFlags", + "type": "bool[]" + }, + { + "internalType": "uint256", + "name": "amplificationParameter", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "pauseWindowDuration", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodDuration", + "type": "uint256" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + } + ], + "internalType": "struct ComposableStablePool.NewPoolParams", + "name": "params", + "type": "tuple" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "startValue", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "endValue", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "startTime", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "AmpUpdateStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "currentValue", + "type": "uint256" + } + ], + "name": "AmpUpdateStopped", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bool", + "name": "paused", + "type": "bool" + } + ], + "name": "PausedStateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFeePercentage", + "type": "uint256" + } + ], + "name": "ProtocolFeePercentageCacheUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bool", + "name": "enabled", + "type": "bool" + } + ], + "name": "RecoveryModeStateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "SwapFeePercentageChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "tokenIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + } + ], + "name": "TokenRateCacheUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "tokenIndex", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "contract IRateProvider", + "name": "provider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "cacheDuration", + "type": "uint256" + } + ], + "name": "TokenRateProviderSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [], + "name": "DELEGATE_PROTOCOL_SWAP_FEES_SENTINEL", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DOMAIN_SEPARATOR", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "disableRecoveryMode", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "enableRecoveryMode", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + } + ], + "name": "getActionId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getActualSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAmplificationParameter", + "outputs": [ + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isUpdating", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "precision", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAuthorizer", + "outputs": [ + { + "internalType": "contract IAuthorizer", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getBptIndex", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getDomainSeparator", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getLastJoinExitData", + "outputs": [ + { + "internalType": "uint256", + "name": "lastJoinExitAmplification", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "lastPostJoinExitInvariant", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getMinimumBpt", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getNextNonce", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPausedState", + "outputs": [ + { + "internalType": "bool", + "name": "paused", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "pauseWindowEndTime", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodEndTime", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPoolId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + } + ], + "name": "getProtocolFeePercentageCache", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getProtocolFeesCollector", + "outputs": [ + { + "internalType": "contract IProtocolFeesCollector", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getProtocolSwapFeeDelegation", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getRateProviders", + "outputs": [ + { + "internalType": "contract IRateProvider[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getScalingFactors", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getSwapFeePercentage", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "getTokenRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "getTokenRateCache", + "outputs": [ + { + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "oldRate", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "expires", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getVault", + "outputs": [ + { + "internalType": "contract IVault", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "inRecoveryMode", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "isTokenExemptFromYieldProtocolFee", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "onExitPool", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "onJoinPool", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "enum IVault.SwapKind", + "name": "kind", + "type": "uint8" + }, + { + "internalType": "contract IERC20", + "name": "tokenIn", + "type": "address" + }, + { + "internalType": "contract IERC20", + "name": "tokenOut", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "internalType": "struct IPoolSwapStructs.SwapRequest", + "name": "swapRequest", + "type": "tuple" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "indexIn", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "indexOut", + "type": "uint256" + } + ], + "name": "onSwap", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "permit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "queryExit", + "outputs": [ + { + "internalType": "uint256", + "name": "bptIn", + "type": "uint256" + }, + { + "internalType": "uint256[]", + "name": "amountsOut", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "queryJoin", + "outputs": [ + { + "internalType": "uint256", + "name": "bptOut", + "type": "uint256" + }, + { + "internalType": "uint256[]", + "name": "amountsIn", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes", + "name": "poolConfig", + "type": "bytes" + } + ], + "name": "setAssetManagerPoolConfig", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "stopAmplificationParameterUpdate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "updateProtocolFeePercentageCache", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "updateTokenRateCache", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/action-scripts/abis/IRewardsOnlyGauge.json b/action-scripts/abis/IRewardsOnlyGauge.json new file mode 100644 index 000000000..367353efe --- /dev/null +++ b/action-scripts/abis/IRewardsOnlyGauge.json @@ -0,0 +1,782 @@ +[ + { + "name": "Deposit", + "inputs": [ + { + "name": "provider", + "type": "address", + "indexed": true + }, + { + "name": "value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Withdraw", + "inputs": [ + { + "name": "provider", + "type": "address", + "indexed": true + }, + { + "name": "value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Transfer", + "inputs": [ + { + "name": "_from", + "type": "address", + "indexed": true + }, + { + "name": "_to", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Approval", + "inputs": [ + { + "name": "_owner", + "type": "address", + "indexed": true + }, + { + "name": "_spender", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "stateMutability": "nonpayable", + "type": "constructor", + "inputs": [ + { + "name": "_bal_token", + "type": "address" + }, + { + "name": "_vault", + "type": "address" + }, + { + "name": "_authorizerAdaptor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "decimals", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "version", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_contract", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "last_claim", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claimed_reward", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claimable_reward", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_data", + "inputs": [ + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "tuple", + "components": [ + { + "name": "token", + "type": "address" + }, + { + "name": "distributor", + "type": "address" + }, + { + "name": "period_finish", + "type": "uint256" + }, + { + "name": "rate", + "type": "uint256" + }, + { + "name": "last_update", + "type": "uint256" + }, + { + "name": "integral", + "type": "uint256" + } + ] + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claimable_reward_write", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_rewards_receiver", + "inputs": [ + { + "name": "_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_addr", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_addr", + "type": "address" + }, + { + "name": "_claim_rewards", + "type": "bool" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw", + "inputs": [ + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_claim_rewards", + "type": "bool" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "transfer", + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "transferFrom", + "inputs": [ + { + "name": "_from", + "type": "address" + }, + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "allowance", + "inputs": [ + { + "name": "owner", + "type": "address" + }, + { + "name": "spender", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "approve", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "permit", + "inputs": [ + { + "name": "_owner", + "type": "address" + }, + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_deadline", + "type": "uint256" + }, + { + "name": "_v", + "type": "uint8" + }, + { + "name": "_r", + "type": "bytes32" + }, + { + "name": "_s", + "type": "bytes32" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "increaseAllowance", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_added_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "decreaseAllowance", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_subtracted_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_rewards", + "inputs": [ + { + "name": "_reward_contract", + "type": "address" + }, + { + "name": "_claim_sig", + "type": "bytes32" + }, + { + "name": "_reward_tokens", + "type": "address[8]" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "initialize", + "inputs": [ + { + "name": "_lp_token", + "type": "address" + }, + { + "name": "_reward_contract", + "type": "address" + }, + { + "name": "_claim_sig", + "type": "bytes32" + } + ], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "lp_token", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "balanceOf", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "totalSupply", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "name", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "symbol", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "DOMAIN_SEPARATOR", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes32" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "nonces", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_tokens", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_balances", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "rewards_receiver", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claim_sig", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_integral", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_integral_for", + "inputs": [ + { + "name": "arg0", + "type": "address" + }, + { + "name": "arg1", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + } +] diff --git a/action-scripts/abis/IVault.json b/action-scripts/abis/IVault.json new file mode 100644 index 000000000..ccaba5181 --- /dev/null +++ b/action-scripts/abis/IVault.json @@ -0,0 +1,1179 @@ +[ + { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "authorizer", + "type": "address" + }, + { + "internalType": "contract IWETH", + "name": "weth", + "type": "address" + }, + { + "internalType": "uint256", + "name": "pauseWindowDuration", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodDuration", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "AuthorizerChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "ExternalBalanceTransfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "contract IFlashLoanRecipient", + "name": "recipient", + "type": "address" + }, + { + "indexed": true, + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "feeAmount", + "type": "uint256" + } + ], + "name": "FlashLoan", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "user", + "type": "address" + }, + { + "indexed": true, + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "int256", + "name": "delta", + "type": "int256" + } + ], + "name": "InternalBalanceChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bool", + "name": "paused", + "type": "bool" + } + ], + "name": "PausedStateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "int256[]", + "name": "deltas", + "type": "int256[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "protocolFeeAmounts", + "type": "uint256[]" + } + ], + "name": "PoolBalanceChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "assetManager", + "type": "address" + }, + { + "indexed": true, + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "int256", + "name": "cashDelta", + "type": "int256" + }, + { + "indexed": false, + "internalType": "int256", + "name": "managedDelta", + "type": "int256" + } + ], + "name": "PoolBalanceManaged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "poolAddress", + "type": "address" + }, + { + "indexed": false, + "internalType": "enum IVault.PoolSpecialization", + "name": "specialization", + "type": "uint8" + } + ], + "name": "PoolRegistered", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "relayer", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": false, + "internalType": "bool", + "name": "approved", + "type": "bool" + } + ], + "name": "RelayerApprovalChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "contract IERC20", + "name": "tokenIn", + "type": "address" + }, + { + "indexed": true, + "internalType": "contract IERC20", + "name": "tokenOut", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amountIn", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amountOut", + "type": "uint256" + } + ], + "name": "Swap", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "TokensDeregistered", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "assetManagers", + "type": "address[]" + } + ], + "name": "TokensRegistered", + "type": "event" + }, + { + "inputs": [], + "name": "WETH", + "outputs": [ + { + "internalType": "contract IWETH", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "enum IVault.SwapKind", + "name": "kind", + "type": "uint8" + }, + { + "components": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "assetInIndex", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "assetOutIndex", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "internalType": "struct IVault.BatchSwapStep[]", + "name": "swaps", + "type": "tuple[]" + }, + { + "internalType": "contract IAsset[]", + "name": "assets", + "type": "address[]" + }, + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "bool", + "name": "fromInternalBalance", + "type": "bool" + }, + { + "internalType": "address payable", + "name": "recipient", + "type": "address" + }, + { + "internalType": "bool", + "name": "toInternalBalance", + "type": "bool" + } + ], + "internalType": "struct IVault.FundManagement", + "name": "funds", + "type": "tuple" + }, + { + "internalType": "int256[]", + "name": "limits", + "type": "int256[]" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "batchSwap", + "outputs": [ + { + "internalType": "int256[]", + "name": "assetDeltas", + "type": "int256[]" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "deregisterTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address payable", + "name": "recipient", + "type": "address" + }, + { + "components": [ + { + "internalType": "contract IAsset[]", + "name": "assets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "minAmountsOut", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + }, + { + "internalType": "bool", + "name": "toInternalBalance", + "type": "bool" + } + ], + "internalType": "struct IVault.ExitPoolRequest", + "name": "request", + "type": "tuple" + } + ], + "name": "exitPool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IFlashLoanRecipient", + "name": "recipient", + "type": "address" + }, + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "flashLoan", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + } + ], + "name": "getActionId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAuthorizer", + "outputs": [ + { + "internalType": "contract IAuthorizer", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getDomainSeparator", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "user", + "type": "address" + }, + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "getInternalBalance", + "outputs": [ + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "user", + "type": "address" + } + ], + "name": "getNextNonce", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPausedState", + "outputs": [ + { + "internalType": "bool", + "name": "paused", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "pauseWindowEndTime", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodEndTime", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + } + ], + "name": "getPool", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "enum IVault.PoolSpecialization", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "getPoolTokenInfo", + "outputs": [ + { + "internalType": "uint256", + "name": "cash", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "managed", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "address", + "name": "assetManager", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + } + ], + "name": "getPoolTokens", + "outputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getProtocolFeesCollector", + "outputs": [ + { + "internalType": "contract ProtocolFeesCollector", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "user", + "type": "address" + }, + { + "internalType": "address", + "name": "relayer", + "type": "address" + } + ], + "name": "hasApprovedRelayer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "components": [ + { + "internalType": "contract IAsset[]", + "name": "assets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "maxAmountsIn", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + }, + { + "internalType": "bool", + "name": "fromInternalBalance", + "type": "bool" + } + ], + "internalType": "struct IVault.JoinPoolRequest", + "name": "request", + "type": "tuple" + } + ], + "name": "joinPool", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "enum IVault.PoolBalanceOpKind", + "name": "kind", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IVault.PoolBalanceOp[]", + "name": "ops", + "type": "tuple[]" + } + ], + "name": "managePoolBalance", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "enum IVault.UserBalanceOpKind", + "name": "kind", + "type": "uint8" + }, + { + "internalType": "contract IAsset", + "name": "asset", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address payable", + "name": "recipient", + "type": "address" + } + ], + "internalType": "struct IVault.UserBalanceOp[]", + "name": "ops", + "type": "tuple[]" + } + ], + "name": "manageUserBalance", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "enum IVault.SwapKind", + "name": "kind", + "type": "uint8" + }, + { + "components": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "assetInIndex", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "assetOutIndex", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "internalType": "struct IVault.BatchSwapStep[]", + "name": "swaps", + "type": "tuple[]" + }, + { + "internalType": "contract IAsset[]", + "name": "assets", + "type": "address[]" + }, + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "bool", + "name": "fromInternalBalance", + "type": "bool" + }, + { + "internalType": "address payable", + "name": "recipient", + "type": "address" + }, + { + "internalType": "bool", + "name": "toInternalBalance", + "type": "bool" + } + ], + "internalType": "struct IVault.FundManagement", + "name": "funds", + "type": "tuple" + } + ], + "name": "queryBatchSwap", + "outputs": [ + { + "internalType": "int256[]", + "name": "", + "type": "int256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "enum IVault.PoolSpecialization", + "name": "specialization", + "type": "uint8" + } + ], + "name": "registerPool", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "address[]", + "name": "assetManagers", + "type": "address[]" + } + ], + "name": "registerTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IAuthorizer", + "name": "newAuthorizer", + "type": "address" + } + ], + "name": "setAuthorizer", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bool", + "name": "paused", + "type": "bool" + } + ], + "name": "setPaused", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "relayer", + "type": "address" + }, + { + "internalType": "bool", + "name": "approved", + "type": "bool" + } + ], + "name": "setRelayerApproval", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "enum IVault.SwapKind", + "name": "kind", + "type": "uint8" + }, + { + "internalType": "contract IAsset", + "name": "assetIn", + "type": "address" + }, + { + "internalType": "contract IAsset", + "name": "assetOut", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "internalType": "struct IVault.SingleSwap", + "name": "singleSwap", + "type": "tuple" + }, + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "bool", + "name": "fromInternalBalance", + "type": "bool" + }, + { + "internalType": "address payable", + "name": "recipient", + "type": "address" + }, + { + "internalType": "bool", + "name": "toInternalBalance", + "type": "bool" + } + ], + "internalType": "struct IVault.FundManagement", + "name": "funds", + "type": "tuple" + }, + { + "internalType": "uint256", + "name": "limit", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "swap", + "outputs": [ + { + "internalType": "uint256", + "name": "amountCalculated", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } +] \ No newline at end of file diff --git a/action-scripts/brownie/.env.template b/action-scripts/brownie/.env.template new file mode 100644 index 000000000..e44db0d31 --- /dev/null +++ b/action-scripts/brownie/.env.template @@ -0,0 +1,23 @@ +# rpcs +INFURA_KEY= +ALCHEMYAPI_TOKEN= + +# explorers +ARBISCAN_TOKEN= +GNOSISSCAN_TOKEN= +POLYGONSCAN_TOKEN= +OPTIMISMSCAN_TOKEN= +ZKEVMSCAN_TOKEN= +SNOWTRACE_TOKEN= +BASESCAN_TOKEN= +BSCSCAN_TOKEN= +FTMSCAN_TOKEN= + +# see .github/workflows/run_reports_reusable.yaml +GITHUB_REPOSITORY=BalancerMaxis/multisig-ops +PR_NUMBER= + +# tenderly +TENDERLY_ACCESS_KEY= +TENDERLY_ACCOUNT_NAME= +TENDERLY_PROJECT_NAME= diff --git a/action-scripts/brownie/.gitattributes b/action-scripts/brownie/.gitattributes new file mode 100644 index 000000000..adb20fe26 --- /dev/null +++ b/action-scripts/brownie/.gitattributes @@ -0,0 +1,2 @@ +*.sol linguist-language=Solidity +*.vy linguist-language=Python diff --git a/action-scripts/brownie/.gitignore b/action-scripts/brownie/.gitignore new file mode 100644 index 000000000..e4b449830 --- /dev/null +++ b/action-scripts/brownie/.gitignore @@ -0,0 +1,16 @@ +__pycache__ +.env +.secrets +.history +.hypothesis/ +build/ +reports/ +output.txt +validate_bip_results.txt +./outputs.txt +payload_reports.txt + +# npm +node_modules/ +package-lock.json +package.json diff --git a/action-scripts/brownie/abis/Authorizer.json b/action-scripts/brownie/abis/Authorizer.json new file mode 100644 index 000000000..0adc42da3 --- /dev/null +++ b/action-scripts/brownie/abis/Authorizer.json @@ -0,0 +1,342 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "admin", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "actionId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "canPerform", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "name": "getRoleMember", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleMemberCount", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address[]", + "name": "accounts", + "type": "address[]" + } + ], + "name": "grantRolesToMany", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRoles", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address[]", + "name": "accounts", + "type": "address[]" + } + ], + "name": "revokeRolesFromMany", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] diff --git a/action-scripts/brownie/abis/ERC20.json b/action-scripts/brownie/abis/ERC20.json new file mode 100644 index 000000000..668d6979f --- /dev/null +++ b/action-scripts/brownie/abis/ERC20.json @@ -0,0 +1,222 @@ +[ + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_from", + "type": "address" + }, + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [ + { + "name": "", + "type": "uint8" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "_owner", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "balance", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "_owner", + "type": "address" + }, + { + "name": "_spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "from", + "type": "address" + }, + { + "indexed": true, + "name": "to", + "type": "address" + }, + { + "indexed": false, + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + } +] \ No newline at end of file diff --git a/action-scripts/brownie/abis/GearAirdropDistributor.json b/action-scripts/brownie/abis/GearAirdropDistributor.json new file mode 100644 index 000000000..95d650451 --- /dev/null +++ b/action-scripts/brownie/abis/GearAirdropDistributor.json @@ -0,0 +1,320 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "addressProvider", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot_", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct ClaimedData[]", + "name": "alreadyClaimed", + "type": "tuple[]" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [], + "name": "AlreadyClaimedFinishedException", + "type": "error" + }, + { + "inputs": [], + "name": "TreasuryOnlyException", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bool", + "name": "historic", + "type": "bool" + } + ], + "name": "Claimed", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "oldRoot", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newRoot", + "type": "bytes32" + } + ], + "name": "RootUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint8", + "name": "campaignId", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "TokenAllocated", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "totalAmount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "claimed", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint8", + "name": "campaignId", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct DistributionData[]", + "name": "data", + "type": "tuple[]" + } + ], + "name": "emitDistributionEvents", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "merkleRoot", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "token", + "outputs": [ + { + "internalType": "contract IERC20", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "treasury", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct ClaimedData[]", + "name": "alreadyClaimed", + "type": "tuple[]" + } + ], + "name": "updateHistoricClaims", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "newRoot", + "type": "bytes32" + } + ], + "name": "updateMerkleRoot", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] \ No newline at end of file diff --git a/action-scripts/brownie/abis/IAuraBriber.json b/action-scripts/brownie/abis/IAuraBriber.json new file mode 100644 index 000000000..76d5000d8 --- /dev/null +++ b/action-scripts/brownie/abis/IAuraBriber.json @@ -0,0 +1,733 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "_BRIBE_VAULT", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "AddWhitelistTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "bribeIdentifier", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "rewardIdentifier", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "briber", + "type": "address" + } + ], + "name": "DepositBribe", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "GrantTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "RemoveWhitelistTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "RevokeTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposal", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "proposalIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "choiceCount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposalChoices", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "SetRewardForwarding", + "type": "event" + }, + { + "inputs": [], + "name": "BRIBE_VAULT", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "PROTOCOL", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "TEAM_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "addWhitelistTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "allWhitelistedTokens", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + } + ], + "name": "depositBribe", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "depositBribeERC20", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "generateBribeVaultIdentifier", + "outputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "generateRewardIdentifier", + "outputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getBribe", + "outputs": [ + { + "internalType": "address", + "name": "bribeToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "bribeAmount", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getWhitelistedTokens", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "grantTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "indexOfWhitelistedToken", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "isWhitelistedToken", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "name": "proposalDeadlines", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "removeWhitelistTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "revokeTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "rewardForwarding", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalIndex", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "choiceCount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "setProposalChoices", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "setRewardForwarding", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/action-scripts/brownie/abis/IBalPool.json b/action-scripts/brownie/abis/IBalPool.json new file mode 100644 index 000000000..a2b259431 --- /dev/null +++ b/action-scripts/brownie/abis/IBalPool.json @@ -0,0 +1,391 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + } + ], + "name": "getActionId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getActualSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAmplificationParameter", + "outputs": [ + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isUpdating", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "precision", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAuthorizer", + "outputs": [ + { + "internalType": "contract IAuthorizer", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPausedState", + "outputs": [ + { + "internalType": "bool", + "name": "paused", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "pauseWindowEndTime", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodEndTime", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPoolId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getRateProviders", + "outputs": [ + { + "internalType": "contract IRateProvider[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getSwapFeePercentage", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getVault", + "outputs": [ + { + "internalType": "contract IVault", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } +] \ No newline at end of file diff --git a/action-scripts/brownie/abis/IBalancerBribe.json b/action-scripts/brownie/abis/IBalancerBribe.json new file mode 100644 index 000000000..c45d81aee --- /dev/null +++ b/action-scripts/brownie/abis/IBalancerBribe.json @@ -0,0 +1 @@ +[{"inputs":[{"internalType":"address","name":"_BRIBE_VAULT","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"AddWhitelistTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"proposal","type":"bytes32"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"bribeIdentifier","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"rewardIdentifier","type":"bytes32"},{"indexed":true,"internalType":"address","name":"briber","type":"address"}],"name":"DepositBribe","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"teamMember","type":"address"}],"name":"GrantTeamRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"RemoveWhitelistTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"teamMember","type":"address"}],"name":"RevokeTeamRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"proposal","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"SetProposal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"SetRewardForwarding","type":"event"},{"inputs":[],"name":"BRIBE_VAULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROTOCOL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"addWhitelistTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allWhitelistedTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proposal","type":"bytes32"}],"name":"depositBribe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proposal","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositBribeERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"gauges","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proposal","type":"bytes32"},{"internalType":"uint256","name":"proposalDeadline","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"generateBribeVaultIdentifier","outputs":[{"internalType":"bytes32","name":"identifier","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalDeadline","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"generateRewardIdentifier","outputs":[{"internalType":"bytes32","name":"identifier","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proposal","type":"bytes32"},{"internalType":"uint256","name":"proposalDeadline","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"getBribe","outputs":[{"internalType":"address","name":"bribeToken","type":"address"},{"internalType":"uint256","name":"bribeAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGauges","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"teamMember","type":"address"}],"name":"grantTeamRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"indexOfGauge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"indexOfWhitelistedToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"isWhitelistedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"proposalDeadlines","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"removeWhitelistTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"teamMember","type":"address"}],"name":"revokeTeamRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardForwarding","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"setGaugeProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"gauges_","type":"address[]"},{"internalType":"uint256[]","name":"deadlines","type":"uint256[]"}],"name":"setGaugeProposals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"setRewardForwarding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}] \ No newline at end of file diff --git a/action-scripts/brownie/abis/IBalancerMinter.json b/action-scripts/brownie/abis/IBalancerMinter.json new file mode 100644 index 000000000..c94bfba3a --- /dev/null +++ b/action-scripts/brownie/abis/IBalancerMinter.json @@ -0,0 +1,154 @@ +[ + { + "inputs": [ + { + "internalType": "contract IBalancerMinter", + "name": "minter", + "type": "address" + }, + { + "internalType": "contract IGatewayRouter", + "name": "gatewayRouter", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "periodTime", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "periodEmissions", + "type": "uint256" + } + ], + "name": "Checkpoint", + "type": "event" + }, + { + "inputs": [], + "name": "checkpoint", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "getRecipient", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getTotalBridgeCost", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "user", + "type": "address" + } + ], + "name": "integrate_fraction", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "is_killed", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "killGauge", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unkillGauge", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "user_checkpoint", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "pure", + "type": "function" + } +] diff --git a/action-scripts/brownie/abis/IChildChainGauge.json b/action-scripts/brownie/abis/IChildChainGauge.json new file mode 100644 index 000000000..04939e6a0 --- /dev/null +++ b/action-scripts/brownie/abis/IChildChainGauge.json @@ -0,0 +1,1034 @@ +[ + { + "name": "Approval", + "inputs": [ + { + "name": "_owner", + "type": "address", + "indexed": true + }, + { + "name": "_spender", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Transfer", + "inputs": [ + { + "name": "_from", + "type": "address", + "indexed": true + }, + { + "name": "_to", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Deposit", + "inputs": [ + { + "name": "_user", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Withdraw", + "inputs": [ + { + "name": "_user", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "UpdateLiquidityLimit", + "inputs": [ + { + "name": "_user", + "type": "address", + "indexed": true + }, + { + "name": "_original_balance", + "type": "uint256", + "indexed": false + }, + { + "name": "_original_supply", + "type": "uint256", + "indexed": false + }, + { + "name": "_working_balance", + "type": "uint256", + "indexed": false + }, + { + "name": "_working_supply", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "stateMutability": "nonpayable", + "type": "constructor", + "inputs": [ + { + "name": "_voting_escrow_delegation_proxy", + "type": "address" + }, + { + "name": "_bal_pseudo_minter", + "type": "address" + }, + { + "name": "_authorizer_adaptor", + "type": "address" + }, + { + "name": "_version", + "type": "string" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_user", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw", + "inputs": [ + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_user", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "transferFrom", + "inputs": [ + { + "name": "_from", + "type": "address" + }, + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "approve", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "permit", + "inputs": [ + { + "name": "_owner", + "type": "address" + }, + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_deadline", + "type": "uint256" + }, + { + "name": "_v", + "type": "uint8" + }, + { + "name": "_r", + "type": "bytes32" + }, + { + "name": "_s", + "type": "bytes32" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "transfer", + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "increaseAllowance", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_added_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "decreaseAllowance", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_subtracted_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "user_checkpoint", + "inputs": [ + { + "name": "addr", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claimable_tokens", + "inputs": [ + { + "name": "addr", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claimed_reward", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claimable_reward", + "inputs": [ + { + "name": "_user", + "type": "address" + }, + { + "name": "_reward_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_rewards_receiver", + "inputs": [ + { + "name": "_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_receiver", + "type": "address" + }, + { + "name": "_reward_indexes", + "type": "uint256[]" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "add_reward", + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_reward_distributor", + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit_reward_token", + "inputs": [ + { + "name": "_reward_token", + "type": "address" + }, + { + "name": "_amount", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "killGauge", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "unkillGauge", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "decimals", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "allowance", + "inputs": [ + { + "name": "owner", + "type": "address" + }, + { + "name": "spender", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_checkpoint", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "bal_token", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "bal_pseudo_minter", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "voting_escrow_delegation_proxy", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "authorizer_adaptor", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "initialize", + "inputs": [ + { + "name": "_lp_token", + "type": "address" + }, + { + "name": "_version", + "type": "string" + } + ], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "DOMAIN_SEPARATOR", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes32" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "nonces", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "name", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "symbol", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "balanceOf", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "totalSupply", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "lp_token", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "version", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "factory", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "working_balances", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "working_supply", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "period", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "period_timestamp", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_checkpoint_of", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_fraction", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_inv_supply", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "integrate_inv_supply_of", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_count", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_tokens", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_data", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "tuple", + "components": [ + { + "name": "distributor", + "type": "address" + }, + { + "name": "period_finish", + "type": "uint256" + }, + { + "name": "rate", + "type": "uint256" + }, + { + "name": "last_update", + "type": "uint256" + }, + { + "name": "integral", + "type": "uint256" + } + ] + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "rewards_receiver", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_integral_for", + "inputs": [ + { + "name": "arg0", + "type": "address" + }, + { + "name": "arg1", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "is_killed", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "inflation_rate", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + } +] \ No newline at end of file diff --git a/action-scripts/brownie/abis/IChildChainStreamer.json b/action-scripts/brownie/abis/IChildChainStreamer.json new file mode 100644 index 000000000..ef356cc45 --- /dev/null +++ b/action-scripts/brownie/abis/IChildChainStreamer.json @@ -0,0 +1,246 @@ +[ + { + "name": "RewardDistributorUpdated", + "inputs": [ + { + "name": "reward_token", + "type": "address", + "indexed": true + }, + { + "name": "distributor", + "type": "address", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "RewardDurationUpdated", + "inputs": [ + { + "name": "reward_token", + "type": "address", + "indexed": true + }, + { + "name": "duration", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "stateMutability": "nonpayable", + "type": "constructor", + "inputs": [ + { + "name": "_bal_token", + "type": "address" + }, + { + "name": "_authorizerAdaptor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "add_reward", + "inputs": [ + { + "name": "_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + }, + { + "name": "_duration", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "remove_reward", + "inputs": [ + { + "name": "_token", + "type": "address" + }, + { + "name": "_recipient", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "get_reward", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "notify_reward_amount", + "inputs": [ + { + "name": "_token", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_reward_duration", + "inputs": [ + { + "name": "_token", + "type": "address" + }, + { + "name": "_duration", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_reward_distributor", + "inputs": [ + { + "name": "_token", + "type": "address" + }, + { + "name": "_distributor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "initialize", + "inputs": [ + { + "name": "reward_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_receiver", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_tokens", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_count", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_data", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "tuple", + "components": [ + { + "name": "distributor", + "type": "address" + }, + { + "name": "period_finish", + "type": "uint256" + }, + { + "name": "rate", + "type": "uint256" + }, + { + "name": "duration", + "type": "uint256" + }, + { + "name": "received", + "type": "uint256" + }, + { + "name": "paid", + "type": "uint256" + } + ] + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "last_update_time", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + } +] diff --git a/action-scripts/brownie/abis/IComposibleStable.json b/action-scripts/brownie/abis/IComposibleStable.json new file mode 100644 index 000000000..6c192e419 --- /dev/null +++ b/action-scripts/brownie/abis/IComposibleStable.json @@ -0,0 +1,1409 @@ +[ + { + "inputs": [ + { + "components": [ + { + "internalType": "contract IVault", + "name": "vault", + "type": "address" + }, + { + "internalType": "contract IProtocolFeePercentagesProvider", + "name": "protocolFeeProvider", + "type": "address" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol", + "type": "string" + }, + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "contract IRateProvider[]", + "name": "rateProviders", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "tokenRateCacheDurations", + "type": "uint256[]" + }, + { + "internalType": "bool[]", + "name": "exemptFromYieldProtocolFeeFlags", + "type": "bool[]" + }, + { + "internalType": "uint256", + "name": "amplificationParameter", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "pauseWindowDuration", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodDuration", + "type": "uint256" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + } + ], + "internalType": "struct ComposableStablePool.NewPoolParams", + "name": "params", + "type": "tuple" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "startValue", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "endValue", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "startTime", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "AmpUpdateStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "currentValue", + "type": "uint256" + } + ], + "name": "AmpUpdateStopped", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bool", + "name": "paused", + "type": "bool" + } + ], + "name": "PausedStateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFeePercentage", + "type": "uint256" + } + ], + "name": "ProtocolFeePercentageCacheUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bool", + "name": "enabled", + "type": "bool" + } + ], + "name": "RecoveryModeStateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "SwapFeePercentageChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "tokenIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + } + ], + "name": "TokenRateCacheUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "tokenIndex", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "contract IRateProvider", + "name": "provider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "cacheDuration", + "type": "uint256" + } + ], + "name": "TokenRateProviderSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [], + "name": "DELEGATE_PROTOCOL_SWAP_FEES_SENTINEL", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DOMAIN_SEPARATOR", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "disableRecoveryMode", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "enableRecoveryMode", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + } + ], + "name": "getActionId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getActualSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAmplificationParameter", + "outputs": [ + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isUpdating", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "precision", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAuthorizer", + "outputs": [ + { + "internalType": "contract IAuthorizer", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getBptIndex", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getDomainSeparator", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getLastJoinExitData", + "outputs": [ + { + "internalType": "uint256", + "name": "lastJoinExitAmplification", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "lastPostJoinExitInvariant", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getMinimumBpt", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getNextNonce", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPausedState", + "outputs": [ + { + "internalType": "bool", + "name": "paused", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "pauseWindowEndTime", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodEndTime", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPoolId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + } + ], + "name": "getProtocolFeePercentageCache", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getProtocolFeesCollector", + "outputs": [ + { + "internalType": "contract IProtocolFeesCollector", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getProtocolSwapFeeDelegation", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getRateProviders", + "outputs": [ + { + "internalType": "contract IRateProvider[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getScalingFactors", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getSwapFeePercentage", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "getTokenRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "getTokenRateCache", + "outputs": [ + { + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "oldRate", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "expires", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getVault", + "outputs": [ + { + "internalType": "contract IVault", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "inRecoveryMode", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "isTokenExemptFromYieldProtocolFee", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "onExitPool", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "onJoinPool", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "enum IVault.SwapKind", + "name": "kind", + "type": "uint8" + }, + { + "internalType": "contract IERC20", + "name": "tokenIn", + "type": "address" + }, + { + "internalType": "contract IERC20", + "name": "tokenOut", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "internalType": "struct IPoolSwapStructs.SwapRequest", + "name": "swapRequest", + "type": "tuple" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "indexIn", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "indexOut", + "type": "uint256" + } + ], + "name": "onSwap", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "permit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "queryExit", + "outputs": [ + { + "internalType": "uint256", + "name": "bptIn", + "type": "uint256" + }, + { + "internalType": "uint256[]", + "name": "amountsOut", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "queryJoin", + "outputs": [ + { + "internalType": "uint256", + "name": "bptOut", + "type": "uint256" + }, + { + "internalType": "uint256[]", + "name": "amountsIn", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes", + "name": "poolConfig", + "type": "bytes" + } + ], + "name": "setAssetManagerPoolConfig", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "stopAmplificationParameterUpdate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "updateProtocolFeePercentageCache", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "updateTokenRateCache", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/action-scripts/brownie/abis/IGnosisSafe.json b/action-scripts/brownie/abis/IGnosisSafe.json new file mode 100644 index 000000000..9e1759a4c --- /dev/null +++ b/action-scripts/brownie/abis/IGnosisSafe.json @@ -0,0 +1,631 @@ +[ + { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "AddedOwner", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "approvedHash", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "ApproveHash", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "handler", + "type": "address" + } + ], + "name": "ChangedFallbackHandler", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "guard", + "type": "address" + } + ], + "name": "ChangedGuard", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "ChangedThreshold", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "DisabledModule", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "EnabledModule", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "txHash", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "payment", + "type": "uint256" + } + ], + "name": "ExecutionFailure", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "ExecutionFromModuleFailure", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "ExecutionFromModuleSuccess", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "txHash", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "payment", + "type": "uint256" + } + ], + "name": "ExecutionSuccess", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "RemovedOwner", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeReceived", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "initiator", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "owners", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "initializer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "fallbackHandler", + "type": "address" + } + ], + "name": "SafeSetup", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "msgHash", + "type": "bytes32" + } + ], + "name": "SignMsg", + "type": "event" + }, + { "stateMutability": "nonpayable", "type": "fallback" }, + { + "inputs": [], + "name": "VERSION", + "outputs": [{ "internalType": "string", "name": "", "type": "string" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "addOwnerWithThreshold", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "bytes32", "name": "hashToApprove", "type": "bytes32" } + ], + "name": "approveHash", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "", "type": "address" }, + { "internalType": "bytes32", "name": "", "type": "bytes32" } + ], + "name": "approvedHashes", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "changeThreshold", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "bytes32", "name": "dataHash", "type": "bytes32" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { "internalType": "bytes", "name": "signatures", "type": "bytes" }, + { + "internalType": "uint256", + "name": "requiredSignatures", + "type": "uint256" + } + ], + "name": "checkNSignatures", + "outputs": [], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "bytes32", "name": "dataHash", "type": "bytes32" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { "internalType": "bytes", "name": "signatures", "type": "bytes" } + ], + "name": "checkSignatures", + "outputs": [], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "prevModule", "type": "address" }, + { "internalType": "address", "name": "module", "type": "address" } + ], + "name": "disableModule", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "domainSeparator", + "outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "module", "type": "address" } + ], + "name": "enableModule", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { + "internalType": "enum Enum.Operation", + "name": "operation", + "type": "uint8" + }, + { "internalType": "uint256", "name": "safeTxGas", "type": "uint256" }, + { "internalType": "uint256", "name": "baseGas", "type": "uint256" }, + { "internalType": "uint256", "name": "gasPrice", "type": "uint256" }, + { "internalType": "address", "name": "gasToken", "type": "address" }, + { + "internalType": "address", + "name": "refundReceiver", + "type": "address" + }, + { "internalType": "uint256", "name": "_nonce", "type": "uint256" } + ], + "name": "encodeTransactionData", + "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { + "internalType": "enum Enum.Operation", + "name": "operation", + "type": "uint8" + }, + { "internalType": "uint256", "name": "safeTxGas", "type": "uint256" }, + { "internalType": "uint256", "name": "baseGas", "type": "uint256" }, + { "internalType": "uint256", "name": "gasPrice", "type": "uint256" }, + { "internalType": "address", "name": "gasToken", "type": "address" }, + { + "internalType": "address payable", + "name": "refundReceiver", + "type": "address" + }, + { "internalType": "bytes", "name": "signatures", "type": "bytes" } + ], + "name": "execTransaction", + "outputs": [{ "internalType": "bool", "name": "success", "type": "bool" }], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { + "internalType": "enum Enum.Operation", + "name": "operation", + "type": "uint8" + } + ], + "name": "execTransactionFromModule", + "outputs": [{ "internalType": "bool", "name": "success", "type": "bool" }], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { + "internalType": "enum Enum.Operation", + "name": "operation", + "type": "uint8" + } + ], + "name": "execTransactionFromModuleReturnData", + "outputs": [ + { "internalType": "bool", "name": "success", "type": "bool" }, + { "internalType": "bytes", "name": "returnData", "type": "bytes" } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getChainId", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "start", "type": "address" }, + { "internalType": "uint256", "name": "pageSize", "type": "uint256" } + ], + "name": "getModulesPaginated", + "outputs": [ + { "internalType": "address[]", "name": "array", "type": "address[]" }, + { "internalType": "address", "name": "next", "type": "address" } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getOwners", + "outputs": [ + { "internalType": "address[]", "name": "", "type": "address[]" } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "uint256", "name": "offset", "type": "uint256" }, + { "internalType": "uint256", "name": "length", "type": "uint256" } + ], + "name": "getStorageAt", + "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getThreshold", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { + "internalType": "enum Enum.Operation", + "name": "operation", + "type": "uint8" + }, + { "internalType": "uint256", "name": "safeTxGas", "type": "uint256" }, + { "internalType": "uint256", "name": "baseGas", "type": "uint256" }, + { "internalType": "uint256", "name": "gasPrice", "type": "uint256" }, + { "internalType": "address", "name": "gasToken", "type": "address" }, + { + "internalType": "address", + "name": "refundReceiver", + "type": "address" + }, + { "internalType": "uint256", "name": "_nonce", "type": "uint256" } + ], + "name": "getTransactionHash", + "outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "module", "type": "address" } + ], + "name": "isModuleEnabled", + "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "owner", "type": "address" } + ], + "name": "isOwner", + "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "nonce", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "owner", "type": "address" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" } + ], + "name": "removeOwner", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "uint256", "name": "value", "type": "uint256" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { + "internalType": "enum Enum.Operation", + "name": "operation", + "type": "uint8" + } + ], + "name": "requiredTxGas", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "handler", "type": "address" } + ], + "name": "setFallbackHandler", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "guard", "type": "address" } + ], + "name": "setGuard", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address[]", "name": "_owners", "type": "address[]" }, + { "internalType": "uint256", "name": "_threshold", "type": "uint256" }, + { "internalType": "address", "name": "to", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { + "internalType": "address", + "name": "fallbackHandler", + "type": "address" + }, + { "internalType": "address", "name": "paymentToken", "type": "address" }, + { "internalType": "uint256", "name": "payment", "type": "uint256" }, + { + "internalType": "address payable", + "name": "paymentReceiver", + "type": "address" + } + ], + "name": "setup", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }], + "name": "signedMessages", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "targetContract", + "type": "address" + }, + { "internalType": "bytes", "name": "calldataPayload", "type": "bytes" } + ], + "name": "simulateAndRevert", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { "internalType": "address", "name": "prevOwner", "type": "address" }, + { "internalType": "address", "name": "oldOwner", "type": "address" }, + { "internalType": "address", "name": "newOwner", "type": "address" } + ], + "name": "swapOwner", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { "stateMutability": "payable", "type": "receive" } +] diff --git a/action-scripts/brownie/abis/IRewardsOnlyGauge.json b/action-scripts/brownie/abis/IRewardsOnlyGauge.json new file mode 100644 index 000000000..367353efe --- /dev/null +++ b/action-scripts/brownie/abis/IRewardsOnlyGauge.json @@ -0,0 +1,782 @@ +[ + { + "name": "Deposit", + "inputs": [ + { + "name": "provider", + "type": "address", + "indexed": true + }, + { + "name": "value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Withdraw", + "inputs": [ + { + "name": "provider", + "type": "address", + "indexed": true + }, + { + "name": "value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Transfer", + "inputs": [ + { + "name": "_from", + "type": "address", + "indexed": true + }, + { + "name": "_to", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "name": "Approval", + "inputs": [ + { + "name": "_owner", + "type": "address", + "indexed": true + }, + { + "name": "_spender", + "type": "address", + "indexed": true + }, + { + "name": "_value", + "type": "uint256", + "indexed": false + } + ], + "anonymous": false, + "type": "event" + }, + { + "stateMutability": "nonpayable", + "type": "constructor", + "inputs": [ + { + "name": "_bal_token", + "type": "address" + }, + { + "name": "_vault", + "type": "address" + }, + { + "name": "_authorizerAdaptor", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "decimals", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "version", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_contract", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "last_claim", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claimed_reward", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claimable_reward", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_data", + "inputs": [ + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "tuple", + "components": [ + { + "name": "token", + "type": "address" + }, + { + "name": "distributor", + "type": "address" + }, + { + "name": "period_finish", + "type": "uint256" + }, + { + "name": "rate", + "type": "uint256" + }, + { + "name": "last_update", + "type": "uint256" + }, + { + "name": "integral", + "type": "uint256" + } + ] + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claimable_reward_write", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_token", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_rewards_receiver", + "inputs": [ + { + "name": "_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "claim_rewards", + "inputs": [ + { + "name": "_addr", + "type": "address" + }, + { + "name": "_receiver", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_addr", + "type": "address" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "deposit", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_addr", + "type": "address" + }, + { + "name": "_claim_rewards", + "type": "bool" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw", + "inputs": [ + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw", + "inputs": [ + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_claim_rewards", + "type": "bool" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "transfer", + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "transferFrom", + "inputs": [ + { + "name": "_from", + "type": "address" + }, + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "allowance", + "inputs": [ + { + "name": "owner", + "type": "address" + }, + { + "name": "spender", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "approve", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "permit", + "inputs": [ + { + "name": "_owner", + "type": "address" + }, + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + }, + { + "name": "_deadline", + "type": "uint256" + }, + { + "name": "_v", + "type": "uint8" + }, + { + "name": "_r", + "type": "bytes32" + }, + { + "name": "_s", + "type": "bytes32" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "increaseAllowance", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_added_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "decreaseAllowance", + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_subtracted_value", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bool" + } + ] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "set_rewards", + "inputs": [ + { + "name": "_reward_contract", + "type": "address" + }, + { + "name": "_claim_sig", + "type": "bytes32" + }, + { + "name": "_reward_tokens", + "type": "address[8]" + } + ], + "outputs": [] + }, + { + "stateMutability": "nonpayable", + "type": "function", + "name": "initialize", + "inputs": [ + { + "name": "_lp_token", + "type": "address" + }, + { + "name": "_reward_contract", + "type": "address" + }, + { + "name": "_claim_sig", + "type": "bytes32" + } + ], + "outputs": [] + }, + { + "stateMutability": "view", + "type": "function", + "name": "lp_token", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "balanceOf", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "totalSupply", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "name", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "symbol", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "string" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "DOMAIN_SEPARATOR", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes32" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "nonces", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_tokens", + "inputs": [ + { + "name": "arg0", + "type": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_balances", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "rewards_receiver", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "address" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "claim_sig", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_integral", + "inputs": [ + { + "name": "arg0", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + }, + { + "stateMutability": "view", + "type": "function", + "name": "reward_integral_for", + "inputs": [ + { + "name": "arg0", + "type": "address" + }, + { + "name": "arg1", + "type": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "uint256" + } + ] + } +] diff --git a/action-scripts/brownie/abis/IVault.json b/action-scripts/brownie/abis/IVault.json new file mode 100644 index 000000000..683e4bf7b --- /dev/null +++ b/action-scripts/brownie/abis/IVault.json @@ -0,0 +1 @@ +[{"inputs":[{"internalType":"contract IAuthorizer","name":"authorizer","type":"address"},{"internalType":"contract IWETH","name":"weth","type":"address"},{"internalType":"uint256","name":"pauseWindowDuration","type":"uint256"},{"internalType":"uint256","name":"bufferPeriodDuration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IAuthorizer","name":"newAuthorizer","type":"address"}],"name":"AuthorizerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExternalBalanceTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IFlashLoanRecipient","name":"recipient","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"FlashLoan","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"int256","name":"delta","type":"int256"}],"name":"InternalBalanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"paused","type":"bool"}],"name":"PausedStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"indexed":false,"internalType":"int256[]","name":"deltas","type":"int256[]"},{"indexed":false,"internalType":"uint256[]","name":"protocolFeeAmounts","type":"uint256[]"}],"name":"PoolBalanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"assetManager","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"int256","name":"cashDelta","type":"int256"},{"indexed":false,"internalType":"int256","name":"managedDelta","type":"int256"}],"name":"PoolBalanceManaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"poolAddress","type":"address"},{"indexed":false,"internalType":"enum IVault.PoolSpecialization","name":"specialization","type":"uint8"}],"name":"PoolRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"relayer","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"RelayerApprovalChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":true,"internalType":"contract IERC20","name":"tokenIn","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"tokenOut","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":false,"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"name":"TokensDeregistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":false,"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"indexed":false,"internalType":"address[]","name":"assetManagers","type":"address[]"}],"name":"TokensRegistered","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IVault.SwapKind","name":"kind","type":"uint8"},{"components":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"uint256","name":"assetInIndex","type":"uint256"},{"internalType":"uint256","name":"assetOutIndex","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"}],"internalType":"struct IVault.BatchSwapStep[]","name":"swaps","type":"tuple[]"},{"internalType":"contract IAsset[]","name":"assets","type":"address[]"},{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"fromInternalBalance","type":"bool"},{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"bool","name":"toInternalBalance","type":"bool"}],"internalType":"struct IVault.FundManagement","name":"funds","type":"tuple"},{"internalType":"int256[]","name":"limits","type":"int256[]"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"batchSwap","outputs":[{"internalType":"int256[]","name":"assetDeltas","type":"int256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"name":"deregisterTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"address payable","name":"recipient","type":"address"},{"components":[{"internalType":"contract IAsset[]","name":"assets","type":"address[]"},{"internalType":"uint256[]","name":"minAmountsOut","type":"uint256[]"},{"internalType":"bytes","name":"userData","type":"bytes"},{"internalType":"bool","name":"toInternalBalance","type":"bool"}],"internalType":"struct IVault.ExitPoolRequest","name":"request","type":"tuple"}],"name":"exitPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IFlashLoanRecipient","name":"recipient","type":"address"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"userData","type":"bytes"}],"name":"flashLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getActionId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuthorizer","outputs":[{"internalType":"contract IAuthorizer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"name":"getInternalBalance","outputs":[{"internalType":"uint256[]","name":"balances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNextNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPausedState","outputs":[{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"uint256","name":"pauseWindowEndTime","type":"uint256"},{"internalType":"uint256","name":"bufferPeriodEndTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"}],"name":"getPool","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"enum IVault.PoolSpecialization","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"getPoolTokenInfo","outputs":[{"internalType":"uint256","name":"cash","type":"uint256"},{"internalType":"uint256","name":"managed","type":"uint256"},{"internalType":"uint256","name":"lastChangeBlock","type":"uint256"},{"internalType":"address","name":"assetManager","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"}],"name":"getPoolTokens","outputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"balances","type":"uint256[]"},{"internalType":"uint256","name":"lastChangeBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getProtocolFeesCollector","outputs":[{"internalType":"contract ProtocolFeesCollector","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"relayer","type":"address"}],"name":"hasApprovedRelayer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"components":[{"internalType":"contract IAsset[]","name":"assets","type":"address[]"},{"internalType":"uint256[]","name":"maxAmountsIn","type":"uint256[]"},{"internalType":"bytes","name":"userData","type":"bytes"},{"internalType":"bool","name":"fromInternalBalance","type":"bool"}],"internalType":"struct IVault.JoinPoolRequest","name":"request","type":"tuple"}],"name":"joinPool","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"enum IVault.PoolBalanceOpKind","name":"kind","type":"uint8"},{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IVault.PoolBalanceOp[]","name":"ops","type":"tuple[]"}],"name":"managePoolBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"enum IVault.UserBalanceOpKind","name":"kind","type":"uint8"},{"internalType":"contract IAsset","name":"asset","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"address payable","name":"recipient","type":"address"}],"internalType":"struct IVault.UserBalanceOp[]","name":"ops","type":"tuple[]"}],"name":"manageUserBalance","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"enum IVault.SwapKind","name":"kind","type":"uint8"},{"components":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"uint256","name":"assetInIndex","type":"uint256"},{"internalType":"uint256","name":"assetOutIndex","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"}],"internalType":"struct IVault.BatchSwapStep[]","name":"swaps","type":"tuple[]"},{"internalType":"contract IAsset[]","name":"assets","type":"address[]"},{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"fromInternalBalance","type":"bool"},{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"bool","name":"toInternalBalance","type":"bool"}],"internalType":"struct IVault.FundManagement","name":"funds","type":"tuple"}],"name":"queryBatchSwap","outputs":[{"internalType":"int256[]","name":"","type":"int256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IVault.PoolSpecialization","name":"specialization","type":"uint8"}],"name":"registerPool","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"address[]","name":"assetManagers","type":"address[]"}],"name":"registerTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IAuthorizer","name":"newAuthorizer","type":"address"}],"name":"setAuthorizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"relayer","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setRelayerApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"enum IVault.SwapKind","name":"kind","type":"uint8"},{"internalType":"contract IAsset","name":"assetIn","type":"address"},{"internalType":"contract IAsset","name":"assetOut","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"}],"internalType":"struct IVault.SingleSwap","name":"singleSwap","type":"tuple"},{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"fromInternalBalance","type":"bool"},{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"bool","name":"toInternalBalance","type":"bool"}],"internalType":"struct IVault.FundManagement","name":"funds","type":"tuple"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swap","outputs":[{"internalType":"uint256","name":"amountCalculated","type":"uint256"}],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}] \ No newline at end of file diff --git a/action-scripts/brownie/abis/IWeightedPoolFactoryV4.json b/action-scripts/brownie/abis/IWeightedPoolFactoryV4.json new file mode 100644 index 000000000..dbe604e07 --- /dev/null +++ b/action-scripts/brownie/abis/IWeightedPoolFactoryV4.json @@ -0,0 +1,273 @@ +[ + { + "inputs": [ + { + "internalType": "contract IVault", + "name": "vault", + "type": "address" + }, + { + "internalType": "contract IProtocolFeePercentagesProvider", + "name": "protocolFeeProvider", + "type": "address" + }, + { + "internalType": "string", + "name": "factoryVersion", + "type": "string" + }, + { + "internalType": "string", + "name": "poolVersion", + "type": "string" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [], + "name": "FactoryDisabled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "pool", + "type": "address" + } + ], + "name": "PoolCreated", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol", + "type": "string" + }, + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "normalizedWeights", + "type": "uint256[]" + }, + { + "internalType": "contract IRateProvider[]", + "name": "rateProviders", + "type": "address[]" + }, + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "create", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "disable", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + } + ], + "name": "getActionId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAuthorizer", + "outputs": [ + { + "internalType": "contract IAuthorizer", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getCreationCode", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getCreationCodeContracts", + "outputs": [ + { + "internalType": "address", + "name": "contractA", + "type": "address" + }, + { + "internalType": "address", + "name": "contractB", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPauseConfiguration", + "outputs": [ + { + "internalType": "uint256", + "name": "pauseWindowDuration", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodDuration", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPoolVersion", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getProtocolFeePercentagesProvider", + "outputs": [ + { + "internalType": "contract IProtocolFeePercentagesProvider", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getVault", + "outputs": [ + { + "internalType": "contract IVault", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "isDisabled", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "pool", + "type": "address" + } + ], + "name": "isPoolFromFactory", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + } +] diff --git a/action-scripts/brownie/brownie-config.yaml b/action-scripts/brownie/brownie-config.yaml new file mode 100644 index 000000000..2dd5c13c5 --- /dev/null +++ b/action-scripts/brownie/brownie-config.yaml @@ -0,0 +1,7 @@ +autofetch_sources: True + +networks: + default: mainnet + +dotenv: .env + diff --git a/action-scripts/brownie/helpers b/action-scripts/brownie/helpers new file mode 120000 index 000000000..b739917eb --- /dev/null +++ b/action-scripts/brownie/helpers @@ -0,0 +1 @@ +../../tools/python/brownie/helpers/ \ No newline at end of file diff --git a/action-scripts/brownie/networks.yaml b/action-scripts/brownie/networks.yaml new file mode 100644 index 000000000..1541e38ba --- /dev/null +++ b/action-scripts/brownie/networks.yaml @@ -0,0 +1,40 @@ +live: + - name: Gnosis Chain + networks: + - chainid: 100 + explorer: https://api.gnosisscan.io/api + host: https://rpc.gnosischain.com/ + id: gnosis-main + name: Mainnet + + - name: Avalanche + networks: + - chainid: 43114 + explorer: https://api.snowscan.xyz/api + host: https://avalanche-c-chain.publicnode.com + id: avax-main + name: C-Chain + + - name: Fantom Opera + networks: + - chainid: 250 + explorer: https://api.ftmscan.com/api + host: https://rpcapi.fantom.network + id: fantom-main + name: Mainnet + + - name: Mode + networks: + - chainid: 34443 + explorer: https://api.routescan.io/v2/network/mainnet/evm/34443/etherscan/api + host: https://mode.drpc.org + id: mode-main + name: Mainnet + + - name: Fraxtal + networks: + - chainid: 252 + explorer: https://api.fraxscan.com/api + host: https://rpc.frax.com + id: fraxtal-main + name: Mainnet diff --git a/action-scripts/brownie/requirements-actions.txt b/action-scripts/brownie/requirements-actions.txt new file mode 100644 index 000000000..25dc3c9df --- /dev/null +++ b/action-scripts/brownie/requirements-actions.txt @@ -0,0 +1,8 @@ +git+https://github.com/BalancerMaxis/bal_addresses@0.9.10 +git+https://github.com/BalancerMaxis/brownie@v1.20.x +prettytable +dotmap +pathlib +pandas==1.5.3 +safe-eth-py<6.0.0 +eth-abi diff --git a/action-scripts/brownie/scripts/get_gauge_mappings.py b/action-scripts/brownie/scripts/get_gauge_mappings.py new file mode 100644 index 000000000..8ef7435d5 --- /dev/null +++ b/action-scripts/brownie/scripts/get_gauge_mappings.py @@ -0,0 +1,298 @@ +from brownie import Contract, network +from bal_addresses import AddrBook +from bal_addresses import to_checksum_address +import json +from prettytable import PrettyTable +import os +from urllib.request import urlopen +from pathlib import Path + +a = AddrBook("mainnet") +flatbook = a.flatbook +debug = False + + +def dicts_to_table_string(dict_list, header=None): + table = PrettyTable(header) + for dict_ in dict_list: + table.add_row(list(dict_.values())) + table.align["pool_name"] = "l" + table.align["function"] = "l" + table.align["style"] = "l" + return str(table) + + +def get_pool_info(poolAddress): + poolABI = json.load(open("abis/IBalPool.json", "r")) + pool = Contract.from_abi(name="IBalPool", address=poolAddress, abi=poolABI) + try: + (aFactor, ramp, divisor) = pool.getAmplificationParameter() + aFactor = int(aFactor / divisor) + if not isinstance(aFactor, int): + aFactor = "N/A" + except: + aFactor = "N/A" + name = pool.name() + symbol = pool.symbol() + try: + poolId = str(pool.getPoolId()) + except: + poolId = "Custom" + try: + fee = pool.getSwapFeePercentage() / 1e16 + except: + fee = "Not Found" + if pool.totalSupply == 0: + symbol = f"WARN: {symbol} no initjoin" + return (name, symbol, poolId, pool.address, aFactor, fee) + + +def get_payload_list(): + github_repo = os.environ["GITHUB_REPOSITORY"] + pr_number = os.environ["PR_NUMBER"] + api_url = f"https://api.github.com/repos/{github_repo}/pulls/{pr_number}/files" + if debug: + print(f"api url: {api_url}") + url = urlopen(api_url) + pr_file_data = json.loads(url.read()) + + changed_files = [] + for file_json in pr_file_data: + filename = file_json["filename"] + if debug: + print(filename) + if "BIPs/" in filename and filename.endswith(".json"): + changed_files.append(filename) + if debug: + print(f"Changed Files:{changed_files}") + return changed_files + + +def gen_report(payload_list): + report = "" + reports = [] + for file in payload_list: + print(f"Processing: {file}") + if not file.endswith(".json"): + continue + with open(f"../../{file}", "r") as json_data: + try: + payload = json.load(json_data) + except: + print(f"{file} is not proper json") + continue + if isinstance(payload, dict) is False: + print(f"{file} json is not a dict") + continue + if "transactions" not in payload.keys(): + print(f"{file} json deos not contain a list of transactions") + continue + network.disconnect() + network.connect("mainnet") + outputs = [] + tx_list = payload["transactions"] + gauge_controller = Contract( + flatbook[a.search_unique("GaugeController")].address + ) + for transaction in tx_list: + style = False + gauge_address = False + if ( + transaction["to"] == flatbook[a.search_unique("v3/GaugeAdder").address] + or transaction["to"] + == flatbook[a.search_unique("v4/GaugeAdder").address] + ): + for k in transaction["contractInputsValues"].keys(): + if k == "rootGauge": + command = transaction["contractMethod"]["name"] + gauge_address = transaction["contractInputsValues"]["rootGauge"] + break + elif k == "gauge": + gauge_address = transaction["contractInputsValues"]["gauge"] + command = transaction["contractMethod"]["name"] + break + else: + print("gauge address not found in GaugeAdder call") + continue + + else: + try: + if transaction["contractMethod"]["name"] != "performAction": + continue ## Not a passthrough tx + except: + print( + f"No ABI with name in payload, can't process this tx, probs not a gauge." + ) + continue + if gauge_address == False: + authorizer_target_contract = to_checksum_address( + transaction["contractInputsValues"]["target"] + ) + if authorizer_target_contract == gauge_controller: + try: + (command, inputs) = gauge_controller.decode_input( + transaction["contractInputsValues"]["data"] + ) + except: + print( + f"\n\n\n ERROR: bad call data to gauge controller: {transaction['contractInputsValues']['data']}" + ) + outputs.append( + { + "function": "Bad Call Data", + "pool_id": transaction["contractInputsValues"]["data"], + "symbol": "!!!", + "pool_address": "!!!", + "aFactor": "!!!", + "gauge_address": "!!!", + "cap": f"!!!", + "style": "!!!", + } + ) + continue + else: # Kills are called directly on gauges, so assuming a json with gauge adds disables if it's not a gauge control it's a gauge. + (command, inputs) = Contract( + authorizer_target_contract + ).decode_input(transaction["contractInputsValues"]["data"]) + + # print(inputs) + if len(inputs) == 0: ## Is a gauge kill + gauge_address = transaction["contractInputsValues"]["target"] + else: + gauge_address = inputs[0] + + gauge = Contract(gauge_address) + + fxSelectorToChain = { + "getTotalBridgeCost": "arbitrum", + "getPolygonBridge": "polygon", + "getArbitrumBridge": "arbitrum", + "getGnosisBridge": "gnosis", + "getOptimismBridge": "optimism", + } + + fingerprintFx = list( + set(gauge.selectors.values()).intersection( + list(fxSelectorToChain.keys()) + ) + ) + if len(fingerprintFx) > 0: ## Is sidechain + l2 = fxSelectorToChain[fingerprintFx[0]] + # print(l2, gauge.getRecipient()) + recipient = gauge.getRecipient() + chain = f"{l2}-main" + network.disconnect() + network.connect(chain) + l2hop1 = Contract(recipient) + ## Check if this is a new l0 style gauge + if ( + "reward_receiver" in l2hop1.selectors.values() + ): ## Old child chain streamer style + l2hop2 = Contract(l2hop1.reward_receiver()) + ( + pool_name, + pool_symbol, + poolId, + pool_address, + aFactor, + fee, + ) = get_pool_info(l2hop2.lp_token()) + style = "ChildChainStreamer" + gauge_symbol = l2hop2.symbol() + else: # L0 style + ( + pool_name, + pool_symbol, + poolId, + pool_address, + aFactor, + fee, + ) = get_pool_info(l2hop1.lp_token()) + style = "L0 sidechain" + gauge_symbol = l2hop1.symbol() + ## Go back to mainnet + network.disconnect() + network.connect("mainnet") + elif "name" not in gauge.selectors.values(): + try: + recipient = Contract(gauge.getRecipient()) + escrow = Contract(recipient.getVotingEscrow()) + ( + pool_name, + pool_symbol, + poolId, + pool_address, + aFactor, + fee, + ) = get_pool_info(escrow.token()) + style = "Single Recipient" + gauge_symbol = "N/A" + except: + style = "Single Recipient" + + else: + ( + pool_name, + pool_symbol, + poolId, + pool_address, + aFactor, + fee, + ) = get_pool_info(gauge.lp_token()) + gauge_symbol = gauge.symbol() + if not style: + style = "mainnet" + if "getRelativeWeightCap" in gauge.selectors.values(): + cap = gauge.getRelativeWeightCap() / 10**16 + else: + cap = "N/A" + + ### Do checks + print(f"Processed: {pool_name}, gauge: {gauge_address}, style: {style}") + if "-gauge" in pool_symbol: + pool_address = f"ERROR: Gauge points to another Gauge: {pool_address}" + if pool_symbol not in gauge_symbol and "N/A" not in gauge_symbol: + gauge_address = ( + f"ERROR, {gauge_symbol} doesnt match {pool_symbol}: {gauge_address}" + ) + + outputs.append( + { + "function": command, + "pool_id": str(poolId), + "symbol": pool_symbol, + "pool_address": pool_address, + "aFactor": aFactor, + "gauge_address": gauge_address, + "fee": f"{fee}%", + "cap": f"{cap}%", + "style": style, + } + ) + if outputs == []: + print(f"No gauge changes found in {file}, skipping.") + continue + report += f"{file}\nCOMMIT: {os.environ['COMMIT_SHA']}\n```\n" + report += dicts_to_table_string(outputs, outputs[0].keys()) + report += "\n```\n" + reports.append(report) + report = "" + return reports + + +def main(): + reports = gen_report(get_payload_list()) + ### Generate comment output + with open("output.txt", "w") as f: + for report in reports: + f.write(report) + ### Generate output files + for report in reports: + filename = Path(f"{report.splitlines()[0]}") + filename = filename.with_suffix(".report.txt") + with open(f"../../{filename}", "w") as f: + f.write(report) + + +if __name__ == "__main__": + main() diff --git a/action-scripts/brownie/scripts/pokeInjectors.py b/action-scripts/brownie/scripts/pokeInjectors.py new file mode 100644 index 000000000..ab214aa77 --- /dev/null +++ b/action-scripts/brownie/scripts/pokeInjectors.py @@ -0,0 +1,72 @@ +from bal_addresses import AddrBook +from brownie import network, accounts, Contract +import os + + +CHAINS_TO_KEEP = ["zkevm-main", "mode-main", "fraxtal-main"] + + +def main(): + ## LOAD wallet + errors = False + try: + mnemonic = os.environ["KEYWORDS"] + account = accounts.from_mnemonic(mnemonic) + except: + # allows to run in fork + account = accounts.at("0x737760C760FfEc370F84861E4Be4AFF7093Ffa3f", force=True) + print(f"Keeper Address: {account.address}") + for chain in CHAINS_TO_KEEP: + try: + network.disconnect() + except: + pass + try: + network.connect(chain) + except: + print(f"Skipping {chain} because no network can be found") + continue + try: + book = AddrBook(chain.replace("-main", "")) + except: + print( + f"Skipping {chain} because no Address Information can be found in bal_addresses" + ) + continue + to_poke = [] + try: + to_poke += book.extras.maxiKeepers.gaugeRewardsInjectors.values() + except: + print(f"no gaugeRewardsInjectors found in {chain}") + try: + to_poke.append(book.extras.maxiKeepers.gasStation) + except: + print(f"no gasStation found in {chain}") + for address in to_poke: + try: + c = Contract(address) + except Exception as e: + print( + f"WARNING: {chain}:{address}: failed to import contract (maybe scanner issues)? {e}" + ) + errors = True + continue + (ready, performdata) = c.checkUpkeep(b"") + if ready: + try: + c.performUpkeep(performdata, {"from": account}) + except Exception as e: + print( + f"WARNING: {chain}: {c.address}({book.reversebook.get(c.address)}) failed: {e}" + ) + errors = True + else: + print( + f"{chain}: {c.address}({book.reversebook.get(c.address)}) not ready" + ) + if errors: + raise Exception("Some transactions failed") + + +if __name__ == "__main__": + main() diff --git a/action-scripts/brownie/scripts/reports.py b/action-scripts/brownie/scripts/reports.py new file mode 100644 index 000000000..3ce3a94da --- /dev/null +++ b/action-scripts/brownie/scripts/reports.py @@ -0,0 +1,807 @@ +from typing import Callable +from typing import Optional + +from bal_addresses import AddrBook, BalPermissions +from bal_tools import Aura, BalPoolsGauges +from bal_addresses import to_checksum_address, is_address +from brownie import Contract +from brownie import web3 +from collections import defaultdict + +from .script_utils import parse_txbuilder_list_string +from .script_utils import format_into_report +from .script_utils import get_changed_files +from .script_utils import get_pool_info +from .script_utils import merge_files +from .script_utils import extract_bip_number +from .script_utils import extract_bip_number_from_file_name +from .script_utils import get_rate_provider_review_summaries +from .script_utils import prettify_contract_inputs_values +from .script_utils import prettify_tokens_list +from .script_utils import prettify_gauge_list +from .script_utils import prettify_int_amounts, prettify_int_amount +from .script_utils import prettify_aura_pid +from .script_utils import prettify_flat_list +from .script_utils import prettify_address +from .script_utils import return_hh_brib_maps +from .script_utils import switch_chain_if_needed + +from datetime import datetime + +import json + +GAUGE_ABI = json.load(open("abis/IChildChainGauge.json")) + +ADDR_BOOK = AddrBook("mainnet") +FLATBOOK = ADDR_BOOK.flatbook +GAUGE_ADD_METHODS = ["gauge", "rootGauge"] +CMD_GAUGE_KILL = "killGauge()" +STYLE_MAINNET = "mainnet" +STYLE_SINGLE_RECIPIENT = "Single Recipient" +STYLE_CHILD_CHAIN_STREAMER = "ChildChainStreamer" +STYLE_L0 = "L0 sidechain" +CHAIN_MAINNET = "mainnet" + +# Update this if needed by pulling gauge types from gauge adder: +# https://etherscan.io/address/0x5DbAd78818D4c8958EfF2d5b95b28385A22113Cd#readContract +TYPE_TO_CHAIN_MAP = { + "Ethereum": CHAIN_MAINNET, + "Polygon": "polygon-main", + "Arbitrum": "arbitrum-main", + "Optimism": "optimism-main", + "Gnosis": "gnosis-main", + "PolygonZkEvm": "zkevm-main", + "Avalanche": "avax-main", + "Base": "base-main", + "Mode": "mode-main", + "Fraxtal": "fraxtal-main", + "EthereumSingleRecipientGauge": CHAIN_MAINNET, +} + +SELECTORS_MAPPING = { + "getPolygonBridge": "polygon-main", + "getArbitrumBridge": "arbitrum-main", + "getGnosisBridge": "gnosis-main", + "getOptimismBridge": "optimism-main", + "getPolygonZkEVMBridge": "zkevm-main", + "getAvalancheBridge": "avax-main", + "getBaseBridge": "base-main", +} + +ERC20_ABI = json.load(open("abis/ERC20.json", "r")) + +today = datetime.today().strftime("%Y-%m-%d") + + +def _extract_pool( + chain: str, gauge: Contract, gauge_selectors: dict +) -> tuple[str, str, str, str, str, str, str, list[str], list[str]]: + """ + Generic function used by handlers to extract pool info given chain and gauge. + Returns pool info + """ + # Process sidechain gauges + if chain != CHAIN_MAINNET: + recipient = gauge.getRecipient() + print(f"Recipient: {recipient}") + style = None + network_id = ADDR_BOOK.chain_ids_by_name[ + chain.replace("-main", "").replace("avax", "avalanche") + ] + switch_chain_if_needed(network_id=network_id) + try: + sidechain_recipient = Contract(recipient) + if "reward_receiver" in sidechain_recipient.selectors.values(): + sidechain_recipient = Contract(sidechain_recipient.reward_receiver()) + style = STYLE_CHILD_CHAIN_STREAMER + ( + pool_name, + pool_symbol, + pool_id, + pool_address, + a_factor, + fee, + tokens, + rate_providers, + ) = get_pool_info(sidechain_recipient.lp_token()) + except ValueError as e: + if ( + str(e) + == "Failed to retrieve data from API: {'status': '0', 'message': 'NOTOK', 'result': 'Contract source code not verified'}" + ): + pool_name = "CONTRACT_UNVERIFIED" + pool_symbol = "CONTRACT_UNVERIFIED" + pool_id = "CONTRACT_UNVERIFIED" + pool_address = "CONTRACT_UNVERIFIED" + a_factor = "CONTRACT_UNVERIFIED" + fee = "CONTRACT_UNVERIFIED" + tokens = [] + rate_providers = [] + sidechain_recipient = None + else: + raise e + style = style if style else STYLE_L0 + elif "name" not in gauge_selectors: # Process single recipient gauges + recipient = Contract(gauge.getRecipient()) + try: + escrow = Contract(recipient.getVotingEscrow()) + ( + pool_name, + pool_symbol, + pool_id, + pool_address, + a_factor, + fee, + tokens, + rate_providers, + ) = get_pool_info(escrow.token()) + except AttributeError: + # Exception Handling for single recipient gauges that are setup without using an escrow contract + # The escrow contract is normally the thing that holds all the data about the pool. + print( + f"WARNING!! Single recipient gauge found with no escrow/clear attement to a pool at {gauge.address} points to {gauge.getRecipient()}" + ) + pool_name = "UNKNOWN - No escrow" + pool_symbol = "N/A" + pool_id = "N/A - No Escrow" + pool_address = "N/A" + a_factor = "N/A" + fee = "N/A" + tokens = ["UNKNOWN"] + rate_providers = ["UNKNOWN"] + style = STYLE_SINGLE_RECIPIENT + sidechain_recipient = None + else: # Process mainnet gauges + ( + pool_name, + pool_symbol, + pool_id, + pool_address, + a_factor, + fee, + tokens, + rate_providers, + ) = get_pool_info(gauge.lp_token()) + style = STYLE_MAINNET + sidechain_recipient = None + tokens = prettify_tokens_list(tokens) + return ( + pool_name, + pool_symbol, + pool_id, + pool_address, + a_factor, + fee, + style, + tokens, + rate_providers, + sidechain_recipient, + ) + + +def _parse_aura_direct_incentive(transaction: dict, **kwargs) -> Optional[dict]: + """ + Parse injector changes + + Look up injector addresses and parse amounts. + + :param transaction: transaction to parse + :return: dict with parsed data + """ + chain_id = kwargs["chain_id"] + chain_name = AddrBook.chain_names_by_id.get(int(chain_id)) + chainbook = AddrBook(chain_name) + aura = Aura(chain_name) + if not transaction.get("contractInputsValues") or not transaction.get( + "contractMethod" + ): + return + if not transaction["contractMethod"].get("name") == "fundPool": + return + to_address = to_checksum_address(transaction["to"]) + switch_chain_if_needed(chain_id) + tokenAddress = to_checksum_address(transaction["contractInputsValues"]["_token"]) + with open("abis/ERC20.json", "r") as f: + token = Contract.from_abi("Token", tokenAddress, json.load(f)) + decimals = token.decimals() + symbol = token.symbol() + aura_pid = transaction["contractInputsValues"]["_pid"] + amount = transaction["contractInputsValues"]["_amount"] + periods = transaction["contractInputsValues"]["_periods"] + pretty_pid = prettify_aura_pid(aura_pid, aura) + pretty_amount = prettify_int_amount(amount, decimals) + return { + "function": "fundPool", + "chain": chainbook.chain, + "injector": f"{to_address}({chainbook.reversebook.get(to_address, 'Not Found')})", + "symbol": symbol, + "gauge_info": pretty_pid, + "amount_per_period": pretty_amount, + "periods": periods, + "tx_index": kwargs.get("tx_index", "N/A"), + } + + +def _parse_set_recipient_list(transaction: dict, **kwargs) -> Optional[dict]: + """ + Parse injector changes + + Look up injector addresses and parse amounts. + + :param transaction: transaction to parse + :return: dict with parsed data + """ + chain_id = kwargs["chain_id"] + chain_name = AddrBook.chain_names_by_id.get(int(chain_id)) + chainbook = AddrBook(chain_name) + if not transaction.get("contractInputsValues") or not transaction.get( + "contractMethod" + ): + return + if not transaction["contractMethod"].get("name") == "setRecipientList": + return + to_address = to_checksum_address(transaction["to"]) + switch_chain_if_needed(chain_id) + injector = Contract.from_explorer(to_address) + tokenAddress = injector.getInjectTokenAddress() + with open("abis/ERC20.json", "r") as f: + token = Contract.from_abi("Token", tokenAddress, json.load(f)) + decimals = token.decimals() + symbol = token.symbol() + gauge_addresses = parse_txbuilder_list_string( + transaction["contractInputsValues"]["gaugeAddresses"] + ) + amounts_per_period = parse_txbuilder_list_string( + transaction["contractInputsValues"]["amountsPerPeriod"] + ) + max_periods = parse_txbuilder_list_string( + transaction["contractInputsValues"]["maxPeriods"] + ) + assert len(gauge_addresses) == len(amounts_per_period) and len( + gauge_addresses + ) == len( + max_periods + ), f"List lentgh mismatch gauges:{len(gauge_addresses)}, amounts:{len(amounts_per_period)}, max_periods:{len(max_periods)}" + pretty_gauges = prettify_gauge_list(gauge_addresses, chainbook) + pretty_amounts = prettify_int_amounts(amounts_per_period, decimals) + total_amount_first_period = sum([int(x) for x in amounts_per_period]) + return { + "function": "setRecipientList", + "chain": chainbook.chain, + "injector": f"{to_address}({chainbook.reversebook.get(to_address, 'Not Found')})", + "symbol": symbol, + "gaugeList": json.dumps(pretty_gauges, indent=1), + "amounts_per_period": json.dumps(pretty_amounts, indent=1), + "periods": json.dumps(max_periods, indent=1), + "total_amount_first_period": f"raw: {total_amount_first_period}/1e{decimals} = {total_amount_first_period / 10 ** decimals}", + "tx_index": kwargs.get("tx_index", "N/A"), + } + + +def _parse_hh_brib(transaction: dict, **kwargs) -> Optional[dict]: + """ + Parse Hidden Hand Bribe transactions + + Look up the proposals and return a human readable pool + amount. + + :param transaction: transaction to parse + :return: dict with parsed data + """ + chain_id = kwargs["chain_id"] + chain_name = AddrBook.chain_names_by_id.get(int(chain_id)) + chainbook = AddrBook(chain_name) + switch_chain_if_needed(chain_id) + if not transaction.get("contractInputsValues") or not transaction.get( + "contractMethod" + ): + return + if not transaction["contractMethod"].get("name") == "depositBribe": + return + ## Grab Proposal data and briber addresses + prop_map = return_hh_brib_maps() + aura_briber = chainbook.extras.hidden_hand2.get("aura_briber") + bal_briber = chainbook.extras.hidden_hand2.get("balancer_briber") + ## Parse TX + ### Determine market + to_address = to_checksum_address(transaction["to"]) + print( + f"Selecting markets on {chain_name} based on: aura briber: {aura_briber}, bal_briber: {bal_briber}" + ) + if to_address == aura_briber: + market = "aura" + elif to_address == bal_briber: + market = "balancer" + else: + print( + f"Couldn't determine bribe market for {json.dumps(transaction, indent=2)}" + ) + return + ### Grab info + token_address = transaction["contractInputsValues"].get("_token") + raw_amount = int(transaction["contractInputsValues"]["_amount"]) + proposal_hash = transaction["contractInputsValues"]["_proposal"] + periods = transaction["contractInputsValues"].get("_periods", "N/A") + + ## Try to connect to the token interface to get more details + try: + token = Contract.from_abi("Token", token_address, ERC20_ABI) + token_symbol = token.symbol() + whole_amount = raw_amount / 10 ** token.decimals() + + except Exception as e: + print(f"Warning. Can't interface with token contract {token_address}: {e}") + token_symbol = "N/A" + whole_amount = "N/A" + + ### Lookup Proposal and return report + prop_data = prop_map[market].get(proposal_hash) + if not isinstance(prop_data, dict): + return { + "function": "depositBribe", + "chain": chainbook.chain, + "error": f"Can not find proposal {proposal_hash} on the {market} incentive market.", + "bip": kwargs.get("bip_number", "N/A"), + "tx_index": kwargs.get("tx_index", "N/A"), + } + + return { + "function": "depositBribe", + "chain": chainbook.chain, + "title_and_poolId": f"{prop_data.get('title', 'Not Found')} \n{prop_data.get('poolId', 'Not Found')}", + "incentive_paid": f"{token_symbol}({token_address}) \n {whole_amount}({raw_amount})", + "market_and_prophash": f"{market} \n{proposal_hash}", + "periods": periods, + "tx_index": kwargs.get("tx_index", "N/A"), + } + + +def _parse_added_transaction(transaction: dict, **kwargs) -> Optional[dict]: + """ + Parse a gauge adder transaction and return a dict with parsed data. + + First, it tries to extract gauge address from the transaction data. + If it fails, it tries to extract gauge address from the transaction input. + + Then, it extracts gauge data from mainnet or jump to sidechains if needed. + + :param transaction: transaction to parse + :return: dict with parsed data + """ + if not transaction.get("contractInputsValues") or not transaction.get( + "contractMethod" + ): + return + # Parse only gauge add transactions + if not any( + method in transaction["contractInputsValues"] for method in GAUGE_ADD_METHODS + ): + return + # Find command and gauge address + command = transaction["contractMethod"]["name"] + gauge_type = transaction["contractInputsValues"].get("gaugeType") + if not gauge_type: + print("No gauge type found! Cannot process transaction") + return + if ( + transaction["to"] + != ADDR_BOOK.search_unique("20230519-gauge-adder-v4/GaugeAdder").address + ): + return + # Reset connection to mainnet + switch_chain_if_needed(network_id=1) + + chain = TYPE_TO_CHAIN_MAP.get(gauge_type) + gauge_address = None + for method in GAUGE_ADD_METHODS: + gauge_address = to_checksum_address( + transaction["contractInputsValues"].get(method) + ) + if gauge_address: + break + if not gauge_address: + print("! Gauge address not found in transaction data") + return + # Finally, extract gauge data from mainnet or jump to sidechains if needed + gauge = Contract(gauge_address) + gauge_selectors = gauge.selectors.values() + gauge_cap = ( + f"{gauge.getRelativeWeightCap() / 10 ** 16}%" + if "getRelativeWeightCap" in gauge_selectors + else "N/A" + ) + # Process sidechain gauges + print(f"root gauge: {gauge_address}") + ( + pool_name, + pool_symbol, + pool_id, + pool_address, + a_factor, + fee, + style, + tokens, + rate_providers, + sidechain_recipient, + ) = _extract_pool(chain, gauge, gauge_selectors) + addr = AddrBook("mainnet") + to = transaction["to"] + to_name = addr.reversebook.get(to, "!!NOT-FOUND") + if to_name == "20230519-gauge-adder-v4/GaugeAdder": + to_string = "GaugeAdderV4" + elif isinstance(to_name, str): + to_string = f"!!f{to_name}??" + + chain = chain.replace("-main", "") if chain else "mainnet" + preferential_target = sidechain_recipient if sidechain_recipient else gauge_address + is_preferential = ( + BalPoolsGauges(chain).get_preferential_gauge(pool_id) == preferential_target + ) + rate_providers_reviews = get_rate_provider_review_summaries(rate_providers, chain) + + return { + "function": f"{to_string}/{command}", + "chain": chain, + "pool_id_and_address": f"{pool_id} \npool_address: {pool_address}", + "symbol_and_info": f"{pool_symbol} \nfee: {fee}\na-factor: {a_factor}", + "gauge_address_and_info": f"root: {gauge_address}\nside: {sidechain_recipient}\nstyle: {style}\ncap: {gauge_cap}\npreferential: {is_preferential}", + "tokens": "\n".join(tokens), + "rate_providers": "\n".join(rate_providers), + "review_summary": "\n".join(rate_providers_reviews), + "bip": kwargs.get("bip_number", "N/A"), + "tx_index": kwargs.get("tx_index", "N/A"), + "add_gauge_summary": (is_preferential, rate_providers_reviews, gauge_address), + } + + +def _parse_permissions(transaction: dict, **kwargs) -> Optional[dict]: + """ + Parse Permissions changes made to the authorizer + """ + if not transaction.get("contractInputsValues") or not transaction.get( + "contractMethod" + ): + return + function = transaction["contractMethod"].get("name") + ## Parse only role changes + if "Role" not in function: + return + chain_id = kwargs["chain_id"] + chain_name = AddrBook.chain_names_by_id.get(int(chain_id)) + if not chain_name: + print("Chain name not found! Can not parse transaction.") + return + perms = BalPermissions(chain_name) + addr = AddrBook(chain_name) + action_ids = transaction["contractInputsValues"].get("roles") + # Change from a txbuilder json format list of addresses to a python one + if not action_ids: + action_ids = [transaction["contractInputsValues"].get("role")] + elif isinstance(action_ids, str): + action_ids = action_ids.strip("[ ]") + action_ids = action_ids.replace(" ", "") + action_ids = action_ids.split(",") + if not isinstance(action_ids, list): + print( + f"Function {function} came up with {action_ids} which is not a valid list." + ) + return + to = transaction["to"] + to_name = addr.reversebook.get(to, "!!NOT-FOUND") + if to_name == "20210418-authorizer/Authorizer": + to_string = "Authorizer" + elif isinstance(to_name, str): + to_string = f"!!{to_name}??" + caller_address = transaction["contractInputsValues"].get("account") + caller_name = addr.reversebook.get(caller_address, "!!NOT FOUND!!") + fx_paths = [] + for action_id in action_ids: + paths = perms.paths_by_action_id[action_id] + fx_paths = [*fx_paths, *paths] + return { + "function": f"{to_string}/{function}", + "chain": chain_name, + "caller_name": caller_name, + "caller_address": caller_address, + "fx_paths": "\n".join([i for i in fx_paths]), + "action_ids": "\n".join([i for i in action_ids]), + "bip": kwargs.get("bip_number", "N/A"), + "tx_index": kwargs.get("tx_index", "N/A"), + } + + +def _parse_AuthorizerAdapterEntrypoint(transaction: dict, **kwargs) -> Optional[dict]: + """ + Parse calls made throught the AuthorizerAdapterEntrypoint + """ + if not transaction.get("contractInputsValues") or not transaction.get( + "contractMethod" + ): + return + # Parse only gauge add transactions + if transaction["contractMethod"]["name"] != "performAction": + return + chain_id = kwargs["chain_id"] + chain_alias = "{}-main" + chain_name = "main" + # Get chain name using address book and chain id + for c_name, c_id in AddrBook.chain_ids_by_name.items(): + if int(chain_id) == int(c_id): + chain_name = ( + chain_alias.format(c_name) if c_name != "mainnet" else "mainnet" + ) + chainbook = AddrBook(c_name) + break + switch_chain_if_needed(chain_id) + entrypoint = Contract(transaction["to"]) + # try: + target_address = transaction["contractInputsValues"].get("target") + print(target_address) + try: + target_interface = Contract.from_explorer(target_address) + except Exception as e: + try: + print( + f"WARNING: Attempting to use Gauge Interface for {target_address} instead of explorer due to failure:{e}" + ) + target_interface = Contract.from_abi("gauge", target_address, GAUGE_ABI) + # check and make sure this looks like a gauge + target_interface.lp_token() + except Exception as e: + print(f"Can't find target interface for {target_address}: {e}") + return + try: + data = transaction["contractInputsValues"].get("data") + (selector, inputs) = target_interface.decode_input(data) + except Exception as e: + print(f"Error processing performAction call: {e}") + return + try: + inputs = prettify_flat_list(inputs, chain_name) + except Exception as e: + print( + f"INFO: Was unable to prettify inputs during performAction decoding, perhaps the input data is too complex: {e}" + ) + return { + "function": "performAction", + "chain": chain_name, + "entrypoint": prettify_address(entrypoint.address, chainbook), + "target": prettify_address(target_address, chainbook), + "selector": selector, + "parsed_inputs": "\n".join(inputs), + "bip": kwargs.get("bip_number", "N/A"), + "tx_index": kwargs.get("tx_index", "N/A"), + } + + +def _parse_transfer(transaction: dict, **kwargs) -> Optional[dict]: + """ + Parse an ERC-20 transfer transaction and return a dict with parsed data + """ + if not transaction.get("contractInputsValues") or not transaction.get( + "contractMethod" + ): + return + # Parse only gauge add transactions + if transaction["contractMethod"]["name"] != "transfer": + return + + chain_id = kwargs["chain_id"] + chain_alias = "{}-main" + chain_name = "main" + # Get chain name using address book and chain id + for c_name, c_id in AddrBook.chain_ids_by_name.items(): + if int(chain_id) == int(c_id): + chain_name = ( + chain_alias.format(c_name) if c_name != "mainnet" else "mainnet" + ) + addresses = AddrBook(c_name) + break + if not chain_name: + print("Chain name not found! Cannot transfer transaction") + return + switch_chain_if_needed(chain_id) + # Get input values + try: + token = Contract(transaction["to"]) + except Exception as e: + print(f"Failed to get token contract: {e}") + return + recipient_address = ( + transaction["contractInputsValues"].get("to") + or transaction["contractInputsValues"].get("dst") + or transaction["contractInputsValues"].get("recipient") + or transaction["contractInputsValues"].get("_to") + ) + if is_address(recipient_address): + recipient_address = to_checksum_address(recipient_address) + else: + print("ERROR: can't find recipient address") + recipient_address = None + raw_amount = ( + transaction["contractInputsValues"].get("amount") + or transaction["contractInputsValues"].get("value") + or transaction["contractInputsValues"].get("wad") + or transaction["contractInputsValues"].get("_value") + ) + amount = int(raw_amount) / 10 ** token.decimals() if raw_amount else "N/A" + symbol = token.symbol() + recipient_name = addresses.reversebook.get(recipient_address, "N/A") + return { + "function": "transfer", + "chain": chain_name.replace("-main", "") if chain_name else "mainnet", + "token_symbol": f"{symbol}:{token.address}", + "recipient": f"{recipient_name}:{recipient_address}", + "amount": f"{amount} (RAW: {raw_amount})", + "bip": kwargs.get("bip_number", "N/A"), + "tx_index": kwargs.get("tx_index", "N/A"), + } + + +def parse_no_reports_report( + all_reports: list[dict[str, dict]], files: list[dict] +) -> dict[str, dict]: + """ + Accepts a list of report outputs returned from the handler, and the files list. + Returns a report with details about any transactions, which have not been otherwise reported on in the same format + as the input reports in the list. + """ + covered_indexs_by_file = {} + reports = defaultdict(dict) + uncovered_indexes_by_file = defaultdict(set) + tx_list_len_by_file = defaultdict(int) + filedata_by_file = defaultdict(dict) + # Generate a dict of sets of all files checked and a dict of all filedatas + for file in files: + tx_list_len_by_file[file["file_name"]] = len(file["transactions"]) + covered_indexs_by_file[file["file_name"]] = set() + filedata_by_file[file["file_name"]] = file + # Figure out covered indexes per file based on provided reports + for report_info in all_reports: + for filename, info in report_info.items(): + for output in info["report_data"]["outputs"]: + covered_indexs_by_file[filename].add(output.get("tx_index")) + # Figure out uncovered indexes in the dict and report on them + for filename, covered_indexes in covered_indexs_by_file.items(): + all_indexes = range(tx_list_len_by_file[filename]) + uncovered_indexs = set(all_indexes).symmetric_difference(covered_indexes) + # If there are no covered indexes this returns an empty set, but we know there is 1 uncovered tx at index 0 + if len(covered_indexes) == 0: + uncovered_indexs.add(0) + print( + f"{filename}: covered: {covered_indexes}, uc:{uncovered_indexs}, all: {all_indexes}" + ) + if len(uncovered_indexs) == 0: + print(f"BINGO! 100% coverage for {filename}") + continue + uncovered_indexes_by_file[filename] = uncovered_indexs + multisig = filedata_by_file[filename]["meta"]["createdFromSafeAddress"] + chain_id = filedata_by_file[filename]["chainId"] + chain_name = AddrBook.chain_names_by_id.get(int(chain_id), "Chain_not_found") + addr = AddrBook(chain_name) + no_reports = [] + for i in uncovered_indexs: + transaction = filedata_by_file[filename]["transactions"][i] + # Now we can do the reporting magic on each uncovered transaction + to = transaction["to"] + bip_number = transaction.get("meta", {}).get( + "bip_number" + ) or extract_bip_number_from_file_name(filename) + civ = transaction.get("contractInputsValues") + if isinstance(civ, dict): + civ_parsed = prettify_contract_inputs_values( + chain_name, transaction["contractInputsValues"] + ) + elif transaction.get("data"): + civ_parsed = transaction["data"] + else: + civ_parsed = "N/A" + contractMethod = transaction.get("contractMethod", {}) + value = transaction.get("value") + if value: + # value is always gas token, which in our cases is always 1e18, don't need math for 0 + value = int(value) + if value == 0: + valuestring = str(value) + else: + valuestring = f"{value}/1e18 = {int(value) / 1e18}" + else: + valuestring = "N/A" + no_reports.append( + { + "fx_name": ( + contractMethod.get("name", "!!N/A!!") + if contractMethod + else "!!N/A!!" + ), + "to": f"{to} ({addr.reversebook.get(to_checksum_address(to), 'Not Found')})", + "chain": chain_name, + "value": valuestring, + "inputs": json.dumps(civ_parsed, indent=2), + "bip_number": bip_number, + "tx_index": transaction.get("tx_index", "N/A"), + } + ) + + reports[filename] = { + "report_text": format_into_report( + filedata_by_file[filename], + no_reports, + multisig, + int(chain_id), + ), + "report_data": {"file": {"file_name": filename}, "outputs": no_reports}, + } + return reports + + +def handler(files: list[dict], handler_func: Callable) -> dict[str, dict]: + """ + Process a list of files and return a dict with parsed data. + """ + reports = {} + print(f"Processing {len(files)} files... with {handler_func.__name__}") + for file in files: + outputs = [] + tx_list = file["transactions"] + i = 0 + add_gauge_summary = [] + for transaction in tx_list: + data = handler_func( + transaction, + chain_id=file["chainId"], + # Try to extract bip number from transaction meta first. If it's missing, + # It means merge jsons hasn't been run yet, so we extract it from the file name + bip_number=transaction.get("meta", {}).get("bip_number") + or extract_bip_number(file), + tx_index=i, + ) + if data: + if "add_gauge_summary" in data: + add_gauge_summary.append(data.pop("add_gauge_summary")) + outputs.append(data) + i += 1 + if outputs: + reports[file["file_name"]] = { + "report_text": format_into_report( + file, + outputs, + file["meta"]["createdFromSafeAddress"], + int(file["chainId"]), + add_gauge_summary, + ), + "report_data": {"file": file, "outputs": outputs}, + } + return reports + + +def main() -> None: + files = get_changed_files() + print(f"Found {len(files)} files with added/removed gauges") + # TODO: Add here more handlers for other types of transactions + all_reports = [] + all_reports.append(handler(files, _parse_added_transaction)) + all_reports.append(handler(files, _parse_transfer)) + all_reports.append(handler(files, _parse_permissions)) + all_reports.append(handler(files, _parse_hh_brib)) + all_reports.append(handler(files, _parse_aura_direct_incentive)) + all_reports.append(handler(files, _parse_AuthorizerAdapterEntrypoint)) + all_reports.append(handler(files, _parse_set_recipient_list)) + + ## Catch All should run after all other handlers. + no_reports_report = parse_no_reports_report(all_reports, files) + all_reports.append(no_reports_report) + merged_files = merge_files(all_reports) + # Save report to report.txt file + if merged_files: + with open("payload_reports.txt", "w") as f: + for report in merged_files.values(): + f.write(report) + for filename, report in merged_files.items(): + # Replace .json with .report.txt + filename = filename.replace(".json", ".report.txt") + with open(f"../../{filename}", "w") as f: + f.write(report) + + +if __name__ == "__main__": + main() diff --git a/action-scripts/brownie/scripts/script_utils.py b/action-scripts/brownie/scripts/script_utils.py new file mode 100644 index 000000000..98f4406b9 --- /dev/null +++ b/action-scripts/brownie/scripts/script_utils.py @@ -0,0 +1,758 @@ +import json +import os +import re +from decimal import Decimal +from json import JSONDecodeError +from typing import Optional +from urllib.request import urlopen + +from collections import defaultdict +from bal_addresses import AddrBook, BalPermissions, RateProviders +from bal_addresses import to_checksum_address, is_address +from bal_tools import Aura +import requests +from brownie import Contract, chain, network, web3 +from eth_abi import encode +from gnosis.eth import EthereumClient +from gnosis.eth.constants import NULL_ADDRESS +from gnosis.safe import SafeOperation +from gnosis.safe.multi_send import MultiSend, MultiSendOperation, MultiSendTx +from prettytable import MARKDOWN, PrettyTable + +ROOT_DIR = os.path.dirname( + os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +) + +NA = "N/A" +NOT_FOUND = "Not Found" +POOL_ID_CUSTOM_FALLBACK = "Custom" +BIPS_PRECISION = 1e16 + + +def return_hh_brib_maps() -> dict: + """ + Grabs and reformats hidden hand API data into a dict that has data for each proposal formatted like prop.market.prop_data_dict + """ + hh_bal_props = requests.get("https://api.hiddenhand.finance/proposal/balancer") + hh_bal_props.raise_for_status() + hh_aura_props = requests.get("https://api.hiddenhand.finance/proposal/aura") + hh_aura_props.raise_for_status() + results = {"aura": {}, "balancer": {}} + for prop in hh_bal_props.json()["data"]: + results["balancer"][prop["proposalHash"]] = prop + for prop in hh_aura_props.json()["data"]: + results["aura"][prop["proposalHash"]] = prop + try: + results["aura"][prop["proposalHash"]]["poolId"] = results["balancer"][ + prop["proposalHash"] + ]["poolId"] + except KeyError: + pass + return results + + +def get_changed_files() -> list[dict]: + """ + Parses given GH repo and PR number to return a list of dicts of changed files + + Each file should be a valid json with a list of transactions + + Returns only BIPs + """ + github_repo = os.environ["GITHUB_REPOSITORY"] + pr_number = os.environ["PR_NUMBER"] + api_url = f"https://api.github.com/repos/{github_repo}/pulls/{pr_number}/files" + print(f"Using {api_url} to get changed files") + response = requests.get(api_url) + pr_file_data = json.loads(response.text) + changed_files = [] + for file_json in pr_file_data: + if file_json["status"] in ["removed", "renamed"]: + if "4269-W69" not in file_json["filename"]: + continue + filename = file_json["filename"] + if ("BIPs/" or "MaxiOps/" in filename) and (filename.endswith(".json")): + # Check if file exists first + try: + r = requests.get(file_json["contents_url"]) + except: + print(f"{file_json['contents_url']} does not exist") + continue + # Validate that file is a valid json + with urlopen(r.json()["download_url"]) as json_data: + try: + payload = json.load(json_data) + except JSONDecodeError: + print(f"{filename} is not proper json") + continue + if isinstance(payload, dict) is False: + print(f"{filename} json is not a dict") + continue + if "transactions" not in payload.keys(): + print(f"{filename} json does not contain a list of transactions") + continue + payload["file_name"] = filename + changed_files.append(payload) + return changed_files + + +def get_pool_info( + pool_address, +) -> tuple[str, str, str, str, str, str, list[str], list[str]]: + """ + Returns a tuple of pool info + """ + pool = Contract.from_abi( + name="IBalPool", + address=pool_address, + abi=json.load(open("abis/IBalPool.json", "r")), + ) + chain_name = AddrBook.chain_names_by_id[chain.id] + book = AddrBook(chain_name) + vault = Contract.from_abi( + name="Vault", + address=book.search_unique("20210418-vault/Vault").address, + abi=json.load(open("abis/IVault.json")), + ) + try: + (a_factor, ramp, divisor) = pool.getAmplificationParameter() + a_factor = int(a_factor / divisor) + if not isinstance(a_factor, int): + a_factor = NA + except Exception: + a_factor = NA + name = pool.name() + symbol = pool.symbol() + try: + pool_id = str(pool.getPoolId()) + except Exception: + try: + ## TWAMM pools + pool = Contract.from_explorer(pool.address) + pool_id = str(pool.POOL_ID()) + except Exception: + pool_id = POOL_ID_CUSTOM_FALLBACK + try: + fee = pool.getSwapFeePercentage() / BIPS_PRECISION + except Exception: + fee = NOT_FOUND + try: + tokens = vault.getPoolTokens(pool_id)[0] + except Exception: + tokens = [] + try: + rate_providers = pool.getRateProviders() + except Exception: + rate_providers = [] + if len(rate_providers) == 0: + try: + rehype_pool = Contract.from_explorer(pool_address) + rate_providers.append(rehype_pool.rateProvider0()) + rate_providers.append(rehype_pool.rateProvider1()) + except Exception: + pass + if pool.totalSupply == 0: + symbol = f"WARN: {symbol} no initjoin" + + return name, symbol, pool_id, pool.address, a_factor, fee, tokens, rate_providers + + +def convert_output_into_table(outputs: list[dict]) -> str: + """ + Converts list of dicts into a pretty table + """ + # Headers without "chain" + header = [k for k in outputs[0].keys() if k != "chain"] + table = PrettyTable(header, align="l") + for dict_ in outputs: + # Create a dict comprehension to include all keys and values except "chain" + # As we don't want to display chain in the table + dict_filtered = {k: v for k, v in dict_.items() if k != "chain"} + table.add_row(list(dict_filtered.values())) + table.align["review_summary"] = "c" + table.align["bip"] = "c" + table.align["tx_index"] = "c" + return table.get_string() + + +def switch_chain_if_needed(network_id: int) -> None: + network_id = int(network_id) + if web3.chain_id != network_id: + network.disconnect() + chain_name = AddrBook.chain_names_by_id[int(network_id)] + chain_name = "avax" if chain_name == "avalanche" else chain_name + chain_name = f"{chain_name}-main" if chain_name != "mainnet" else "mainnet" + print("reconnecting to", chain_name) + network.connect(chain_name) + assert web3.chain_id == network_id, (web3.chain_id, network_id) + assert network.is_connected() + + +def run_tenderly_sim(network_id: str, safe_addr: str, transactions: list[dict]): + """ + generates a tenderly simulation + returns the url and if it was successful or not + """ + # build urls + user = os.getenv("TENDERLY_ACCOUNT_NAME") + project = os.getenv("TENDERLY_PROJECT_NAME") + if not user or not project: + raise ValueError("TENDERLY_ACCOUNT_NAME and TENDERLY_PROJECT_NAME must be set") + api_base_url = f"https://api.tenderly.co/api/v1/account/{user}/project/{project}" + + # reset connection to network on which the safe is deployed + switch_chain_if_needed(network_id) + + # build individual tx data + for tx in transactions: + if "contractMethod" in tx and tx["contractMethod"] is not None: + tx["contractMethod"]["type"] = "function" + contract = web3.eth.contract( + address=to_checksum_address(tx["to"]), abi=[tx["contractMethod"]] + ) + if len(tx["contractMethod"]["inputs"]) > 0: + for input in tx["contractMethod"]["inputs"]: + # bool + if "bool" in input["type"]: + if "[]" in input["type"]: + if type(tx["contractInputsValues"][input["name"]]) != list: + tx["contractInputsValues"][input["name"]] = [ + (True if x == "true" else False) + for x in tx["contractInputsValues"][input["name"]] + .strip("[]") + .split(",") + ] + else: + tx["contractInputsValues"][input["name"]] = ( + True + if tx["contractInputsValues"][input["name"]] == "true" + else False + ) + # int + elif re.search(r"int[0-9]+", input["type"]): + if "[]" in input["type"]: + if type(tx["contractInputsValues"][input["name"]]) != list: + tx["contractInputsValues"][input["name"]] = [ + int(x) + for x in tx["contractInputsValues"][input["name"]] + .strip("[]") + .split(",") + ] + else: + tx["contractInputsValues"][input["name"]] = int( + tx["contractInputsValues"][input["name"]] + ) + # address + elif "address" in input["type"]: + if "[]" in input["type"]: + if type(tx["contractInputsValues"][input["name"]]) != list: + tx["contractInputsValues"][input["name"]] = [ + to_checksum_address(x.strip()) + for x in tx["contractInputsValues"][input["name"]] + .strip("[]") + .split(",") + ] + else: + tx["contractInputsValues"][ + input["name"] + ] = to_checksum_address( + tx["contractInputsValues"][input["name"]] + ) + # tuple + elif "tuple" in input["type"]: + casted_tuple = [] + for idx, tuple_item in enumerate( + tx["contractInputsValues"][input["name"]] + .strip("[]") + .split(",") + ): + try: + if "bool" in input["components"][idx]["type"]: + casted_tuple.append( + True + if tuple_item.strip('"') == "true" + else False + ) + elif re.search( + r"int[0-9]+", input["components"][idx]["type"] + ): + casted_tuple.append(int(tuple_item.strip('"'))) + elif "address" in input["components"][idx]["type"]: + casted_tuple.append( + to_checksum_address(tuple_item.strip('"')) + ) + else: + casted_tuple.append(str(tuple_item.strip('"'))) + tx["contractInputsValues"][input["name"]] = [ + tuple(casted_tuple) + ] + except IndexError: + # payload contains nested tuples; no support yet + continue + # catchall; cast to str + else: + if "[]" in input["type"]: + if type(tx["contractInputsValues"][input["name"]]) != list: + tx["contractInputsValues"][input["name"]] = [ + str(x).strip() + for x in tx["contractInputsValues"][input["name"]] + .strip("[]") + .split(",") + ] + else: + tx["contractInputsValues"][input["name"]] = str( + tx["contractInputsValues"][input["name"]] + ) + tx["data"] = contract.encodeABI( + fn_name=tx["contractMethod"]["name"], + args=list(tx["contractInputsValues"].values()), + ) + else: + tx["data"] = contract.encodeABI( + fn_name=tx["contractMethod"]["name"], args=[] + ) + + # build multicall data + multisend_call_only = MultiSend.MULTISEND_CALL_ONLY_ADDRESSES[0] + txs = [ + MultiSendTx(MultiSendOperation.CALL, tx["to"], int(tx["value"]), tx["data"]) + for tx in transactions + ] + data = MultiSend(EthereumClient(web3.provider.endpoint_uri)).build_tx_data(txs) + safe = web3.eth.contract( + address=safe_addr, abi=json.load(open("abis/IGnosisSafe.json", "r")) + ) + owners = list(safe.functions.getOwners().call()) + + # build execTransaction data + # execTransaction(address,uint256,bytes,uint8,uint256,uint256,uint256,address,address,bytes) + exec_tx = { + "to": multisend_call_only, + "value": 0, + "data": data, + "operation": SafeOperation.DELEGATE_CALL.value, + "safeTxGas": 0, + "baseGas": 0, + "gasPrice": 0, + "gasToken": NULL_ADDRESS, + "refundReceiver": NULL_ADDRESS, + "signatures": b"".join( + [encode(["address", "uint"], [str(owner), 0]) + b"\x01" for owner in owners] + ), + } + input = safe.encodeABI(fn_name="execTransaction", args=list(exec_tx.values())) + + # build tenderly data + data = { + "network_id": network_id, + "from": owners[0], + "to": safe_addr, + "input": input, + "save": True, + "save_if_fails": True, + "simulation_type": "quick", + "state_objects": { + safe_addr: { + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x0000000000000000000000000000000000000000000000000000000000000001" + } + } + }, + } + + # post to tenderly api + r = requests.post( + url=f"{api_base_url}/simulate", + json=data, + headers={ + "X-Access-Key": os.getenv("TENDERLY_ACCESS_KEY"), + "Content-Type": "application/json", + }, + ) + try: + r.raise_for_status() + except: + print(r.json()) + + result = r.json() + + if "simulation" not in result: + raise ValueError(result) + + # make the simulation public + r = requests.post( + url=f"{api_base_url}/simulations/{result['simulation']['id']}/share", + headers={ + "X-Access-Key": os.getenv("TENDERLY_ACCESS_KEY"), + "Content-Type": "application/json", + }, + ) + try: + r.raise_for_status() + except: + print(r.json()) + + url = f"https://www.tdly.co/shared/simulation/{result['simulation']['id']}" + if result["simulation"]["status"]: + success = "🟩 SUCCESS" + revert_found = check_tenderly_calls_for_revert( + result["transaction"]["transaction_info"]["call_trace"]["calls"] + ) + if revert_found: + success = "🟨 PARTIAL" + else: + success = "🟥 FAILURE" + return url, success + + +def check_tenderly_calls_for_revert(calls): + for call in calls: + if "error_op" in call: + if call["error_op"] == "REVERT": + return True + if "calls" in call: + if isinstance(call["calls"], list): + if check_tenderly_calls_for_revert(call["calls"]): + return True + + +def format_into_report( + file: dict, + transactions: list[dict], + msig_addr: str, + chain_id: int, + gauge_checklist=None, +) -> str: + """ + Formats a list of transactions into a report that can be posted as a comment on GH PR + """ + chain_name = AddrBook.chain_names_by_id[chain_id] + book = AddrBook(chain_name) + msig_label = book.reversebook.get(to_checksum_address(msig_addr), "!NOT FOUND") + file_name = file["file_name"] + print(f"Writing report for {file_name}...") + file_report = f"FILENAME: `{file_name}`\n" + file_report += f"MULTISIG: `{msig_label} ({AddrBook.chain_names_by_id[chain_id]}:{msig_addr})`\n" + file_report += f"COMMIT: `{os.getenv('COMMIT_SHA', 'N/A')}`\n" + # Format chains and remove "-main" from suffix of chain name + chains = set( + map( + lambda chain: chain.replace("-main", ""), + [transaction["chain"] for transaction in transactions], + ) + ) + file_report += f"CHAIN(S): `{', '.join(chains)}`\n" + try: + tenderly_url, tenderly_success = run_tenderly_sim( + file["chainId"], + file["meta"]["createdFromSafeAddress"], + file["transactions"], + ) + file_report += f"TENDERLY: [`{tenderly_success}`]({tenderly_url})\n\n" + except Exception as e: + file_report += f"TENDERLY: `🟪 SKIPPED ({repr(e)})`\n\n" + + if gauge_checklist: + for gauge_check in gauge_checklist: + table = PrettyTable(align="l") + table.set_style(MARKDOWN) + table.field_names = [f"Gauge Validator ({gauge_check[2]})", "Result"] + table.align["Result"] = "c" + is_preferential = "✅" if gauge_check[0] else "❌" + rate_providers_safety = [] + for rate_provider in gauge_check[1]: + if rate_provider == "--": + continue + rate_providers_safety.append("✅" if rate_provider == "safe" else "❌") + table.add_row([f"`validate_preferential_gauge`", is_preferential]) + if len(rate_providers_safety) == 0: + rate_providers_safety = ["--"] + table.add_row( + [f"`validate_rate_providers_safety`", " ".join(rate_providers_safety)] + ) + file_report += table.get_string() + file_report += "\n\n" + + file_report += "```\n" + file_report += convert_output_into_table(transactions) + file_report += "\n```\n" + return file_report + + +def extract_chain_id_and_address_from_filename(file_name: str): + ## TODO set output type can be {int, str} or None + """ + Grabs a chain_id and multisig address from a payload file name if it is formatted like chain-address.something + """ + # Define the regular expression pattern to match the desired format + pattern = r"(\d+)-(0x[0-9a-fA-F]+)" + + # Try to find a match in the input string + match = re.search(pattern, file_name) + if match: + # Extract the chain_id and address from the matched groups + chain_id = int(match.group(1)) + address = match.group(2) + return int(chain_id), address + else: + # Return None if the pattern does not match the input string + return None + + +def get_token_symbol(token_address) -> Optional[str]: + """ + Try to look up a token symbol on chain and return it if it exists + """ + try: + return Contract.from_abi( + "Token", token_address, json.load(open("abis/ERC20.json")) + ).symbol() + except Exception as err: + print(err) + return + + +def get_rate_provider_review_summaries( + rate_providers: list[str], chain: str +) -> list[str]: + """ + Accepts a list of rate provider addresses and returns a list of review summaries + """ + summaries = [] + chain = chain.removesuffix("-main") + r = RateProviders(chain) + if chain not in AddrBook.chain_ids_by_name.keys(): + print(f"WARNING: Trying to look up rate-providers on unknown chain {chain}") + for rate_provider in rate_providers: + if rate_provider == NULL_ADDRESS: + summaries.append("--") + continue + rpinfo = r.info_by_rate_provider.get(to_checksum_address(rate_provider)) + if not rpinfo: + rpinfo = r.info_by_rate_provider.get(rate_provider.lower()) + if not rpinfo: + print( + f"WARNING: looked up {to_checksum_address(rate_provider)} on chain {chain} and got {rpinfo}" + ) + summaries.append("!!NO REVIEW!!") + else: + summaries.append(rpinfo["summary"]) + else: + summaries.append(rpinfo["summary"]) + return summaries + + +def merge_files( + results_outputs_list: list[dict[str, dict[str, dict]]], +) -> dict[str, str]: + """ + Function that merges a list of report dicts into a dict of files and report strings. + + + Say we have two dictionaries in the list: + results_outputs_list[0] = { + "file1.json": "report1", + "file2.json": "report2", + } + results_outputs_list[1] = { + "file1.json": "report3", + "file3.json": "report4", + } + Then the result of merging will be: + merged_dict = { + "file1.json": "report1report3", + "file2.json": "report2", + "file3.json": "report4", + } + """ + strings_by_file = defaultdict(str) + for result_output in results_outputs_list: + for file, report_data in result_output.items(): + strings_by_file[file] += report_data["report_text"] + return strings_by_file + + +def extract_bip_number_from_file_name(file_name: str) -> str: + bip = None + # First, try to exctract BIP from file path + if file_name is not None: + bip_match = re.search(r"BIP-?\d+", file_name) + bip = bip_match.group(0) if bip_match else None + return bip or "N/A" + + +def extract_bip_number(bip_file: dict) -> Optional[str]: + """ + Extracts BIP number from file path or from transactions metadata + """ + bip = None + # First, try to exctract BIP from file path + if bip_file.get("file_name") is not None: + bip_match = re.search(r"BIP-?\d+", bip_file["file_name"]) + bip = bip_match.group(0) if bip_match else None + + # If no BIP in file path, try to extract it from transactions metadata + if not bip: + for tx in bip_file["transactions"]: + if tx.get("meta", {}).get("bip_number") not in [None, "N/A"]: + bip = tx["meta"]["bip_number"] + break + return bip or "N/A" + + +def parse_txbuilder_list_string(list_string) -> list: + """ + Take an input from transaction builder and format it is as a list. + If it is already a list return it + If it is a string list from tx-builder then listify it and return that + If it is anything else, return a single item list with whatever it is. + """ + # Change from a txbuilder json format list of addresses to a python one + if isinstance(list_string, str): + ## if empty list, return an empty list. + if list_string == "[]": + return [] + list_string = list_string.strip("[ ]") + list_string = list_string.replace(" ", "") + list_string = list_string.split(",") + # if nothing left return an empty list + if not list_string: + return [] + if isinstance(list_string, list): + return list_string + # If we still don't have a list, create a single item list with what we do have. + return [list_string] + + +def prettify_tokens_list(token_addresses: list[str]) -> list[str]: + """ + Return a list of token addresses and names in string format. + Uses onchain lookups with brownie, requires you are on the network of the token when run + """ + results = [] + for token in token_addresses: + results.append(f"{token}: {get_token_symbol(token)}") + return results + + +def prettify_int_amount(amount: int, decimals=None) -> str: + try: + amount = int(amount) + except: + # Can't make this an int, leave it alone + print(f"Can't make {amount} into an int to prettify") + return amount + if isinstance(decimals, int): + # We know decimals so use them + return f"{amount}/1e{decimals} = {amount / 10 ** decimals}" + else: + # We don't know decimals so provide 18 and 6 + return f"raw:{amount}, 18 decimals:{Decimal(amount) / Decimal(1e18)}, 6 decimals: {Decimal(amount) / Decimal(1e6)}" + + +## Prettification helpers +def prettify_int_amounts(amounts: list, decimals=None) -> list[str]: + pretty_amounts = [] + for amount in amounts: + pretty_amounts.append(prettify_int_amount(amount, decimals)) + return pretty_amounts + + +def prettify_address(address, chainbook) -> str: + return f"{address} ({chainbook.reversebook.get(to_checksum_address(address))})" + + +## Prettification logic for various complex data types +def prettify_flat_list(inputs: list[str], chain: str) -> list[str]: + """ + Accepts a list of and returns it with any address items prettified including names in string format + Requires you are on the network of the addresses when run + """ + chain = chain.removesuffix("-main") + book = AddrBook(chain) + results = [] + for input in inputs: + if is_address(input): + results.append( + f"{input}: {book.reversebook.get(to_checksum_address(input), get_token_symbol(input))}" + ) + else: + results.append(prettify_int_amount(input)) + return results + + +def prettify_contract_inputs_values(chain: str, contracts_inputs_values: dict) -> dict: + """ + Accepts contractInputsValues dict with key of input_name and value of input_value + Tries to look for values to add human readability to and does so when possible + Returns a non-executable but more human readable version of the inputs in the same format + """ + addr = AddrBook(chain) + perm = BalPermissions(chain) + outputs = defaultdict(list) + ## TODO, can we use prettify flat list and the other helpers here? + for key, valuedata in contracts_inputs_values.items(): + values = parse_txbuilder_list_string(valuedata) + for value in values: + ## Reverse resolve addresses + if is_address(value): + outputs[key].append( + f"{value} ({addr.reversebook.get(to_checksum_address(value), 'N/A')})" + ) + ## Reverse resolve authorizor roles + elif "role" in key.lower(): + outputs[key].append( + f"{value} ({perm.paths_by_action_id.get(value, 'N/A')})" + ) + elif ( + "value" in key.lower() + or "amount" in key.lower() + or "_minouts" in key.lower() + ): + # Look for things that look like values and do some decimal math + outputs[key].append(prettify_int_amount(value)) + else: + outputs[key].append(value) + return outputs + + +## TODO do we need this or can we just do a more general reverse lookup with prettify_flat_list? +def prettify_gauge_list(gauge_addresses, chainbook) -> list: + pretty_gauges = [] + + for gauge in gauge_addresses: + gauge_name = chainbook.reversebook.get(gauge) + if not gauge_name: + switch_chain_if_needed(chainbook.chain_ids_by_name[chainbook.chain]) + gauge_interface = Contract(gauge) + try: + gauge_name = gauge_interface.name() + except: + gauge_name = "(N/A)" + pretty_gauges.append(f"{gauge} ({gauge_name})") + return pretty_gauges + + +def prettify_aura_pid(pid: int, aura: Aura) -> str: + """ + Returns a pretty string for an aura pid + """ + try: + pid = int(pid) + except Exception as e: + print(f"Failed to convert AURA pid to int: {e}") + return f"{pid} (!!NOT AN INT!!)" + if not pid: + return "N/A" + switch_chain_if_needed(AddrBook.chain_ids_by_name[aura.chain]) + ## reverse dict aura.aura_pids_by_address such that address is key and pid is value. Key should be a real int. + addresses_by_pid = {int(v): k for k, v in aura.aura_pids_by_address.items()} + gauge_address = addresses_by_pid.get(pid) + if not gauge_address: + return f"{pid} (!!GAUGE NOT FOUND!!)" + gauge_interface = Contract(gauge_address) + try: + gauge_name = gauge_interface.name() + except: + gauge_name = "(N/A)" + return f"{pid}({gauge_address})\n{gauge_name}" diff --git a/action-scripts/brownie/scripts/validate_bip.py b/action-scripts/brownie/scripts/validate_bip.py new file mode 100644 index 000000000..fd9a61afa --- /dev/null +++ b/action-scripts/brownie/scripts/validate_bip.py @@ -0,0 +1,153 @@ +import os +from typing import Tuple + +from .script_utils import get_changed_files, extract_bip_number +from bal_addresses import AddrBook +from bal_addresses import to_checksum_address +from prettytable import MARKDOWN, PrettyTable +import re +import web3 + +ADDRESSES_MAINNET = AddrBook("mainnet").reversebook +ADDRESSES_POLYGON = AddrBook("polygon").reversebook +ADDRESSES_ARBITRUM = AddrBook("arbitrum").reversebook +ADDRESSES_AVALANCHE = AddrBook("avalanche").reversebook +ADDRESSES_OPTIMISM = AddrBook("optimism").reversebook +ADDRESSES_GNOSIS = AddrBook("gnosis").reversebook +ADDRESSES_ZKEVM = AddrBook("zkevm").reversebook +ADDRESSES_BASE = AddrBook("base").reversebook +ADDRESSES_FANTOM = AddrBook("fantom").reversebook +ADDRESSES_MODE = AddrBook("mode").reversebook +ADDRESSES_FRAXTAL = AddrBook("fraxtal").reversebook + +# Merge all addresses into one dictionary +ADDRESSES = { + **ADDRESSES_MAINNET, + **ADDRESSES_POLYGON, + **ADDRESSES_ARBITRUM, + **ADDRESSES_AVALANCHE, + **ADDRESSES_OPTIMISM, + **ADDRESSES_GNOSIS, + **ADDRESSES_ZKEVM, + **ADDRESSES_BASE, + **ADDRESSES_FANTOM, + **ADDRESSES_MODE, + **ADDRESSES_FRAXTAL, +} + + +def validate_contains_msig(file: dict) -> Tuple[bool, str]: + """ + Validates that file contains a multisig transaction + """ + msig = file["meta"].get("createdFromSafeAddress") or file["meta"].get( + "createFromSafeAddress" + ) + if not msig or not isinstance(msig, str): + return False, "No msig address found or it is not a string" + return True, "" + + +def validate_msig_in_address_book(file: dict) -> Tuple[bool, str]: + """ + Validates that multisig address is in address book + """ + msig = file["meta"].get("createdFromSafeAddress") or file["meta"].get( + "createFromSafeAddress" + ) + if to_checksum_address(msig) not in ADDRESSES: + return False, "Multisig address not found in address book" + return True, "" + + +def validate_chain_specified(file: dict) -> Tuple[bool, str]: + """ + Validates that chain is specified in file + """ + chain = file.get("chainId") + chains = list(AddrBook.chain_ids_by_name.values()) + if int(chain) not in chains: + return ( + False, + f"No chain specified or is not found in known chain list: {chain} in {chains}", + ) + return True, "" + + +def validate_file_has_bip(file: dict) -> Tuple[bool, str]: + """ + Validates that a single BIP number can be determined from the file path + """ + bip = extract_bip_number(file) + if bip == "N/A": + return False, f"No BIP number found in file path {file['file_name']}" + return True, "" + + +def validate_path_has_weekly_dir(file: dict) -> Tuple[bool, str]: + """ + Validates that a files are in weekly directories can be determined from the file path + """ + filename = file["file_name"] + match = re.search(r"(\d{4})-W(\d{1,2})", filename) + if not match: + return False, f"File {filename} has has no YYYY-W## in path" + return True, "" + + +# Add more validators here as needed +VALIDATORS = [ + validate_contains_msig, + validate_msig_in_address_book, + validate_chain_specified, + validate_file_has_bip, + validate_path_has_weekly_dir, +] + + +def main() -> None: + files = get_changed_files() + # Filter out merged jsons that are placed under 00batched folder + files = [file for file in files if "00batched" not in file["file_name"]] + # Run each file through validators and collect output in form of a dictionary + results = {} + for file in files: + file_path = file["file_name"] + results[file_path] = {} + for validator in VALIDATORS: + if "BIPs/" not in file_path: + # skip bip specific checks for payloads outside of the bips directory + if validator.__name__ in [ + "validate_file_has_bip", + "validate_path_has_weekly_dir", + ]: + continue + is_valid, output_msg = validator(file) + if not is_valid: + results[file_path][validator.__name__] = f"❌ ({output_msg})" + else: + results[file_path][validator.__name__] = "✅" + + # Generate report for each file and save it in a list + reports = [] + for file_path, file_results in results.items(): + report = f"FILENAME: `{file_path}`\n" + report += f"COMMIT: `{os.getenv('COMMIT_SHA')}`\n" + # Convert output for each file into table format + table = PrettyTable(align="l") + table.set_style(MARKDOWN) + table.field_names = ["Validator", "Result"] + table.align["Result"] = "c" + for validator_name, result in file_results.items(): + table.add_row([f"`{validator_name}`", result]) + report += table.get_string() + reports.append(report) + + # Save temporary file with results so that it can be used in github action later + if reports: + with open("validate_bip_results.txt", "w") as f: + f.write("\n\n".join(reports)) + + +if __name__ == "__main__": + main() diff --git a/action-scripts/gen_add_permissions_payload.py b/action-scripts/gen_add_permissions_payload.py new file mode 100644 index 000000000..e525c15ac --- /dev/null +++ b/action-scripts/gen_add_permissions_payload.py @@ -0,0 +1,217 @@ +import json +from dotmap import DotMap +from bal_addresses import AddrBook, BalPermissions, NoResultError +import pandas as pd +from datetime import date +from web3 import Web3 +import os +from collections import defaultdict + + +today = str(date.today()) +debug = False +script_dir = os.path.dirname(os.path.abspath(__file__)) + +# TODO: The below settings must be set before running the script +INFURA_KEY = os.getenv("WEB3_INFURA_PROJECT_ID") +BALANCER_DEPLOYMENTS_URL = ( + "https://raw.githubusercontent.com/balancer/balancer-deployments/master" +) +W3_BY_CHAIN = { + "mainnet": Web3(Web3.HTTPProvider(f"https://mainnet.infura.io/v3/{INFURA_KEY}")), + "arbitrum": Web3( + Web3.HTTPProvider(f"https://arbitrum-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "optimism": Web3(Web3.HTTPProvider(f"https://optimism-rpc.gateway.pokt.network")), + "polygon": Web3( + Web3.HTTPProvider(f"https://polygon-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "zkevm": Web3(Web3.HTTPProvider(f"https://zkevm-rpc.com")), + "avalanche": Web3( + Web3.HTTPProvider(f"https://avalanche-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "gnosis": Web3(Web3.HTTPProvider(f"https://rpc.gnosischain.com/")), + "goerli": Web3(Web3.HTTPProvider(f"https://goerli.infura.io/v3/{INFURA_KEY}")), + "sepolia": Web3(Web3.HTTPProvider(f"https://sepolia.infura.io/v3/{INFURA_KEY}")), +} + +book_by_chain = {} +perms_by_chain = {} +for chain_name in AddrBook.chain_ids_by_name.keys(): + book_by_chain[chain_name] = AddrBook(chain_name) + perms_by_chain[chain_name] = BalPermissions(chain_name) + + +def load_input_data(input_json_file): + with open(input_json_file, "r") as f: + data = json.load(f) + return data + + +def build_action_ids_map(input_data): + warnings = "" + action_ids_map = {} + for chain_name in AddrBook.chain_ids_by_name.keys(): + action_ids_map[chain_name] = defaultdict(set) + for change in input_data: + for chain_name, chain_id in change["chain_map"].items(): + print(f"Processing {chain_name}({chain_id})") + book = book_by_chain[chain_name] + perms = perms_by_chain[chain_name] + for deployment in change["deployments"]: + for function, callers in change["function_caller_map"].items(): + # Turn a string into a 1 item list + if isinstance(callers, str): + callers = [callers] + try: + result = perms.search_unique_path_by_unique_deployment( + deployment, function + ) + except NoResultError as err: + warnings += f"WARNING: On chain:{chain_name}:{deployment}/{function}: found no matches, skipping\n" + continue + for caller in callers: + # TODO rethink bal addresses here, output format is different for extras/msigs and deployments + caller_lookup = book.search_unique(caller) + if isinstance(caller_lookup, str): + caller_address = caller_lookup + else: + caller_address = caller_lookup.address + action_ids_map[chain_name][result.action_id].add(caller_address) + return action_ids_map, warnings + + +def generate_change_list(actions_id_map): + changes = [] + warnings = "" + for chain_name, action_id_infos in actions_id_map.items(): + print(f"generate list: {chain_name}") + book = book_by_chain[chain_name] + perms = perms_by_chain[chain_name] + for action_id, callers in action_id_infos.items(): + paths = perms.paths_by_action_id[action_id] + for path in paths: + for caller_address in callers: + (deployment, _, function) = path.split("/") + try: + authorizered_callers = perms.allowed_addresses(action_id) + except NoResultError: + authorizered_callers = [] + if caller_address in authorizered_callers: + warnings += f"{deployment}/{function} already has the proper owner set, skipping.\n" + continue + caller = book.reversebook[caller_address] + changes.append( + { + "deployment": deployment, + "function": function, + "role": action_id, + "chain": chain_name, + "caller": caller, + "caller_address": caller_address, + } + ) + return changes, warnings + + +def print_change_list(change_list, output_dir, filename_root=today): + df = pd.DataFrame(change_list) + chain_address_sorted = df.sort_values(by=["chain", "caller_address"]) + chain_deployment_sorted = df.sort_values(by=["chain", "deployment", "function"]) + print(df.to_markdown(index=False)) + if output_dir: + with open(f"{output_dir}/{filename_root}_address_sorted.md", "w") as f: + chain_address_sorted.to_markdown(index=False, buf=f) + with open(f"{output_dir}/{filename_root}_deployment_sorted.md", "w") as f: + chain_deployment_sorted.to_markdown(index=False, buf=f) + + +def save_command_description_table(change_list, output_dir, filename_root=today): + referenced_calls = [] + functions = [] + descriptions = [] + with open(f"{output_dir}/func_desc_by_name.json", "r") as f: + func_desc_by_name = json.load(f) + for change in change_list: + function = change["function"] + if function not in referenced_calls: + if function not in functions: + functions.append(function) + try: + descriptions.append(func_desc_by_name[function]) + except: + descriptions.append("description not found in map") + df = pd.DataFrame({"function": functions, "description": descriptions}) + with open(f"{output_dir}/{filename_root}_function_descriptions.md", "w") as f: + df.to_markdown(buf=f, index=False) + + +def save_txbuilder_json(change_list, output_dir, filename_root=today): + print("Dumping files") + chains = [] + for change in change_list: + if change["chain"] not in chains: + chains.append(change["chain"]) + + for chain_name in chains: + chain_id = AddrBook.chain_ids_by_name[chain_name] + print(f"chain:{chain_name}") + book = book_by_chain[chain_name] + with open( + f"{script_dir}/tx_builder_templates/authorizor_grant_roles.json", "r" + ) as f: + data = DotMap(json.load(f)) + print(f"book.chain:{book.chain}") + # Set global data + print(book.search_unique("multisigs/dao").address) + data.chainId = chain_id + data.meta.createdFromSafeAddress = book.search_unique("multisigs/dao").address + # Group roles on this chain by caller address + action_ids_by_address = defaultdict(set) + for change in change_list: + if change["chain"] != chain_name: + continue + action_ids_by_address[change["caller_address"]].add(change["role"]) + + # Build transaction list + transactions = [] + tx_template = data.transactions[0] + for address, actions in action_ids_by_address.items(): + sorted_actions = list(actions) + sorted_actions.sort() + transaction = DotMap(tx_template) + transaction.to = book.flatbook["20210418-authorizer/Authorizer"] + # TX builder wants lists in a string, addresses unquoted + transaction.contractInputsValues.roles = str(sorted_actions).replace( + "'", "" + ) + transaction.contractInputsValues.account = address + transactions.append(dict(transaction)) + # Inject transaction list + data.transactions = transactions + # Save tx builder json + with open(f"{output_dir}/{filename_root}_{chain_name}.json", "w") as f: + json.dump(dict(data), f, indent=2) + f.write("\n") + + +def main( + output_dir=f"{script_dir}/../BIPs/00batched/authorizer", + input_file=f"{script_dir}/../BIPs/00batched/authorizer/{today}.json", +): + input_data = load_input_data(input_file) + (action_ids_map, warnings) = build_action_ids_map(input_data=input_data) + (change_list, w) = generate_change_list(actions_id_map=action_ids_map) + warnings += "\n" + w + if change_list: + print_change_list(change_list=change_list, output_dir=output_dir) + save_command_description_table(change_list=change_list, output_dir=output_dir) + save_txbuilder_json(change_list=change_list, output_dir=output_dir) + else: + warnings += "Doing nothing as there is no changelist, everything up to date? \n" + with open(f"{output_dir}/{today}_warnings.txt", "w") as f: + f.write(warnings) + + +if __name__ == "__main__": + main() diff --git a/action-scripts/merge_pr_jsons.py b/action-scripts/merge_pr_jsons.py new file mode 100644 index 000000000..ce9190ade --- /dev/null +++ b/action-scripts/merge_pr_jsons.py @@ -0,0 +1,240 @@ +import argparse +import json +import os +import re +from collections import defaultdict +from json import JSONDecodeError +from typing import Optional +from web3 import Web3 +from bal_addresses import AddrBook + +ADDRESSES_MAINNET = AddrBook("mainnet").reversebook +ADDRESSES_POLYGON = AddrBook("polygon").reversebook +ADDRESSES_ARBITRUM = AddrBook("arbitrum").reversebook +ADDRESSES_AVALANCHE = AddrBook("avalanche").reversebook +ADDRESSES_OPTIMISM = AddrBook("optimism").reversebook +ADDRESSES_GNOSIS = AddrBook("gnosis").reversebook +ADDRESSES_ZKEVM = AddrBook("zkevm").reversebook +ADDRESSES_BASE = AddrBook("base").reversebook + +# Merge all addresses into one dictionary +ADDRESSES = { + **ADDRESSES_MAINNET, + **ADDRESSES_POLYGON, + **ADDRESSES_ARBITRUM, + **ADDRESSES_AVALANCHE, + **ADDRESSES_OPTIMISM, + **ADDRESSES_GNOSIS, + **ADDRESSES_ZKEVM, + **ADDRESSES_BASE, +} + +# Initialize the parser +parser = argparse.ArgumentParser() +parser.add_argument("--target", help="Target directory to merge BIPs from") + +base_json = json.loads( + """ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "transactions": [ + ] +} +""" +) + +IGNORED_DIRECTORIES = ["examples", "rejected", "batched", "proposed"] +# Place your BIPs json into this directory under BIPs/ +TARGET_DIR_WITH_BIPS = "00merging" + + +class NoMsigAddress(Exception): + pass + + +class NoChainSpecified(Exception): + pass + + +class AddressNotFound(Exception): + pass + + +def extract_bip_number(bip_file: dict) -> Optional[str]: + """ + Extracts BIP number from file path or from transactions metadata + """ + bip = None + # First, try to exctract BIP from file path + if bip_file.get("file_name") is not None: + bip_match = re.search(r"BIP-?\d+", bip_file["file_name"]) + bip = bip_match.group(0) if bip_match else None + + # If no BIP in file path, try to extract it from transactions metadata + if not bip: + for tx in bip_file["transactions"]: + if tx.get("meta", {}).get("bip") not in [None, "N/A"]: + bip = tx["meta"]["bip"] + break + return bip or "N/A" + + +def _parse_bip_json(file_path: str, chain: int) -> Optional[dict]: + """ + In case file was created within given date bounds and for given chain - + parse it and return the data. + + Also perform various validations on the file. + """ + # Check if the file is a json file + if not file_path.endswith(".json"): + return None + try: + with open(file_path, "r") as json_file: + data = json.load(json_file) + if not isinstance(data, dict): + return None + data["file_name"] = file_path + except JSONDecodeError: + return None + + # VALIDATIONS. Everything should fail here if the file is not valid + # Check if the file is a dictionary, not a list + if not isinstance(data, dict) or not data.get("transactions"): + return None + + # Check if chain id is the same as the one we are looking for + if not data.get("chainId"): + raise NoChainSpecified(f"No chain id found in file: {file_path}") + + msig = data["meta"].get("createdFromSafeAddress") or data["meta"].get( + "createFromSafeAddress" + ) + if not msig or not isinstance(msig, str): + raise NoMsigAddress( + f"No msig address found in file: {file_path}, or it is not a string" + ) + + # Check if msig address is in the address book + if Web3.toChecksumAddress(msig) not in ADDRESSES: + raise AddressNotFound( + f"msig address {msig} not found in address book in file: {file_path}" + ) + + if int(data["chainId"]) == int(chain): + return data + + +# Example how to run: `python action-scripts/merge_pr_jsons.py --target 2023-W23` +# Note: if you need to merge multiple directories, you can use old multi_merge_pr_jsons.py script +def main(): + directory = parser.parse_args().target + if not directory: + raise ValueError("No directory was passed in as argument") + print(f"Directory to parse:{directory}") + gauge_lists_by_chain = defaultdict(list) + + match = re.search(r"(\d{4})-W(\d{1,2})", directory) + if not match: + raise ValueError( + "Directory name is not in the correct format. Consider using YYYY-WW" + ) + year, week = match.groups() + # get root directory of the project: + # To do this you need to go up 2 levels from the current file + # For instance, to get to the project root from: multisig-ops/action-scripts/merge_pr_jsons.py + # You need to jump up two steps with os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + dir_name_batched = f"BIPs/00batched/{year}-W{week}" + dir_name_batched_full = os.path.join(root_dir, dir_name_batched) + + files_to_parse = [] + target_files = defaultdict(list) + # If directory doesn't exist, raise an error + if not os.path.exists(os.path.join(root_dir, directory)): + raise ValueError( + f"Directory {directory} does not exist. Pass correct directory name" + ) + # Parse each directory for underlying files + for root, __, files in os.walk(os.path.join(root_dir, directory)): + for file in files: + # Skip non json files + if not file.endswith(".json"): + continue + files_to_parse.append(os.path.join(root, file)) + + # Walk through all nested directories in BIPs + for file in files_to_parse: + # Process files that are lying flat in BIPs directory + for chain_name, chain_id in AddrBook.chain_ids_by_name.items(): + data = _parse_bip_json(os.path.join(root_dir, file), chain=chain_id) + if data: + # Add the file to the list of files to be merged + target_files[str(chain_id)].append(data) + + # Now we have a list of files to be merged, let's merge them and save to files + # Create the directory if it does not exist in root directory + if not os.path.exists(dir_name_batched_full): + os.mkdir(dir_name_batched_full) + + # Now we need to group files by safe address as well + for chain_id, files in target_files.items(): + # Group files by safe address + grouped_files = defaultdict(list) + for file in files: + safe_address = file["meta"].get("createdFromSafeAddress") or file[ + "meta" + ].get("createFromSafeAddress") + grouped_files[safe_address].append(file) + + # Now we have a list of files grouped by safe address, let's merge them and save to files + for safe_address, fs in grouped_files.items(): + # Merge all the files into one + result = base_json + result["meta"]["createdFromSafeAddress"] = safe_address + result["chainId"] = chain_id + result["transactions"] = [] + for file in fs: + # Check for gauge adds and generate checkpoint list + for tx in file["transactions"]: + tx["meta"] = { + "tx_index": file["transactions"].index(tx), + "origin_file_name": file["file_name"], + "bip_number": extract_bip_number(file), + } + if "contractMethod" in tx.keys() and isinstance( + tx["contractMethod"], dict + ): + if tx["contractMethod"].get("name") == "addGauge": + try: + gauge_chain = tx["contractInputsValues"]["gaugeType"] + if gauge_chain != "Ethereum": + gauge_lists_by_chain[gauge_chain].append( + tx["contractInputsValues"]["gauge"] + ) + except KeyError: + print( + f"Skipping checkpointer add for addGauge tx " + f"as it doesn't have expected inputs:\n---\n " + f"{tx['contractInputsValues']}" + ) + result["transactions"] += file["transactions"] + # Save the result to file + file_name = f"{chain_id}-{safe_address}.json" + file_path = os.path.join(dir_name_batched_full, file_name) + with open(file_path, "w") as new_file: + json.dump(result, new_file, indent=2) + new_file.write("\n") + + +if __name__ == "__main__": + main() diff --git a/action-scripts/multi_merge_pr_jsons.py b/action-scripts/multi_merge_pr_jsons.py new file mode 100644 index 000000000..477bcdea7 --- /dev/null +++ b/action-scripts/multi_merge_pr_jsons.py @@ -0,0 +1,152 @@ +import json +import os +import sys +from collections import defaultdict +from datetime import datetime +from json import JSONDecodeError +from typing import Optional +from bal_addresses import AddrBook + +base_json = json.loads( + """ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "transactions": [ + ] +} +""" +) + +IGNORED_DIRECTORIES = ["examples", "rejected", "batched", "proposed"] +# Place your BIPs json into this directory under BIPs/ +TARGET_DIR_WITH_BIPS = "00merging" + + +def _parse_bip_json(file_path: str, chain: int) -> Optional[dict]: + """ + In case file was created within given date bounds and for given chain - + parse it and return the data + """ + # Check if the file is a json file + if not file_path.endswith(".json"): + return None + try: + with open(file_path, "r") as json_file: + data = json.load(json_file) + # Check if the file is a dictionary, not a list + if not isinstance(data, dict): + return None + # Check if chain id is the same as the one we are looking for + # TODO This crashes if it finds JSON that is not a payload file. + # TODO: Discovered by running on BIPs + if int(data["chainId"]) == int(chain): + return data + except JSONDecodeError: + return None + + +# Example how to run: python action-scripts/merge_pr_jsons.py BIPs/BIP-289,BIPs/BIP-285 +def main(): + directories = sys.argv[1].split(",") + print(f"Directories to parse:{directories}") + gauge_lists_by_chain = defaultdict(list) + + if not directories: + raise ValueError("No directories were passed in as arguments") + + current_week = datetime.utcnow().strftime("%U") + current_year = datetime.utcnow().year + # get root directory of the project: + # To do this you need to go up 2 levels from the current file + # For instance, to get to the project root from: multisig-ops/action-scripts/merge_pr_jsons.py + # You need to jump up two steps with os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + files_to_parse = [] + target_files = defaultdict(list) + # Walk through all directories passed in as arguments and extract all files + for directory in directories: + # If directory doesn't exist, raise an error + if not os.path.exists(os.path.join(root_dir, directory)): + raise ValueError( + f"Directory {directory} does not exist. Pass correct directory name" + ) + # Parse each directory for underlying files + for root, __, files in os.walk(os.path.join(root_dir, directory)): + for file in files: + # Skip non json files + if not file.endswith(".json"): + continue + files_to_parse.append(os.path.join(root, file)) + + # Walk through all nested directories in BIPs + for file in files_to_parse: + # Process files that are lying flat in BIPs directory + for chain_name, chain_id in AddrBook.chain_ids_by_name.items(): + data = _parse_bip_json(os.path.join(root_dir, file), chain=chain_id) + if data: + # Add the file to the list of files to be merged + target_files[str(chain_id)].append(data) + + # Now we have a list of files to be merged, let's merge them and save to files + dir_name_batched = f"BIPs/00batched/{current_year}-W{current_week}" + dir_name_batched_full = os.path.join(root_dir, dir_name_batched) + # Create the directory if it does not exist in root directory + if not os.path.exists(dir_name_batched_full): + os.mkdir(dir_name_batched_full) + + # Now we need to group files by safe address as well + for chain_id, files in target_files.items(): + # Group files by safe address + grouped_files = defaultdict(list) + for file in files: + safe_address = file["meta"]["createdFromSafeAddress"] + if not safe_address: + safe_address = file["meta"]["createFromSafeAddress"] + grouped_files[safe_address].append(file) + + # Now we have a list of files grouped by safe address, let's merge them and save to files + for safe_address, fs in grouped_files.items(): + # Merge all the files into one + result = base_json + result["meta"]["createdFromSafeAddress"] = safe_address + result["chainId"] = chain_id + result["transactions"] = [] + for file in fs: + result["transactions"] += file["transactions"] + # Check for gauge adds and generate checkpoint list + + for tx in file["transactions"]: + if tx["contractMethod"]["name"] == "addGauge": + try: + gauge_chain = tx["contractInputsValues"]["gaugeType"] + if gauge_chain != "Ethereum": + gauge_lists_by_chain[gauge_chain].append( + tx["contractInputsValues"]["gauge"] + ) + except KeyError: + print( + f"Skipping checkpointer add for addGauge tx " + f"as it doesn't have expected inputs:\n---\n " + f"{tx['contractInputsValues']}" + ) + + # Save the result to file + file_name = f"{chain_id}-{safe_address}.json" + file_path = os.path.join(dir_name_batched_full, file_name) + with open(file_path, "w") as new_file: + json.dump(result, new_file, indent=2) + new_file.write("\n") + + +if __name__ == "__main__": + main() diff --git a/action-scripts/requirements-actions.txt b/action-scripts/requirements-actions.txt new file mode 100644 index 000000000..8c9d703d0 --- /dev/null +++ b/action-scripts/requirements-actions.txt @@ -0,0 +1,7 @@ +munch==4.0.0 +dotmap==1.3.30 +pathlib==1.0.1 +pandas==1.5.3 +numpy==1.26.4 +web3==5.31.3 +git+https://github.com/BalancerMaxis/bal_addresses@0.9.11 diff --git a/action-scripts/tx_build_add_reward_token.py b/action-scripts/tx_build_add_reward_token.py new file mode 100644 index 000000000..85364a254 --- /dev/null +++ b/action-scripts/tx_build_add_reward_token.py @@ -0,0 +1,57 @@ +import json +import os +from web3 import Web3 +import time +from bal_addresses import AddrBook, is_address, to_checksum_address + + +INFURA_KEY = os.getenv("INFURA_KEY") +ALCHEMY_KEY = os.getenv("ALCHEMY_KEY") + +## TODO refactor this script to use python native pathing and be less sensitive about where it is run from +GAUGE_ABI = json.load(open("action-scripts/abis/ChildChainGauge.json")) + + +def main(): + ## collect inputs + token = os.environ["TOKEN"] + distributor = os.environ["DISTRIBUTOR"] + gauge = os.environ.get("GAUGE") + chain = os.environ.get("CHAIN_NAME") + chain_id = AddrBook.chain_ids_by_name[chain.lower()] + ## Resolve inputs + addr_book = AddrBook(chain) + distributor = ( + distributor + if is_address(distributor) + else addr_book.search_unique(distributor).address + ) + gauge = gauge if is_address(gauge) else addr_book.search_unique(gauge).address + # Set data equal to add_rewards(token, distributor) calldata encoded + w3 = Web3(Web3.HTTPProvider("http://localhost:8545")) + gauge_interface = w3.eth.contract(address=to_checksum_address(gauge), abi=GAUGE_ABI) + data = gauge_interface.encodeABI(fn_name="add_reward", args=[token, distributor]) + # open the add_reward_token_to_gauge.json file and modify it with the object inputs + with open("action-scripts/tx_builder_templates/add_reward_token.json", "r") as f: + tx = json.load(f) + tx["chainId"] = chain_id + tx["meta"]["createdFromSafeAddress"] = addr_book.multisigs.lm + ## Template is expected to have an addrbook string in to field + tx["transactions"][0]["to"] = addr_book.search_unique( + tx["transactions"][0]["to"] + ).address + tx["transactions"][0]["contractInputsValues"]["data"] = str(data) + tx["transactions"][0]["contractInputsValues"]["target"] = gauge + ## create a directory in MaxiOps/transfers for the chain if it does not exist + if not os.path.exists(f"MaxiOps/add_rewards/{chain}"): + os.makedirs(f"MaxiOps/add_rewards/{chain}") + ## write a file named chain_multisig_destination_timestamp.json in the directory with the transaction json + timestamp = int(time.time()) + with open( + f"MaxiOps/add_rewards/{chain}/{gauge}_{token}_{timestamp}.json", "w" + ) as f: + json.dump(tx, f, indent=2) + + +if __name__ == "__main__": + main() diff --git a/action-scripts/tx_build_erc20_transfer.py b/action-scripts/tx_build_erc20_transfer.py new file mode 100644 index 000000000..361b2d99b --- /dev/null +++ b/action-scripts/tx_build_erc20_transfer.py @@ -0,0 +1,90 @@ +import json +import os +from web3 import Web3 +import time +from bal_addresses import AddrBook + +## Todo move this to bal_addresses +is_address = Web3.is_address + +INFURA_KEY = os.getenv("INFURA_KEY") +ALCHEMY_KEY = os.getenv("ALCHEMY_KEY") +W3_BY_CHAIN = { + "base": Web3( + Web3.HTTPProvider(f"https://base-mainnet.g.alchemy.com/v2/{ALCHEMY_KEY}") + ), + "gnosis": Web3(Web3.HTTPProvider(f"https://rpc.gnosischain.com")), + "zkevm": Web3(Web3.HTTPProvider(f"https://zkevm-rpc.com")), + "avalanche": Web3(Web3.HTTPProvider(f"https://api.avax.network/ext/bc/C/rpc")), + # "fantom": Web3(Web3.HTTPProvider("https://rpc.fantom.network")), + ### Less reliable RPCs first to fail fast :) + "mainnet": Web3(Web3.HTTPProvider(f"https://mainnet.infura.io/v3/{INFURA_KEY}")), + "arbitrum": Web3( + Web3.HTTPProvider(f"https://arbitrum-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "optimism": Web3( + Web3.HTTPProvider(f"https://optimism-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "polygon": Web3( + Web3.HTTPProvider(f"https://polygon-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "sepolia": Web3(Web3.HTTPProvider(f"https://sepolia.infura.io/v3/{INFURA_KEY}")), +} + +ERC20_ABI = json.load(open("abis/ERC20.json")) + + +def main(): + ## collect inputs + token = os.environ["TOKEN"] + destination = os.environ["DESTINATION"] + amount = os.environ.get("WHOLE_AMOUNT") + wei_amount = os.environ.get("WEI_AMOUNT") + multisig = os.environ.get("MULTISIG") + chain = os.environ.get("CHAIN_NAME") + chain_id = AddrBook.chain_ids_by_name[chain.lower()] + ## Resolve inputs + addr_book = AddrBook(chain) + multisig = ( + multisig if is_address(multisig) else addr_book.search_unique(multisig).address + ) + destination = ( + destination + if is_address(destination) + else addr_book.search_unique(destination).address + ) + + ## get the current timestamp + timestamp = int(time.time()) + ## assert that only one of wei_amount or whole_amount is set + assert wei_amount != amount and ( + wei_amount or amount + ), f"amount is {amount} and wei_amount is {wei_amount}, one and only one must bet set." + if amount: + # bind web3 to the token contract and get decimals() + w3 = W3_BY_CHAIN[chain] + token_contract = w3.eth.contract(address=token, abi=ERC20_ABI) + decimals = token_contract.functions.decimals().call() + # convert amount to wei + wei_amount = int(float(amount) * 10**decimals) + + ## open the erc_20_transfer.json file in the tx_builder_templates folder + with open("tx_builder_templates/erc20_transfer.json", "r") as f: + tx = json.load(f) + ## modify the tx object with the inputs + tx["meta"]["createdFromSafeAddress"] = multisig + tx["transactions"][0]["to"] = token + tx["transactions"][0]["value"] = wei_amount + tx["chainId"] = chain_id + ## create a directory in MaxiOps/transfers for the chain if it does not exist + if not os.path.exists(f"MaxiOps/transfers/{chain}"): + os.makedirs(f"MaxiOps/transfers/{chain}") + ## write a file named chain_multisig_destination_timestamp.json in the directory with the transaction json + with open( + f"MaxiOps/transfers/{chain}/{multisig}_{destination}_{timestamp}.json", "w" + ) as f: + json.dump(tx, f, indent=2) + + +if __name__ == "__main__": + main() diff --git a/action-scripts/tx_builder_base.json b/action-scripts/tx_builder_base.json new file mode 100644 index 000000000..7fbe6e8dd --- /dev/null +++ b/action-scripts/tx_builder_base.json @@ -0,0 +1,14 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "transactions": [ + ] +} \ No newline at end of file diff --git a/action-scripts/tx_builder_templates/add_reward_token.json b/action-scripts/tx_builder_templates/add_reward_token.json new file mode 100644 index 000000000..3d2dcf6d2 --- /dev/null +++ b/action-scripts/tx_builder_templates/add_reward_token.json @@ -0,0 +1,32 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1714157066535, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.5", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "20221124-authorizer-adaptor-entrypoint/AuthorizerAdaptorEntrypoint", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { "name": "target", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ], + "name": "performAction", + "payable": true + }, + "contractInputsValues": { + "target": "gauge", + "data": "add_reward(token, distributor)" + } + } + ] +} diff --git a/action-scripts/tx_builder_templates/authorizor_grant_roles.json b/action-scripts/tx_builder_templates/authorizor_grant_roles.json new file mode 100644 index 000000000..6ade4139a --- /dev/null +++ b/action-scripts/tx_builder_templates/authorizor_grant_roles.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0000000000000000000000000000000000000000000000000, 0x0000000000000000000000000000000000000000000000000]", + "account": "0x0000000000000000000000000000000000000000" + } + } + ] +} \ No newline at end of file diff --git a/action-scripts/tx_builder_templates/erc20_transfer.json b/action-scripts/tx_builder_templates/erc20_transfer.json new file mode 100644 index 000000000..88261e28a --- /dev/null +++ b/action-scripts/tx_builder_templates/erc20_transfer.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "", + "value": "" + } + } + ] +} \ No newline at end of file diff --git a/action-scripts/tx_builder_templates/l2_checkpointer_gauge_add.json b/action-scripts/tx_builder_templates/l2_checkpointer_gauge_add.json new file mode 100644 index 000000000..dd7386475 --- /dev/null +++ b/action-scripts/tx_builder_templates/l2_checkpointer_gauge_add.json @@ -0,0 +1,39 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1685726983450, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.14.1", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "" + }, + "transactions": [ + { + "to": "0x343688C5cB92115a52cA485af7f62B4B7A2e9CcC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "string", + "name": "gaugeType", + "type": "string" + }, + { + "internalType": "contract IStakelessGauge[]", + "name": "gauges", + "type": "address[]" + } + ], + "name": "addGauges", + "payable": false + }, + "contractInputsValues": { + "gaugeType": "Ethereum", + "gauges": "[0x0000000000000000000000000000000000000000]" + } + } + ] +} \ No newline at end of file diff --git a/chainlink_keepers/LZRateProviderPokerV1.md b/chainlink_keepers/LZRateProviderPokerV1.md new file mode 100644 index 000000000..f3f071f8b --- /dev/null +++ b/chainlink_keepers/LZRateProviderPokerV1.md @@ -0,0 +1,17 @@ +# LZRateProviderPokerV1 + + +This is a very short writeup that needs to be updated as we get a bit further. + +This thing pokes layer zero rate providers on mainnet to update rates on child chains. + +Each poke costs 0.01 ETH which comes from the contract. For it to keep working it needs to have enough eth to poke everything on the list, and enough link. + + +https://etherscan.io/address/0xdDd5FF0E581f097573B13f247F6BE736f602F839#readContract + +You can see which rate providers are poked by calling getRateProviders. + +The owner can add and remove rate providers with the write functions that have sensible names. + +The contract requires `(num rate providers)*0.01*(num days)` ETH to keep working. diff --git a/chainlink_keepers/README.md b/chainlink_keepers/README.md new file mode 100644 index 000000000..094d56e55 --- /dev/null +++ b/chainlink_keepers/README.md @@ -0,0 +1,33 @@ +# Maxi Automation - Chainlink Keepers +The maxis use the chainlink keeper pattern often to automate regular onchain work or maintain stuff. Everything is described here. + +## About Chainlink Automation +- You can find docs here. We tend to use the custom logic pattern: https://docs.chain.link/chainlink-automation/introduction +- To run a keeper you pay LINK into the chainlink registry which is burnt to cover gas costs. The keeper will not keep running if there is not enough link. + - Anyone can fund any upkeep, by paying in more LINK. This means that keepers are in some sense no-stop. + + +## List of Keepers +A list of keeper contracts and their chainlink automation UUID is stored in [activeKeepers.json](./activeKeepers.json) + +To pull up an automation on chainlink go to: +https://automation.chain.link/*{CHAIN}/{UUID}, for example the for the maxiGasStation: https://automation.chain.link/mainnet/62602467182204477380138952081172885895406053754821061796893606503759482417757 + +## Understanding the automation view +Here is a screenshot of the maxiGasStation link above: +![img.png](images/img.png) + +Min Balance is the min amount of link required to try the next upkeep. It is not how much it will cost, but a safeguard to make sure way more gas isn't spent than there is link in the contract. The rest up top should be clear. + +The details page shows the contract address, the owner of the chainlink regsitration (who can stop it and pull back any link), and some info about the contract. + +In the history section you can see a history of link payments and calls made to the keeper. + + +## When does it run +Each contract defines run conditions. LINK will only be spent when on-chain execute is called as a result of these condtions being met. In each case these condtions are different. You should check the docs. Many contracts require funding to be in place, and have a time based element. Time based elemetns can either be internal, or based on understanding time from the state of other contracts (like gauge epochs) + +Each upkeep should be documented here, with an md file that has the same name as the keeper in the json. It should describe the run conditions, and how to check if it is working. + + + diff --git a/chainlink_keepers/activeKeepers.json b/chainlink_keepers/activeKeepers.json new file mode 100644 index 000000000..361f73ef6 --- /dev/null +++ b/chainlink_keepers/activeKeepers.json @@ -0,0 +1,28 @@ +{ + "mainnet": { + "maxiGasStation": { + "upkeepId": "49137003109931569296061861008543141201993692712511923124729013217194676883059", + "contract": "0x7fb8f5D04b521B6880158819E69538655AABD5c4" + }, + "LZRateProviderPokerV1": { + "upkeepId": "66229195687688083698092614716763404873746883579112826900822219442030379961062", + "contract": "0xdDd5FF0E581f097573B13f247F6BE736f602F839" + }, + "veBalFeeInjector": { + "upkeepId": "272064120448970968129350878338658121801758038303433171306878704282507266745", + "contract": "0x8AD2512819A7eae1dd398973EFfaE48dafBe8255" + } + }, + "polygon": { + "maxiGasStation": { + "upkeepId": "80006323579308092111447014570270888655361925734007530950262550572938224165512", + "contract": "0xD692B454255d072B1ACe1b624e6Ee2bFd939D80F" + } + }, + "arbitrum": { + "arbRewardInjector": { + "upkeepId": "5983203099162413840047073501868328377901573396319308561200334566324943148221", + "contract": "0xF23d8342881eDECcED51EA694AC21C2B68440929" + } + } +} diff --git a/chainlink_keepers/child_chain_rewards_injector/avax/merged.json b/chainlink_keepers/child_chain_rewards_injector/avax/merged.json new file mode 100644 index 000000000..c24fe64ec --- /dev/null +++ b/chainlink_keepers/child_chain_rewards_injector/avax/merged.json @@ -0,0 +1,145 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1690819298200, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0xcd98f160a2d7e389c6aa31db9f9771c63db4a5d0fa4977026dfd27f1e97f159c" + }, + "transactions": [ + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "metaTo": "maxiKeepers/qi_rewards_injector", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "gaugeAddresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amountsPerPeriod", + "type": "uint256[]" + }, + { + "internalType": "uint8[]", + "name": "maxPeriods", + "type": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x301A121D1d0d72C4005B354854a842A55D23251f]", + "amountsPerPeriod": "[350000000000000000000000]", + "maxPeriods": "[4]" + }, + "metaCIV": { + "gaugeAddresses": "Balancer sAVAX-bb-a-WAVAX-BPT Gaug... (sAVAX-bb-...)", + "amounts": 350000.0 + } + }, + { + "to": "0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5", + "mataTo": "maxiKeepers/usdc_rewards_injector", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "gaugeAddresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amountsPerPeriod", + "type": "uint256[]" + }, + { + "internalType": "uint8[]", + "name": "maxPeriods", + "type": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xC8aAe478aCdE1d5676c3Fc6614cd25183c207F1a,0x301A121D1d0d72C4005B354854a842A55D23251f,0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f,0xE98E468074BAa30aaa7747bcD32B77A16Ae3D9d8,0x0c22Ff3f93B5c9f13e41FA9D270680E97AC13B28]", + "amountsPerPeriod": "[833325000,2499975000,1666650000,2499975000,833325000]", + "maxPeriods": "[12,12,12,12,12]" + } + }, + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xC8aAe478aCdE1d5676c3Fc6614cd25183c207F1a,0x301A121D1d0d72C4005B354854a842A55D23251f,0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f,0xE98E468074BAa30aaa7747bcD32B77A16Ae3D9d8,0x0c22Ff3f93B5c9f13e41FA9D270680E97AC13B28]", + "amountsPerPeriod": "[66666666666666700000,200000000000000000000,133333333333333000000,200000000000000000000,66666666666666700000]", + "maxPeriods": "[12,12,12,12,12]" + } + }, + { + "to": "0x95008946F2773f24588AEEE44d643016381265FF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xC8aAe478aCdE1d5676c3Fc6614cd25183c207F1a]", + "amountsPerPeriod": "[100000000000000000000]", + "maxPeriods": "[2]" + } + } + ] +} \ No newline at end of file diff --git a/chainlink_keepers/child_chain_rewards_injector/avax/qi injector.json b/chainlink_keepers/child_chain_rewards_injector/avax/qi injector.json new file mode 100644 index 000000000..b70eba95b --- /dev/null +++ b/chainlink_keepers/child_chain_rewards_injector/avax/qi injector.json @@ -0,0 +1,51 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1690819298200, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0xcd98f160a2d7e389c6aa31db9f9771c63db4a5d0fa4977026dfd27f1e97f159c" + }, + "transactions": [ + { + "to": "0x47c97d8Eaa5D84aE25df9c92290B40eD252E75eE", + "metaTo": "maxiKeepers/qi_rewards_injector", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "gaugeAddresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amountsPerPeriod", + "type": "uint256[]" + }, + { + "internalType": "uint8[]", + "name": "maxPeriods", + "type": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0x301A121D1d0d72C4005B354854a842A55D23251f]", + "amountsPerPeriod": "[350000000000000000000000]", + "maxPeriods": "[4]" + }, + "metaCIV": { + "gaugeAddresses": "Balancer sAVAX-bb-a-WAVAX-BPT Gaug... (sAVAX-bb-...)", + "amounts": 350000.0 + } + } + ] +} \ No newline at end of file diff --git a/chainlink_keepers/child_chain_rewards_injector/avax/usdc injector.json b/chainlink_keepers/child_chain_rewards_injector/avax/usdc injector.json new file mode 100644 index 000000000..af11fec9b --- /dev/null +++ b/chainlink_keepers/child_chain_rewards_injector/avax/usdc injector.json @@ -0,0 +1,64 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1690819065472, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x7674d784016499feeeaaa58b51ee71eac8021da4e12f74d16f05c2eeb2c4546c" + }, + "transactions": [ + { + "to": "0x099D7767eC64Ac33C076f1e3Eb3DC24D08FA86A5", + "mataTo": "maxiKeepers/usdc_rewards_injector", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "gaugeAddresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amountsPerPeriod", + "type": "uint256[]" + }, + { + "internalType": "uint8[]", + "name": "maxPeriods", + "type": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xC8aAe478aCdE1d5676c3Fc6614cd25183c207F1a,0x301A121D1d0d72C4005B354854a842A55D23251f,0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f,0xE98E468074BAa30aaa7747bcD32B77A16Ae3D9d8,0x0c22Ff3f93B5c9f13e41FA9D270680E97AC13B28]", + "amountsPerPeriod": "[833325000,2499975000,1666650000,2499975000,833325000]", + "maxPeriods": "[12,12,12,12,12]" + }, + "metaCIV": { + "gaugeAddresses": [ + "Balancer yyAVAX-bb-a-WAVAX-BPT Gau... (yyAVAX-bb...)", + "Balancer sAVAX-bb-a-WAVAX-BPT Gaug... (sAVAX-bb-...)", + "Balancer bb-a-USD Gauge Deposit (bb-a-USD-...)", + "Balancer ggAVAX-bb-a-WAVAX-BPT Gau... (ggAVAX-bb...)", + "Balancer BPT Gauge Deposit (BPT-gauge)" + ], + "amounts": [ + 883, + 2499.975, + 1666.65, + 2499.975, + 833325000 + ] + } + } + } + ] +} \ No newline at end of file diff --git a/chainlink_keepers/child_chain_rewards_injector/avax/wavax injector.json b/chainlink_keepers/child_chain_rewards_injector/avax/wavax injector.json new file mode 100644 index 000000000..5ea9355e3 --- /dev/null +++ b/chainlink_keepers/child_chain_rewards_injector/avax/wavax injector.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1690818707538, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0x6dc2ace598d1b230ced28e2dd108d169e49794a3f0b17ce058cacf8823ad24a2" + }, + "transactions": [ + { + "to": "0xF23d8342881eDECcED51EA694AC21C2B68440929", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xC8aAe478aCdE1d5676c3Fc6614cd25183c207F1a,0x301A121D1d0d72C4005B354854a842A55D23251f,0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f,0xE98E468074BAa30aaa7747bcD32B77A16Ae3D9d8,0x0c22Ff3f93B5c9f13e41FA9D270680E97AC13B28]", + "amountsPerPeriod": "[66666666666666700000,200000000000000000000,133333333333333000000,200000000000000000000,66666666666666700000]", + "maxPeriods": "[12,12,12,12,12]" + } + } + ] +} \ No newline at end of file diff --git a/chainlink_keepers/child_chain_rewards_injector/avax/yyavax injector.json b/chainlink_keepers/child_chain_rewards_injector/avax/yyavax injector.json new file mode 100644 index 000000000..37eab1cc8 --- /dev/null +++ b/chainlink_keepers/child_chain_rewards_injector/avax/yyavax injector.json @@ -0,0 +1,46 @@ +{ + "version": "1.0", + "chainId": "43114", + "createdAt": 1690819214698, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.1", + "createdFromSafeAddress": "0x326A7778DB9B741Cb2acA0DE07b9402C7685dAc6", + "createdFromOwnerAddress": "", + "checksum": "0xcc4ef1240e19d7beaf5bc464343a7a7fcd8925b8eb26da6163bdd6041d5ff648" + }, + "transactions": [ + { + "to": "0x95008946F2773f24588AEEE44d643016381265FF", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "gaugeAddresses", + "type": "address[]", + "internalType": "address[]" + }, + { + "name": "amountsPerPeriod", + "type": "uint256[]", + "internalType": "uint256[]" + }, + { + "name": "maxPeriods", + "type": "uint8[]", + "internalType": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "gaugeAddresses": "[0xC8aAe478aCdE1d5676c3Fc6614cd25183c207F1a]", + "amountsPerPeriod": "[100000000000000000000]", + "maxPeriods": "[2]" + } + } + ] +} \ No newline at end of file diff --git a/chainlink_keepers/images/img.png b/chainlink_keepers/images/img.png new file mode 100644 index 000000000..59c60e742 Binary files /dev/null and b/chainlink_keepers/images/img.png differ diff --git a/chainlink_keepers/maxiGasStation.md b/chainlink_keepers/maxiGasStation.md new file mode 100644 index 000000000..9f766c859 --- /dev/null +++ b/chainlink_keepers/maxiGasStation.md @@ -0,0 +1,64 @@ +## The Maxi Gas Station - Chainlink Automation + +#### Note that this facility is currently only operational on mainnet and everything here refers to that + +The Maxi Gas Station (v2) is currently active and running on the following chains at the following addresses: + +| Chain | Etherscan | +|---------|--------------------------------------------------------------------------| +| Mainnet | https://etherscan.io/address/0x7fb8f5D04b521B6880158819E69538655AABD5c4 | + + +You can find the original code in [This Repo](https://github.com/BalancerMaxis/GasStationV2) + +The holds ETH(or whatever a chains native gas token is), and manages the configuration about when gas needs to be paid out. + +The Chainlink automation page describing chain links interaction with this contract to automate can be found [HERE](https://automation.chain.link/mainnet/49137003109931569296061861008543141201993692712511923124729013217194676883059). You can also top up link needed to cover the costs of triggering the contract. + + +The chainlink side of the automation can be found here: +The list of watched addresses that may be refilled can be found by calling `GetWatchList` on the [Maxi GasStation contract](https://etherscan.io/address/0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A#readContract). + +The specific parameters for a given watchlist address can be found by calling `getAccountsInfo(address)` for an address on the watchlist. The outputs look like this: +``` +[ getAccountInfo(address) method Response ] + isActive bool : true + minBalanceWei uint96 : 500000000000000000 + topUpToAmountWei uint96 : 1000000000000000000 + lastTopUpTimestamp uint56 : 1676923715 +``` +**minBalanceWei:** defines the target minimum ETH balance for this address. +**topUpToAmountWei:** defines the minimum amount of ETH that will be sent as part of a topup. + +In the configuration above 0.5 ETH minBalance and 1 ETH TopUpToAmount means that the given wall should always have between 0.5 and 1 ETH. The gas station will top the wallet up to 1 ETH any time it falls below 0.5. + +You can add new recipients or change the configuration of current ones by calling (addRecipients()). You can remove addresses from the watch list entirely by calling removeRecipients() + +### It's not working, what could be wrong. +Check the [Automation Page](https://automation.chain.link/mainnet/49137003109931569296061861008543141201993692712511923124729013217194676883059) and make sure there is enough LINK. If not you can use the button to fund the upkeep with more. +![img.png](../docs/images/fundUpkeep.png) + +Check the [GasStation contract](https://etherscan.io/address/0x7fb8f5D04b521B6880158819E69538655AABD5c4#writeContract): + +- Does it have enough ETH? Just send ETH to the contract to fund with more. + - The gas station should fire if there is any watched wallet that has below minAmount and can be topped up to topUpToAmount, even if all the needy wallets together make up more than the eth in the station. +- does the read function `checkUpkeep("0x")` return TRUE with some calldata, if so then LINK should be linking. +- Has it been under minWaitPeriod(read function) since the address needing was last topped up? + +If you still haven't figured out what is wrong, talk to Tritium and/or take a minute to think about the watchlists and the current state of things. + +Check Upkeep will not return True unless the following reasonably selfExplanitory if statement returns true: + +```solidity +if (recipient.balance < target.minBalanceWei) {// Wallet needs funding + uint256 delta = target.topUpToAmountWei - recipient.balance; + if ( + target.lastTopUpTimestamp + minWaitPeriod <= block.timestamp && // Not too fast + balance >= delta // we have the bags + ) + {} +} +``` + +### How can I learn more about chainlink automation +[DOCS](https://docs.chain.link/chainlink-automation/introduction) diff --git a/chainlink_keepers/retired_keepers.json b/chainlink_keepers/retired_keepers.json new file mode 100644 index 000000000..31e259cd5 --- /dev/null +++ b/chainlink_keepers/retired_keepers.json @@ -0,0 +1,8 @@ +{ + "mainnet": { + "maxiGasStation": { + "upkeepId": "62602467182204477380138952081172885895406053754821061796893606503759482417757", + "contract": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A" + } + } +} \ No newline at end of file diff --git a/chainlink_keepers/veBalFeesInjector.md b/chainlink_keepers/veBalFeesInjector.md new file mode 100644 index 000000000..afb9572b5 --- /dev/null +++ b/chainlink_keepers/veBalFeesInjector.md @@ -0,0 +1,19 @@ +# veBalFeesInjector + +This contract/upkeep is meant to handle the regular injection of veBAL fees. You can find the repo [here](https://github.com/BalancerMaxis/veBalFeeInjector). It is intended to take biweekly outputs of fee processing operations in the configured tokens, and pay them out out over a 2 one week periods. + + +The payout occurs by paying half of the total amount one week, and then the full amount the next, then half, then all. As a result, 2 weeks fees injected will result in half paid one week, and the remainder paid the following week. + + +The contract includes admin functions to change the handled tokens and sweep ERC20s and gas tokens. + +You can find out more information about the tokens handled, by calling getTokens() in the read functions of the contract. + +Etherscan: https://etherscan.io/address/0x8AD2512819A7eae1dd398973EFfaE48dafBe8255#readContract +Chainlink Upkeep: https://automation.chain.link/mainnet/272064120448970968129350878338658121801758038303433171306878704282507266745 + +This contract and upkeep is owned by the lm multisig. + +## When does it run +The injection should run as close to possible to the turn of the epoch. This injected the fees that will be delivered and the start of the epoch that follows (next next epoch). diff --git a/config/core_pools.json b/config/core_pools.json new file mode 100644 index 000000000..987eeb0a1 --- /dev/null +++ b/config/core_pools.json @@ -0,0 +1,96 @@ +{ + "mainnet": { + "0x05ff47afada98a98982113758878f9a8b9fdda0a000000000000000000000645": "weETH/rETH", + "0x1cce5169bde03f3d5ad0206f6bd057953539dae600020000000000000000062b": "ECLP-GYD-sDAI", + "0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112": "B-rETH-STABLE", + "0x264062ca46a1322c2e6464471764089e01f22f1900000000000000000000066b": "sDOLA-DOLA BSP", + "0x2e848426aec6dbf2260535a5bea048ed94d9ff3d000000000000000000000536": "wbETH-wstETH", + "0x36be1e97ea98ab43b4debf92742517266f5731a3000200000000000000000466": "50wstETH-50ACX", + "0x40c806394d03d350420d13cd7d1de1c806f349560000000000000000000005f5": "qETH/WETH", + "0x42ed016f826165c2e5976fe5bc3df540c5ad0af700000000000000000000058b": "wstETH-rETH-sfrxETH-BPT", + "0x49cbd67651fbabce12d1df18499896ec87bef46f00000000000000000000064a": "sDAI/3Pool", + "0x596192bb6e41802428ac943d2f1476c1af25cc0e000000000000000000000659": "ezETH-WETH-BPT", + "0x7761b6e0daa04e70637d81f1da7d186c205c2ade00000000000000000000065d": "rsETH / ETHx", + "0x848a5564158d84b8a8fb68ab5d004fae11619a5400000000000000000000066a": "weETH/ezETH/rswETH", + "0x93d199263632a4ef4bb438f1feb99e57b4b5f0bd0000000000000000000005c2": "wstETH-WETH-BPT", + "0x9f9d900462492d4c21e9523ca95a7cd86142f298000200000000000000000462": "50rETH-50RPL", + "0xb08885e6026bab4333a80024ec25a1a3e1ff2b8a000200000000000000000445": "B-staFiETH-WETH-Stable", + "0xd3f8ab9c5928fdf53153e7757131ad7815fe3146000000000000000000000661": "vETH/wstETH", + "0xdd59f89b5b07b7844d72996fc9d83d81acc8219600000000000000000000059e": "uniETH-WETH", + "0xdedb11a6a23263469567c2881a9b9f8629ee0041000000000000000000000669": "svETH/wstETH", + "0xdfe6e7e18f6cc65fa13c8d8966013d4fda74b6ba000000000000000000000558": "ankrETH/wstETH", + "0xe7e2c68d3b13d905bbb636709cf4dfd21076b9d20000000000000000000005ca": "swETH-WETH-BPT", + "0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de": "ECLP-wstETH-wETH", + "0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0": "ECLP-wstETH-cbETH", + "0x70d5e3234f6329c1d5a26796dcf4e109d69a34880000000000000000000005e7": "uniETH/wstETH/rETH", + "0xb3b675a9a3cb0df8f66caf08549371bfb76a9867000200000000000000000611": "ECLP-mevETH-wETH", + "0x5f1f4e50ba51d723f12385a8a9606afc3a0555f5000200000000000000000465": "50wstETH-50LDO", + "0x1ee442b5326009bb18f2f472d3e0061513d1a0ff000200000000000000000464": "50rETH-50BADGER", + "0xe3e0022d25194431a98e8bf5034d2617c96e1d44000000000000000000000670": "instETH-wstETH", + "0x09b03b7cbb19b3dae94f884cf60dbc3c99a3947b00000000000000000000066c": "pyUSD/sDOLA BSP", + "0xff42a9af956617e4c3532ef2fc7567465efe4909000200000000000000000672": "50KEP/50rsETH", + "0x6aa5a6b9257ca6e18b2da94e1a5fbe57ce2947ca00000000000000000000067b": "genETH/wstETH", + "0xb91159aa527d4769cb9faf3e4adb760c7e8c8ea700000000000000000000067c": "ETHx/wstETH", + "0x63e0d47a6964ad1565345da9bfa66659f4983f02000000000000000000000681": "pufETH/wstETH", + "0xf16aee6a71af1a9bc8f56975a4c2705ca7a782bc0002000000000000000004bb": "20WETH-80ALCX", + "0x8353157092ed8be69a9df8f95af097bbf33cb2af0000000000000000000005d9": "GHO/USDT/USDC", + "0x3ff3a210e57cfe679d9ad1e9ba6453a716c56a2e0002000000000000000005d5": "STG/USDC", + "0xcf7b51ce5755513d4be016b0e28d6edeffa1d52a000200000000000000000617": "80RDNT-20wETH", + "0xed0df9cd16d806e8a523805e53cf0c56e6db4d1d000000000000000000000687": "ShezUSD/sDAI", + "0x51c72451eddfcc08aae540fd36434bb7ba340d33000000000000000000000683": "mstETH/wstETH", + "0xb819feef8f0fcdc268afe14162983a69f6bf179e000000000000000000000689": "sUSDe/USDC" + }, + "polygon": { + "0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22": "maticX-WMATIC-BPT", + "0xee278d943584dd8640eaf4cc6c7a5c80c0073e85000200000000000000000bc7": "ECLP-WMATIC-MATICX", + "0xf0ad209e2e969eaaa8c882aac71f02d8a047d5c2000200000000000000000b49": "ECLP-WMATIC-stMATIC" + }, + "arbitrum": { + "0x2ce4457acac29da4736ae6f5cd9f583a6b335c270000000000000000000004dc": "sFRAX/4POOL", + "0x2d6ced12420a9af5a83765a8c48be2afcd1a8feb000000000000000000000500": "cbETH/rETH/wstETH", + "0x3fd4954a851ead144c2ff72b1f5a38ea5976bd54000000000000000000000480": "ankrETH/wstETH-BPT", + "0x451b0afd69ace11ec0ac339033d54d2543b088a80000000000000000000004d5": "plsRDNT-Stable", + "0x9791d590788598535278552eecd4b211bfc790cb000000000000000000000498": "wstETH-WETH-BPT", + "0xb61371ab661b1acec81c699854d2f911070c059e000000000000000000000516": "ezETH/wstETH", + "0xc2598280bfea1fe18dfcabd21c7165c40c6859d30000000000000000000004f3": "wstETH/sfrxETH", + "0xd0ec47c54ca5e20aaae4616c25c825c7f48d40690000000000000000000004ef": "rETH/wETH BPT", + "0x9f8ed1acfe0c863381b9081aff2144fc867aa7730002000000000000000004d4": "ANKR:ankrETH", + "0xa1a8bf131571a2139feb79401aa4a2e9482df6270002000000000000000004b4": "wstETH:4pool", + "0x4b3af34eb1135d59df8b9cdc2ff07d30d05334c400000000000000000000050d": "weETH/rETH", + "0xca8ecd05a289b1fbc2e0eaec07360c4bfec07b6100020000000000000000051d": "2CLP-AUSDC-USDC", + "0x14abd18d1fa335e9f630a658a2799b33208763fa00020000000000000000051f": "2CLP-AUSDT-USDT", + "0x125bc5a031b2db6733bfa35d914ffa428095978b000200000000000000000514": "ECLP-AUSDC-AUSDT", + "0x423a1323c871abc9d89eb06855bf5347048fc4a5000000000000000000000496": "4POOL", + "0x32df62dc3aed2cd6224193052ce665dc181658410002000000000000000003bd": "RDNT-WETH", + "0x2f0cdf8596be980ef24924ca7bf54e630ca526b2000000000000000000000529": "sUSDe/USDC", + "0x260dbd54d87a10a0fc9d08622ebc969a3bf4e6bb000200000000000000000536": "jitoSOL/wstETH", + "0xfb2f7ed572589940e24c5711c002adc59d5e79ef000000000000000000000535": "jitoSOL/wSOL", + "0xef0c116a2818a5b1a5d836a291856a321f43c2fb00020000000000000000053a": "woETH/wETH", + "0x7b54c44fbe6db6d97fd22b8756f89c0af16202cc00000000000000000000053c": "ETHx/wstETH" + }, + "optimism": {}, + "gnosis": { + "0xbad20c15a773bf03ab973302f61fabcea5101f0a000000000000000000000034": "bb-WETH-wstETH" + }, + "zkevm": { + "0x9f826c576b1f821df31ca6d58c9443db25a81d65000200000000000000000064": "ECLP-wETH-rETH", + "0x1d0a8a31cdb04efac3153237526fb15cc65a252000000000000000000000000f": "B-rETH-STABLE", + "0xe1f2c039a68a216de6dd427be6c60decf405762a00000000000000000000000e": "B-wstETH-STABLE", + "0xffc865fcb34e754fad4b0144139b9c28c81c3eff00000000000000000000005f": "rsETH/wETH", + "0xe58cd0c79cdff6252476b3445bee1400503e0ae0000200000000000000000066": "ECLP-wstETH-WETH" + }, + "avalanche": { + "0x9fa6ab3d78984a69e712730a2227f20bcc8b5ad900000000000000000000001f": "yyAVAX-WAVAX-BPT", + "0xc13546b97b9b1b15372368dc06529d7191081f5b00000000000000000000001d": "ggAVAX-WAVAX-BPT", + "0xfd2620c9cfcec7d152467633b3b0ca338d3d78cc00000000000000000000001c": "sAVAX-WAVAX-BPT", + "0xb26f0e66317846bd5fe0cbaa1d269f0efeb05c9600000000000000000000001e": "USDC-USDT" + }, + "base": { + "0xc771c1a5905420daec317b154eb13e4198ba97d0000000000000000000000023": "rETH-WETH-BPT", + "0xfb4c2e6e6e27b5b4a07a36360c89ede29bb3c9b6000000000000000000000026": "cbETH/WETH", + "0x0c659734f1eef9c63b7ebdf78a164cdd745586db000000000000000000000046": "USDC/USDbC/axlUSDC", + "0x98bedb6a3c0b6feebbe662e6419481a6877d9681000000000000000000000104": "sfrxETH/cbETH", + "0x821afe819450a359e29a5209c48f2fa3321c8ad200020000000000000000010d": "stataBasUSDC/sDAI", + "0xab99a3e856deb448ed99713dfce62f937e2d4d74000000000000000000000118": "weETH/wETH" + } +} diff --git a/config/core_pools_rerouting.json b/config/core_pools_rerouting.json new file mode 100644 index 000000000..589427e59 --- /dev/null +++ b/config/core_pools_rerouting.json @@ -0,0 +1,3 @@ +{ + "mainnet": {} +} diff --git a/config/pool_incentives_overrides.json b/config/pool_incentives_overrides.json new file mode 100644 index 000000000..7a64f3b1b --- /dev/null +++ b/config/pool_incentives_overrides.json @@ -0,0 +1,6 @@ +{ + "0x1e19cf2d73a72ef1332c882f20534b6519be0276000200000000000000000112": { + "voting_pool_override": "bal", + "market_override": "hh" + } +} diff --git a/config/protocol_fees_constants.json b/config/protocol_fees_constants.json new file mode 100644 index 000000000..08195758d --- /dev/null +++ b/config/protocol_fees_constants.json @@ -0,0 +1,8 @@ +{ + "min_aura_incentive": 800, + "min_existing_aura_incentive": 600, + "min_vote_incentive_amount": 500, + "vebal_share_pct": 0.325, + "dao_share_pct": 0.175, + "vote_incentive_pct": 0.5 +} diff --git a/docs/Adding Direct Incentives to Gauges/TransactionBuilder.png b/docs/Adding Direct Incentives to Gauges/TransactionBuilder.png new file mode 100644 index 000000000..3bd3f21a8 Binary files /dev/null and b/docs/Adding Direct Incentives to Gauges/TransactionBuilder.png differ diff --git a/docs/Adding Direct Incentives to Gauges/TransactionBuilderInterface.png b/docs/Adding Direct Incentives to Gauges/TransactionBuilderInterface.png new file mode 100644 index 000000000..88527e6aa Binary files /dev/null and b/docs/Adding Direct Incentives to Gauges/TransactionBuilderInterface.png differ diff --git a/docs/Adding Direct Incentives to Gauges/Write_add_reward.png b/docs/Adding Direct Incentives to Gauges/Write_add_reward.png new file mode 100644 index 000000000..dd66da056 Binary files /dev/null and b/docs/Adding Direct Incentives to Gauges/Write_add_reward.png differ diff --git a/docs/Adding Direct Incentives to Gauges/add_reward_data.png b/docs/Adding Direct Incentives to Gauges/add_reward_data.png new file mode 100644 index 000000000..d15854cca Binary files /dev/null and b/docs/Adding Direct Incentives to Gauges/add_reward_data.png differ diff --git a/docs/Adding Direct Incentives to Gauges/how_to_add_reward.md b/docs/Adding Direct Incentives to Gauges/how_to_add_reward.md new file mode 100644 index 000000000..72a2e724d --- /dev/null +++ b/docs/Adding Direct Incentives to Gauges/how_to_add_reward.md @@ -0,0 +1,45 @@ +## Using the add_reward function + +### Purpose + +The add_reward function is a writable function on all mainnet and child chain gauges in the veBAL system. The purpose of the function is to permit a token other than BAL to be streamed onto a gauge where users can stake their pool tokens to receive a portion of the rewards. + +- Per Aura there is an actual limit of 8 reward tokens on their side, 2 of which are BAL and AURA meaning 6 total can be added. It is suggested no more than 2 additional reward tokens are added due to conflict on the Aura contracts when this amount is exceeded. If 3 or more rewards are added to be streamed on a gauge on Balancer, it is suggested that AURA is also added to the rewards of that gauge. +- AURA token address on mainnet: 0xc0c293ce456ff0ed870add98a0828dd4d2903dbf +- Aura Distributor multisig on mainnet: 0x5feA4413E3Cc5Cf3A29a49dB41ac0c24850417a0 for other networks please check with Aura if this address is valid. + +### How to add a reward token + +The steps to adding a reward token involve several prequisites. + +1. Confirm the multisig the transaction will be sent from has the proper [permissions](https://docs.balancer.fi/reference/authorizer/mainnet.html). At the time of writing the add_reward permission on LiquidityGaugev5 is needed. This multisig may be different across various networks. + +2. When executing the transaction the most utilzied method is to go the the gnosis safe interface "Use Transaction Builder" + +![TransactionBuilder.png](TransactionBuilder.png) + +3. Once on the transaction builder interface, you must confirm the AuthorizerAdapterEntrypoint contract on your respective network. This can be done via Balancer's [documents](https://docs.balancer.fi/reference/contracts/deployment-addresses/mainnet.html#authorization) or the [defilytica contract map](https://defilytica.tools/#/balancer/governanceMap). + +4. For mainnet the AuthorizerAdapterEntrypoint is 0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA. The only function that can be executed is performAction. For inputs there will be the following: +- ETH Value: Always equal to "0" +- target(address): This will be the child chain gauge of the pool which is meant to receive rewards. On mainnet it is just the mainnet gauge address. + +![TransactionBuilderInterface.png](TransactionBuilderInterface.png) + +- data(bytes): See step 5. + +5. Depending on the wallet used this step will vary slightly, but the goal is to simulate an add_reward function via an EOA and retrieve the proper data from that transaction. Note that this transaction will be rejected. Firstly, go to the etherscan or equivalent site for the gauge you are adding a reward for. + +Then go to the "Contract" section and click "Write" or "Write Contract as Proxy". Depending on the network you are on the add_reward function will be. Here there will be two address requirements to input +- _reward_token: The address of the token which will be streamed to the gauge +- _distributor: The contract which will send rewards to the gauge, this can be an EOA, a SAFE, a rewards injector contract, or another injector contract. The address must be agreed upon with the partner who is sending rewards as all strategies will vary and injectors do not exist for all possible reward tokens. + +Once you have your _reward_token and _distributor addresses defined, connect your wallet, enter the addresses into their respective cells and click "write" + +![Write_add_reward.png](Write_add_reward.png) + +In your wallet interface you can examine the data which this transaction would entail and copy that text to place in the data(bytes) section of the SAFE Transaction builder. + +![add_reward_data.png](add_reward_data.png) + +Once the data is copied and placed into the SAFE transaction builder data(bytes) cell then transaction in your EOA can be rejected. You can the proceed with creating the transaction batch in the safe and simulating on tenderly. \ No newline at end of file diff --git a/docs/Authorizer/vault_permissions.md b/docs/Authorizer/vault_permissions.md new file mode 100644 index 000000000..eeb2fdd82 --- /dev/null +++ b/docs/Authorizer/vault_permissions.md @@ -0,0 +1,31 @@ +## Relayer permissions context for the Balancer V2 Vault + + +### Why Relayers? +[Relayers](https://docs.balancer.fi/concepts/advanced/relayers.html) allow users to enable modular automations to asset in executing complex functions agains the vault. + +Beyond the migration example listed, here are some other cases in which relayers have been mentioned in governance: + +- [Nested join, exits and swaps](https://forum.balancer.fi/t/proposal-authorize-the-batch-relayer/2378): Allow more diverse joining/exit from pools with a single user transaction. +- [Single TX deposit and stake](https://forum.balancer.fi/t/bip-31-authorize-the-batch-relayer-v3/3488) +- [Reaper integration for beets](https://forum.balancer.fi/t/bip-70-authorize-the-batch-relayer-v4/3734) + + +### How do permissions work / double authorization + +For each of the functions listed below, the vault has special handling configured for double authorization. This means that in order for an address to call commands in this context on a users behalf, the following 2 conditions must be true: + +1. The address listed has been granted access to the function called via the Authorizer. +2. The user has granted the specific address the ability to act on their behalf by calling [setRelayerApproval](https://github.com/balancer-labs/balancer-v2-monorepo/blob/63ffcf2018b02c038041540e4984bc6dd4a8c89c/pkg/vault/contracts/VaultAuthorization.sol#L96) on the vault for the given relayer. + +[VaultAuthorization.sol](https://github.com/balancer-labs/balancer-v2-monorepo/blob/master/pkg/vault/contracts/VaultAuthorization.sol) contains enough of the code to quickly get a good idea how the double auth function works. + +### List of vault function selectors in the special Authroizer Permisisons Context + +- manageUserBalance : Utilize existing Vault allowances and internal balances so that a user does not have to re-approve the new relayer for each token. +- joinPool : Add liquidity to a pool on the user’s behalf. +- exitPool : Remove liquidity from a pool on the user’s behalf. +- swap : Trade within a single pool on the user’s behalf. +- batchSwap : Make a multihop trade or source liquidity from multiple pools. +- setRelayerApproval : Approve another relayer on the user’s behalf ([user must still provide a signed message](https://github.com/balancer-labs/balancer-v2-monorepo/blob/63ffcf2018b02c038041540e4984bc6dd4a8c89c/pkg/vault/contracts/VaultAuthorization.sol#L96)). + diff --git a/docs/img.png b/docs/img.png new file mode 100644 index 000000000..939004996 Binary files /dev/null and b/docs/img.png differ diff --git a/docs/multisig_ops_processes.md b/docs/multisig_ops_processes.md new file mode 100644 index 000000000..d78d4660f --- /dev/null +++ b/docs/multisig_ops_processes.md @@ -0,0 +1,52 @@ +# Multisig Operations Processes + +## The Multisigs and signer sets +Balancer maintains a variety of multisigs. Each execution is intended to somehow link back to governance. + +The source of truth for all multisigs and signer addresses [here](https://github.com/BalancerMaxis/bal_addresses/blob/main/extras/multisigs.json). + +DAO multisigs use the DAO signer set, which requires 6/11 signers to execute. +The rest of the safes use the Maxi signer set, which requires 3/6. + + +### DAO Multisigs +There is one DAO Multisig per chain. Each execution must be directly linked to approved governance. + +The DAO multisig currently operates on a weekly cadence. Each week the Balancer Maxis facilitate and track the [Governance Process](https://github.com/orgs/BalancerMaxis/projects/1). +In this process, BIPs that are deemed ready for execution have pull-requests with [Safe Transaction-Builder paylaods](https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs) prepared in a directory structure that grouped by execution weeks. +![img.png](img.png) + +[Automated reporting](https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/2023-W36/BIP-424.report.txt) is run on each payload, which resolves hard to read addresses and details and makes review easier. +Payloads and reports are reviewed in github and merged. + +Once voting for a week has begun, an [action](https://github.com/BalancerMaxis/multisig-ops/actions/workflows/merge_json.yaml) is run to combine all payloads for the current week by multisig. New reports are generated on the [Combined Payloads](https://github.com/BalancerMaxis/multisig-ops/tree/main/BIPs/00batched) an additional review is conducted. +Here is an [example combined payload report](https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W43/1-0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f.report.txt). + +Following the end of voting, if any votes are rejected, their payload files are moved the [00rejected](../BIPs/00rejected) directory and the combine action is rerun. All of the combined payloads are then loaded into the DAO multisigs per chain. The combined payloads are merged into a final [Signer Report](https://github.com/BalancerMaxis/multisig-ops/blob/main/BIPs/00batched/2023-W42/combined-report.md). This report as well as links to the safe are sent to signers. + +Another member of the Maxis completes an independent review of the loaded payloads to sanity check and shares a detailed report of what the payload will do with the signers. + +Transactions are then signed and executed. + +### Operation Multisigs + +Many operational flows have been delegated the Maxis to administer. This includes administration of extra incentive flows and fee distribution and other operational aspects of the DAO. All of this work is done based on the frameworks set-forth by governance. With the exception of gauge additions, which follow the DAO multisig process described above, operational multisig work is completed by the Maxis using a combination of automation found in this repo, hand crafted transaction builder payloads, and various Safe Apps. Each payload undergoes detailed review my multiple signers. Complex transactions such as incentive payments are reviewed against artifacts founds in this repo. + +More and more of the operational work is being moved to a payload and report flow. Artifacts of most of our work can be found in the multisig-ops repo. + +Attention is given to ensure that operational Multisigs do not control critical amounts of value nor have dangerous influence over the protocol. + +### Emergency SubDAO Multisig + +The [Emergency SubDAO](https://forum.balancer.fi/t/form-the-emergency-subdao/3197) is an additional multisig that has the ability to execute some emergency operations such as: + + - Pausing pools from factories that have been launched less than 90 days ago. + - Putting pools into recovery mode + - Killing Gauges + +The Emergency SubDAO doesn't operate often, but when it does, does so in a war room type situatuion when many members are paying careful attention to what is being done and why. + +### What can the Multisigs Do +Detailed information about what permissions exist and who can do what can be found on [DeFilytica](https://forum.balancer.fi/t/form-the-emergency-subdao/3197) or in the [Balancer Docs](https://docs.balancer.fi/reference/authorizer). + +Additional information about the [Multisigs](https://docs.balancer.fi/concepts/governance/multisig.html) and the [Balancer Governance Process](https://docs.balancer.fi/concepts/governance/process.html) can also be found in the docs. \ No newline at end of file diff --git a/gelato/w3f/functionInfo.json b/gelato/w3f/functionInfo.json new file mode 100644 index 000000000..fdc55b46f --- /dev/null +++ b/gelato/w3f/functionInfo.json @@ -0,0 +1,10 @@ +[ + { + "url": "https://beta.app.gelato.network/task/0xb7e5a920cef45418feccb2b909580627e71df864c0e8597a744edf984f0f35aa?chainId=1", + "cid": "0xb7e5a920cef45418feccb2b909580627e71df864c0e8597a744edf984f0f35aa", + "chain": 1, + "contract": "0xe1deE84FD9A90723548b46AC23E8532BC31f9225", + "name": "GearboxAutobriberV1", + "purpose": "test autobribing and pay GEAR bribs from the tree" + } +] \ No newline at end of file diff --git a/multisigs.md b/multisigs.md index e69de29bb..f9ff17041 100644 --- a/multisigs.md +++ b/multisigs.md @@ -0,0 +1,66 @@ + +### Balancer Multisigs +Here are a list of multisigs that the Maxis can and may load transactions into due to governance snapshots. + +| Name |
    Purpose
    | Chain | Address | Signer Set | +| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | ------------------------------------------------------------------ | +| Protocol Fees Multisig | Collect fees, and set A-Factors and Fees on pools (default pool-owner, except on mainnet where a separate Multisig is used to set fees. | [MAINNET](https://gnosis-safe.io/app/eth:0x7c68c42De679ffB0f16216154C996C354cF1161B/home), [ARBI](https://gnosis-safe.io/app/arb1:0x7c68c42De679ffB0f16216154C996C354cF1161B/home), [POLYGON](https://gnosis-safe.io/app/matic:0x7c68c42De679ffB0f16216154C996C354cF1161B/home) | `0x7c68c42De679ffB0f16216154C996C354cF1161B` | [BAL Maxis](#operational-multisigs-signer-set-aka-balancer-maxis) | +| Mainnet Fee Setter | Default pool owner for Mainnet that can set A-Factors and protocol fees. | [MAINNET](https://gnosis-safe.io/app/eth:0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6/home) | `0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6` | [BAL Maxis](#operational-multisigs-signer-set-aka-balancer-maxis) | +| DAO Multlsig | Funding BIPs, killing of gauges, veBAL whitelisting | [MAINNET](https://gnosis-safe.io/app/eth:0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f/home) | `0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f` | [DAO Signers](#dao-multisig-signer-set) | +| LM Multisig | Used to manage gauges and Reward Tokens and manage liquidity supplied to multichain (bridge). New Gauge requests go here. | [MAINNET](https://gnosis-safe.io/app/eth:0xc38c5f97B34E175FFd35407fc91a937300E33860/home), [ARBI](https://gnosis-safe.io/app/arb1:0xc38c5f97B34E175FFd35407fc91a937300E33860/home), [POLYGON](https://gnosis-safe.io/app/matic:0xc38c5f97B34E175FFd35407fc91a937300E33860/home) | `0xc38c5f97B34E175FFd35407fc91a937300E33860` | [BAL Maxis](#operational-multisigs-signer-set-aka-balancer-maxis) | +| Linear Pool Control | Manage limits on Mainnet Linear Pools | [MAINNET](https://gnosis-safe.io/app/eth:0x75a52c0e32397A3FC0c052E2CeB3479802713Cf4/home) | `0x75a52c0e32397A3FC0c052E2CeB3479802713Cf4` | [BAL Maxis](#operational-multisigs-signer-set-aka-balancer-maxis) | +| Maxi Payments | Holds the Maxi Budget and is used to pay people and expenses. | [MAINNET](https://gnosis-safe.io/app/eth:0x166f54F44F271407f24AA1BE415a730035637325/home) | `0x166f54F44F271407f24AA1BE415a730035637325` | [BAL Maxis](#operational-multisigs-signer-set-aka-balancer-maxis) | +| Managed Treasury | Holds treasury funds managed by Karpatkey as per [BIP-162](https://forum.balancer.fi/t/bip-162-karpatkey-investment-strategy) | [MAINNET](https://app.safe.global/eth:0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89/home) | `0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89` | [DAO Signers](#dao-multisig-signer-set) | +| Arbitrum DAO Multisig | Treasury + Admin functions on Arbitrum | [ARBI](https://app.safe.global/arb1:0xaF23DC5983230E9eEAf93280e312e57539D098D0/home) | `0xaF23DC5983230E9eEAf93280e312e57539D098D0` | [DAO Signers](#dao-multisig-signer-set) | +| Polygon DAO Multisig | Treasury + Admin functions on Polygon | [POLYGON](https://app.safe.global/matic:0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85/home) | `0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85` | [DAO Signers](#dao-multisig-signer-set) | +| Optimsim DAO Multisg | Treasury + Admin functions on Optimism | [OPTIMISM](https://app.safe.global/oeth:0x043f9687842771b3dF8852c1E9801DCAeED3f6bc/home) | `0x043f9687842771b3dF8852c1E9801DCAeED3f6bc` | [DAO Signers](#dao-multisig-signer-set) | +| Opitimism Fees + LM | Fee and reward management on Optimism | [OPTIMISM](https://app.safe.global/oeth:0x09Df1626110803C7b3b07085Ef1E053494155089/home) | `0x09Df1626110803C7b3b07085Ef1E053494155089` | [BAL Maxis](##operational-multisigs-signer-set-aka-balancer-maxis) | + + + +### Ecosystem Multisigs +Here are a list of multisigs that have frequent interactions with BalancerDAO but are not managed in any way by the Maxis and are not triggered by snapshot votes. + +| Name | Purpose Fetjer | Chain | Address | +|------------------|-------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|--------------------------------------------| +| Balancer Grants | Multisig funded by the Balancer treasury with funds managed by the community elected Grants Committee | [MAINNET](https://gnosis-safe.io/app/eth:0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597/home) | 0xE2c91f3409Ad6d8cE3a2E2eb330790398CB23597 | + +### Multisig Signer Sets + +#### DAO Multisigs Signer set +| Signer | Association | Address | +|----------------------------------------------------|--------------------------|---------------------------------------------| +| [Alexander Lange](https://twitter.com/AlexLangeVC) | \(Inflection\) | 0x3ABDc84Dd15b0058B281D7e26CCc3932cfb268aA | +| [0xMaki](https://twitter.com/0xMaki) | \(LayerZero, AURA, DCV\) | 0x285b7EEa81a5B66B62e7276a24c1e0F83F7409c1 | +| [Solarcurve](https://twitter.com/0xSolarcurve) | \(Balancer Maxis\) | 0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 | +| [Evan](https://twitter.com/0xSausageDoge) | \(Fjord\) | 0x59693BA1A5764e087CE166ac0E0085Fc071B9ea7 | +| [Ernesto](https://twitter.com/eboadom) | \(BGD\) | 0xA39a62304d8d43B35114ad7bd1258B0E50e139b3 | +| [Mounir](https://twitter.com/mounibec) | \(Paraswap\) | 0x0951FF0835302929d6c0162b3d2495A85e38ec3A | +| [Trent McConaghy](https://twitter.com/trentmc0) | \(Ocean Protocol\) | 0x478eC43c6867c2884f87B21c164f1fD1308bD9a3 | +| [Stefan](https://twitter.com/StefanDGeorge) | \(Gnosis\) | 0x9F7dfAb2222A473284205cdDF08a677726d786A0 | +| [bonustrack87](https://twitter.com/bonustrack87) | \(Snapshot\) | 0x9BE6ff2A1D5139Eda96339E2644dC1F05d803600 | + | [nanexcool](https://twitter.com/nanexcool) | \(Ethereum OG\) | 0x823DF0278e4998cD0D06FB857fBD51e85b18A250 | + | [David Gerai](https://twitter.com/davgarai) | \(Nostra Finance\) | 0xAc1aA53108712d7f38093A67d380aD54B562a650 | + +**DAO Multisigs always require 6/11 signers to execute a transaction.** + + +Beyond those current signers, [BIP-16](https://forum.balancer.fi/t/bip-16-update-dao-multisig-replacement-list/3361) laid +out a group of backup signers who could replace current signers without further governance. Note that since BIP-16, +Moniur has become an active member of the DAO multisig. + +#### Operational Multisigs Signer Set (Balancer Maxis) +| Signer | Discord Handle | Address | +|--------------|-----------------|---------------------------------------------| +| Solarcurve | solarcurve#5075 | 0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3 | +| Zen Dragon | Zen Dragon#2923 | 0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17 | +| Zekraken | zekraken#0645 | 0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae | +| Mike B | d_w_b_w_d#0685 | 0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D | +| Xeonus | Xeonus#4620 | 0x7019Be4E4eB74cA5F61224FeAf687d2b43998516 | +| Danko | 0xDanko#3565 | 0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438 | +| Tritium | Trtiium#0069 | 0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F | + +**The Balancer Maxi Multisig set requires 2 or 3 out of 7 signers to execute, depending on the security level of the Multisig.** + +The Balancer Maxi's are ratified by a BIP each quarter. [BIP-145](https://forum.balancer.fi/t/bip-145-fund-the-balancer-maxis-for-q1-2023/) +is a recent example of such governance. diff --git a/tools/python/.env.template b/tools/python/.env.template new file mode 100644 index 000000000..760ff3d84 --- /dev/null +++ b/tools/python/.env.template @@ -0,0 +1,2 @@ +DUNE_API_KEY= +DRPC_KEY= \ No newline at end of file diff --git a/tools/python/PoCs/dolaPoolUnpause.py b/tools/python/PoCs/dolaPoolUnpause.py new file mode 100644 index 000000000..10e61ab6f --- /dev/null +++ b/tools/python/PoCs/dolaPoolUnpause.py @@ -0,0 +1,22 @@ +from brownie import accounts, Contract +import json + +operating_account = accounts[0] +dolaPoolAddress = "0x133d241F225750D2c92948E464A5a80111920331" +BalancerDAOmultisig = "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + +with open("./IComposableStable.json", "r") as f: + poolAbi = json.load(f) + + +dolapool = Contract.from_abi("ComposableStablePool", dolaPoolAddress, poolAbi) +authorizer = Contract.from_explorer("0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6") +vault = Contract.from_explorer("0xba12222222228d8ba445958a75a0704d566bf2c8") +RolesToAllow = [ + dolapool.getActionId(dolapool.pause.signature), + dolapool.getActionId(dolapool.unpause.signature), +] +authorizer.grantRoles(RolesToAllow, operating_account, {"from": BalancerDAOmultisig}) +dolapool.unpause({"from": operating_account}) +### Do some stuff here +dolapool.pause({"from": operating_account}) diff --git a/tools/python/abis/BribeMarket.json b/tools/python/abis/BribeMarket.json new file mode 100644 index 000000000..9f7177cf7 --- /dev/null +++ b/tools/python/abis/BribeMarket.json @@ -0,0 +1,1018 @@ +[ + { + "inputs": [], + "name": "AlreadyInitialized", + "type": "error" + }, + { + "inputs": [], + "name": "DeadlinePassed", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidAddress", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidAmount", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidChoiceCount", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidDeadline", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidIdentifier", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidMaxPeriod", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidPeriod", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidPeriodDuration", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidProtocol", + "type": "error" + }, + { + "inputs": [], + "name": "NoWhitelistBribeVault", + "type": "error" + }, + { + "inputs": [], + "name": "NotAuthorized", + "type": "error" + }, + { + "inputs": [], + "name": "NotTeamMember", + "type": "error" + }, + { + "inputs": [], + "name": "TokenNotWhitelisted", + "type": "error" + }, + { + "inputs": [], + "name": "TokenWhitelisted", + "type": "error" + }, + { + "inputs": [], + "name": "VoterBlacklisted", + "type": "error" + }, + { + "inputs": [], + "name": "VoterNotBlacklisted", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "voters", + "type": "address[]" + } + ], + "name": "AddBlacklistedVoters", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "AddWhitelistedTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "GrantTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "bribeVault", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "admin", + "type": "address" + }, + { + "indexed": false, + "internalType": "string", + "name": "protocol", + "type": "string" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "maxPeriods", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "periodDuration", + "type": "uint256" + } + ], + "name": "Initialize", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "voters", + "type": "address[]" + } + ], + "name": "RemoveBlacklistedVoters", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "RemoveWhitelistedTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "RevokeTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "maxPeriods", + "type": "uint256" + } + ], + "name": "SetMaxPeriods", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "periodDuration", + "type": "uint256" + } + ], + "name": "SetPeriodDuration", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32[]", + "name": "proposals", + "type": "bytes32[]" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposals", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32[]", + "name": "proposals", + "type": "bytes32[]" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposalsByAddress", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "proposalIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32[]", + "name": "proposals", + "type": "bytes32[]" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposalsById", + "type": "event" + }, + { + "inputs": [], + "name": "BRIBE_VAULT", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "MAX_PERIODS", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "MAX_PERIOD_DURATION", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "PROTOCOL", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "TEAM_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "_voters", + "type": "address[]" + } + ], + "name": "addBlacklistedVoters", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "_tokens", + "type": "address[]" + } + ], + "name": "addWhitelistedTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_periods", + "type": "uint256" + } + ], + "name": "depositBribe", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_maxTokensPerVote", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_periods", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_permitDeadline", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_signature", + "type": "bytes" + } + ], + "name": "depositBribeWithPermit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getBlacklistedVoters", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "_proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "getBribe", + "outputs": [ + { + "internalType": "address", + "name": "bribeToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "bribeAmount", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getWhitelistedTokens", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_teamMember", + "type": "address" + } + ], + "name": "grantTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "indexOfBlacklistedVoter", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "indexOfWhitelistedToken", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_bribeVault", + "type": "address" + }, + { + "internalType": "address", + "name": "_admin", + "type": "address" + }, + { + "internalType": "string", + "name": "_protocol", + "type": "string" + }, + { + "internalType": "uint256", + "name": "_maxPeriods", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_periodDuration", + "type": "uint256" + } + ], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_voter", + "type": "address" + } + ], + "name": "isBlacklistedVoter", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isWhitelistedToken", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "maxPeriods", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "periodDuration", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "name": "proposalDeadlines", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "_voters", + "type": "address[]" + } + ], + "name": "removeBlacklistedVoters", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "_tokens", + "type": "address[]" + } + ], + "name": "removeWhitelistedTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_teamMember", + "type": "address" + } + ], + "name": "revokeTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_periods", + "type": "uint256" + } + ], + "name": "setMaxPeriods", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_periodDuration", + "type": "uint256" + } + ], + "name": "setPeriodDuration", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes[]", + "name": "_identifiers", + "type": "bytes[]" + }, + { + "internalType": "uint256", + "name": "_deadline", + "type": "uint256" + } + ], + "name": "setProposals", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "_addresses", + "type": "address[]" + }, + { + "internalType": "uint256", + "name": "_deadline", + "type": "uint256" + } + ], + "name": "setProposalsByAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_proposalIndex", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_choiceCount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_deadline", + "type": "uint256" + } + ], + "name": "setProposalsById", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/tools/python/abis/ERC20.json b/tools/python/abis/ERC20.json new file mode 100644 index 000000000..668d6979f --- /dev/null +++ b/tools/python/abis/ERC20.json @@ -0,0 +1,222 @@ +[ + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_spender", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_from", + "type": "address" + }, + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [ + { + "name": "", + "type": "uint8" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "_owner", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "balance", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_to", + "type": "address" + }, + { + "name": "_value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "_owner", + "type": "address" + }, + { + "name": "_spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "from", + "type": "address" + }, + { + "indexed": true, + "name": "to", + "type": "address" + }, + { + "indexed": false, + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + } +] \ No newline at end of file diff --git a/tools/python/abis/GearAirdropDistributor.json b/tools/python/abis/GearAirdropDistributor.json new file mode 100644 index 000000000..95d650451 --- /dev/null +++ b/tools/python/abis/GearAirdropDistributor.json @@ -0,0 +1,320 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "addressProvider", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "merkleRoot_", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct ClaimedData[]", + "name": "alreadyClaimed", + "type": "tuple[]" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [], + "name": "AlreadyClaimedFinishedException", + "type": "error" + }, + { + "inputs": [], + "name": "TreasuryOnlyException", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bool", + "name": "historic", + "type": "bool" + } + ], + "name": "Claimed", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "oldRoot", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newRoot", + "type": "bytes32" + } + ], + "name": "RootUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint8", + "name": "campaignId", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "TokenAllocated", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "totalAmount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "claimed", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint8", + "name": "campaignId", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct DistributionData[]", + "name": "data", + "type": "tuple[]" + } + ], + "name": "emitDistributionEvents", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "merkleRoot", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "token", + "outputs": [ + { + "internalType": "contract IERC20", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "treasury", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct ClaimedData[]", + "name": "alreadyClaimed", + "type": "tuple[]" + } + ], + "name": "updateHistoricClaims", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "newRoot", + "type": "bytes32" + } + ], + "name": "updateMerkleRoot", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } +] \ No newline at end of file diff --git a/tools/python/abis/IAuraBriber.json b/tools/python/abis/IAuraBriber.json new file mode 100644 index 000000000..76d5000d8 --- /dev/null +++ b/tools/python/abis/IAuraBriber.json @@ -0,0 +1,733 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "_BRIBE_VAULT", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "AddWhitelistTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "bribeIdentifier", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "rewardIdentifier", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "briber", + "type": "address" + } + ], + "name": "DepositBribe", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "GrantTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "RemoveWhitelistTokens", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "RevokeTeamRole", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposal", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "proposalIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "choiceCount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "SetProposalChoices", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "SetRewardForwarding", + "type": "event" + }, + { + "inputs": [], + "name": "BRIBE_VAULT", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "PROTOCOL", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "TEAM_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "addWhitelistTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "allWhitelistedTokens", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + } + ], + "name": "depositBribe", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "depositBribeERC20", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "generateBribeVaultIdentifier", + "outputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "generateRewardIdentifier", + "outputs": [ + { + "internalType": "bytes32", + "name": "identifier", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "proposal", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "proposalDeadline", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "getBribe", + "outputs": [ + { + "internalType": "address", + "name": "bribeToken", + "type": "address" + }, + { + "internalType": "uint256", + "name": "bribeAmount", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getWhitelistedTokens", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "grantTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "indexOfWhitelistedToken", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "isWhitelistedToken", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "name": "proposalDeadlines", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]" + } + ], + "name": "removeWhitelistTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "teamMember", + "type": "address" + } + ], + "name": "revokeTeamRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "rewardForwarding", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalIndex", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "choiceCount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "setProposalChoices", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + } + ], + "name": "setRewardForwarding", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/tools/python/abis/IBalancerBribe.json b/tools/python/abis/IBalancerBribe.json new file mode 100644 index 000000000..c45d81aee --- /dev/null +++ b/tools/python/abis/IBalancerBribe.json @@ -0,0 +1 @@ +[{"inputs":[{"internalType":"address","name":"_BRIBE_VAULT","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"AddWhitelistTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"proposal","type":"bytes32"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"bribeIdentifier","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"rewardIdentifier","type":"bytes32"},{"indexed":true,"internalType":"address","name":"briber","type":"address"}],"name":"DepositBribe","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"teamMember","type":"address"}],"name":"GrantTeamRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"RemoveWhitelistTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"teamMember","type":"address"}],"name":"RevokeTeamRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"proposal","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"SetProposal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"SetRewardForwarding","type":"event"},{"inputs":[],"name":"BRIBE_VAULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROTOCOL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"addWhitelistTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allWhitelistedTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proposal","type":"bytes32"}],"name":"depositBribe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proposal","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositBribeERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"gauges","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proposal","type":"bytes32"},{"internalType":"uint256","name":"proposalDeadline","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"generateBribeVaultIdentifier","outputs":[{"internalType":"bytes32","name":"identifier","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalDeadline","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"generateRewardIdentifier","outputs":[{"internalType":"bytes32","name":"identifier","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"proposal","type":"bytes32"},{"internalType":"uint256","name":"proposalDeadline","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"getBribe","outputs":[{"internalType":"address","name":"bribeToken","type":"address"},{"internalType":"uint256","name":"bribeAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGauges","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"teamMember","type":"address"}],"name":"grantTeamRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"indexOfGauge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"indexOfWhitelistedToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"isWhitelistedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"proposalDeadlines","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"removeWhitelistTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"teamMember","type":"address"}],"name":"revokeTeamRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardForwarding","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"setGaugeProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"gauges_","type":"address[]"},{"internalType":"uint256[]","name":"deadlines","type":"uint256[]"}],"name":"setGaugeProposals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"setRewardForwarding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}] \ No newline at end of file diff --git a/tools/python/abis/IComposibleStable.json b/tools/python/abis/IComposibleStable.json new file mode 100644 index 000000000..6c192e419 --- /dev/null +++ b/tools/python/abis/IComposibleStable.json @@ -0,0 +1,1409 @@ +[ + { + "inputs": [ + { + "components": [ + { + "internalType": "contract IVault", + "name": "vault", + "type": "address" + }, + { + "internalType": "contract IProtocolFeePercentagesProvider", + "name": "protocolFeeProvider", + "type": "address" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol", + "type": "string" + }, + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "contract IRateProvider[]", + "name": "rateProviders", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "tokenRateCacheDurations", + "type": "uint256[]" + }, + { + "internalType": "bool[]", + "name": "exemptFromYieldProtocolFeeFlags", + "type": "bool[]" + }, + { + "internalType": "uint256", + "name": "amplificationParameter", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "pauseWindowDuration", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodDuration", + "type": "uint256" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + } + ], + "internalType": "struct ComposableStablePool.NewPoolParams", + "name": "params", + "type": "tuple" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "startValue", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "endValue", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "startTime", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "AmpUpdateStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "currentValue", + "type": "uint256" + } + ], + "name": "AmpUpdateStopped", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bool", + "name": "paused", + "type": "bool" + } + ], + "name": "PausedStateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFeePercentage", + "type": "uint256" + } + ], + "name": "ProtocolFeePercentageCacheUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bool", + "name": "enabled", + "type": "bool" + } + ], + "name": "RecoveryModeStateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "SwapFeePercentageChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "tokenIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + } + ], + "name": "TokenRateCacheUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "tokenIndex", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "contract IRateProvider", + "name": "provider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "cacheDuration", + "type": "uint256" + } + ], + "name": "TokenRateProviderSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [], + "name": "DELEGATE_PROTOCOL_SWAP_FEES_SENTINEL", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DOMAIN_SEPARATOR", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "disableRecoveryMode", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "enableRecoveryMode", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "selector", + "type": "bytes4" + } + ], + "name": "getActionId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getActualSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAmplificationParameter", + "outputs": [ + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isUpdating", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "precision", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getAuthorizer", + "outputs": [ + { + "internalType": "contract IAuthorizer", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getBptIndex", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getDomainSeparator", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getLastJoinExitData", + "outputs": [ + { + "internalType": "uint256", + "name": "lastJoinExitAmplification", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "lastPostJoinExitInvariant", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getMinimumBpt", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getNextNonce", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPausedState", + "outputs": [ + { + "internalType": "bool", + "name": "paused", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "pauseWindowEndTime", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "bufferPeriodEndTime", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getPoolId", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "feeType", + "type": "uint256" + } + ], + "name": "getProtocolFeePercentageCache", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getProtocolFeesCollector", + "outputs": [ + { + "internalType": "contract IProtocolFeesCollector", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getProtocolSwapFeeDelegation", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getRateProviders", + "outputs": [ + { + "internalType": "contract IRateProvider[]", + "name": "", + "type": "address[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getScalingFactors", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getSwapFeePercentage", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "getTokenRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "getTokenRateCache", + "outputs": [ + { + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "oldRate", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "expires", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "getVault", + "outputs": [ + { + "internalType": "contract IVault", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "inRecoveryMode", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "isTokenExemptFromYieldProtocolFee", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "onExitPool", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "onJoinPool", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "enum IVault.SwapKind", + "name": "kind", + "type": "uint8" + }, + { + "internalType": "contract IERC20", + "name": "tokenIn", + "type": "address" + }, + { + "internalType": "contract IERC20", + "name": "tokenOut", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "internalType": "struct IPoolSwapStructs.SwapRequest", + "name": "swapRequest", + "type": "tuple" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "indexIn", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "indexOut", + "type": "uint256" + } + ], + "name": "onSwap", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "permit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "queryExit", + "outputs": [ + { + "internalType": "uint256", + "name": "bptIn", + "type": "uint256" + }, + { + "internalType": "uint256[]", + "name": "amountsOut", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "poolId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "balances", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "lastChangeBlock", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolSwapFeePercentage", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "userData", + "type": "bytes" + } + ], + "name": "queryJoin", + "outputs": [ + { + "internalType": "uint256", + "name": "bptOut", + "type": "uint256" + }, + { + "internalType": "uint256[]", + "name": "amountsIn", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "bytes", + "name": "poolConfig", + "type": "bytes" + } + ], + "name": "setAssetManagerPoolConfig", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "swapFeePercentage", + "type": "uint256" + } + ], + "name": "setSwapFeePercentage", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "rawEndValue", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "endTime", + "type": "uint256" + } + ], + "name": "startAmplificationParameterUpdate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "stopAmplificationParameterUpdate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "updateProtocolFeePercentageCache", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + } + ], + "name": "updateTokenRateCache", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/tools/python/abis/IVault.json b/tools/python/abis/IVault.json new file mode 100644 index 000000000..683e4bf7b --- /dev/null +++ b/tools/python/abis/IVault.json @@ -0,0 +1 @@ +[{"inputs":[{"internalType":"contract IAuthorizer","name":"authorizer","type":"address"},{"internalType":"contract IWETH","name":"weth","type":"address"},{"internalType":"uint256","name":"pauseWindowDuration","type":"uint256"},{"internalType":"uint256","name":"bufferPeriodDuration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IAuthorizer","name":"newAuthorizer","type":"address"}],"name":"AuthorizerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExternalBalanceTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IFlashLoanRecipient","name":"recipient","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"FlashLoan","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"int256","name":"delta","type":"int256"}],"name":"InternalBalanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"paused","type":"bool"}],"name":"PausedStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"indexed":false,"internalType":"int256[]","name":"deltas","type":"int256[]"},{"indexed":false,"internalType":"uint256[]","name":"protocolFeeAmounts","type":"uint256[]"}],"name":"PoolBalanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"assetManager","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"int256","name":"cashDelta","type":"int256"},{"indexed":false,"internalType":"int256","name":"managedDelta","type":"int256"}],"name":"PoolBalanceManaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"poolAddress","type":"address"},{"indexed":false,"internalType":"enum IVault.PoolSpecialization","name":"specialization","type":"uint8"}],"name":"PoolRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"relayer","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"RelayerApprovalChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":true,"internalType":"contract IERC20","name":"tokenIn","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"tokenOut","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":false,"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"name":"TokensDeregistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"poolId","type":"bytes32"},{"indexed":false,"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"indexed":false,"internalType":"address[]","name":"assetManagers","type":"address[]"}],"name":"TokensRegistered","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IVault.SwapKind","name":"kind","type":"uint8"},{"components":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"uint256","name":"assetInIndex","type":"uint256"},{"internalType":"uint256","name":"assetOutIndex","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"}],"internalType":"struct IVault.BatchSwapStep[]","name":"swaps","type":"tuple[]"},{"internalType":"contract IAsset[]","name":"assets","type":"address[]"},{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"fromInternalBalance","type":"bool"},{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"bool","name":"toInternalBalance","type":"bool"}],"internalType":"struct IVault.FundManagement","name":"funds","type":"tuple"},{"internalType":"int256[]","name":"limits","type":"int256[]"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"batchSwap","outputs":[{"internalType":"int256[]","name":"assetDeltas","type":"int256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"name":"deregisterTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"address payable","name":"recipient","type":"address"},{"components":[{"internalType":"contract IAsset[]","name":"assets","type":"address[]"},{"internalType":"uint256[]","name":"minAmountsOut","type":"uint256[]"},{"internalType":"bytes","name":"userData","type":"bytes"},{"internalType":"bool","name":"toInternalBalance","type":"bool"}],"internalType":"struct IVault.ExitPoolRequest","name":"request","type":"tuple"}],"name":"exitPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IFlashLoanRecipient","name":"recipient","type":"address"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"userData","type":"bytes"}],"name":"flashLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getActionId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuthorizer","outputs":[{"internalType":"contract IAuthorizer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"name":"getInternalBalance","outputs":[{"internalType":"uint256[]","name":"balances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNextNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPausedState","outputs":[{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"uint256","name":"pauseWindowEndTime","type":"uint256"},{"internalType":"uint256","name":"bufferPeriodEndTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"}],"name":"getPool","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"enum IVault.PoolSpecialization","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"getPoolTokenInfo","outputs":[{"internalType":"uint256","name":"cash","type":"uint256"},{"internalType":"uint256","name":"managed","type":"uint256"},{"internalType":"uint256","name":"lastChangeBlock","type":"uint256"},{"internalType":"address","name":"assetManager","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"}],"name":"getPoolTokens","outputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"balances","type":"uint256[]"},{"internalType":"uint256","name":"lastChangeBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getProtocolFeesCollector","outputs":[{"internalType":"contract ProtocolFeesCollector","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"relayer","type":"address"}],"name":"hasApprovedRelayer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"components":[{"internalType":"contract IAsset[]","name":"assets","type":"address[]"},{"internalType":"uint256[]","name":"maxAmountsIn","type":"uint256[]"},{"internalType":"bytes","name":"userData","type":"bytes"},{"internalType":"bool","name":"fromInternalBalance","type":"bool"}],"internalType":"struct IVault.JoinPoolRequest","name":"request","type":"tuple"}],"name":"joinPool","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"enum IVault.PoolBalanceOpKind","name":"kind","type":"uint8"},{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IVault.PoolBalanceOp[]","name":"ops","type":"tuple[]"}],"name":"managePoolBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"enum IVault.UserBalanceOpKind","name":"kind","type":"uint8"},{"internalType":"contract IAsset","name":"asset","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"address payable","name":"recipient","type":"address"}],"internalType":"struct IVault.UserBalanceOp[]","name":"ops","type":"tuple[]"}],"name":"manageUserBalance","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"enum IVault.SwapKind","name":"kind","type":"uint8"},{"components":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"uint256","name":"assetInIndex","type":"uint256"},{"internalType":"uint256","name":"assetOutIndex","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"}],"internalType":"struct IVault.BatchSwapStep[]","name":"swaps","type":"tuple[]"},{"internalType":"contract IAsset[]","name":"assets","type":"address[]"},{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"fromInternalBalance","type":"bool"},{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"bool","name":"toInternalBalance","type":"bool"}],"internalType":"struct IVault.FundManagement","name":"funds","type":"tuple"}],"name":"queryBatchSwap","outputs":[{"internalType":"int256[]","name":"","type":"int256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IVault.PoolSpecialization","name":"specialization","type":"uint8"}],"name":"registerPool","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"address[]","name":"assetManagers","type":"address[]"}],"name":"registerTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IAuthorizer","name":"newAuthorizer","type":"address"}],"name":"setAuthorizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"relayer","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setRelayerApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"poolId","type":"bytes32"},{"internalType":"enum IVault.SwapKind","name":"kind","type":"uint8"},{"internalType":"contract IAsset","name":"assetIn","type":"address"},{"internalType":"contract IAsset","name":"assetOut","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"}],"internalType":"struct IVault.SingleSwap","name":"singleSwap","type":"tuple"},{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"fromInternalBalance","type":"bool"},{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"bool","name":"toInternalBalance","type":"bool"}],"internalType":"struct IVault.FundManagement","name":"funds","type":"tuple"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swap","outputs":[{"internalType":"uint256","name":"amountCalculated","type":"uint256"}],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}] \ No newline at end of file diff --git a/tools/python/abis/MultiMerkleDistributorV2.json b/tools/python/abis/MultiMerkleDistributorV2.json new file mode 100644 index 000000000..4dc3da86f --- /dev/null +++ b/tools/python/abis/MultiMerkleDistributorV2.json @@ -0,0 +1,874 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "_questBoard", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + } + ], + "name": "AddressEmptyCode", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "AddressInsufficientBalance", + "type": "error" + }, + { + "inputs": [], + "name": "AddressZero", + "type": "error" + }, + { + "inputs": [], + "name": "AlreadyClaimed", + "type": "error" + }, + { + "inputs": [], + "name": "CallerNotAllowed", + "type": "error" + }, + { + "inputs": [], + "name": "CallerNotPendingOwner", + "type": "error" + }, + { + "inputs": [], + "name": "CannotBeOwner", + "type": "error" + }, + { + "inputs": [], + "name": "CannotRecoverToken", + "type": "error" + }, + { + "inputs": [], + "name": "EmptyMerkleRoot", + "type": "error" + }, + { + "inputs": [], + "name": "EmptyParameters", + "type": "error" + }, + { + "inputs": [], + "name": "FailedInnerCall", + "type": "error" + }, + { + "inputs": [], + "name": "IncorrectPeriod", + "type": "error" + }, + { + "inputs": [], + "name": "IncorrectQuestID", + "type": "error" + }, + { + "inputs": [], + "name": "IncorrectRewardAmount", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidProof", + "type": "error" + }, + { + "inputs": [], + "name": "MerkleRootNotUpdated", + "type": "error" + }, + { + "inputs": [], + "name": "NullAmount", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "OwnableInvalidOwner", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "OwnableUnauthorizedAccount", + "type": "error" + }, + { + "inputs": [], + "name": "PeriodAlreadyUpdated", + "type": "error" + }, + { + "inputs": [], + "name": "PeriodNotClosed", + "type": "error" + }, + { + "inputs": [], + "name": "PeriodNotListed", + "type": "error" + }, + { + "inputs": [], + "name": "QuestAlreadyListed", + "type": "error" + }, + { + "inputs": [], + "name": "QuestNotListed", + "type": "error" + }, + { + "inputs": [], + "name": "ReentrancyGuardReentrantCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "SafeERC20FailedOperation", + "type": "error" + }, + { + "inputs": [], + "name": "TokenNotWhitelisted", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "rewardToken", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Claimed", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "oldCreator", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newCreator", + "type": "address" + } + ], + "name": "LootCreatorUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousPendingOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newPendingOwner", + "type": "address" + } + ], + "name": "NewPendingOwner", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "rewardToken", + "type": "address" + } + ], + "name": "NewQuest", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + } + ], + "name": "QuestPeriodUpdated", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "addQuest", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "totalRewardAmount", + "type": "uint256" + } + ], + "name": "addQuestPeriod", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "internalType": "struct MultiMerkleDistributorV2.ClaimParams[]", + "name": "claims", + "type": "tuple[]" + } + ], + "name": "claimQuest", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "addedRewardAmount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + } + ], + "name": "emergencyUpdateQuestPeriod", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "newTotalRewardAmount", + "type": "uint256" + } + ], + "name": "fixQuestPeriod", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + } + ], + "name": "getClosedPeriodsByQuests", + "outputs": [ + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "name": "isClaimed", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "lootCreator", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "internalType": "struct MultiMerkleDistributorV2.ClaimParams[]", + "name": "claims", + "type": "tuple[]" + } + ], + "name": "multiClaim", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "questBoard", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "questClosedPeriods", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "questMerkleRootPerPeriod", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "questRewardToken", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "questRewardsPerPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + } + ], + "name": "recoverERC20", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "rewardTokens", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_lootCreator", + "type": "address" + } + ], + "name": "setLootCreator", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "questID", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "period", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "totalAmount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "merkleRoot", + "type": "bytes32" + } + ], + "name": "updateQuestPeriod", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } +] \ No newline at end of file diff --git a/tools/python/aura_snapshot_voting/eip712_template.json b/tools/python/aura_snapshot_voting/eip712_template.json new file mode 100644 index 000000000..59001c311 --- /dev/null +++ b/tools/python/aura_snapshot_voting/eip712_template.json @@ -0,0 +1,63 @@ +{ + "domain": { + "name": "snapshot", + "version": "0.1.4" + }, + "types": { + "EIP712Domain": [ + { + "name": "name", + "type": "string" + }, + { + "name": "version", + "type": "string" + } + ], + "Vote": [ + { + "name": "from", + "type": "address" + }, + { + "name": "space", + "type": "string" + }, + { + "name": "timestamp", + "type": "uint64" + }, + { + "name": "proposal", + "type": "bytes32" + }, + { + "name": "choice", + "type": "string" + }, + { + "name": "reason", + "type": "string" + }, + { + "name": "app", + "type": "string" + }, + { + "name": "metadata", + "type": "string" + } + ] + }, + "message": { + "space": "gauges.aurafinance.eth", + "proposal": "", + "choice": "", + "app": "snapshot", + "reason": "", + "metadata": "{}", + "from": "", + "timestamp": 0 + }, + "primaryType": "Vote" +} \ No newline at end of file diff --git a/tools/python/aura_snapshot_voting/gen_vlaura_votes_for_epoch.py b/tools/python/aura_snapshot_voting/gen_vlaura_votes_for_epoch.py new file mode 100644 index 000000000..b5a9ce8e0 --- /dev/null +++ b/tools/python/aura_snapshot_voting/gen_vlaura_votes_for_epoch.py @@ -0,0 +1,151 @@ +import json +import os +import sys + +import pandas as pd +import requests +from dune_client.client import DuneClient +from dune_client.types import QueryParameter +from dune_client.query import QueryBase +from bal_addresses.subgraph import Subgraph + + +def _get_prop_and_determine_date_range(): + # https://docs.aura.finance/aura/governance/gauge-voting#gauge-voting-rules-and-information + query = """{ + proposals( + where: { + space: "gauges.aurafinance.eth" + }, + orderBy: "created", + orderDirection: desc + ) { + id + title + start + end + state + choices + } + }""" + r = requests.post("https://hub.snapshot.org/graphql", json={"query": query}) + r.raise_for_status() + + # make sure we grab an actual biweekly gauge vote prop + for prop in r.json()["data"]["proposals"]: + if "Gauge Weight for Week of " in prop["title"]: + print(f'latest proposal is: "{prop["title"]}" ({prop["id"]})') + break + + if prop["state"] == "active": + # date range should be the 14 days right before the prop started + end = prop["start"] + start = end - 2 * 7 * 24 * 60 * 60 + else: + # date range should be the start of the last prop up until now + # NOTE: this is only to check what the running vote looks like; not final! + end = int(pd.Timestamp.now(tz="UTC").timestamp()) + start = prop["start"] + + # convert timestamps to string (localised to utc but drop offset from the string) + start = str(pd.to_datetime(start, unit="s").tz_localize("UTC"))[:-6] + end = str(pd.to_datetime(end, unit="s").tz_localize("UTC"))[:-6] + + print(f"date range: {start} - {end}") + return prop, start, end + + +def get_df_revenue(start="2023-12-07 02:00:00", end="2023-12-21 02:00:00"): + dune = DuneClient.from_env() + query = QueryBase( + name="@balancer / Protocol Fee Collected", + query_id=3293596, + params=[ + QueryParameter.date_type(name="1. Start Date", value=start), + QueryParameter.date_type(name="2. End Date", value=end), + QueryParameter.enum_type(name="3. Blockchain", value="All"), + ], + ) + return dune.run_query_dataframe(query) + + +def get_stable_pools_with_rate_provider(): + # leverage core pools config for chain labels + with open("../../../config/core_pools.json") as f: + config = json.load(f) + + result = [] + for chain in config: + url = Subgraph(chain).get_subgraph_url("core") + query = """{ + pools( + first: 1000, + where: { + and: [ + { + priceRateProviders_: { + address_not: "0x0000000000000000000000000000000000000000" + } + }, + { + or: [ + {poolType_contains_nocase: "stable"}, + {poolType_contains_nocase: "gyro"} + ] + } + ] + } + ) { + address,poolType + } + }""" + r = requests.post(url, json={"query": query}) + r.raise_for_status() + for pool in r.json()["data"]["pools"]: + result.append(pool["address"]) + return result + + +def get_core_pools(): + with open("../../../config/core_pools.json") as f: + config = json.load(f) + + return [pool[:42] for chain in config for pool in config[chain]] + + +def gen_rev_data(): + # get all revenue data for a given epoch + prop, start, end = _get_prop_and_determine_date_range() + + # dev: uncomment to use cached data in dev mode (and save dune credits) + # df = pd.read_csv("cache.csv") + + df = get_df_revenue(start, end) + # df.to_csv("cache.csv", index=False) + + # clean data + df = df.rename(columns={"protocol_fee_collected": "revenue"}) + df = df[df["revenue"] != ""] + df["revenue"] = df["revenue"].astype(float) + + # filter out optimism + df = df[df["blockchain"] != "optimism"] + + # keep only stable pools with a rate provider + sustainable_pools = get_stable_pools_with_rate_provider() + core_pools = [p for p in get_core_pools() if p not in sustainable_pools] + + df["type"] = df["pool_address"].apply( + lambda x: ( + "sustainable" + if x in sustainable_pools + else "core" + if x in core_pools + else "NA" + ) + ) + + # df = df.dropna(subset=["type"]) + df = df.sort_values(by=["revenue"], ascending=False) + + return df, prop diff --git a/tools/python/aura_snapshot_voting/requirements.txt b/tools/python/aura_snapshot_voting/requirements.txt new file mode 100644 index 000000000..e0f207829 --- /dev/null +++ b/tools/python/aura_snapshot_voting/requirements.txt @@ -0,0 +1,13 @@ +safe-eth-py==4.3.2 +eth-abi-lite +datetime +pandas +requests +web3 +git+https://github.com/BalancerMaxis/bal_addresses@0.9.1 +dune-client +dataclasses-json +python-dotenv +pytest +eth-account +tabulate \ No newline at end of file diff --git a/tools/python/aura_snapshot_voting/review_votes.py b/tools/python/aura_snapshot_voting/review_votes.py new file mode 100644 index 000000000..4b38fe51a --- /dev/null +++ b/tools/python/aura_snapshot_voting/review_votes.py @@ -0,0 +1,115 @@ +import pandas as pd +import glob +import os +import argparse +from pathlib import Path +from bal_addresses.utils import to_checksum_address +import requests +from vote import ( + prepare_vote_data, + create_vote_payload, + hash_eip712_message, + _get_prop_and_determine_date_range, +) + + +def find_project_root(current_path=None): + anchor_file = "multisigs.md" + if current_path is None: + current_path = Path(__file__).resolve().parent + if (current_path / anchor_file).exists(): + return current_path + parent = current_path.parent + if parent == current_path: + raise FileNotFoundError("Project root not found") + return find_project_root(parent) + + +def fetch_gauge_labels(): + GAUGE_MAPPING_URL = "https://raw.githubusercontent.com/aurafinance/aura-contracts/main/tasks/snapshot/gauge_choices.json" + response = requests.get(GAUGE_MAPPING_URL) + response.raise_for_status() + gauge_data = response.json() + return {to_checksum_address(x["address"]): x["label"] for x in gauge_data} + + +def review_votes(week_string): + year, week = week_string.split("-") + project_root = find_project_root() + base_path = project_root / "MaxiOps/vlaura_voting" + voting_dir = base_path / str(year) / str(week) + input_dir = voting_dir / "input" + + csv_files = glob.glob(str(input_dir / "*.csv")) + if not csv_files: + return "No CSV files found in the input directory." + + csv_file = csv_files[0] + vote_df = pd.read_csv(csv_file) + + try: + test_df = vote_df.copy() + prop, _, _ = _get_prop_and_determine_date_range() + test_df, vote_choices = prepare_vote_data(test_df, prop) + data = create_vote_payload(vote_choices, prop) + hash = hash_eip712_message(data) + vote_prep = f"\n### Vote Preparation\nSuccessfully simulated vote preparation ✅\nMessage hash: `0x{hash.hex()}`" + vote_check = True + except Exception as e: + vote_prep = ( + f"\n### Vote Preparation\n❌ Error simulating vote preparation: {str(e)}" + ) + vote_check = False + + vote_df = vote_df.dropna(subset=["Gauge Address", "Label", "Allocation %"]) + + gauge_labels = fetch_gauge_labels() + + vote_df["Checksum Address"] = vote_df["Gauge Address"].apply( + lambda x: to_checksum_address(x.strip()) + ) + vote_df["Snapshot Label"] = vote_df["Checksum Address"].map(gauge_labels) + missing_labels = vote_df[vote_df["Snapshot Label"].isna()] + snapshot_label_check = len(missing_labels) == 0 + + total_allocation = vote_df["Allocation %"].str.rstrip("%").astype(float).sum() + allocation_check = abs(total_allocation - 100) < 0.0001 + + report = f"""## vLAURA Votes Review + +CSV file: `{os.path.relpath(csv_file, project_root)}` + +### Allocation Check +- Total allocation: {total_allocation:.2f}% +- Passes 100% check: {"✅" if allocation_check else "❌"} + +### Snapshot Votes Check +- All gauge addresses have corresponding snapshot choices: {"✅" if snapshot_label_check else "❌"} +{f"- Missing labels for {len(missing_labels)} gauge(s):" if not snapshot_label_check else ""} +{missing_labels[["Chain", "Label", "Gauge Address"]].to_string(index=False) if not snapshot_label_check else ""} + +{vote_prep} + +### Vote Summary + +{vote_df[["Chain", "Label", "Gauge Address", "Allocation %"]].to_markdown(index=False)} + +{"### ✅ All checks passed!" if (allocation_check and snapshot_label_check and vote_check) else "### ❌ Some checks failed - please review the issues above"} + """ + + with open("review_output.md", "w") as f: + f.write(report) + + return report + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Vote review script") + parser.add_argument( + "--week-string", + type=str, + required=True, + help="Date that votes are being reviewed. Should be YYYY-W##", + ) + args = parser.parse_args() + review_votes(args.week_string) diff --git a/tools/python/aura_snapshot_voting/vote.py b/tools/python/aura_snapshot_voting/vote.py new file mode 100644 index 000000000..3519ad591 --- /dev/null +++ b/tools/python/aura_snapshot_voting/vote.py @@ -0,0 +1,227 @@ +import json +import os +import time +import argparse +from functools import lru_cache +from enum import IntEnum +from pytest import approx +from dotenv import load_dotenv +from pathlib import Path +import glob +import sys + +# make parent dirs available to import from +sys.path.append(str(Path(__file__).parent.parent)) + +import requests +from bal_addresses import AddrBook +from bal_addresses.utils import to_checksum_address +from web3 import Web3 +from eth_account._utils.structured_data.hashing import hash_message, hash_domain +from eth_utils import keccak +import pandas as pd +from web3 import Web3 +from gnosis.safe import Safe +from gnosis.eth import EthereumClient +from gnosis.safe.api import TransactionServiceApi +from eth_abi import encode_abi +from eth_account import Account + +from gen_vlaura_votes_for_epoch import _get_prop_and_determine_date_range +from helpers.path_utils import find_project_root + + +load_dotenv() + +ETHNODEURL = os.getenv("ETHNODEURL") +PRIVATE_WORDS = os.getenv("KEEPER_PRIVATE_WORDS") + +SAFE_API_URL = "https://safe-transaction-mainnet.safe.global" +GAUGE_MAPPING_URL = "https://raw.githubusercontent.com/aurafinance/aura-contracts/main/tasks/snapshot/gauge_choices.json" +GAUGE_SNAPSHOT_URL = "https://raw.githubusercontent.com/aurafinance/aura-contracts/main/tasks/snapshot/gauge_snapshot.json" + +flatbook = AddrBook("mainnet").flatbook +vlaura_safe_addr = flatbook["multisigs/maxi_omni"] +sign_msg_lib_addr = flatbook["gnosis/sign_message_lib"] + +Account.enable_unaudited_hdwallet_features() + + +class Operation(IntEnum): + CALL = 0 + DELEGATE_CALL = 1 + CREATE = 2 + + +def post_safe_tx(safe_address, to_address, value, data, operation): + ethereum_client = EthereumClient(ETHNODEURL) + safe = Safe(safe_address, ethereum_client) + safe_service = TransactionServiceApi(1, ethereum_client, SAFE_API_URL) + + safe_tx = safe.build_multisig_tx(to_address, value, data, operation) + + private_key = Account.from_mnemonic(PRIVATE_WORDS).privateKey + safe_tx.sign(private_key.hex()[2:]) + + safe_service.post_transaction(safe_tx) + print(f"posted signMessage tx to {safe_address}") + + +@lru_cache(maxsize=None) +def fetch_json_from_url(url): + # Disable IPv6 to avoid related issues + requests.packages.urllib3.util.connection.HAS_IPV6 = False + response = requests.get(url) + response.raise_for_status() + return response.json() + + +def hash_eip712_message(structured_data): + domain_hash = hash_domain(structured_data) + message_hash = hash_message(structured_data) + return keccak(b"\x19\x01" + domain_hash + message_hash) + + +def format_choices(choices): + # custom formatting so it can be properly parsed by the snapshot + formatted_string = "{" + for key, value in choices.items(): + formatted_string += f'"{key}":{value},' + if key == list(choices.keys())[-1]: + formatted_string = formatted_string[:-1] + formatted_string += "}" + return formatted_string + + +def create_voting_dirs_for_year(base_path, year, week): + start_week = int(week[1:]) + if all( + [ + os.path.exists(base_path / str(year) / f"W{i}") + for i in range(start_week, 53, 2) + ] + ): + return + + for i in range(start_week, 53, 2): + voting_dir = base_path / str(year) / f"W{i}" + input_dir = voting_dir / "input" + output_dir = voting_dir / "output" + os.makedirs(voting_dir, exist_ok=True) + os.makedirs(input_dir, exist_ok=True) + os.makedirs(output_dir, exist_ok=True) + with open(input_dir / ".gitkeep", "w") as f: + f.write("") + with open(output_dir / ".gitkeep", "w") as f: + f.write("") + + +def prepare_vote_data(vote_df, prop): + """Prepares and validates vote data, returning the structured payload""" + choices = prop["choices"] + gauge_labels = fetch_json_from_url(GAUGE_MAPPING_URL) + gauge_labels = {to_checksum_address(x["address"]): x["label"] for x in gauge_labels} + choice_index_map = {c: x + 1 for x, c in enumerate(choices)} + + vote_df = vote_df.dropna(subset=["Gauge Address", "Label", "Allocation %"]) + + vote_df["snapshot_label"] = vote_df["Gauge Address"].apply( + lambda x: gauge_labels.get(to_checksum_address(x.strip())) + ) + vote_df["snapshot_index"] = vote_df["snapshot_label"].apply( + lambda label: str(choice_index_map[label]) + ) + + vote_df["share"] = vote_df["Allocation %"].str.rstrip("%").astype(float) + + assert vote_df["share"].sum() == approx(100, abs=0.0001) + + vote_choices = dict(zip(vote_df["snapshot_index"], vote_df["share"])) + + return vote_df, vote_choices + + +def create_vote_payload(vote_choices, prop): + """Creates the EIP712 structured data payload""" + project_root = find_project_root() + template_path = project_root / "tools/python/aura_snapshot_voting" + with open(f"{template_path}/eip712_template.json", "r") as f: + data = json.load(f) + + data["message"]["timestamp"] = int(time.time()) + data["message"]["from"] = vlaura_safe_addr + data["message"]["proposal"] = bytes.fromhex(prop["id"][2:]) + data["message"]["choice"] = format_choices(vote_choices) + + return data + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Vote processing script") + parser.add_argument( + "--week-string", + type=str, + help="Date that votes are are being posted. should be YYYY-W##", + ) + year, week = parser.parse_args().week_string.split("-") + + project_root = find_project_root() + base_path = project_root / "MaxiOps/vlaura_voting" + voting_dir = base_path / str(year) / str(week) + input_dir = voting_dir / "input" + output_dir = voting_dir / "output" + + create_voting_dirs_for_year(base_path, year, week) + + vote_df = pd.read_csv(glob.glob(f"{input_dir}/*.csv")[0]) + + prop, _, _ = _get_prop_and_determine_date_range() + + vote_df, vote_choices = prepare_vote_data(vote_df, prop) + data = create_vote_payload(vote_choices, prop) + hash = hash_eip712_message(data) + + print(f"voting for: \n{vote_df[['Chain', 'snapshot_label', 'share']]}") + print(f"payload: {data}") + print(f"hash: {hash.hex()}") + + calldata = Web3.keccak(text="signMessage(bytes)")[0:4] + encode_abi( + ["bytes"], [hash] + ) + + post_safe_tx( + vlaura_safe_addr, sign_msg_lib_addr, 0, calldata, Operation.DELEGATE_CALL + ) + + data["message"]["proposal"] = prop["id"] + data["types"].pop("EIP712Domain") + data.pop("primaryType") + + with open(f"{output_dir}/report.txt", "w") as f: + f.write(f"hash: 0x{hash.hex()}\n") + f.write(f"relayer: https://relayer.snapshot.org/api/messages/0x{hash.hex()}") + + vote_df.to_csv(f"{output_dir}/vote_df.csv", index=False) + + with open(f"{output_dir}/payload.json", "w") as f: + json.dump(data, f, indent=4) + f.write("\n") + + response = requests.post( + "https://relayer.snapshot.org/", + headers={ + "Content-Type": "application/json", + "Accept": "application/json", + "Referer": "https://snapshot.org/", + }, + data=json.dumps( + { + "address": vlaura_safe_addr, + "data": data, + "sig": "0x", + } + ), + ) + + response.raise_for_status() + print(response.text) diff --git a/tools/python/bribe_balancer.json/Transactions Batch (17).json b/tools/python/bribe_balancer.json/Transactions Batch (17).json new file mode 100644 index 000000000..768cfdac0 --- /dev/null +++ b/tools/python/bribe_balancer.json/Transactions Batch (17).json @@ -0,0 +1 @@ +{"version":"1.0","chainId":"1","createdAt":1698450039804,"meta":{"name":"Transactions Batch","description":"","txBuilderVersion":"1.16.3","createdFromSafeAddress":"0x7c68c42De679ffB0f16216154C996C354cF1161B","createdFromOwnerAddress":"","checksum":"0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc"},"transactions":[{"to":"0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc","value":"0","data":null,"contractMethod":{"inputs":[{"name":"_proposal","type":"bytes32","internalType":"bytes32"},{"name":"_token","type":"address","internalType":"address"},{"name":"_amount","type":"uint256","internalType":"uint256"},{"name":"_maxTokensPerVote","type":"uint256","internalType":"uint256"},{"name":"_periods","type":"uint256","internalType":"uint256"}],"name":"depositBribe","payable":false},"contractInputsValues":{"_proposal":"0x0","_token":"0x95AaDD5092F5b3a4Bbbefdf4187962b811bF9e79","_amount":"0","_maxTokensPerVote":"0","_periods":"0"}}]} \ No newline at end of file diff --git a/tools/python/brownie/ape_safe.py b/tools/python/brownie/ape_safe.py new file mode 100644 index 000000000..d1c999e4f --- /dev/null +++ b/tools/python/brownie/ape_safe.py @@ -0,0 +1,446 @@ +from copy import copy +from typing import Dict, List, Union, Optional +from urllib.parse import urljoin + +import click +import os +import requests +from web3 import Web3 # don't move below brownie import +from brownie import Contract, accounts, chain, history, web3 +from brownie.convert.datatypes import EthAddress +from brownie.network.account import LocalAccount +from brownie.network.transaction import TransactionReceipt +from eth_abi import encode_abi +from eth_utils import is_address, to_checksum_address +from gnosis.eth import EthereumClient +from gnosis.safe import Safe, SafeOperation +from gnosis.safe.multi_send import MultiSend, MultiSendOperation, MultiSendTx +from gnosis.safe.safe_tx import SafeTx +from gnosis.safe.signatures import signature_split, signature_to_bytes +from hexbytes import HexBytes +from trezorlib import tools, ui, ethereum +from trezorlib.client import TrezorClient +from trezorlib.messages import EthereumSignMessage +from trezorlib.transport import get_transport + +MULTISEND_CALL_ONLY = "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" +multisends = { + 250: "0x10B62CC1E8D9a9f1Ad05BCC491A7984697c19f7E", + 43114: "0x998739BFdAAdde7C933B942a68053933098f9EDa", +} +transaction_service = { + 1: "https://safe-transaction-mainnet.safe.global", + 5: "https://safe-transaction-goerli.safe.global", + 10: "https://safe-transaction-optimism.safe.global", + 56: "https://safe-transaction-bsc.safe.global", + 100: "https://safe-transaction-gnosis-chain.safe.global", + 137: "https://safe-transaction-polygon.safe.global", + 246: "https://safe-transaction-ewc.safe.global", + 250: "https://safe-txservice.fantom.network", + 288: "https://safe-transaction.mainnet.boba.network", + 42161: "https://safe-transaction-arbitrum.safe.global", + 43114: "https://safe-transaction-avalanche.safe.global", + 73799: "https://safe-transaction-volta.safe.global", + 1313161554: "https://safe-transaction-aurora.safe.global", +} + + +class ExecutionFailure(Exception): + pass + + +class ApiError(Exception): + pass + + +class ApeSafe(Safe): + def __init__(self, address, base_url=None, multisend=None): + """ + Create an ApeSafe from an address or a ENS name and use a default connection. + """ + address = ( + to_checksum_address(address) + if is_address(address) + else web3.ens.resolve(address) + ) + ethereum_client = EthereumClient(web3.provider.endpoint_uri) + self.base_url = base_url or transaction_service[chain.id] + self.multisend = multisend or multisends.get(chain.id, MULTISEND_CALL_ONLY) + super().__init__(address, ethereum_client) + + def __str__(self): + return EthAddress(self.address) + + def __repr__(self): + return f'ApeSafe("{self.address}")' + + @property + def account(self) -> LocalAccount: + """ + Unlocked Brownie account for Gnosis Safe. + """ + return accounts.at(self.address, force=True) + + def contract(self, address) -> Contract: + """ + Instantiate a Brownie Contract owned by Safe account. + """ + if not web3.isChecksumAddress(address): + address = web3.ens.resolve(address) + return Contract(address, owner=self.account) + + def pending_nonce(self) -> int: + """ + Subsequent nonce which accounts for pending transactions in the transaction service. + """ + url = urljoin( + self.base_url, f"/api/v1/safes/{self.address}/multisig-transactions/" + ) + results = requests.get(url).json()["results"] + return results[0]["nonce"] + 1 if results else 0 + + def tx_from_receipt( + self, + receipt: TransactionReceipt, + operation: SafeOperation = SafeOperation.CALL, + safe_nonce: int = None, + ) -> SafeTx: + """ + Convert Brownie transaction receipt to a Safe transaction. + """ + if safe_nonce is None: + safe_nonce = self.pending_nonce() + + return self.build_multisig_tx( + receipt.receiver, + receipt.value, + receipt.input, + operation=operation.value, + safe_nonce=safe_nonce, + ) + + def multisend_from_receipts( + self, receipts: List[TransactionReceipt] = None, safe_nonce: int = None + ) -> SafeTx: + """ + Convert multiple Brownie transaction receipts (or history) to a multisend Safe transaction. + """ + if receipts is None: + receipts = history.from_sender(self.address) + + if safe_nonce is None: + safe_nonce = self.pending_nonce() + + txs = [ + MultiSendTx(MultiSendOperation.CALL, tx.receiver, tx.value, tx.input) + for tx in receipts + ] + data = MultiSend(self.multisend, self.ethereum_client).build_tx_data(txs) + return self.build_multisig_tx( + self.multisend, + 0, + data, + SafeOperation.DELEGATE_CALL.value, + safe_nonce=safe_nonce, + ) + + def get_signer( + self, signer: Optional[Union[LocalAccount, str]] = None + ) -> LocalAccount: + if signer is None: + signer = click.prompt("signer", type=click.Choice(accounts.load())) + + if isinstance(signer, str): + # Avoids a previously impersonated account with no signing capabilities + accounts.clear() + signer = accounts.load(signer) + + assert isinstance( + signer, LocalAccount + ), "Signer must be a name of brownie account or LocalAccount" + return signer + + def sign_transaction(self, safe_tx: SafeTx, signer=None) -> SafeTx: + """ + Sign a Safe transaction with a private key account. + """ + signer = self.get_signer(signer) + return safe_tx.sign(signer.private_key) + + def sign_with_trezor( + self, + safe_tx: SafeTx, + derivation_path: str = "m/44'/60'/0'/0/0", + use_passphrase: bool = False, + force_eth_sign: bool = False, + ) -> bytes: + """ + Sign a Safe transaction with a Trezor wallet. + + Defaults to no passphrase (and skips passphrase prompt) by default. + Uses on-device passphrase input if `use_passphrase` is truthy + + Defaults to EIP-712 signatures on wallets & fw revisions that support it: + - TT fw >v2.4.3 (clear signing only) + - T1: not yet, and maybe only blind signing + Otherwise (or if `force_eth_sign` is truthy), use eth_sign instead + """ + path = tools.parse_path(derivation_path) + transport = get_transport() + # if not using passphrase, then set env var so that prompt is skipped + if not use_passphrase: + os.environ["PASSPHRASE"] = "" + # default to on-device passphrase input if `use_passphrase` is truthy + client = TrezorClient( + transport=transport, ui=ui.ClickUI(passphrase_on_host=not use_passphrase) + ) + account = ethereum.get_address(client, path) + + if force_eth_sign: + use_eip712 = False + elif client.features.model == "T": # Trezor T + use_eip712 = ( + client.features.major_version, + client.features.minor_version, + client.features.patch_version, + ) >= ( + 2, + 4, + 3, + ) # fw ver >= 2.4.3 + else: + use_eip712 = False + + if use_eip712: + trez_sig = ethereum.sign_typed_data( + client, path, safe_tx.eip712_structured_data + ) + v, r, s = signature_split(trez_sig.signature) + else: + # have to use this instead of trezorlib.ethereum.sign_message + # because that takes a string instead of bytes + trez_sig = client.call( + EthereumSignMessage(address_n=path, message=safe_tx.safe_tx_hash) + ) + v, r, s = signature_split(trez_sig.signature) + # Gnosis adds 4 to `v` to denote an eth_sign signature + v += 4 + + signature = signature_to_bytes(v, r, s) + if account not in safe_tx.signers: + new_owners = safe_tx.signers + [account] + new_owner_pos = sorted(new_owners, key=lambda x: int(x, 16)).index(account) + safe_tx.signatures = ( + safe_tx.signatures[: 65 * new_owner_pos] + + signature + + safe_tx.signatures[65 * new_owner_pos :] + ) + return signature + + def sign_with_frame( + self, safe_tx: SafeTx, frame_rpc="http://127.0.0.1:1248" + ) -> bytes: + """ + Sign a Safe transaction using Frame. Use this option with hardware wallets. + """ + # Requesting accounts triggers a connection prompt + frame = Web3(Web3.HTTPProvider(frame_rpc, {"timeout": 600})) + account = frame.eth.accounts[0] + signature = frame.manager.request_blocking( + "eth_signTypedData_v4", [account, safe_tx.eip712_structured_data] + ) + # Convert to a format expected by Gnosis Safe + v, r, s = signature_split(signature) + # Ledger doesn't support EIP-155 + if v in {0, 1}: + v += 27 + signature = signature_to_bytes(v, r, s) + if account not in safe_tx.signers: + new_owners = safe_tx.signers + [account] + new_owner_pos = sorted(new_owners, key=lambda x: int(x, 16)).index(account) + safe_tx.signatures = ( + safe_tx.signatures[: 65 * new_owner_pos] + + signature + + safe_tx.signatures[65 * new_owner_pos :] + ) + return signature + + def post_transaction(self, safe_tx: SafeTx): + """ + Submit a Safe transaction to a transaction service. + Prompts for a signature if needed. + + See also https://github.com/gnosis/safe-cli/blob/master/safe_cli/api/gnosis_transaction.py + """ + if not safe_tx.sorted_signers: + self.sign_transaction(safe_tx) + + sender = safe_tx.sorted_signers[0] + + url = urljoin( + self.base_url, f"/api/v1/safes/{self.address}/multisig-transactions/" + ) + data = { + "to": safe_tx.to, + "value": safe_tx.value, + "data": safe_tx.data.hex() if safe_tx.data else None, + "operation": safe_tx.operation, + "gasToken": safe_tx.gas_token, + "safeTxGas": safe_tx.safe_tx_gas, + "baseGas": safe_tx.base_gas, + "gasPrice": safe_tx.gas_price, + "refundReceiver": safe_tx.refund_receiver, + "nonce": safe_tx.safe_nonce, + "contractTransactionHash": safe_tx.safe_tx_hash.hex(), + "sender": sender, + "signature": safe_tx.signatures.hex() if safe_tx.signatures else None, + "origin": "github.com/banteg/ape-safe", + } + response = requests.post(url, json=data) + if not response.ok: + raise ApiError(f"Error posting transaction: {response.text}") + + def post_signature(self, safe_tx: SafeTx, signature: bytes): + """ + Submit a confirmation signature to a transaction service. + """ + url = urljoin( + self.base_url, + f"/api/v1/multisig-transactions/{safe_tx.safe_tx_hash.hex()}/confirmations/", + ) + response = requests.post(url, json={"signature": HexBytes(signature).hex()}) + if not response.ok: + raise ApiError(f"Error posting signature: {response.text}") + + @property + def pending_transactions(self) -> List[SafeTx]: + """ + Retrieve pending transactions from the transaction service. + """ + url = urljoin(self.base_url, f"/api/v1/safes/{self.address}/transactions/") + results = requests.get(url).json()["results"] + nonce = self.retrieve_nonce() + transactions = [ + self.build_multisig_tx( + to=tx["to"], + value=int(tx["value"]), + data=HexBytes(tx["data"] or b""), + operation=tx["operation"], + safe_tx_gas=tx["safeTxGas"], + base_gas=tx["baseGas"], + gas_price=int(tx["gasPrice"]), + gas_token=tx["gasToken"], + refund_receiver=tx["refundReceiver"], + signatures=self.confirmations_to_signatures(tx["confirmations"]), + safe_nonce=tx["nonce"], + ) + for tx in reversed(results) + if tx["nonce"] >= nonce and not tx["isExecuted"] + ] + return transactions + + def confirmations_to_signatures(self, confirmations: List[Dict]) -> bytes: + """ + Convert confirmations as returned by the transaction service to combined signatures. + """ + sorted_confirmations = sorted( + confirmations, key=lambda conf: int(conf["owner"], 16) + ) + signatures = [ + bytes(HexBytes(conf["signature"])) for conf in sorted_confirmations + ] + return b"".join(signatures) + + def estimate_gas(self, safe_tx: SafeTx) -> int: + """ + Estimate gas limit for successful execution. + """ + return self.estimate_tx_gas( + safe_tx.to, safe_tx.value, safe_tx.data, safe_tx.operation + ) + + def preview(self, safe_tx: SafeTx, events=True, call_trace=False, reset=True): + """ + Dry run a Safe transaction in a forked network environment. + """ + if reset: + chain.reset() + tx = copy(safe_tx) + safe = Contract.from_abi("Gnosis Safe", self.address, self.get_contract().abi) + # Replace pending nonce with the subsequent nonce, this could change the safe_tx_hash + tx.safe_nonce = safe.nonce() + # Forge signatures from the needed amount of owners, skip the one which submits the tx + # Owners must be sorted numerically, sorting as checksum addresses may yield wrong order + threshold = safe.getThreshold() + sorted_owners = sorted(safe.getOwners(), key=lambda x: int(x, 16)) + owners = [accounts.at(owner, force=True) for owner in sorted_owners[:threshold]] + for owner in owners: + safe.approveHash(tx.safe_tx_hash, {"from": owner}) + + # Signautres are encoded as [bytes32 r, bytes32 s, bytes8 v] + # Pre-validated signatures are encoded as r=owner, s unused and v=1. + # https://docs.gnosis.io/safe/docs/contracts_signatures/#pre-validated-signatures + tx.signatures = b"".join( + [ + encode_abi(["address", "uint"], [str(owner), 0]) + b"\x01" + for owner in owners + ] + ) + payload = tx.w3_tx.buildTransaction() + receipt = owners[0].transfer( + payload["to"], + payload["value"], + gas_limit=payload["gas"], + data=payload["data"], + ) + + if "ExecutionSuccess" not in receipt.events: + receipt.info() + receipt.call_trace(True) + raise ExecutionFailure() + if events: + receipt.info() + if call_trace: + receipt.call_trace(True) + return receipt + + def execute_transaction(self, safe_tx: SafeTx, signer=None) -> TransactionReceipt: + """ + Execute a fully signed transaction likely retrieved from the pending_transactions method. + """ + payload = safe_tx.w3_tx.buildTransaction() + signer = self.get_signer(signer) + receipt = signer.transfer( + payload["to"], + payload["value"], + gas_limit=payload["gas"], + data=payload["data"], + ) + return receipt + + def execute_transaction_with_frame( + self, safe_tx: SafeTx, frame_rpc="http://127.0.0.1:1248" + ) -> bytes: + """ + Execute a fully signed transaction with frame. Use this option with hardware wallets. + """ + # Requesting accounts triggers a connection prompt + frame = Web3(Web3.HTTPProvider(frame_rpc, {"timeout": 600})) + account = frame.eth.accounts[0] + payload = safe_tx.w3_tx.buildTransaction() + tx = { + "from": account, + "to": self.address, + "value": payload["value"], + "nonce": frame.eth.get_transaction_count(account), + "gas": web3.toHex(payload["gas"]), + "data": HexBytes(payload["data"]), + } + frame.eth.send_transaction(tx) + + def preview_pending(self, events=True, call_trace=False): + """ + Dry run all pending transactions in a forked environment. + """ + for safe_tx in self.pending_transactions: + self.preview(safe_tx, events=events, call_trace=call_trace, reset=False) diff --git a/tools/python/brownie/brownie-config.yaml b/tools/python/brownie/brownie-config.yaml index 1aa0b641a..8555beee4 100644 --- a/tools/python/brownie/brownie-config.yaml +++ b/tools/python/brownie/brownie-config.yaml @@ -4,17 +4,3 @@ networks: default: mainnet-fork dotenv: .env - -dependencies: - - OpenZeppelin/openzeppelin-contracts@4.5.0 - - smartcontractkit/chainlink@1.4.0 - - Uniswap/v3-core@1.0.0 - - Uniswap/v3-periphery@1.3.0 - -compiler: - solc: - remappings: - - "@openzeppelin=OpenZeppelin/openzeppelin-contracts@4.5.0" - - "@chainlink=smartcontractkit/chainlink@1.4.0" - - "@uniswap/v3-core=Uniswap/v3-core@1.0.0" - - "@uniswap/v3-periphery=Uniswap/v3-periphery@1.3.0" diff --git a/tools/python/brownie/great_ape_safe/ape_api/aave.py b/tools/python/brownie/great_ape_safe/ape_api/aave.py index c9ac6a930..4368e2c96 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/aave.py +++ b/tools/python/brownie/great_ape_safe/ape_api/aave.py @@ -46,7 +46,7 @@ def withdraw_all(self, underlying, destination=None): # https://docs.aave.com/developers/the-core-protocol/lendingpool#withdraw destination = self.safe.address if not destination else destination bal_before = underlying.balanceOf(destination) - self.pool.withdraw(underlying, 2 ** 256 - 1, destination) + self.pool.withdraw(underlying, 2**256 - 1, destination) assert underlying.balanceOf(destination) > bal_before def claim_all(self, markets=[], destination=None): @@ -90,10 +90,10 @@ def unstake_and_claim_all(self, destination=None): return elif timestamp <= deadline: bal_before = self.aave.balanceOf(destination) - self.stkaave.redeem(destination, 2 ** 256 - 1) + self.stkaave.redeem(destination, 2**256 - 1) assert self.aave.balanceOf(destination) > bal_before bal_before = self.aave.balanceOf(destination) - self.stkaave.claimRewards(destination, 2 ** 256 - 1) + self.stkaave.claimRewards(destination, 2**256 - 1) assert self.aave.balanceOf(destination) > bal_before return C.print("no valid window found; calling cooldown now...") @@ -111,8 +111,8 @@ def repay(self, underlying, mantissa, variable_rate=True): def repay_all(self, underlying, variable_rate=True): mode = 2 if variable_rate else 1 - underlying.approve(self.pool, 2 ** 256 - 1) - self.pool.repay(underlying, 2 ** 256 - 1, mode, self.safe.address) + underlying.approve(self.pool, 2**256 - 1) + self.pool.repay(underlying, 2**256 - 1, mode, self.safe.address) underlying.approve(self.pool, 0) def _get_debt_in_token(self, token): diff --git a/tools/python/brownie/great_ape_safe/ape_api/across.py b/tools/python/brownie/great_ape_safe/ape_api/across.py index 8d8e4b4e9..f24ff89f2 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/across.py +++ b/tools/python/brownie/great_ape_safe/ape_api/across.py @@ -15,7 +15,12 @@ def __init__(self, safe): self.spokepool = self.safe.contract(r.across.spoke_pool) def get_token_bridge_info(self, token_address, dest_chain_id, amount): - params = {"destinationChainId": dest_chain_id, "token": token_address, "amount": amount, "originChainId": chain.id} + params = { + "destinationChainId": dest_chain_id, + "token": token_address, + "amount": amount, + "originChainId": chain.id, + } r = requests.get(self.api_url, params=params).json() return r @@ -24,8 +29,13 @@ def bridge_token(self, recipient_address, origin_token, dest_chain_id, amount): timestamp = int(info["timestamp"]) relayerFeePct = info["relayFeePct"] origin_token.approve(self.spokepool.address, amount) - self.spokepool.deposit(recipient_address, origin_token.address, amount, dest_chain_id, relayerFeePct, timestamp) + self.spokepool.deposit( + recipient_address, + origin_token.address, + amount, + dest_chain_id, + relayerFeePct, + timestamp, + ) deadline = timestamp + int(self.spokepool.depositQuoteTimeBuffer()) return deadline - - diff --git a/tools/python/brownie/great_ape_safe/ape_api/badger.py b/tools/python/brownie/great_ape_safe/ape_api/badger.py index 68bc54986..66f7ff549 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/badger.py +++ b/tools/python/brownie/great_ape_safe/ape_api/badger.py @@ -264,6 +264,7 @@ def queue_timelock(self, target_addr, signature, data, dump_dir, delay_in_days=2 "eta": eta, } json.dump(tx_data, f, indent=4, sort_keys=True) + f.write("\n") def execute_timelock(self, queueTx_dir): """ diff --git a/tools/python/brownie/great_ape_safe/ape_api/balancer.py b/tools/python/brownie/great_ape_safe/ape_api/balancer.py index fa36bd485..c07d0eaa9 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/balancer.py +++ b/tools/python/brownie/great_ape_safe/ape_api/balancer.py @@ -102,6 +102,7 @@ def get_pool_data(self, update_cache=False): ] with open("great_ape_safe/ape_api/helpers/balancer/pools.json", "w") as f: json.dump(pool_data_filtered, f) + f.write("\n") return pool_data_filtered with open("great_ape_safe/ape_api/helpers/balancer/pools.json") as f: diff --git a/tools/python/brownie/great_ape_safe/ape_api/chainlink.py b/tools/python/brownie/great_ape_safe/ape_api/chainlink.py index 64a0272d3..b6f16f010 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/chainlink.py +++ b/tools/python/brownie/great_ape_safe/ape_api/chainlink.py @@ -1,4 +1,4 @@ -from brownie import interface +from brownie import interface, chain from helpers.addresses import r @@ -7,12 +7,15 @@ def __init__(self, safe): self.safe = safe # contracts - self.link = self.safe.contract(r.treasury_tokens.LINK, interface.ILinkToken) + self.link = self.safe.contract(r.tokens.LINK, interface.ILinkToken) self.keeper_registry = self.safe.contract( r.chainlink.keeper_registry, interface.IKeeperRegistry ) + self.keeper_registry_v1_1 = self.safe.contract( + r.chainlink.keeper_registry_v1_1, interface.IKeeperRegistry + ) self.keeper_registrar = self.safe.contract( - r.chainlink.keeper_registrar, interface.IKeeperRegistrar + r.chainlink.keeper_registrar, from_explorer=True ) def register_upkeep( @@ -23,17 +26,29 @@ def register_upkeep( """ admin_addr = self.safe.address if not admin_addr else admin_addr - - data = self.keeper_registrar.register.encode_input( - name, # string memory name, - b"", # bytes calldata encryptedEmail, - contract_addr, # address upkeepContract, - gas_limit, # uint32 gasLimit, - admin_addr, # address adminAddress, - b"", # bytes calldata checkData, - link_mantissa, # uint96 amount, - 0, # uint8 source, - self.safe.address, # address sender, - ) + if chain.id == 4: # gorli + data = self.keeper_registrar.register.encode_input( + name, # string memory name, + b"", # bytes calldata encryptedEmail, + contract_addr, # address upkeepContract, + gas_limit, # uint32 gasLimit, + admin_addr, # address adminAddress, + b"", # bytes calldata checkData, + b"", # offchainConfig (bytes) + link_mantissa, # uint96 amount, + self.safe.address, # address sender, + ) + else: # tested on mainnet + data = self.keeper_registrar.register.encode_input( + name, # string memory name, + b"", # bytes calldata encryptedEmail, + contract_addr, # address upkeepContract, + gas_limit, # uint32 gasLimit, + admin_addr, # address adminAddress, + b"", # bytes calldata checkData, + link_mantissa, # uint96 amount, + 42, # source (uint8) + self.safe.address, # address sender, + ) self.link.transferAndCall(self.keeper_registrar, link_mantissa, data) diff --git a/tools/python/brownie/great_ape_safe/ape_api/convex.py b/tools/python/brownie/great_ape_safe/ape_api/convex.py index cfcfac7e1..82d2d94ce 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/convex.py +++ b/tools/python/brownie/great_ape_safe/ape_api/convex.py @@ -65,7 +65,7 @@ def deposit_all(self, underlying): # https://docs.convexfinance.com/convexfinanceintegration/booster#deposits stake = 0 pool_id = self.get_pool_info(underlying)[0] - underlying.approve(self.booster, 2 ** 256 - 1) + underlying.approve(self.booster, 2**256 - 1) assert self.booster.depositAll(pool_id, stake).return_value == True underlying.approve(self.booster, 0) @@ -75,7 +75,7 @@ def deposit_all_and_stake(self, underlying): # https://docs.convexfinance.com/convexfinanceintegration/booster#deposits stake = 1 pool_id = self.get_pool_info(underlying)[0] - underlying.approve(self.booster, 2 ** 256 - 1) + underlying.approve(self.booster, 2**256 - 1) assert self.booster.depositAll(pool_id, stake).return_value == True underlying.approve(self.booster, 0) @@ -127,7 +127,7 @@ def stake_all(self, underlying): # stake complete balance of `underlying`'s corresponding convex tokens # https://docs.convexfinance.com/convexfinanceintegration/baserewardpool#stake-deposit-tokens _, cvx_token, _, rewards = self.get_pool_info(underlying) - self.safe.contract(cvx_token).approve(rewards, 2 ** 256 - 1) + self.safe.contract(cvx_token).approve(rewards, 2**256 - 1) assert self.safe.contract(rewards).stakeAll().return_value == True self.safe.contract(cvx_token).approve(rewards, 0) diff --git a/tools/python/brownie/great_ape_safe/ape_api/cow.py b/tools/python/brownie/great_ape_safe/ape_api/cow.py index b23df7a2a..bc377f581 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/cow.py +++ b/tools/python/brownie/great_ape_safe/ape_api/cow.py @@ -7,7 +7,9 @@ from brownie import Contract, chain, interface, web3 from rich.prompt import Confirm -from helpers.addresses import registry +from bal_addresses import AddrBook + +r = AddrBook("mainnet").dotmap class Cow: @@ -22,12 +24,13 @@ def __init__(self, safe, prod=False): self.prod = prod # contracts - self.vault_relayer = self.safe.contract(registry.eth.cow.vault_relayer) + self.vault_relayer = self.safe.contract(r.cow.vault_relayer) + self.vault_relayer = self.safe.contract(r.cow.vault_relayer) # self.vault_relayer = interface.IGPv2VaultRelayer( # registry.eth.cow.vault_relayer, owner=self.safe.account # ) self.settlement = interface.IGPv2Settlement( - registry.eth.cow.settlement, owner=self.safe.account + r.cow.settlement, owner=self.safe.account ) # determine api url based on current chain id and `prod` parameter @@ -53,6 +56,7 @@ def get_fee_and_quote(self, sell_token, buy_token, mantissa_sell, origin): r = requests.post(self.api_url + "quote", json=fee_and_quote_payload) if not r.ok: + print(r.json()) r.raise_for_status() print("FEE AND QUOTE RESPONSE:") @@ -117,7 +121,6 @@ def _sell( assert fee_amount > 0 assert buy_amount_after_fee > 0 - # add deadline to current block timestamp deadline = chain.time() + deadline @@ -164,6 +167,7 @@ def _sell( os.makedirs(path, exist_ok=True) with open(f"{path}{order_uid}.json", "w+") as f: f.write(json.dumps(order_payload)) + f.write("\n") if origin != self.safe.address: # can only sign if origin is safe @@ -173,6 +177,7 @@ def _sell( # (otherwise signature would go in api order payload) # https://docs.cow.fi/smart-contracts/settlement-contract/signature-schemes self.settlement.setPreSignature(order_uid, True) + return order_uid def allow_relayer(self, asset, mantissa): """ @@ -205,18 +210,22 @@ def market_sell( assert type(chunks) == int self.allow_relayer(asset_sell, mantissa_sell) mantissa_sell = int(Decimal(mantissa_sell) / chunks) + order_ids = [] for n in range(chunks): - self._sell( - asset_sell, - mantissa_sell, - asset_buy, - mantissa_buy=None, - # without + n api will raise DuplicateOrder when chunks > 1 - deadline=deadline + n, - coef=coef, - destination=destination, - origin=self.safe.address, + order_ids.append( + self._sell( + asset_sell, + mantissa_sell, + asset_buy, + mantissa_buy=None, + # without + n api will raise DuplicateOrder when chunks > 1 + deadline=deadline + n, + coef=coef, + destination=destination, + origin=self.safe.address, + ) ) + return order_ids def limit_sell( self, diff --git a/tools/python/brownie/great_ape_safe/ape_api/helpers/balancer/util.py b/tools/python/brownie/great_ape_safe/ape_api/helpers/balancer/util.py index f70f06a4a..2bdbb6a4d 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/helpers/balancer/util.py +++ b/tools/python/brownie/great_ape_safe/ape_api/helpers/balancer/util.py @@ -31,9 +31,9 @@ def complement(a: Decimal) -> Decimal: def powUp(a: Decimal, b: Decimal) -> Decimal: getcontext().rounding = ROUND_UP - return a ** b + return a**b def powDown(a: Decimal, b: Decimal) -> Decimal: getcontext().rounding = ROUND_DOWN - return a ** b + return a**b diff --git a/tools/python/brownie/great_ape_safe/ape_api/helpers/uni_v3/uni_v3.py b/tools/python/brownie/great_ape_safe/ape_api/helpers/uni_v3/uni_v3.py index e87974373..0f44e9031 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/helpers/uni_v3/uni_v3.py +++ b/tools/python/brownie/great_ape_safe/ape_api/helpers/uni_v3/uni_v3.py @@ -2,7 +2,7 @@ from rich.pretty import pprint -Q128 = 2 ** 128 +Q128 = 2**128 LABELS = { "pool_positions": [ diff --git a/tools/python/brownie/great_ape_safe/ape_api/helpers/uni_v3/uni_v3_sdk.py b/tools/python/brownie/great_ape_safe/ape_api/helpers/uni_v3/uni_v3_sdk.py index 6180e3751..08514ed36 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/helpers/uni_v3/uni_v3_sdk.py +++ b/tools/python/brownie/great_ape_safe/ape_api/helpers/uni_v3/uni_v3_sdk.py @@ -1,10 +1,10 @@ from math import ceil BASE = 1.0001 -Q128 = 2 ** 128 -Q96 = 2 ** 96 -Q32 = 2 ** 32 -MAXUINT256 = 2 ** 256 - 1 +Q128 = 2**128 +Q96 = 2**96 +Q32 = 2**32 +MAXUINT256 = 2**256 - 1 def maxLiquidityForAmount0(sqrtA, sqrtB, amount): diff --git a/tools/python/brownie/great_ape_safe/ape_api/uni_v3.py b/tools/python/brownie/great_ape_safe/ape_api/uni_v3.py index c91151993..2dc0615c5 100644 --- a/tools/python/brownie/great_ape_safe/ape_api/uni_v3.py +++ b/tools/python/brownie/great_ape_safe/ape_api/uni_v3.py @@ -45,7 +45,7 @@ def __init__(self, safe): ) # constant helpers - self.Q128 = 2 ** 128 + self.Q128 = 2**128 self.deadline = 60 * 180 self.slippage = 0.98 @@ -324,8 +324,8 @@ def mint_position(self, pool_addr, range0, range1, token0_amount, token1_amount) decimals_diff = token1.decimals() - token0.decimals() # params for minting method - lower_tick = int(math.log((1 / range1) * 10 ** decimals_diff, BASE) // 60 * 60) - upper_tick = int(math.log((1 / range0) * 10 ** decimals_diff, BASE) // 60 * 60) + lower_tick = int(math.log((1 / range1) * 10**decimals_diff, BASE) // 60 * 60) + upper_tick = int(math.log((1 / range0) * 10**decimals_diff, BASE) // 60 * 60) deadline = chain.time() + self.deadline # calcs for min amounts @@ -458,13 +458,10 @@ def swap(self, path, mantissa, destination=None): else: path_encoded += int.to_bytes(item, 3, byteorder="big") - min_out = ( - self.quoter.quoteExactInput.call( - path_encoded, - mantissa, - ) - * (1 - self.slippage) - ) + min_out = self.quoter.quoteExactInput.call( + path_encoded, + mantissa, + ) * (1 - self.slippage) params = ( path_encoded, diff --git a/tools/python/brownie/great_ape_safe/great_ape_safe.py b/tools/python/brownie/great_ape_safe/great_ape_safe.py index 4bf2c389f..b8ee8c1ec 100644 --- a/tools/python/brownie/great_ape_safe/great_ape_safe.py +++ b/tools/python/brownie/great_ape_safe/great_ape_safe.py @@ -15,27 +15,10 @@ from tqdm import tqdm from web3.exceptions import BadFunctionCallOutput -from great_ape_safe.ape_api.aave import Aave -from great_ape_safe.ape_api.across import Across -from great_ape_safe.ape_api.anyswap import Anyswap -from great_ape_safe.ape_api.aura import Aura -from great_ape_safe.ape_api.badger import Badger -from great_ape_safe.ape_api.balancer import Balancer -from great_ape_safe.ape_api.chainlink import Chainlink -from great_ape_safe.ape_api.compound import Compound -from great_ape_safe.ape_api.convex import Convex + from great_ape_safe.ape_api.cow import Cow -from great_ape_safe.ape_api.curve import Curve -from great_ape_safe.ape_api.curve_v2 import CurveV2 -from great_ape_safe.ape_api.euler import Euler -from great_ape_safe.ape_api.maker import Maker -from great_ape_safe.ape_api.opolis import Opolis -from great_ape_safe.ape_api.pancakeswap_v2 import PancakeswapV2 -from great_ape_safe.ape_api.rari import Rari from great_ape_safe.ape_api.snapshot import Snapshot from great_ape_safe.ape_api.solidly import Solidly -from great_ape_safe.ape_api.spookyswap import SpookySwap -from great_ape_safe.ape_api.sushi import Sushi from great_ape_safe.ape_api.uni_v2 import UniV2 from great_ape_safe.ape_api.uni_v3 import UniV3 from helpers.chaindata import labels @@ -73,6 +56,7 @@ def init_aave(self): def init_across(self): self.across = Across(self) + def init_anyswap(self): self.anyswap = Anyswap(self) @@ -265,7 +249,7 @@ def post_safe_tx( csv_destination=None, gas_coef=1.5, safe_tx=None, - gen_tenderly=True, + gen_tenderly=False, ): # build a gnosis-py SafeTx object which can then be posted # skip_preview=True: skip preview **and with that also setting the gas** diff --git a/tools/python/brownie/helpers/addresses.py b/tools/python/brownie/helpers/addresses.py index 16cd9605f..b86e85415 100644 --- a/tools/python/brownie/helpers/addresses.py +++ b/tools/python/brownie/helpers/addresses.py @@ -1,21 +1,71 @@ import pandas as pd - -from brownie import chain from dotmap import DotMap from web3 import Web3 +import requests import json +from bal_addresses import AddrBook + +try: + from brownie import chain +except ImportError: + print( + "Warning. Can't load brownie module in addresses.py. get_registry() assumes mainnet, use get_registry_by_chain_id()" + ) + chain = DotMap({"id": 1}) + + +def monorepo_addys_by_chain(chain_name): ## TODO retire + + return AddrBook(chain_name).flatbook + + +ZERO_ADDRESS = "0x0000000000000000000000000000000000000000" +MANAGED_CHAINS = { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, + "goerli": 5, +} ADDRESSES_ETH = { "zero": "0x0000000000000000000000000000000000000000", - "on_chain_pricing_mainnet_lenient": "0x2DC7693444aCd1EcA1D6dE5B3d0d8584F3870c49", # the wallets listed here are looped over by scout and checked for all treasury tokens - "wallets": {}, "balancer": { "multisigs": { "lm": "0xc38c5f97B34E175FFd35407fc91a937300E33860", "dao": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", "fees": "0x7c68c42De679ffB0f16216154C996C354cF1161B", - "karpatkey": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89" + "feeManager": "0xf4A80929163C5179Ca042E1B292F5EFBBE3D89e6", + "karpatkey": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", + "emergency": "0xA29F61256e948F3FB707b4b3B138C5cCb9EF9888", + "maxi_ops": "0x166f54F44F271407f24AA1BE415a730035637325", + "blabs_ops": "0x02f35dA6A02017154367Bc4d47bb6c7D06C7533B", + }, + "signers": { + "maxis": { + "solarcurve": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "zendragon": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "zekraken": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "mikeb": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "xeonus": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "danko": "0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438", + "tritium": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + }, + "blabs_ops": { + "Jeff": "0xBEf33200077A2A2AC3613aB92488b41FFc39AcE2", + "Markus": "0xCae6f77a6cf4C952BF36793D91519fb4Ae86C264", + "Mike": "0x91f4Df13350083eDb30515019cF527C6b0490c54", + "Nico": "0x815d654E930E840D0E0Ee1B18FFc8Fb4ddA4c6B3", + "Fernando": "0xbbF0Ae5195444264364CA7eb7E3BB1971B4c3eCb", + }, + }, + "deployers": { + "solarcurve": "0x6409C2C1aC1B26aaaEF982572efd38412075586D", + "zendragon": "0x854B004700885A61107B458f11eCC169A019b764", + "mikeb": "0xc4591c41e01a7a654b5427f39bbd1dee5bd45d1d", + "tritium": "0x53a806789BBfd366d9dEB9Cbe5d622089e845fdb", }, "vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", "gauge_factory": "0x4E7bBd911cf1EFa442BC1b2e9Ea01ffE785412EC", @@ -23,11 +73,18 @@ "minter": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b", "gauge_controller": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", "authorizer_adapter": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", - "authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", # todo retire + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "feeDistributor": "0xD3cf852898b21fc233251427c2DC93d3d604F3BB", "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F", "ProtocolFeesWithdrawer": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "gauntletFeeSetter": "0xE4a8ed6c1D8d048bD29A00946BFcf2DB10E7923B", + "maxi_gas_station": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A", + "poolRecoveryHelper": "0x1b300C86980a5195bCF49bD419A068D98dC133Db", + # https://github.com/balancer-labs/balancer-v2-monorepo/blob/master/pkg/deployments/tasks/20221123-pool-recovery-helper/output/mainnet.json }, "tokens": { + "bb_a_usd": "0xa13a9247ea42d743238089903570127dda72fe44", "FARM": "0xa0246c9032bC3A600820415aE600c6388619A14D", "BADGER": "0x3472A5A71965499acd81997a54BBA8D852C6E53d", "DIGG": "0x798D1bE841a82a273720CE31c822C61a67a601C3", @@ -69,15 +126,11 @@ "LINK": "0x514910771AF9Ca656af840dff83E8264EcF986CA", "AURA": "0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF", "AURABAL": "0x616e8BfA43F920657B3497DBf40D6b1A02D4608d", + "BalWeth8020": "0x5c6Ee304399DBdB9C8Ef030aB642B10820DB8F56", "ANGLE": "0x31429d1856aD1377A8A0079410B297e1a9e214c2", "ENS": "0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72", "RETH": "0xae78736Cd615f374D3085123A210448E74Fc6393", - }, - "logic": { - }, - - "custodians": { - "multiswap": "0x533e3c0e6b48010873B947bddC4721b1bDFF9648" + "GEAR": "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D", }, "helpers": { "balance_checker": "0xe92261c2D64C363109c36a754A87107142e61b72", @@ -85,9 +138,7 @@ "compound": { "comptroller": "0x3d9819210A31b4961b30EF54bE2aeD79B9c9Cd3B", }, - "across": { - "spoke_pool": "0x4D9079Bb4165aeb4084c526a32695dCfd2F77381" - }, + "across": {"spoke_pool": "0x4D9079Bb4165aeb4084c526a32695dCfd2F77381"}, "aave": { "incentives_controller": "0xd784927Ff2f95ba542BfC824c8a8a98F3495f6b5", "aave_lending_pool_v2": "0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9", @@ -110,14 +161,12 @@ "pool_registry": "0x41a5881c17185383e19Df6FA4EC158a6F4851A69", }, }, - "votium": { + "votium": { "bribe": "0x19BBC3463Dd8d07f55438014b021Fb457EBD4595", "multiMerkleStash": "0x378Ba9B73309bE80BF4C2c027aAD799766a7ED5A", }, - "uniswap": { "factoryV3": "0x1F98431c8aD98523631AE4a59f267346ea31F984", - "v3pool_wbtc_badger": "0xe15e6583425700993bd08F51bF6e7B73cd5da91B", "NonfungiblePositionManager": "0xC36442b4a4522E871399CD717aBDD847Ab11FE88", "routerV2": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", "routerV3": "0xE592427A0AEce92De3Edee1F18E0157C05861564", @@ -132,13 +181,6 @@ "provider": "0x0000000022D53366457F9d5E68Ec105046FC4383", "factory": "0x0959158b6040D32d04c301A72CBFD6b39E21c9AE", }, - "bridge": { - "arbitrum": { - "outbox": "0x760723CD2e632826c38Fef8CD438A4CC7E7E1A40", - "l1_gateway": "0x72Ce9c846789fdB6fC1f34aC4AD25Dd9ef7031ef", - "l1_erc20_gateway": "0xa3A7B6F88361F48403514059F1F16C8E78d60EeC", - }, - }, "hidden_hand": { "bribe_vault": "0x9DDb2da7Dd76612e0df237B89AF2CF4413733212", "tokenmak_briber": "0x7816b3D0935D668bCfc9A4aaB5a84EBc7fF320cf", @@ -183,27 +225,30 @@ }, } - - ADDRESSES_POLYGON = { "zero": "0x0000000000000000000000000000000000000000", "balancer": { "multisigs": { "lm": "0xc38c5f97B34E175FFd35407fc91a937300E33860", - "treasury": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85" - } + "dao": "0xeE071f4B516F69a1603dA393CdE8e76C40E5Be85", + "fees": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "feeManager": "0x7c68c42De679ffB0f16216154C996C354cF1161B", ## fees is feeManager on Polygon + "emergency": "0x3c58668054c299bE836a0bBB028Bee3aD4724846", + "blabs_ops": "0xf9D6BdE5c2eef334AC88204CB2eEc07111DCBA97", + }, + "authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", # TODO retire + "poolRecoveryHelper": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA", + # https://github.com/balancer-labs/balancer-v2-monorepo/blob/master/pkg/deployments/tasks/20221123-pool-recovery-helper/output/polygon.json }, "tokens": { "USDC": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", "WMATIC": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", "WETH": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619", "BAL": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3", - "WBTC": "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6" - - }, - "across": { - "spoke_pool": "0x69B5c72837769eF1e7C164Abc6515DcFf217F920" + "WBTC": "0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6", }, + "across": {"spoke_pool": "0x69B5c72837769eF1e7C164Abc6515DcFf217F920"}, } ADDRESSES_ARBITRUM = { @@ -215,9 +260,16 @@ "balancer": { "multisigs": { "lm": "0xc38c5f97B34E175FFd35407fc91a937300E33860", - "dao": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", - "fees": "0x7c68c42De679ffB0f16216154C996C354cF1161B" - } + "dao": "0xaF23DC5983230E9eEAf93280e312e57539D098D0", + "fees": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "feeManager": "0x7c68c42De679ffB0f16216154C996C354cF1161B", # fees is feeManager on Arbitrum + "emergency": "0xf404C5a0c02397f0908A3524fc5eb84e68Bbe60D", + "blabs_ops": "0x56ebA8dcDcEC3161Dd220c4B4131c27aF201F892", + }, + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", # TODO retire + "poolRecoveryHelper": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2", + # https://github.com/balancer-labs/balancer-v2-monorepo/blob/master/pkg/deployments/tasks/20221123-pool-recovery-helper/output/arbitrum.json }, "tokens": { "BADGER": "0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E", @@ -228,6 +280,7 @@ "renBTC": "0xdbf31df14b66535af65aac99c32e9ea844e14501", "WETH": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1", "USDT": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "LDO": "0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60", }, "coingecko_tokens": { "badger-dao": "0xbfa641051ba0a0ad1b0acf549a89536a0d76472e", @@ -238,8 +291,10 @@ "weth": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1", "usdx": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", }, - "across": { - "spoke_pool": "0xB88690461dDbaB6f04Dfad7df66B7725942FEb9C" + "across": {"spoke_pool": "0xB88690461dDbaB6f04Dfad7df66B7725942FEb9C"}, + "chainlink": { + "keeper_registry": "0x75c0530885F385721fddA23C539AF3701d6183D4", + "keeper_registrar": "0x4F3AF332A30973106Fe146Af0B4220bBBeA748eC", }, "sushi": {"router": "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506"}, "swapr": {"router": "0x530476d5583724A89c8841eB6Da76E7Af4C0F17E"}, @@ -247,12 +302,82 @@ "arbitrum_gateway_router": "0x5288c571Fd7aD117beA99bF60FE0846C4E84F933", } - ADDRESSES_OPTIMISM = { "zero": "0x0000000000000000000000000000000000000000", - "wallets": {}, + "balancer": { + "multisigs": { + "dao": "0x043f9687842771b3dF8852c1E9801DCAeED3f6bc", + "fees": "0x09Df1626110803C7b3b07085Ef1E053494155089", ## fees is LM on Optimism + "feeManager": "0x09Df1626110803C7b3b07085Ef1E053494155089", ## fees is LM on Optimism + "lm": "0x09Df1626110803C7b3b07085Ef1E053494155089", + "emergency": "0xd4c87b33afcE39F1E3F4aF1ce8fFFF7241d9128B", + "blabs_ops": "0xFB2ac3989B6AD0e043a8958004484d6BAAb2c6Ab", + }, + "authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", # TODO retire + "poolRecoveryHelper": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9", + # https://github.com/balancer-labs/balancer-v2-monorepo/blob/master/pkg/deployments/tasks/20221123-pool-recovery-helper/output/optimism.json + }, "tokens": {}, } +ADDRESSES_GOERLI = { + "zero": "0x0000000000000000000000000000000000000000", + # the wallets listed here are looped over by scout and checked for all treasury tokens + "balancer": { + "signers": { + "maxis": { + "solarcurve": "0x512fce9B07Ce64590849115EE6B32fd40eC0f5F3", + "zendragon": "0x7c2eA10D3e5922ba3bBBafa39Dc0677353D2AF17", + "zekraken": "0xafFC70b81D54F229A5F50ec07e2c76D2AAAD07Ae", + "mikeb": "0xc4591c41e01a7a654B5427f39Bbd1dEe5bD45D1D", + "xeonus": "0x7019Be4E4eB74cA5F61224FeAf687d2b43998516", + "danko": "0x200550cAD164E8e0Cb544A9c7Dc5c833122C1438", + "tritium": "0xcf4fF1e03830D692F52EB094c52A5A6A2181Ab3F", + }, + }, + "multisigs": { + "maxi_ops": "0x040E995520F92F96142d1a76c16D4af21A2eFDE7", + "lm": "0x040E995520F92F96142d1a76c16D4af21A2eFDE7", + "blab_ops": ZERO_ADDRESS, + }, + }, + "chainlink": { + "feed_registry": "0x47Fb2585D2C56Fe188D0E6ec628a38b74fCeeeDf", + "keeper_registry": "0xE16Df59B887e3Caa439E0b29B42bA2e7976FD8b2", + "keeper_registrar": "0x57A4a13b35d25EE78e084168aBaC5ad360252467", + }, + "tokens": {"LINK": "0x326C977E6efc84E512bB9C30f76E30c160eD06FB"}, +} + +ADDRESSES_GNOSIS = { + "zero": "0x0000000000000000000000000000000000000000", + "balancer": dict(monorepo_addys_by_chain("gnosis")), +} +ADDRESSES_GNOSIS["balancer"]["multisigs"] = dict( + { + "emergency": "0xd6110A7756080a4e3BCF4e7EBBCA8E8aDFBC9962", + "dao": "0x2a5AEcE0bb9EfFD7608213AE1745873385515c18", + # All maxi operations concentrated into 1 multisig + "fees": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "feeManager": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "lm": "0x14969B55a675d13a1700F71A37511bc22D90155a", + "blabs_ops": "0x955556b002d05c7B31a9394c10897c1DA19eAEab", + } +) + +OTHER_STUFF = { + "ETH": { + "chainlink_upkeeps": { + "maxi_gas_station": "62602467182204477380138952081172885895406053754821061796893606503759482417757" + } + }, + "ARB": { + "chainlink_upkeeps": { + "LDO_Dripper": "23926380045016622619660764855689500906523687945821062548058919253617645725550" + } + }, +} + def checksum_address_dict(addresses): """ @@ -272,35 +397,110 @@ def checksum_address_dict(addresses): with open("helpers/chaindata.json") as chaindata: chain_ids = json.load(chaindata) - registry = DotMap( { "eth": checksum_address_dict(ADDRESSES_ETH), "poly": checksum_address_dict(ADDRESSES_POLYGON), "arbitrum": checksum_address_dict(ADDRESSES_ARBITRUM), "op": checksum_address_dict(ADDRESSES_OPTIMISM), - + "gnosis": checksum_address_dict(ADDRESSES_GNOSIS), + "goerli": checksum_address_dict(ADDRESSES_GOERLI), } ) +def monorepo_names_by_address(chain_name): + r = get_registry_by_chain_id( + MANAGED_CHAINS[chain_name] + ) # todo adapt to handle given chain + monorepo_names = {} + response = requests.get( + f"https://raw.githubusercontent.com/balancer-labs/balancer-v2-monorepo/master/pkg/deployments/addresses/{chain_name}.json" + ) + data = response.json() + for address, info in data.items(): + monorepo_names[address] = info["name"] + for name, address in r.balancer.multisigs.items(): + monorepo_names[address] = name + if chain_name == "mainnet": + monorepo_names[ + ADDRESSES_ETH["balancer"]["gauntletFeeSetter"] + ] = "gauntletFeeSetter" # TODO this is ugly clean it up + return monorepo_names + + +def monorepo_addresses_by_name(chain_name): + monorepo_addresses = {} + for address, name in monorepo_names_by_address(chain_name).items(): + monorepo_addresses[name] = address + return monorepo_addresses + + +def flat_callers_by_chain(chain_name): + reg = get_registry_by_chain_id(MANAGED_CHAINS[chain_name]) + # Build a list of callers out of the multisigs and the other balancer addresses + callers = dict(reg.balancer.multisigs) + for name, value in reg.balancer.items(): + if type(value) is str: + if name in callers.keys(): + print( + f"WARNING: Collision between {name}:{value} which is already in the list with value {callers[name]}" + ) + callers[name] = value + if chain_name == "mainnet": + callers["gauntletFeeSetter"] = ADDRESSES_ETH["balancer"][ + "gauntletFeeSetter" + ] # TODO this is ugly clean it up + return callers + + +def get_registry_by_chain_id(chain_id): + if chain_id == 1: + return registry.eth + elif chain_id == 137: + return registry.poly + elif chain_id == 56: + return registry.bsc + elif chain_id == 42161: + return registry.arbitrum + elif chain_id == 250: + return registry.ftm + elif chain_id == 10: + return registry.op + elif chain_id == 42: + return registry.kovan + elif chain_id == 5: + return registry.goerli + elif chain_id == 100: + return registry.gnosis + + +try: + chain_id = chain.id +except: + print("Error detecting chain.id from brownie, defaulting to 1.") + chain_id = 1 + + def get_registry(): - if chain.id == 1: + if chain_id == 1: return registry.eth - elif chain.id == 137: + elif chain_id == 137: return registry.poly - elif chain.id == 56: + elif chain_id == 56: return registry.bsc - elif chain.id == 42161: + elif chain_id == 42161: return registry.arbitrum - elif chain.id == 250: + elif chain_id == 250: return registry.ftm - elif chain.id == 10: + elif chain_id == 10: return registry.op - elif chain.id == 42: + elif chain_id == 42: return registry.kovan - elif chain.id == 5: + elif chain_id == 5: return registry.goerli + elif chain_id == 100: + return registry.gnosis r = get_registry() diff --git a/tools/python/brownie/helpers/balancerGaugeInfo.py b/tools/python/brownie/helpers/balancerGaugeInfo.py index 9bf84e607..c078a9c2e 100644 --- a/tools/python/brownie/helpers/balancerGaugeInfo.py +++ b/tools/python/brownie/helpers/balancerGaugeInfo.py @@ -11,43 +11,63 @@ from dotenv import load_dotenv from helpers.addresses import registry from web3 import Web3 -#from great_ape_safe import GreatApeSafe + +# from great_ape_safe import GreatApeSafe load_dotenv() -INFURA_KEY = os.getenv('WEB3_INFURA_PROJECT_ID') +INFURA_KEY = os.getenv("WEB3_INFURA_PROJECT_ID") + +w3arbitrum = Web3( + Web3.HTTPProvider(f"https://arbitrum-mainnet.infura.io/v3/{INFURA_KEY}") +) +w3optimism = Web3( + Web3.HTTPProvider(f"https://optimism-mainnet.infura.io/v3/{INFURA_KEY}") +) +w3polygon = Web3( + Web3.HTTPProvider(f"https://polygon-mainnet.infura.io/v3/{INFURA_KEY}") +) -w3arbitrum = Web3(Web3.HTTPProvider(f"https://arbitrum-mainnet.infura.io/v3/{INFURA_KEY}")) -w3optimism = Web3(Web3.HTTPProvider(f"https://optimism-mainnet.infura.io/v3/{INFURA_KEY}")) -w3polygon = Web3(Web3.HTTPProvider(f"https://polygon-mainnet.infura.io/v3/{INFURA_KEY}")) def buildGaugesDictFromContract(): controller = Contract(registry.eth.balancer.gauge_controller) n = controller.n_gauges() i = 0 - active_gauges={} - inactive_gauges={} + active_gauges = {} + inactive_gauges = {} while i < n: - print (i) + print(i) gauge = Contract(controller.gauges(i)) ## Handle Arbitrum - if (gauge._name =="ArbitrumRootGauge"): - crosschain_streamer = w3arbitrum.eth.contract(address=gauge.getRecipient(), - abi=json.load(open("web3py/abi/IChildChainStreamer.json"))) + if gauge._name == "ArbitrumRootGauge": + crosschain_streamer = w3arbitrum.eth.contract( + address=gauge.getRecipient(), + abi=json.load(open("web3py/abi/IChildChainStreamer.json")), + ) pool = crosschain_streamer.functions.reward_receiver().call() - pool = w3arbitrum.eth.contract(address=pool, abi=json.load(open("web3py/abi/IRewardsOnlyGauge.json"))) + pool = w3arbitrum.eth.contract( + address=pool, abi=json.load(open("web3py/abi/IRewardsOnlyGauge.json")) + ) gauge_name = f"ARBI: {pool.functions.name().call()}" - elif (gauge._name =="PolygonRootGauge"): - crosschain_streamer = w3polygon.eth.contract(address=gauge.getRecipient(), - abi=json.load(open("web3py/abi/IChildChainStreamer.json"))) + elif gauge._name == "PolygonRootGauge": + crosschain_streamer = w3polygon.eth.contract( + address=gauge.getRecipient(), + abi=json.load(open("web3py/abi/IChildChainStreamer.json")), + ) pool = crosschain_streamer.functions.reward_receiver().call() - pool = w3polygon.eth.contract(address=pool, abi=json.load(open("web3py/abi/IRewardsOnlyGauge.json"))) + pool = w3polygon.eth.contract( + address=pool, abi=json.load(open("web3py/abi/IRewardsOnlyGauge.json")) + ) gauge_name = f"POLY: {pool.functions.name().call()}" - elif (gauge._name =="OptimismRootGauge"): - crosschain_streamer = w3optimism.eth.contract(address=gauge.getRecipient(), - abi=json.load(open("web3py/abi/IChildChainStreamer.json"))) + elif gauge._name == "OptimismRootGauge": + crosschain_streamer = w3optimism.eth.contract( + address=gauge.getRecipient(), + abi=json.load(open("web3py/abi/IChildChainStreamer.json")), + ) pool = crosschain_streamer.functions.reward_receiver().call() - pool = w3optimism.eth.contract(address=pool, abi=json.load(open("web3py/abi/IRewardsOnlyGauge.json"))) + pool = w3optimism.eth.contract( + address=pool, abi=json.load(open("web3py/abi/IRewardsOnlyGauge.json")) + ) gauge_name = f"OPTI: {pool.functions.name().call()}" else: try: @@ -62,24 +82,22 @@ def buildGaugesDictFromContract(): except Exception: gauge_name = reward_recipient.getName() print(f"{gauge.address}:{gauge_name}") - if(gauge.is_killed()): - inactive_gauges[gauge.address]=gauge_name + if gauge.is_killed(): + inactive_gauges[gauge.address] = gauge_name else: - active_gauges[gauge.address]=gauge_name + active_gauges[gauge.address] = gauge_name i += 1 - gauges = { - "active_gauges": active_gauges, - "inactive_gauges": inactive_gauges - } + gauges = {"active_gauges": active_gauges, "inactive_gauges": inactive_gauges} return gauges def write_gauge_outputs(gauges_dict): - with open('output/gauges.json', 'w') as jsonfile: + with open("output/gauges.json", "w") as jsonfile: json.dump(gauges_dict, jsonfile) - with open('output/gauges.csv', 'w') as csvfile: + jsonfile.write("\n") + with open("output/gauges.csv", "w") as csvfile: csvfile.write("name, address, isActive\n") for key, value in gauges_dict["active_gauges"].items(): csvfile.write("%s, %s, True\n" % (value, key)) @@ -87,13 +105,12 @@ def write_gauge_outputs(gauges_dict): csvfile.write(f"%s, %s, False\n" % (value, key)) - def getGaugesByChain(chainId=1, printResults=False): ### Get chain name by ID for The Graph f = open("helpers/chainnames.json") chains_by_id = json.load(f) f.close() - chain_name = chains_by_id[str(chainId)]['name'] + chain_name = chains_by_id[str(chainId)]["name"] query = """query { liquidityGauges { @@ -105,22 +122,26 @@ def getGaugesByChain(chainId=1, printResults=False): } }""" ### Pull the subgraph data for the right chain - if(chain_name == "mainnet"): - url = f'https://api.thegraph.com/subgraphs/name/balancer-labs/balancer-gauges' + if chain_name == "mainnet": + url = f"https://api.thegraph.com/subgraphs/name/balancer-labs/balancer-gauges" else: - url = f'https://api.thegraph.com/subgraphs/name/balancer-labs/balancer-gauges-{chain_name}' - r = requests.post(url, json={'query': query}) - if (r.status_code != 200): - print(f"Error requesting gauge list from TheGraph. Status Code: {r.status_code}, result: {r.text}") + url = f"https://api.thegraph.com/subgraphs/name/balancer-labs/balancer-gauges-{chain_name}" + r = requests.post(url, json={"query": query}) + if r.status_code != 200: + print( + f"Error requesting gauge list from TheGraph. Status Code: {r.status_code}, result: {r.text}" + ) exit(r.status_code) json_data = json.loads(r.text) ### Print out a resulting table - gauge_list_json = json_data['data']['liquidityGauges'] + gauge_list_json = json_data["data"]["liquidityGauges"] df = pd.DataFrame(gauge_list_json) - df.insert(0, 'chainId', chainId) - if (printResults): - print(df.to_markdown(index=False)) # safe = GreatApeSafe(registry.eth.badger_wallets.techops_multisig) + df.insert(0, "chainId", chainId) + if printResults: + print( + df.to_markdown(index=False) + ) # safe = GreatApeSafe(registry.eth.badger_wallets.techops_multisig) return df @@ -130,14 +151,15 @@ def getGaugesAllChains(): f = open("helpers/chainnames.json") chains_by_id = json.load(f) f.close() - for (k, v) in chains_by_id.items(): + for k, v in chains_by_id.items(): result[k] = getGaugesByChain(k) - results = pd.concat(result, ignore_index=True) # safe = GreatApeSafe(registry.eth.badger_wallets.techops_multisig) - return results; - -if __name__ == '__main__': - all_gauges_list = (getGaugesAllChains()) - print(all_gauges_list.to_markdown(index=False)) - #mainnet = getGaugesByChan(printResults=True) + results = pd.concat( + result, ignore_index=True + ) # safe = GreatApeSafe(registry.eth.badger_wallets.techops_multisig) + return results +if __name__ == "__main__": + all_gauges_list = getGaugesAllChains() + print(all_gauges_list.to_markdown(index=False)) + # mainnet = getGaugesByChan(printResults=True) diff --git a/tools/python/brownie/helpers/constants.py b/tools/python/brownie/helpers/constants.py index c577eadca..e0d5ef701 100644 --- a/tools/python/brownie/helpers/constants.py +++ b/tools/python/brownie/helpers/constants.py @@ -1,3 +1,3 @@ AddressZero = "0x0000000000000000000000000000000000000000" -MaxUint256 = str(int(2 ** 256 - 1)) +MaxUint256 = str(int(2**256 - 1)) EmptyBytes32 = "0x0000000000000000000000000000000000000000000000000000000000000000" diff --git a/tools/python/brownie/interfaces/IERC20.sol b/tools/python/brownie/interfaces/IERC20.sol new file mode 100644 index 000000000..8b08c680d --- /dev/null +++ b/tools/python/brownie/interfaces/IERC20.sol @@ -0,0 +1,78 @@ +// SPDX-License-Identifier: MIT +// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) + +pragma solidity ^0.8.0; + +/** + * @dev Interface of the ERC20 standard as defined in the EIP. + */ +interface IERC20 { + /** + * @dev Emitted when `value` tokens are moved from one account (`from`) to + * another (`to`). + * + * Note that `value` may be zero. + */ + event Transfer(address indexed from, address indexed to, uint256 value); + + /** + * @dev Emitted when the allowance of a `spender` for an `owner` is set by + * a call to {approve}. `value` is the new allowance. + */ + event Approval(address indexed owner, address indexed spender, uint256 value); + + /** + * @dev Returns the amount of tokens in existence. + */ + function totalSupply() external view returns (uint256); + + /** + * @dev Returns the amount of tokens owned by `account`. + */ + function balanceOf(address account) external view returns (uint256); + + /** + * @dev Moves `amount` tokens from the caller's account to `to`. + * + * Returns a boolean value indicating whether the operation succeeded. + * + * Emits a {Transfer} event. + */ + function transfer(address to, uint256 amount) external returns (bool); + + /** + * @dev Returns the remaining number of tokens that `spender` will be + * allowed to spend on behalf of `owner` through {transferFrom}. This is + * zero by default. + * + * This value changes when {approve} or {transferFrom} are called. + */ + function allowance(address owner, address spender) external view returns (uint256); + + /** + * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. + * + * Returns a boolean value indicating whether the operation succeeded. + * + * IMPORTANT: Beware that changing an allowance with this method brings the risk + * that someone may use both the old and the new allowance by unfortunate + * transaction ordering. One possible solution to mitigate this race + * condition is to first reduce the spender's allowance to 0 and set the + * desired value afterwards: + * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 + * + * Emits an {Approval} event. + */ + function approve(address spender, uint256 amount) external returns (bool); + + /** + * @dev Moves `amount` tokens from `from` to `to` using the + * allowance mechanism. `amount` is then deducted from the caller's + * allowance. + * + * Returns a boolean value indicating whether the operation succeeded. + * + * Emits a {Transfer} event. + */ + function transferFrom(address from, address to, uint256 amount) external returns (bool); +} \ No newline at end of file diff --git a/tools/python/brownie/interfaces/chainlink/IKeeperRegistrar.sol b/tools/python/brownie/interfaces/chainlink/IKeeperRegistrar.sol deleted file mode 100644 index c38d6f82d..000000000 --- a/tools/python/brownie/interfaces/chainlink/IKeeperRegistrar.sol +++ /dev/null @@ -1,116 +0,0 @@ -// SPDX-License-Identifier: MIT -pragma solidity ^0.8.13; - -interface IKeeperRegistrar { - error AmountMismatch(); - error FunctionNotPermitted(); - error HashMismatch(); - error InsufficientPayment(); - error InvalidAdminAddress(); - error InvalidDataLength(); - error LinkTransferFailed(address to); - error OnlyAdminOrOwner(); - error OnlyLink(); - error RegistrationRequestFailed(); - error RequestNotFound(); - error SenderMismatch(); - event AutoApproveAllowedSenderSet( - address indexed senderAddress, - bool allowed - ); - event ConfigChanged( - uint8 autoApproveConfigType, - uint32 autoApproveMaxAllowed, - address keeperRegistry, - uint96 minLINKJuels - ); - event OwnershipTransferRequested(address indexed from, address indexed to); - event OwnershipTransferred(address indexed from, address indexed to); - event RegistrationApproved( - bytes32 indexed hash, - string displayName, - uint256 indexed upkeepId - ); - event RegistrationRejected(bytes32 indexed hash); - event RegistrationRequested( - bytes32 indexed hash, - string name, - bytes encryptedEmail, - address indexed upkeepContract, - uint32 gasLimit, - address adminAddress, - bytes checkData, - uint96 amount, - uint8 indexed source - ); - - function LINK() external view returns (address); - - function acceptOwnership() external; - - function approve( - string memory name, - address upkeepContract, - uint32 gasLimit, - address adminAddress, - bytes memory checkData, - bytes32 hash - ) external; - - function cancel(bytes32 hash) external; - - function getAutoApproveAllowedSender(address senderAddress) - external - view - returns (bool); - - function getPendingRequest(bytes32 hash) - external - view - returns (address, uint96); - - function getRegistrationConfig() - external - view - returns ( - uint8 autoApproveConfigType, - uint32 autoApproveMaxAllowed, - uint32 approvedCount, - address keeperRegistry, - uint256 minLINKJuels - ); - - function onTokenTransfer( - address sender, - uint256 amount, - bytes memory data - ) external; - - function owner() external view returns (address); - - function register( - string memory name, - bytes memory encryptedEmail, - address upkeepContract, - uint32 gasLimit, - address adminAddress, - bytes memory checkData, - uint96 amount, - uint8 source, - address sender - ) external; - - function setAutoApproveAllowedSender(address senderAddress, bool allowed) - external; - - function setRegistrationConfig( - uint8 autoApproveConfigType, - uint16 autoApproveMaxAllowed, - address keeperRegistry, - uint96 minLINKJuels - ) external; - - function transferOwnership(address to) external; - - function typeAndVersion() external view returns (string memory); -} diff --git a/tools/python/brownie/interfaces/chainlink/IKeeperRegistry.sol b/tools/python/brownie/interfaces/chainlink/IKeeperRegistry.sol deleted file mode 100644 index e947f1223..000000000 --- a/tools/python/brownie/interfaces/chainlink/IKeeperRegistry.sol +++ /dev/null @@ -1,236 +0,0 @@ -// SPDX-License-Identifier: MIT -pragma solidity ^0.8.13; - -interface IKeeperRegistry { - error ArrayHasNoEntries(); - error CannotCancel(); - error DuplicateEntry(); - error GasLimitCanOnlyIncrease(); - error GasLimitOutsideRange(); - error IndexOutOfRange(); - error InsufficientFunds(); - error InvalidDataLength(); - error InvalidPayee(); - error InvalidRecipient(); - error KeepersMustTakeTurns(); - error MigrationNotPermitted(); - error NotAContract(); - error OnlyActiveKeepers(); - error OnlyCallableByAdmin(); - error OnlyCallableByLINKToken(); - error OnlyCallableByOwnerOrAdmin(); - error OnlyCallableByOwnerOrRegistrar(); - error OnlyCallableByPayee(); - error OnlyCallableByProposedPayee(); - error OnlySimulatedBackend(); - error ParameterLengthError(); - error PaymentGreaterThanAllLINK(); - error TargetCheckReverted(bytes reason); - error TranscoderNotSet(); - error UpkeepNotActive(); - error UpkeepNotCanceled(); - error UpkeepNotNeeded(); - error ValueNotChanged(); - event ConfigSet(Config config); - event FundsAdded(uint256 indexed id, address indexed from, uint96 amount); - event FundsWithdrawn(uint256 indexed id, uint256 amount, address to); - event KeepersUpdated(address[] keepers, address[] payees); - event OwnerFundsWithdrawn(uint96 amount); - event OwnershipTransferRequested(address indexed from, address indexed to); - event OwnershipTransferred(address indexed from, address indexed to); - event Paused(address account); - event PayeeshipTransferRequested( - address indexed keeper, - address indexed from, - address indexed to - ); - event PayeeshipTransferred( - address indexed keeper, - address indexed from, - address indexed to - ); - event PaymentWithdrawn( - address indexed keeper, - uint256 indexed amount, - address indexed to, - address payee - ); - event Unpaused(address account); - event UpkeepCanceled(uint256 indexed id, uint64 indexed atBlockHeight); - event UpkeepGasLimitSet(uint256 indexed id, uint96 gasLimit); - event UpkeepMigrated( - uint256 indexed id, - uint256 remainingBalance, - address destination - ); - event UpkeepPerformed( - uint256 indexed id, - bool indexed success, - address indexed from, - uint96 payment, - bytes performData - ); - event UpkeepReceived( - uint256 indexed id, - uint256 startingBalance, - address importedFrom - ); - event UpkeepRegistered( - uint256 indexed id, - uint32 executeGas, - address admin - ); - - function FAST_GAS_FEED() external view returns (address); - - function LINK() external view returns (address); - - function LINK_ETH_FEED() external view returns (address); - - function acceptOwnership() external; - - function acceptPayeeship(address keeper) external; - - function addFunds(uint256 id, uint96 amount) external; - - function cancelUpkeep(uint256 id) external; - - function checkUpkeep(uint256 id, address from) - external - returns ( - bytes memory performData, - uint256 maxLinkPayment, - uint256 gasLimit, - uint256 adjustedGasWei, - uint256 linkEth - ); - - function getActiveUpkeepIDs(uint256 startIndex, uint256 maxCount) - external - view - returns (uint256[] memory); - - function getKeeperInfo(address query) - external - view - returns ( - address payee, - bool active, - uint96 balance - ); - - function getMaxPaymentForGas(uint256 gasLimit) - external - view - returns (uint96 maxPayment); - - function getMinBalanceForUpkeep(uint256 id) - external - view - returns (uint96 minBalance); - - function getPeerRegistryMigrationPermission(address peer) - external - view - returns (uint8); - - function getState() - external - view - returns ( - State memory state, - Config memory config, - address[] memory keepers - ); - - function getUpkeep(uint256 id) - external - view - returns ( - address target, - uint32 executeGas, - bytes memory checkData, - uint96 balance, - address lastKeeper, - address admin, - uint64 maxValidBlocknumber, - uint96 amountSpent - ); - - function migrateUpkeeps(uint256[] memory ids, address destination) external; - - function onTokenTransfer( - address sender, - uint256 amount, - bytes memory data - ) external; - - function owner() external view returns (address); - - function pause() external; - - function paused() external view returns (bool); - - function performUpkeep(uint256 id, bytes memory performData) - external - returns (bool success); - - function receiveUpkeeps(bytes memory encodedUpkeeps) external; - - function recoverFunds() external; - - function registerUpkeep( - address target, - uint32 gasLimit, - address admin, - bytes memory checkData - ) external returns (uint256 id); - - function setConfig(Config memory config) external; - - function setKeepers(address[] memory keepers, address[] memory payees) - external; - - function setPeerRegistryMigrationPermission(address peer, uint8 permission) - external; - - function setUpkeepGasLimit(uint256 id, uint32 gasLimit) external; - - function transferOwnership(address to) external; - - function transferPayeeship(address keeper, address proposed) external; - - function typeAndVersion() external view returns (string memory); - - function unpause() external; - - function upkeepTranscoderVersion() external view returns (uint8); - - function withdrawFunds(uint256 id, address to) external; - - function withdrawOwnerFunds() external; - - function withdrawPayment(address from, address to) external; -} - -struct Config { - uint32 paymentPremiumPPB; - uint32 flatFeeMicroLink; - uint24 blockCountPerTurn; - uint32 checkGasLimit; - uint24 stalenessSeconds; - uint16 gasCeilingMultiplier; - uint96 minUpkeepSpend; - uint32 maxPerformGas; - uint256 fallbackGasPrice; - uint256 fallbackLinkPrice; - address transcoder; - address registrar; -} - -struct State { - uint32 nonce; - uint96 ownerLinkBalance; - uint256 expectedLinkBalance; - uint256 numUpkeeps; -} diff --git a/tools/python/brownie/interfaces/chainlink/ILinkToken.sol b/tools/python/brownie/interfaces/chainlink/ILinkToken.sol deleted file mode 100644 index 56904f889..000000000 --- a/tools/python/brownie/interfaces/chainlink/ILinkToken.sol +++ /dev/null @@ -1,58 +0,0 @@ -// SPDX-License-Identifier: UNLICENSED -pragma solidity ^0.4.24; - -interface ILinkToken { - function name() external view returns (string memory); - - function approve(address _spender, uint256 _value) external returns (bool); - - function totalSupply() external view returns (uint256); - - function transferFrom( - address _from, - address _to, - uint256 _value - ) external returns (bool); - - function decimals() external view returns (uint8); - - function transferAndCall( - address _to, - uint256 _value, - bytes _data - ) external returns (bool success); - - function decreaseApproval(address _spender, uint256 _subtractedValue) - external - returns (bool success); - - function balanceOf(address _owner) external view returns (uint256 balance); - - function symbol() external view returns (string memory); - - function transfer(address _to, uint256 _value) - external - returns (bool success); - - function increaseApproval(address _spender, uint256 _addedValue) - external - returns (bool success); - - function allowance(address _owner, address _spender) - external - view - returns (uint256 remaining); - - event Transfer( - address indexed from, - address indexed to, - uint256 value, - bytes data - ); - event Approval( - address indexed owner, - address indexed spender, - uint256 value - ); - event Transfer(address indexed from, address indexed to, uint256 value); -} diff --git a/tools/python/brownie/interfaces/chainlink/IUpkeepRegistrationRequests.sol b/tools/python/brownie/interfaces/chainlink/IUpkeepRegistrationRequests.sol deleted file mode 100644 index 6087338ac..000000000 --- a/tools/python/brownie/interfaces/chainlink/IUpkeepRegistrationRequests.sol +++ /dev/null @@ -1,92 +0,0 @@ -// SPDX-License-Identifier: MIT -pragma solidity ^0.7.6; - -interface IUpkeepRegistrationRequests { - event ConfigChanged( - bool enabled, - uint32 windowSizeInBlocks, - uint16 allowedPerWindow, - address keeperRegistry, - uint256 minLINKJuels - ); - event OwnershipTransferRequested(address indexed from, address indexed to); - event OwnershipTransferred(address indexed from, address indexed to); - event RegistrationApproved( - bytes32 indexed hash, - string displayName, - uint256 indexed upkeepId - ); - event RegistrationRequested( - bytes32 indexed hash, - string name, - bytes encryptedEmail, - address indexed upkeepContract, - uint32 gasLimit, - address adminAddress, - bytes checkData, - uint96 amount, - uint8 indexed source - ); - - function LINK() external view returns (address); - - function acceptOwnership() external; - - function approve( - string memory name, - address upkeepContract, - uint32 gasLimit, - address adminAddress, - bytes memory checkData, - bytes32 hash - ) external; - - function cancel(bytes32 hash) external; - - function getPendingRequest(bytes32 hash) - external - view - returns (address, uint96); - - function getRegistrationConfig() - external - view - returns ( - bool enabled, - uint32 windowSizeInBlocks, - uint16 allowedPerWindow, - address keeperRegistry, - uint256 minLINKJuels, - uint64 windowStart, - uint16 approvedInCurrentWindow - ); - - function onTokenTransfer( - address, - uint256 amount, - bytes memory data - ) external; - - function owner() external view returns (address); - - function register( - string memory name, - bytes memory encryptedEmail, - address upkeepContract, - uint32 gasLimit, - address adminAddress, - bytes memory checkData, - uint96 amount, - uint8 source - ) external; - - function setRegistrationConfig( - bool enabled, - uint32 windowSizeInBlocks, - uint16 allowedPerWindow, - address keeperRegistry, - uint256 minLINKJuels - ) external; - - function transferOwnership(address _to) external; -} diff --git a/tools/python/brownie/interfaces/hiddenhand/IBribeMarket.sol b/tools/python/brownie/interfaces/hiddenhand/IBribeMarket.sol new file mode 100644 index 000000000..9c7dd0686 --- /dev/null +++ b/tools/python/brownie/interfaces/hiddenhand/IBribeMarket.sol @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: MIT +pragma solidity 0.8.12; + +interface IBribeMarket { + function depositBribe( + bytes32 _proposal, + address _token, + uint256 _amount, + uint256 _maxTokensPerVote, + uint256 _periods + ) external; +} \ No newline at end of file diff --git a/tools/python/brownie/interfaces/hiddenhand/IBribeVault.sol b/tools/python/brownie/interfaces/hiddenhand/IBribeVault.sol deleted file mode 100644 index ee7bbd376..000000000 --- a/tools/python/brownie/interfaces/hiddenhand/IBribeVault.sol +++ /dev/null @@ -1,135 +0,0 @@ -// SPDX-License-Identifier: MIT -// !! THIS FILE WAS AUTOGENERATED BY abi-to-sol v0.5.3. SEE SOURCE BELOW. !! -pragma solidity ^0.8.4; - -interface IBribeVault { - event DepositBribe( - bytes32 indexed bribeIdentifier, - bytes32 indexed rewardIdentifier, - address indexed token, - uint256 amount, - uint256 totalAmount, - address briber - ); - event EmergencyWithdrawal( - address indexed token, - uint256 amount, - address admin - ); - event GrantDepositorRole(address depositor); - event RevokeDepositorRole(address depositor); - event RoleAdminChanged( - bytes32 indexed role, - bytes32 indexed previousAdminRole, - bytes32 indexed newAdminRole - ); - event RoleGranted( - bytes32 indexed role, - address indexed account, - address indexed sender - ); - event RoleRevoked( - bytes32 indexed role, - address indexed account, - address indexed sender - ); - event SetDistributor(address _distributor); - event SetFee(uint256 _fee); - event SetFeeRecipient(address _feeRecipient); - event TransferBribe( - bytes32 indexed rewardIdentifier, - address indexed token, - uint256 feeAmount, - uint256 distributorAmount - ); - - function DEFAULT_ADMIN_ROLE() external view returns (bytes32); - - function DEPOSITOR_ROLE() external view returns (bytes32); - - function FEE_DIVISOR() external view returns (uint256); - - function FEE_MAX() external view returns (uint256); - - function bribes(bytes32) - external - view - returns (address token, uint256 amount); - - function depositBribe( - bytes32 bribeIdentifier, - bytes32 rewardIdentifier, - address briber - ) external payable; - - function depositBribeERC20( - bytes32 bribeIdentifier, - bytes32 rewardIdentifier, - address token, - uint256 amount, - address briber - ) external; - - function distributor() external view returns (address); - - function emergencyWithdraw(uint256 amount) external; - - function emergencyWithdrawERC20(address token, uint256 amount) external; - - function fee() external view returns (uint256); - - function feeRecipient() external view returns (address); - - function getBribe(bytes32 bribeIdentifier) - external - view - returns (address token, uint256 amount); - - function getBribeIdentifiersByRewardIdentifier(bytes32 rewardIdentifier) - external - view - returns (bytes32[] memory); - - function getRoleAdmin(bytes32 role) external view returns (bytes32); - - function grantDepositorRole(address depositor) external; - - function grantRole(bytes32 role, address account) external; - - function hasRole(bytes32 role, address account) - external - view - returns (bool); - - function renounceRole(bytes32 role, address account) external; - - function revokeDepositorRole(address depositor) external; - - function revokeRole(bytes32 role, address account) external; - - function rewardToBribes(bytes32, uint256) external view returns (bytes32); - - function rewardTransfers(bytes32) - external - view - returns ( - uint256 feeAmount, - uint256 distributorAmountTransferred, - uint256 distributorAmountReceived - ); - - function setDistributor(address _distributor) external; - - function setFee(uint256 _fee) external; - - function setFeeRecipient(address _feeRecipient) external; - - function supportsInterface(bytes4 interfaceId) external view returns (bool); - - function transferBribes(bytes32[] memory rewardIdentifiers) external; -} - -// THIS FILE WAS AUTOGENERATED FROM THE FOLLOWING ABI JSON: -/* -[{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"uint256","name":"_feeMax","type":"uint256"},{"internalType":"address","name":"_feeRecipient","type":"address"},{"internalType":"address","name":"_distributor","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"bribeIdentifier","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"rewardIdentifier","type":"bytes32"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"briber","type":"address"}],"name":"DepositBribe","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"EmergencyWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"depositor","type":"address"}],"name":"GrantDepositorRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"depositor","type":"address"}],"name":"RevokeDepositorRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_distributor","type":"address"}],"name":"SetDistributor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"SetFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_feeRecipient","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"rewardIdentifier","type":"bytes32"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"distributorAmount","type":"uint256"}],"name":"TransferBribe","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEPOSITOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"bribes","outputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"bribeIdentifier","type":"bytes32"},{"internalType":"bytes32","name":"rewardIdentifier","type":"bytes32"},{"internalType":"address","name":"briber","type":"address"}],"name":"depositBribe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"bribeIdentifier","type":"bytes32"},{"internalType":"bytes32","name":"rewardIdentifier","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"briber","type":"address"}],"name":"depositBribeERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyWithdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"bribeIdentifier","type":"bytes32"}],"name":"getBribe","outputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"rewardIdentifier","type":"bytes32"}],"name":"getBribeIdentifiersByRewardIdentifier","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"depositor","type":"address"}],"name":"grantDepositorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"depositor","type":"address"}],"name":"revokeDepositorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardToBribes","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"rewardTransfers","outputs":[{"internalType":"uint256","name":"feeAmount","type":"uint256"},{"internalType":"uint256","name":"distributorAmountTransferred","type":"uint256"},{"internalType":"uint256","name":"distributorAmountReceived","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_distributor","type":"address"}],"name":"setDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeRecipient","type":"address"}],"name":"setFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"rewardIdentifiers","type":"bytes32[]"}],"name":"transferBribes","outputs":[],"stateMutability":"nonpayable","type":"function"}] -*/ diff --git a/tools/python/brownie/pyproject.toml b/tools/python/brownie/pyproject.toml new file mode 100644 index 000000000..039c42ebf --- /dev/null +++ b/tools/python/brownie/pyproject.toml @@ -0,0 +1,27 @@ +[tool.poetry] +name = "maxis-msig-ops-tools-python-brownie" +version = "0.1.0" +description = "Badger DAO's EVM multisig operations." +authors = ["Gosuto Inzasheru "] +readme = "README.md" + +[tool.poetry.dependencies] +python = ">=3.9,<3.10" +ape-safe = "*" +dotmap = "*" +eth-brownie = "1.17.0" +pandas = "*" +pycoingecko = "^3.1.0" +rich = "*" +sympy = "*" +tabulate = "*" +tqdm = "*" +bal-addresses = {git = "https://github.com/BalancerMaxis/bal_addresses", rev = "925d0b9694dc0ebe9ad57ef6d49dcb652cb31046"} + +[tool.poetry.group.dev.dependencies] +black = "21.9b0" +brownie-token-tester = "*" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/tools/python/brownie/requirements-actions.txt b/tools/python/brownie/requirements-actions.txt new file mode 100644 index 000000000..86a6f328c --- /dev/null +++ b/tools/python/brownie/requirements-actions.txt @@ -0,0 +1,7 @@ +eth-brownie==1.19.3 +prettytable +pandas +dotmap +#regex==2021.09.30 ## Fixes some issue with mac M1 and brownie 1.17 + +# dev; testing, linting and committing diff --git a/tools/python/brownie/requirements.txt b/tools/python/brownie/requirements.txt index 2b3472448..3b63c0196 100644 --- a/tools/python/brownie/requirements.txt +++ b/tools/python/brownie/requirements.txt @@ -1,4 +1,5 @@ -ape-safe==0.5.0 +ape-safe==0.5.1 +libusb1==3.0.0 eth-brownie==1.17.0 pandas==1.4.3 pycoingecko==2.2.0 @@ -7,7 +8,6 @@ tqdm==4.62.3 dotmap==1.3.8 sympy==1.10.1 virtualenv==20.15.0 -libusb1==2.0.1 ecdsa==0.16.1 construct==2.10.67 trezor==0.13.0 @@ -15,6 +15,4 @@ pytz==2021.1 numpy==1.22.4 web3==5.24.0 click<8.1.0 -#regex==2021.09.30 ## Fixes some issue with mac M1 and brownie 1.17 - -# dev; testing, linting and committing +regex==2021.10.8 ## Fixes some issue with mac M1 and brownie 1.1 diff --git a/tools/python/brownie/scripts/BIPs/BIP-162/bridgeArbitrumCoins.py b/tools/python/brownie/scripts/BIPs/BIP-162/bridgeArbitrumCoins.py index 6128609f1..4d687733e 100644 --- a/tools/python/brownie/scripts/BIPs/BIP-162/bridgeArbitrumCoins.py +++ b/tools/python/brownie/scripts/BIPs/BIP-162/bridgeArbitrumCoins.py @@ -16,16 +16,17 @@ # Karpatkey Safe 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89, # BAL & WMATIC sent to the Treasury 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f tokens_dest_map = { - r.tokens.USDC: registry.eth.balancer.multisigs.karpatkey, + r.tokens.USDC: registry.eth.balancer.multisigs.karpatkey, # registry.poly.tokens.WMATIC, #TODO bridge manually, across has no WMATIC support -> DAO MULTISIG - r.tokens.WETH: registry.eth.balancer.multisigs.karpatkey, - r.tokens.WBTC: registry.eth.balancer.multisigs.karpatkey + r.tokens.WETH: registry.eth.balancer.multisigs.karpatkey, + r.tokens.WBTC: registry.eth.balancer.multisigs.karpatkey, } safe.take_snapshot(tokens_dest_map.keys()) destination_chain_id = 1 + def main(): safe.init_across() @@ -34,16 +35,21 @@ def main(): token = safe.contract(token_address) token_balance = token.balanceOf(safe.address) ##TODO remove test - amount = int(token_balance/1000) # TODO remove divisor for full amount + amount = int(token_balance / 1000) # TODO remove divisor for full amount if amount > 0: - deadline = safe.across.bridge_token(recipient_address=recipient, - origin_token=token, - amount=amount, - dest_chain_id=destination_chain_id - ) - print(f">>>>Bridging {amount / 10 ** token.decimals()} of {token.symbol()} to {recipient} on chain with id {destination_chain_id} over Across") - print(f">>>Execute by {datetime.datetime.fromtimestamp(deadline).strftime('%Y-%m-%d %H:%M:%S')} {LOCAL_TIMEZONE}\n\n") + deadline = safe.across.bridge_token( + recipient_address=recipient, + origin_token=token, + amount=amount, + dest_chain_id=destination_chain_id, + ) + print( + f">>>>Bridging {amount / 10 ** token.decimals()} of {token.symbol()} to {recipient} on chain with id {destination_chain_id} over Across" + ) + print( + f">>>Execute by {datetime.datetime.fromtimestamp(deadline).strftime('%Y-%m-%d %H:%M:%S')} {LOCAL_TIMEZONE}\n\n" + ) else: print(f" === Balance for {token.symbol()} is zero === \n") diff --git a/tools/python/brownie/scripts/BIPs/BIP-162/bridgePolygonCoins.py b/tools/python/brownie/scripts/BIPs/BIP-162/bridgePolygonCoins.py index 97f46e0af..b636cb76e 100644 --- a/tools/python/brownie/scripts/BIPs/BIP-162/bridgePolygonCoins.py +++ b/tools/python/brownie/scripts/BIPs/BIP-162/bridgePolygonCoins.py @@ -18,16 +18,17 @@ # Karpatkey Safe 0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89, # BAL & WMATIC sent to the Treasury 0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f tokens_dest_map = { - r.tokens.USDC: registry.eth.balancer.multisigs.karpatkey, + r.tokens.USDC: registry.eth.balancer.multisigs.karpatkey, # registry.poly.tokens.WMATIC, #TODO bridge manually, across has no WMATIC support -> DAO MULTISIG - r.tokens.WETH: registry.eth.balancer.multisigs.karpatkey, - r.tokens.BAL: registry.eth.balancer.multisigs.dao + r.tokens.WETH: registry.eth.balancer.multisigs.karpatkey, + r.tokens.BAL: registry.eth.balancer.multisigs.dao, } safe.take_snapshot(tokens_dest_map.keys()) destination_chain_id = 1 + def main(): safe.init_across() @@ -36,16 +37,21 @@ def main(): token = safe.contract(token_address) token_balance = token.balanceOf(safe.address) ##TODO remove test - amount = int(token_balance) # TODO remove divisor for full amount + amount = int(token_balance) # TODO remove divisor for full amount if amount > 0: - deadline = safe.across.bridge_token(recipient_address=recipient, - origin_token=token, - amount=amount, - dest_chain_id=destination_chain_id - ) - print(f">>>Bridging {amount/10**token.decimals()} of {token.symbol()} to {recipient} on chain with id {destination_chain_id} over Across.") - print(f">>>Execute by {datetime.datetime.fromtimestamp(deadline).strftime('%Y-%m-%d %H:%M:%S')} {LOCAL_TIMEZONE}\n\n") + deadline = safe.across.bridge_token( + recipient_address=recipient, + origin_token=token, + amount=amount, + dest_chain_id=destination_chain_id, + ) + print( + f">>>Bridging {amount/10**token.decimals()} of {token.symbol()} to {recipient} on chain with id {destination_chain_id} over Across." + ) + print( + f">>>Execute by {datetime.datetime.fromtimestamp(deadline).strftime('%Y-%m-%d %H:%M:%S')} {LOCAL_TIMEZONE}\n\n" + ) else: print(f" === Balance for {token.symbol()} is zero === \n") diff --git a/tools/python/brownie/scripts/balancer_reports/authorizier_roles.py b/tools/python/brownie/scripts/balancer_reports/authorizier_roles.py index 60ce4f3bb..19c1cc0e5 100644 --- a/tools/python/brownie/scripts/balancer_reports/authorizier_roles.py +++ b/tools/python/brownie/scripts/balancer_reports/authorizier_roles.py @@ -10,43 +10,63 @@ from dotenv import load_dotenv from helpers.addresses import registry from web3 import Web3 -#from great_ape_safe import GreatApeSafe + +# from great_ape_safe import GreatApeSafe load_dotenv() -INFURA_KEY = os.getenv('WEB3_INFURA_PROJECT_ID') +INFURA_KEY = os.getenv("WEB3_INFURA_PROJECT_ID") w3 = Web3(Web3.HTTPProvider(f"https://mainnet.infura.io/v3/{INFURA_KEY}")) -w3arbitrum = Web3(Web3.HTTPProvider(f"https://arbitrum-mainnet.infura.io/v3/{INFURA_KEY}")) -w3optimism = Web3(Web3.HTTPProvider(f"https://optimism-mainnet.infura.io/v3/{INFURA_KEY}")) -w3polygon = Web3(Web3.HTTPProvider(f"https://polygon-mainnet.infura.io/v3/{INFURA_KEY}")) +w3arbitrum = Web3( + Web3.HTTPProvider(f"https://arbitrum-mainnet.infura.io/v3/{INFURA_KEY}") +) +w3optimism = Web3( + Web3.HTTPProvider(f"https://optimism-mainnet.infura.io/v3/{INFURA_KEY}") +) +w3polygon = Web3( + Web3.HTTPProvider(f"https://polygon-mainnet.infura.io/v3/{INFURA_KEY}") +) + +authorizer = w3.eth.contract(address="0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6") -authorizer=w3.eth.contract(address="0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6") def getEvents(contract): i = 0 - events ={} + events = {} for event in contract.events: - print (i) + print(i) gauge = Contract(controller.gauges(i)) ## Handle Arbitrum - if (gauge._name =="ArbitrumRootGauge"): - crosschain_streamer = w3arbitrum.eth.contract(address=gauge.getRecipient(), - abi=json.load(open("../abi/IChildChainStreamer.json"))) + if gauge._name == "ArbitrumRootGauge": + crosschain_streamer = w3arbitrum.eth.contract( + address=gauge.getRecipient(), + abi=json.load(open("../abi/IChildChainStreamer.json")), + ) pool = crosschain_streamer.functions.reward_receiver().call() - pool = w3arbitrum.eth.contract(address=pool, abi=json.load(open("../abi/IRewardsOnlyGauge.json"))) + pool = w3arbitrum.eth.contract( + address=pool, abi=json.load(open("../abi/IRewardsOnlyGauge.json")) + ) gauge_name = f"ARBI: {pool.functions.name().call()}" - elif (gauge._name =="PolygonRootGauge"): - crosschain_streamer = w3polygon.eth.contract(address=gauge.getRecipient(), - abi=json.load(open("../abi/IChildChainStreamer.json"))) + elif gauge._name == "PolygonRootGauge": + crosschain_streamer = w3polygon.eth.contract( + address=gauge.getRecipient(), + abi=json.load(open("../abi/IChildChainStreamer.json")), + ) pool = crosschain_streamer.functions.reward_receiver().call() - pool = w3polygon.eth.contract(address=pool, abi=json.load(open("../abi/IRewardsOnlyGauge.json"))) + pool = w3polygon.eth.contract( + address=pool, abi=json.load(open("../abi/IRewardsOnlyGauge.json")) + ) gauge_name = f"POLY: {pool.functions.name().call()}" - elif (gauge._name =="OptimismRootGauge"): - crosschain_streamer = w3optimism.eth.contract(address=gauge.getRecipient(), - abi=json.load(open("../abi/IChildChainStreamer.json"))) + elif gauge._name == "OptimismRootGauge": + crosschain_streamer = w3optimism.eth.contract( + address=gauge.getRecipient(), + abi=json.load(open("../abi/IChildChainStreamer.json")), + ) pool = crosschain_streamer.functions.reward_receiver().call() - pool = w3optimism.eth.contract(address=pool, abi=json.load(open("../abi/IRewardsOnlyGauge.json"))) + pool = w3optimism.eth.contract( + address=pool, abi=json.load(open("../abi/IRewardsOnlyGauge.json")) + ) gauge_name = f"OPTI: {pool.functions.name().call()}" else: try: @@ -61,24 +81,22 @@ def getEvents(contract): except Exception: gauge_name = reward_recipient.getName() print(f"{gauge.address}:{gauge_name}") - if(gauge.is_killed()): - inactive_gauges[gauge.address]=gauge_name + if gauge.is_killed(): + inactive_gauges[gauge.address] = gauge_name else: - active_gauges[gauge.address]=gauge_name + active_gauges[gauge.address] = gauge_name i += 1 - gauges = { - "active_gauges": active_gauges, - "inactive_gauges": inactive_gauges - } + gauges = {"active_gauges": active_gauges, "inactive_gauges": inactive_gauges} return gauges def write_gauge_outputs(gauges_dict): - with open('output/gauges.json', 'w') as jsonfile: + with open("output/gauges.json", "w") as jsonfile: json.dump(gauges_dict, jsonfile) - with open('output/gauges.csv', 'w') as csvfile: + jsonfile.write("\n") + with open("output/gauges.csv", "w") as csvfile: csvfile.write("name, address, isActive\n") for key, value in gauges_dict["active_gauges"].items(): csvfile.write("%s, %s, True\n" % (value, key)) @@ -86,13 +104,12 @@ def write_gauge_outputs(gauges_dict): csvfile.write(f"%s, %s, False\n" % (value, key)) - def getGaugesByChain(chainId=1, printResults=False): ### Get chain name by ID for The Graph f = open("helpers/chainnames.json") chains_by_id = json.load(f) f.close() - chain_name = chains_by_id[str(chainId)]['name'] + chain_name = chains_by_id[str(chainId)]["name"] query = """query { liquidityGauges { @@ -104,22 +121,26 @@ def getGaugesByChain(chainId=1, printResults=False): } }""" ### Pull the subgraph data for the right chain - if(chain_name == "mainnet"): - url = f'https://api.thegraph.com/subgraphs/name/balancer-labs/balancer-gauges' + if chain_name == "mainnet": + url = f"https://api.thegraph.com/subgraphs/name/balancer-labs/balancer-gauges" else: - url = f'https://api.thegraph.com/subgraphs/name/balancer-labs/balancer-gauges-{chain_name}' - r = requests.post(url, json={'query': query}) - if (r.status_code != 200): - print(f"Error requesting gauge list from TheGraph. Status Code: {r.status_code}, result: {r.text}") + url = f"https://api.thegraph.com/subgraphs/name/balancer-labs/balancer-gauges-{chain_name}" + r = requests.post(url, json={"query": query}) + if r.status_code != 200: + print( + f"Error requesting gauge list from TheGraph. Status Code: {r.status_code}, result: {r.text}" + ) exit(r.status_code) json_data = json.loads(r.text) ### Print out a resulting table - gauge_list_json = json_data['data']['liquidityGauges'] + gauge_list_json = json_data["data"]["liquidityGauges"] df = pd.DataFrame(gauge_list_json) - df.insert(0, 'chainId', chainId) - if (printResults): - print(df.to_markdown(index=False)) # safe = GreatApeSafe(registry.eth.badger_wallets.techops_multisig) + df.insert(0, "chainId", chainId) + if printResults: + print( + df.to_markdown(index=False) + ) # safe = GreatApeSafe(registry.eth.badger_wallets.techops_multisig) return df @@ -129,14 +150,15 @@ def getGaugesAllChains(): f = open("helpers/chainnames.json") chains_by_id = json.load(f) f.close() - for (k, v) in chains_by_id.items(): + for k, v in chains_by_id.items(): result[k] = getGaugesByChain(k) - results = pd.concat(result, ignore_index=True) # safe = GreatApeSafe(registry.eth.badger_wallets.techops_multisig) - return results; - -if __name__ == '__main__': - all_gauges_list = (getGaugesAllChains()) - print(all_gauges_list.to_markdown(index=False)) - #mainnet = getGaugesByChan(printResults=True) + results = pd.concat( + result, ignore_index=True + ) # safe = GreatApeSafe(registry.eth.badger_wallets.techops_multisig) + return results +if __name__ == "__main__": + all_gauges_list = getGaugesAllChains() + print(all_gauges_list.to_markdown(index=False)) + # mainnet = getGaugesByChan(printResults=True) diff --git a/tools/python/brownie/scripts/csv_airdrop.py b/tools/python/brownie/scripts/csv_airdrop.py new file mode 100644 index 000000000..dcd74a441 --- /dev/null +++ b/tools/python/brownie/scripts/csv_airdrop.py @@ -0,0 +1,59 @@ +import csv +import json +from copy import deepcopy + +from web3 import Web3 + +CSV = "../../../BIPs/00batched/2023-w38/BIP-431-airdrop.csv" +JSON = "../../../BIPs/00batched/2023-w38/BIP-431-airdrop.json" +TX_TEMPLATE = "../tx_builder_templates/erc20_transfer.json" +BASE_TEMPLATE = "../tx_builder_templates/base.json" + +ERC20_ABI = [ + { + "constant": True, + "inputs": [], + "name": "decimals", + "outputs": [{"name": "", "type": "uint8"}], + "payable": False, + "stateMutability": "view", + "type": "function", + }, +] + + +def main(): + web3 = Web3(Web3.HTTPProvider("http://localhost:8545")) # TODO: change to arb node + + csvfile = open(CSV, "r") + txs = csv.reader(csvfile) + with open(TX_TEMPLATE, "r") as jsonfile: + tx_template = json.load(jsonfile) + with open(BASE_TEMPLATE, "r") as jsonfile: + payload = json.load(jsonfile) + txlist = [] + for row in txs: + token_address = row[1] + token_contract = web3.eth.contract( + address=Web3.toChecksumAddress(token_address), abi=ERC20_ABI + ) + receiver = row[2] + amount = float(row[3]) + print(token_address, amount) + # token = Contract(token_address) + raw_amount = int(amount * 10 ** token_contract.functions.decimals().call()) + tx_data = deepcopy(tx_template) + tx_data["contractInputsValues"]["to"] = receiver + tx_data["contractInputsValues"]["value"] = str(raw_amount) + tx_data["to"] = token_address + txlist.append(tx_data) + print(tx_data) + payload["transactions"] = txlist + print(txlist) + with open(JSON, "w") as output: + json.dump(payload, output, indent=2) + output.write("\n") + + +if __name__ == "__main__": + main() diff --git a/tools/python/brownie/scripts/gnosis/scrape_tokens.py b/tools/python/brownie/scripts/gnosis/scrape_tokens.py index 61b877c67..16f1f1b04 100644 --- a/tools/python/brownie/scripts/gnosis/scrape_tokens.py +++ b/tools/python/brownie/scripts/gnosis/scrape_tokens.py @@ -61,7 +61,7 @@ def scrape(address, receiver=""): decimals = token.decimals() except AttributeError: decimals = Contract.from_explorer(token_addr).decimals() - bal_formatted = f"{{:.{decimals}f}}".format(bal / Decimal(10 ** decimals)) + bal_formatted = f"{{:.{decimals}f}}".format(bal / Decimal(10**decimals)) if bal > 0: token_data["token_type"].append("erc20") diff --git a/tools/python/brownie/scripts/maxi_operations/EulerPartialInteralWd.py b/tools/python/brownie/scripts/maxi_operations/EulerPartialInteralWd.py new file mode 100644 index 000000000..0287e0a3e --- /dev/null +++ b/tools/python/brownie/scripts/maxi_operations/EulerPartialInteralWd.py @@ -0,0 +1,108 @@ +from brownie import Contract +from eth_abi import encode_abi +import json +from helpers.addresses import r + + +multisig = "0x7c68c42De679ffB0f16216154C996C354cF1161B" +print(multisig) +bbeusd = Contract("0x50Cf90B954958480b8DF7958A9E965752F627124") +vault = Contract("0xBA12222222228d8Ba445958a75a0704d566BF2C8") +bbeusdId = "0x50cf90b954958480b8df7958a9e965752f62712400000000000000000000046f" +exitKind = 255 # RecoveryMode Exit + +## What we want to get out +recoveryTokens = [ + "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "0x6B175474E89094C44Da98b954EedeAC495271d0F", +] + +## initial balances + +pool = bbeusd +poolId = bbeusdId +types = ["uint8", "uint256"] + +(pooltokens, amounts, whocares) = vault.getPoolTokens(poolId) +tokens = {} + +txs = [] + +## Sweep collector +print("Sweeping fees") +address_list = [bbeusd.address] +amounts_list = [bbeusd.balanceOf(r.balancer.ProtocolFeesCollector) - 1] +sweeper = Contract(r.balancer.ProtocolFeesWithdrawer) +print(address_list, amounts_list) +txs.append( + sweeper.withdrawCollectedFees( + address_list, amounts_list, multisig, {"from": multisig} + ) +) + + +## WD top level tokensswe +for token in pooltokens: + tokens[token] = Contract(token) + +encoded = encode_abi(types, [255, bbeusd.balanceOf(multisig)]) +txs.append( + vault.exitPool( + bbeusdId, + multisig, + multisig, + (pooltokens, [0, 0, 0, 0], encoded.hex(), False), + {"from": multisig}, + ) +) + +## wd from linear pool tokens +for token in tokens.values(): + if token.address == bbeusd.address: + poolId = bbeusdId + else: + poolId = token.getPoolId() + print(f"processing {token.name()} at {token.address}") + encoded = encode_abi(types, [255, token.balanceOf(multisig)]) + (lineartokens, yyy, zzz) = vault.getPoolTokens(poolId) + + if token != pool: + txs.append( + vault.exitPool( + poolId, + multisig, + multisig, + (lineartokens, [0, 0, 0], encoded.hex(), True), + {"from": multisig}, + ) + ) + +## wd from vault +oplist = [] +for token in recoveryTokens: + amount = vault.getInternalBalance(multisig, [token])[0] + oplist.append((1, token, amount, multisig, multisig)) + +txs.append(vault.manageUserBalance(oplist, {"from": multisig})) + +### Generate multisig payload +with open("txbuilder_calldata.json", "r") as f: + endjson = json.load(f) + +endjson["meta"]["createdFromSafeAddress"] = multisig +txtemplate = endjson["transactions"][0] +txlist = [] + +# Pack all the input data from our txs into txjson format +for tx in txs: + print(tx.input) + j = txtemplate + j["data"] = tx.input + txlist.append(j) + +endjson["transactions"] = txlist + +with open("eulerBreakoutOutput.json", "w") as f: + json.dump(endjson, f) + f.write("\n") diff --git a/tools/python/brownie/scripts/maxi_operations/bribe_ecosystems.py b/tools/python/brownie/scripts/maxi_operations/bribe_ecosystems.py index a125cf9b6..694660961 100644 --- a/tools/python/brownie/scripts/maxi_operations/bribe_ecosystems.py +++ b/tools/python/brownie/scripts/maxi_operations/bribe_ecosystems.py @@ -4,15 +4,23 @@ from brownie import web3, interface from web3 import Web3 from great_ape_safe import GreatApeSafe -from helpers.addresses import r +from bal_addresses import AddrBook import csv -import time +from datetime import date +address_book = AddrBook("mainnet") +addr_dotmap = address_book.dotmap -SNAPSHOT_URL = "https://hub.snapshot.org/graphql?" -HH_API_URL = "https://hhand.xyz/proposal" +today = str(date.today()) -GAUGE_MAPPING_URL = "https://raw.githubusercontent.com/aurafinance/aura-contracts/main/tasks/snapshot/labels.json" +## Hidden hands ve2 config +NO_MAX_TOKENS_PER_VOTE = 0 # No limit +PERIODS_PER_EPOCH = {"aura": 1, "balancer": 2} # 1x 2 week round # 2x 1 week rounds +SNAPSHOT_URL = "https://hub.snapshot.org/graphql?" +HH_API_URL = "https://api.hiddenhand.finance/proposal" +COWSWAP_DEADLINE = 24 * 60 * 60 # 24 hours +COWSWAP_SLIPPAGE = 0.005 # 0.05% +GAUGE_MAPPING_URL = "https://raw.githubusercontent.com/aurafinance/aura-contracts/main/tasks/snapshot/gauge_choices.json" # queries for choices and proposals info QUERY_PROPOSAL_INFO = """ @@ -32,14 +40,16 @@ } """ -def get_hh_aura_target(target_name): + +def get_hh_aura_target(target): response = requests.get(f"{HH_API_URL}/aura") options = response.json()["data"] for option in options: - if option["title"] == target_name: + if Web3.toChecksumAddress(option["proposal"]) == target: return option["proposalHash"] return False ## return false if no result + def get_gauge_name_map(map_url=GAUGE_MAPPING_URL): ## the url was not responding on IPv6 addresses requests.packages.urllib3.util.connection.HAS_IPV6 = False @@ -47,10 +57,11 @@ def get_gauge_name_map(map_url=GAUGE_MAPPING_URL): item_list = response.json() output = {} for mapping in item_list: - gauge_address = web3.toChecksumAddress(mapping["gauge"]) + gauge_address = web3.toChecksumAddress(mapping["address"]) output[gauge_address] = mapping["label"] return output + def get_index(proposal_id, target): # grab data from the snapshot endpoint re proposal choices response = requests.post( @@ -64,40 +75,44 @@ def get_index(proposal_id, target): choice = choices.index(target) return choice -def process_bribe_csv( - csv_file -): + +def process_bribe_csv(csv_file): # Process the CSV # csv_format: target, platform, amount - bribe_csv = csv.DictReader(open(csv_file)) + bribe_csv = list(csv.DictReader(open(csv_file))) aura_bribes = [] balancer_bribes = [] - bribes = { - "aura": {}, - "balancer": {} - } + bribes = {"aura": {}, "balancer": {}, "payment": {}} ## Parse briibes per platform for bribe in bribe_csv: - bribes[bribe["platform"]][bribe["target"]] = float(bribe["amount"]) + try: + bribes[bribe["platform"]][bribe["target"]] = float(bribe["amount"]) + except: + assert ( + False + ), f"Error: The following brib didn't work, somethings probs wrong: \b{bribe}" return bribes + def main( - csv_file="bribes/csv/current.csv", + csv_file=f"../../../Bribs/{today}.csv", + usd_fee_token_address="0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", ## bb-a-usd v3 ): - safe = GreatApeSafe(r.balancer.multisigs.fees) - #safe = GreatApeSafe("0xdc9e3Ab081B71B1a94b79c0b0ff2271135f1c12b") # maxi playground safe + safe = GreatApeSafe(addr_dotmap.multisigs.fees) + safe.init_cow(prod=True) - usdc = safe.contract(r.tokens.USDC) + usdc = safe.contract(addr_dotmap.tokens.USDC) usdc_mantissa_multilpier = 10 ** int(usdc.decimals()) - safe.take_snapshot([usdc]) + usdc_starting = usdc.balanceOf(safe.address) - bribe_vault = safe.contract(r.hidden_hand.bribe_vault, interface.IBribeVault) - aura_briber = safe.contract(r.hidden_hand.aura_briber, interface.IAuraBribe) - balancer_briber = safe.contract( - r.hidden_hand.balancer_briber, interface.IBalancerBribe + safe.take_snapshot([usdc]) + bribe_vault = safe.contract( + addr_dotmap.hidden_hand2.bribe_vault, interface.IBribeMarket ) + aura_briber = safe.contract(addr_dotmap.hidden_hand2.aura_briber) + balancer_briber = safe.contract(addr_dotmap.hidden_hand2.balancer_briber) bribes = process_bribe_csv(csv_file) ### Calcualte total bribe @@ -110,70 +125,118 @@ def main( total_usdc = total_balancer_usdc + total_aura_usdc total_mantissa = int(total_usdc * usdc_mantissa_multilpier) + usdc.approve(bribe_vault, total_mantissa + 1) # see if this fixes balance problems + + ### Do Payments + payments_usd = 0 + payments = 0 + for target, amount in bribes["payment"].items(): + print(f"Paying out {amount} via direct transfer to {target}") + usdc_amount = amount * 10 ** usdc.decimals() + payments_usd += amount + usdc.transfer(target, usdc_amount) + payments += payments_usd * 10 ** usdc.decimals() + + ### Print report + print(f"******** Summary Report") print(f"*** Aura USDC: {total_aura_usdc}") print(f"*** Balancer USDC: {total_balancer_usdc}") - print(f"*** Total USDC: {total_usdc}") - print(f"*** Total mantissa: {total_mantissa}") - - usdc.approve(bribe_vault, total_mantissa) + print(f"*** Payment USDC: {payments_usd}") + print(f"*** Total USDC: {total_usdc + payments_usd}") + print(f"*** Total mantissa: {int(total_mantissa + payments)}") + print(f"*** Curent USDC mantissa: {usdc_starting}\n\n") + print( + f"Current USDC:", + usdc.allowance(safe.address, bribe_vault) / usdc_mantissa_multilpier, + ) ### BALANCER def bribe_balancer(gauge, mantissa): prop = web3.solidityKeccak(["address"], [Web3.toChecksumAddress(gauge)]) mantissa = int(mantissa) - print("*** Posting Balancer Bribe:") + print("******* Posting Balancer Bribe:") print("*** Gauge Address:", gauge) print("*** Proposal hash:", prop.hex()) print("*** Amount:", amount) print("*** Mantissa Amount:", mantissa) - print("\n") + print( + f"Current USDC: {usdc.balanceOf(safe.address) / usdc_mantissa_multilpier}" + ) if amount == 0: return - balancer_briber.depositBribeERC20( + b4brib = usdc.balanceOf(safe.address) + balancer_briber.depositBribe( prop, # bytes32 proposal usdc, # address token mantissa, # uint256 amount + NO_MAX_TOKENS_PER_VOTE, # uint256 maxTokensPerVote + PERIODS_PER_EPOCH["balancer"], # uint246 periods ) + assert ( + b4brib - usdc.balanceOf(safe.address) == mantissa + ), "Unexpected tokens spent." for target, amount in bribes["balancer"].items(): + if amount == 0: + continue mantissa = int(amount * usdc_mantissa_multilpier) bribe_balancer(target, mantissa) ### AURA - gauge_address_to_snapshot_name = get_gauge_name_map() for target, amount in bribes["aura"].items(): - target_name = gauge_address_to_snapshot_name[web3.toChecksumAddress(target)] + if amount == 0: + continue + target = web3.toChecksumAddress(target) # grab data from proposals to find out the proposal index - prop = get_hh_aura_target(target_name) + prop = get_hh_aura_target(target) mantissa = int(amount * usdc_mantissa_multilpier) # NOTE: debugging prints to verify - print("*** Posting AURA Bribe:") + print("******* Posting AURA Bribe:") print("*** Target Gauge Address:", target) - print("*** Target Gauge Address:", target_name) print("*** Proposal hash:", prop) print("*** Amount:", amount) print("*** Mantissa Amount:", mantissa) - print("\n") + print( + f"Current USDC:", + usdc.allowance(safe.address, bribe_vault) / usdc_mantissa_multilpier, + ) if amount == 0: continue - aura_briber.depositBribeERC20( + b4brib = usdc.balanceOf(safe.address) + aura_briber.depositBribe( prop, # bytes32 proposal usdc, # address token mantissa, # uint256 amount + NO_MAX_TOKENS_PER_VOTE, # uint256 maxTokensPerVote + PERIODS_PER_EPOCH["aura"], # uint246 periods ) + assert ( + b4brib - usdc.balanceOf(safe.address) == mantissa + ), "Unexpected tokens spent," + + usd = safe.contract(addr_dotmap.tokens.USDC) + bal = safe.contract(addr_dotmap.tokens.BAL) + print( + f"Current USDC: {usd.balanceOf(safe.address)/ 10** usd.decimals()} is being sent to veBalFeeInjectooooooor" + ) + print( + f"Current BAL: {bal.balanceOf(safe.address)/ 10** usdc.decimals()} is being sent to veBalFeeInjectooooooor" + ) + usdc.transfer( + addr_dotmap.maxiKeepers.veBalFeeInjector, usdc.balanceOf(safe.address) + ) + bal.transfer(addr_dotmap.maxiKeepers.veBalFeeInjector, bal.balanceOf(safe.address)) print("\n\nBuilding and pushing multisig payload") - if usdc.balanceOf(safe) != 0: - print ("\n\n\nWARNING: There is still dollars in the safe, in general all funds should be spent. Check the numbers.\n SLEEP 15 \n\n\n ") - time.sleep(15) - print ("Preparing to post transaction") + print("Preparing to post transaction") + ### DO IT safe.post_safe_tx(gen_tenderly=False) ## The line below can be used to replace a nounce of an already loaded transaction in order to avoid having to revoke ## Once any tx is executed on a given nounce, all others will be canceled/impossible. - #safe.post_safe_tx(gen_tenderly=False, replace_nonce=0) + # safe.post_safe_tx(gen_tenderly=False, replace_nonce=0) diff --git a/tools/python/brownie/scripts/maxi_operations/bribe_txbuilder_with_rounds.py b/tools/python/brownie/scripts/maxi_operations/bribe_txbuilder_with_rounds.py new file mode 100644 index 000000000..08d5b88cf --- /dev/null +++ b/tools/python/brownie/scripts/maxi_operations/bribe_txbuilder_with_rounds.py @@ -0,0 +1,237 @@ +import requests +from decimal import Decimal, InvalidOperation + +from brownie import web3, interface, Contract +from web3 import Web3 +from bal_addresses import AddrBook +import csv +from datetime import date +import json +import copy + +address_book = AddrBook("mainnet") +safe = address_book.multisigs.fees +today = str(date.today()) + +## Hidden hands ve2 config +NO_MAX_TOKENS_PER_VOTE = 0 # No limit +PERIODS_PER_EPOCH = {"aura": 1, "balancer": 2} # 1x 2 week round # 2x 1 week rounds +SNAPSHOT_URL = "https://hub.snapshot.org/graphql?" +HH_API_URL = "https://api.hiddenhand.finance/proposal" +COWSWAP_DEADLINE = 24 * 60 * 60 # 24 hours +COWSWAP_SLIPPAGE = 0.005 # 0.05% +GAUGE_MAPPING_URL = "https://raw.githubusercontent.com/aurafinance/aura-contracts/main/tasks/snapshot/gauge_choices.json" + +# queries for choices and proposals info +QUERY_PROPOSAL_INFO = """ +query ($proposal_id: String) { + proposal(id: $proposal_id) { + choices + } +} +""" + +# `state: "all"` ensures all proposals are included +QUERY_PROPOSALS = """ +query { + proposals(first: 100, where: { space: "gauges.aurafinance.eth" , state: "all"}) { + id + } +} +""" +with open("../tx_builder_templates/bribe_balancer.json", "r") as f: + PAYLOAD = json.load(f) +with open("../tx_builder_templates/bribe_balancer.json", "r") as f: + BALANCER_BRIB = json.load(f)["transactions"][0] +with open("../tx_builder_templates/bribe_aura.json", "r") as f: + AURA_BRIB = json.load(f)["transactions"][0] +with open("../tx_builder_templates/approve.json", "r") as f: + APPROVE = json.load(f) +with open("../tx_builder_templates/erc20_transfer.json", "r") as f: + TRANSFER = json.load(f) + + +def get_hh_aura_target(target): + response = requests.get(f"{HH_API_URL}/aura") + options = response.json()["data"] + for option in options: + if Web3.toChecksumAddress(option["proposal"]) == target: + return option["proposalHash"] + return False ## return false if no result + + +def get_gauge_name_map(map_url=GAUGE_MAPPING_URL): + ## the url was not responding on IPv6 addresses + requests.packages.urllib3.util.connection.HAS_IPV6 = False + response = requests.get(map_url) + item_list = response.json() + output = {} + for mapping in item_list: + gauge_address = web3.toChecksumAddress(mapping["address"]) + output[gauge_address] = mapping["label"] + return output + + +def get_index(proposal_id, target): + # grab data from the snapshot endpoint re proposal choices + response = requests.post( + SNAPSHOT_URL, + json={ + "query": QUERY_PROPOSAL_INFO, + "variables": {"proposal_id": proposal_id}, + }, + ) + choices = response.json()["data"]["proposal"]["choices"] + choice = choices.index(target) + return choice + + +def process_bribe_csv(csv_file): + # Process the CSV + # csv_format: target, platform, amount, rounds + bribe_csv = list(csv.DictReader(open(csv_file))) + aura_bribes = [] + balancer_bribes = [] + bribes = { + "aura": {}, + "balancer": {}, + "payment": {}, + } + ## Parse briibes per platform + for bribe in bribe_csv: + try: + bribes[bribe["platform"]][bribe["target"]] = [ + float(bribe["amount"]), + int(bribe["rounds"]), + ] + except: + assert ( + False + ), f"Error: The following brib didn't work, somethings probs wrong: \b{bribe}" + return bribes + + +def main( + csv_file=f"../../../Bribs/2023-12-22.csv", + usd_fee_token_address="0xfebb0bbf162e64fb9d0dfe186e517d84c395f016", ## bb-a-usd v3 +): + tx_list = [] + usdc = Contract(address_book.extras.tokens.USDC) + usdc_mantissa_multilpier = 10 ** int(usdc.decimals()) + + usdc_starting = usdc.balanceOf(safe) + + bribe_vault = address_book.extras.hidden_hand2.bribe_vault + bribes = process_bribe_csv(csv_file) + + ### Calcualte total bribe + total_balancer_usdc = 0 + total_aura_usdc = 0 + for target, amounts in bribes["balancer"].items(): + total_balancer_usdc += amounts[0] + for target, amounts in bribes["aura"].items(): + total_aura_usdc += amounts[0] + total_usdc = total_balancer_usdc + total_aura_usdc + total_mantissa = int(total_usdc * usdc_mantissa_multilpier) + + usdc_approve = copy.deepcopy(APPROVE) + usdc_approve["to"] = usdc.address + usdc_approve["contractInputsValues"]["spender"] = bribe_vault + usdc_approve["contractInputsValues"]["rawAmount"] = str(total_mantissa + 1) + tx_list.append(usdc_approve) + ### Do Payments + payments_usd = 0 + payments = 0 + for target, amounts in bribes["payment"].items(): + (amount, rounds) = amounts + print(f"Paying out {amount} via direct transfer to {target}") + print(amount) + usdc_amount = amount * 10 ** usdc.decimals() + print(usdc_amount) + payments_usd += amount + transfer = copy.deepcopy(TRANSFER) + transfer["to"] = usdc.address + transfer["contractInputsValues"]["value"] = str(int(usdc_amount)) + transfer["contractInputsValues"]["to"] = target + tx_list.append(transfer) + payments += usdc_amount + + ### Print report + print(f"******** Summary Report") + print(f"*** Aura USDC: {total_aura_usdc}") + print(f"*** Balancer USDC: {total_balancer_usdc}") + print(f"*** Payment USDC: {payments_usd}") + print(f"*** Total USDC: {total_usdc + payments_usd}") + print(f"*** Total mantissa: {int(total_mantissa + payments)}") + + ### BALANCER + def bribe_balancer(gauge, mantissa, amount, rounds): + prop = web3.solidityKeccak(["address"], [Web3.toChecksumAddress(gauge)]) + mantissa = int(mantissa) + + print("******* Posting Balancer Bribe:") + print("*** Gauge Address:", gauge) + print("*** Proposal hash:", prop.hex()) + print("*** Amount:", amount) + print("*** Mantissa Amount:", mantissa) + + if amount == 0: + return + bal_tx = copy.deepcopy(BALANCER_BRIB) + bal_tx["contractInputsValues"]["_proposal"] = prop.hex() + bal_tx["contractInputsValues"]["_token"] = usdc.address + bal_tx["contractInputsValues"]["_amount"] = str(mantissa) + bal_tx["contractInputsValues"]["_periods"] = str(rounds) + + tx_list.append(bal_tx) + + for target, amount in bribes["balancer"].items(): + if amount == 0: + continue + mantissa = int(amount * usdc_mantissa_multilpier) + bribe_balancer(target, mantissa) + + ### AURA + for target, amounts in bribes["aura"].items(): + (amount, rounds) = amounts + if amount == 0: + continue + target = web3.toChecksumAddress(target) + # grab data from proposals to find out the proposal index + prop = get_hh_aura_target(target) + mantissa = int(amount * usdc_mantissa_multilpier) + # NOTE: debugging prints to verify + print("******* Posting AURA Bribe:") + print("*** Target Gauge Address:", target) + print("*** Proposal hash:", prop) + print("*** Amount:", amount) + print("*** Mantissa Amount:", mantissa) + + if amount == 0: + return + tx = copy.deepcopy(AURA_BRIB) + tx["contractInputsValues"]["_proposal"] = prop + tx["contractInputsValues"]["_token"] = usdc.address + tx["contractInputsValues"]["_amount"] = str(mantissa) + tx["contractInputsValues"]["_periods"] = str(rounds) + tx_list.append(tx) + + usd = Contract(address_book.extras.tokens.USDC) + bal = Contract(address_book.extras.tokens.BAL) + print( + f"Current USDC: {usd.balanceOf(safe)/ 10** usd.decimals()} is being sent to veBalFeeInjectooooooor" + ) + print( + f"Current BAL: {bal.balanceOf(safe)/ 10** usdc.decimals()} is being sent to veBalFeeInjectooooooor" + ) + + print("\n\nBuilding and pushing multisig payload") + print("saving payload") + payload = PAYLOAD + payload["meta"]["createdFromSafeAddress"] = safe + payload["transactions"] = tx_list + with open(f"../../../BIPs/00rebateRecycling/{today}.json", "w") as f: + json.dump(payload, f) + f.write("\n") + print(f"USDC to Bribs: {total_mantissa}") + print(f"USDC payments: {payments}") diff --git a/tools/python/brownie/scripts/maxi_operations/configure_injector.py b/tools/python/brownie/scripts/maxi_operations/configure_injector.py new file mode 100644 index 000000000..b1e238bc4 --- /dev/null +++ b/tools/python/brownie/scripts/maxi_operations/configure_injector.py @@ -0,0 +1,243 @@ +from brownie import interface, chain +import json +from helpers.addresses import r + +## https://docs.chain.link/chainlink-automation/supported-networks/#configurations +REGISTRY_BY_CHAIN = { + 42161: "0x75c0530885F385721fddA23C539AF3701d6183D4", + 137: "0x02777053d6764996e594c3E88AF1D58D5363a2e6", +} + +REGISTRAR_BY_CHAIN = { + 42161: "0x4F3AF332A30973106Fe146Af0B4220bBBeA748eC", + 137: "0xDb8e8e2ccb5C033938736aa89Fe4fa1eDfD15a1d", +} + +LINK_BY_CHAIN = { + 42161: "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + 137: "0xb0897686c545045aFc77CF20eC7A532E3120E0F1", +} + +REGISTER_CHAINLINK_TEMPLATE = """ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1680004312316, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "0x0000000000000000000000000000000000000000", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "_to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "name": "transferAndCall", + "payable": false + }, + "contractInputsValues": { + "_to": "0x0000000000000000000000000000000000000000", + "_value": "0", + "_data": "0x" + } + } + ] +} +""" + +CONF_WATCHLIST_TEMPLATE = """ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1680004312316, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xc9ee3323e8dd9c717480579e569a38c8396a5b86b21b97a044912b993636afb1" + }, + "transactions": [ + { + "to": "0x0000000000000000000000000000000000000000", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "streamerAddresses", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amountsPerPeriod", + "type": "uint256[]" + }, + { + "internalType": "uint8[]", + "name": "maxPeriods", + "type": "uint8[]" + } + ], + "name": "setRecipientList", + "payable": false + }, + "contractInputsValues": { + "streamerAddresses": "[0x0000000000000000000000000000000000000000]", + "amountsPerPeriod": "[1]", + "maxPeriods": "[1]" + } + }, + { + "to": "0x0000000000000000000000000000000000000000", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "recipient": "0x0000000000000000000000000000000000000000", + "amount": "1" + } + } + ] +} +""" + +ACCEPT_OWNERSHIP_TEMPLATE = """ +{ + "version": "1.0", + "chainId": "42161", + "createdAt": 1680004312316, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0xc38c5f97B34E175FFd35407fc91a937300E33860", + "createdFromOwnerAddress": "", + "checksum": "0xc9ee3323e8dd9c717480579e569a38c8396a5b86b21b97a044912b993636afb1" + }, + "transactions": [ + { + "to": "0x2F1901f2A82fcC3Ee9010b809938816B3b06FA6A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "acceptOwnership", + "payable": false + }, + "contractInputsValues": null + } + ] +} +""" + + +def register_upkeep( + upkeep_contract, + name, + gas_limit, + link_deposit_gwei, + sender, + chain_id=chain.id, + calldata=b"", + source=69, +): + + registrar = interface.IKeeperRegistrar(REGISTRAR_BY_CHAIN[chain_id]) + link_address = LINK_BY_CHAIN[chain_id] + calldata = registrar.register.encode_input( + name, # string memory name, + b"", # bytes calldata encryptedEmail, + upkeep_contract, # address upkeepContract, + gas_limit, # uint32 gasLimit, + sender, # address adminAddress, + calldata, # bytes calldata checkData, + link_deposit_gwei, # uint96 amount, + source, # source (uint8) + sender, # address sender + ) + payload = json.loads(REGISTER_CHAINLINK_TEMPLATE) + payload["chainId"] = chain_id + payload["meta"]["createdFromSafeAddress"] = sender + payload["transactions"][0]["to"] = link_address + payload["transactions"][0]["contractInputsValues"]["_to"] = registrar.address + payload["transactions"][0]["contractInputsValues"]["_value"] = link_deposit_gwei + payload["transactions"][0]["contractInputsValues"]["_data"] = calldata + return json.dumps(payload) + + +def set_recipient_list( + streamer_addresses, + amounts_per_period, + max_periods, + injector_address, + safe_address, + token_address, + chain_id=chain.id, +): + payload = json.loads(CONF_WATCHLIST_TEMPLATE) + payload["chainId"] = chain_id + payload["meta"]["createdFromSafeAddress"] = safe_address + payload["transactions"][0]["to"] = injector_address + payload["transactions"][0]["contractInputsValues"][ + "streamerAddresses" + ] = streamer_addresses + payload["transactions"][0]["contractInputsValues"][ + "amountsPerPeriod" + ] = amounts_per_period + payload["transactions"][0]["contractInputsValues"]["maxPeriods"] = max_periods + ### Send coins + total = 0 + for i in range(0, len(amounts_per_period), 1): + total += amounts_per_period[i] * max_periods[i] + payload["transactions"][1]["to"] = token_address + payload["transactions"][1]["contractInputsValues"]["recipient"] = injector_address + payload["transactions"][1]["contractInputsValues"]["amount"] = total + return json.dumps(payload) + + +def accept_ownership(injector_address, safe_address, chain_id=chain.id): + payload = json.loads(CONF_WATCHLIST_TEMPLATE) + payload["chainId"] = chain_id + payload["meta"]["createdFromSafeAddress"] = safe_address + payload["transactions"][0]["to"] = injector_address + return json.dumps(payload) diff --git a/tools/python/brownie/scripts/maxi_operations/disable_gauges.py b/tools/python/brownie/scripts/maxi_operations/disable_gauges.py index f9fd4ce12..c09d7f7f2 100644 --- a/tools/python/brownie/scripts/maxi_operations/disable_gauges.py +++ b/tools/python/brownie/scripts/maxi_operations/disable_gauges.py @@ -3,19 +3,20 @@ from web3 import Web3 gauges_to_remove = { - "POLY: Balancer 20USDC-40TEL-40DFX RewardGauge Deposit": "0xb61014De55A7AB12e53C285d88706dca2A1B7625", - "Balancer NWWP Gauge Deposit (NOTE/WETH 50/50)": "0x96d7e549eA1d810725e4Cd1f51ed6b4AE8496338", - "Balancer 50N/A-50N/A Gauge Deposit (D2D/BAL 50/50)": "0xf46FD013Acc2c6988BB2f773bd879101eB5d4573", - "Balancer 20DAI-80TCR Gauge Deposit": "0xAde9C0054f051f5051c4751563C7364765Bf52f5", - "Balancer 20WETH-80HAUS Gauge Deposit": "0x00Ab79a3bE3AacDD6f85C623f63222A07d3463DB", - "ARBI: Balancer B-80PICKLE-20WETH RewardGauge Deposit": "0x231B05F3a92d578EFf772f2Ddf6DacFFB3609749", - "ARBI: Balancer 20WETH-80CRE8R RewardGauge Deposit": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", - "POLY: Balancer TELX-60TEL-20BAL-20USDC RewardGauge Deposit": "0x7C56371077fa0dD8327E5C53Ee26a37D14b671ad", - "POLY: Balancer TELX-50TEL-50BAL RewardGauge Deposit": "0xe0779Dc81B5DF4D421044f7f7227f7e2F5b0F0cC", + "POLY: Balancer 20USDC-40TEL-40DFX RewardGauge Deposit": "0xb61014De55A7AB12e53C285d88706dca2A1B7625", + "Balancer NWWP Gauge Deposit (NOTE/WETH 50/50)": "0x96d7e549eA1d810725e4Cd1f51ed6b4AE8496338", + "Balancer 50N/A-50N/A Gauge Deposit (D2D/BAL 50/50)": "0xf46FD013Acc2c6988BB2f773bd879101eB5d4573", + "Balancer 20DAI-80TCR Gauge Deposit": "0xAde9C0054f051f5051c4751563C7364765Bf52f5", + "Balancer 20WETH-80HAUS Gauge Deposit": "0x00Ab79a3bE3AacDD6f85C623f63222A07d3463DB", + "ARBI: Balancer B-80PICKLE-20WETH RewardGauge Deposit": "0x231B05F3a92d578EFf772f2Ddf6DacFFB3609749", + "ARBI: Balancer 20WETH-80CRE8R RewardGauge Deposit": "0x077794c30AFECcdF5ad2Abc0588E8CEE7197b71a", + "POLY: Balancer TELX-60TEL-20BAL-20USDC RewardGauge Deposit": "0x7C56371077fa0dD8327E5C53Ee26a37D14b671ad", + "POLY: Balancer TELX-50TEL-50BAL RewardGauge Deposit": "0xe0779Dc81B5DF4D421044f7f7227f7e2F5b0F0cC", ## The one below is already disabled and is a test "ARBI: Balancer 80MAGIC-20WETH RewardGauge Deposit": "0x785F08fB77ec934c01736E30546f87B4daccBe50", } + def main(): safe = GreatApeSafe(registry.eth.balancer.multisigs.dao) authorizer = safe.contract(registry.eth.balancer.authorizer_adapter) @@ -23,12 +24,15 @@ def main(): for name, address in gauges_to_remove.items(): gauge = safe.contract(address) - print(f"isKilled on gauge {name} at {gauge.address} = {bool(gauge.is_killed())}") - if(gauge.is_killed): + print( + f"isKilled on gauge {name} at {gauge.address} = {bool(gauge.is_killed())}" + ) + if gauge.is_killed: continue - print (f"Killing {address} with name ${name}") + print(f"Killing {address} with name ${name}") authorizer.performAction(address, killGauge) - print(f"isKilled on gauge {name} at {gauge.address} is now {gauge.is_killed()}") + print( + f"isKilled on gauge {name} at {gauge.address} is now {gauge.is_killed()}" + ) safe.post_safe_tx(call_trace=True, gen_tenderly=False) - diff --git a/tools/python/brownie/scripts/maxi_operations/flogFees.py b/tools/python/brownie/scripts/maxi_operations/flogFees.py new file mode 100644 index 000000000..1ba1d26fc --- /dev/null +++ b/tools/python/brownie/scripts/maxi_operations/flogFees.py @@ -0,0 +1,186 @@ +import json +from dotmap import DotMap +from datetime import date +from os import listdir +from os.path import isfile, join +from great_ape_safe import GreatApeSafe +from web3 import Web3 +from bal_addresses import AddrBook +from pandas import pandas as pd +from brownie import interface, Contract + +a = AddrBook("mainnet") +r = a.dotmap +monorepo_addys_by_chain = a.reversebook +sweep_limit = 1000 +today = str(date.today()) + +dont_sweep_tokens = [] + +swap_to_bal_tokens = [r.tokens.AURABAL.lower(), r.tokens.BalWeth8020.lower()] +force_sweep_tokens = [] +target_file = f"../../../FeeSweep/{today}-eth.json" ## Mainnet only +target_dir = "../../../FeeSweep" ## For reports + + +# The input data is sometimes rounded. amount - dust_factor/amount is swept. Larger dust factor = less dust +dust_factor = 1000000 + + +def setupSafe(address=r.multisigs.fees): + safe = GreatApeSafe(address) + safe.init_cow( + prod=True + ) ## Set prod=true to not load swaps up on the staging cowswap interface (barn.cowswap.fi) + return safe + + +def generateSweepFile(sourcefile): + # sweeps is a map with addresses as keys and sweep amounts as values + sweeps = {} + report = "" + total = 0 + with open(sourcefile, "r") as f: + data = json.load(f) + chain = data[0]["chain"] + for feeData in data: + symbol = feeData["symbol"] + address = feeData["id"] + rounded_raw_amount = int(feeData["raw_amount"]) + raw_amount = int(rounded_raw_amount - rounded_raw_amount / dust_factor) + amount = feeData["amount"] + rounded_amount = "{:.4f}".format(amount) + price = feeData["price"] + usd_value = int(amount) * price + if address in dont_sweep_tokens: + continue + if usd_value > sweep_limit or address in force_sweep_tokens: + sweeps[address] = raw_amount + report += ( + f"Sweep {rounded_amount} of {symbol}({address}) worth ${usd_value}\n" + ) + total += usd_value + report += f"\n>>>Total USD Value of sweeps at time of input json: ${total}" + print(report) + + with open(f"{target_dir}/out/{today}-{chain}.report.txt", "w") as f: + f.write(report) + return sweeps + + +def claimFees(safe, sweeps): + print("Sweeping fees") + address_list = list(sweeps.keys()) + amounts_list = list(sweeps.values()) + sweeper = safe.contract( + a.flatbook["20220517-protocol-fee-withdrawer/ProtocolFeesWithdrawer"] + ) + sweeper.withdrawCollectedFees(address_list, amounts_list, safe.address) + + +def genSweepsFromTokenList(tokenlist, collector): + sweeps = {} + for address in tokenlist: + address = Web3.toChecksumAddress(address) + token = Contract(address) + sweeps[address] = token.balanceOf(collector) + return sweeps + + +def cowswapFees(safe, sweeps): + print("Setting up cowswap orders") + error_tokens = [] + results = [] + usd = safe.contract(r.tokens.USDC) + bal = safe.contract(r.tokens.BAL) + for address, amount in sweeps.items(): + if ( + Web3.toChecksumAddress(address) == r.tokens.BAL + or Web3.toChecksumAddress(address) == r.tokens.USDC + ): + ## Don't sell BAL or USDC + continue + asset = safe.contract(address, Interface=interface.ERC20) + if address in swap_to_bal_tokens: + to_token = bal + else: + to_token = usd + try: + result = safe.cow.market_sell( + asset_sell=asset, + asset_buy=to_token, + mantissa_sell=amount, + deadline=60 * 60 * 8, ## 4 hours + chunks=1, # Use to break up large trades, if used more tha one resulting trade uid is returned. + coef=0.96, # Use to define slippage, this is multipled by the quoted market price to define min price. + ) + results.append( + [ + str(asset.symbol()), + str(asset.address), + float(amount / 10 ** asset.decimals()), + str(result), + ] + ) + except: + if asset.address not in dont_sweep_tokens: + print(f"Problems processing: {asset.address}") + error_tokens.append(asset.address) + + ## Generate Report + try: + print(results) + df = pd.DataFrame( + results, columns=["Symbol", "Address", "Amount", "Cowswap ID"] + ) + print(df.to_markdown()) + with open(f"{target_dir}/out/{today}-cowswap.md", "w") as f: + df.to_markdown(buf=f) + except: + print("Error generating report, skipping") + if len(error_tokens) > 0: + print( + f"The following tokens had problems and may not show up to be traded: {error_tokens}" + ) + + +def payFees(safe, half=True): + distrbutor = safe.contract(a.flatbook["20220714-fee-distributor-v2/FeeDistributor"]) + usd = safe.contract("0xfebb0bbf162e64fb9d0dfe186e517d84c395f016") ## bb-a-usd v3 + bal = safe.contract(r.tokens.BAL) + safe.take_snapshot([bal, usd]) + if half: + print( + "Paying half the remaining USDC and BAL balances as fees to veBAL. This should be a fee sweep week." + ) + bal_amount = bal.balanceOf(safe.address) / 2 + usd_amount = usd.balanceOf(safe.address) / 2 + else: + print( + "Paying ALL of the remaining USDC and BAL balances as fees to veBAL. This should be NO fee-sweep week." + ) + bal_amount = bal.balanceOf(safe.address) + usd_amount = usd.balanceOf(safe.address) + assert ( + bal_amount > 0 + ), " BAL has a balance of 0, both tokens require some balance for this script to work." + assert ( + usd_amount > 0 + ), " USD has a balance of 0, both tokens require some balance for this script to work." + + bal.approve(distrbutor.address, bal_amount) + usd.approve(distrbutor.address, usd_amount) + distrbutor.depositTokens([bal.address, usd.address], [bal_amount, usd_amount]) + safe.post_safe_tx(gen_tenderly=False) + + +def main(): + safe = setupSafe(r.multisigs.fees) + sweeps = generateSweepFile(target_file) + claimFees(safe, sweeps) + cowswapFees(safe, sweeps) + safe.post_safe_tx(gen_tenderly=False) + + +if __name__ == "__main__": + main() diff --git a/tools/python/brownie/scripts/maxi_operations/review_bribs_csv.py b/tools/python/brownie/scripts/maxi_operations/review_bribs_csv.py new file mode 100644 index 000000000..7fd7aaa5e --- /dev/null +++ b/tools/python/brownie/scripts/maxi_operations/review_bribs_csv.py @@ -0,0 +1,39 @@ +import json + +import requests +import pandas as pd + + +def main(date="2024-01-05"): + """ + map prop hashes in the payload with their pool id via the hidden hand api + dump csv with pool id and usd amount + this can then be crossrefd with the gsheet pool ids and amounts + """ + r = requests.get("https://api.hiddenhand.finance/proposal/balancer") + r.raise_for_status() + + # TODO: cant crossref with the csv because the csv is missing the pool id + # df = pd.read_csv(f"../../../Bribs/{date}.csv") + + with open(f"../../../BIPs/00corePools/{date}.json", "r") as f: + payload = json.load(f) + result = [] + for transfer in payload["transactions"]: + if "contractInputsValues" in transfer: + if "_proposal" in transfer["contractInputsValues"]: + for proposal in r.json()["data"]: + if ( + proposal["proposalHash"] + == transfer["contractInputsValues"]["_proposal"] + ): + bribe = int(transfer["contractInputsValues"]["_amount"]) / 1e6 + result.append({"pool_id": proposal["poolId"], "bribe": bribe}) + df = pd.DataFrame(result).set_index("pool_id").groupby("pool_id").sum() + df.to_csv(f"../../../Bribs/{date}_review.csv") + print(df.to_markdown()) + print(df["bribe"].sum()) + + +if __name__ == "__main__": + main() diff --git a/tools/python/brownie/scripts/maxi_operations/set_gas_station_watchlist.py b/tools/python/brownie/scripts/maxi_operations/set_gas_station_watchlist.py new file mode 100644 index 000000000..390fb8c0b --- /dev/null +++ b/tools/python/brownie/scripts/maxi_operations/set_gas_station_watchlist.py @@ -0,0 +1,25 @@ +from great_ape_safe import GreatApeSafe +from web3 import Web3 +from helpers.addresses import r + + +def main(): + addresses = [] + topup_amounts = [] + min_topups = [] + safe = GreatApeSafe(r.balancer.multisigs.maxi_ops) + signers = r.balancer.signers.maxis + deployers = r.balancer.deployers + + for name, address in deployers.items(): + # Deployers get more gas in the deployer but no signer gas + addresses.append(address) + topup_amounts.append(int(0.5 * 10**18)) # .5 ETH topup for deployers + min_topups.append( + int(0.2 * 10**18) + ) # .2 ETH min topup = always has atleast .3 + + gs = safe.contract(r.balancer.maxi_gas_station) + gs.setWatchList(addresses, topup_amounts, min_topups) + # adding 1 deployer and 3 signers requires a total of 1.25 eth to topup all new signers to from empty to full + safe.post_safe_tx(gen_tenderly=False, replace_nonce=86) diff --git a/tools/python/brownie/scripts/maxi_operations/txbuilder_calldata.json b/tools/python/brownie/scripts/maxi_operations/txbuilder_calldata.json new file mode 100644 index 000000000..82fd2eacd --- /dev/null +++ b/tools/python/brownie/scripts/maxi_operations/txbuilder_calldata.json @@ -0,0 +1,22 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1681321880536, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.3", + "createdFromSafeAddress": "0x4D6175d58C5AceEf30F546C0d5A557efFa53A950", + "createdFromOwnerAddress": "", + "checksum": "0xd2d40233494806c3d91ca24493c91ee62ca69c36605b0738eae83d7cf012ca7c" + }, + "transactions": [ + { + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "value": "0", + "data": "", + "contractMethod": null, + "contractInputsValues": null + } + ] +} \ No newline at end of file diff --git a/tools/python/build_disableRecovery_payload.py b/tools/python/build_disableRecovery_payload.py new file mode 100644 index 000000000..1bd683ba4 --- /dev/null +++ b/tools/python/build_disableRecovery_payload.py @@ -0,0 +1,75 @@ +from bal_addresses import AddrBook +from collections import defaultdict +import csv +from bal_addresses import AddrBook +import json +import copy + + +TX_BUILDER_GLOBAL_JSON = json.loads( + """{ + "version": "1.0", + "chainId": "1", + "createdAt": 1688559620808, + "meta": { + "name": "Transactions Batch", + "description": "disableRecoveryMode Safu Pools", + "txBuilderVersion": "1.16.0", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + } +} +""" +) + + +TX_BUILDER_TX_JSON = json.loads( + """ { + "to": "", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [], + "name": "disableRecoveryMode", + "payable": false + }, + "contractInputsValues": null + } + +""" +) + +CHAIN_NAMES_BY_ID = {str(v): k for k, v in AddrBook.CHAIN_IDS_BY_NAME.iteritems()} +csv_file = "../../BIPs/00notGov/07-2023-disableRecovery/readyPools.csv" + + +def main(): + pool_csv = list(csv.DictReader(open(csv_file))) + txlist_by_chain = defaultdict(list) + ## Parse briibes per platform + for poolinfo in pool_csv: + pool_id = poolinfo["current pool ID"] + chain_id = str(poolinfo["Network"]) + pool_address = pool_id[:42] ## first 42 characters of pool ID is address + tx = copy.copy(TX_BUILDER_TX_JSON) + tx["to"] = pool_address + txlist_by_chain[chain_id].append(tx) + print(txlist_by_chain["137"]) + for chain_id, txlist in txlist_by_chain.items(): + chain_name = CHAIN_NAMES_BY_ID.get(chain_id) + print(f"Processing: {chain_name}({chain_id})") + book = AddrBook(chain_name) + multisig = book.flatbook[book.search_unique("multisigs/emergency")] + payload = TX_BUILDER_GLOBAL_JSON + payload["chainId"] = chain_id + payload["createdFromSafeAddress"] = multisig + payload["transactions"] = txlist + with open( + f"../../BIPs/00notGov/07-2023-disableRecovery/{chain_id}-{multisig}.json", + "w", + ) as f: + json.dump(payload, f, indent=2) + + +if __name__ == "__main__": + main() diff --git a/tools/python/claim_and_brib_gear.py b/tools/python/claim_and_brib_gear.py new file mode 100644 index 000000000..d847765ed --- /dev/null +++ b/tools/python/claim_and_brib_gear.py @@ -0,0 +1,175 @@ +import json +import requests +from dotmap import DotMap +from datetime import date +from web3 import Web3 +import os +from helpers.addresses import get_registry_by_chain_id +import binascii +from helpers.hh_bribs import get_index, get_gauge_name_map, get_hh_aura_target + +today = str(date.today()) +debug = False + +r = get_registry_by_chain_id(1) + +###TODO: The below settings must be set before running the script +INFURA_KEY = os.getenv("WEB3_INFURA_PROJECT_ID") +GEARBOX_MERKLE_URL = ( + "https://raw.githubusercontent.com/Gearbox-protocol/rewards/master/merkle/" +) +GEARBOX_TREE = "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC" +GAUGE_TO_BRIB = "0x19A13793af96f534F0027b4b6a3eB699647368e7" ## bb-g-usd +w3 = Web3(Web3.HTTPProvider(f"https://mainnet.infura.io/v3/{INFURA_KEY}")) +tree = w3.eth.contract( + address=GEARBOX_TREE, abi=json.load(open("./abis/GearAirdropDistributor.json")) +) + + +def sinlge_quote_list_string(list): + # TX builder wants lists in a string, addresses unquoted + output = str(list).replace('"', "") + return output + + +def claim(claim_address): + b = tree.functions.merkleRoot().call() + current_root = binascii.hexlify(b).decode("utf-8") + try: + result = requests.get(f"{GEARBOX_MERKLE_URL}/mainnet_{current_root}.json") + except requests.exceptions.HTTPError as error: + print(result.request.url) + print(error) + assert False + result = result.json() + claim = result["claims"][claim_address] + index = claim["index"] + amount = int(claim["amount"], 0) + proofs = claim["proof"] + + # tree.claim(index, claim_address,amount, noquote_list_string(proofs)) + with open("tx_builder_templates/gearbox_claim_tx.json", "r") as f: + data = DotMap(json.load(f)) + tx = data.transactions[0] + tx.contractInputsValues.index = str(index) + tx.contractInputsValues.account = claim_address + tx.contractInputsValues.totalAmount = str(amount) + tx.contractInputsValues.merkleProof = str(proofs) + return tx.toDict() + + +def approve(token, spender, raw_amount): + with open("tx_builder_templates/approve.json", "r") as f: + tx = json.load(f) + tx["to"] = token + tx["contractInputsValues"]["spender"] = spender + tx["contractInputsValues"]["rawAmount"] = str(raw_amount) + return tx + + +def bribe_aura(gauge_address, bribe_token_address, amount): + briber = w3.eth.contract( + address=r.hidden_hand.aura_briber, + abi=json.load(open("./abis/IAuraBriber.json")), + ) + target_name = get_gauge_name_map()[Web3.toChecksumAddress(gauge_address)] + prop = get_hh_aura_target(target_name) + with open("tx_builder_templates/bribe_aura.json", "r") as f: + data = json.load(f) + tx = data["transactions"][0] + tx["contractInputsValues"]["proposal"] = prop + tx["contractInputsValues"]["token"] = bribe_token_address + tx["contractInputsValues"]["amount"] = str(amount) + return tx + + +def bribe_balancer(gauge_address, bribe_token_address, amount): + briber = w3.eth.contract( + address=r.hidden_hand.balancer_briber, + abi=json.load(open("./abis/IBalancerBribe.json")), + ) + prop = Web3.solidityKeccak(["address"], [Web3.toChecksumAddress(gauge_address)]) + amount = int(amount) + + if amount == 0: + return + + with open("tx_builder_templates/bribe_balancer.json", "r") as f: + data = json.load(f) + tx = data["transactions"][0] + tx["contractInputsValues"]["proposal"] = prop.hex() + tx["contractInputsValues"]["token"] = bribe_token_address + tx["contractInputsValues"]["amount"] = str(amount) + return tx + + +def main(): + ### Load Template + with open("tx_builder_templates/base.json", "r") as f: ## framework transaction + data = json.load(f) + + ### Claim + claim_tx = claim(r.balancer.multisigs.lm) + data["transactions"].append(claim_tx) + total_earned = claim_tx["contractInputsValues"]["totalAmount"] + + ### Bribe Claimed + already_claimed = tree.functions.claimed(r.balancer.multisigs.lm).call() + claim_amount = int(total_earned) - int(already_claimed) + aura_amount = int(claim_amount) + balancer_amount = 0 + + print(f"Total CLaim {int(claim_amount)/10**18} GEAR") + print( + f"Aura: {int(aura_amount)/10**18}GEAR, Balancer: {int(balancer_amount)/10**18}" + ) + + approve_tx = approve(r.tokens.GEAR, r.hidden_hand.bribe_vault, claim_amount) + data["transactions"].append(approve_tx) + if aura_amount > 0: + bribe_tx = bribe_aura( + gauge_address=GAUGE_TO_BRIB, + bribe_token_address=r.tokens.GEAR, + amount=str(aura_amount), + ) + data["transactions"].append(bribe_tx) + if balancer_amount > 0: + bribe_tx = bribe_balancer( + gauge_address=GAUGE_TO_BRIB, + bribe_token_address=r.tokens.GEAR, + amount=str(balancer_amount), + ) + data["transactions"].append(bribe_tx) + + data["meta"]["createdFromSafeAddress"] = r.balancer.multisigs.lm + with open( + f"../../Bribs/partner_lm/gear/{today}.json", "w" + ) as f: ## framework transaction + json.dump(data, f) + + ### Build Payload for Gear + total_brib = 1000000 * 10**18 + aura_amount = int(total_brib / 1) + balancer_amount = int(total_brib / 99) + approve_tx = approve(r.tokens.GEAR, r.hidden_hand.bribe_vault, claim_amount) + bal_bribe_tx = bribe_balancer( + gauge_address=GAUGE_TO_BRIB, + bribe_token_address=r.tokens.GEAR, + amount=str(balancer_amount), + ) + aura_bribe_tx = bribe_aura( + gauge_address=GAUGE_TO_BRIB, + bribe_token_address=r.tokens.GEAR, + amount=str(aura_amount), + ) + with open("tx_builder_templates/base.json", "r") as f: ## framework transaction + data = json.load(f) + data["transactions"] = [approve_tx, bal_bribe_tx, aura_bribe_tx] + with open( + f"../../Bribs/partner_lm/gear/{today}-1m-gear.json", "w" + ) as f: ## framework transaction + json.dump(data, f) + + +if __name__ == "__main__": + main() diff --git a/tools/python/claim_and_send_gear.py b/tools/python/claim_and_send_gear.py new file mode 100644 index 000000000..27afc4558 --- /dev/null +++ b/tools/python/claim_and_send_gear.py @@ -0,0 +1,92 @@ +import json +import requests +from dotmap import DotMap +from datetime import date +from web3 import Web3 +import os +from helpers.addresses import get_registry_by_chain_id +import binascii +from helpers.hh_bribs import get_index, get_gauge_name_map, get_hh_aura_target +from bal_addresses import AddrBook + +today = str(date.today()) +debug = False + +r = get_registry_by_chain_id(1) +a = AddrBook("mainnet") +###TODO: The below settings must be set before running the script +INFURA_KEY = os.getenv("WEB3_INFURA_PROJECT_ID") +GEARBOX_MERKLE_URL = ( + "https://raw.githubusercontent.com/Gearbox-protocol/rewards/master/merkle/" +) +GEARBOX_TREE = "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC" +w3 = Web3(Web3.HTTPProvider(f"https://mainnet.infura.io/v3/{INFURA_KEY}")) +tree = w3.eth.contract( + address=GEARBOX_TREE, abi=json.load(open("./abis/GearAirdropDistributor.json")) +) + + +def sinlge_quote_list_string(list): + # TX builder wants lists in a string, addresses unquoted + output = str(list).replace('"', "") + return output + + +def claim(claim_address): + b = tree.functions.merkleRoot().call() + current_root = binascii.hexlify(b).decode("utf-8") + try: + result = requests.get(f"{GEARBOX_MERKLE_URL}/mainnet_{current_root}.json") + except requests.exceptions.HTTPError as error: + print(result.request.url) + print(error) + assert False + result = result.json() + claim = result["claims"][claim_address] + index = claim["index"] + amount = int(claim["amount"], 0) + proofs = claim["proof"] + + # tree.claim(index, claim_address,amount, noquote_list_string(proofs)) + with open("tx_builder_templates/gearbox_claim_tx.json", "r") as f: + data = DotMap(json.load(f)) + tx = data.transactions[0] + tx.contractInputsValues.index = str(index) + tx.contractInputsValues.account = claim_address + tx.contractInputsValues.totalAmount = str(amount) + tx.contractInputsValues.merkleProof = str(proofs) + return tx.toDict() + + +def main(): + ### Load Template + with open("tx_builder_templates/base.json", "r") as f: ## framework transaction + data = json.load(f) + with open("tx_builder_templates/erc20_transfer.json", "r") as f: + transfer_tx = json.load(f) + + ### Claim + claim_tx = claim(r.balancer.multisigs.lm) + data["transactions"].append(claim_tx) + total_earned = claim_tx["contractInputsValues"]["totalAmount"] + + ### transfer bags to autobriboor + already_claimed = tree.functions.claimed(r.balancer.multisigs.lm).call() + claim_amount = int(total_earned) - int(already_claimed) + balancer_amount = 0 + print(f"Total CLaim {int(claim_amount)/10**18} GEAR") + transfer_tx["to"] = a.flatbook["tokens/GEAR"] + transfer_tx["contractInputsValues"]["to"] = a.flatbook[ + "gelatoW3f/gearboxAutoBriberV1" + ] + transfer_tx["contractInputsValues"]["value"] = str(claim_amount) + data["meta"]["createdFromSafeAddress"] = r.balancer.multisigs.lm + data["transactions"] = [claim_tx, transfer_tx] + with open( + f"../../Bribs/partner_lm/gear/{today}.json", "w" + ) as f: ## framework transaction + json.dump(data, f) + + +if __name__ == "__main__": + main() diff --git a/tools/python/generate_new_chain_template.py b/tools/python/generate_new_chain_template.py new file mode 100644 index 000000000..16df27db7 --- /dev/null +++ b/tools/python/generate_new_chain_template.py @@ -0,0 +1,36 @@ +from bal_addresses import AddrBook +import json + +a = AddrBook("mainnet") # we don't care about addresses + + +def lookup_caller(caller): + print(caller) + if "/" in caller: + print(f"caller: {caller} looks like it already is in flatbook format, skipping") + return caller + try: + return a.search_unique(caller) + except AddrBook.MultipleMatchesError as error: + return a.reversebook[a.latest_contract(caller)] + ## If we haven't returned yet no match was found + raise AddrBook.NoResultsError(f"no match for {caller} found") + + +with open("../../BIPs/00batched/authorizer/new-chain-pretemplate.json", "r") as f: + pretemplate = json.load(f) +template = [] +for block in pretemplate: + for function, callers in block["function_caller_map"].items(): + flatcallers = [] + if isinstance(callers, str): ## don't require singleton lists + callers = [callers] + for caller in callers: + flatcallers.append(lookup_caller(caller)) + block["function_caller_map"][function] = flatcallers + template.append(block) + + +with open("../../BIPs/00batched/authorizer/new-chain-template.json", "w") as f: + json.dump(template, f, indent=2) + f.write("\n") diff --git a/tools/python/helpers/__init__.py b/tools/python/helpers/__init__.py new file mode 100644 index 000000000..355261da0 --- /dev/null +++ b/tools/python/helpers/__init__.py @@ -0,0 +1,19 @@ +import urllib.request + + +def get_subgraph_url(chain_name: str): + # ref: https://github.com/BalancerMaxis/bal_addresses/blame/52910c55036a298b33228407a5b0d94a825414ca/gen_pools_and_gauges.py#L11-L28 + chain_name = "gnosis-chain" if chain_name == "gnosis" else chain_name + frontend_file = f"https://raw.githubusercontent.com/balancer/frontend-v2/develop/src/lib/config/{chain_name}/index.ts" + magic_word = "subgraph:" + found_magic_word = False + with urllib.request.urlopen(frontend_file) as f: + for line in f: + if found_magic_word: + return line.decode("utf-8").strip().strip(" ,'") + if magic_word + " " in str(line): + # url is on same line + return line.decode("utf-8").split(magic_word)[1].strip().strip(",'") + if magic_word in str(line): + # url is on next line, return it on the next iteration + found_magic_word = True diff --git a/tools/python/helpers/func_desc_by_name.json b/tools/python/helpers/func_desc_by_name.json new file mode 100644 index 000000000..f479c035e --- /dev/null +++ b/tools/python/helpers/func_desc_by_name.json @@ -0,0 +1,9 @@ +{ + "setSwapFeePercentage": "Authorize change of swap fees for pools that delegate ownership to Balancer Governance: 0xba1ba1...", + "startAmplificationParameterUpdate(uint256,uint256)": "Start ramping up or down the A factor of a stableswap pool.", + "stopAmplificationParameterUpdate()": "Stop A-factor change leaving the A-Factor at its currently set value.", + "pause()": "Stops trading on a pool. Proportinal withdraws are still possible.", + "disable()": "Disables a new creation of pools on a pool factory.", + "enableRecoveryMode()": "Puts a pool into [Recovery Mode](https://medium.com/@0xSkly/inside-balancer-code-recoverymode-9af34ce5ab72)" + +} diff --git a/tools/python/helpers/hh_bribs.py b/tools/python/helpers/hh_bribs.py new file mode 100644 index 000000000..55b520213 --- /dev/null +++ b/tools/python/helpers/hh_bribs.py @@ -0,0 +1,76 @@ +import requests +from decimal import Decimal, InvalidOperation +from web3 import Web3 +import csv + + +SNAPSHOT_URL = "https://hub.snapshot.org/graphql?" +HH_API_URL = "https://api.hiddenhand.finance/proposal" + +GAUGE_MAPPING_URL = "https://raw.githubusercontent.com/aurafinance/aura-contracts/main/tasks/snapshot/gauge_choices.json" + +# queries for choices and proposals info +QUERY_PROPOSAL_INFO = """ +query ($proposal_id: String) { + proposal(id: $proposal_id) { + choices + } +} +""" + +# `state: "all"` ensures all proposals are included +QUERY_PROPOSALS = """ +query { + proposals(first: 100, where: { space: "gauges.aurafinance.eth" , state: "all"}) { + id + } +} +""" + + +def get_hh_aura_target(target_name): + response = requests.get(f"{HH_API_URL}/aura") + options = response.json()["data"] + for option in options: + if option["title"] == target_name: + return option["proposalHash"] + return False ## return false if no result + + +def get_gauge_name_map(map_url=GAUGE_MAPPING_URL): + ## the url was not responding on IPv6 addresses + requests.packages.urllib3.util.connection.HAS_IPV6 = False + response = requests.get(map_url) + item_list = response.json() + output = {} + for mapping in item_list: + gauge_address = Web3.toChecksumAddress(mapping["address"]) + output[gauge_address] = mapping["label"] + return output + + +def get_index(proposal_id, target): + # grab data from the snapshot endpoint re proposal choices + response = requests.post( + SNAPSHOT_URL, + json={ + "query": QUERY_PROPOSAL_INFO, + "variables": {"proposal_id": proposal_id}, + }, + ) + choices = response.json()["data"]["proposal"]["choices"] + choice = choices.index(target) + return choice + + +def process_bribe_csv(csv_file): + # Process the CSV + # csv_format: target, platform, amount + bribe_csv = csv.DictReader(open(csv_file)) + aura_bribes = [] + balancer_bribes = [] + bribes = {"aura": {}, "balancer": {}} + ## Parse briibes per platform + for bribe in bribe_csv: + bribes[bribe["platform"]][bribe["target"]] = float(bribe["amount"]) + return bribes diff --git a/tools/python/helpers/monorepo-addresses.json b/tools/python/helpers/monorepo-addresses.json new file mode 100644 index 000000000..262b5cfd0 --- /dev/null +++ b/tools/python/helpers/monorepo-addresses.json @@ -0,0 +1,1597 @@ +{ + "active": { + "goerli": { + "20230316-child-chain-gauge-factory-v2": { + "ChildChainGauge": "0x6B5dA774890Db7B7b96C6f44e6a4b0F657399E2e", + "ChildChainGaugeFactory": "0x7Ba29fE8E83dd6097A7298075C4AFfdBda3121cC" + }, + "20220530-preseeded-voting-escrow-delegation": { + "PreseededVotingEscrowDelegation": "0x7AF980bDBc36D21CE228EfABCCA35707566A2be5" + }, + "20230320-weighted-pool-v4": { + "WeightedPoolFactory": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a", + "MockWeightedPool": "0x072ED560cc042d7aB1c080a9e4fA8C6f4858dEb3" + }, + "20221205-l2-gauge-checkpointer": { + "L2GaugeCheckpointer": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" + }, + "20220513-double-entrypoint-fix-relayer": { + "DoubleEntrypointFixRelayer": "0xBe9458ab5B6F289e524410141c8d5E20A6b035fe" + }, + "20220325-bal-token-holder-factory": { + "BALTokenHolderFactory": "0x45E617B07021B97407367624648d1A0A358a751A" + }, + "20220714-fee-distributor-v2": { + "FeeDistributor": "0x42B67611B208E2e9b4CC975F6D74c87b865aE066" + }, + "20230404-l2-layer0-bridge-forwarder": { + "L2LayerZeroBridgeForwarder": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "BalancerHelpers": "0x5aDDCCa35b7A0D07C74063c48700C8590E87864E", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F" + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20220420-smart-wallet-checker": { + "SmartWalletChecker": "0x1b6DF1fF5db99F8a8A04D38f7478BAB056Fa35A7" + }, + "20230314-batch-relayer-v5": { + "BatchRelayerLibrary": "0x45fFd460cC6642B8D8Fb12373DFd77Ceb0f4932B", + "BalancerRelayer": "0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9" + }, + "20230208-euler-linear-pool": { + "EulerLinearPoolFactory": "0x813EE7a840CE909E7Fea2117A44a90b8063bd4fd", + "MockEulerToken": "0xB99eDc4b289B0F2284fCF3f66884191BdCe29624", + "MockEulerLinearPool": "0x43Fa2c00419F60e18966Aa043DEBd4701CB91B6d" + }, + "20220325-balancer-token-admin": { + "BalancerTokenAdmin": "0x0F32D7D830E20809Bcb9071581A696135dD472B7" + }, + "20230320-composable-stable-pool-v4": { + "ComposableStablePoolFactory": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "MockComposableStablePool": "0x5D343D374A769D1AB102e0418a516DadB08A86E4" + }, + "20230411-managed-pool-v2": { + "ManagedPoolAddRemoveTokenLib": "0xAcf05BE5134d64d150d153818F8C67EE36996650", + "CircuitBreakerLib": "0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC", + "ManagedPoolAmmLib": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE", + "ExternalWeightedMath": "0xDF9B5B00Ef9bca66e9902Bd813dB14e4343Be025", + "RecoveryModeHelper": "0x300Ab2038EAc391f26D9F895dc61F8F66a548833", + "ManagedPoolFactory": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054", + "MockManagedPool": "0xff79b51ec2934Dd1810a8e0325e3B08708720B26" + }, + "20220325-ve-delegation": { + "VotingEscrowDelegation": "0xcfF73979321788d59a6170fF012730dB2087f31c", + "VotingEscrowDelegationProxy": "0xA1F107D1cD709514AE8A914eCB757E95f9cedB31" + }, + "20230403-timelock-authorizer": { + "TimelockAuthorizerMigrator": "0x7159c4b96bfCfCA232355B55778e85Cf9E245192", + "TimelockAuthorizer": "0x70E26F740bAd6a2CDd762e2478496268882C21d4" + }, + "20220325-test-balancer-token": { + "TestBalancerToken": "0xfA8449189744799aD2AcE7e0EBAC8BB7575eff47" + }, + "20220822-mainnet-gauge-factory-v2": { + "LiquidityGaugeV5": "0x2E96068b3D5B5BAE3D7515da4A1D2E52d08A2647", + "LiquidityGaugeFactory": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + }, + "00000000-tokens": { + "BAL": "0xfA8449189744799aD2AcE7e0EBAC8BB7575eff47", + "WETH": "0xdFCeA9088c8A88A76FF74892C1457C17dfeef9C1" + }, + "20220527-child-chain-gauge-token-adder": { + "ChildChainGaugeTokenAdder": "0x55B18f514D7f0C6C886d0C23Ac72dF5D3B5F8850" + }, + "20220812-child-chain-reward-helper": { + "ChildChainGaugeRewardHelper": "0xC128a9954e6c874eA3d62ce62B468bA073093F25" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20210812-wsteth-rate-provider": { + "WstETHRateProvider": "0x80a94F458491CA88F09767E58a92FD23Cbf1196F" + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": "0x1cbbE6cEa5E4fE7D69c586b4e362A646DEEf105d" + }, + "20221205-veboost-v2": { + "VeBoostV2": "0xd13AFc362F619b840C8f4AaC1D957cE219eF37Ca" + }, + "20230414-authorizer-wrapper": { + "AuthorizerWithAdaptorValidation": "0x8eA89804145c007e7D226001A96955ad53836087" + }, + "20230316-l2-balancer-pseudo-minter": { + "L2BalancerPseudoMinter": "0x81cFAE226343B24BA12EC6521Db2C79E7aeeb310" + }, + "20220707-distribution-scheduler": { + "DistributionScheduler": "0x05a0BF0540F346b6Dac25550738343BEb51C0f65" + }, + "20230222-merkle-orchard-v2": { + "MerkleOrchard": "0x5cF4928a3205728bd12830E1840F7DB85c62a4B9" + }, + "20220721-balancer-queries": { + "BalancerQueries": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0x5D90225De345eE24d1d2B6F45DE90B056F5265A1" + }, + "20230215-single-recipient-gauge-factory-v2": { + "SingleRecipientGaugeFactory": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7", + "SingleRecipientGauge": "0x0e9aDdc34F93BCcB45D1F744B9F9301285C5b48F" + }, + "20230316-l2-ve-delegation-proxy": { + "NullVotingEscrow": "0xa523f47A933D5020b23629dDf689695AA94612Dc", + "VotingEscrowDelegationProxy": "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0" + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": "0x85153B639a35d6e6CF8B291Aca237FbE67377154" + }, + "20220325-gauge-controller": { + "VotingEscrow": "0x33A99Dcc4C85C014cf12626959111D5898bbCAbF", + "GaugeController": "0xBB1CE49b16d55A1f2c6e88102f32144C7334B116", + "BalancerMinter": "0xdf0399539A72E2689B8B2DD53C3C2A0883879fDd" + }, + "20230109-gauge-adder-v3": { + "GaugeAdder": "0xBd35248F8325DD1cB2bBf9D01E80A6bb99a792Dd" + }, + "20230223-protocol-id-registry": { + "ProtocolIdRegistry": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968" + }, + "20220413-child-chain-gauge-factory": { + "RewardsOnlyGauge": "0x40Bd3fAef4268EA40F4c372D7f0A44C3EFaAA6b1", + "ChildChainStreamer": "0x5B5B72D76B68f4Bb1d2A10EF0fc77711f8Ec7ed0", + "ChildChainLiquidityGaugeFactory": "0x393B918Cc2Ffa238732E83dD4eE52343f57d767b" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0xB0C726778C3AE4B3454D85557A48e8fa502bDD6A" + }, + "20221124-authorizer-adaptor-entrypoint": { + "AuthorizerAdaptorEntrypoint": "0xacAaC3e6D6Df918Bf3c809DFC7d42de0e4a72d4C" + } + }, + "gnosis": { + "20230316-child-chain-gauge-factory-v2": { + "ChildChainGauge": "0x96484f2aBF5e58b15176dbF1A799627B53F13B6d", + "ChildChainGaugeFactory": "0x83E443EF4f9963C77bd860f94500075556668cb8" + }, + "20230320-weighted-pool-v4": { + "WeightedPoolFactory": "0x6CaD2ea22BFA7F4C14Aae92E47F510Cd5C509bc7", + "MockWeightedPool": "0xd8752f9b0A2c2813796AbD2bE212A32FFd656EF1" + }, + "20230404-l2-layer0-bridge-forwarder": { + "L2LayerZeroBridgeForwarder": "0xeb151668006CD04DAdD098AFd0a82e78F77076c3" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F", + "BalancerHelpers": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9" + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac" + }, + "20230314-batch-relayer-v5": { + "BatchRelayerLibrary": "0xb9aD3466cdd42015cc05d4804DC68D562b6a2065", + "BalancerRelayer": "0x3536fD480CA495Ac91E698A703248A8915c137a3" + }, + "20230320-composable-stable-pool-v4": { + "ComposableStablePoolFactory": "0xD87F44Df0159DC78029AB9CA7D7e57E7249F5ACD", + "MockComposableStablePool": "0xf3678A0b54C61ccD88Ce321c2e07f87aC75F08B9" + }, + "20230411-managed-pool-v2": { + "ManagedPoolAddRemoveTokenLib": "0x4C32a8a8fDa4E24139B51b456B42290f51d6A1c4", + "CircuitBreakerLib": "0x54f8F9d28e26Fa5864cfA80f50A5Df95fD85f46a", + "ManagedPoolAmmLib": "0xAcf05BE5134d64d150d153818F8C67EE36996650", + "ExternalWeightedMath": "0x9129E834e15eA19b6069e8f08a8EcFc13686B8dC", + "RecoveryModeHelper": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE", + "ManagedPoolFactory": "0xDF9B5B00Ef9bca66e9902Bd813dB14e4343Be025", + "MockManagedPool": "0xc061361fDa32fF5b65F7D98aCC9a87349d3F0768" + }, + "00000000-tokens": { + "BAL": "0x7eF541E2a22058048904fE5744f9c7E4C57AF717", + "WETH": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d" + }, + "20220527-child-chain-gauge-token-adder": { + "ChildChainGaugeTokenAdder": "0x1802953277FD955f9a254B80Aa0582f193cF1d77" + }, + "20220812-child-chain-reward-helper": { + "ChildChainGaugeRewardHelper": "0xf7D5DcE55E6D47852F054697BAB6A1B48A00ddbd" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + }, + "20230414-authorizer-wrapper": { + "AuthorizerWithAdaptorValidation": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054" + }, + "20230316-l2-balancer-pseudo-minter": { + "L2BalancerPseudoMinter": "0xA8920455934Da4D853faac1f94Fe7bEf72943eF1" + }, + "20220721-balancer-queries": { + "BalancerQueries": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0x5aDDCCa35b7A0D07C74063c48700C8590E87864E" + }, + "20230316-l2-ve-delegation-proxy": { + "NullVotingEscrow": "0x013D4382F291be5688AFBcc741Ee8A24C66B2C92", + "VotingEscrowDelegationProxy": "0x7A2535f5fB47b8e44c02Ef5D9990588313fe8F05" + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca" + }, + "20230223-protocol-id-registry": { + "ProtocolIdRegistry": "0x6B5dA774890Db7B7b96C6f44e6a4b0F657399E2e" + }, + "20220413-child-chain-gauge-factory": { + "RewardsOnlyGauge": "0x45fFd460cC6642B8D8Fb12373DFd77Ceb0f4932B", + "ChildChainStreamer": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a", + "ChildChainLiquidityGaugeFactory": "0x809B79b53F18E9bc08A961ED4678B901aC93213a" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062" + }, + "20221124-authorizer-adaptor-entrypoint": { + "AuthorizerAdaptorEntrypoint": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75" + } + }, + "optimism": { + "20230316-child-chain-gauge-factory-v2": { + "ChildChainGauge": "0x81cFAE226343B24BA12EC6521Db2C79E7aeeb310", + "ChildChainGaugeFactory": "0xa523f47A933D5020b23629dDf689695AA94612Dc" + }, + "20230320-weighted-pool-v4": { + "WeightedPoolFactory": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a", + "MockWeightedPool": "0x62F5f9a446d198E8E4c84eE56e5217416720EdAF" + }, + "20220513-double-entrypoint-fix-relayer": { + "DoubleEntrypointFixRelayer": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + }, + "20230404-l2-layer0-bridge-forwarder": { + "L2LayerZeroBridgeForwarder": "0xbef13D1e54D0c79DA8B0AD704883E1Cea7EB2100" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "BalancerHelpers": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F" + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": "0xacAaC3e6D6Df918Bf3c809DFC7d42de0e4a72d4C" + }, + "20230314-batch-relayer-v5": { + "BatchRelayerLibrary": "0x45fFd460cC6642B8D8Fb12373DFd77Ceb0f4932B", + "BalancerRelayer": "0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9" + }, + "20230320-composable-stable-pool-v4": { + "ComposableStablePoolFactory": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "MockComposableStablePool": "0x11A4cF51Bb0Bb4D925CAdFDA61FcDA952d64889C" + }, + "20230411-managed-pool-v2": { + "ManagedPoolAddRemoveTokenLib": "0x59562f93c447656F6E4799fC1FC7c3d977C3324F", + "CircuitBreakerLib": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95", + "ManagedPoolAmmLib": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "ExternalWeightedMath": "0x8df317a729fcaA260306d7de28888932cb579b88", + "RecoveryModeHelper": "0x3B1eb8EB7b43882b385aB30533D9A2BeF9052a98", + "ManagedPoolFactory": "0x4C32a8a8fDa4E24139B51b456B42290f51d6A1c4", + "MockManagedPool": "0xb4AF4fdd49da2A2BA9522EAdCF86D407a69f19c8" + }, + "00000000-tokens": { + "BAL": "0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921", + "WETH": "0x4200000000000000000000000000000000000006" + }, + "20220527-child-chain-gauge-token-adder": { + "ChildChainGaugeTokenAdder": "0x6f5a2eE11E7a772AeB5114A20d0D7c0ff61EB8A0" + }, + "20220812-child-chain-reward-helper": { + "ChildChainGaugeRewardHelper": "0x8aB784368A1883DA90D8513b48801e2Db1cb2D5D" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + }, + "20230414-authorizer-wrapper": { + "AuthorizerWithAdaptorValidation": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + }, + "20230316-l2-balancer-pseudo-minter": { + "L2BalancerPseudoMinter": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968" + }, + "20220721-balancer-queries": { + "BalancerQueries": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75" + }, + "20230409-erc4626-linear-pool-v4": { + "ERC4626LinearPoolFactory": "0x7ADbdabaA80F654568421887c12F09E0C7BD9629", + "MockERC4626Token": "0x4bE0E4d6184348c5BA845a4010528CFC779610b8", + "MockERC4626LinearPool": "0x2DA61Ef3Cdcb97efb0f7099c02527fabFe94Dee5" + }, + "20230316-l2-ve-delegation-proxy": { + "NullVotingEscrow": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68", + "VotingEscrowDelegationProxy": "0x9dA18982a33FD0c7051B19F0d7C76F2d5E7e017c" + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": "0xC128a9954e6c874eA3d62ce62B468bA073093F25" + }, + "20230223-protocol-id-registry": { + "ProtocolIdRegistry": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102" + }, + "20220413-child-chain-gauge-factory": { + "RewardsOnlyGauge": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "ChildChainStreamer": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b", + "ChildChainLiquidityGaugeFactory": "0x2E96068b3D5B5BAE3D7515da4A1D2E52d08A2647" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0xf302f9F50958c5593770FDf4d4812309fF77414f" + }, + "20221124-authorizer-adaptor-entrypoint": { + "AuthorizerAdaptorEntrypoint": "0xed86ff0c507D3AF5F35d3523B77C17415FCfFaCb" + } + }, + "arbitrum": { + "20230316-child-chain-gauge-factory-v2": { + "ChildChainGauge": "0xa523f47A933D5020b23629dDf689695AA94612Dc", + "ChildChainGaugeFactory": "0x6817149cb753BF529565B4D023d7507eD2ff4Bc0" + }, + "20230320-weighted-pool-v4": { + "WeightedPoolFactory": "0xc7E5ED1054A24Ef31D827E6F86caA58B3Bc168d7", + "MockWeightedPool": "0x129C6402FF88611Aa59BF2e14B39e091822e2C9c" + }, + "20220513-double-entrypoint-fix-relayer": { + "DoubleEntrypointFixRelayer": "0x8E5698dC4897DC12243c8642e77B4f21349Db97C" + }, + "20230404-l2-layer0-bridge-forwarder": { + "L2LayerZeroBridgeForwarder": "0x12Ca9De662A7Bf5Dc89e034a5083eF751B08EDe7" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "BalancerHelpers": "0x77d46184d22CA6a3726a2F500c776767b6A3d6Ab", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F" + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5" + }, + "20230314-batch-relayer-v5": { + "BatchRelayerLibrary": "0xD87F44Df0159DC78029AB9CA7D7e57E7249F5ACD", + "BalancerRelayer": "0x598ce0f1ab64B27256759ef99d883EE51138b9bd" + }, + "20230320-composable-stable-pool-v4": { + "ComposableStablePoolFactory": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95", + "MockComposableStablePool": "0xFF7e6B102516e071dcDA763EE9D02c1515481db5" + }, + "20230411-managed-pool-v2": { + "ManagedPoolAddRemoveTokenLib": "0xA69E0Ccf150a29369D8Bbc0B3f510849dB7E8EEE", + "CircuitBreakerLib": "0xDF9B5B00Ef9bca66e9902Bd813dB14e4343Be025", + "ManagedPoolAmmLib": "0x300Ab2038EAc391f26D9F895dc61F8F66a548833", + "ExternalWeightedMath": "0x03F3Fb107e74F2EAC9358862E91ad3c692712054", + "RecoveryModeHelper": "0x682f0dDBFd41D1272982f64a499Fb62d80e27589", + "ManagedPoolFactory": "0x8eA89804145c007e7D226001A96955ad53836087", + "MockManagedPool": "0xf5A71257B331C02dA1Eae52151C3d600f16B76F0" + }, + "00000000-tokens": { + "BAL": "0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8", + "WETH": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1" + }, + "20220527-child-chain-gauge-token-adder": { + "ChildChainGaugeTokenAdder": "0xbfD9769b061E57e478690299011A028194D66e3C" + }, + "20220812-child-chain-reward-helper": { + "ChildChainGaugeRewardHelper": "0xA0DAbEBAAd1b243BBb243f933013d560819eB66f" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": "0xb5e56CC3d2e38e53b1166175C59e921A37cDC1E2" + }, + "20230414-authorizer-wrapper": { + "AuthorizerWithAdaptorValidation": "0x6B1Da720Be2D11d95177ccFc40A917c2688f396c" + }, + "20230316-l2-balancer-pseudo-minter": { + "L2BalancerPseudoMinter": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + }, + "20230222-merkle-orchard-v2": { + "MerkleOrchard": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102" + }, + "20220721-balancer-queries": { + "BalancerQueries": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20230409-erc4626-linear-pool-v4": { + "ERC4626LinearPoolFactory": "0x7ADbdabaA80F654568421887c12F09E0C7BD9629", + "MockERC4626Token": "0x4bE0E4d6184348c5BA845a4010528CFC779610b8", + "MockERC4626LinearPool": "0x3f53A862919ccFA023CB6AcE91378a79Fb0F6Bf5" + }, + "20230316-l2-ve-delegation-proxy": { + "NullVotingEscrow": "0x9dA18982a33FD0c7051B19F0d7C76F2d5E7e017c", + "VotingEscrowDelegationProxy": "0x81cFAE226343B24BA12EC6521Db2C79E7aeeb310" + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": "0x70Bbd023481788e443472e123AB963e5EBF58D06" + }, + "20230223-protocol-id-registry": { + "ProtocolIdRegistry": "0x5cF4928a3205728bd12830E1840F7DB85c62a4B9" + }, + "20220413-child-chain-gauge-factory": { + "RewardsOnlyGauge": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac", + "ChildChainStreamer": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8", + "ChildChainLiquidityGaugeFactory": "0xb08E16cFc07C684dAA2f93C70323BAdb2A6CBFd2" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0x1802953277FD955f9a254B80Aa0582f193cF1d77" + }, + "20221124-authorizer-adaptor-entrypoint": { + "AuthorizerAdaptorEntrypoint": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A" + } + }, + "polygon": { + "20230316-child-chain-gauge-factory-v2": { + "ChildChainGauge": "0xc9b36096f5201ea332Db35d6D195774ea0D5988f", + "ChildChainGaugeFactory": "0x22625eEDd92c81a219A83e1dc48f88d54786B017" + }, + "20230320-weighted-pool-v4": { + "WeightedPoolFactory": "0xFc8a407Bba312ac761D8BFe04CE1201904842B76", + "MockWeightedPool": "0xb77E03655ee894AadE216A83D05511A9F9895126" + }, + "20220513-double-entrypoint-fix-relayer": { + "DoubleEntrypointFixRelayer": "0x79d0011892fe558FC5a4ec7D4Ca5db59069f460f" + }, + "20230404-l2-layer0-bridge-forwarder": { + "L2LayerZeroBridgeForwarder": "0xB98F54A74590a6e681fF664b2Fa22EBfFe1a929E" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "BalancerHelpers": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F" + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": "0x42AC0e6FA47385D55Aff070d79eF0079868C48a6" + }, + "20230314-batch-relayer-v5": { + "BatchRelayerLibrary": "0x4271de2595c3d85d2D455C5778adF2d7Ad54322C", + "BalancerRelayer": "0xd18d5D377eb23362e54Fa496597d7E962d56C554" + }, + "20230320-composable-stable-pool-v4": { + "ComposableStablePoolFactory": "0x6Ab5549bBd766A43aFb687776ad8466F8b42f777", + "MockComposableStablePool": "0x0f25823cF786b78696b16536e2F2B9835289AB51" + }, + "20230411-managed-pool-v2": { + "ManagedPoolAddRemoveTokenLib": "0xf553bf40DB86c35f3058434039D51Aad29c6180b", + "CircuitBreakerLib": "0xEDFd0A7005A7c72c44Ff13bEa370c86A9D11beE1", + "ManagedPoolAmmLib": "0xCEFD59EedAFA9EE8Ccda1AaF944088E68B5BD890", + "ExternalWeightedMath": "0x72EbAFDdC4C7d3EB702c81295D90A8B29F008a03", + "RecoveryModeHelper": "0x1eb79551CA0e83EC145608BC39a0c7F10cA21Aa5", + "ManagedPoolFactory": "0xB8Dfa4fd0F083de2B7EDc0D5eeD5E684e54bA45D", + "MockManagedPool": "0x074eFD7806e6c28e8b6611075b1Aa62c6c408090" + }, + "00000000-tokens": { + "BAL": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3", + "WETH": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270" + }, + "20220527-child-chain-gauge-token-adder": { + "ChildChainGaugeTokenAdder": "0x1554ee754707D5C93b7934AF404747Aba521Aaf2" + }, + "20220812-child-chain-reward-helper": { + "ChildChainGaugeRewardHelper": "0xaEb406b0E430BF5Ea2Dc0B9Fe62E4E53f74B3a33" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": "0x495F696430F4A51F7fcB98FbE68a9Cb7A07fB1bA" + }, + "20230414-authorizer-wrapper": { + "AuthorizerWithAdaptorValidation": "0x020301b0a99EFB6816B41007765Fb577259eC418" + }, + "20230316-l2-balancer-pseudo-minter": { + "L2BalancerPseudoMinter": "0x47B489bf5836f83ABD928C316F8e39bC0587B020" + }, + "20230222-merkle-orchard-v2": { + "MerkleOrchard": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + }, + "20220721-balancer-queries": { + "BalancerQueries": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD" + }, + "20230409-erc4626-linear-pool-v4": { + "ERC4626LinearPoolFactory": "0x5C5fCf8fBd4cd563cED27e7D066b88ee20E1867A", + "MockERC4626Token": "0x19DFEF0a828EEC0c85FbB335aa65437417390b85", + "MockERC4626LinearPool": "0xc55eC796A4dEBE625d95436a3531f4950b11bdcf" + }, + "20230316-l2-ve-delegation-proxy": { + "NullVotingEscrow": "0x1311Fbc9F60359639174c1e7cC2032DbDb5Cc4d1", + "VotingEscrowDelegationProxy": "0x0f08eEf2C785AA5e7539684aF04755dEC1347b7c" + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6" + }, + "20230223-protocol-id-registry": { + "ProtocolIdRegistry": "0xa523f47A933D5020b23629dDf689695AA94612Dc" + }, + "20220413-child-chain-gauge-factory": { + "RewardsOnlyGauge": "0x2E96068b3D5B5BAE3D7515da4A1D2E52d08A2647", + "ChildChainStreamer": "0x6f5a2eE11E7a772AeB5114A20d0D7c0ff61EB8A0", + "ChildChainLiquidityGaugeFactory": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac" + }, + "20221124-authorizer-adaptor-entrypoint": { + "AuthorizerAdaptorEntrypoint": "0xAB093cd16e765b5B23D34030aaFaF026558e0A19" + } + }, + "mainnet": { + "20220530-preseeded-voting-escrow-delegation": { + "PreseededVotingEscrowDelegation": "0xB496FF44746A8693A060FafD984Da41B253f6790" + }, + "20230320-weighted-pool-v4": { + "WeightedPoolFactory": "0x897888115Ada5773E02aA29F775430BFB5F34c51", + "MockWeightedPool": "0x8055b8C947De30130BC1Ec750C8F345a50006B23" + }, + "20220823-arbitrum-root-gauge-factory-v2": { + "ArbitrumRootGaugeFactory": "0x1c99324EDC771c82A0DCCB780CC7DDA0045E50e7", + "ArbitrumRootGauge": "0x6337949cbC4825Bbd09242c811770F6F6fee9FfC" + }, + "20221205-l2-gauge-checkpointer": { + "L2GaugeCheckpointer": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" + }, + "20220513-double-entrypoint-fix-relayer": { + "DoubleEntrypointFixRelayer": "0xcA96C4f198d343E251b1a01F3EBA061ef3DA73C1" + }, + "20220325-bal-token-holder-factory": { + "BALTokenHolderFactory": "0xB848f50141F3D4255b37aC288C25C109104F2158" + }, + "20220714-fee-distributor-v2": { + "FeeDistributor": "0xD3cf852898b21fc233251427c2DC93d3d604F3BB" + }, + "20230217-gnosis-root-gauge-factory": { + "GnosisRootGaugeFactory": "0x2a18B396829bc29F66a1E59fAdd7a0269A6605E8", + "GnosisRootGauge": "0x05277CE7D1e365d660624612d8b8b9B55bFD4518" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "BalancerHelpers": "0x5aDDCCa35b7A0D07C74063c48700C8590E87864E", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F" + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A" + }, + "20220420-smart-wallet-checker": { + "SmartWalletChecker": "0x7869296Efd0a76872fEE62A058C8fBca5c1c826C" + }, + "20230314-batch-relayer-v5": { + "BatchRelayerLibrary": "0xf77018c0d817dA22caDbDf504C00c0d32cE1e5C2", + "BalancerRelayer": "0xfeA793Aa415061C483D2390414275AD314B3F621" + }, + "20230208-euler-linear-pool": { + "EulerLinearPoolFactory": "0x5F43FBa61f63Fa6bFF101a0A0458cEA917f6B347", + "MockEulerToken": "0xC101dcA301a4011C1F925e9622e749e550a1B667", + "MockEulerLinearPool": "0xDEC02e6642e2c999aF429F5cE944653CAd15e093" + }, + "20220325-balancer-token-admin": { + "BalancerTokenAdmin": "0xf302f9F50958c5593770FDf4d4812309fF77414f" + }, + "20230320-composable-stable-pool-v4": { + "ComposableStablePoolFactory": "0xfADa0f4547AB2de89D1304A668C39B3E09Aa7c76", + "MockComposableStablePool": "0x5537f945D8c3FCFDc1b8DECEEBD220FAD26aFdA8" + }, + "20230411-managed-pool-v2": { + "ManagedPoolAddRemoveTokenLib": "0x4148bf5B0688eD0a87F317c6534Cb841f503349e", + "CircuitBreakerLib": "0x4967b3353Cdf9E5C67421a3890d35f2f3BB50527", + "ManagedPoolAmmLib": "0xb37646ACBb1A91287721B2CdBe01BA0DbA5E57A2", + "ExternalWeightedMath": "0x3db89f0CA3b388f2BcDbccD2ff8E13C22459CF75", + "RecoveryModeHelper": "0x7827108Af2fd9910EA7cf361d9b827941FA7D809", + "ManagedPoolFactory": "0xBF904F9F340745B4f0c4702c7B6Ab1e808eA6b93", + "MockManagedPool": "0xD0cbF6765997b7CA7Be6440F5E305B2ec7B96065" + }, + "20220325-ve-delegation": { + "VotingEscrowDelegation": "0x2E96068b3D5B5BAE3D7515da4A1D2E52d08A2647", + "VotingEscrowDelegationProxy": "0x6f5a2eE11E7a772AeB5114A20d0D7c0ff61EB8A0" + }, + "20220822-mainnet-gauge-factory-v2": { + "LiquidityGaugeV5": "0xe5F96070CA00cd54795416B1a4b4c2403231c548", + "LiquidityGaugeFactory": "0xf1665E19bc105BE4EDD3739F88315cC699cc5b65" + }, + "00000000-tokens": { + "BAL": "0xba100000625a3754423978a60c9317c58a424e3D", + "WETH": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + }, + "20220823-optimism-root-gauge-factory-v2": { + "OptimismRootGaugeFactory": "0x866D4B65694c66fbFD15Dd6fa933D0A6b3940A36", + "OptimismRootGauge": "0xBC230b1a66A138cD9cFC7b352390025978dFAdde" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20210812-wsteth-rate-provider": { + "WstETHRateProvider": "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768" + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": "0x1b300C86980a5195bCF49bD419A068D98dC133Db" + }, + "20221205-veboost-v2": { + "VeBoostV2": "0x67F8DF125B796B05895a6dc8Ecf944b9556ecb0B" + }, + "20230414-authorizer-wrapper": { + "AuthorizerWithAdaptorValidation": "0x6048A8c631Fb7e77EcA533Cf9C29784e482391e7" + }, + "20220707-distribution-scheduler": { + "DistributionScheduler": "0xBd35248F8325DD1cB2bBf9D01E80A6bb99a792Dd" + }, + "20230222-merkle-orchard-v2": { + "MerkleOrchard": "0xE3881627B8DeeBCCF9c23B291430a549Fc0bE5F7" + }, + "20220721-balancer-queries": { + "BalancerQueries": "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75" + }, + "20230215-single-recipient-gauge-factory-v2": { + "SingleRecipientGaugeFactory": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968", + "SingleRecipientGauge": "0xb2007B8B7E0260042517f635CFd8E6dD2Dd7f007" + }, + "20230409-erc4626-linear-pool-v4": { + "ERC4626LinearPoolFactory": "0x813EE7a840CE909E7Fea2117A44a90b8063bd4fd", + "MockERC4626Token": "0xB99eDc4b289B0F2284fCF3f66884191BdCe29624", + "MockERC4626LinearPool": "0x9516a2d25958EdB8da246a320f2c7d94A0DBe25d" + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5" + }, + "20220325-gauge-controller": { + "VotingEscrow": "0xC128a9954e6c874eA3d62ce62B468bA073093F25", + "GaugeController": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "BalancerMinter": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b" + }, + "20230109-gauge-adder-v3": { + "GaugeAdder": "0x5efBb12F01f27F0E020565866effC1dA491E91A4" + }, + "20230223-protocol-id-registry": { + "ProtocolIdRegistry": "0xc3ccacE87f6d3A81724075ADcb5ddd85a8A1bB68" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20221124-authorizer-adaptor-entrypoint": { + "AuthorizerAdaptorEntrypoint": "0xf5dECDB1f3d1ee384908Fbe16D2F0348AE43a9eA" + }, + "20220823-polygon-root-gauge-factory-v2": { + "PolygonRootGaugeFactory": "0xa98Bce70c92aD2ef3288dbcd659bC0d6b62f8F13", + "PolygonRootGauge": "0xfeb1A24C2752E53576133cdb718F25bC64eBDD52" + } + }, + "avalanche": { + "20230320-weighted-pool-v4": { + "WeightedPoolFactory": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a", + "MockWeightedPool": "0xb2b5B452d53401391155EA48C4451f6E9b0dD058" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F", + "BalancerHelpers": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9" + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b" + }, + "20230314-batch-relayer-v5": { + "BatchRelayerLibrary": "0x45fFd460cC6642B8D8Fb12373DFd77Ceb0f4932B", + "BalancerRelayer": "0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9" + }, + "00000000-tokens": { + "BAL": "0x8239a6b877804206c7799028232a7188da487cec", + "WETH": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7" + }, + "20220527-child-chain-gauge-token-adder": { + "ChildChainGaugeTokenAdder": "0xf302f9F50958c5593770FDf4d4812309fF77414f" + }, + "20220812-child-chain-reward-helper": { + "ChildChainGaugeRewardHelper": "0x2E96068b3D5B5BAE3D7515da4A1D2E52d08A2647" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + }, + "20230414-authorizer-wrapper": { + "AuthorizerWithAdaptorValidation": "0x8df317a729fcaA260306d7de28888932cb579b88" + }, + "20220707-distribution-scheduler": { + "DistributionScheduler": "0xC128a9954e6c874eA3d62ce62B468bA073093F25" + }, + "20220721-balancer-queries": { + "BalancerQueries": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca" + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75" + }, + "20220413-child-chain-gauge-factory": { + "RewardsOnlyGauge": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac", + "ChildChainStreamer": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8", + "ChildChainLiquidityGaugeFactory": "0xb08E16cFc07C684dAA2f93C70323BAdb2A6CBFd2" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20221124-authorizer-adaptor-entrypoint": { + "AuthorizerAdaptorEntrypoint": "0x4E7bBd911cf1EFa442BC1b2e9Ea01ffE785412EC" + } + }, + "bsc": { + "20230320-weighted-pool-v4": { + "WeightedPoolFactory": "0x230a59F4d9ADc147480f03B0D3fFfeCd56c3289a", + "MockWeightedPool": "0xE7eE2d64bCB1B2C915898E9DA0947DA1D413DCAF" + }, + "20230404-l2-layer0-bridge-forwarder": { + "L2LayerZeroBridgeForwarder": "0x20AabBC59F3cE58e0ef931380d8Bf2A6fE681019" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F", + "BalancerHelpers": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9" + }, + "20220725-protocol-fee-percentages-provider": { + "ProtocolFeePercentagesProvider": "0xb08E16cFc07C684dAA2f93C70323BAdb2A6CBFd2" + }, + "20230314-batch-relayer-v5": { + "BatchRelayerLibrary": "0x45fFd460cC6642B8D8Fb12373DFd77Ceb0f4932B", + "BalancerRelayer": "0x03F1ab8b19bcE21EB06C364aEc9e40322572a1e9" + }, + "20230320-composable-stable-pool-v4": { + "ComposableStablePoolFactory": "0x1802953277FD955f9a254B80Aa0582f193cF1d77", + "MockComposableStablePool": "0x7C53dBf28a23faB07E322fb35eC53A296f548a45" + }, + "20230411-managed-pool-v2": { + "ManagedPoolAddRemoveTokenLib": "0x59562f93c447656F6E4799fC1FC7c3d977C3324F", + "CircuitBreakerLib": "0x2498A2B0d6462d2260EAC50aE1C3e03F4829BA95", + "ManagedPoolAmmLib": "0xDEd7Fef7D8eCdcB74F22f0169e1A9EC696e6695d", + "ExternalWeightedMath": "0x8df317a729fcaA260306d7de28888932cb579b88", + "RecoveryModeHelper": "0x3B1eb8EB7b43882b385aB30533D9A2BeF9052a98", + "ManagedPoolFactory": "0x4C32a8a8fDa4E24139B51b456B42290f51d6A1c4", + "MockManagedPool": "0x710A461Ea47AE36C45CBA8Cb6ce964e8A5cb87eD" + }, + "00000000-tokens": { + "WETH": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "BAL": "0xf9815ea1a246401d2ebf2185f207d7db579a2500" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20221123-pool-recovery-helper": { + "PoolRecoveryHelper": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0" + }, + "20230414-authorizer-wrapper": { + "AuthorizerWithAdaptorValidation": "0xAcf05BE5134d64d150d153818F8C67EE36996650" + }, + "20220721-balancer-queries": { + "BalancerQueries": "0x239e55F427D44C3cc793f49bFB507ebe76638a2b" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac" + }, + "20220517-protocol-fee-withdrawer": { + "ProtocolFeesWithdrawer": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD" + }, + "20221124-authorizer-adaptor-entrypoint": { + "AuthorizerAdaptorEntrypoint": "0xeb151668006CD04DAdD098AFd0a82e78F77076c3" + } + }, + "kovan": { + "20220325-bal-token-holder-factory": { + "BALTokenHolderFactory": "0xa98Bce70c92aD2ef3288dbcd659bC0d6b62f8F13" + }, + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "BalancerHelpers": "0x94905e703fEAd7f0fD0eEe355D267eE909784e6d", + "ProtocolFeesCollector": "0xce88686553686DA562CE7Cea497CE749DA109f9F" + }, + "20220325-balancer-token-admin": { + "BalancerTokenAdmin": "0xAB093cd16e765b5B23D34030aaFaF026558e0A19" + }, + "20220325-ve-delegation": { + "VotingEscrowDelegation": "0xDc6d62ae091ea77331542042A72e5E38B188837C", + "VotingEscrowDelegationProxy": "0x98D0d0a65cBeCCaa647a5a95cf27Cf2f00E1231C" + }, + "20220325-test-balancer-token": { + "TestBalancerToken": "0xa2D801064652A269D92EE2A59F3261155ec66830" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20210812-wsteth-rate-provider": { + "WstETHRateProvider": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8" + }, + "20220325-authorizer-adaptor": { + "AuthorizerAdaptor": "0x97207B095e4D5C9a6e4cfbfcd2C3358E03B90c4A" + }, + "20220325-gauge-controller": { + "VotingEscrow": "0x16ba924752EF283C7946db8A122a6742AA35C1DC", + "GaugeController": "0x35c425234DC42e7402f54cC54573f77842963a56", + "BalancerMinter": "0x1bbfa323155526F54EEc458571Bb5A75e0c41507" + }, + "20220413-child-chain-gauge-factory": { + "RewardsOnlyGauge": "0x868543Bb787317632F94fCfe8eB85406B123590C", + "ChildChainStreamer": "0x4De578134995bEA8480D7696946217f356339Ab8", + "ChildChainLiquidityGaugeFactory": "0xf9ac7B9dF2b3454E841110CcE5550bD5AC6f875F" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0x1B57f637Ce3408f1f834b0b70f9A595b062DAea7" + } + }, + "rinkeby": { + "20210418-vault": { + "Vault": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "BalancerHelpers": "0x5aDDCCa35b7A0D07C74063c48700C8590E87864E" + }, + "20210418-authorizer": { + "Authorizer": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6" + }, + "20211202-no-protocol-fee-lbp": { + "NoProtocolFeeLiquidityBootstrappingPoolFactory": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac" + } + } + }, + "old": { + "goerli": { + "20230206-composable-stable-pool-v3": { + "ComposableStablePoolFactory": "0xbfD9769b061E57e478690299011A028194D66e3C", + "MockComposableStablePool": "0x2EF26d97B5870600BE341561298938c2e5df84f0" + }, + "20220628-gauge-adder-v2": { + "GaugeAdder": "0x42bAF6db21250fa76d015621D2F6DF172858A5cb" + }, + "20220325-single-recipient-gauge-factory": { + "SingleRecipientGaugeFactory": "0xd14FFA46C211eac64338c27549c3312380f850Fa", + "SingleRecipientGauge": "0x5825120665066E3B54D1B21ce45889aff5d41f62" + }, + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": "0xeb151668006CD04DAdD098AFd0a82e78F77076c3", + "BalancerRelayer": "0x00e695aA8000df01B8DC8401B4C34Fba5D56BBb2" + }, + "20210721-liquidity-bootstrapping-pool": { + "LiquidityBootstrappingPoolFactory": "0xb48Cc42C45d262534e46d5965a9Ac496F1B7a830" + }, + "20221122-composable-stable-pool-v2": { + "ComposableStablePoolFactory": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "MockComposableStablePool": "0x373b347bc87998b151A5E9B6bB6ca692b766648a" + }, + "20220425-unbutton-aave-linear-pool": { + "UnbuttonAaveLinearPoolFactory": "0x4b9A00DD766DB94Df48C2901C321174a5cE75529" + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": "0x26575A44755E0aaa969FDda1E4291Df22C5624Ea", + "MockWeightedPool": "0x0441ff033652bcEB75a011887F17B5dfC84Ddc6f" + }, + "20221021-managed-pool": { + "ManagedPoolAddRemoveTokenLib": "0x0343311A33994a3d27273505560ED73dC2BD0Db3", + "CircuitBreakerLib": "0x782640c4e71F523152AE0942ee7589fB24c8367D", + "ManagedPoolFactory": "0x3EAd2FdcBEE244d9fA5b8d233EfedD34Bb7D2434" + }, + "20211208-aave-linear-pool": { + "AaveLinearPoolFactory": "0x94470C12fc192e071F12Fec1152861608CE01562" + }, + "20220817-aave-rebalanced-linear-pool": { + "AaveLinearPoolFactory": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD" + }, + "20220908-weighted-pool-v2": { + "WeightedPoolFactory": "0x94f68b54191F62f781Fe8298A8A5Fa3ed772d227" + }, + "20230213-yearn-linear-pool": { + "YearnLinearPoolFactory": "0x2a12a248f9b56cE6e7fAbA62D1bBA8735FB513F9", + "MockYearnTokenVault": "0x057Cf03e3E0EC8D5a5FaFb3A0fC99a0aA0C1989e", + "MockYearnLinearPool": "0x6D2b8b4EBa8ac88F8467D84bE010d344bFBD90e2" + }, + "20230206-erc4626-linear-pool-v3": { + "ERC4626LinearPoolFactory": "0xBa240C856498e2d7a70AF4911AaFae0D6b565a5B", + "MockERC4626Token": "0xa1C22168262fbaf5a87b9Aa6A13122BE630085E9", + "MockERC4626LinearPool": "0x744644537fB1AE7c4E05f6331e87126b4fd0C325" + }, + "20211012-merkle-orchard": { + "MerkleOrchard": "0x35b50C7955e7D0E8298e043C9F4dCDef737b9f5a" + }, + "20220420-fee-distributor": { + "FeeDistributor": "0x7F91dcdE02F72b478Dc73cB21730cAcA907c8c44" + }, + "20220325-gauge-adder": { + "GaugeAdder": "0x0Df18b22fB1DD4c1D4bfBF783A8acF0758979328" + }, + "20230213-gearbox-linear-pool": { + "GearboxLinearPoolFactory": "0x806E02Dea8d4a0882caD9fA3Fa75B212328692dE", + "MockGearboxVault": "0xa496bE32F7C9Abc49E8ba91A23d37cF6fA58651B", + "MockGearboxDieselToken": "0x4E11AEec21baF1660b1a46472963cB3DA7811C89", + "MockGearboxLinearPool": "0x007E1830BcC05039c3926d6478F6B2912376e52E" + }, + "20210812-lido-relayer": { + "LidoRelayer": "0xdc10e8f47B6858E32218E01db224795235872B19" + }, + "20210907-investment-pool": { + "InvestmentPoolFactory": "0x3C9F788131A26329A689Bd951b5aCb4454669487" + }, + "20230206-aave-rebalanced-linear-pool-v4": { + "AaveLinearPoolFactory": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "MockAaveLendingPool": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "MockStaticAToken": "0x9dd5Db2d38b50bEF682cE532bCca5DfD203915E1", + "MockAaveLinearPool": "0x707B7d4a1bAe449d546DCAb869256591bbB3d70b" + }, + "20211203-batch-relayer": { + "BatchRelayerLibrary": "0xFB2f4CE9843E1069CC1F9d76e0236d6dFF2b1eeA", + "BalancerRelayer": "0x8002d3e5875b38C5B03da83aeB430dC63E047F62" + }, + "20220404-erc4626-linear-pool-v2": { + "ERC4626LinearPoolFactory": "0xdc15A3C5D16413C1C1F75Db0f75c4ae2a4104650" + }, + "20220609-stable-pool-v2": { + "StablePoolFactory": "0xD360B8afb3d7463bE823bE1Ec3c33aA173EbE86e" + }, + "20211208-stable-phantom-pool": { + "StablePhantomPoolFactory": "0x41E9036AE350baEDCC7107760A020Dca3c0731ec" + }, + "20221207-aave-rebalanced-linear-pool-v3": { + "AaveLinearPoolFactory": "0x70Bbd023481788e443472e123AB963e5EBF58D06", + "MockAaveLendingPool": "0xBF6d7e9a6db814D2856c9e2f83442f60f9D40738", + "MockStaticAToken": "0xAAda0aF3FA5C819145dA760bab8F180DaeeA8514", + "MockAaveLinearPool": "0xf93F6382913d1dE6Bdf683A94be8349751af8d59" + }, + "20210624-stable-pool": { + "StablePoolFactory": "0x44afeb87c871D8fEA9398a026DeA2BD3A13F5769" + }, + "20210418-weighted-pool": { + "WeightedPoolFactory": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9", + "WeightedPool2TokensFactory": "0xA5bf2ddF098bb0Ef6d120C98217dD6B141c74EE0" + }, + "20221202-timelock-authorizer": { + "TimelockAuthorizerMigrator": "0xee47ef369CDa5a65639D7794b70a4d247826DdF3", + "TimelockAuthorizer": "0x5D21A65b6Ec0687f471891257F1DA25ab8be6153" + }, + "20220325-mainnet-gauge-factory": { + "LiquidityGaugeV5": "0xfE734760aD346d4013FD597c4f4a897aef332128", + "LiquidityGaugeFactory": "0x224E808FBD9e491Be8988B8A0451FBF777C81B8A" + }, + "20210727-meta-stable-pool": { + "QueryProcessor": "0xf97c7788d2D74b12CbAb2Efa0c69a44280211457", + "MetaStablePoolFactory": "0xA55F73E2281c60206ba43A3590dB07B8955832Be" + }, + "20220906-composable-stable-pool": { + "ComposableStablePoolFactory": "0xB848f50141F3D4255b37aC288C25C109104F2158" + }, + "20220318-batch-relayer-v2": { + "BatchRelayerLibrary": "0x10aF508f3b0e067Dd5eA3149A003457F49C8bB69", + "BalancerRelayer": "0x12A39C1A0d17f354d02670961DEf678223Aa15Da" + }, + "20220720-batch-relayer-v3": { + "BatchRelayerLibrary": "0xdcdbf71A870cc60C6F9B621E28a7D3Ffd6Dd4965", + "BalancerRelayer": "0x7b9B6f094DC2Bd1c12024b0D9CC63d6993Be1888" + } + }, + "gnosis": { + "20230206-composable-stable-pool-v3": { + "ComposableStablePoolFactory": "0xC128468b7Ce63eA702C1f104D55A2566b13D3ABD", + "MockComposableStablePool": "0x07c896050dD6E273c199f06d7516F8A4A369d23A" + }, + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8", + "BalancerRelayer": "0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3" + }, + "20221122-composable-stable-pool-v2": { + "ComposableStablePoolFactory": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "MockComposableStablePool": "0x707B7d4a1bAe449d546DCAb869256591bbB3d70b" + }, + "20220425-unbutton-aave-linear-pool": { + "UnbuttonAaveLinearPoolFactory": "0x4fb47126Fa83A8734991E41B942Ac29A3266C968" + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": "0xC128a9954e6c874eA3d62ce62B468bA073093F25", + "MockWeightedPool": "0xE051605A83dEAe38d26a7346B100EF1AC2ef8a0b" + }, + "20220908-weighted-pool-v2": { + "WeightedPoolFactory": "0xf302f9F50958c5593770FDf4d4812309fF77414f" + }, + "20230206-aave-rebalanced-linear-pool-v4": { + "AaveLinearPoolFactory": "0x9dA18982a33FD0c7051B19F0d7C76F2d5E7e017c", + "MockAaveLendingPool": "0x81cFAE226343B24BA12EC6521Db2C79E7aeeb310", + "MockStaticAToken": "0xa523f47A933D5020b23629dDf689695AA94612Dc", + "MockAaveLinearPool": "0x225E0047671939A8d78e08EBd692788Abe63f15c" + }, + "20220404-erc4626-linear-pool-v2": { + "ERC4626LinearPoolFactory": "0x4132f7AcC9dB7A6cF7BE2Dd3A9DC8b30C7E6E6c8" + }, + "20220609-stable-pool-v2": { + "StablePoolFactory": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843" + }, + "20221207-aave-rebalanced-linear-pool-v3": { + "AaveLinearPoolFactory": "0x9dd5Db2d38b50bEF682cE532bCca5DfD203915E1", + "MockAaveLendingPool": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "MockStaticAToken": "0x5cF4928a3205728bd12830E1840F7DB85c62a4B9", + "MockAaveLinearPool": "0x581Ec1f5e7CeD12B186deaE32256AdB53BDd5B08" + } + }, + "bsc": { + "20230206-composable-stable-pool-v3": { + "ComposableStablePoolFactory": "0xacAaC3e6D6Df918Bf3c809DFC7d42de0e4a72d4C", + "MockComposableStablePool": "0xB521E108c8aC5aD91Dc16d0001b7253D3B3beBC5" + }, + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "BalancerRelayer": "0x4574ccBcC09A00C9eE55fB92Fe353699A4fA800e" + }, + "20221122-composable-stable-pool-v2": { + "ComposableStablePoolFactory": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "MockComposableStablePool": "0x373b347bc87998b151A5E9B6bB6ca692b766648a" + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": "0x6e4cF292C5349c79cCd66349c3Ed56357dD11B46", + "MockWeightedPool": "0x463957510888720f1EA65B599e996aaD4264206A" + }, + "20220817-aave-rebalanced-linear-pool": { + "AaveLinearPoolFactory": "0x2E96068b3D5B5BAE3D7515da4A1D2E52d08A2647" + }, + "20220908-weighted-pool-v2": { + "WeightedPoolFactory": "0xC128a9954e6c874eA3d62ce62B468bA073093F25" + }, + "20230206-aave-rebalanced-linear-pool-v4": { + "AaveLinearPoolFactory": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "MockAaveLendingPool": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "MockStaticAToken": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "MockAaveLinearPool": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f" + }, + "20221207-aave-rebalanced-linear-pool-v3": { + "AaveLinearPoolFactory": "0x1cbbE6cEa5E4fE7D69c586b4e362A646DEEf105d", + "MockAaveLendingPool": "0x4C4287b07d293E361281bCeEe8715c8CDeB64E34", + "MockStaticAToken": "0x6d471c05f8A99Bd8f991467A8283e3DC968b8D7c", + "MockAaveLinearPool": "0x1a505Ba1cA84D1A4dCF14c8E4866e556B060c974" + }, + "20220906-composable-stable-pool": { + "ComposableStablePoolFactory": "0xf302f9F50958c5593770FDf4d4812309fF77414f" + } + }, + "mainnet": { + "20230206-composable-stable-pool-v3": { + "ComposableStablePoolFactory": "0xdba127fBc23fb20F5929C546af220A991b5C6e01", + "MockComposableStablePool": "0x222bc81C6F3C17e9e9Aba47a12f55a1Dea42f163" + }, + "20220628-gauge-adder-v2": { + "GaugeAdder": "0x2fFB7B215Ae7F088eC2530C7aa8E1B24E398f26a" + }, + "20220325-single-recipient-gauge-factory": { + "SingleRecipientGaugeFactory": "0x94f68b54191F62f781Fe8298A8A5Fa3ed772d227", + "SingleRecipientGauge": "0x5D3d2D18148baAcE45D09254513BcF2C548C4480" + }, + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": "0xd02992266BB6a6324A3aB8B62FeCBc9a3C58d1F9", + "BalancerRelayer": "0x2536dfeeCB7A0397CF98eDaDA8486254533b1aFA" + }, + "20210721-liquidity-bootstrapping-pool": { + "LiquidityBootstrappingPoolFactory": "0x751A0bC0e3f75b38e01Cf25bFCE7fF36DE1C87DE" + }, + "20221122-composable-stable-pool-v2": { + "ComposableStablePoolFactory": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "MockComposableStablePool": "0x373b347bc87998b151A5E9B6bB6ca692b766648a" + }, + "20220425-unbutton-aave-linear-pool": { + "UnbuttonAaveLinearPoolFactory": "0x9588c26142e345f1A0d005CfC0C6DF29A8Fa010C" + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": "0x5Dd94Da3644DDD055fcf6B3E1aa310Bb7801EB8b", + "MockWeightedPool": "0x1576d472d82A72a1Ec7C57FcA770BD752D124A62" + }, + "20221021-managed-pool": { + "ManagedPoolAddRemoveTokenLib": "0xE42FFA682A26EF8F25891db4882932711D42e467", + "CircuitBreakerLib": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "ManagedPoolFactory": "0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B" + }, + "20211208-aave-linear-pool": { + "AaveLinearPoolFactory": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8" + }, + "20220817-aave-rebalanced-linear-pool": { + "AaveLinearPoolFactory": "0x6A0AC04f5C2A10297D5FA79FA6358837a8770041" + }, + "20220908-weighted-pool-v2": { + "WeightedPoolFactory": "0xcC508a455F5b0073973107Db6a878DdBDab957bC" + }, + "20230213-yearn-linear-pool": { + "YearnLinearPoolFactory": "0x8b7854708c0C54f9D7d1FF351D4F84E6dE0E134C", + "MockYearnTokenVault": "0x5C5fCf8fBd4cd563cED27e7D066b88ee20E1867A", + "MockYearnLinearPool": "0x0a0fb4ff697de5ac5b6770cd8ee1b72af80b57cf" + }, + "20230206-erc4626-linear-pool-v3": { + "ERC4626LinearPoolFactory": "0x67A25ca2350Ebf4a0C475cA74C257C94a373b828", + "MockERC4626Token": "0xE605Dbe1cA85dCdb8F43CEfA427f3B0fC06f6ba6", + "MockERC4626LinearPool": "0xfeF969638C52899f91781f1Be594aF6f40B99BAd" + }, + "20211012-merkle-orchard": { + "MerkleOrchard": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca" + }, + "20220420-fee-distributor": { + "FeeDistributor": "0x26743984e3357eFC59f2fd6C1aFDC310335a61c9" + }, + "20220325-gauge-adder": { + "GaugeAdder": "0xEd5ba579bB5D516263ff6E1C10fcAc1040075Fe2" + }, + "20230213-gearbox-linear-pool": { + "GearboxLinearPoolFactory": "0x2EbE41E1aa44D61c206A94474932dADC7D3FD9E3", + "MockGearboxVault": "0x7ADbdabaA80F654568421887c12F09E0C7BD9629", + "MockGearboxDieselToken": "0x4bE0E4d6184348c5BA845a4010528CFC779610b8", + "MockGearboxLinearPool": "0xa8b103A10A94f4f2D7Ed2FdCd5545E8075573307" + }, + "20210812-lido-relayer": { + "LidoRelayer": "0xdcdbf71A870cc60C6F9B621E28a7D3Ffd6Dd4965" + }, + "20220413-arbitrum-root-gauge-factory": { + "ArbitrumRootGaugeFactory": "0xad901309d9e9DbC5Df19c84f729f429F0189a633", + "ArbitrumRootGauge": "0x715C777C6149C31A75D0d29633bbBE0A14370bDC" + }, + "20210907-investment-pool": { + "InvestmentPoolFactory": "0x48767F9F868a4A7b86A90736632F6E44C2df7fa9" + }, + "20230206-aave-rebalanced-linear-pool-v4": { + "AaveLinearPoolFactory": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "MockAaveLendingPool": "0x9dd5Db2d38b50bEF682cE532bCca5DfD203915E1", + "MockStaticAToken": "0x9805dcfD25e6De36bad8fe9D3Fe2c9b44B764102", + "MockAaveLinearPool": "0x331d50e0b00fc1C32742F151E56B9B616227E23E" + }, + "20211203-batch-relayer": { + "BatchRelayerLibrary": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac", + "BalancerRelayer": "0xAc9f49eF3ab0BbC929f7b1bb0A17E1Fca5786251" + }, + "20220404-erc4626-linear-pool-v2": { + "ERC4626LinearPoolFactory": "0xE061bF85648e9FA7b59394668CfEef980aEc4c66" + }, + "20220609-stable-pool-v2": { + "StablePoolFactory": "0x8df6EfEc5547e31B0eb7d1291B511FF8a2bf987c" + }, + "20211208-stable-phantom-pool": { + "StablePhantomPoolFactory": "0xb08E16cFc07C684dAA2f93C70323BAdb2A6CBFd2" + }, + "20220628-optimism-root-gauge-factory": { + "OptimismRootGaugeFactory": "0x3083A1C455ff38d39e58Dbac5040f465cF73C5c8", + "OptimismRootGauge": "0xcA734aD0b286EA7dD6367a504a48FB75cd12a97F" + }, + "20221207-aave-rebalanced-linear-pool-v3": { + "AaveLinearPoolFactory": "0x7d833FEF5BB92ddb578DA85fc0c35cD5Cc00Fb3e", + "MockAaveLendingPool": "0x9061D0D56F162D3de7f855828A34ace1eEd3a5BE", + "MockStaticAToken": "0xf9F5E0f3f74F57755a8c8be7b2FeDcAa40673080", + "MockAaveLinearPool": "0x813E3fE1761f714c502d1d2d3a7CCEB33f37F59D" + }, + "20210624-stable-pool": { + "StablePoolFactory": "0xc66Ba2B6595D3613CCab350C886aCE23866EDe24" + }, + "20210418-weighted-pool": { + "WeightedPoolFactory": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9", + "WeightedPool2TokensFactory": "0xA5bf2ddF098bb0Ef6d120C98217dD6B141c74EE0" + }, + "20221202-timelock-authorizer": { + "TimelockAuthorizerMigrator": "0xf8ee6f1F9B54F9b2C192D703ea2d22112cBC062b", + "TimelockAuthorizer": "0x9E3cD0606Db55ac68845bB60121847823712ae05" + }, + "20220413-polygon-root-gauge-factory": { + "PolygonRootGaugeFactory": "0x4C4287b07d293E361281bCeEe8715c8CDeB64E34", + "PolygonRootGauge": "0xe53D8f8aAaFD95FCc7196E393EC5a907Df44495E" + }, + "20220325-mainnet-gauge-factory": { + "LiquidityGaugeV5": "0x3b8cA519122CdD8efb272b0D3085453404B25bD0", + "LiquidityGaugeFactory": "0x4E7bBd911cf1EFa442BC1b2e9Ea01ffE785412EC" + }, + "20210811-ldo-merkle": { + "MerkleRedeem": "0x884226c9f7b7205f607922E0431419276a64CF8f" + }, + "20210727-meta-stable-pool": { + "QueryProcessor": "0x469b58680774AAc9Ad66447eFB4EF634756A2cC5", + "MetaStablePoolFactory": "0x67d27634E44793fE63c467035E31ea8635117cd4" + }, + "20220906-composable-stable-pool": { + "ComposableStablePoolFactory": "0xf9ac7B9dF2b3454E841110CcE5550bD5AC6f875F" + }, + "20220318-batch-relayer-v2": { + "BatchRelayerLibrary": "0xd45369c11870e2057D5be17Cc106d32Ea416F7c4", + "BalancerRelayer": "0x51CC53375A8920aE54C0561E73a9d0423A74832e" + }, + "20220720-batch-relayer-v3": { + "BatchRelayerLibrary": "0xD966d712F470067B60D37246404D6DFe5Bf0B419", + "BalancerRelayer": "0x886A3Ec7bcC508B8795990B60Fa21f85F9dB7948" + } + }, + "optimism": { + "20230206-composable-stable-pool-v3": { + "ComposableStablePoolFactory": "0xe2E901AB09f37884BA31622dF3Ca7FC19AA443Be", + "MockComposableStablePool": "0x9BF7c3b63c77b4B4F2717776F15A4bec1b532a28" + }, + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": "0x8E5698dC4897DC12243c8642e77B4f21349Db97C", + "BalancerRelayer": "0x1a58897Ab366082028ced3740900ecBD765Af738" + }, + "20221122-composable-stable-pool-v2": { + "ComposableStablePoolFactory": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "MockComposableStablePool": "0x373b347bc87998b151A5E9B6bB6ca692b766648a" + }, + "20220425-unbutton-aave-linear-pool": { + "UnbuttonAaveLinearPoolFactory": "0x6d471c05f8A99Bd8f991467A8283e3DC968b8D7c" + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": "0xA0DAbEBAAd1b243BBb243f933013d560819eB66f", + "MockWeightedPool": "0xbC99aa9bD55d3f8431Ecec24Da03AEc1D6e62754" + }, + "20221021-managed-pool": { + "ManagedPoolAddRemoveTokenLib": "0xF24917fB88261a37Cc57F686eBC831a5c0B9fD39", + "CircuitBreakerLib": "0xE42FFA682A26EF8F25891db4882932711D42e467", + "ManagedPoolFactory": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288" + }, + "20220817-aave-rebalanced-linear-pool": { + "AaveLinearPoolFactory": "0x994086630773dC6cB54D3A5E0Ef0963532789E75" + }, + "20220908-weighted-pool-v2": { + "WeightedPoolFactory": "0xad901309d9e9DbC5Df19c84f729f429F0189a633" + }, + "20230213-yearn-linear-pool": { + "YearnLinearPoolFactory": "0xD8B6b96c88ad626EB6209c4876e3B14f45f8803A", + "MockYearnTokenVault": "0x1b986138a4F2aA538E79fdEC222dad93F8d66703", + "MockYearnLinearPool": "0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32" + }, + "20230206-erc4626-linear-pool-v3": { + "ERC4626LinearPoolFactory": "0xa3B9515A9c557455BC53F7a535A85219b59e8B2E", + "MockERC4626Token": "0x62aaB12865d7281048c337D53a4dde9d770321E6", + "MockERC4626LinearPool": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca" + }, + "20230206-aave-rebalanced-linear-pool-v4": { + "AaveLinearPoolFactory": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "MockAaveLendingPool": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "MockStaticAToken": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "MockAaveLinearPool": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f" + }, + "20220404-erc4626-linear-pool-v2": { + "ERC4626LinearPoolFactory": "0x4C4287b07d293E361281bCeEe8715c8CDeB64E34" + }, + "20220609-stable-pool-v2": { + "StablePoolFactory": "0xeb151668006CD04DAdD098AFd0a82e78F77076c3" + }, + "20221207-aave-rebalanced-linear-pool-v3": { + "AaveLinearPoolFactory": "0xAd3CC7852382C09fdCE54784292c6aB7fb9Df917", + "MockAaveLendingPool": "0x56017074321ce77E2F88F2233830f5b29d4cf595", + "MockStaticAToken": "0xcA96C4f198d343E251b1a01F3EBA061ef3DA73C1", + "MockAaveLinearPool": "0x5936497ffE0dBA0eF272D6301D65c0122862971A" + }, + "20210624-stable-pool": { + "StablePoolFactory": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac" + }, + "20210418-weighted-pool": { + "WeightedPoolFactory": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca", + "WeightedPool2TokensFactory": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20210727-meta-stable-pool": { + "QueryProcessor": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8", + "MetaStablePoolFactory": "0xb08E16cFc07C684dAA2f93C70323BAdb2A6CBFd2" + }, + "20220906-composable-stable-pool": { + "ComposableStablePoolFactory": "0xf145caFB67081895EE80eB7c04A30Cf87f07b745" + }, + "20220720-batch-relayer-v3": { + "BatchRelayerLibrary": "0x5c89d9E1A668d0B39F4EC242F280bdDd445C633c", + "BalancerRelayer": "0x195CcCBE464EF9073d1f7A1ba1C9Bf0f56dfFFff" + } + }, + "arbitrum": { + "20230206-composable-stable-pool-v3": { + "ComposableStablePoolFactory": "0x1c99324EDC771c82A0DCCB780CC7DDA0045E50e7", + "MockComposableStablePool": "0x231B05F3a92d578EFf772f2Ddf6DacFFB3609749" + }, + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": "0x967F7AdD4Fd5AF0553B7A45F225ec26EDD699E61", + "BalancerRelayer": "0x5bf3B7c14b10f16939d63Bd679264A1Aa951B4D5" + }, + "20210721-liquidity-bootstrapping-pool": { + "LiquidityBootstrappingPoolFactory": "0x142B9666a0a3A30477b052962ddA81547E7029ab" + }, + "20221122-composable-stable-pool-v2": { + "ComposableStablePoolFactory": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "MockComposableStablePool": "0x373b347bc87998b151A5E9B6bB6ca692b766648a" + }, + "20220425-unbutton-aave-linear-pool": { + "UnbuttonAaveLinearPoolFactory": "0x8878f1273466157a79570DdE1A42130e551B6EAd" + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": "0xf1665E19bc105BE4EDD3739F88315cC699cc5b65", + "MockWeightedPool": "0x96d7e549eA1d810725e4Cd1f51ed6b4AE8496338" + }, + "20221021-managed-pool": { + "ManagedPoolAddRemoveTokenLib": "0xF24917fB88261a37Cc57F686eBC831a5c0B9fD39", + "CircuitBreakerLib": "0xE42FFA682A26EF8F25891db4882932711D42e467", + "ManagedPoolFactory": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288" + }, + "20211208-aave-linear-pool": { + "AaveLinearPoolFactory": "0xdcdbf71A870cc60C6F9B621E28a7D3Ffd6Dd4965" + }, + "20220817-aave-rebalanced-linear-pool": { + "AaveLinearPoolFactory": "0xe2E901AB09f37884BA31622dF3Ca7FC19AA443Be" + }, + "20220908-weighted-pool-v2": { + "WeightedPoolFactory": "0x8df6EfEc5547e31B0eb7d1291B511FF8a2bf987c" + }, + "20230213-yearn-linear-pool": { + "YearnLinearPoolFactory": "0xD8B6b96c88ad626EB6209c4876e3B14f45f8803A", + "MockYearnTokenVault": "0x1b986138a4F2aA538E79fdEC222dad93F8d66703", + "MockYearnLinearPool": "0x81fC12C60ee5b753cf5fD0ADC342dFb5f3817E32" + }, + "20230206-erc4626-linear-pool-v3": { + "ERC4626LinearPoolFactory": "0xa3B9515A9c557455BC53F7a535A85219b59e8B2E", + "MockERC4626Token": "0x62aaB12865d7281048c337D53a4dde9d770321E6", + "MockERC4626LinearPool": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca" + }, + "20211012-merkle-orchard": { + "MerkleOrchard": "0x751A0bC0e3f75b38e01Cf25bFCE7fF36DE1C87DE" + }, + "20210928-mcb-arbitrum-merkle": { + "MerkleRedeem": "0xC6bD2497332d24094eC16a7261eec5C412B5a2C1" + }, + "20210907-investment-pool": { + "InvestmentPoolFactory": "0xaCd615B3705B9c880E4E7293f1030B34e57B4c1c" + }, + "20230206-aave-rebalanced-linear-pool-v4": { + "AaveLinearPoolFactory": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "MockAaveLendingPool": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "MockStaticAToken": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "MockAaveLinearPool": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f" + }, + "20211203-batch-relayer": { + "BatchRelayerLibrary": "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", + "BalancerRelayer": "0x466262c2a275aB106E54D95B5B04603e12b58cA1" + }, + "20220404-erc4626-linear-pool-v2": { + "ERC4626LinearPoolFactory": "0x2794953110874981a0d301286c986992022A62a1" + }, + "20210913-bal-arbitrum-merkle": { + "MerkleRedeem": "0x6bd0B17713aaa29A2d7c9A39dDc120114f9fD809" + }, + "20220609-stable-pool-v2": { + "StablePoolFactory": "0xEF44D6786b2b4d544b7850Fe67CE6381626Bf2D6" + }, + "20211208-stable-phantom-pool": { + "StablePhantomPoolFactory": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca" + }, + "20221207-aave-rebalanced-linear-pool-v3": { + "AaveLinearPoolFactory": "0xa2D801064652A269D92EE2A59F3261155ec66830", + "MockAaveLendingPool": "0xAB093cd16e765b5B23D34030aaFaF026558e0A19", + "MockStaticAToken": "0x16ba924752EF283C7946db8A122a6742AA35C1DC", + "MockAaveLinearPool": "0xa612B6AeD2E7ca1A3a4f23FbcA9128461bBB7718" + }, + "20210624-stable-pool": { + "StablePoolFactory": "0x2433477A10FC5d31B9513C638F19eE85CaED53Fd" + }, + "20210418-weighted-pool": { + "WeightedPoolFactory": "0x7dFdEF5f355096603419239CE743BfaF1120312B", + "WeightedPool2TokensFactory": "0xCF0a32Bbef8F064969F21f7e02328FB577382018" + }, + "20210727-meta-stable-pool": { + "QueryProcessor": "0x6783995f91A3D7f7C24B523669488F96cCa88d31", + "MetaStablePoolFactory": "0xEBFD5681977E38Af65A7487DC70B8221D089cCAD" + }, + "20220906-composable-stable-pool": { + "ComposableStablePoolFactory": "0xaEb406b0E430BF5Ea2Dc0B9Fe62E4E53f74B3a33" + }, + "20220318-batch-relayer-v2": { + "BatchRelayerLibrary": "0x1554ee754707D5C93b7934AF404747Aba521Aaf2", + "BalancerRelayer": "0x440eC9C8b78518D420E6fb6c6c838421F28BC280" + }, + "20220720-batch-relayer-v3": { + "BatchRelayerLibrary": "0x4f4269F7008430860693aeDB86b0C55962D6E9b7", + "BalancerRelayer": "0x42E49B48573c725ee32d2579060Ed06894f97002" + } + }, + "polygon": { + "20230206-composable-stable-pool-v3": { + "ComposableStablePoolFactory": "0x7bc6C0E73EDAa66eF3F6E2f27b0EE8661834c6C9", + "MockComposableStablePool": "0xeff1d57A28167E6982DCa1D63321810400f73929" + }, + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": "0x156C628135327F41748D8c8802fC043870714E9a", + "BalancerRelayer": "0x28A224d9d398a1eBB7BA69BCA515898966Bb1B6b" + }, + "20210721-liquidity-bootstrapping-pool": { + "LiquidityBootstrappingPoolFactory": "0x751A0bC0e3f75b38e01Cf25bFCE7fF36DE1C87DE" + }, + "20221122-composable-stable-pool-v2": { + "ComposableStablePoolFactory": "0x85a80afee867aDf27B50BdB7b76DA70f1E853062", + "MockComposableStablePool": "0x373b347bc87998b151A5E9B6bB6ca692b766648a" + }, + "20220425-unbutton-aave-linear-pool": { + "UnbuttonAaveLinearPoolFactory": "0x6bAF5Fa330F2d7C59f2bB57cF4b2C927B7f160d2" + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": "0x82e4cFaef85b1B6299935340c964C942280327f4", + "MockWeightedPool": "0x93ECf386cD53718aF16a09C325a56D1bB60aDc37" + }, + "20221021-managed-pool": { + "ManagedPoolAddRemoveTokenLib": "0xE42FFA682A26EF8F25891db4882932711D42e467", + "CircuitBreakerLib": "0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288", + "ManagedPoolFactory": "0x9Ac3E70dB606659Bf32D4BdFbb687AD193FD1F5B" + }, + "20211208-aave-linear-pool": { + "AaveLinearPoolFactory": "0xf302f9F50958c5593770FDf4d4812309fF77414f" + }, + "20220817-aave-rebalanced-linear-pool": { + "AaveLinearPoolFactory": "0x8df6EfEc5547e31B0eb7d1291B511FF8a2bf987c" + }, + "20220908-weighted-pool-v2": { + "WeightedPoolFactory": "0x0e39C3D9b2ec765eFd9c5c70BB290B1fCD8536E3" + }, + "20230213-yearn-linear-pool": { + "YearnLinearPoolFactory": "0x7396f99B48e7436b152427bfA3DD6Aa8C7C6d05B", + "MockYearnTokenVault": "0x533a16F90E7d3Ca31dbc608E5EC54967710F0D2A", + "MockYearnLinearPool": "0x0320C1C5B6df19A194D48882aaEC1c72940081D9" + }, + "20230206-erc4626-linear-pool-v3": { + "ERC4626LinearPoolFactory": "0xa3B9515A9c557455BC53F7a535A85219b59e8B2E", + "MockERC4626Token": "0x040dBA12Bb3D5C0A73ddfe84C220Be3ddBA06966", + "MockERC4626LinearPool": "0xf984eb2B8a7eF780245a797A2fCcd82f346409ca" + }, + "20211012-merkle-orchard": { + "MerkleOrchard": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20210907-investment-pool": { + "InvestmentPoolFactory": "0x0f7bb7ce7b6ed9366F9b6B910AdeFE72dC538193" + }, + "20230206-aave-rebalanced-linear-pool-v4": { + "AaveLinearPoolFactory": "0xf23b4DB826DbA14c0e857029dfF076b1c0264843", + "MockAaveLendingPool": "0x76578ecf9a141296Ec657847fb45B0585bCDa3a6", + "MockStaticAToken": "0xb9F8AB3ED3F3aCBa64Bc6cd2DcA74B7F38fD7B88", + "MockAaveLinearPool": "0x11884dA90FB4221b3aa288a7741C51eC4Fc43B2f" + }, + "20211203-batch-relayer": { + "BatchRelayerLibrary": "0x8F42aDBbA1B16EaAE3BB5754915E0D06059aDd75", + "BalancerRelayer": "0x4574ccBcC09A00C9eE55fB92Fe353699A4fA800e" + }, + "20220404-erc4626-linear-pool-v2": { + "ERC4626LinearPoolFactory": "0x6637dA12881f66dC7E42b8879B0a79faF43C9be2" + }, + "20220609-stable-pool-v2": { + "StablePoolFactory": "0xcA96C4f198d343E251b1a01F3EBA061ef3DA73C1" + }, + "20211208-stable-phantom-pool": { + "StablePhantomPoolFactory": "0xC128a9954e6c874eA3d62ce62B468bA073093F25" + }, + "20221207-aave-rebalanced-linear-pool-v3": { + "AaveLinearPoolFactory": "0x35c425234DC42e7402f54cC54573f77842963a56", + "MockAaveLendingPool": "0x1bbfa323155526F54EEc458571Bb5A75e0c41507", + "MockStaticAToken": "0xD487eec3EF2Be7a3d06D37F406d878DC7c50deEF", + "MockAaveLinearPool": "0xFA2C0bd8327C99db5bdE4c9e9E5cbF30946351bb" + }, + "20210624-stable-pool": { + "StablePoolFactory": "0xc66Ba2B6595D3613CCab350C886aCE23866EDe24" + }, + "20210418-weighted-pool": { + "WeightedPoolFactory": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9", + "WeightedPool2TokensFactory": "0xA5bf2ddF098bb0Ef6d120C98217dD6B141c74EE0" + }, + "20210727-meta-stable-pool": { + "QueryProcessor": "0x72D07D7DcA67b8A406aD1Ec34ce969c90bFEE768", + "MetaStablePoolFactory": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca" + }, + "20220906-composable-stable-pool": { + "ComposableStablePoolFactory": "0x136FD06Fa01eCF624C7F2B3CB15742c1339dC2c4" + }, + "20220318-batch-relayer-v2": { + "BatchRelayerLibrary": "0xC4eD21Aa0Bec959ED7e4A83B2CD46dd00a0205dA", + "BalancerRelayer": "0xF537dDd7f4cc72C6C08866b62EAe9378f1F62da8" + }, + "20220304-erc4626-linear-pool": { + "ERC4626LinearPoolFactory": "0xC6bD2497332d24094eC16a7261eec5C412B5a2C1" + }, + "20220720-batch-relayer-v3": { + "BatchRelayerLibrary": "0x5ef4c5352882b10893b70DbcaA0C000965bd23c5", + "BalancerRelayer": "0xcf6a66E32dCa0e26AcC3426b851FD8aCbF12Dac7" + } + }, + "kovan": { + "20220325-single-recipient-gauge-factory": { + "SingleRecipientGaugeFactory": "0x866D4B65694c66fbFD15Dd6fa933D0A6b3940A36" + }, + "20210721-liquidity-bootstrapping-pool": { + "LiquidityBootstrappingPoolFactory": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20220425-unbutton-aave-linear-pool": { + "UnbuttonAaveLinearPoolFactory": "0x3e197287Cf17bfe139A9E8eDb16765911aAdC5eb" + }, + "20211208-aave-linear-pool": { + "AaveLinearPoolFactory": "0x94522C4586cb15E08AFF943545Fb2c8Ca7f508cE" + }, + "20211012-merkle-orchard": { + "MerkleOrchard": "0xc33e0fE411322009947931c32d2273ee645cDb5B" + }, + "20220420-fee-distributor": { + "FeeDistributor": "0xcC508a455F5b0073973107Db6a878DdBDab957bC" + }, + "20220325-gauge-adder": { + "GaugeAdder": "0x1c99324EDC771c82A0DCCB780CC7DDA0045E50e7" + }, + "20210812-lido-relayer": { + "LidoRelayer": "0x41B953164995c11C81DA73D212ED8Af25741b7Ac" + }, + "20210907-investment-pool": { + "InvestmentPoolFactory": "0xb08E16cFc07C684dAA2f93C70323BAdb2A6CBFd2" + }, + "20211203-batch-relayer": { + "BatchRelayerLibrary": "0x22be81ecAe87F1Ae1db9e17d6B072f846e07FC45", + "BalancerRelayer": "0x6bfd48F3873E21F7686982d352b610E1523c218B" + }, + "20220404-erc4626-linear-pool-v2": { + "ERC4626LinearPoolFactory": "0x44284efFA14964feF15CB13e4a6579D3b3AD7e14" + }, + "20220609-stable-pool-v2": { + "StablePoolFactory": "0x1F47AB83420Cd1F818Df9aCBD6Ee68341bB91592" + }, + "20211208-stable-phantom-pool": { + "StablePhantomPoolFactory": "0x6c7F4D97269eCE163fd08D5C2584A21E4a33934c" + }, + "20210624-stable-pool": { + "StablePoolFactory": "0x751dfDAcE1AD995fF13c927f6f761C6604532c79" + }, + "20210418-weighted-pool": { + "WeightedPoolFactory": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9", + "WeightedPool2TokensFactory": "0xA5bf2ddF098bb0Ef6d120C98217dD6B141c74EE0" + }, + "20220325-mainnet-gauge-factory": { + "LiquidityGaugeV5": "0xe5F96070CA00cd54795416B1a4b4c2403231c548", + "LiquidityGaugeFactory": "0xf1665E19bc105BE4EDD3739F88315cC699cc5b65" + }, + "20210727-meta-stable-pool": { + "QueryProcessor": "0x88919A6C36359d449322Cd40451749553C6E33A2", + "MetaStablePoolFactory": "0x590E544e7Ca956Bb878F8C873E82e65550d67D2F" + }, + "20220318-batch-relayer-v2": { + "BatchRelayerLibrary": "0x029FAC26e77e6f781B6A466ACf539C8bDf5e26c3", + "BalancerRelayer": "0xbC74ae15b2d7196729a0dFB1E3C38Dc97299C55b" + } + }, + "avalanche": { + "20220916-batch-relayer-v4": { + "BatchRelayerLibrary": "0x6f5a2eE11E7a772AeB5114A20d0D7c0ff61EB8A0", + "BalancerRelayer": "0x9A7b723101ba5A4672960A3b65840AB3b7805048" + }, + "20230206-weighted-pool-v3": { + "WeightedPoolFactory": "0x94f68b54191F62f781Fe8298A8A5Fa3ed772d227", + "MockWeightedPool": "0xE867AD0a48e8f815DC0cda2CDb275e0F163A480b" + } + }, + "rinkeby": { + "20210721-liquidity-bootstrapping-pool": { + "LiquidityBootstrappingPoolFactory": "0xdcdbf71A870cc60C6F9B621E28a7D3Ffd6Dd4965" + }, + "20211012-merkle-orchard": { + "MerkleOrchard": "0x0F3e0c4218b7b0108a3643cFe9D3ec0d4F57c54e" + }, + "20210907-investment-pool": { + "InvestmentPoolFactory": "0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca" + }, + "20211203-batch-relayer": { + "BatchRelayerLibrary": "0xD7FAD3bd59D6477cbe1BE7f646F7f1BA25b230f8", + "BalancerRelayer": "0xeF606F58A4FD0fCcb066c6203d0994694d3eB2D3" + }, + "20210624-stable-pool": { + "StablePoolFactory": "0xc66Ba2B6595D3613CCab350C886aCE23866EDe24" + }, + "20210418-weighted-pool": { + "WeightedPoolFactory": "0x8E9aa87E45e92bad84D5F8DD1bff34Fb92637dE9", + "WeightedPool2TokensFactory": "0xA5bf2ddF098bb0Ef6d120C98217dD6B141c74EE0" + }, + "20210727-meta-stable-pool": { + "QueryProcessor": "0x81DFdF96Cc20313Fd38c87e6Cb9482214d74Cf70", + "MetaStablePoolFactory": "0x751dfDAcE1AD995fF13c927f6f761C6604532c79" + } + } + } +} \ No newline at end of file diff --git a/tools/python/helpers/path_utils.py b/tools/python/helpers/path_utils.py new file mode 100644 index 000000000..96c8a92f0 --- /dev/null +++ b/tools/python/helpers/path_utils.py @@ -0,0 +1,14 @@ +from pathlib import Path + + +def find_project_root(current_path=None): + # Find the project root by looking for multisigs.md anchor file + anchor_file = "multisigs.md" + if current_path is None: + current_path = Path(__file__).resolve().parent + if (current_path / anchor_file).exists(): + return current_path + parent = current_path.parent + if parent == current_path: + raise FileNotFoundError("Project root not found") + return find_project_root(parent) diff --git a/tools/python/merge_pr_jsons.py b/tools/python/merge_pr_jsons.py index 265f1a7fa..c83132a98 100644 --- a/tools/python/merge_pr_jsons.py +++ b/tools/python/merge_pr_jsons.py @@ -14,10 +14,12 @@ def main(): pr_branch_root = f'{os.environ["GITHUB_WORKSPACE"]}/pr' main_branch_root = f'{os.environ["GITHUB_WORKSPACE"]}/main' if debug: - print(f"main_branch_rooot: ${main_branch_root}\npr_branch_root:{pr_branch_root}") + print( + f"main_branch_rooot: ${main_branch_root}\npr_branch_root:{pr_branch_root}" + ) github_repo = os.environ["GITHUB_REPOSITORY"] pr_number = os.environ["PR_NUMBER"] - api_url = f'https://api.github.com/repos/{github_repo}/pulls/{pr_number}/files' + api_url = f"https://api.github.com/repos/{github_repo}/pulls/{pr_number}/files" if debug: print(f"api url: {api_url}") url = urlopen(api_url) @@ -29,16 +31,20 @@ def main(): # Get the list of modified and added files changed_files = [] for file_json in pr_file_data: - changed_files.append(file_json['filename']) + changed_files.append(file_json["filename"]) if debug: print(f"Changed Files:{changed_files}") # Filter the list of added files for json files - json_files = [filename for filename in changed_files if filename.endswith(".json") and "BIPs/BIP" in filename] + json_files = [ + filename + for filename in changed_files + if filename.endswith(".json") and "BIPs/BIP" in filename + ] # Extract the relevant information from the JSON file for json_file in json_files: if debug: - print(f"Processing ${json_file}") + print(f"Processing {json_file}") # Get the JSON file from the repository with open(f"{pr_branch_root}/{json_file}", "r") as json_data: data = json.load(json_data) @@ -55,21 +61,31 @@ def main(): file_name = f"{chain_id}-{created_from_safe_address}.json" # Check if the file already exists if debug: - print(f"output json file path is: {main_branch_root}/BIPs/{dir_name}/{file_name}") + print( + f"output json file path is: {main_branch_root}/BIPs/{dir_name}/{file_name}" + ) if os.path.exists(f"{main_branch_root}/BIPs/{dir_name}/{file_name}"): # If the file exists, read the existing transactions - with open(f"{main_branch_root}/BIPs/{dir_name}/{file_name}", "r") as existing_file: + with open( + f"{main_branch_root}/BIPs/{dir_name}/{file_name}", "r" + ) as existing_file: existing_data = json.load(existing_file) # Add the new transactions to the existing transactions existing_data["transactions"].extend(transactions) - # Write the new file + # Write the new file if debug: - print(f"transactions to add as part of ${json_file} are : \n {transactions}") - with open(f"{main_branch_root}/BIPs/{dir_name}/{file_name}", "w") as output_file: + print( + f"transactions to add as part of ${json_file} are : \n {transactions}" + ) + with open( + f"{main_branch_root}/BIPs/{dir_name}/{file_name}", "w" + ) as output_file: json.dump(existing_data, output_file, indent=6) # Otherwise seed the new multisig file with the entirety of the source json else: - with open(f"{main_branch_root}/BIPs/{dir_name}/{file_name}", "w") as new_file: + with open( + f"{main_branch_root}/BIPs/{dir_name}/{file_name}", "w" + ) as new_file: json.dump(data, new_file, indent=6) diff --git a/tools/python/merkl.py b/tools/python/merkl.py new file mode 100644 index 000000000..832455aa2 --- /dev/null +++ b/tools/python/merkl.py @@ -0,0 +1,93 @@ +import json +from datetime import datetime + +import requests + + +BASE_URL = "https://api.merkl.xyz/" +MERKL_DISTRIBUTOR = "0x3Ef3D8bA38EBe18DB133cEc108f4D14CE00Dd9Ae" + + +def claim_merkl(chain_id, user): + """ + build safe payload for claiming rewards from merkl + ref: https://docs.merkl.xyz/integrate-merkl/integrate-merkl#v3-userrewards + """ + url = f"{BASE_URL}/v3/userRewards?" + params = {"user": user, "chainId": chain_id, "proof": True} + r = requests.get(url, params=params) + try: + r.raise_for_status() + except: + print(r.json()) + result = r.json() + claim = {"user": [], "tokens": [], "amounts": [], "proofs": []} + for token in result: + claim["user"].append(user) + claim["tokens"].append(token) + claim["amounts"].append(result[token]["accumulated"]) + claim["proofs"].append(result[token]["proof"]) + + if len(claim["user"]) > 0: + payload = { + "chainId": str(chain_id), + "createdAt": int(datetime.timestamp(datetime.now())), + "meta": { + "name": "Transactions Batch", + "description": "Claim all earned rewards from Merkl", + "createdFromSafeAddress": str(user), + }, + "transactions": [ + { + "to": MERKL_DISTRIBUTOR, + "value": "0", + "data": None, + "contractMethod": { + "inputs": [ + { + "internalType": "address[]", + "name": "users", + "type": "address[]", + }, + { + "internalType": "address[]", + "name": "tokens", + "type": "address[]", + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]", + }, + { + "internalType": "bytes32[][]", + "name": "proofs", + "type": "bytes32[][]", + }, + ], + "name": "claim", + "payable": False, + }, + "contractInputsValues": { + "users": str(claim["user"]), + "tokens": str(claim["tokens"]), + "amounts": str(claim["amounts"]), + "proofs": str(claim["proofs"]), + }, + } + ], + } + else: + return + return payload + + +if __name__ == "__main__": + chain = 1 + user = "0x529619a10129396a2F642cae32099C1eA7FA2834" + payload = claim_merkl(chain, user) + with open( + f"../../MaxiOps/merkl/{payload['createdAt']}-{chain}-{user}.json", + "w", + ) as f: + json.dump(payload, f, indent=2) diff --git a/tools/python/mimicTestSweep.py b/tools/python/mimicTestSweep.py new file mode 100644 index 000000000..6ba6b6005 --- /dev/null +++ b/tools/python/mimicTestSweep.py @@ -0,0 +1,76 @@ +import json +from dotmap import DotMap +from datetime import date +from os import listdir +from os.path import isfile, join + +### Whitelist tokens are swept every run regardless of min amount. +whitelist_tokens = [] + +today = str(date.today()) +target_dir = "../../FeeSweep" +# The input data is sometimes rounded. amount - dust_factor/amount is swept. Larger dust factor = less dust +dust_factor = 1 + + +def generateSweepFile(sourcefile): + # sweeps is a map with addresses as keys and sweep amounts as values + pct_to_sweep = 0.05 + sweeps = {} + report = "" + total = 0 + with open(sourcefile, "r") as f: + data = json.load(f) + chain = data[0]["chain"] + sweep_limit = 0 + for feeData in data: + symbol = feeData["symbol"] + address = feeData["id"] + rounded_raw_amount = int(feeData["raw_amount"] * pct_to_sweep) + raw_amount = int(rounded_raw_amount) + amount = feeData["amount"] * pct_to_sweep + rounded_amount = "{:.4f}".format(amount) + price = feeData["price"] + usd_value = int(amount) * price + if raw_amount > 0: + sweeps[address] = raw_amount + report += ( + f"Sweep {rounded_amount} of {symbol}({address}) worth ${usd_value}\n" + ) + total += usd_value + else: + print(f"skipping {symbol} with amount {amount}") + report += f"\n>>>Total USD Value of sweeps at time of input json: ${total}" + print(report) + + # Generate JSON + with open(f"{target_dir}/feeSweep.json", "r") as f: + tx_builder = json.load(f) + tx_out_map = DotMap(tx_builder) + # TX builder wants lists in a string, addresses unquoted, and large integers without e+ + tx_out_map.transactions[0].contractInputsValues.tokens = str( + list(sweeps.keys()) + ).replace("'", "") + tx_out_map.transactions[0].contractInputsValues.amounts = str(list(sweeps.values())) + tx_out_map.transactions[ + 0 + ].contractInputsValues.recipient = ( + "0x7f4b5250C63E24360055342D2a4427079290F044" ## Mimic mock withdrawer (op) + ) + with open(f"{target_dir}/out/{today}-{chain}.json", "w") as f: + json.dump(dict(tx_out_map), f) + f.write("\n") + with open(f"{target_dir}/out/{today}-{chain}.report.txt", "w") as f: + f.write(report) + + +def main(): + sourcefiles = [f for f in listdir(target_dir) if isfile(join(target_dir, f))] + for file in sourcefiles: + if (today in file) & (".json" in file): + print(f"\n\n--------- Processing {target_dir}{file} ---------\n") + generateSweepFile(f"{target_dir}/{file}") + + +if __name__ == "__main__": + main() diff --git a/tools/python/paladin_claiming/recycle_bribes.py b/tools/python/paladin_claiming/recycle_bribes.py new file mode 100644 index 000000000..ce73bb6d8 --- /dev/null +++ b/tools/python/paladin_claiming/recycle_bribes.py @@ -0,0 +1,211 @@ +import json +from dotenv import load_dotenv +from typing import List +import sys +from pathlib import Path +import os +from datetime import datetime +from decimal import Decimal + +# make parent dirs available to import from +sys.path.append(str(Path(__file__).parent.parent)) + +import requests +from web3 import Web3 +from bal_addresses import AddrBook +from bal_tools.safe_tx_builder import SafeTxBuilder, SafeContract +from bal_tools import Web3RpcByChain +from helpers.path_utils import find_project_root + + +load_dotenv() + + +PROJECT_ROOT = find_project_root() +SCRIPT_DIR = Path(__file__).parent +BASE_PATH = PROJECT_ROOT / "MaxiOps/paladin_bribes" +CURRENT_DATE = datetime.now().strftime("%Y-%m-%d") + +w3_by_chain = Web3RpcByChain(os.getenv("DRPC_KEY")) +flatbook_mainnet = AddrBook("mainnet").flatbook +flatbook_arb = AddrBook("arbitrum").flatbook + +omni_safe = flatbook_mainnet["multisigs/maxi_omni"] + +CHAIN_ADDRS = { + "mainnet": { + "bribe_vault": flatbook_mainnet["hidden_hand2/bribe_vault"], + "bal_briber": flatbook_mainnet["hidden_hand2/balancer_briber"], + }, + "arbitrum": { + "bribe_vault": flatbook_arb["hidden_hand2/bribe_vault"], + "bal_briber": flatbook_arb["hidden_hand2/bal_briber"], + }, +} + +ABI_DIR = PROJECT_ROOT / "tools/python/abis" +paladin_distributor_abi = json.load(open(ABI_DIR / "MultiMerkleDistributorV2.json")) +erc20_abi = json.load(open(ABI_DIR / "ERC20.json")) +bribe_market_abi = json.load(open(ABI_DIR / "BribeMarket.json")) + + +def fetch_claimable_paladin_bribes(address: str) -> List[dict]: + response = requests.get( + f"https://api.paladin.vote/quest/v3/copilot/claims/{address}" + ) + response.raise_for_status() + return response.json()["claims"] + + +def get_prop_hash(target: str) -> str: + prop = Web3.solidity_keccak(["address"], [Web3.to_checksum_address(target)]) + return f"0x{prop.hex().lstrip('0x')}" + + +def create_dirs_for_date(base_path: Path, date: str): + date_dir = base_path / date + for chain in ["mainnet", "arbitrum"]: + chain_dir = date_dir / chain + os.makedirs(chain_dir, exist_ok=True) + with open(chain_dir / ".gitkeep", "w") as f: + f.write("") + return date_dir + + +def get_chain_dirs(base_dir: Path, chain_name: str) -> Path: + return base_dir / chain_name + + +def claim_paladin_bribes(claims: List[dict], chain_name: str, date_dir: Path) -> str: + """ + - generate tx to claim all bribes from paladin + - save claim results to csv + """ + w3 = w3_by_chain[chain_name] + + unique_distributors = set(claim["distributor"] for claim in claims) + distributor_contracts = { + addr: SafeContract(addr, paladin_distributor_abi) + for addr in unique_distributors + } + + chain_dir = get_chain_dirs(date_dir, chain_name) + csv_path = chain_dir / f"paladin_claims_{chain_name}_{CURRENT_DATE}.csv" + + with open(csv_path, "w") as f: + f.write("chain,token_address,gauge_address,amount,amount_mantissa\n") + + for claim in claims: + print(f"Claiming - token: {claim['token']}, gauge: {claim['gauge']}") + + distributor = distributor_contracts[claim["distributor"]] + + distributor.claim( + claim["questId"], + claim["period"], + claim["index"], + claim["user"], + claim["amount"], + claim["proofs"], + ) + + token_contract = w3.eth.contract( + address=Web3.to_checksum_address(claim["token"]), abi=erc20_abi + ) + decimals = token_contract.functions.decimals().call() + amount = Decimal(claim["amount"]) / Decimal(10**decimals) + + f.write( + f"{chain_name},{claim['token']},{claim['gauge']},{amount},{claim['amount']}\n" + ) + + return csv_path + + +def deposit_hh_bribes( + csv_path: str, chain_name: str, builder: SafeTxBuilder, date_dir: Path +): + """ + - generate tx to deposit 70% of claimed bribe amounts on HH + - save remaining 30% (DAO fee) to separate csv + - output final transaction payload for claims and deposits + """ + chain_addrs = CHAIN_ADDRS[chain_name] + chain_dir = get_chain_dirs(date_dir, chain_name) + + sell_csv_path = ( + chain_dir / f"paladin_tokens_to_sell_{chain_name}_{CURRENT_DATE}.csv" + ) + + with open(sell_csv_path, "w") as f: + f.write("chain,token_address,amount,amount_mantissa\n") + + # Aggregate claimed bribes by amounts by token and gauge + aggregated_bribes = {} + with open(csv_path, "r") as f: + next(f) + for line in f: + _, token, gauge, _, amount_mantissa = line.strip().split(",") + key = (token, gauge) + aggregated_bribes[key] = aggregated_bribes.get(key, Decimal(0)) + Decimal( + amount_mantissa + ) + + token_sell_amounts = {} + + # Process aggregated bribes + for (token, gauge), amount_mantissa in aggregated_bribes.items(): + print( + f"depositing bribe on HH - token: {token}, gauge: {gauge}, amount: {amount_mantissa}" + ) + + brib_token = SafeContract(token, erc20_abi) + briber = SafeContract(chain_addrs["bal_briber"], bribe_market_abi) + + prop_hash = get_prop_hash(gauge) + assert prop_hash, f"no prop hash for {gauge}" + + # deposit 70% + bribe_amount_decimal = amount_mantissa * Decimal("0.7") + bribe_amount_mantissa = int(bribe_amount_decimal) + + # sell rest for later + token_sell_amounts[token] = ( + token_sell_amounts.get(token, Decimal(0)) + + amount_mantissa + - Decimal(bribe_amount_mantissa) + ) + + brib_token.approve(chain_addrs["bribe_vault"], bribe_amount_mantissa) + briber.depositBribe(prop_hash, token, bribe_amount_mantissa, 0, 2) + + # output sell amounts to csv + with open(sell_csv_path, "a") as f: + for token, sell_amount_mantissa in token_sell_amounts.items(): + token_contract = w3_by_chain[chain_name].eth.contract( + address=Web3.to_checksum_address(token), abi=erc20_abi + ) + decimals = token_contract.functions.decimals().call() + amount = sell_amount_mantissa / Decimal(10**decimals) + sell_amount_mantissa_int = int(sell_amount_mantissa) + f.write(f"{chain_name},{token},{amount},{sell_amount_mantissa_int}\n") + + builder.output_payload( + chain_dir / f"paladin_bribe_recycling_{chain_name}_{CURRENT_DATE}.json" + ) + + +if __name__ == "__main__": + date_dir = create_dirs_for_date(BASE_PATH, CURRENT_DATE) + + claims = fetch_claimable_paladin_bribes(omni_safe) + mainnet_claims = [claim for claim in claims if claim["chainId"] == 1] + arb_claims = [claim for claim in claims if claim["chainId"] == 42161] + + for chain_name, chain_claims in [ + ("mainnet", mainnet_claims), + ("arbitrum", arb_claims), + ]: + builder = SafeTxBuilder(safe_address=omni_safe, chain_name=chain_name) + csv_path = claim_paladin_bribes(chain_claims, chain_name, date_dir) + deposit_hh_bribes(csv_path, chain_name, builder, date_dir) diff --git a/tools/python/query_upkeeps.py b/tools/python/query_upkeeps.py new file mode 100644 index 000000000..5209d57e9 --- /dev/null +++ b/tools/python/query_upkeeps.py @@ -0,0 +1,36 @@ +import os + +import pandas as pd +from dune_client.client import DuneClient +from dune_client.types import QueryParameter +from dune_client.query import QueryBase + + +dune = DuneClient.from_env() + + +def get_upkeeps(chain="ethereum"): + query = QueryBase( + name="@gosuto/cla_chain_upkeeps", + query_id=3889683, + params=[ + QueryParameter.enum_type(name="chain", value=chain), + ], + ) + return dune.run_query_dataframe(query) + + +if __name__ == "__main__": + dfs = [] + for chain in [ + "ethereum", + "arbitrum", + "polygon", + "optimism", + "avalanche_c", + "base", + "gnosis", + ]: + dfs.append(get_upkeeps(chain)) + dfs = pd.concat(dfs) + dfs.to_csv("../../upkeeps.csv", index=False) diff --git a/tools/python/rateChangeTxList.json b/tools/python/rateChangeTxList.json new file mode 100644 index 000000000..6416a74d1 --- /dev/null +++ b/tools/python/rateChangeTxList.json @@ -0,0 +1,131 @@ +[ + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": [ + "0x2d8a0dc8170e2251ed6ab59cc43a981d1e05511d06a8c65226eb06278e3ae231" + ], + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + }, + { + "to": "0x50Cf90B954958480b8DF7958A9E965752F627124", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xeB486AF868AeB3b6e53066abc9623b1041b42bc0", + "duration": 21600 + } + }, + { + "to": "0x50Cf90B954958480b8DF7958A9E965752F627124", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xeB486AF868AeB3b6e53066abc9623b1041b42bc0", + "duration": 21600 + } + }, + { + "to": "0x50Cf90B954958480b8DF7958A9E965752F627124", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "0xeB486AF868AeB3b6e53066abc9623b1041b42bc0", + "duration": 21600 + } + }, + { + "to": "0xA331D84eC860Bf466b4CdCcFb4aC09a1B43F3aE6", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRoles", + "payable": false + }, + "contractInputsValues": { + "roles": [ + "0x2d8a0dc8170e2251ed6ab59cc43a981d1e05511d06a8c65226eb06278e3ae231" + ], + "account": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f" + } + } +] \ No newline at end of file diff --git a/tools/python/requirements.txt b/tools/python/requirements.txt index 93f0a607f..eb23cae94 100644 --- a/tools/python/requirements.txt +++ b/tools/python/requirements.txt @@ -1,2 +1,12 @@ +eth-abi==5.0.1 datetime dotmap +pandas +tabulate +requests +web3 +git+https://github.com/BalancerMaxis/bal_addresses@main +dune-client +pytest +dataclasses-json +python-dotenv diff --git a/tools/python/standardize_poolRateCache.py b/tools/python/standardize_poolRateCache.py new file mode 100644 index 000000000..5857bc435 --- /dev/null +++ b/tools/python/standardize_poolRateCache.py @@ -0,0 +1,132 @@ +import requests +import json +import pandas as pd +import os +import re +from dotenv import load_dotenv +from helpers.addresses import get_registry_by_chain_id +from web3 import Web3 +from dotmap import DotMap + +# from great_ape_safe import GreatApeSafe +import collections +from helpers.addresses import get_registry_by_chain_id + +INFURA_KEY = os.getenv("WEB3_INFURA_PROJECT_ID") + +w3_by_chain = { + "mainnet": Web3(Web3.HTTPProvider(f"https://mainnet.infura.io/v3/{INFURA_KEY}")), + "arbitrum": Web3( + Web3.HTTPProvider(f"https://arbitrum-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "optimism": Web3( + Web3.HTTPProvider(f"https://optimism-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "polygon": Web3( + Web3.HTTPProvider(f"https://polygon-mainnet.infura.io/v3/{INFURA_KEY}") + ), + "gnosis": Web3(Web3.HTTPProvider(f"https://rpc.gnosischain.com/")), +} + +ALL_CHAINS_MAP = { + "mainnet": 1, + "polygon": 137, + "arbitrum": 42161, + "optimism": 10, + "gnosis": 100, +} + + +def set_cache_durations(addresses, duration, chain="mainnet"): + r = get_registry_by_chain_id(ALL_CHAINS_MAP[chain]) + w3 = w3_by_chain[chain] + changelist = [] + vault = w3.eth.contract(r.balancer.vault, abi=json.load(open("./abis/IVault.json"))) + for address in addresses: + pool = w3.eth.contract( + address, abi=json.load(open("./abis/IComposibleStable.json")) + ) + poolId = pool.functions.getPoolId().call() + tokens = vault.functions.getPoolTokens(poolId).call()[0] + for token in tokens: + if token == address: + continue + currentDuration = pool.functions.getTokenRateCache(token).call()[2] + if currentDuration != duration: + print( + f"token: {token} in pool {pool.address} has a cache rate of {currentDuration} instead of {duration}" + ) + changelist.append([address, token]) + return changelist + + +def build_changes_tx_list(changelist, duration): + txlist = [] + with open(f"./tx_builder_templates/setTokenRateCacheDuration.json", "r") as f: + template = json.load(f) + for pool, token in changelist: + tx = template[0] + tx["to"] = pool + tx["contractInputsValues"]["token"] = token + tx["contractInputsValues"]["duration"] = duration + txlist.append(tx) + return txlist + + +def get_action_id(chain, deployment, contract, call): + action_ids_list = f"https://raw.githubusercontent.com/balancer-labs/balancer-v2-monorepo/master/pkg/deployments/action-ids/{chain}/action-ids.json" + try: + result = requests.get(action_ids_list).json() + except requests.exceptions.HTTPError as err: + print(f"URL: {requests.request.url} returned error {err}") + return result[deployment][contract]["actionIds"][call] + + +def grant_permissions(actionId, chain): + r = get_registry_by_chain_id(ALL_CHAINS_MAP[chain]) + with open(f"./tx_builder_templates/authorizor_grant_roles.json", "r") as f: + template = json.load(f) + tx = template["transactions"][0] + tx["to"] = r.balancer.Authorizer + tx["contractInputsValues"]["roles"] = [actionId] + tx["contractInputsValues"]["account"] = r.balancer.multisigs.dao + return tx + + +def revoke_permissions(actionId, chain): + r = get_registry_by_chain_id(ALL_CHAINS_MAP[chain]) + with open(f"./tx_builder_templates/authorizor_grant_roles.json", "r") as f: + template = json.load(f) + tx = template["transactions"][0] + tx["to"] = r.balancer.Authorizer + tx["contractMethod"]["name"] = "revokeRoles" + tx["contractInputsValues"]["roles"] = [actionId] + tx["contractInputsValues"]["account"] = r.balancer.multisigs.dao + return tx + + +def main(chain="mainnet"): + ### Grant Permissions + tx_list = [] + actionId = get_action_id( + chain=chain, + deployment="20230206-composable-stable-pool-v3", + contract="ComposableStablePool", + call="setTokenRateCacheDuration(address,uint256)", + ) + tx_list.append(grant_permissions(actionId, chain)) + ### Make Changes + changelist = set_cache_durations( + [Web3.toChecksumAddress("0x50cf90b954958480b8df7958a9e965752f627124")], 21600 + ) + tx_list.extend(build_changes_tx_list(changelist, 21600)) + ### Revoke Permissions + tx_list.append(revoke_permissions(actionId, chain)) + + with open(f"./rateChangeTxList.json", "w") as f: + json.dump(tx_list, f) + f.write("\n") + + +if __name__ == "__main__": + main() diff --git a/tools/python/sweepFees.py b/tools/python/sweepFees.py index 98074cb00..77bca0523 100644 --- a/tools/python/sweepFees.py +++ b/tools/python/sweepFees.py @@ -3,11 +3,17 @@ from datetime import date from os import listdir from os.path import isfile, join +from bal_addresses import AddrBook + +### Whitelist tokens are swept every run regardless of min amount. +whitelist_tokens = [] today = str(date.today()) -target_dir = "../../Feeswap/" +target_dir = "../../FeeSweep" # The input data is sometimes rounded. amount - dust_factor/amount is swept. Larger dust factor = less dust -dust_factor = 100000000 +dust_factor = 10000 + + def generateSweepFile(sourcefile): # sweeps is a map with addresses as keys and sweep amounts as values sweeps = {} @@ -16,46 +22,61 @@ def generateSweepFile(sourcefile): with open(sourcefile, "r") as f: data = json.load(f) chain = data[0]["chain"] + if chain == "avax": + chain = "avalanche" if chain == "eth": - sweep_limit = 10000 + chain = "mainnet" + if chain == "pze": + chain = "zkevm" + print(chain) + a = AddrBook(chain) + if chain == "mainnet": + sweep_limit = 500 else: - sweep_limit = 5000 + sweep_limit = 100 for feeData in data: symbol = feeData["symbol"] address = feeData["id"] rounded_raw_amount = int(feeData["raw_amount"]) - raw_amount = int(rounded_raw_amount - rounded_raw_amount/dust_factor) + raw_amount = int(rounded_raw_amount - rounded_raw_amount / dust_factor) amount = feeData["amount"] rounded_amount = "{:.4f}".format(amount) price = feeData["price"] usd_value = int(amount) * price - if usd_value > sweep_limit: + if usd_value > sweep_limit or address in whitelist_tokens: sweeps[address] = raw_amount - report += f"Sweep {rounded_amount} of {symbol}({address}) worth ${usd_value}\n" + report += ( + f"Sweep {rounded_amount} of {symbol}({address}) worth ${usd_value}\n" + ) total += usd_value report += f"\n>>>Total USD Value of sweeps at time of input json: ${total}" print(report) # Generate JSON - with open(f"{target_dir}feeSweep.json", "r") as f: + with open(f"{target_dir}/feeSweep.json", "r") as f: tx_builder = json.load(f) tx_out_map = DotMap(tx_builder) # TX builder wants lists in a string, addresses unquoted, and large integers without e+ - tx_out_map.transactions[0].contractInputsValues.tokens = str(list(sweeps.keys())).replace("'", "") + tx_out_map.transactions[0].to = a.search_unique("FeesWithdraw").address + + tx_out_map.transactions[0].contractInputsValues.tokens = str( + list(sweeps.keys()) + ).replace("'", "") tx_out_map.transactions[0].contractInputsValues.amounts = str(list(sweeps.values())) - with open(f"{target_dir}out/{today}-{chain}.json", "w") as f: + with open(f"{target_dir}/out/{today}-{chain}.json", "w") as f: json.dump(dict(tx_out_map), f) - with open(f"{target_dir}out/{today}-{chain}.report.txt", "w") as f: + f.write("\n") + with open(f"{target_dir}/out/{today}-{chain}.report.txt", "w") as f: f.write(report) + def main(): sourcefiles = [f for f in listdir(target_dir) if isfile(join(target_dir, f))] for file in sourcefiles: if (today in file) & (".json" in file): print(f"\n\n--------- Processing {target_dir}{file} ---------\n") - generateSweepFile(f"{target_dir}{file}") + generateSweepFile(f"{target_dir}/{file}") + if __name__ == "__main__": main() - - diff --git a/tools/python/sweepFeesNoJson.py b/tools/python/sweepFeesNoJson.py new file mode 100644 index 000000000..a1980cb53 --- /dev/null +++ b/tools/python/sweepFeesNoJson.py @@ -0,0 +1,61 @@ +import json +from dotmap import DotMap +from datetime import date +from os import listdir +from os.path import isfile, join +from brownie import Contract, chain +from web3 import Web3 + + +### Whitelist tokens are swept every run regardless of min amount. +whitelist_tokens = [] + +chain = chain.id + +today = str(date.today()) +target_dir = "../../FeeSweep" +# The input data is sometimes rounded. amount - dust_factor/amount is swept. Larger dust factor = less dust +dust_factor = 10000 + + +def genSweepsFromTokenList(tokenlist, collector): + sweeps = {} + for address in tokenlist: + address = Web3.toChecksumAddress(address) + token = Contract.from_explorer(address) + sweeps[address] = token.balanceOf(collector) + return sweeps + + +def generateSweepFile(tokenlist): + # sweeps is a map with addresses as keys and sweep amounts as values + sweeps = {} + report = "" + total = 0 + sweeps = genSweepsFromTokenList(tokenlist, collector) + # Generate JSON + with open(f"{target_dir}/feeSweep.json", "r") as f: + tx_builder = json.load(f) + tx_out_map = DotMap(tx_builder) + # TX builder wants lists in a string, addresses unquoted, and large integers without e+ + tx_out_map.transactions[0].contractInputsValues.tokens = str( + list(sweeps.keys()) + ).replace("'", "") + tx_out_map.transactions[0].contractInputsValues.amounts = str(list(sweeps.values())) + with open(f"{target_dir}/out/{today}-{chain}.json", "w") as f: + json.dump(dict(tx_out_map), f) + f.write("\n") + with open(f"{target_dir}/out/{today}-{chain}.report.txt", "w") as f: + f.write(report) + + +def main(): + sourcefiles = [f for f in listdir(target_dir) if isfile(join(target_dir, f))] + for file in sourcefiles: + if (today in file) & (".json" in file): + print(f"\n\n--------- Processing {target_dir}{file} ---------\n") + generateSweepFile(f"{target_dir}/{file}") + + +if __name__ == "__main__": + main() diff --git a/tools/python/tx_builder_templates/approve.json b/tools/python/tx_builder_templates/approve.json new file mode 100644 index 000000000..c01506341 --- /dev/null +++ b/tools/python/tx_builder_templates/approve.json @@ -0,0 +1,25 @@ +{ + "to": "", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "rawAmount", + "type": "uint256" + } + ], + "name": "approve", + "payable": false + }, + "contractInputsValues": { + "spender": "", + "rawAmount": "0" + } +} \ No newline at end of file diff --git a/tools/python/tx_builder_templates/authorizor_grant_roles.json b/tools/python/tx_builder_templates/authorizor_grant_roles.json new file mode 100644 index 000000000..6ade4139a --- /dev/null +++ b/tools/python/tx_builder_templates/authorizor_grant_roles.json @@ -0,0 +1,40 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "", + "checksum": "" + }, + "transactions": [ + { + "to": "", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes32[]", + "name": "roles", + "type": "bytes32[]" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRoles", + "payable": false + }, + "contractInputsValues": { + "roles": "[0x0000000000000000000000000000000000000000000000000, 0x0000000000000000000000000000000000000000000000000]", + "account": "0x0000000000000000000000000000000000000000" + } + } + ] +} \ No newline at end of file diff --git a/tools/python/tx_builder_templates/base.json b/tools/python/tx_builder_templates/base.json new file mode 100644 index 000000000..7fbe6e8dd --- /dev/null +++ b/tools/python/tx_builder_templates/base.json @@ -0,0 +1,14 @@ +{ + "version": "1.0", + "chainId": "", + "createdAt": 1675891944772, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.13.2", + "createdFromSafeAddress": "", + "createdFromOwnerAddress": "" + }, + "transactions": [ + ] +} \ No newline at end of file diff --git a/tools/python/tx_builder_templates/bribe_aura.json b/tools/python/tx_builder_templates/bribe_aura.json new file mode 100644 index 000000000..63db47e59 --- /dev/null +++ b/tools/python/tx_builder_templates/bribe_aura.json @@ -0,0 +1,58 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0xcBf242F20D183B4116C22Dd5e441b9aE15b0d35A", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "", + "_token": "", + "_amount": "0", + "_maxTokensPerVote": "0", + "_periods": "1" + } + } + ] +} \ No newline at end of file diff --git a/tools/python/tx_builder_templates/bribe_balancer.json b/tools/python/tx_builder_templates/bribe_balancer.json new file mode 100644 index 000000000..1a902ee04 --- /dev/null +++ b/tools/python/tx_builder_templates/bribe_balancer.json @@ -0,0 +1,58 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1698450039804, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x7c68c42De679ffB0f16216154C996C354cF1161B", + "createdFromOwnerAddress": "", + "checksum": "0x3704d87561b30cd3e968794be71c31d7b8fc93308d17611f0c7f117b75a8a1fc" + }, + "transactions": [ + { + "to": "0x45Bc37b18E73A42A4a826357a8348cDC042cCBBc", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "_proposal", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "_token", + "type": "address", + "internalType": "address" + }, + { + "name": "_amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxTokensPerVote", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_periods", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "depositBribe", + "payable": false + }, + "contractInputsValues": { + "_proposal": "", + "_token": "", + "_amount": "0", + "_maxTokensPerVote": "0", + "_periods": "2" + } + } + ] +} \ No newline at end of file diff --git a/tools/python/tx_builder_templates/erc20_transfer.json b/tools/python/tx_builder_templates/erc20_transfer.json new file mode 100644 index 000000000..1ce93f7c7 --- /dev/null +++ b/tools/python/tx_builder_templates/erc20_transfer.json @@ -0,0 +1,25 @@ + { + "to": "", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "name": "to", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + } + ], + "name": "transfer", + "payable": false + }, + "contractInputsValues": { + "to": "", + "value": "" + } + } diff --git a/tools/python/tx_builder_templates/gearbox_claim_tx.json b/tools/python/tx_builder_templates/gearbox_claim_tx.json new file mode 100644 index 000000000..bc12434e0 --- /dev/null +++ b/tools/python/tx_builder_templates/gearbox_claim_tx.json @@ -0,0 +1,41 @@ +{ + "transactions": [ + { + "to": "0xA7Df60785e556d65292A2c9A077bb3A8fBF048BC", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "totalAmount", + "type": "uint256" + }, + { + "internalType": "bytes32[]", + "name": "merkleProof", + "type": "bytes32[]" + } + ], + "name": "claim", + "payable": false + }, + "contractInputsValues": { + "index": "1", + "account": "0x03de3132e3D448cE03ADa2457F0bC779f18F553b", + "totalAmount": "1", + "merkleProof": "[]" + } + } + ] +} \ No newline at end of file diff --git a/tools/python/tx_builder_templates/setTokenRateCacheDuration.json b/tools/python/tx_builder_templates/setTokenRateCacheDuration.json new file mode 100644 index 000000000..0687f6dd1 --- /dev/null +++ b/tools/python/tx_builder_templates/setTokenRateCacheDuration.json @@ -0,0 +1,27 @@ +[ + { + "to": "", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "duration", + "type": "uint256" + } + ], + "name": "setTokenRateCacheDuration", + "payable": false + }, + "contractInputsValues": { + "token": "", + "duration": "" + } + } +] diff --git a/tools/python/tx_builder_templates/sign_message.json b/tools/python/tx_builder_templates/sign_message.json new file mode 100644 index 000000000..a5819c188 --- /dev/null +++ b/tools/python/tx_builder_templates/sign_message.json @@ -0,0 +1,34 @@ +{ + "version": "1.0", + "chainId": "1", + "createdAt": 1709507659190, + "meta": { + "name": "Transactions Batch", + "description": "", + "txBuilderVersion": "1.16.3", + "createdFromSafeAddress": "0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e", + "createdFromOwnerAddress": "", + "checksum": "0xd1fa4c008b054094a0fc304195310ae5196ca29c4c48288ce55a083740be9fe4" + }, + "transactions": [ + { + "to": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "value": "0", + "data": null, + "contractMethod": { + "inputs": [ + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "name": "signMessage", + "payable": false + }, + "contractInputsValues": { + "_data": "" + } + } + ] +} \ No newline at end of file diff --git a/tools/python/tx_builder_templates/sign_message.report.txt b/tools/python/tx_builder_templates/sign_message.report.txt new file mode 100644 index 000000000..53908e559 --- /dev/null +++ b/tools/python/tx_builder_templates/sign_message.report.txt @@ -0,0 +1,16 @@ +FILENAME: `tools/python/tx_builder_templates/sign_message.json` +MULTISIG: `multisigs/vote_incentive_recycling (mainnet:0x9ff471F9f98F42E5151C7855fD1b5aa906b1AF7e)` +COMMIT: `7b599e0e0d97dbaadff8c66ad05f24dd136901f6` +CHAIN(S): `mainnet` +TENDERLY: SKIPPED (`Web3ValidationError("\nCould not identify the intended function with name `signMessage`, positional arguments with type(s) `str` and keyword arguments with type(s) `{}`.\nFound 1 function(s) with the name `signMessage`: ['signMessage(bytes)']\nFunction invocation failed due to no matching argument types.")`) +``` ++-------------+----------------------------------------------------------------------+-------+--------------+------------+----------+ +| fx_name | to | value | inputs | bip_number | tx_index | ++-------------+----------------------------------------------------------------------+-------+--------------+------------+----------+ +| signMessage | 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 (gnosis/sign_message_lib) | 0 | { | N/A | N/A | +| | | | "_data": [ | | | +| | | | "" | | | +| | | | ] | | | +| | | | } | | | ++-------------+----------------------------------------------------------------------+-------+--------------+------------+----------+ +```